* lib/mbchar.h: Just include <wctype.h>; the wctype module
[pspp] / ChangeLog
1 2006-12-27  Paul Eggert  <eggert@cs.ucla.edu>
2
3         * lib/mbchar.h: Just include <wctype.h>; the wctype module
4         handles its gotchas now.
5         * lib/mbswidth.c: Likewise.
6         * lib/wcwidth.h: Likewise.
7         * m4/mbchar.m4 (gl_MBCHAR): Don't bother checking for wctype.h
8         and iswcntrl; the wctype module does this stuff now.
9         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
10         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
11         * modules/mbchar (Depends-on): Add wctype.
12         * modules/mbswidth (Depends-on): Likewise.
13         * modules/wcwidth (Depends-on): Likewise.
14
15 2006-12-27  Eric Blake  <ebb9@byu.net>
16
17         * lib/fnmatch.c: Reinstate inclusion of <wchar.h>, since this
18         module uses more than what <wctype.h> is required to provide.
19
20 2006-12-26  Eric Blake  <ebb9@byu.net>
21
22         * gnulib-tool (sed_extract_prog): Avoid space-tab.
23
24 2006-12-26  Eric Blake  <ebb9@byu.net>
25
26         * modules/absolute-header: New module.
27         * modules/fcntl (Depends-on): Depend on it.
28         * modules/inttypes (Depends-on): Likewise.
29         * modules/stdint (Depends-on): Likewise.
30         * modules/sys_stat (Depends-on): Likewise.
31         * modules/wctype (Depends-on): Likewise.
32         * MODULES.html.sh (Support for building libraries and
33         executables): Document it.
34
35 2006-12-25  Paul Eggert  <eggert@cs.ucla.edu>
36
37         * gnulib-tool (SED): Remove, undoing previous change.
38         The problem was that it broke coreutils on Solaris, because
39         "sed --posix" leaked into a makefile.
40         (sed): New alias, if 'alias' and GNU sed.
41
42 2006-12-24  Jim Meyering  <jim@meyering.net>
43
44         Work around an fchownat bug in glibc-2.4:
45         http://lists.ubuntu.com/archives/ubuntu-users/2006-September/093218.html
46         This bug would cause "chown -RP ... DIR" to follow symlinks in DIR,
47         in spite of the -P option.
48         * m4/openat.m4 (gl_FUNC_FCHOWNAT, gl_FUNC_FCHOWNAT_DEREF_BUG):
49         New macros.
50         (gl_PREREQ_OPENAT): Require gl_FUNC_FCHOWNAT.
51         * modules/openat (Files): Add lib/fchownat.c.
52         * lib/openat.c (fchownat): Don't define here.  Move to...
53         * lib/fchownat.c: ...this new file.
54
55 2006-12-23  Paul Eggert  <eggert@cs.ucla.edu>
56
57         Fix bug reported by Bruno Haible in
58         <http://lists.gnu.org/archive/html/bug-gnulib/2006-12/msg00228.html>
59         where quotearg.c didn't compile on Mac OS X 10.2 because it
60         lacks <wchar.h> and wint_t.
61         * lib/wctype_.h (__wctype_wint_t): New type.
62         Include <stdio.h>, <time.h>, <wchar.h> only if HAVE_WINT_T.
63         (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit, iswgraph):
64         (iswlower, iswprint, iswpunct, iswspace, iswupper, ixwxdigit):
65         Arg is now of type __wctype_wint_t, not wint_t.
66         * m4/wctype.m4 (gl_WCTYPE_H): Require gt_TYPE_WINT_T, and
67         substitute HAVE_WINT_T.
68         * modules/wctype (Files): Add m4/wint_t.m4.
69         (wctype.h): Substitute HAVE_WINT_T.
70
71 2006-12-23  Bruno Haible  <bruno@clisp.org>
72
73         * lib/safe-read.h [C++]: Wrap declarations in extern "C".
74
75 2006-12-23  Bruno Haible  <bruno@clisp.org>
76
77         * lib/canonicalize-lgpl.c (__realpath): Test HAVE_READLINK instead of
78         S_ISLNK.
79         Needed because gnulib's sys/stat.h replacement defines S_ISLNK on
80         mingw.
81
82 2006-12-22  Bruno Haible  <bruno@clisp.org>
83
84         * lib/copy-file.c: Include acl.h.
85         (copy_file_preserving) [USE_ACL]: Use copy_acl instead of chmod.
86         Close the file descriptors only after being done with copy_acl.
87         * modules/copy-file (Depends-on): Add acl.
88
89 2006-12-22  Bruno Haible  <bruno@clisp.org>
90
91         * gnulib-tool (SED): New variable.
92         Use $SED instead of sed everywhere.
93
94 2006-12-22  Bruno Haible  <bruno@clisp.org>
95
96         * modules/no-c++: New file.
97         * m4/no-c++.m4: New file.
98         * MODULES.html.sh (Support for building libraries and executables):
99         Add no-c++.
100
101 2006-12-22  Paul Eggert  <eggert@cs.ucla.edu>
102
103         * m4/mktime.m4 (AC_FUNC_MKTIME): Sync from Autoconf.
104         Include <limits.h>, and use its INT_MAX to rewrite the
105         j loop so that it does not overflow 'int'.  Problem reported by
106         Ralf Wildenhues in
107         <http://lists.gnu.org/archive/html/bug-gnulib/2006-12/msg00084.html>.
108         Play it safe by shifting left by 1 rather than multiplying by 2,
109         as GCC is less likely to optimize this away when the value
110         is signed (when it assumes overflow leads to undefined behavior).
111         Also, don't assume time_t uses two's complement.
112
113 2006-12-21  Paul Eggert  <eggert@cs.ucla.edu>
114
115         * MODULES.html.sh: New module wctype.
116         * lib/wctype_.h, m4/wctype.m4, modules/wctype: New files.
117         * lib/fnmatch.c: Don't bother to include <wchar.h> before
118         <wctype.h>, since the new wctype module should fix this.
119         * lib/quotearg.c: Include <wctype.h> unconditionally, since
120         the wctype module should arrange for it.
121         * lib/regex_internal.h: Likewise.
122         * m4/quotearg.m4 (gl_QUOTEARG): Don't check for wctype.h or iswprint,
123         since the wctype module should handle this now.
124         * m4/regex.m4 (gl_PREREQ_REGEX): Don't check for wctype.h.
125         * modules/fnmatch (Depends-on): Add wctype.
126         * modules/quotearg (Depends-on): Likewise.
127         * modules/regex (Depends-on): Likewise.
128
129 2006-12-19  Bruno Haible  <bruno@clisp.org>
130
131         * lib/strdup.h [C++]: Wrap definitions in extern "C".
132         Suggested by Lorenzo Bettini <bettini@dsi.unifi.it>.
133
134 2006-12-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
135
136         * modules/savewd (Depends-on): Fix dependency on fcntl.
137
138 2006-12-18  Paul Eggert  <eggert@cs.ucla.edu>
139
140         * m4/stdint.m4 (gl_STDINT_H): Set STDINT_H to empty if stdint.h
141         conforms to C99, rather than relying on the user's environment
142         setting of STDINT_H.
143
144 2006-12-18  Paul Eggert  <eggert@cs.ucla.edu>
145         and Eric Blake  <ebb9@byu.net>
146
147         * lib/dirname.h (DOUBLE_SLASH_IS_DISTINCT_ROOT): Default to 0, not 1.
148         This is more consistent with the other defines here.
149         * m4/double-slash-root.m4 (gl_DOUBLE_SLASH_ROOT):
150         Port to z/OS.  Problem reported by Paul Gilmartin.
151         Change local vars to use gl_ prefix rather than ac_.
152         Don't define DOUBLE_SLASH_IS_DISTINCT_ROOT to 0, for consistency
153         with other defines.
154         * modules/double-slash-root: New module.
155         * modules/dirname (Files): Remove m4/double-slash-root.m4.
156         (Depends-on): Add double-slash-root.
157         * MODULES.html.sh (File system functions): Mention new module.
158
159 2006-12-14  Paul Eggert  <eggert@cs.ucla.edu>
160
161         * lib/yesno.c [!ENABLE_NLS]: Don't include getline.h.
162         (yesno) [!ENABLE_NLS]: Don't invoke getline or rpmatch.
163         This is for the benefit of gzip, which doesn't do i18n.
164
165 2006-12-12  Jim Meyering  <jim@meyering.net>
166
167         * m4/acl.m4 (gl_ACL_GET_FILE): Fix logic error.
168         Reported by Andreas Schwab <schwab@suse.de>.
169
170 2006-12-12  Bruno Haible  <bruno@clisp.org>
171
172         Merge these changes.
173         2006-09-05  Bruno Haible  <bruno@clisp.org>
174         * lib/iconvme.c (iconv_string): No need to save and restore errno when
175         iconv_alloc succeeded.
176         (iconv_alloc): Don't assume that malloc() or realloc(), when failing,
177         sets errno to ENOMEM. (malloc on GNU/kFreeBSD doesn't.) No need to
178         test for " && dest " at the end - dest is always != NULL there. Call
179         iconv with 4xNULL arguments initially, to reset the state. Call iconv
180         with 2xNULL arguments, also to flush the state storage. Handle the
181         IRIX iconv behaviour. Realloc the final result, to throw away unused
182         memory.
183
184 2006-12-11  Paul Eggert  <eggert@cs.ucla.edu>
185
186         * m4/openat.m4 (gl_FUNC_OPENAT): Don't compile mkdirat
187         and fchmodat unconditionally, since glibc 2.4 has them.
188         Problem reported by Arkadiusz Miskiewicz.
189
190 2006-12-10  Bruno Haible  <bruno@clisp.org>
191
192         * gnulib-tool (func_import): Show the include files only for those
193         modules that are copied and specified.
194         Reported by Karl Berry.
195
196 2006-12-08  Jim Meyering  <jim@meyering.net>
197
198         * build-aux/announce-gen ($VERSION): Don't use of $Revision...$.
199         Instead, use Emacs' time-stamp write hook.  Note that the time is UTC.
200
201         * build-aux/announce-gen: Add two new options, both optional:
202         --bootstrap-tools=TOOL_LIST
203               a comma-separated list of tools, e.g.,
204               autoconf,automake,bison,gnulib
205         --gnulib-snapshot-date=DATE
206               if gnulib is in the bootstrap tool list,
207               then report this as the snapshot date.
208               If not specified, use the current date/time.
209               If you specify a date here, be sure it's UTC.
210
211 2006-12-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
212
213         * tests/test-argp-2.sh: Fix test to match actual output.
214         (func_compare): Fix sed script to be portable.
215
216 2006-12-05  Paul Eggert  <eggert@cs.ucla.edu>
217
218         * lib/utimens.c (futimens) [HAVE_BUGGY_NFS_TIME_STAMPS]: Add a
219         workaround for this case.  It is not autoconfigured now; offhand
220         it's hard to see how to autoconfigure it.
221
222 2006-12-03  Paul Eggert  <eggert@cs.ucla.edu>
223
224         * lib/mkdir-p.c (make_dir_parents): Fix race condition when making
225         a directory that is about to be chowned.  Such a directory's
226         initial file permissions should permit the owner only and this
227         should not be changed until after the chown, since the group and
228         other bits would be incorrect if they granted permission before
229         the chown.
230
231         Fix porting problem for iswctype reported by Georg Schwarz in:
232         http://lists.gnu.org/archive/html/bug-coreutils/2006-12/msg00017.html
233         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Require HAVE_ISWCTYPE, too.
234         * lib/regex_internal.h (RE_ENABLE_I18N): Likewise.
235         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for iswctype, too.
236         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
237
238 2006-12-03  Jim Meyering  <jim@meyering.net>
239
240         * lib/fts.c (fts_load): Don't set sp->fts_dev here, since
241         p->fts_statp may not yet be defined.
242         (fts_read): Instead, set it in the caller, once p->fts_statp is
243         sure to be defined, and corresponds to a top-level directory.
244         This bug made du -x fail.  Here's the coreutils test case:
245         http://git.sv.gnu.org/gitweb/?p=coreutils.git;a=commit;h=ba45154d8e9f
246         Reported by Mike Frysinger.
247
248 2006-12-01  Jim Meyering  <jim@meyering.net>
249
250         * modules/savewd (Depends-on): Add fcntl_h to avoid self-test
251         build failure due to missing definition of HAVE_WORKING_O_NOFOLLOW.
252         Reported by Simon Josefsson.
253
254 2006-11-30  Jim Meyering  <jim@meyering.net>
255
256         * m4/warning.m4: Use the all-permissive copyright notice
257         recommended by RMS (rather than LGPL).
258         * m4/vararrays.m4: Likewise.
259         * m4/flexmember.m4: Likewise.
260
261 2006-11-29  Bruno Haible  <bruno@clisp.org>
262
263         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
264         noinst_LIBRARIES. Augment noinst_LIBRARIES and noinst_LTLIBRARIES
265         using +=.
266         Reported by Simon Josefsson <simon@josefsson.org>.
267
268 2006-11-28  James Youngman <jay@gnu.org>
269
270         * README: Advise users that they might find the bug-gnulib@gnu.org
271         and autotools-announce@gnu.org mailing lists useful.
272
273 2006-11-28  Bruno Haible  <bruno@clisp.org>
274
275         * m4/ptrdiff_max.m4: Remove file.
276
277 2006-11-21  Bruno Haible  <bruno@clisp.org>
278
279         * m4/eoverflow.m4 (gl_EOVERFLOW): Use AC_COMPUTE_INT instead of
280         _AC_COMPUTE_INT.
281         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
282         * m4/ptrdiff_max.m4 (gl_PTRDIFF_MAX): Use AC_COMPUTE_INT instead of
283         _AC_COMPUTE_INT.
284         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
285         * m4/size_max.m4 (gl_SIZE_MAX): Use AC_COMPUTE_INT instead of
286         _AC_COMPUTE_INT.
287         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
288
289 2006-11-28  Jim Meyering  <jim@meyering.net>
290
291         * lib/regcomp.c (parse_branch): Rename local, exp->expr, to avoid
292         warning from "gcc -Wshadow" about shadowing the builtin.
293
294 2006-11-27  Bruno Haible  <bruno@clisp.org>
295
296         * m4/stdint.m4 (gl_STDINT_BITSIZEOF): Use AC_COMPUTE_INT instead of
297         _AC_COMPUTE_INT.
298         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
299
300 2006-11-27  Bruno Haible  <bruno@clisp.org>
301             Paul Eggert  <eggert@cs.ucla.edu>
302
303         * lib/regex.h (__restrict_arr): Redo logic of #if, for clarity.
304
305 2006-11-26  Bruno Haible  <bruno@clisp.org>
306
307         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
308         noinst_LTLIBRARIES.
309
310 2006-11-27  Paul Eggert  <eggert@cs.ucla.edu>
311             Bruno Haible  <bruno@clisp.org>
312
313         * lib/gettext.h (_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS): Define to 0
314         if compiling with "gcc -ansi".
315
316 2006-11-26  Paul Eggert  <eggert@cs.ucla.edu>
317
318         Fix some incompatibilities with gcc -ansi -pedantic.
319         * lib/regex.h (__restrict_arr): Don't use the [restrict] syntax
320         if compiling pedantically with GCC, unless it's C99 or later.
321         Don't trust sys/cdefs.h's definition of __restrict_arr, either, as
322         it mishandles gcc -ansi -pedantic as well.
323         * lib/regex_internal.h (re_token_t): Don't use enum bitfields
324         if gcc -pedantic.
325         * lib/regexec.c (check_node_accept_bytes): Don't use auto
326         initializers for struct if -pedantic, unless it's C99 or later.
327
328 2006-11-25  Nix  <nix@esperi.org.uk>  (tiny change)
329
330         * m4/fcntl_h.m4 (gl_FCNTL_H): Test the atime, not the mtime.
331         Don't close an fd more than once. Identical atimes indicate
332         success, not failure.
333
334 2006-11-22  Robinson Mittmann <bob@hoplon.com>  (tiny change)
335
336         * lib/sincosl.c (kernel_sinl): Fix typo in threshold.
337
338 2006-11-23  Jim Meyering  <jim@meyering.net>
339
340         * build-aux/announce-gen: New file.  From coreutils.
341
342 2006-11-22  Jim Meyering  <jim@meyering.net>
343
344         Work around a compile-time error from the HP-UX 11.00 /bin/cc.
345         * lib/fts.c (enum Fts_stat): Give this previously-anon enum a name.
346         (fts_read): Use a temporary to narrow the overused st_size member
347         before using it in a switch statement.  Reported by Matthew Woehlke.
348
349         * m4/clock_time.m4 (gl_CLOCK_TIME): Quote AC_SUBST argument.
350         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Likewise.
351
352 2006-11-20  Bruno Haible  <bruno@clisp.org>
353
354         * gettext.m4 (AM_GNU_GETTEXT): Revert 2005-07-28 patch: Use
355         changequote instead of pairs of brackets.
356         Reported by Andreas Schwab <schwab@suse.de>.
357
358 2006-11-21  Jim Meyering  <jim@meyering.net>
359
360         * lib/fts.c (fts_safe_changedir): Move a declaration "up",
361         so as to remain compatible with older compilers.
362         Patch from Michael Deutschmann.
363
364 2006-11-20  Paul Eggert  <eggert@cs.ucla.edu>
365
366         * MODULES.html.sh (File system functions): Add openat.
367
368         * lib/openat.h (rpl_fstatat): New macro, if
369         [HAVE_OPENAT && ! LSTAT_FOLLOWS_SLASHED_SYMLINK.
370         (fstatat): Define to rpl_fstatat under the same conditions,
371         unless COMPILING_FSTATAT.
372         * m4/openat.m4 (gl_FUNC_OPENAT): Compile fstatat.c too, if fstatat
373         seems to have the bug.
374         * lib/fstatat.c: New file.
375         * modules/openat (Files): Add it.
376
377 2006-11-20  Bruno Haible  <bruno@clisp.org>
378
379         * Makefile: New file.
380
381 2006-11-20  Jim Meyering  <jim@meyering.net>
382
383         The beginnings of syntax-related checks for gnulib.
384         * lib/Makefile: New file.
385         * lib/t-idcache: New script.  Ensure that the two halves of
386         idcache.c stay in sync.
387
388         * lib/idcache.c: Adjust comments in user- and group- portions to
389         be more accurate, and to be consistent with one another.
390
391 2006-11-20  Jim Meyering  <jim@meyering.net>
392
393         * lib/idcache.c: Restore most of the 2006-11-06 patch, so as to
394         continue using the flexible array member (thus, this module performs
395         half as many malloc calls), with the addition that...
396         (getgroup, getuser): Consistently record a non-match via an empty
397         "name" string, and map an empty string match to a NULL return value.
398         * modules/idcache (Depends-on): Re-add flexmember.
399
400         * lib/idcache.c (getuser): Remove all uses of the register keyword.
401         (getuidbyname, getgroup, getgidbyname): Likewise.
402
403         Use cleaner syntax: NULL rather than 0.
404         * lib/idcache.c (getuidbyname, getgidbyname): Return NULL, not 0.
405
406 2006-11-20  Paul Eggert  <eggert@cs.ucla.edu>
407
408         * lib/idcache.c: Undo most recent patch, dated 2006-11-06.
409         It mishandled the case where the group was missing.
410         Problem reported by Greg Schafer.
411         * modules/idcache: Likewise.
412
413 2006-11-18  Jim Meyering  <jim@meyering.net>
414
415         * check-module (%exempt_header): Add exception for some
416         conditionally-included headers.
417
418         * modules/i-ring (Depends-on): Add verify.
419         (License): Change to LGPL.
420
421 2006-11-16  Paul Eggert  <eggert@cs.ucla.edu>
422
423         * modules/getaddinfo (Depends-on): Remove inttostr; add snprintf.
424         * lib/getaddrinfo.c: Include snprintf.h rather than intprops.h
425         and inttostr.h.  Use snprintf rather than uinttostr, so that
426         LGPLed code doesn't depend on GPLed.
427
428 2006-11-17  Paul Eggert  <eggert@cs.ucla.edu>
429
430         * modules/inline (License): Change from GPL to LGPL.
431
432 2006-11-17  Jim Meyering  <jim@meyering.net>
433
434         * modules/d-type (License): Switch to LGPL.
435
436 2006-11-15  Bruno Haible  <bruno@clisp.org>
437
438         * m4/alloca.m4 (gl_FUNC_ALLOCA): Fix the AC_CACHE_CHECK message.
439
440 2006-11-15  Eric Blake  <ebb9@byu.net>
441
442         * m4/allocsa.m4 (gl_ALLOCSA): Don't invoke macro already picked up by
443         the module dependency.
444
445 2006-11-15  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
446             Bruno Haible  <bruno@clisp.org>
447
448         * gnulib-tool (func_create_testdir): Add license consistency check.
449
450 2006-11-15  Eric Blake  <ebb9@byu.net>
451
452         * m4/alloca.m4 (gl_FUNC_ALLOCA): Use AC_CACHE_CHECK to avoid a
453         random "(cached)" in configure output.
454
455 2006-11-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
456
457         * m4/inttypes.m4 (gl_INTTYPES_H): Use AC_CACHE_CHECK so that the
458         test for conforming inttypes.h is both announced and cached.
459
460         * MODULES.html.sh (seen_modules, seen_files): New variables.
461         (func_module): Rewrite to use a few less gnulib-tool and sed
462         invocations.  Avoid a couple of quadratic algorithms for ...
463         (missed_modules, missed_files): ... these, with ...
464         (func_append, func_tmpdir): ... these new functions, from
465         gnulib-tool.  Analogously, install traps for cleanup.
466
467         * tests/test-gc.c (main): Remove unused variables.
468         * tests/test-read-file.c: Include stdlib.h, for 'free'.
469
470 2006-11-14  Paul Eggert  <eggert@cs.ucla.edu>
471
472         * modules/inttostr (License): Change to LGPL.
473
474 2006-11-14  Eric Blake  <ebb9@byu.net>
475
476         * modules/tempname (License): Change to LGPL.
477
478 2006-11-14  Eric Blake  <ebb9@byu.net>
479
480         * doc/functions.texi (Function Portability): *printf functions on
481         Cygwin now understand all POSIX size specifiers.
482
483 2006-11-14  Bruno Haible  <bruno@clisp.org>
484
485         * modules/c-ctype (License): Change to LGPL.
486
487 2006-11-12  Bruno Haible  <bruno@clisp.org>
488
489         * m4/lib-link.m4 (AC_LIB_LINKFLAGS, AC_LIB_HAVE_LINKFLAGS,
490         AC_LIB_LINKFLAGS_BODY): Also set a LIB${NAME}_PREFIX variable. Needed
491         for GNOME libraries, for which the include files are installed in
492         subdirectories of $prefix/include.
493
494 2006-11-12  Bruno Haible  <bruno@clisp.org>
495
496         * m4/lib-link.m4: Require at least autoconf-2.54.
497         (AC_LIB_LINKFLAGS_BODY) [autoconf < 2.61]: Turn dots into the library
498         name to underscores for the --with option.
499
500 2006-11-13  Bruno Haible  <bruno@clisp.org>
501
502         * gnulib-tool (func_create_testdir): Set gl_source_base correctly in
503         the tests directory.
504         Reported by Ralf Wildenhues.
505
506 2006-11-13  Bruno Haible  <bruno@clisp.org>
507
508         * gnulib-tool (func_emit_initmacro_start): Also override AC_LIBSOURCES.
509         (func_emit_initmacro_end): Undo the override here.
510         (func_emit_initmacro_done): Emit a definition for gl_LIBSOURCES.
511         Works around the famous automake error in coreutils.
512
513 2006-11-13  Eric Blake  <ebb9@byu.net>
514
515         * lib/gl_anytree_oset.h (gl_tree_search_atleast): Return the
516         element, not its node.
517
518 2006-11-12  Bruno Haible  <bruno@clisp.org>
519
520         * gnulib-tool (func_emit_lib_Makefile_am): Replace occurrences of
521         '$(top_srcdir)/build-aux/', taking into account the real auxdir.
522
523 2006-11-12  Bruno Haible  <bruno@clisp.org>
524
525         * gnulib-tool: New option --local-symlink.
526         (func_usage): Document it.
527         (lsymbolic): New variable.
528         (func_import, func_create_testdir): If --symlink was not specified,
529         test whether --local-symlink was specified and the file comes from
530         the local_gnulib_dir.
531
532 2006-11-12  Bruno Haible  <bruno@clisp.org>
533
534         * gnulib-tool (func_ln): New function.
535         (func_ln_if_changed, func_create_testdir): Use it instead of "ln -s".
536
537 2006-11-12  Bruno Haible  <bruno@clisp.org>
538
539         Finish support for source files in subdirectories.
540         * gnulib-tool (func_emit_lib_Makefile_am): If some of the source files
541         are in subdirectories, set uses_subdirs and add 'subdir-objects' to
542         AUTOMAKE_OPTIONS.
543         (func_import, func_create_testdir): Invoke AM_PROG_CC_C_O in this case.
544
545 2006-11-12  Bruno Haible  <bruno@clisp.org>
546
547         * gnulib-tool (func_get_automake_snippet): Synthesize also an
548         EXTRA_lib_SOURCES augmentation.
549         (func_emit_lib_Makefile_am): Initialize EXTRA_lib..._SOURCES to empty.
550
551 2006-11-12  Jim Meyering  <jim@meyering.net>
552
553         Make fts (in FTS_CWDFD mode) more efficient by caching a few open
554         file descriptors.  This also averts a failure on systems with
555         native openat support when a traversed directory lacks "x" access.
556         * lib/fts_.h: Include "i-ring.h"
557         (struct FTS) [fts_fd_ring]: New member.
558         * lib/fts.c (RESTORE_INITIAL_CWD): Also call fd_ring_clear.
559         (FCHDIR): Add parentheses.
560         (fd_ring_check, fd_ring_print) [!FTS_DEBUG]: Define away.
561         (cwd_advance_fd): Add a 3rd parameter.  Adjust all callers.
562         When descending, rather than simply closing the previous
563         fts_cwd_fd value, push that file descriptor onto the ring.
564         (same_fd, fd_ring_print, fd_ring_check) [FTS_DEBUG]: New functions.
565         (fts_open): Initialize the new fd_ring member.
566         (fts_close): Clear the ring.
567         (fts_safe_changedir): When possible, use our new fd_ring to skip
568         the diropen and fstat and dev/ino comparison that would normally
569         accompany a virtual `chdir ("..")'.
570
571         * modules/fts (Depends-on): Add i-ring.
572         * modules/i-ring: New module.
573         * lib/i-ring.c, lib/i-ring.h, lib/i-ring-test.c: New files.
574         * m4/i-ring.m4: New file.
575
576 2006-11-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
577
578         * gnulib-tool (func_create_testdir): Fix replacement of
579         `build-aux' in configure.ac.  Run autotools in gltests
580         subdirectory.
581         (func_create_testdir, func_create_megatestdir, test): There is
582         no need for '--force' in most autotool invocations in a new
583         tree.  Actually fail the whole test if any of the tools, or the
584         configure or make stages fail.
585
586         Sync from Automake.
587         * build-aux/gnupload: Revert last change.  Add pointer to upload
588         instructions of the GNU Maintenance Instructions.
589         Suggestion by Karl Berry.
590
591 2006-11-10  Jim Meyering  <jim@meyering.net>
592
593         * lib/fts.c [FTS_DEBUG]: Don't try to print a pointer via %s.
594
595 2006-11-09  Paul Eggert  <eggert@cs.ucla.edu>
596
597         * lib/gettext.h (dgettext, dcgettext, ngettext) [! ENABLE_NLS]:
598         (dngettext, dcngettext, bindtextdomain) [! ENABLE_NLS]:
599         (bind_textdomain_codeset) [! ENABLE_NLS]:
600         Evaluate all the arguments.  That way, callers get compatible behavior
601         if the arguments have side effects.  Also, it avoids some GCC
602         diagnostics in some cases; Joel E. Denny reported problems when Bison
603         was configured with --enable-gcc-warnigs.
604
605 2006-11-10  Jim Meyering  <jim@meyering.net>
606
607         * m4/inline.m4 (gl_INLINE): Check with the compiler, not cpp, so that
608         relevant options in CFLAGS (like -O, -fno-inline) are taken into
609         account.
610
611 2006-11-10  Jim Meyering  <jim@meyering.net>
612
613         * modules/inline: New file/module.
614         * modules/xalloc (Files): Remove m4/inline.m4.
615         (Depends-on): Add inline, instead.
616         * modules/oset: Likewise.
617         * modules/list: Likewise.
618
619 2006-11-09  Paul Eggert  <eggert@cs.ucla.edu>
620
621         * lib/stdint_.h (uintmax_t): Fix typo: int64_t -> uint64_t.
622         Problem reported by Matthew Woehlke.
623
624 2006-11-09  Bruno Haible  <bruno@clisp.org>
625
626         * lib/tempname.c (gen_tempname): Remove variant that invokes
627         __gen_tempname.
628         * m4/tempname.m4 (gl_FUNC_GEN_TEMPNAME): Don't test for
629         __gen_tempname.
630
631 2006-11-08  Bruno Haible  <bruno@clisp.org>
632
633         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Set ac_cv_type_long_long_int
634         to 'yes' instead of 'cross-compiling'.
635
636 2006-11-08  Paul Eggert  <eggert@cs.ucla.edu>
637
638         * lib/quotearg.h (quotearg_free): New decl.
639         * lib/quotearg.c (quotearg_free): New function.
640         (slot0, nslots, slotvec0, slotvec):
641         Now file-scope so that quotearg_free can get at them.
642
643 2006-11-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
644
645         Sync from Automake.
646         * build-aux/gnupload: Add missing 'gnu' to example URL.
647         Report by Karl Berry.
648
649 2006-11-08  Bruno Haible  <bruno@clisp.org>
650
651         * m4/inline.m4 (gl_INLINE): Also test __NO_INLINE__.
652         Suggested by Paul Eggert.
653
654 2006-11-08  Jim Meyering  <jim@meyering.net>
655
656         * lib/fts.c [!_LGPL_PACKAGE]: Don't include fcntl--.h twice.
657         It's already included if !_LIBC.
658         (fts_safe_changedir): Add a comment.
659
660 2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
661
662         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Detect bug in
663         Tandem NonStop Kernel (OSS) cc -O circa 2004, reported by
664         Matthew Woehlke.
665
666         * lib/xalloc.h (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): Move
667         definitions up, to avoid colliding with change below.
668         (static_inline) [HAVE_INLINE]: New macro.
669         (xnmalloc, xnrealloc, x2nrealloc, xcharalloc):
670         Provide extern decls when !HAVE_INLINE.  Do not define unless
671         static_inline is defined, either by us or by xmalloc.c.  Use
672         static_inline rather than static inline.
673         (XCALLOC): Optimize sizeof(T) = 1 case.
674         * lib/xmalloc.c (static_inline) [!HAVE_INLINE]: New macro.
675
676 2006-11-07  Bruno Haible  <bruno@clisp.org>
677
678         * lib/xalloc.h (XNMALLOC): Restore optimization of sizeof(T) = 1 case.
679         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Require gl_INLINE instead of
680         AC_C_INLINE.
681         * modules/xalloc (Files): Add m4/inline.m4.
682
683 2006-11-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
684
685         * README: Fix typo.
686         * doc/gnulib.texi (Miscellaneous Notes): Likewise, rename...
687         (Miscellanous Notes): ...from this.
688
689 2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
690
691         * m4/flexmember.m4 (AC_C_FLEXIBLE_ARRAY_MEMBER):
692         Mention that offsetof should be used instead of sizeof.
693         From Bruno Haible.
694
695 2006-11-07  Bruno Haible  <bruno@clisp.org>
696
697         * lib/w32spawn.h (prepare_spawn): Use XNMALLOC instead of xmalloc.
698
699 2006-11-06  Paul Eggert  <eggert@cs.ucla.edu>
700
701         Simplify xmalloc expressions. Add overflow check in xmalloc arguments.
702         * lib/gl_anyavltree_list2.h (create_subtree_with_contents):
703         (gl_tree_create, gl_tree_add_first, gl_tree_add_last):
704         (gl_tree_add_before, gl_tree_add_after):
705         Use XMALLOC instead of xmalloc, and XCALLOC instead of xzalloc.
706         * lib/gl_anyhash_list2.h (hash_resize): Likewise.
707         * lib/gl_anylinked_list2.h (gl_linked_create_empty, gl_linked_create):
708         (gl_linked_add_first, gl_linked_add_last, gl_linked_add_before):
709         (gl_linked_add_after, gl_linked_add_at): Likewise.
710         * lib/gl_anyrbtree_list2.h (create_subtree_with_contents):
711         (gl_tree_create, gl_tree_add_first, gl_tree_add_last):
712         (gl_tree_add_before, gl_tree_add_after): Likewise.
713         * lib/gl_anytree_list2.h (gl_tree_create_empty): Likewise.
714         * lib/gl_anytree_oset.h (gl_tree_create_empty): Likewise.
715         * lib/gl_anytreehash_list1.h (add_to_bucket): Likewise.
716
717 2006-11-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
718
719         * lib/gl_oset.h: Use C comment style, not C++ comment style.
720
721 2006-11-06  Bruno Haible  <bruno@clisp.org>
722
723         * m4/inline.m4: New file.
724         * m4/gl_list.m4 (gl_LIST): Require gl_INLINE.
725         * modules/list (Files): Add m4/inline.m4.
726         * modules/oset (Files): Likewise.
727
728 2006-11-06  Paul Eggert  <eggert@cs.ucla.edu>
729
730         * lib/idcache.c: Include <stddef.h>, for offsetof.
731         (struct userid.name): Change from char * to a flexible array member.
732         All uses changed.
733         * modules/idcache (Depends-on): Add flexmember.
734
735         * MODULES.html.sh (Core language properties): New module flexmember.
736         * modules/flexmember, m4/flexmember.m4: New files.
737
738         * lib/xalloc.h (xnmalloc, xnrealloc, x2nrealloc): Now static
739         inline functions that are identical with the old xnmalloc_inline,
740         xnrealloc_inline, x2nrealloc_inline of lib/xmalloc.c.  This is so
741         that we can avoid some unnecessary integer multiplications and
742         divisions in the common case where the element size is known at
743         compile time.
744         (XNMALLOC) [HAVE_INLINE]: Remove special case, which is no longer
745         needed.
746         (xnboundedmalloc): Remove.
747         (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): Use lower-case letters for
748         arguments, for consistency with rest of this header.
749         (xcharalloc): Rewrite using XNMALLOC.
750         * lib/xmalloc.c (xnmalloc_inline, xnmalloc, xnrealloc_inline):
751         (xnrealloc, x2nrealloc_inline, x2nrealloc): Remove.  The *_inline
752         versions have been moved to lib/xalloc.h and renamed to be the
753         non-*_inline versions.
754         (xmalloc, xrealloc): Implement without reference to the xnmalloc
755         and xnrealloc functions, since those functions are now inline and
756         now call us.
757         (x2realloc): Invoke x2realloc, not x2realloc_inline, to accommodate
758         renaming described above.
759         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Remove AC_C_INLINE since
760         xmalloc.c no longer uses inline directly.  gl_PREREQ_XALLOC now
761         captures the dependency in AC_C_INLINE.
762
763         New module canonicalize-lgpl, proposed by Charles Wilson in
764         <http://lists.gnu.org/archive/html/bug-gnulib/2006-11/msg00020.html>
765         with a few small changes afterwards.
766         * MODULES.html.sh (File system functions): New module
767         canonicalize-lgpl.
768         * lib/canonicalize.h: Add comments for canonicalize_filename_mode
769         and canonicalize_file_name.
770         * lib/canonicalize-lgpl.c, m4/canonicalize-lgpl.m4:
771         * modules/canonicalize-lgpl: New files.
772
773 2006-11-05  Bruno Haible  <bruno@clisp.org>
774
775         * gnulib-tool (func_import, func_create_testdir): Create directories
776         also for files in subdirectories of lib/.
777
778 2006-11-05  Bruno Haible  <bruno@clisp.org>
779
780         * lib/gl_array_list.c (gl_array_iterator_next): Make pointer decrement
781         ANSI C compliant.
782
783 2006-11-03  Bruno Haible  <bruno@clisp.org>
784
785         Simplify xmalloc expressions. Add overflow check in xmalloc arguments.
786         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Require AC_C_INLINE.
787         * lib/xalloc.h (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): New macros.
788         (xnboundedmalloc): New inline function.
789         * lib/classpath.c (new_classpath): Use XNMALLOC instead of xmalloc.
790         * lib/clean-temp.c (create_temp_dir): Use XNMALLOC, XMALLOC instead of
791         xmalloc.
792         * lib/concatpath.c (concatenated_pathname): Use XNMALLOC instead of
793         xmalloc.
794         * lib/fatal-signal.c (at_fatal_signal): Use XNMALLOC instead of xmalloc.
795         * lib/findprog.c (find_in_path): Use XNMALLOC instead of xmalloc.
796         * lib/gl_array_list.c (gl_array_create_empty): Use XMALLOC instead of
797         xmalloc.
798         (gl_array_create): Use XNMALLOC, XMALLOC instead of xmalloc.
799         * lib/gl_array_oset.c (gl_array_create_empty): Use XNMALLOC instead of
800         xmalloc.
801         * lib/gl_avltree_oset.c (gl_tree_add_first, gl_tree_add_before,
802         gl_tree_add_after): Use XMALLOC instead of xmalloc.
803         * lib/gl_carray_list.c (gl_carray_create_empty): Use XMALLOC instead of
804         xmalloc.
805         (gl_carray_create): Use XNMALLOC, XMALLOC instead of xmalloc.
806         * lib/gl_rbtree_oset.c (gl_tree_add_first, gl_tree_add_before,
807         gl_tree_add_after): Use XMALLOC instead of xmalloc.
808         * lib/gl_sublist.c (gl_sublist_create): Use XMALLOC instead of xmalloc.
809         * lib/pagealign_alloc.c (new_memnode): Use XMALLOC instead of xmalloc.
810         * lib/sh-quote.c (shell_quote_argv): Use XNMALLOC instead of xmalloc.
811         * lib/xvasprintf.c (xstrcat): Use XNMALLOC instead of xmalloc.
812
813 2006-11-03  Bruno Haible  <bruno@clisp.org>
814
815         * lib/c-ctype.h [C++]: Define functions without name mangling.
816         * lib/fwriteerror.h [C++]: Likewise.
817         * lib/gcd.h [C++]: Likewise.
818         * lib/linebreak.h [C++]: Likewise.
819
820 2006-11-03  Paul Eggert  <eggert@cs.ucla.edu>
821
822         * lib/canonicalize.h: (canonicalize_mode_t, CAN_EXISTING):
823         (CAN_ALL_BUT_LAST, CAN_MISSING, canonicalize_filename_mode):
824         Define only if PROVIDE_CANONICALIZE_FILENAME_MODE is defined.
825         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME):
826         Check for functions and headers just once.
827         Check for declaration of canonicalize_file_name.
828         Define PROVIDE_CANONICALIZE_FILENAME_MODE.
829
830 2006-11-02  Charles Wilson  <cygwin@cwilson.fastmail.fm>
831
832         * gnulib-tool (func_import): Fix typo in actioncmd.
833
834 2006-11-02  Bruno Haible  <bruno@clisp.org>
835
836         * gnulib-tool (func_get_automake_snippet): Interpret a backslash-
837         newline sequence in the Makefile.am snippet as a space, like "make"
838         does.
839         Reported by Roger Persson <perrog@gmail.com>.
840
841 2006-11-01  Bruno Haible  <bruno@clisp.org>
842
843         * m4/strcase.m4 (gl_FUNC_STRNCASECMP): Check whether strncasecmp is
844         already declared in <string.h>.
845         * lib/strcase.h (strncasecmp): Don't declare it if yes.
846
847 2006-11-01  Bruno Haible  <bruno@clisp.org>
848
849         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Don't define strcasecmp here.
850         * lib/strcase.h: Include <string.h>.
851         (strcasecmp): Define to rpl_strcasecmp here.
852
853 2006-11-01  Bruno Haible  <bruno@clisp.org>
854
855         * lib/printf-parse.c (PRINTF_PARSE): Cast malloc/realloc results.
856
857 2006-11-01  Eric Blake  <ebb9@byu.net>
858
859         * lib/mkstemp-safer.c (mkstemp_safer): Allow C++ compilation.
860
861         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Allow C++ configuration.
862
863 2006-10-29  Bruno Haible  <bruno@clisp.org>
864
865         Make it compile in C++ mode.
866         * lib/full-write.c (full_rw): Add a cast.
867
868 2006-11-01  Bruno Haible  <bruno@clisp.org>
869
870         * gnulib-tool (func_get_automake_snippet): Change sed_combine_lines to
871         be POSIX compliant.
872         Reported by Roger Persson <perrog@gmail.com>.
873
874 2006-11-01  Eric Blake  <ebb9@byu.net>
875
876         * lib/getopt_.h: Fix comments.
877
878 2006-10-31  Eric Blake  <ebb9@byu.net>
879
880         * modules/tmpdir (Depends-on): Add sys_stat.
881         * modules/mkdtemp (Depends-on): Add tempname, drop unistd.
882         * lib/mkdtemp.c (gen_tempname): Remove; tempname covers this.
883         * lib/tmpdir.c (S_ISDIR): Simplify, thanks to sys_stat.
884         * m4/mkdtemp.m4 (gl_PREREQ_MKDTEMP): Simplify, thanks to
885         tempname.
886
887 2006-10-31  Paul Eggert  <eggert@cs.ucla.edu>
888
889         Avoid some C++ diagnostics reported by Bruno Haible.
890         * lib/quotearg.c (clone_quoting_options): Use xmemdup rather than
891         xmalloc.
892         (quotearg_alloc): Use xcharalloc rather than xmalloc.
893         (struct slotvec): Move to top level.
894         (quotearg_n_options): Rewrite to avoid xmalloc.
895         * lib/xalloc.h (xcharalloc): New function.
896         * (xrealloc, xnrealloc, x2realloc, x2nrealloc, xmemdup):
897         [defined __cplusplus]: Add function template that provides result
898         type propagation.  This part of the change is from Bruno Haible.
899
900 2006-10-29  Bruno Haible  <bruno@clisp.org>
901
902         Make it compile in C++ mode.
903         * lib/striconv.c (mem_cd_iconv): Cast malloc/realloc result.
904         * lib/strnlen1.c (strnlen1): Cast memchr result.
905         * lib/mbchar.h (mb_copy): Rename arguments to 'new_mbc', 'old_mbc'.
906         * lib/clean-temp.c (string_equals, string_hash): Add casts.
907         (create_temp_dir): Rename local variable 'template'.
908         (compile_csharp_using_sscli): Add cast.
909         * lib/fatal-signal.c (at_fatal_signal): Cast xmalloc result.
910         * lib/findprog.c (find_in_path): Likewise.
911         * lib/linebreak.c (mbs_width_linebreaks): Cast malloc result.
912         * lib/wait-process.c (register_slave_subprocess): Likewise.
913
914 2006-10-22  Bruno Haible  <bruno@clisp.org>
915
916         * modules/tsearch: New file.
917         * lib/tsearch.h: New file.
918         * lib/tsearch.c: New file, from glibc-2.5 with small modifications.
919         * m4/tsearch.m4: New file.
920         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add tsearch.
921
922 2006-10-29  Eric Blake  <ebb9@byu.net>
923
924         * lib/arcfour.c: Assume config.h.
925         * lib/arctwo.c: Likewise.
926         * lib/base64.c: Likewise.
927         * lib/check-version.c: Likewise.
928         * lib/crc.c: Likewise.
929         * lib/des.c: Likewise.
930         * lib/gc-gnulib.c: Likewise.
931         * lib/gc-libgcrypt.c: Likewise.
932         * lib/gc-pbkdf2-sha1.c: Likewise.
933         * lib/getaddrinfo.c: Likewise.
934         * lib/getdelim.c: Likewise.
935         * lib/getline.c: Likewise.
936         * lib/hmac-md5.c: Likewise.
937         * lib/hmac-sha1.c: Likewise.
938         * lib/iconvme.c: Likewise.
939         * lib/md2.c: Likewise.
940         * lib/md4.c: Likewise.
941         * lib/memxor.c: Likewise.
942         * lib/read-file.c: Likewise.
943         * lib/readline.c: Likewise.
944         * lib/rijndael-alg-fst.c: Likewise.
945         * lib/rijndael-api-fst.c: Likewise.
946         * lib/xgetdomainname.c: Likewise.
947
948 2006-10-28  Eric Blake  <ebb9@byu.net>
949
950         * lib/xstrndup.c: Assume config.h.
951
952 2006-10-27  Paul Eggert  <eggert@cs.ucla.edu>
953
954         Move stat.h-substitute stuff from lib/stat-macros.h to lib/stat_.h.
955         stat-macros.h is now for our own macros, whereas stat_h is for
956         macros in the <sys/stat.h> name space.
957         * lib/stat-macros.h: Remove copyright notice, as this file is now tiny.
958         (STAT_MACROS_H): Remove.
959         (S_IFMT, S_ISBLK, S_ISCHR, S_ISDIR, S_ISFIFO, S_ISLNK, S_ISNAM):
960         (S_ISMPB, S_ISMPC, S_ISNWK, S_ISREG, S_ISSOCK, S_ISDOOR, S_ISPORT):
961         (S_TYPEISMQ, S_TYPEISTMO, S_TYPEISSEM, S_TYPEISSHM, S_ISCTG, S_ISOFD):
962         (S_ISOFL, S_ISWHT, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IRGRP):
963         (S_IROTH, S_IWUSR, S_IWGRP, S_IWOTH, S_IXUSR, S_IXGRP, S_IXOTH):
964         (S_IRWXU, S_IRWXG, S_IRWXO, S_IXUGO, S_IRWXUGO):
965         Move these macros to ...
966         * lib/stat_.h: here.  Don't include stat-macros.h.
967         * lib/canonicalize.c: Don't include stat-macros.h.
968         * lib/chown.c: Likewise.
969         * lib/euidaccess.c: Likewise.
970         * lib/file-type.c: Likewise.
971         * lib/filemode.c: Likewise.
972         * lib/glob.c: Likewise.
973         * lib/isapipe.c: Likewise.
974         * lib/lchown.c: Likewise.
975         * lib/lstat.c: Likewise.
976         * lib/mkdir-p.c: Likewise.
977         * lib/rmdir.c: Likewise.
978         * m4/lchown.m4 (gl_FUNC_LCHOWN): Don't require gl_STAT_MACROS.
979         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Don't check for io.h
980         unless mkdir isn't declared, to speed up 'configure'.
981         Always create sys/stat.h, since it's unlikely any real sys/stat.h
982         would define all the S_* symbols.
983         * modules/canonicalize (Depends-on):
984         Depend on sys_stat, not stat-macros.
985         * modules/chown: Likewise.
986         * modules/euidaccess: Likewise.
987         * modules/filemode: Likewise.
988         * modules/file-type: Likewise.
989         * modules/glob: Likewise.
990         * modules/isapipe: Likewise.
991         * modules/lchown: Likewise.
992         * modules/lstat: Likewise.
993         * modules/mkancesdirs: Likewise.
994         * modules/rmdir: Likewise.
995         * modules/mkdir-p (Depends-on): Also depend on sys_stat.
996         * modules/modechange: Likewise.
997         * modules/stat-macros (Files): Remove m4/stat-macros.m4.
998         (configure.ac): Remove gl_STAT_MACROS.
999         * modules/sys_stat (Depends-on): Remove stat-macros.
1000
1001 2006-10-27  Bruno Haible  <bruno@clisp.org>
1002
1003         * m4/signed.m4: Remove file.
1004         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_ARGS_: Remove bh_C_SIGNED
1005         invocation.
1006         * modules/vasnprintf (Files): Remove m4/signed.m4.
1007
1008 2006-10-27  Bruno Haible  <bruno@clisp.org>
1009
1010         Update to GNU gettext 0.16.
1011         * modules/gettext (Files): Add m4/intl.m4, m4/intldir.m4. Remove
1012         m4/inttypes-h.m4, m4/signed.m4.
1013         * m4/gettext.m4: Update to GNU gettext 0.16.
1014         * m4/intl.m4: New file, from GNU gettext.
1015         * m4/intldir.m4: New file, from GNU gettext.
1016         * config/srclist.txt: Update
1017
1018 2006-10-27  Eric Blake  <ebb9@byu.net>
1019
1020         * MODULES.html.sh: Document tempname.
1021         * modules/mkstemp (Depends-on): Add tempname, and drop transitive
1022         dependencies.
1023         (Files): Move lib/tempname.c...
1024         * modules/tempname: ...to this new module.
1025         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Remove tempname checks.
1026         (gl_PREREQ_TEMPNAME): Move...
1027         * m4/tempname.m4: ...to this new file.
1028         * lib/mkstemp.c (includes) [!_LIBC]: Use tempname.h.
1029         * modules/sys_stat (Depends-on): Add stat-macros.
1030         * lib/stat_.h (includes): Pick up stat macros.
1031         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Replace <sys/stat.h>
1032         if stat macros are broken.
1033         * lib/tempname.c (includes): No need to include "stat-macros.h".
1034         (__gen_tempname) [!_LIBC]: Expose as gen_tempname.
1035         (direxists, __path_search) [!_LIBC]: Don't compile these in
1036         gnulib; the tmpdir module covers that.
1037         * lib/tempname.h: New file.
1038
1039 2006-10-26  Paul Eggert  <eggert@cs.ucla.edu>
1040
1041         * COPYING: Explain how gnulib-tool converts licence headers.
1042         Almost all wording by Eric Blake.
1043
1044 2006-10-25  Paul Eggert  <eggert@cs.ucla.edu>
1045
1046         * lib/mbchar.h (is_basic_table): Make read-only.
1047         * lib/mbchar.c (is_basic_table): Likewise.
1048         Reported by John Darrington.
1049
1050 2006-10-25  Bruno Haible  <bruno@clisp.org>
1051
1052         * lib/progname.h (set_program_name): Undefine before defining.
1053
1054 2006-10-25  Bruno Haible  <bruno@clisp.org>
1055
1056         * lib/gettext.h (_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS): Define to
1057         false for non-gcc C++ compilers.
1058         Reported by Nelson H. F. Beebe <beebe@math.utah.edu>.
1059
1060 2006-10-24  Bruno Haible  <bruno@clisp.org>
1061
1062         * lib/striconv.c (mem_cd_iconv, str_cd_iconv): Treat all non-GNU
1063         iconv implementations like Irix iconv.
1064
1065 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
1066
1067         * modules/vararrays: New file.
1068         * m4/vararrays.m4: New file, taken from diffutils.
1069         * MODULES.html.sh: New module vararrays.
1070
1071 2006-10-24  Karl Berry  <karl@gnu.org>
1072
1073         * doc/gnulib-intro.texi: --- instead of --; non-naive naive.
1074         Don't call GNU Unix.
1075
1076 2006-10-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1077
1078         * users.txt: Add Libtool.
1079
1080         Sync from Libtool:
1081
1082         2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
1083
1084         * lib/argz.c: Remove check for HAVE_CONFIG_H, to conform
1085         to gnulib's policy of including config.h unconditionally.
1086
1087 2006-10-24  Bruno Haible  <bruno@clisp.org>
1088
1089         * modules/wcwidth (Files): Add m4/wint_t.m4.
1090         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Require gt_TYPE_WINT_T.
1091         * lib/wcwidth.h (iswprint): Use 'int' if 'wint_t' is not defined.
1092
1093 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
1094
1095         * lib/getdate.y (yyerror): Make the arguments pointer-to-const,
1096         to pacify GCC with some -W flags enabled.  Problem reported by
1097         Bruno Haible.
1098
1099 2006-10-24  Jim Meyering  <jim@meyering.net>
1100
1101         * MODULES.html.sh: Remove uinttostr.  It's not a module.
1102         Reported by Karl Berry.
1103
1104 2006-10-23  Bruno Haible  <bruno@clisp.org>
1105
1106         * lib/fts.c (fts_build): Move variable declaration, for C89 compliance.
1107
1108 2006-10-24  Bruno Haible  <bruno@clisp.org>
1109
1110         * lib/gl_list.h: Use C comment style, not C++ comment style.
1111
1112 2006-10-23  Eric Blake  <ebb9@byu.net>
1113
1114         * lib/getaddrinfo.c (includes): Add missing include.
1115
1116 2006-10-23  Bruno Haible  <bruno@clisp.org>
1117             Paul Eggert  <eggert@cs.ucla.edu>
1118
1119         Ability to rename obstack_free.
1120         * lib/obstack.h (__obstack_free): New macro. Declare instead of
1121         obstack_free.
1122         (obstack_free): Invoke the __obstack_free macro.
1123         * lib/obstack.c (obstack_free): Use __obstack_free macro.
1124
1125 2006-10-23  Bruno Haible  <bruno@clisp.org>
1126             Paul Eggert  <eggert@cs.ucla.edu>
1127
1128         * lib/argp.h (argp_parse, __argp_parse): Comment out the identifiers
1129         __argc, __argv from the declaration. (They are defined as macros on
1130         mingw.)
1131
1132 2006-10-22  Bruno Haible  <bruno@clisp.org>
1133
1134         * doc/gnulib-intro.texi: New file.
1135         * doc/gnulib.texi: Include it.
1136
1137 2006-10-21  Bruno Haible  <bruno@clisp.org>
1138
1139         * doc/gnulib.texi: Split the chapter "Gnulib" into 3 chapters
1140         "Introduction", "Miscellanous Notes", "Particular Modules".
1141
1142 2006-10-21  Bruno Haible  <bruno@clisp.org>
1143
1144         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
1145         Change mostlyclean-local rule to avoid sh syntax error from bash
1146         versions 2.00..2.05 when $(MOSTLYCLEANDIRS) is empty.
1147
1148 2006-10-23  Jim Meyering  <jim@meyering.net>
1149
1150         * lib/getaddrinfo.c (getnameinfo): Use new lightweight uinttostr,
1151         in place of snprintf.
1152
1153         * modules/inttostr (Files): Add lib/uinttostr.c.
1154         * lib/uinttostr.c (inttostr): New file/function.
1155         * lib/inttostr.h (uinttostr): Declare.
1156         * m4/inttostr.m4: Add AC_LIBOBJ([uinttostr]).
1157         * MODULES.html.sh (Numeric conversion functions <stdlib.h>):
1158         Add uinttostr.
1159         * modules/getaddrinfo (Depends-on): Remove snprintf.  Add inttostr.
1160
1161 2006-10-21  Paul Eggert  <eggert@cs.ucla.edu>
1162
1163         * lib/canonicalize.c (ELOOP): Define if not already defined.
1164         Problem reported by Bruno Haible in
1165         <http://lists.gnu.org/archive/html/bug-gnulib/2006-10/msg00282.html>.
1166
1167 2006-10-21  Paul Eggert  <eggert@cs.ucla.edu>
1168
1169         * lib/stdint_.h [defined _AIX]: Don't include <sys/types.h>.
1170         Problem reported by Perry Smith and Ville Laurikari.
1171
1172         * lib/getndelim2.c (SSIZE_MAX): Use same defn that getdelim.c
1173         uses.
1174
1175 2006-10-19  Bruno Haible  <bruno@clisp.org>
1176
1177         * lib/getndelim2.c (SSIZE_MAX): Provide fallback definition. Needed
1178         for mingw.
1179
1180 2006-10-19  Bruno Haible  <bruno@clisp.org>
1181
1182         * lib/openat-priv.h (EOPNOTSUPP): Provide fallback definition.
1183         Needed for mingw.
1184
1185 2006-10-19  Bruno Haible  <bruno@clisp.org>
1186
1187         * m4/size_max.m4 (gl_SIZE_MAX): Cache the result.
1188
1189 2006-10-19  Bruno Haible  <bruno@clisp.org>
1190
1191         * m4/allocsa.m4 (gl_ALLOCSA): Invoke gl_FUNC_ALLOCA, don't AC_REQUIRE
1192         it.
1193
1194 2006-10-19  Bruno Haible  <bruno@clisp.org>
1195
1196         * m4/alloca.m4 (gl_FUNC_ALLOCA): Cache the result of the AC_EGREP_CPP
1197         invocation.
1198
1199 2006-10-19  Bruno Haible  <bruno@clisp.org>
1200
1201         * gnulib-tool (func_create_testdir): Don't include ftruncate and
1202         mountlist by default.
1203
1204 2006-10-16  Bruno Haible  <bruno@clisp.org>
1205
1206         * lib/c-strstr.c: Include c-strstr.h.
1207
1208 2006-10-18  Charles Wilson  <cygwin@cwilson.fastmail.fm>
1209
1210         * gnulib-tool: Don't clobber $sourcebase when $local_gnulib_dir ends
1211         in a slash.
1212
1213 2006-10-18  Bruno Haible  <bruno@clisp.org>
1214
1215         * lib/lock.h [C++]: Wrap definitions in extern "C".
1216
1217 2006-10-18  Bruno Haible  <bruno@clisp.org>
1218
1219         * gnulib-tool (func_emit_initmacro_end): Remove duplicates from the
1220         gl_LIBOBJS list.
1221
1222 2006-10-18  Bruno Haible  <bruno@clisp.org>
1223
1224         * lib/findprog.c (find_in_path): Avoid "gcc -Wwrite-strings" warning.
1225
1226 2006-10-19  Paul Eggert  <eggert@cs.ucla.edu>
1227
1228         * lib/xstrtol.h: Include gettext.h.
1229         (_STRTOL_ERROR): Wrap English-language formats inside gettext.
1230         Problem reported by Eric Blake.
1231         * modules/xstrtol (Depends-on): Add gettext-h.
1232
1233 2006-10-19  Paul Eggert  <eggert@cs.ucla.edu>  (tiny change)
1234
1235         * lib/strftime.c (advance): New macro.
1236         (add): Use it to avoid adding 0 to a FILE *.  FILE can be an
1237         incomplete type, so you can't add 0 to it.  Problem and patch
1238         reported by Eelco Dolstra for dietlibc.
1239
1240 2006-10-18  Jim Meyering  <jim@meyering.net>
1241
1242         * lib/readutmp.c (desirable_utmp_entry): Use "bool" as the
1243         type for a local, and rename it: s/up/user_proc/.
1244
1245 2006-10-18  Sergey Poznyakoff  <gray@gnu.org.ua>
1246
1247         * lib/readutmp.c (desirable_utmp_entry): Implement new flag:
1248         READ_UTMP_USER_PROCESS.
1249         * lib/readutmp.h (READ_UTMP_USER_PROCESS): New flag
1250
1251 2006-10-17  Paul Eggert  <eggert@cs.ucla.edu>
1252
1253         * lib/localcharset.c: Do not check HAVE_SETLOCALE.
1254         * m4/localcharset.m4 (gl_LOCALCHARSET): Don't check for setlocale.
1255
1256 2006-10-17  Eric Blake  <ebb9@byu.net>
1257
1258         * lib/sigprocmask.c (sigprocmask): Fix typo.
1259
1260         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Fix typo.
1261
1262         * modules/clean-temp (Makefile.am): Don't add to make output...
1263         (configure.ac): ...instead define SIGNAL_SAFE_LIST inside
1264         config.h.
1265
1266 2006-10-17  Bruno Haible  <bruno@clisp.org>
1267
1268         * lib/gettext.h (gettext, ngettext, pgettext, npgettext): Define
1269         differently if DEFAULT_TEXT_DOMAIN is set.
1270
1271 2006-10-16  Bruno Haible  <bruno@clisp.org>
1272
1273         * lib/clean-temp.c: Include fwriteerror.h.
1274
1275 2006-10-16  Bruno Haible  <bruno@clisp.org>
1276
1277         * getndelim2.m4 (gl_GETNDELIM2): Remove 2003-10-23 hack.
1278
1279 2006-10-16  Bruno Haible  <bruno@clisp.org>
1280
1281         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Also test for sigset_t.
1282         * lib/sigprocmask.h: Include <sys/types.h>.
1283         (sigset_t): Use the system's definition if present.
1284
1285 2006-10-17  Eric Blake  <ebb9@byu.net>
1286
1287         * lib/xvasprintf.c (includes): Assume config.h.
1288         * lib/xasprintf.c (includes): Likewise.
1289
1290 2006-10-16  Paul Eggert  <eggert@cs.ucla.edu>
1291
1292         * lib/fsusage.c (PROPAGATE_ALL_ONES): Don't assume uintmax_t is
1293         at least as wide as intmax_t.
1294
1295 2006-10-16  Alexandre Duret-Lutz  <adl@gnu.org>
1296
1297         (Imported from Automake.)
1298         * build-aux/gnupload: Update to version 1.1 of directive file.
1299
1300 2006-10-16  Eric Blake  <ebb9@byu.net>
1301
1302         * modules/configmake (Makefile.am): Add pkglibexecdir support, to
1303         match Automake 1.10a.
1304
1305 2006-10-14  Bruno Haible  <bruno@clisp.org>
1306
1307         * modules/sigprocmask: New file.
1308         * lib/sigprocmask.h: New file.
1309         * lib/sigprocmask.c: New file.
1310         * m4/signalblocking.m4 (gl_SIGNALBLOCKING): Renamed from
1311         gt_SIGNALBLOCKING. When not defining HAVE_POSIX_SIGNALBLOCKING,
1312         request sigprocmask.o.
1313         (gl_PREREQ_SIGPROCMASK): New macro.
1314         * modules/fatal-signal (Files): Remove m4/signalblocking.m4.
1315         (Depends-on): Add sigprocmask.
1316         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Don't require
1317         gt_SIGNALBLOCKING. Test for 'raise' only once.
1318         * lib/fatal-signal.c: Include sigprocmask.h.
1319         (fatal_signal_set, init_fatal_signal_set, block_fatal_signals,
1320         unblock_fatal_signals): Define always.
1321         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
1322         sigprocmask.
1323
1324 2006-10-14  Paul Eggert  <eggert@cs.ucla.edu>
1325
1326         Sync from Automake.
1327         * build-aux/install-sh (posix_mkdir): Reject FreeBSD 6.1 mkdir -p -m,
1328         which incorrectly sets the mode of an existing destination
1329         directory.  In some cases the unpatched install-sh could do the
1330         equivalent of "chmod 777 /" or "chmod 0 /" on a buggy FreeBSD
1331         system.  We hope this is rare in practice, but it's clearly worth
1332         fixing.  Problem reported by Alex Unleashed in
1333         <http://lists.gnu.org/archive/html/bug-autoconf/2006-10/msg00012.html>.
1334         Also, don't bother to check for -m bugs unless we're using -m;
1335         suggested by Stepan Kasal.
1336
1337 2006-10-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1338
1339         Sync from Automake.
1340         * build-aux/depcomp (gcc3): Put dependency extraction flags before the
1341         `-c' flag, so they appear at the same position as in %FASTDEP%
1342         mode in depend2.am.  Fixes build failure for FreeBSD's c89,
1343         which ignores unknown options only after the first non-option.
1344         Bug report against M4 by Nelson H. F. Beebe.
1345
1346 2006-10-13  Jim Meyering  <jim@meyering.net>
1347
1348         Fix a bug in yesterday's change.
1349         * lib/fts.c (fts_open): When using FTS_XDEV|FTS_NOSTAT,
1350         p->fts_statp->st_dev would be used uninitialized.
1351         Ensures that we always call fts_stat on the very first entry.
1352         Miklos Szeredi reported that find -xdev stopped working.
1353
1354 2006-10-12  Bruno Haible  <bruno@clisp.org>
1355
1356         * gnulib-tool (func_get_automake_snippet): Append an automatically
1357         computed EXTRA_DIST augmentation.
1358         * modules/acl (Makefile.am): Remove EXTRA_DIST augmentation.
1359         * modules/alloca-opt (Makefile.am): Likewise.
1360         * modules/allocsa (Makefile.am): Likewise.
1361         * modules/arcfour (Makefile.am): Likewise.
1362         * modules/arctwo (Makefile.am): Likewise.
1363         * modules/argmatch (Makefile.am): Likewise.
1364         * modules/argz (Makefile.am): Likewise.
1365         * modules/atexit (Makefile.am): Likewise.
1366         * modules/backupfile (Makefile.am): Likewise.
1367         * modules/byteswap (Makefile.am): Likewise.
1368         * modules/c-strtod (Makefile.am): Likewise.
1369         * modules/c-strtold (Makefile.am): Likewise.
1370         * modules/calloc (Makefile.am): Likewise.
1371         * modules/canon-host (Makefile.am): Likewise.
1372         * modules/canonicalize (Makefile.am): Likewise.
1373         * modules/chdir-long (Makefile.am): Likewise.
1374         * modules/chdir-safer (Makefile.am): Likewise.
1375         * modules/check-version (Makefile.am): Likewise.
1376         * modules/chown (Makefile.am): Likewise.
1377         * modules/cloexec (Makefile.am): Likewise.
1378         * modules/close-stream (Makefile.am): Likewise.
1379         * modules/closeout (Makefile.am): Likewise.
1380         * modules/crc (Makefile.am): Likewise.
1381         * modules/csharpexec (Makefile.am): Likewise.
1382         * modules/cycle-check (Makefile.am): Likewise.
1383         * modules/des (Makefile.am): Likewise.
1384         * modules/dev-ino (Makefile.am): Likewise.
1385         * modules/dirfd (Makefile.am): Likewise.
1386         * modules/dirname (Makefile.am): Likewise.
1387         * modules/dup2 (Makefile.am): Likewise.
1388         * modules/eealloc (Makefile.am): Likewise.
1389         * modules/error (Makefile.am): Likewise.
1390         * modules/euidaccess (Makefile.am): Likewise.
1391         * modules/exclude (Makefile.am): Likewise.
1392         * modules/exitfail (Makefile.am): Likewise.
1393         * modules/fcntl-safer (Makefile.am): Likewise.
1394         * modules/fcntl (Makefile.am): Likewise.
1395         * modules/file-type (Makefile.am): Likewise.
1396         * modules/fileblocks (Makefile.am): Likewise.
1397         * modules/filemode (Makefile.am): Likewise.
1398         * modules/filenamecat (Makefile.am): Likewise.
1399         * modules/fnmatch (Makefile.am): Likewise.
1400         * modules/fopen-safer (Makefile.am): Likewise.
1401         * modules/fpending (Makefile.am): Likewise.
1402         * modules/fprintftime (Makefile.am): Likewise.
1403         * modules/free (Makefile.am): Likewise.
1404         * modules/fsusage (Makefile.am): Likewise.
1405         * modules/ftruncate (Makefile.am): Likewise.
1406         * modules/fts (Makefile.am): Likewise.
1407         * modules/gc-arcfour (Makefile.am): Likewise.
1408         * modules/gc-des (Makefile.am): Likewise.
1409         * modules/gc-hmac-md5 (Makefile.am): Likewise.
1410         * modules/gc-hmac-sha1 (Makefile.am): Likewise.
1411         * modules/gc-md4 (Makefile.am): Likewise.
1412         * modules/gc-pbkdf2-sha1 (Makefile.am): Likewise.
1413         * modules/gc-sha1 (Makefile.am): Likewise.
1414         * modules/gc (Makefile.am): Likewise.
1415         * modules/getaddrinfo (Makefile.am): Likewise.
1416         * modules/getcwd (Makefile.am): Likewise.
1417         * modules/getdelim (Makefile.am): Likewise.
1418         * modules/getdomainname (Makefile.am): Likewise.
1419         * modules/getgroups (Makefile.am): Likewise.
1420         * modules/gethostname (Makefile.am): Likewise.
1421         * modules/gethrxtime (Makefile.am): Likewise.
1422         * modules/getline (Makefile.am): Likewise.
1423         * modules/getloadavg (Makefile.am): Likewise.
1424         * modules/getlogin_r (Makefile.am): Likewise.
1425         * modules/getndelim2 (Makefile.am): Likewise.
1426         * modules/getopt (Makefile.am): Likewise.
1427         * modules/getpagesize (Makefile.am): Likewise.
1428         * modules/getpass-gnu (Makefile.am): Likewise.
1429         * modules/getpass (Makefile.am): Likewise.
1430         * modules/getsubopt (Makefile.am): Likewise.
1431         * modules/gettime (Makefile.am): Likewise.
1432         * modules/gettimeofday (Makefile.am): Likewise.
1433         * modules/getugroups (Makefile.am): Likewise.
1434         * modules/getusershell (Makefile.am): Likewise.
1435         * modules/glob (Makefile.am): Likewise.
1436         * modules/group-member (Makefile.am): Likewise.
1437         * modules/hard-locale (Makefile.am): Likewise.
1438         * modules/hash (Makefile.am): Likewise.
1439         * modules/hmac-md5 (Makefile.am): Likewise.
1440         * modules/hmac-sha1 (Makefile.am): Likewise.
1441         * modules/human (Makefile.am): Likewise.
1442         * modules/idcache (Makefile.am): Likewise.
1443         * modules/imaxabs (Makefile.am): Likewise.
1444         * modules/imaxdiv (Makefile.am): Likewise.
1445         * modules/inet_ntop (Makefile.am): Likewise.
1446         * modules/inet_pton (Makefile.am): Likewise.
1447         * modules/intprops (Makefile.am): Likewise.
1448         * modules/inttostr (Makefile.am): Likewise.
1449         * modules/inttypes (Makefile.am): Likewise.
1450         * modules/isapipe (Makefile.am): Likewise.
1451         * modules/javaversion (Makefile.am): Likewise.
1452         * modules/lchmod (Makefile.am): Likewise.
1453         * modules/lchown (Makefile.am): Likewise.
1454         * modules/localcharset (Makefile.am): Likewise.
1455         * modules/long-options (Makefile.am): Likewise.
1456         * modules/lstat (Makefile.am): Likewise.
1457         * modules/malloc (Makefile.am): Likewise.
1458         * modules/mathl (Makefile.am): Likewise.
1459         * modules/mbchar (Makefile.am): Likewise.
1460         * modules/md2 (Makefile.am): Likewise.
1461         * modules/md4 (Makefile.am): Likewise.
1462         * modules/md5 (Makefile.am): Likewise.
1463         * modules/memcasecmp (Makefile.am): Likewise.
1464         * modules/memchr (Makefile.am): Likewise.
1465         * modules/memcmp (Makefile.am): Likewise.
1466         * modules/memcoll (Makefile.am): Likewise.
1467         * modules/memcpy (Makefile.am): Likewise.
1468         * modules/memmem (Makefile.am): Likewise.
1469         * modules/memmove (Makefile.am): Likewise.
1470         * modules/mempcpy (Makefile.am): Likewise.
1471         * modules/memrchr (Makefile.am): Likewise.
1472         * modules/memset (Makefile.am): Likewise.
1473         * modules/memxor (Makefile.am): Likewise.
1474         * modules/mkancesdirs (Makefile.am): Likewise.
1475         * modules/mkdir-p (Makefile.am): Likewise.
1476         * modules/mkdir (Makefile.am): Likewise.
1477         * modules/mkdtemp (Makefile.am): Likewise.
1478         * modules/mkstemp (Makefile.am): Likewise.
1479         * modules/mktime (Makefile.am): Likewise.
1480         * modules/modechange (Makefile.am): Likewise.
1481         * modules/mountlist (Makefile.am): Likewise.
1482         * modules/nanosleep (Makefile.am): Likewise.
1483         * modules/obstack (Makefile.am): Likewise.
1484         * modules/openat (Makefile.am): Likewise.
1485         * modules/pagealign_alloc (Makefile.am): Likewise.
1486         * modules/pathmax (Makefile.am): Likewise.
1487         * modules/physmem (Makefile.am): Likewise.
1488         * modules/poll (Makefile.am): Likewise.
1489         * modules/posixtm (Makefile.am): Likewise.
1490         * modules/posixver (Makefile.am): Likewise.
1491         * modules/putenv (Makefile.am): Likewise.
1492         * modules/quote (Makefile.am): Likewise.
1493         * modules/quotearg (Makefile.am): Likewise.
1494         * modules/raise (Makefile.am): Likewise.
1495         * modules/read-file (Makefile.am): Likewise.
1496         * modules/readline (Makefile.am): Likewise.
1497         * modules/readlink (Makefile.am): Likewise.
1498         * modules/readtokens (Makefile.am): Likewise.
1499         * modules/readutmp (Makefile.am): Likewise.
1500         * modules/realloc (Makefile.am): Likewise.
1501         * modules/regex (Makefile.am): Likewise.
1502         * modules/rename-dest-slash (Makefile.am): Likewise.
1503         * modules/rename (Makefile.am): Likewise.
1504         * modules/rijndael (Makefile.am): Likewise.
1505         * modules/rmdir (Makefile.am): Likewise.
1506         * modules/rpmatch (Makefile.am): Likewise.
1507         * modules/safe-read (Makefile.am): Likewise.
1508         * modules/safe-write (Makefile.am): Likewise.
1509         * modules/same-inode (Makefile.am): Likewise.
1510         * modules/same (Makefile.am): Likewise.
1511         * modules/save-cwd (Makefile.am): Likewise.
1512         * modules/savedir (Makefile.am): Likewise.
1513         * modules/setenv (Makefile.am): Likewise.
1514         * modules/settime (Makefile.am): Likewise.
1515         * modules/sha1 (Makefile.am): Likewise.
1516         * modules/sig2str (Makefile.am): Likewise.
1517         * modules/snprintf (Makefile.am): Likewise.
1518         * modules/stat-macros (Makefile.am): Likewise.
1519         * modules/stat-time (Makefile.am): Likewise.
1520         * modules/stdbool (Makefile.am): Likewise.
1521         * modules/stdint (Makefile.am): Likewise.
1522         * modules/stdlib-safer (Makefile.am): Likewise.
1523         * modules/stpcpy (Makefile.am): Likewise.
1524         * modules/stpncpy (Makefile.am): Likewise.
1525         * modules/strcase (Makefile.am): Likewise.
1526         * modules/strcasestr (Makefile.am): Likewise.
1527         * modules/strchrnul (Makefile.am): Likewise.
1528         * modules/strcspn (Makefile.am): Likewise.
1529         * modules/strdup (Makefile.am): Likewise.
1530         * modules/strerror (Makefile.am): Likewise.
1531         * modules/strftime (Makefile.am): Likewise.
1532         * modules/strndup (Makefile.am): Likewise.
1533         * modules/strnlen (Makefile.am): Likewise.
1534         * modules/strpbrk (Makefile.am): Likewise.
1535         * modules/strsep (Makefile.am): Likewise.
1536         * modules/strstr (Makefile.am): Likewise.
1537         * modules/strtod (Makefile.am): Likewise.
1538         * modules/strtoimax (Makefile.am): Likewise.
1539         * modules/strtok_r (Makefile.am): Likewise.
1540         * modules/strtol (Makefile.am): Likewise.
1541         * modules/strtoll (Makefile.am): Likewise.
1542         * modules/strtoul (Makefile.am): Likewise.
1543         * modules/strtoull (Makefile.am): Likewise.
1544         * modules/strtoumax (Makefile.am): Likewise.
1545         * modules/strverscmp (Makefile.am): Likewise.
1546         * modules/sys_socket (Makefile.am): Likewise.
1547         * modules/sys_stat (Makefile.am): Likewise.
1548         * modules/sysexits (Makefile.am): Likewise.
1549         * modules/time_r (Makefile.am): Likewise.
1550         * modules/timegm (Makefile.am): Likewise.
1551         * modules/timespec (Makefile.am): Likewise.
1552         * modules/tmpfile-safer (Makefile.am): Likewise.
1553         * modules/trim (Makefile.am): Likewise.
1554         * modules/unistd-safer (Makefile.am): Likewise.
1555         * modules/unlinkdir (Makefile.am): Likewise.
1556         * modules/unlocked-io (Makefile.am): Likewise.
1557         * modules/userspec (Makefile.am): Likewise.
1558         * modules/utime (Makefile.am): Likewise.
1559         * modules/utimecmp (Makefile.am): Likewise.
1560         * modules/utimens (Makefile.am): Likewise.
1561         * modules/vasnprintf (Makefile.am): Likewise.
1562         * modules/vasprintf (Makefile.am): Likewise.
1563         * modules/vsnprintf (Makefile.am): Likewise.
1564         * modules/xalloc (Makefile.am): Likewise.
1565         * modules/xgetcwd (Makefile.am): Likewise.
1566         * modules/xnanosleep (Makefile.am): Likewise.
1567         * modules/xreadlink (Makefile.am): Likewise.
1568         * modules/xstrtod (Makefile.am): Likewise.
1569         * modules/xstrtol (Makefile.am): Likewise.
1570         * modules/xstrtold (Makefile.am): Likewise.
1571         * modules/yesno (Makefile.am): Likewise.
1572         * modules/getdate (Makefile.am): Don't add getdate.h to EXTRA_DIST.
1573
1574 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
1575
1576         * modules/error (Makefile.am): Distribute files through
1577         EXTRA_DIST, not lib_SOURCES.
1578
1579 2006-10-12  Eric Blake  <ebb9@byu.net>
1580
1581         * modules/error (Makefile.am): Distribute files in /lib.
1582         * modules/obstack (Makefile.am): Likewise.
1583
1584 2006-10-12  Bruno Haible  <bruno@clisp.org>
1585
1586         * modules/acl (Makefile.am): Distribute all files in lib/ through
1587         EXTRA_DIST.
1588         * modules/arcfour (Makefile.am): Likewise.
1589         * modules/arctwo (Makefile.am): Likewise.
1590         * modules/argmatch (Makefile.am): Likewise.
1591         * modules/argz (Makefile.am): Likewise.
1592         * modules/atexit (Makefile.am): Likewise.
1593         * modules/backupfile (Makefile.am): Likewise.
1594         * modules/c-strtod (Makefile.am): Likewise.
1595         * modules/c-strtold (Makefile.am): Likewise.
1596         * modules/calloc (Makefile.am): Likewise.
1597         * modules/canon-host (Makefile.am): Likewise.
1598         * modules/canonicalize (Makefile.am): Likewise.
1599         * modules/chdir-long (Makefile.am): Likewise.
1600         * modules/chdir-safer (Makefile.am): Likewise.
1601         * modules/check-version (Makefile.am): Likewise.
1602         * modules/chown (Makefile.am): Likewise.
1603         * modules/cloexec (Makefile.am): Likewise.
1604         * modules/close-stream (Makefile.am): Likewise.
1605         * modules/closeout (Makefile.am): Likewise.
1606         * modules/crc (Makefile.am): Likewise.
1607         * modules/cycle-check (Makefile.am): Likewise.
1608         * modules/des (Makefile.am): Likewise.
1609         * modules/dirfd (Makefile.am): Likewise.
1610         * modules/dirname (Makefile.am): Likewise.
1611         * modules/dup2 (Makefile.am): Likewise.
1612         * modules/euidaccess (Makefile.am): Likewise.
1613         * modules/exclude (Makefile.am): Likewise.
1614         * modules/exitfail (Makefile.am): Likewise.
1615         * modules/fcntl-safer (Makefile.am): Likewise.
1616         * modules/file-type (Makefile.am): Likewise.
1617         * modules/fileblocks (Makefile.am): Likewise.
1618         * modules/filemode (Makefile.am): Likewise.
1619         * modules/filenamecat (Makefile.am): Likewise.
1620         * modules/fnmatch (Makefile.am): Likewise.
1621         * modules/fopen-safer (Makefile.am): Likewise.
1622         * modules/fpending (Makefile.am): Likewise.
1623         * modules/fprintftime (Makefile.am): Likewise.
1624         * modules/free (Makefile.am): Likewise.
1625         * modules/fsusage (Makefile.am): Likewise.
1626         * modules/ftruncate (Makefile.am): Likewise.
1627         * modules/fts (Makefile.am): Likewise.
1628         * modules/gc (Makefile.am): Likewise.
1629         * modules/gc-pbkdf2-sha1 (Makefile.am): Likewise.
1630         * modules/getaddrinfo (Makefile.am): Likewise.
1631         * modules/getcwd (Makefile.am): Likewise.
1632         * modules/getdelim (Makefile.am): Likewise.
1633         * modules/getdomainname (Makefile.am): Likewise.
1634         * modules/getgroups (Makefile.am): Likewise.
1635         * modules/gethostname (Makefile.am): Likewise.
1636         * modules/gethrxtime (Makefile.am): Likewise.
1637         * modules/getline (Makefile.am): Likewise.
1638         * modules/getloadavg (Makefile.am): Likewise.
1639         * modules/getlogin_r (Makefile.am): Likewise.
1640         * modules/getopt (Makefile.am): Likewise.
1641         * modules/getpass (Makefile.am): Likewise.
1642         * modules/getpass-gnu (Makefile.am): Likewise.
1643         * modules/getsubopt (Makefile.am): Likewise.
1644         * modules/gettime (Makefile.am): Likewise.
1645         * modules/gettimeofday (Makefile.am): Likewise.
1646         * modules/getugroups (Makefile.am): Likewise.
1647         * modules/getusershell (Makefile.am): Likewise.
1648         * modules/glob (Makefile.am): Likewise.
1649         * modules/group-member (Makefile.am): Likewise.
1650         * modules/hard-locale (Makefile.am): Likewise.
1651         * modules/hash (Makefile.am): Likewise.
1652         * modules/hmac-md5 (Makefile.am): Likewise.
1653         * modules/hmac-sha1 (Makefile.am): Likewise.
1654         * modules/human (Makefile.am): Likewise.
1655         * modules/idcache (Makefile.am): Likewise.
1656         * modules/imaxabs (Makefile.am): Likewise.
1657         * modules/imaxdiv (Makefile.am): Likewise.
1658         * modules/inet_ntop (Makefile.am): Likewise.
1659         * modules/inet_pton (Makefile.am): Likewise.
1660         * modules/inttostr (Makefile.am): Likewise.
1661         * modules/isapipe (Makefile.am): Likewise.
1662         * modules/lchown (Makefile.am): Likewise.
1663         * modules/long-options (Makefile.am): Likewise.
1664         * modules/lstat (Makefile.am): Likewise.
1665         * modules/malloc (Makefile.am): Likewise.
1666         * modules/mathl (Makefile.am): Likewise.
1667         * modules/mbchar (Makefile.am): Likewise.
1668         * modules/md2 (Makefile.am): Likewise.
1669         * modules/md4 (Makefile.am): Likewise.
1670         * modules/md5 (Makefile.am): Likewise.
1671         * modules/memcasecmp (Makefile.am): Likewise.
1672         * modules/memchr (Makefile.am): Likewise.
1673         * modules/memcmp (Makefile.am): Likewise.
1674         * modules/memcoll (Makefile.am): Likewise.
1675         * modules/memcpy (Makefile.am): Likewise.
1676         * modules/memmem (Makefile.am): Likewise.
1677         * modules/memmove (Makefile.am): Likewise.
1678         * modules/mempcpy (Makefile.am): Likewise.
1679         * modules/memrchr (Makefile.am): Likewise.
1680         * modules/memset (Makefile.am): Likewise.
1681         * modules/memxor (Makefile.am): Likewise.
1682         * modules/mkancesdirs (Makefile.am): Likewise.
1683         * modules/mkdir (Makefile.am): Likewise.
1684         * modules/mkdir-p (Makefile.am): Likewise.
1685         * modules/mkdtemp (Makefile.am): Likewise.
1686         * modules/mkstemp (Makefile.am): Likewise.
1687         * modules/mktime (Makefile.am): Likewise.
1688         * modules/modechange (Makefile.am): Likewise.
1689         * modules/mountlist (Makefile.am): Likewise.
1690         * modules/nanosleep (Makefile.am): Likewise.
1691         * modules/openat (Makefile.am): Likewise.
1692         * modules/pagealign_alloc (Makefile.am): Likewise.
1693         * modules/physmem (Makefile.am): Likewise.
1694         * modules/poll (Makefile.am): Likewise.
1695         * modules/posixtm (Makefile.am): Likewise.
1696         * modules/posixver (Makefile.am): Likewise.
1697         * modules/putenv (Makefile.am): Likewise.
1698         * modules/quote (Makefile.am): Likewise.
1699         * modules/quotearg (Makefile.am): Likewise.
1700         * modules/raise (Makefile.am): Likewise.
1701         * modules/read-file (Makefile.am): Likewise.
1702         * modules/readline (Makefile.am): Likewise.
1703         * modules/readlink (Makefile.am): Likewise.
1704         * modules/readtokens (Makefile.am): Likewise.
1705         * modules/readutmp (Makefile.am): Likewise.
1706         * modules/realloc (Makefile.am): Likewise.
1707         * modules/regex (Makefile.am): Likewise.
1708         * modules/rename (Makefile.am): Likewise.
1709         * modules/rename-dest-slash (Makefile.am): Likewise.
1710         * modules/rijndael (Makefile.am): Likewise.
1711         * modules/rmdir (Makefile.am): Likewise.
1712         * modules/rpmatch (Makefile.am): Likewise.
1713         * modules/safe-read (Makefile.am): Likewise.
1714         * modules/safe-write (Makefile.am): Likewise.
1715         * modules/same (Makefile.am): Likewise.
1716         * modules/save-cwd (Makefile.am): Likewise.
1717         * modules/savedir (Makefile.am): Likewise.
1718         * modules/setenv (Makefile.am): Likewise.
1719         * modules/settime (Makefile.am): Likewise.
1720         * modules/sha1 (Makefile.am): Likewise.
1721         * modules/sig2str (Makefile.am): Likewise.
1722         * modules/snprintf (Makefile.am): Likewise.
1723         * modules/stdlib-safer (Makefile.am): Likewise.
1724         * modules/stpcpy (Makefile.am): Likewise.
1725         * modules/stpncpy (Makefile.am): Likewise.
1726         * modules/strcase (Makefile.am): Likewise.
1727         * modules/strcasestr (Makefile.am): Likewise.
1728         * modules/strchrnul (Makefile.am): Likewise.
1729         * modules/strcspn (Makefile.am): Likewise.
1730         * modules/strdup (Makefile.am): Likewise.
1731         * modules/strerror (Makefile.am): Likewise.
1732         * modules/strftime (Makefile.am): Likewise.
1733         * modules/strndup (Makefile.am): Likewise.
1734         * modules/strnlen (Makefile.am): Likewise.
1735         * modules/strpbrk (Makefile.am): Likewise.
1736         * modules/strsep (Makefile.am): Likewise.
1737         * modules/strstr (Makefile.am): Likewise.
1738         * modules/strtod (Makefile.am): Likewise.
1739         * modules/strtoimax (Makefile.am): Likewise.
1740         * modules/strtok_r (Makefile.am): Likewise.
1741         * modules/strtol (Makefile.am): Likewise.
1742         * modules/strtoll (Makefile.am): Likewise.
1743         * modules/strtoul (Makefile.am): Likewise.
1744         * modules/strtoull (Makefile.am): Likewise.
1745         * modules/strtoumax (Makefile.am): Likewise.
1746         * modules/strverscmp (Makefile.am): Likewise.
1747         * modules/time_r (Makefile.am): Likewise.
1748         * modules/timegm (Makefile.am): Likewise.
1749         * modules/tmpfile-safer (Makefile.am): Likewise.
1750         * modules/unistd-safer (Makefile.am): Likewise.
1751         * modules/unlinkdir (Makefile.am): Likewise.
1752         * modules/userspec (Makefile.am): Likewise.
1753         * modules/utime (Makefile.am): Likewise.
1754         * modules/utimecmp (Makefile.am): Likewise.
1755         * modules/utimens (Makefile.am): Likewise.
1756         * modules/vasnprintf (Makefile.am): Likewise.
1757         * modules/vasprintf (Makefile.am): Likewise.
1758         * modules/vsnprintf (Makefile.am): Likewise.
1759         * modules/xalloc (Makefile.am): Likewise.
1760         * modules/xgetcwd (Makefile.am): Likewise.
1761         * modules/xnanosleep (Makefile.am): Likewise.
1762         * modules/xreadlink (Makefile.am): Likewise.
1763         * modules/xstrtod (Makefile.am): Likewise.
1764         * modules/xstrtol (Makefile.am): Likewise.
1765         * modules/xstrtold (Makefile.am): Likewise.
1766         * modules/yesno (Makefile.am): Likewise.
1767
1768 2006-10-12  Jim Meyering  <jim@meyering.net>
1769
1770         * m4/getloadavg.m4: Revert the change below.
1771
1772         * m4/getloadavg.m4 (gl_GETLOADAVG): Test for the existence of
1773         lib/getloadavg.c using "ls -L", not "test -f".  The latter would
1774         fail with a symlink, which is what coreutils' ./bootstrap now
1775         creates by default.
1776
1777 2006-10-12  Bruno Haible  <bruno@clisp.org>
1778
1779         * lib/inttypes_.h (_LONG_LONG_FORMAT_PREFIX): Don't define for MSVC or
1780         mingw.
1781         (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX, _SCNu64_PREFIX): Handle
1782         MSVC and mingw explicitly.
1783
1784 2006-10-11  Simon Josefsson  <jas@extundo.com>
1785             Bruno Haible  <bruno@clisp.org>
1786
1787         Add support for multiple gnulib-tool invocations in the scope of a
1788         single configure.ac file.
1789         * gnulib-tool (func_emit_lib_Makefile_am): In the _LIBADD variable,
1790         use a private [LT]LIBOBJS variant. Define a _DEPENDENCIES variable
1791         with the same contents as the _LIBADD variable.
1792         (func_emit_initmacro_start, func_emit_initmacro_end,
1793         func_emit_initmacro_done): New functions.
1794         (func_import, func_create_testdir): Invoke them. Allow the identifiers
1795         gl_LIBOBJS and gl_LTLIBOBJS.
1796
1797 2006-10-11  Bruno Haible  <bruno@clisp.org>
1798
1799         * gnulib-tool (GETTEXTPATH, AUTOHEADER, AUTOPOINT): New variables.
1800         (func_create_testdir): Don't create po/Makefile.am, don't invoke
1801         autoreconf. Instead, invoke autopoint explicitly but move back the
1802         *.m4 files from gnulib.
1803
1804 2006-10-11  Bruno Haible  <bruno@clisp.org>
1805
1806         * gnulib-tool (func_usage): Make module names after --create-testdir
1807         optional.
1808         (func_create_testdir): If no module was specified, use nearly all
1809         modules.
1810
1811 2006-10-12  Jim Meyering  <jim@meyering.net>
1812
1813         Big performance improvement for fts-based tools that use FTS_NOSTAT.
1814         Avoid spurious inode-mismatch problems on non-POSIX file systems.
1815         Details: http://article.gmane.org/gmane.comp.lib.gnulib.bugs/7416
1816         * lib/fts_.h (FTS_DEFER_STAT): Define new flag.
1817         (FTS_OPTIONMASK): Extend the mask to reflect this addition.
1818         * lib/fts.c (DT_IS_KNOWN, DT_MUST_BE): Define.
1819         (FTS_NO_STAT_REQUIRED, FTS_STAT_REQUIRED): Define.
1820         (fts_set_stat_required): New function.
1821         (fts_open): Defer the calls to fts_stat, if possible or requested.
1822         Move the code that maps a command-line fts_info value FTS_DOT to FTS_D
1823         into fts_stat itself.
1824         (fts_read): Perform any required (deferred) fts_stat call.
1825         (fts_build): Likewise, for the directory we're about to open and read.
1826         In the readdir loop, carefully decide whether each entry will require
1827         an eventual call to fts_stat, using dirent.d_type info if available.
1828         (fts_stat): Move the test for whether to honor FTS_COMFOLLOW on
1829         a command line argument into this function.  Update all callers.
1830         Map a return value of FTS_DOT to FTS_D for a command line argument.
1831         * modules/fts (Depends-on): Add d-type.  Alphabetize.
1832         Thanks to Miklos Szeredi for his tenacity and for the initial
1833         bug report about "find" failing on a FUSE-based file system.
1834
1835         * lib/fts.c (fts_open): Use consistent indentation.
1836
1837 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
1838
1839         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Renamed from
1840         gl_USE_SYSTEM_EXTENSIONS, to fix a coreutils bootstrap failure
1841         reported by Jim Meyering.  All uses of cache variables renamed
1842         to match Autoconf's.
1843         (gl_USE_SYSTEM_EXTENSIONS): New macro, which simply requires
1844         the other one.
1845
1846         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH):
1847         Fix misspelling in diagnostic.
1848
1849 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
1850
1851         * lib/mkdir-p.c (HAVE_FCHMOD): Define to false if not already
1852         defined.  Problem reported by Matthew Woehlke.
1853
1854         * lib/inttypes_.h (_LONG_LONG_FORMAT_PREFIX): New macro.
1855         Add support for Tandem NonStop R series.
1856         (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX, _SCNu64_PREFIX):
1857         Use new macro.
1858
1859         * lib/rename-dest-slash.c: Include stdbool.h but not string.h.
1860         (has_trailing_slash): Omit size arg; all callers changed.
1861         Omit 'inline', since it doesn't help performance and we'd
1862         need to configure it.
1863         Don't count //, ///, etc. as having a trailing slash.
1864         As a side effect, this removes a C99ism reported by Matthew Woehlke.
1865         (rpl_rename_dest_slash): On failure, use rename's errno rather
1866         than (in some cases) an incorrect or junk errno.
1867         Simplify code by removing need to compute length; this does
1868         cause it to make two passes instead of one over the file name,
1869         but it's worth it.
1870
1871         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Undo previous
1872         change, since Autoconf's version may no longer be appropriate now
1873         that we are using CVS Autoconf's version.  Add support for Tandem.
1874
1875 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
1876             Bruno Haible  <bruno@clisp.org>
1877
1878         * lib/allocsa.h (sa_alignment_longlong, sa_alignment_max): Test
1879         HAVE_LONG_LONG_INT instead of HAVE_LONG_LONG.
1880         * m4/allocsa.m4 (gl_ALLOCSA): Invoke AC_TYPE_LONG_LONG_INT instead of
1881         gl_AC_TYPE_LONG_LONG.
1882
1883         * lib/printf-args.h (arg_type, argument): Test HAVE_LONG_LONG_INT
1884         instead of HAVE_LONG_LONG.
1885         * lib/printf-args.c (printf_fetchargs): Likewise.
1886         * lib/printf-parse.c (PRINTF_PARSE): Likewise.
1887         * lib/vasnprintf.c (VASNPRINTF): Likewise.
1888         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_ARGS, gl_PREREQ_PRINTF_PARSE,
1889         gl_PREREQ_VASNPRINTF): Invoke AC_TYPE_LONG_LONG_INT instead of
1890         gl_AC_TYPE_LONG_LONG.
1891
1892 2006-10-11  Bruno Haible  <bruno@clisp.org>
1893
1894         * m4/longlong.m4: Add comments.
1895         * m4/ulonglong.m4: Likewise.
1896
1897 2006-10-10  Bruno Haible  <bruno@clisp.org>
1898
1899         Make it possible to #define stpcpy, strdup to aliases.
1900         * lib/stpcpy.c (stpcpy) [!_LIBC]: Don't undefine.
1901         * lib/strdup.c (strdup) [!_LIBC]: Don't undefine.
1902
1903 2006-10-10  Bruno Haible  <bruno@clisp.org>
1904
1905         Make it possible to #define gcd to an alias.
1906         * lib/gcd.c: Include config.h.
1907
1908 2006-10-10  Bruno Haible  <bruno@clisp.org>
1909
1910         Make it possible to #define c_isascii to an alias.
1911         * lib/c-ctype.h: Don't define the macros if NO_C_CTYPE_MACROS is
1912         defined. Undefine the macros before defining them, to avoid gcc
1913         warnings.
1914         * lib/c-ctype.c: Include config.h. Don't undefine the macros; instead,
1915         define NO_C_CTYPE_MACROS early.
1916
1917 2006-10-10  Bruno Haible  <bruno@clisp.org>
1918
1919         Make it possible to #define set_program_name to an alias.
1920         * lib/progname.c: Don't undefine set_program_name; instead, undefine
1921         ENABLE_RELOCATABLE early.
1922
1923 2006-10-10  Paul Eggert  <eggert@cs.ucla.edu>
1924
1925         Port to Tandem NSK OSS, which has 64-bit signed int but at most
1926         32-bit unsigned int.  Problem reported by Matthew Woehlke in:
1927         http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00062.html
1928         More generally, don't assume that 64-bit signed int is available
1929         if unsigned int is, and vice versa.
1930         * lib/inttypes_.h (_PRIu64_PREFIX, _SCNu64_PREFIX): Depend on
1931         unsigned symbols, not on their signed counterparts.
1932         * lib/stdint_.h (uint64_t, uint_least64_t, uint_fast64_t, uintmax_t):
1933         (UINT64_MAX, UINT_LEAST64_MAX, UINT_FAST64_MAX, UINTMAX_MAX):
1934         (UINT64_C, UINTMAX_C):
1935         Likewise.
1936         * lib/strtoimax.c (strtoll): Depend on signed symbols, not their
1937         unsigned counterparts.
1938         (Have_long_long, Unsigned): New macros.
1939         (Int): Renamed from INT.
1940         (strtoimax): Use the new macros.
1941         * m4/stdint.m4 (gl_STDINT_H): Require AC_TYPE_UNSIGNED_LONG_LONG_INT
1942         and substitute HAVE_UNSIGNED_LONG_LONG_INT.
1943         * modules/inttypes (inttypes.h): Substitute
1944         HAVE_UNSIGNED_LONG_LONG_INT.
1945         * modules/stdint (stdint.h): Likewise.
1946         (Files): Add m4/ulonglong.m4.
1947
1948 2006-10-10  Bruno Haible  <bruno@clisp.org>
1949
1950         Fix a gcc -Wshadow warning.
1951         * lib/gl_anyhash_list2.h (hash_resize): Rename local variable 'index'
1952         to 'bucket'.
1953         * lib/gl_anylinked_list2.h (gl_linked_search_from_to,
1954         gl_linked_indexof_from_to): Likewise.
1955         * lib/gl_linkedhash_list.c (add_to_bucket, remove_from_bucket):
1956         Likewise.
1957         * lib/gl_anytreehash_list1.h (add_to_bucket, remove_from_bucket):
1958         Likewise.
1959         * lib/gl_anytreehash_list2.h (gl_tree_search_from_to): Likewise.
1960         Reported by Eric Blake.
1961
1962 2006-10-09  Paul Eggert  <eggert@cs.ucla.edu>
1963
1964         * lib/filemode.h [HAVE_DECL_STRMODE]: Include unistd.h too,
1965         for NetBSD.  Problem reported by Bruno Haible.
1966
1967 2006-10-09  Jim Meyering  <jim@meyering.net>
1968
1969         * lib/lchown.c: Include <sys/stat.h> before "stat-macros.h".
1970         Patch from Bruno Haible.
1971
1972 2006-10-09  Jim Meyering  <jim@meyering.net>
1973
1974         * lib/fts-cycle.c (leave_dir): When "leaving" a top level directory due
1975         to FTS_SKIP, don't copy the parent's uninitialized dev/ino values.
1976         Trigger with e.g., mkdir d && valgrind ./chmod u+rwx d d
1977
1978 2006-10-08  Paul Eggert  <eggert@cs.ucla.edu>
1979
1980         Don't include <config.h> twice; this doesn't work in some cases,
1981         e.g., when config.h has "#define intmax_t long long int" and
1982         we include <config.h>, <inttypes.h>, <config.h> in that order.
1983         Problem reported by Matthew Woehlke in:
1984         http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00073.html
1985         * lib/fprintftime.c: Don't include config.h or fprintftime.h.
1986         * lib/fts-cycle.c: Don't include config.h.
1987         * lib/strftime.c: Include fprintftime.h if FPRINTFTIME is defined.
1988         * lib/xstrtoimax.c: Remove copyright notice since it's short tnow.
1989         Don't include config.h or xstrtol.h.  Define STRTOL_T_MINIMUM
1990         and STRTOL_T_MAXIMUM unconditionally, since we now assume gnulib
1991         inttypes.h.
1992         * lib/xstrtoumax.c: Likewise.
1993         * lib/xstrtol.c: Include config.h and xstrtol.h after defining
1994         __strtol and the like, so that this module is more like its siblings.
1995         (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM) [! defined STRTOL_T_MINIMUM]:
1996         Remove; no longer needed now that we assume gnulib inttypes.h.
1997
1998 2006-10-08  Bruno Haible  <bruno@clisp.org>
1999
2000         * doc/gnulib-tool.texi: Emphasize the drawbacks of the --symlink
2001         option.
2002
2003 2006-10-07  Jim Meyering  <jim@meyering.net>
2004
2005         * modules/inttypes (inttypes.h): Revert what seems to have been
2006         an inadvertent part of today's change: use "|", not "/" in the
2007         substitution for the "/"-containing string, $(ABSOLUTE_INTTYPES_H).
2008
2009 2006-10-07  Bruno Haible  <bruno@clisp.org>
2010
2011         * modules/sublist: New file.
2012
2013 2006-10-07  Bruno Haible  <bruno@clisp.org>
2014
2015         * modules/alloca-opt (alloca.h): Add a "DO NOT EDIT" comment.
2016         * modules/argz (argz.h): Likewise.
2017         * modules/arpa_inet (arpa/inet.h): Likewise.
2018         * modules/byteswap (byteswap.h): Likewise.
2019         * modules/configmake (configmake.h): Likewise.
2020         * modules/fcntl (fcntl.h): Likewise.
2021         * modules/fnmatch (fnmatch.h): Likewise.
2022         * modules/getopt (getopt.h): Likewise.
2023         * modules/glob (glob.h): Likewise.
2024         * modules/inttypes (inttypes.h): Likewise.
2025         * modules/netinet_in (netinet/in.h): Likewise.
2026         * modules/poll (poll.h): Likewise.
2027         * modules/stdbool (stdbool.h): Likewise.
2028         * modules/stdint (stdint.h): Likewise.
2029         * modules/sys_select (sys/select.h): Likewise.
2030         * modules/sys_socket (sys/socket.h): Likewise.
2031         * modules/sys_stat (sys/stat.h): Likewise.
2032         * modules/sysexits (sysexits.h): Likewise.
2033         * modules/unistd (unistd.h): Likewise.
2034         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
2035         Add a "DO NOT EDIT" comment to the generated file.
2036         (func_import): Likewise for gnulib-comp.m4.
2037
2038 2006-10-07  Bruno Haible  <bruno@clisp.org>
2039
2040         * lib/gl_sublist.h: New file.
2041         * lib/gl_sublist.c: New file.
2042
2043 2006-10-06  Paul Eggert  <eggert@cs.ucla.edu>
2044
2045         * lib/mkancesdirs.c (mkancesdirs): Pass to MAKE_DIR both the full file
2046         name (relative to the original working directory) and the file
2047         name component (relative to the temporary working directory).  All
2048         callers changed.
2049         * lib/mkancesdirs.h (mkancesdirs): Adjust prototype to match.
2050         * lib/mkdir-p.c (make_dir_parents): Likewise.
2051         * lib/mkdir-p.h (make_dir_parents): Likewise.
2052
2053 2006-10-06  Eric Blake  <ebb9@byu.net>
2054
2055         Define several macros for use by the clean-temp module.
2056         * m4/close-stream.m4 (gl_CLOSE_STREAM): Define GNULIB_CLOSE_STREAM.
2057         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Define GNULIB_FCNTL_SAFER.
2058         * m4/stdio-safer.m4 (gl_FOPEN_SAFER): Define GNULIB_FOPEN_SAFER.
2059
2060         * lib/clean-temp.h (close_stream_temp): New declaration.
2061         * lib/clean-temp.c (includes): Pull in headers according to what
2062         other modules are in use.
2063         (close_stream_temp) [GNULIB_CLOSE_STREAM]: New function.
2064
2065 2006-10-06  Bruno Haible  <bruno@clisp.org>
2066
2067         * lib/javacomp.c (write_temp_file): Use fopen_temp, fwriteerror_temp
2068         instead of fopen, fwriteerror.
2069
2070 2006-10-06  Bruno Haible  <bruno@clisp.org>
2071
2072         * lib/clean-temp.h (cleanup_temp_file, cleanup_temp_subdir,
2073         cleanup_temp_dir_contents, cleanup_temp_dir): Change return type to
2074         int.
2075         * lib/clean-temp.c (do_unlink, do_rmdir, cleanup_temp_file,
2076         cleanup_temp_subdir, cleanup_temp_dir_contents, cleanup_temp_dir):
2077         Return an error indicator.
2078         Suggested by Eric Blake.
2079
2080 2006-10-06  Bruno Haible  <bruno@clisp.org>
2081
2082         * lib/clean-temp.c (PATH_MAX): Provide a fallback for GNU Hurd.
2083         Reported by Eric Blake.
2084
2085 2006-10-06  Bruno Haible  <bruno@clisp.org>
2086
2087         * modules/closeout (Description): Mention stderr too.
2088
2089 2006-10-06  Bruno Haible  <bruno@clisp.org>
2090         and Paul Eggert  <eggert@cs.ucla.edu>
2091
2092         * lib/closeout.c (close_stdout): Also close stderr.
2093         * lib/closeout.h: Update comment.
2094
2095 2006-10-05  Paul Eggert  <eggert@cs.ucla.edu>
2096
2097         Fix some Darwin-7.9.0 porting problems reported by Bruno Haible in
2098         <http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00063.html>.
2099         * lib/dirchownmod.c: Include lchown.h.
2100         * lib/lchown.c: Don't include files that lchown.h now includes.
2101         Don't declare chown, since lchown.h now does that.
2102         * lib/lchown.h: Include errno.h, sys/types.h, unistd.h.
2103         (lchown): Define to rpl_chown if lchown is declared but
2104         does not exist.  Declare using a prototype if lchown is not
2105         declared.  Add a copyright notice.
2106         * lib/mkstemp.h: Include <unistd.h>.
2107         * lib/openat.c: Include lchown.h.
2108
2109         * lib/fcntl_.h (O_NOFOLLOW): Don't depend on O_NOFOLLOW_IS_INEFFECTIVE;
2110         we now test for that separately.
2111         * lib/fts.c (fts_safe_changedir): Inspect HAVE_WORKING_O_NOFOLLOW
2112         rather than O_NOFOLLOW, when testing whether it's possible to
2113         avoid a race condition reliably.
2114         * lib/savewd.c (savewd_chdir): Likewise.
2115
2116         Remove macros that are no longer needed now that stdint.h is
2117         reliable.
2118         * lib/fsusage.c (UINTMAX_MAX): Remove.
2119         * lib/human.c (SIZE_MAX, UINTMAX_MAX): Remove.
2120         * lib/utimecmp.c (SIZE_MAX): Remove.
2121
2122         * m4/lchown.m4 (gl_FUNC_LCHOWN): Check whether lchown is declared.
2123
2124         * m4/fcntl_h.m4 (gl_FCNTL_H): Define HAVE_WORKING_O_NOFOLLOW instead
2125         of O_NOFOLLOW_IS_INEFFECTIVE.  Define HAVE_WORKING_O_NOATIME if
2126         O_NOATIME works.
2127
2128 2006-10-05  Bruno Haible  <bruno@clisp.org>
2129
2130         * lib/gl_list.h (gl_sortedlist_search_from_to,
2131         gl_sortedlist_indexof_from_to): New declarations.
2132         (gl_list_implementation): New fields sortedlist_search_from_to,
2133         sortedlist_indexof_from_to.
2134         (gl_sortedlist_search_from_to, gl_sortedlist_indexof_from_to): New
2135         inline functions.
2136         * lib/gl_list.c (gl_sortedlist_search_from_to,
2137         gl_sortedlist_indexof_from_to): New functions.
2138         * lib/gl_array_list.c (gl_array_sortedlist_indexof_from_to): New
2139         function.
2140         (gl_array_sortedlist_indexof, gl_array_sortedlist_search): Use it.
2141         (gl_array_sortedlist_search_from_to): New function.
2142         (gl_array_list_implementation): Update.
2143         * lib/gl_carray_list.c (gl_carray_sortedlist_indexof_from_to): New
2144         function.
2145         (gl_carray_sortedlist_indexof, gl_carray_sortedlist_search): Use it.
2146         (gl_carray_sortedlist_search_from_to): New function.
2147         (gl_carray_list_implementation): Update.
2148         * lib/gl_anylinked_list2.h (gl_linked_sortedlist_search_from_to,
2149         gl_linked_sortedlist_indexof_from_to): New functions.
2150         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
2151         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
2152         * lib/gl_anytree_list2.h (gl_tree_sortedlist_search_from_to,
2153         gl_tree_sortedlist_indexof_from_to): New functions.
2154         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
2155         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
2156         Update.
2157         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
2158         * lib/gl_rbtreehash_list.c (gl_avltreehash_list_implementation):
2159         Update.
2160
2161 2006-10-05  Bruno Haible  <bruno@clisp.org>
2162
2163         * lib/gl_list.h (gl_list_search_from, gl_list_search_from_to,
2164         gl_list_indexof_from, gl_list_indexof_from_to): New declarations.
2165         (struct gl_list_implementation): Add fields search_from_to,
2166         indexof_from_to. Remove fields search, indexof.
2167         (gl_list_search): Use the search_from_to method.
2168         (gl_list_search_from, gl_list_search_from_to): New functions.
2169         (gl_list_indexof): Use the indexof_from_to method.
2170         (gl_list_indexof_from, gl_list_indexof_from_to): New functions.
2171         * lib/gl_list.c (gl_list_search): Use the search_from_to method.
2172         (gl_list_search_from, gl_list_search_from_to): New functions.
2173         (gl_list_indexof): Use the indexof_from_to method.
2174         (gl_list_indexof_from, gl_list_indexof_from_to): New functions.
2175         * lib/gl_array_list.c (gl_array_indexof_from_to): Renamed from
2176         gl_array_indexof. Add start_index, end_index arguments.
2177         (gl_array_search_from_to): Renamed from gl_array_search. Add
2178         start_index, end_index arguments.
2179         (gl_array_remove, gl_array_list_implementation): Update.
2180         * lib/gl_carray_list.c (gl_carray_indexof_from_to): Renamed from
2181         gl_carray_indexof. Add start_index, end_index arguments.
2182         (gl_carray_search_from_to): Renamed from gl_carray_search. Add
2183         start_index, end_index arguments.
2184         (gl_carray_remove, gl_carray_list_implementation): Update.
2185         * lib/gl_anylinked_list2.h (gl_linked_search_from_to): Renamed from
2186         gl_linked_search. Add start_index, end_index arguments.
2187         (gl_linked_indexof_from_to): Renamed from gl_linked_indexof. Add
2188         start_index, end_index arguments.
2189         (gl_linked_remove): Update.
2190         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
2191         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
2192         * lib/gl_anytree_list1.h (iterstack_item_t): Change type of 'rightp'
2193         field to 'size_t'.
2194         * lib/gl_anytree_list2.h (gl_tree_search_from_to): Renamed from
2195         gl_tree_search. Add start_index, end_index arguments.
2196         (gl_tree_indexof_from_to): Renamed from gl_tree_indexof. Add
2197         start_index, end_index arguments.
2198         (gl_tree_remove): Update.
2199         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
2200         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
2201         * lib/gl_anytreehash_list1.h (compare_position_threshold): New
2202         function.
2203         * lib/gl_anytreehash_list2.h (gl_tree_search_from_to): Renamed from
2204         gl_tree_search. Add start_index, end_index arguments.
2205         (gl_tree_indexof_from_to): Renamed from gl_tree_indexof. Add
2206         start_index, end_index arguments.
2207         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
2208         Update.
2209         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Update.
2210
2211 2006-10-05  Bruno Haible  <bruno@clisp.org>
2212
2213         * modules/fwriteerror (configure.ac): Define GNULIB_FWRITEERROR.
2214
2215         * lib/clean-temp.h (open_temp, fopen_temp, close_temp, fclose_temp,
2216         fwriteerror_temp): New declarations.
2217         * lib/clean-temp.c (uintptr_t): Provide fallback definition.
2218         (descriptors): New variable.
2219         (cleanup): First, close the descriptors.
2220         (register_fd, unregister_fd, open_temp, fopen_temp, close_temp,
2221         fclose_temp, fwriteerror_temp): New functions.
2222
2223 2006-10-04  Jim Meyering  <jim@meyering.net>
2224
2225         * lib/fts.c (fts_open): Tiny comment change.
2226
2227 2006-10-04  Bruno Haible  <bruno@clisp.org>
2228
2229         Make it possible to invoke AC_GNU_SOURCE after gl_LOCK_EARLY.
2230         * m4/lock.m4 (gl_LOCK_EARLY_BODY): New macro, extracted code from
2231         gl_LOCK_BODY.
2232         (gl_LOCK_EARLY): Require gl_LOCK_EARLY_BODY, not gl_LOCK_BODY.
2233         (gl_LOCK_BODY): Remove settings of CPPFLAGS, now done in
2234         gl_LOCK_EARLY_BODY.
2235         (gl_LOCK): Require gl_LOCK_BODY.
2236
2237 2006-10-04  Bruno Haible  <bruno@clisp.org>
2238
2239         * lib/gl_oset.h (gl_setelement_threshold_fn): New type.
2240         (gl_oset_search_atleast): New declaration.
2241         (struct gl_oset_implementation): Add field 'search_atleast'.
2242         (gl_oset_search_atleast): New inline function.
2243         * lib/gl_oset.c (gl_oset_search_atleast): New function.
2244         * lib/gl_array_oset.c (gl_array_search_atleast): New function.
2245         (gl_array_oset_implementation): Update.
2246         * lib/gl_anytree_oset.h (gl_tree_search_atleast): New function.
2247         * lib/gl_avltree_oset.c (gl_avltree_oset_implementation): Update.
2248         * lib/gl_rbtree_oset.c (gl_rbtree_oset_implementation): Update.
2249
2250 2006-10-04  Bruno Haible  <bruno@clisp.org>
2251
2252         * lib/fatal-signal.c (fatal_signals) [WOE32]: Add the SIGBREAK signal.
2253
2254 2006-10-03  Bruno Haible  <bruno@clisp.org>
2255
2256         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Renamed
2257         from gl_avltreehash_list_implementation.
2258
2259 2006-10-03  Bruno Haible  <bruno@clisp.org>
2260
2261         * lib/gl_oset.c (gl_oset_add): Fix return type.
2262
2263 2006-10-02  Paolo Bonzini  <bonzini@gnu.org>  (tiny change)
2264
2265         * lib/quotearg.c (mbstate_t) [!HAVE_MBRTOWC]: #define to int.
2266
2267 2006-10-02  Eric Blake  <ebb9@byu.net>
2268
2269         * modules/strnlen (Depends-on): Add extensions.
2270
2271 2006-10-02  Eric Blake  <ebb9@byu.net>
2272
2273         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Use autoconf's
2274         definition in 2.60+.
2275
2276 2006-10-02  Dmitry V. Levin  <ldv@altlinux.org>
2277
2278         * lib/fts.c (fts_close, fts_build, fts_palloc): Remove redundant
2279         checks.
2280
2281 2006-10-02  Bruno Haible  <bruno@clisp.org>
2282
2283         * gnulib-tool (func_emit_lib_Makefile_am): Don't add no-dependencies
2284         to the AUTOMAKE_OPTIONS.
2285         Reported by Jim Meyering.
2286
2287 2006-09-29  Paul Eggert  <eggert@cs.ucla.edu>
2288
2289         Work around bug in Solaris 10 /proc file system:
2290         /proc/self/fd/NNN/.. isn't the parent directory of
2291         the directory whose file descriptor is NNN.  This needs to
2292         be worked around at run time, not compile time, since a
2293         program might be built on Solaris 8, where things work, and
2294         run on Solaris 10.
2295         * lib/openat-priv.h (BUILD_PROC_NAME): Remove.  All callers changed
2296         to use the following interface instead:
2297         (OPENAT_BUFFER_SIZE): New macro.
2298         (openat_proc_name): New function.
2299         * lib/at-func.c (AT_FUNC_NAME): Adjust to above changes.
2300         * lib/openat.c (openat_permissive, openat_needs_fchdir, fdopendir):
2301         Likewise.
2302         * lib/openat-proc.c: New file.
2303         * modules/openat (Files): Add lib/openat-proc.c.
2304         (Depends-on): Add same-inode, stdbool.
2305         * m4/openat.m4 (gl_FUNC_OPENAT): Add AC_LIBOBJ(openat-proc).
2306
2307 2006-09-29  Bruno Haible  <bruno@clisp.org>
2308
2309         * lib/fwriteerror.h (fwriteerror_no_ebadf): New declaration.
2310         * lib/(do_fwriteerror): Renamed from fwriteerror. Add ignore_ebadf
2311         argument. Set stdout_closed before testing for ferror, not after.
2312         (fwriteerror, fwriteerror_no_ebadf): New functions.
2313
2314 2006-09-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2315
2316         * m4/intmax.m4 (gt_TYPE_INTMAX_T): Avoid unused variables warning.
2317
2318 2006-09-28  Paolo Bonzini  <bonzini@gnu.org>
2319
2320         * lib/poll.c (rpl_poll) [__APPLE__]: Use FIONREAD instead of MSG_PEEK.
2321         * m4/poll.m4: Look for sys/ioctl.h and sys/filio.h.
2322
2323 2006-09-28  Jim Meyering  <jim@meyering.net>
2324
2325         * lib/mkdir-p.c: Include "dirchownmod.h", not "dirchownmod.c".
2326         Include <unistd.h>.
2327
2328 2006-09-28  Bruno Haible  <bruno@clisp.org>
2329
2330         * modules/avltreehash-list (Depends-on): Add stdint, remove size_max.
2331         * modules/linkedhash-list (Depends-on): Likewise.
2332         * modules/rbtreehash-list (Depends-on): Likewise.
2333
2334 2006-09-28  Bruno Haible  <bruno@clisp.org>
2335
2336         * lib/strndup.h: Simplify the redefinition of strndup.
2337         (_GL_CONCAT, _GL_XCONCAT, __STRNDUP_ID): Remove macros.
2338         * m4/strndup.m4 (gl_FUNC_STRNDUP): Don't define __STRNDUP_PREFIX.
2339
2340 2006-09-28  Bruno Haible  <bruno@clisp.org>
2341
2342         * lib/gl_avltreehash_list.c: Include <stdint.h> instead of size_max.h.
2343         * lib/gl_linkedhash_list.c: Likewise.
2344         * lib/gl_rbtreehash_list.c: Likewise.
2345
2346 2006-09-27  Paul Eggert  <eggert@cs.ucla.edu>
2347
2348         * lib/canon-host.c (canon_host_r): Work around bug in Darwin 7.9.0
2349         getaddrinfo.
2350
2351         * lib/__fpending.h: Don't include <stdio_ext.h> unless
2352         HAVE_DECL___FPENDING.  This avoids a bug with lsbcc, where
2353         it causes <stdio_ext.h> to cause a compile-time error.
2354         Problem reported by Nelson H. F. Beebe.
2355         * lib/getpass.c: Likewise, except for HAVE_DECL___FSETLOCKING instead
2356         of HAVE_DECL___PENDING.
2357
2358         * m4/fpending.m4 (gl_FUNC_FPENDING): Check for stdio_ext at most once.
2359         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for __fsetlocking's
2360         declaration.
2361
2362 2006-09-27  Jim Meyering  <jim@meyering.net>
2363
2364         This file could end up with a definition for a function
2365         named __strndup, rather than rpl_strndup on a system with
2366         incomplete weak_alias support.
2367         * lib/strndup.c (strndup): Rename from __strndup.
2368         Remove #defines that used to map __strndup to strndup.
2369         Don't use K&R prototypes.
2370         Remove LIBC-related code, since this file is not sync'd with glibc.
2371         * lib/strndup.h: Revamp, accordingly.
2372         * m4/strndup.m4: Modernize.
2373
2374 2006-09-26  Paul Eggert  <eggert@cs.ucla.edu>
2375
2376         * modules/savewd (Depends-on): Add 'raise'.
2377         * lib/savewd.c: Include <signal.h>, for 'raise'.
2378
2379 2006-09-26  Jim Meyering  <jim@meyering.net>
2380
2381         * m4/acl.m4 (AC_FUNC_ACL): Disable ACL support altogether
2382         when we detect Darwin 8.7.0's acl_get_file bug.
2383         Rearrange to perform the new (below) run-test while $LIBS
2384         contains any acl-related library.  Set USE_ACL at the end.
2385         (gl_ACL_GET_FILE): New function.
2386
2387 2006-09-26  Eric Blake  <ebb9@byu.net>
2388
2389         * lib/verror.c: Include <config.h> unconditionally.
2390
2391 2006-09-25  Paul Eggert  <eggert@cs.ucla.edu>
2392
2393         * modules/clock-time (Maintainer): Add self.
2394         * modules/getlogin_r (Depends-on): Add extensions.
2395
2396 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2397
2398         * modules/clock-time: New module.
2399         * modules/nanosleep (Depends-on): Add clock-time.
2400         * modules/gethrxtime (Depends-on): Likewise.
2401         * modules/gettime (Depends-on): Likewise.
2402         * modules/settime (Depends-on): Likewise.
2403
2404         * modules/fts-lgpl: Depend on openat.
2405         * modules/mkancesdirs: Depend on savewd.
2406         * modules/mkdir-p: Likewise.
2407
2408 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2409
2410         * m4/host-os.m4 (gl_HOST_OS): Require AC_CANONICAL_HOST.
2411
2412         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Rename cache variable from
2413         `gl_have_arbitrary_file_name_length_limit' to
2414         `gl_cv_have_arbitrary_file_name_length_limit', so that caching
2415         actually works between configure runs.
2416
2417 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2418             Bruno Haible  <bruno@clisp.org>
2419
2420         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Include <string.h>.
2421
2422 2006-09-25  Jim Meyering  <jim@meyering.net>
2423
2424         * m4/fcntl_h.m4 (gl_FCNTL_H): Fix typo in test for failed open.
2425         This typo caused coreutils/tests/dd/misc to fail on Darwin 8.7.0.
2426
2427 2006-09-25  Eric Blake  <ebb9@byu.net>
2428
2429         * gnulib-tool (func_import, func_create_testdir): Fix typos in
2430         exec's in 2006-09-18 patch when shuffling fds.
2431
2432 2006-09-25  Bruno Haible  <bruno@clisp.org>
2433
2434         * m4/getloadavg.m4 (gl_GETLOADAVG): Fix directory in error message.
2435         Reported by Jim Meyering.
2436
2437 2006-09-24  Jim Meyering  <jim@meyering.net>
2438
2439         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Don't use '>' to
2440         compare a pointer against a literal "0".  That caused failures with
2441         at least HP-UX's hpcc.
2442
2443 2006-09-22  Simon Josefsson  <jas@extundo.com>
2444
2445         * modules/gc-sha1:
2446         * modules/gc-md4:
2447         * modules/gc-hmac-sha1:
2448         * modules/gc-hmac-md5:
2449         * modules/gc-des:
2450         * modules/gc-arcfour: Distribute more files.
2451
2452 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2453
2454         * lib/gl_anylinked_list2.h [lint] (gl_linked_iterator)
2455         (gl_linked_iterator_from_to): Initialize struct completely.
2456         * lib/gl_anytree_list2.h [lint] (gl_tree_iterator): Likewise.
2457         (gl_tree_iterator_from_to): Likewise
2458         * lib/gl_anytree_oset.h [lint] (gl_tree_iterator): Likewise.
2459         * lib/gl_array_list.c [lint] (gl_array_iterator)
2460         (gl_array_iterator_from_to): Likewise.
2461         * lib/gl_array_oset.c [lint] (gl_array_iterator): Likewise.
2462         * lib/gl_carray_list.c [lint] (gl_carray_iterator)
2463         (gl_carray_iterator_from_to): Likewise.
2464
2465         * lib/gc-gnulib.c [GC_USE_HMAC_SHA1]: include hmac.h for hmac_sha1.
2466         * lib/md4.c (md4_process_block): Remove unused variable.
2467         * lib/rijndael-api-fst.c (rijndaelBlockDecrypt): GCC suggests
2468         parentheses for clarity.
2469
2470 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2471
2472         * modules/bison-i18n (Depends-on): Add gettext.
2473
2474 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2475
2476         * m4/fsusage.m4 (gl_STATFS_TRUNCATES): Avoid unused variable.
2477         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): Likewise.
2478         * m4/jm-winsz1.m4 (gl_HEADER_TIOCGWINSZ_IN_TERMIOS_H): Likewise;
2479         also add missing comma that caused broken test.
2480         * m4/link-follow.m4 (gl_AC_FUNC_LINK_FOLLOWS_SYMLINK): Include
2481         stdlib.h, for `abort'.
2482         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Avoid unused
2483         variables.
2484         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Check for and
2485         include unistd.h if present, for `rmdir'.
2486         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): Avoid unused
2487         variables.
2488         * m4/putenv.m4 (gl_FUNC_PUTENV): Rewrite using AC_RUN_IFELSE, and
2489         in the process include standard headers for prototypes.
2490         * m4/readutmp.m4 (gl_READUTMP): Require AC_GNU_SOURCE, so utmpxname
2491         gets declared on GNU/Linux.
2492         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Check for and include
2493         unistd.h, for `rmdir'.
2494         * m4/time_r.m4 (gl_TIME_R): Avoid unused variables.
2495
2496         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Avoid expression that is
2497         always true.
2498         * m4/strndup.m4 (gl_FUNC_STRNDUP): include stdlib.h, for `free'.
2499
2500         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Avoid gcc -Wall warnings.
2501
2502 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2503
2504         * gnulib-tool (func_version): Create output all at once.  This
2505         may help avoid triggering unnecessary SIGPIPEs, and at any
2506         rate it doesn't hurt.
2507
2508 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2509             Bruno Haible  <bruno@clisp.org>
2510
2511         * m4/lock.m4 (gl_LOCK_BODY): Avoid unused variables warning.
2512         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
2513         * m4/signed.m4 (bh_C_SIGNED): Likewise.
2514
2515         * m4/vasprintf.m4 (gl_PREREQ_VASPRINTF_H): New macro.
2516         (gl_FUNC_VASPRINTF): Invoke it.
2517
2518 2006-09-22  Bruno Haible  <bruno@clisp.org>
2519
2520         * m4/getloadavg.m4 (gl_GETLOADAVG): Expect the directory of
2521         getloadavg.c as first argument.
2522
2523 2006-09-22  Bruno Haible  <bruno@clisp.org>
2524
2525         * gnulib-tool (func_import, func_create_testdir): Set gl_source_base
2526         at the beginning of the gl_INIT macro.
2527         * modules/getloadavg (configure.ac): Pass $gl_source_base to
2528         gl_GETLOADAVG.
2529
2530 2006-09-22  Bruno Haible  <bruno@clisp.org>
2531
2532         * gnulib-tool (func_create_megatestdir): Don't include the config-h
2533         module.
2534         Suggested by Ralf Wildenhues.
2535
2536 2006-09-20  Paul Eggert  <eggert@cs.ucla.edu>
2537
2538         Import this patch from libc:
2539
2540         2006-09-06  Jakub Jelinek  <jakub@redhat.com>
2541
2542         * lib/regex_internal.c (re_string_reconstruct): Handle
2543         offset < pstr->valid_raw_len && pstr->offsets_needed case.
2544         Ensure no bytes read before raw_mbs array.  Pass a saved copy of
2545         pstr->valid_len - 1 rather than pstr->valid_raw_len - 1 to
2546         re_string_context_at.
2547
2548         * m4/regex.m4 (gl_REGEX): Check for locale.h, since the test
2549         now requires it.
2550         (gl_PREREQ_REGEX): Don't check for locale.h any more, since
2551         gl_REGEX now does it for us.
2552         (gl_REGEX): Add test taken from
2553         http://sourceware.org/ml/libc-hacker/2006-09/msg00008.html.
2554
2555         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Require AC_SYS_LARGEFILE.
2556         Check that large offsets work.  Modernize Autoconf usages.
2557         Prefer "yes" to mean a good thing rather than a bad.
2558         Don't put "#define mkstemp" in config.h, as this might interfere
2559         with standard system headers that "#define mkstemp mkstemp64".
2560
2561         * modules/mkstemp (Depends-on): Add extensions, so that
2562         mkstemp is visible on some platforms.
2563         (Makefile.am): Add mkstemp.h to EXTRA_DIST.
2564         (Include): Change to "mkstemp.h" from <stdlib.h>.
2565         (Files): Add mkstemp.h.
2566
2567         * lib/mkstemp.h: New file, since some standard headers
2568         #define mkstemp.
2569         * lib/mkstemp.c: Revamp to put the !_LIBC code together.
2570         Include "mkstemp.h".
2571         Make the _LIBC code resemble glibc original more,
2572         e.g., use K&R style.
2573         * lib/mkstemp-safer.c: Include "mkstemp.h" instead of <stdlib.h>.
2574         (mkstemp): Remove, since mkstemp.h does this for us.
2575         * lib/stdlib--.h: Include mkstemp.h.
2576
2577         Import this patch from libc:
2578
2579         2006-04-07  Ulrich Drepper  <drepper@redhat.com>
2580
2581         * lib/tempname.c (__gen_tempname): Change attempts_min
2582         into a macro.  Use preprocessor to decide how to initialize
2583         attempts [Coverity CID 67].
2584
2585 2006-09-20  Bruno Haible  <bruno@clisp.org>
2586
2587         * lib/mkdtemp.c: Import from libc.
2588         2006-04-07  Ulrich Drepper  <drepper@redhat.com>
2589                 * sysdeps/posix/tempname.c (__gen_tempname): Change
2590                 attempts_min into a macro.  Use preprocessor to decide how to
2591                 initialize attempts [Coverity CID 67].
2592         2001-11-27  Paul Eggert  <eggert@twinsun.com>
2593                 * sysdeps/posix/tempname.c (__gen_tempname): Try at least
2594                 ATTEMPTS_MIN or TMP_MAX times, whichever is greater.
2595
2596 2006-09-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2597
2598         * gnulib-tool (func_exit): New function, to allow to pass the
2599         exit status portably through the trap.  Use everywhere.
2600         (--help, --version): Signal a write error.
2601         (trap): catch SIGPIPE, for write errors.
2602         Exit at the end of the trap, with the correct exit status.
2603
2604 2006-09-19  Karl Berry  <karl@gnu.org>
2605
2606         * doc/gnulib.texi: note about the license texinfo files.
2607
2608 2006-09-19  Eric Blake  <ebb9@byu.net>
2609
2610         * gnulib-tool: Avoid space-tab.
2611
2612 2006-09-18  Paul Eggert  <eggert@cs.ucla.edu>
2613
2614         * lib/getaddrinfo.c (getaddrinfo) [defined HAVE_IPV6]: Fix typo
2615         that prevented coreutils 6.1 from building.  Problem reported
2616         by Petter Reinholdtsen.
2617
2618 2006-09-18  Paul Eggert  <eggert@cs.ucla.edu>
2619
2620         * gnulib-tool (avoidlist): Fix typo that broke options like
2621         --avoid=lock that are used by coreutils bootstrap.
2622
2623 2006-09-18  Mark D. Baushke  <mdb@gnu.org>
2624
2625         * m4/inttypes.m4 (gl_INTTYPES_H): Quote "test" args
2626         more systematically.
2627
2628 2006-09-18  Jim Meyering  <jim@meyering.net>
2629
2630         * lib/savewd.c (savewd_restore): Don't shadow: s/status/child_status/.
2631
2632 2006-09-18  Bruno Haible  <bruno@clisp.org>
2633
2634         * modules/inttypes (Files): Remove m4/inttypes-h.m4.
2635
2636 2006-09-18  Bruno Haible  <bruno@clisp.org>
2637
2638         * m4/inttypes-h.m4 (gl_HEADER_INTTYPES_H): Remove macro.
2639         * m4/inttypes-pri.m4: Require autoconf >= 2.52.
2640         (gt_INTTYPES_PRI): Invoke AC_CHECK_HEADERS on inttypes.h. Test
2641         ac_cv_header_inttypes_h instead of gl_cv_header_inttypes_h.
2642         * m4/gettext.m4: Require autoconf >= 2.52.
2643         (gt_INTL_SUBDIR_CORE): Invoke AC_CHECK_HEADERS on inttypes.h.
2644         * m4/inttypes.m4 (gl_INTTYPES_H): Test ac_cv_header_inttypes_h instead
2645         of gl_cv_header_inttypes_h.
2646
2647 2006-09-18  Bruno Haible  <bruno@clisp.org>
2648
2649         * lib/javaversion.c: Include configmake.h.
2650
2651 2006-09-18  Bruno Haible  <bruno@clisp.org>
2652
2653         * gnulib-tool (func_import, func_create_testdir): Use exec tricks to
2654         avoid that the while loops be executed in a subshell.
2655
2656 2006-09-18  Bruno Haible  <bruno@clisp.org>
2657
2658         * MODULES.html.sh (func_module): Break long lines.
2659         Suggested by Bruce Korb <bkorb@gnu.org>.
2660
2661 2006-09-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2662
2663         Speed up by a factor of 1.12.
2664         * gnulib-tool (nl): New variable.
2665         (func_import): Rewrite include directive extraction to only read each
2666         directive once.
2667
2668 2006-09-17  Bruno Haible  <bruno@clisp.org>
2669
2670         * modules/javaversion (Makefile.am): Remove DEFS setting.
2671         (Depends-on): Add configmake, for PKGDATADIR definition.
2672
2673 2006-09-17  Bruno Haible  <bruno@clisp.org>
2674
2675         * gnulib-tool (func_create_testdir): Rewrite all files at once.
2676
2677 2006-09-17  Bruno Haible  <bruno@clisp.org>
2678
2679         * gnulib-tool (func_append): New function, stolen from libtool.m4.
2680         (func_modules_transitive_closure, func_modules_add_dummy,
2681         func_modules_to_filelist, func_import, func_create_testdir,
2682         func_create_megatestdir, ...): Use it wherever possible.
2683         Suggested by Ralf Wildenhues.
2684
2685 2006-09-16  Karl Berry  <karl@gnu.org>
2686
2687         * doc/fdl.texi (ADDENDUM): switch to @heading from @appendixsubsec,
2688         to avoid sectioning errors.
2689         * doc/lgpl.texi, gpl.texi (Copying): downcase @unnumbered title.
2690         [ifinfo]: blank line after @center-ed titles.
2691         * doc/lgpl.texi (Library Copying): Rename main node to GNU LGPL.
2692         Spell FSF address consistently with others.
2693         (These changes approved by rms.)
2694
2695 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2696
2697         Speed up by a factor of 1.61.
2698         * gnulib-tool (func_modules_transitive_closure): Rewrite to not check
2699         already checked module names again.
2700
2701 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2702
2703         Speed up by a factor of 1.13.
2704         * gnulib-tool (func_import): Rewrite all old_files at once; likewise
2705         for new_files, and the input to func_add_or_update.
2706
2707 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2708
2709         * gnulib-tool (func_all_modules, func_modules_to_filelist, func_import,
2710         func_create_testdir, ...): Change 'sort | uniq' to 'sort -u'.
2711
2712 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
2713
2714         * modules/mkancesdirs (Depends-on): Add fcntl.
2715         * modules/savewd: New file.
2716         * MODULES.html.sh (File system functions): Add savewd.
2717
2718         * modules/configmake (Makefile.am): Add support for the
2719         Automake-supplied PKGLIBDIR, PKGINCLUDEDIR, PKGDATADIR.
2720
2721 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
2722
2723         * m4/savewd.m4: New file.
2724
2725 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
2726
2727         * lib/dirchownmod.c: Don't include fcntl.h; no longer needed.
2728         (dirchownmod): New arg FD.  All callers changed.
2729         Use FD rather than opening the directory ourself, as opening is
2730         now the caller's responsibility.
2731         * lib/dirchownmod.h: Likewise.
2732         * lib/mkancesdirs.c: Include <sys/types.h>, for portability to older
2733         hosts that require <sys/types.h> before <sys/stat.h>.  Include
2734         fcntl.h, savewd.h, and unistd.h, not dirname.h and stat-macros.h.
2735         (test_dir): Remove.
2736         (mkancesdirs): Return length of prefix of FILE that has already
2737         been made, or -2 if there is a child doing the work.  Redo
2738         algorithm so that it is O(N) rather than O(N**2).  Optimize away
2739         ".", and treat ".." specially since it might stray back into
2740         already-created areas.  Use a subprocess if necessary.  New arg
2741         WD; all users changed.  MAKE_DIR function should now return 1
2742         if it creates a directory that is not readable.  Return -2 if
2743         a child process is spun off.
2744         * lib/mkancesdirs.h: Include <stddef.h>, for ptrdiff_t.
2745         Adjust signature to match code.
2746         * lib/mkdir-p.c: Include dirname.h, for IS_ABSOLUTE_FILE_NAME.
2747         (make_dir_parents): Use a subprocess if necessary.  New arg WD;
2748         all users changed.
2749         * lib/savewd.c, lib/savewd.h: New files.
2750
2751 2006-09-15  Jim Meyering  <jim@meyering.net>
2752
2753         * modules/rename-dest-slash: New module.
2754         * MODULES.html.sh (posix_compat): Add it here.
2755
2756         * modules/rename: Reflect vb_FUNC_RENAME -> gl_FUNC_RENAME change.
2757
2758 2006-09-15  Jim Meyering  <jim@meyering.net>
2759
2760         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH): New
2761         file.
2762
2763         * m4/rename.m4 (gl_FUNC_RENAME): Rename from vb_FUNC_RENAME.
2764
2765 2006-09-15  Jim Meyering  <jim@meyering.net>
2766
2767         * lib/rename-dest-slash.c (has_trailing_slash): Use
2768         FILE_SYSTEM_PREFIX_LEN, for non-POSIX systems.
2769         (rpl_rename_dest_slash): Perform the cheaper trailing slash
2770         test before testing whether SRC is a directory.
2771         Suggestions from Bruno Haible.
2772
2773         Avoid a warning about an unused variable.
2774         * lib/regex_internal.c (re_dfa_add_node): Move declaration of "type"
2775         into the #ifdef block where it's used.
2776
2777         * lib/rename-dest-slash.c: New file.
2778
2779 2006-09-14  Bruno Haible  <bruno@clisp.org>
2780
2781         * lib/allocsa.c: Include <config.h> unconditionally.
2782         * lib/asnprintf.c: Likewise.
2783         * lib/asprintf.c: Likewise.
2784         * lib/c-strcasecmp.c: Likewise.
2785         * lib/c-strcasestr.c: Likewise.
2786         * lib/c-strncasecmp.c: Likewise.
2787         * lib/c-strstr.c: Likewise.
2788         * lib/classpath.c: Likewise.
2789         * lib/clean-temp.c: Likewise.
2790         * lib/concatpath.c: Likewise.
2791         * lib/copy-file.c: Likewise.
2792         * lib/csharpcomp.c: Likewise.
2793         * lib/csharpexec.c: Likewise.
2794         * lib/execute.c: Likewise.
2795         * lib/fatal-signal.c: Likewise.
2796         * lib/findprog.c: Likewise.
2797         * lib/fwriteerror.c: Likewise.
2798         * lib/gl_array_list.c: Likewise.
2799         * lib/gl_array_oset.c: Likewise.
2800         * lib/gl_avltree_list.c: Likewise.
2801         * lib/gl_avltree_oset.c: Likewise.
2802         * lib/gl_avltreehash_list.c: Likewise.
2803         * lib/gl_carray_list.c: Likewise.
2804         * lib/gl_linked_list.c: Likewise.
2805         * lib/gl_linkedhash_list.c: Likewise.
2806         * lib/gl_list.c: Likewise.
2807         * lib/gl_oset.c: Likewise.
2808         * lib/gl_rbtree_list.c: Likewise.
2809         * lib/gl_rbtree_oset.c: Likewise.
2810         * lib/gl_rbtreehash_list.c: Likewise.
2811         * lib/imaxabs.c: Likewise.
2812         * lib/imaxdiv.c: Likewise.
2813         * lib/javacomp.c: Likewise.
2814         * lib/javaexec.c: Likewise.
2815         * lib/javaversion.c: Likewise.
2816         * lib/linebreak.c: Likewise.
2817         * lib/localcharset.c: Likewise.
2818         * lib/lock.c: Likewise.
2819         * lib/mbchar.c: Likewise.
2820         * lib/mbswidth.c: Likewise.
2821         * lib/mkdtemp.c: Likewise.
2822         * lib/pipe.c: Likewise.
2823         * lib/printf-args.c: Likewise.
2824         * lib/printf-parse.c: Likewise.
2825         * lib/progname.c: Likewise.
2826         * lib/progreloc.c: Likewise.
2827         * lib/readlink.c: Likewise.
2828         * lib/sh-quote.c: Likewise.
2829         * lib/stpcpy.c: Likewise.
2830         * lib/stpncpy.c: Likewise.
2831         * lib/strcasecmp.c: Likewise.
2832         * lib/strcasestr.c: Likewise.
2833         * lib/strcspn.c: Likewise.
2834         * lib/striconv.c: Likewise.
2835         * lib/strncasecmp.c: Likewise.
2836         * lib/strnlen1.c: Likewise.
2837         * lib/strstr.c: Likewise.
2838         * lib/strtok_r.c: Likewise.
2839         * lib/tls.c: Likewise.
2840         * lib/tmpdir.c: Likewise.
2841         * lib/unicodeio.c: Likewise.
2842         * lib/unsetenv.c: Likewise.
2843         * lib/vasnprintf.c: Likewise.
2844         * lib/vasprintf.c: Likewise.
2845         * lib/wait-process.c: Likewise.
2846         * lib/xallocsa.c: Likewise.
2847         * lib/xsetenv.c: Likewise.
2848         * lib/xstriconv.c: Likewise.
2849
2850 2006-09-13  Simon Josefsson  <jas@extundo.com>
2851
2852         * m4/getdate.m4: Don't AC_LIBOBJ([getdate]), automake takes care of
2853         that internally, suggested by Ralf Wildenhues
2854         <Ralf.Wildenhues@gmx.de>.
2855
2856 2006-09-13  Simon Josefsson  <jas@extundo.com>
2857
2858         * gnulib-tool (func_emit_lib_Makefile_am): Use $(LIBOBJS), not
2859         @LIBOBJS@.
2860         Suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
2861
2862 2006-09-13  Paul Eggert  <eggert@cs.ucla.edu>
2863
2864         * lib/_fpending.c: Include <config.h> unconditionally, since we no
2865         longer worry about uses that don't define HAVE_CONFIG_H.
2866         * lib/acl.c, lib/alloca.c, lib/argmatch.c, lib/atexit.c:
2867         * lib/backupfile.c, lib/basename.c, lib/c-stack.c, lib/c-strtod.c:
2868         * lib/calloc.c,lib/ canon-host.c, lib/canonicalize.c, lib/chdir-long.c:
2869         * lib/chdir-safer.c, lib/chown.c, lib/cloexec.c, lib/close-stream.c:
2870         * lib/closeout.c, lib/creat-safer.c, lib/cycle-check.c, lib/diacrit.c:
2871         * lib/dirchownmod.c, lib/dirfd.c, lib/dirname.c, lib/dup-safer.c:
2872         * lib/dup2.c, lib/error.c, lib/euidaccess.c, lib/exclude.c:
2873         * lib/exitfail.c, lib/fchmodat.c, lib/fchown-stub.c, lib/fd-safer.c:
2874         * lib/file-type.c, lib/fileblocks.c, lib/filemode.c, lib/filenamecat.c:
2875         * lib/fnmatch.c, lib/fopen-safer.c, lib/fprintftime.c, lib/free.c:
2876         * lib/fsusage.c, lib/ftruncate.c, lib/fts-cycle.c, lib/fts.c:
2877         * lib/full-write.c, lib/gai_strerror.c, lib/getcwd.c, lib/getdate.y:
2878         * lib/getdomainname.c, lib/getgroups.c, lib/gethostname.c:
2879         * lib/gethrxtime.c, lib/getloadavg.c, lib/getlogin_r.c:
2880         * lib/getndelim2.c, lib/getnline.c, lib/getopt.c, lib/getopt1.c:
2881         * lib/getpass.c, lib/gettime.c, lib/gettimeofday.c, lib/getugroups.c:
2882         * lib/getusershell.c, lib/glob.c, lib/group-member.c:
2883         * lib/hard-locale.c, lib/hash-pjw.c, lib/hash.c, lib/human.c:
2884         * lib/idcache.c, lib/inet_ntop.c, lib/inet_pton.c, lib/inttostr.c:
2885         * lib/isdir.c, lib/lchown.c, lib/linebuffer.c, lib/long-options.c:
2886         * lib/lstat.c, lib/malloc.c, lib/md5.c, lib/memcasecmp.c, lib/memchr.c:
2887         * lib/memcmp.c, lib/memcoll.c, lib/memcpy.c, lib/memmove.c:
2888         * lib/memrchr.c, lib/mkancesdirs.c, lib/mkdir-p.c, lib/mkdir.c:
2889         * lib/mkdirat.c, lib/mkstemp-safer.c, lib/mkstemp.c, lib/modechange.c:
2890         * lib/mountlist.c, lib/nanosleep.c, lib/obstack.c, lib/open-safer.c:
2891         * lib/openat-die.c, lib/openat.c, lib/pagealign_alloc.c, lib/physmem.c:
2892         * lib/pipe-safer.c, lib/posixtm.c, lib/posixver.c, lib/putenv.c:
2893         * lib/quote.c, lib/quotearg.c, lib/raise.c, lib/readtokens.c:
2894         * lib/readtokens0.c, lib/readutmp.c, lib/realloc.c, lib/regex.c:
2895         * lib/rename.c, lib/rmdir.c, lib/rpmatch.c, lib/safe-read.c:
2896         * lib/same.c, lib/save-cwd.c, lib/savedir.c, lib/setenv.c:
2897         * lib/settime.c, lib/sha1.c, lib/sig2str.c, lib/snprintf.c:
2898         * lib/strdup.c, lib/strerror.c, lib/strftime.c, lib/stripslash.c:
2899         * lib/strndup.c, lib/strnlen.c, lib/strpbrk.c, lib/strtod.c:
2900         * lib/strtoimax.c, lib/strtol.c, lib/strverscmp.c, lib/tempname.c:
2901         * lib/time_r.c, lib/timegm.c, lib/tmpfile-safer.c, lib/unlinkdir.c:
2902         * lib/userspec.c, lib/utime.c, lib/utimecmp.c, lib/utimens.c:
2903         * lib/version-etc-fsf.c, lib/version-etc.c, lib/xalloc-die.c:
2904         * lib/xgetcwd.c, lib/xgethostname.c, lib/xmalloc.c, lib/xmemcoll.c:
2905         * lib/xnanosleep.c, lib/xreadlink.c, lib/xstrtod.c, lib/xstrtoimax.c:
2906         * lib/xstrtol.c, lib/xstrtoumax.c, lib/yesno.c:
2907         Likewise.
2908
2909 2006-09-13  Eric Blake  <ebb9@byu.net>
2910
2911         * lib/getopt.c: Fix typo in last commit.
2912
2913 2006-09-12  Sergey Poznyakoff  <gray@gnu.org.ua>
2914
2915         * lib/argp-help.c (argp_doc): Make sure NULL is not passed to
2916         dgettext.
2917
2918 2006-09-12  Jim Meyering  <jim@meyering.net>
2919
2920         * lib/nanosleep.c: Include <sys/types.h> before sys/select.h, to avoid
2921         compilation failure (due to use of pid_t in latter) on NetBSD 1.6.
2922         Reported by Nelson H. F. Beebe.
2923
2924 2006-09-10  Sergey Poznyakoff  <gray@gnu.org.ua>
2925
2926         * lib/argp-parse.c (__argp_parse) [!_LIBC]: Make sure
2927         program_invocation_name and program_invocation_short_name are
2928         initialized.
2929         * lib/argp-namefrob.h: Move declarations of program_invocation_name
2930         and program_invocation_short_name to argp.h, so they are visible
2931         to user programs.
2932         * lib/argp.h: Likewise
2933
2934 2006-09-10  Bruno Haible  <bruno@clisp.org>
2935
2936         * modules/mkdtemp (Files): Remove m4/ulonglong.m4, m4/stdint_h.m4,
2937         m4/inttypes_h.m4, m4/uintmax_t.m4.
2938
2939 2006-09-10  Bruno Haible  <bruno@clisp.org>
2940
2941         * m4/mkdtemp.m4 (gl_PREREQ_MKDTEMP): Don't require
2942         gl_AC_TYPE_UINTMAX_T.
2943
2944 2006-09-10  Bruno Haible  <bruno@clisp.org>
2945
2946         * lib/mkdtemp.c: Include <stdint.h> always. Don't include <inttypes.h>.
2947
2948 2006-09-09  Sergey Poznyakoff  <gray@gnu.org.ua>
2949
2950         * lib/argp.h (struct argp): Document the N_("..") "\v" N_("..")
2951         convention.  Text proposed by Bruno Haible.
2952         (struct argp_option): Document the use of N_() wrappers.
2953
2954         * lib/argp-help.c (argp_doc): Split the untranslated doc string on
2955         '\v', and translate the two parts separately, instead of feeding
2956         the whole string to gettext.  This allows to exclude
2957         '\v' from the strings visible to the translator by writing doc
2958         strings as N_("..") "\v" N_("..").
2959
2960 2006-09-09  Paul Eggert  <eggert@cs.ucla.edu>
2961
2962         * config/srclist.txt: Undo latest change; the bug was fixed.
2963
2964 2006-09-09  Bruno Haible  <bruno@clisp.org>
2965
2966         * gnulib-tool (func_emit_lib_Makefile_am): Eliminate lib_LDFLAGS
2967         assignments if building a library without libtool.
2968         (func_emit_tests_Makefile_am): Likewise. Handle lib_* variables as
2969         in func_emit_lib_Makefile_am.
2970         (func_import): When building a static library libfoo.a, arrange to
2971         define variables LIBFOO_LIBDEPS and LIBFOO_LTLIBDEPS.
2972         (func_create_testdir): Likewise.
2973         * modules/gc (configure.ac, Makefile.am): If building statically,
2974         augment gl_libdeps and gl_ltlibdeps instead of lib_LDFLAGS.
2975         * modules/iconvme (configure.ac, Makefile.am): Likewise.
2976         * modules/striconv (configure.ac, Makefile.am): Likewise.
2977         Based on a suggestion by Ralf Wildenhues.
2978
2979 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
2980
2981         * m4/mktime.m4 (AC_FUNC_MKTIME): Sync from Autoconf.
2982         Check for unistd.h too, since Autoconf doesn't assume POSIX.
2983         Also:
2984
2985         2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
2986         Add year_2050_test to catch glibc bug 2821
2987         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
2988
2989         2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
2990         Prefer #ifdef to #if.
2991
2992         2006-04-02  Paul Eggert  <eggert@cs.ucla.edu>
2993         Return from 'main' instead of calling 'exit'.
2994
2995 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
2996
2997         * lib/mktime.c (guess_time_tm): Fix bug where mktime
2998         returned the maximum time_t value rather than (time_t) -1.
2999         Problem originally reported by William Bardwell
3000         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
3001
3002         * lib/isapipe.h (HAVE_FIFO_PIPES) [!defined HAVE_FIFO_PIPES]:
3003         Moved to here ...
3004         * lib/isapipe.c (HAVE_FIFO_PIPES) [!defined HAVE_FIFO_PIPES]:
3005         ... from here.
3006
3007 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
3008
3009         * config/srclist.txt: Temporarily comment out mktime.c until glibc bug
3010         2821 is fixed.
3011
3012 2006-09-08  Jim Meyering  <jim@meyering.net>
3013
3014         Don't make generated files read-only.  That would bother too many
3015         people.  However, do retain the ability to work when targets are
3016         read-only: remove the destination and temporary files before writing
3017         them (when generated via sed or echo), or by using the -f option for
3018         both cp and mv commands.  Suggestion to use -f from Paul Eggert.
3019         * modules/alloca-opt, modules/argz, modules/arpa_inet:
3020         * modules/byteswap, modules/configmake, modules/fcntl:
3021         * modules/fnmatch, modules/getopt, modules/glob, modules/inttypes:
3022         * modules/localcharset, modules/netinet_in, modules/poll:
3023         * modules/stdbool, modules/stdint, modules/sys_select:
3024         * modules/sys_socket, modules/sys_stat, modules/sysexits:
3025
3026 2006-09-08  Jim Meyering  <jim@meyering.net>
3027
3028         Avoid new build failure on FreeBSD 6.0.
3029         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Include
3030         <sys/param.h> when testing whether getmntinfo uses statvfs.  Patch by
3031         Pavel Tsekov, in <http://savannah.gnu.org/bugs/?17643>.
3032
3033 2006-09-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3034
3035         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Don't use plain echo.
3036
3037 2006-09-07  Jim Meyering  <jim@meyering.net>
3038
3039         Fix global typo in last change: use chmod u-w, not chmod u-x.
3040         Spotted by Paul Eggert and Bruce Korb.
3041         * modules/alloca-opt, modules/argz, modules/arpa_inet:
3042         * modules/byteswap, modules/configmake, modules/fcntl:
3043         * modules/fnmatch, modules/getopt, modules/glob, modules/inttypes:
3044         * modules/localcharset, modules/netinet_in, modules/poll:
3045         * modules/stdbool, modules/stdint, modules/sys_select:
3046         * modules/sys_socket, modules/sys_stat, modules/sysexits:
3047
3048 2006-09-06  Jim Meyering  <jim@meyering.net>
3049
3050         Make generated files be read-only.
3051         * modules/alloca-opt (Makefile.am): Work also when $@ is read-only.
3052         Ensure that each generated file is now read-only.
3053         * modules/argz: Likewise.
3054         * modules/arpa_inet: Likewise.
3055         * modules/byteswap: Likewise.
3056         * modules/configmake: Likewise.
3057         * modules/fcntl: Likewise.
3058         * modules/fnmatch: Likewise.
3059         * modules/getopt: Likewise.
3060         * modules/glob: Likewise.
3061         * modules/inttypes: Likewise.
3062         * modules/netinet_in: Likewise.
3063         * modules/poll: Likewise.
3064         * modules/stdbool: Likewise.
3065         * modules/stdint: Likewise.
3066         * modules/sys_select: Likewise.
3067         * modules/sys_socket: Likewise.
3068         * modules/sys_stat: Likewise.
3069         * modules/sysexits: Likewise.
3070         * modules/localcharset: Same as above, but continue using temporary
3071         file named "t-$@" (why different?) rather than the "$@-t" used
3072         everywhere else.
3073
3074         * modules/sysexits (Makefile.am): Replace literal occurrences
3075         of "sysexit.h" more readable, and more consistent, "$@".
3076
3077 2006-09-06  Bruno Haible  <bruno@clisp.org>
3078
3079         * modules/striconv: New file.
3080         * modules/xstriconv: New file.
3081         * MODULES.html.sh (Internationalization functions): Add striconv,
3082         xstriconv.
3083
3084 2006-09-06  Bruno Haible  <bruno@clisp.org>
3085
3086         * modules/gc (Makefile.am): Augment lib_LDFLAGS, not lib_LIBADD.
3087         * modules/iconvme (Makefile.am): Likewise. Also handle the case of
3088         not using libtool correctly.
3089
3090 2006-09-06  Bruno Haible  <bruno@clisp.org>
3091
3092         * lib/striconv.h: New file.
3093         * lib/striconv.c: New file, merging iconvme.c with GNU gettext's
3094         iconvstring.c.
3095         * lib/xstriconv.h: New file.
3096         * lib/xstriconv.c: New file.
3097
3098 2006-09-06  Bruno Haible  <bruno@clisp.org>
3099
3100         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
3101         lib_..._LDFLAGS.
3102
3103 2006-09-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3104
3105         * lib/argz_.h: Sync from Libtool.
3106
3107         2006-09-04  George Bosilca <bosilca@cs.utk.edu>
3108                 and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3109
3110         * lib/libltdl/argz_.h: It's __cplusplus, not _cplusplus.
3111
3112 2006-09-05  Davide Angelocola  <davide.angelocola@tiscali.it>
3113
3114         * modules/trim: New file.
3115
3116 2006-09-05  Davide Angelocola  <davide.angelocola@tiscali.it>
3117
3118         * lib/trim.h: New file.
3119         * lib/trim.c: New file.
3120
3121 2006-09-05  Bruno Haible  <bruno@clisp.org>
3122
3123         * MODULES.html.sh (String handling): Add trim.
3124
3125 2006-09-04  Karl Berry  <karl@gnu.org>
3126
3127         * config/srclist.txt (signed.m4, gettext.m4): changes not propagated
3128         until next release.
3129
3130 2006-09-03  Bruno Haible  <bruno@clisp.org>
3131
3132         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Locate mingw shared libraries
3133         correctly.
3134
3135 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
3136
3137         * m4/getloadavg.m4 (gl_GETLOADAVG): Use CONFIGURING_GETLOADAVG,
3138         not gl_GETLOADAVG.  Omit unneeded semicolons.
3139         Problems reported by Ralf Wildenhues in
3140         <http://lists.gnu.org/archive/html/bug-gnulib/2006-09/msg00000.html>.
3141         (gl_PREREQ_GETLOADAVG): Use AC_DEFUN, not m4_define.  Put
3142         at the end, which is the usual gnulib style.
3143
3144         * m4/fstypename.m4 (gl_FSTYPENAME): Use AC_CHECK_MEMBERS instead
3145         of doing all the work ourselves.
3146         * m4/fsusage.m4 (gl_PREREQ_FSUSAGE_EXTRA): Don't check for
3147         sys/statvfs.h since the code doesn't use HAVE_SYS_STATVFS_H.
3148
3149 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
3150
3151         * lib/getloadavg.c: Use CONFIGURING_GETLOADAVG, not gl_GETLOADAVG.
3152         Problem reported by Ralf Wildenhues in
3153         <http://lists.gnu.org/archive/html/bug-gnulib/2006-09/msg00000.html>.
3154
3155         * lib/mountlist.c: All uses of HAVE_F_FSTYPENAME_IN_STATFS replaced by
3156         HAVE_STRUCT_STATFS_F_FSTYPENAME.
3157
3158 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
3159
3160         * gnulib-tool (func_emit_lib_Makefile_am): Fix typos in
3161         yesterday's patch by changing test -n to test -z.
3162
3163 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
3164
3165         * modules/getloadavg (Files): Add m4/getloadavg.m4.
3166         (configure.ac): AC_FUNC_GETLOADAVG -> gl_GETLOADAVG, as
3167         the former is now obsolescent.
3168
3169         * modules/chdir-long (Depends-on): Add fcntl.
3170
3171 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
3172
3173         * m4/fnmatch.m4: Add comment that Autoconf AC_FUNC_FNMATCH is
3174         obsolescent, and programs should use gnulib instead.
3175         * m4/getloadavg.m4: New file, with contents taken from Autoconf
3176         but with prefixes changed.
3177
3178 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
3179
3180         * lib/getloadavg.c [defined gl_GETLOADAVG]: Don't include config.h
3181         or stdbool.h, because they might not exist while configuring.
3182
3183         * lib/chdir-long.c: Include <fcntl.h>, for O_DIRECTORY.
3184         Don't include unistd.h or limits.h; not needed, since chdir-long.h
3185         does that for us.
3186         (O_DIRECTORY): Remove.
3187
3188 2006-08-31  Eric Blake  <ebb9@byu.net>
3189
3190         * gnulib-tool: Don't let emacs change spaces to TAB.
3191
3192 2006-08-31  Bruno Haible  <bruno@clisp.org>
3193
3194         * gnulib-tool: When calling func_import more than once, do it in a
3195         subshell.
3196         Reported by Eric Blake <ebb9@byu.net>.
3197
3198 2006-08-31  Bruno Haible  <bruno@clisp.org>
3199
3200         * gnulib-tool (nl): Remove variable.
3201         (sed_transform_lib_file): Use more robust test for config-h module.
3202         (func_import): Fix typo in 2006-08-25 patch.
3203
3204 2006-08-31  Bruno Haible  <bruno@clisp.org>
3205
3206         * gnulib-tool (func_emit_lib_Makefile_am): When --makefile-name was
3207         specified, augment Makefile.am variables instead of assigning them.
3208
3209 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
3210
3211         Work around a bug in both the Linux and SunOS 64-bit kernels:
3212         nanosleep mishandles sleeps for longer than 2**31 seconds.
3213         Problem reported by Frank v Waveren in
3214         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00298.html>.
3215         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Require gl_CLOCK_TIME.
3216         Check for nanosleep bug.
3217         (LIB_NANOSLEEP): Append clock_gettime library if needed.
3218
3219 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
3220
3221         Work around a bug in both the Linux and SunOS 64-bit kernels:
3222         nanosleep mishandles sleeps for longer than 2**31 seconds.
3223         Problem reported by Frank v Waveren in
3224         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00298.html>.
3225         * lib/nanosleep.c (BILLION): New constant.
3226         (getnow) [HAVE_BUG_BIG_NANOSLEEP]: New functions.
3227         (rpl_nanosleep) [HAVE_BUG_BIG_NANOSLEEP]: Completely new
3228         implementation.
3229
3230 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
3231
3232         * modules/nanosleep (Depends-on): Add gettime.
3233
3234 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
3235         and Simon Josefsson  <jas@extundo.com>
3236         and Oskar Liljeblad  <oskar@osk.mine.nu>
3237
3238         * MODULES.html.sh (Support for building documentation): Add gpl, lgpl.
3239         * gnulib-tool (func_import): New license type 'unmodifiable license
3240         text'.
3241         * modules/fdl: Use it.  Longer description.
3242         * module/gpl, module/lgpl: New files.
3243
3244 2006-08-30  Jim Meyering  <jim@meyering.net>
3245
3246         * lib/isapipe.c (isapipe): Rename local s/fd/fd_pair/ to avoid
3247         shadowing the parameter.
3248
3249 2006-08-29  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3250
3251         Sync from Libtool:
3252
3253         2006-08-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3254
3255         * lib/libltdl/argz.c: Use `#ifdef HAVE_CONFIG_H', to facilitate code
3256         sharing with gnulib.  Report by Eric Blake.
3257
3258 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
3259
3260         * modules/isapipe: New file.
3261         * MODULES.html.sh (File descriptor based Input/Output): Add isapipe.
3262
3263 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
3264
3265         * modules/configmake (Makefile.am): Add a comment, and omit
3266         the CONFIGMAKE_ prefix from generated macro names.  Suggested
3267         by Bruno Haible.
3268
3269 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
3270
3271         * m4/isapipe.m4: New file.
3272
3273 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
3274
3275         * lib/isapipe.c, lib/isapipe.h: New files.
3276
3277 2006-08-29  Jim Meyering  <jim@meyering.net>
3278
3279         * modules/configmake (Makefile.am): Make configmake.h depend on
3280         Makefile.  Otherwise, a stale configmake.h could hang around.
3281
3282 2006-08-29  Eric Blake  <ebb9@byu.net>
3283
3284         * lib/error.c (error_at_line, print_errno_message): Match libc, after
3285         resolution of upstream bug 3044.
3286
3287 2006-08-29  Bruno Haible  <bruno@clisp.org>
3288
3289         * modules/localcharset (Depends-on): Add configmake.
3290         (Makefile.am): Remove setting of LIBDIR through DEFS.
3291
3292 2006-08-29  Bruno Haible  <bruno@clisp.org>
3293
3294         * lib/localcharset.c: Include configmake.h in order to get LIBDIR
3295         defined.
3296
3297 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
3298
3299         * modules/fcntl: New file.
3300         * modules/chdir-safer (Depends-on): Add fcntl.
3301         * modules/fts: Likewise.
3302         * modules/mkdir-p: Likewise.
3303
3304         * modules/stdint (Makefile.am): Do not substitute ABSOLUTE_INTTYPES_H.
3305         This undoes the most recent change, since we're now addressing the
3306         problem in a different way.
3307
3308         * gnulib-tool (emit_lib_Makefile_am): Don't put $makefile_name
3309         into output, since the output might be called Makefile.am even
3310         if $makefile_name is something different.
3311         (func_import): Use $makefile_am rather than
3312         ${makefile_name-Makefile.am}, to fix a bug where makefile_name was
3313         empty.
3314
3315         * modules/inttypes (Files): Add m4/inttypes-h.m4.
3316
3317 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
3318
3319         * m4/inttypes.m4 (gl_INTTYPES_H): Move ABSOLUTE_INTTYPES_H code here...
3320         * m4/stdint.m4 (gl_STDINT_H): ... from here.  This undoes the most
3321         recent change to stdint.m4, since we're now addressing the problem in a
3322         different way.
3323
3324 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
3325
3326         * m4/fcntl_h.m4: New file.
3327
3328 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
3329
3330         * lib/fcntl_.h: New file.
3331         * lib/chdir-safer.c (O_DIRECTORY, O_NOFOLLOW): Remove, now that we have
3332         the fcntl module.
3333         * lib/dirchownmod.c: Likewise.
3334         * lib/fts.c: Likewise.
3335
3336         * lib/inttypes_.h [defined _GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H]:
3337         Include @ABSOLUTE_INTTYPES_H@ if available, but do nothing else.
3338         * lib/stdint_.h (_GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H): Define
3339         just before including <inttypes.h>, to avoid circular inclusion.
3340
3341 2006-08-28  Jim Meyering  <jim@meyering.net>
3342
3343         * doc/visibility.texi: Actually read and correct the grammar of the
3344         sentence affected by yesterday's change.
3345
3346 2006-08-28  Eric Blake  <ebb9@byu.net>
3347
3348         * modules/inttypes (Makefile.am): Fix sed error when inttypes.h
3349         needs wrapper.
3350
3351 2006-08-28  Eric Blake  <ebb9@byu.net>
3352
3353         * m4/inttypes.m4 (gl_INTTYPES_H): Fix missing #endif.
3354
3355 2006-08-28  Eric Blake  <ebb9@byu.net>
3356
3357         * m4/codeset.m4 (AM_LANGINFO_CODESET): Avoid compiler warning.
3358
3359 2006-08-28  Bruno Haible  <bruno@clisp.org>
3360
3361         * modules/c-strstr: New file, from GNU gettext.
3362         * MODULES.html.sh (String handling): Add c-strstr.
3363
3364 2006-08-28  Bruno Haible  <bruno@clisp.org>
3365
3366         * m4/inttypes.m4 (gl_INTTYPES_H): Don't test for the existence of SCNX*
3367         macros.
3368         Reported by Eric Blake.
3369
3370 2006-08-28  Bruno Haible  <bruno@clisp.org>
3371
3372         * lib/vasnprintf.c (EOVERFLOW): Remove definition.
3373         (VASNPRINTF): Return a string of length > INT_MAX without failing.
3374         * lib/vasprintf.c: Include errno.h, limits.h.
3375         (EOVERFLOW): New fallback definition.
3376         (vasprintf): Test here whether the string length is > INT_MAX.
3377         * lib/vsnprintf.c: Include errno.h, limits.h.
3378         (EOVERFLOW): New fallback definition.
3379         (vsnprintf): Fix bug when generated string was too long for the buffer.
3380         Test here whether the string length is > INT_MAX.
3381
3382 2006-08-28  Bruno Haible  <bruno@clisp.org>
3383
3384         * lib/inttypes_.h (SCNX*): Remove definitions.
3385         Reported by Eric Blake.
3386
3387 2006-08-28  Bruno Haible  <bruno@clisp.org>
3388
3389         * lib/c-strstr.h: New file, from GNU gettext.
3390         * lib/c-strstr.c: New file, from GNU gettext.
3391
3392 2006-08-28  Bruno Haible  <bruno@clisp.org>
3393
3394         * gnulib-tool: Reorder some statements.
3395
3396 2006-08-28  Bruno Haible  <bruno@clisp.org>
3397
3398         * gnulib-tool: New option --makefile-name.
3399         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am): Use
3400         $makefile_name.
3401         (func_import): Write $makefile_name to the cache file, and read it from
3402         there unless explicitly specified. Use $makefile_name as file name
3403         instead of Makefile.am. Adjust the recommendations accordingly.
3404
3405 2006-08-28  Bruno Haible  <bruno@clisp.org>
3406
3407         * gnulib-tool (func_verify_module): Check against misapplying patch.
3408
3409 2006-08-28  Bruno Haible  <bruno@clisp.org>
3410
3411         * gnulib-tool (func_relativize, func_relconcat): New functions.
3412         Give an error if --local-dir is given with --update.
3413         Remove trailing slashes from $local_gnulib_dir.
3414         (func_import): Store the relativized $local_gnulib_dir in
3415         gnulib-cache.m4, and read it from there if not specified explicitly.
3416
3417 2006-08-28  Bruno Haible  <bruno@clisp.org>
3418
3419         * gnulib-tool (func_get_tests_module): Don't assume that $gnulib_dir
3420         is the current directory. Respect also $local_gnulib_dir.
3421
3422 2006-08-28  Bruno Haible  <bruno@clisp.org>
3423             Simon Josefsson  <jas@extundo.com>
3424
3425         BeOS portability.
3426         * lib/getaddrinfo.c (PF_INET, PF_UNSPEC): New macros.
3427
3428 2006-08-27  Jim Meyering  <jim@meyering.net>
3429
3430         * doc/visibility.texi: Remove duplicate word: "pointer".
3431
3432 2006-08-26  Bruno Haible  <bruno@clisp.org>
3433
3434         * modules/inttypes (Files): Add lib/inttypes_.h, remove lib/inttypes.h.
3435         Add m4/inttypes.m4, remove m4/_inttypes_h.m4 and m4/include_next.m4.
3436         (Makefile.am): Create inttypes.h from inttypes_.h.
3437         * modules/stdint (Makefile.am): Substitute also ABSOLUTE_INTTYPES_H.
3438
3439         * modules/imaxabs: New file.
3440
3441         * modules/imaxdiv: New file.
3442
3443 2006-08-26  Bruno Haible  <bruno@clisp.org>
3444
3445         * m4/inttypes.m4: New file.
3446         * m4/_inttypes_h.m4: Remove file.
3447         * m4/inttypes-pri.m4 (gt_INTTYPES_PRI): Also AC_SUBST
3448         PRI_MACROS_BROKEN.
3449         * m4/stdint.m4 (gl_STDINT_H): Define also ABSOLUTE_INTTYPES_H.
3450
3451         * m4/imaxabs.m4: New file.
3452
3453         * m4/imaxdiv.m4: New file.
3454
3455 2006-08-26  Bruno Haible  <bruno@clisp.org>
3456
3457         * lib/inttypes_.h: New file.
3458         * lib/inttypes.h: Remove file.
3459         * lib/stdint_.h: Include <inttypes.h> through its absolute filename.
3460
3461         * lib/imaxabs.c: New file.
3462
3463         * lib/imaxdiv.c: New file.
3464
3465 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
3466
3467         New config-h module, so that "make" output needn't be cluttered
3468         by -DHAVE_CONFIG_H.
3469         * MODULES.html.sh (Support for building libraries and executables):
3470         Add config-h.
3471         * modules/config-h: New file.
3472         * gnulib-tool (nl, sed_transform_lib_file): New vars.
3473         (func_import): Turn "#ifdef HAVE_CONFIG_H" to "#if 1" if
3474         the config-h module is used.
3475
3476         New configmake module, so that "make" output needn't be cluttered
3477         by fluff like '-DLIBDIR=\"/usr/local/lib\"'.
3478         * MODULES.html.sh (Support for building libraries and executables):
3479         Add configmake.
3480         * modules/configmake: New file.
3481
3482 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
3483
3484         * m4/config-h.m4: New file.
3485
3486 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
3487
3488         * config/srclist.txt: Add elisp-comp.
3489
3490 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
3491
3492         * MODULES.html.sh (Support for building libraries and executables):
3493         Add elisp-comp.
3494         * build-aux/elisp-comp: New file.
3495         * modules/elisp-comp: New file.
3496
3497 2006-08-24  Bruno Haible  <bruno@clisp.org>
3498
3499         * gnulib-tool (func_create_testdir): Use non-default values of
3500         sourcebase and m4base.
3501
3502 2006-08-24  Bruno Haible  <bruno@clisp.org>
3503
3504         * MODULES.html.sh (Compatibility checks for POSIX:2001 functions: Fix
3505         HTML structure.
3506
3507 2006-08-23  Paul Eggert  <eggert@cs.ucla.edu>
3508
3509         * modules/openat (Depends-on): Add lchown.
3510
3511 2006-08-23  Bruno Haible  <bruno@clisp.org>
3512
3513         * gnulib-tool (func_import, func_create_testdir): Emit an invocation
3514         of gl_LOCK_EARLY instead of gl_LOCK.
3515
3516 2006-08-23  Bruno Haible  <bruno@clisp.org>
3517
3518         * m4/lock.m4 (gl_LOCK_BODY): Change the default value of gl_use_threads
3519         on OSF/1 to no.
3520         Reported by Stephen Cartwright <sgcartwr@ucalgary.ca>.
3521
3522 2006-08-23  Bruno Haible  <bruno@clisp.org>
3523
3524         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Don't consider BeOS statvfs
3525         as unusable.
3526
3527         * m4/lock.m4 (gl_LOCK_EARLY): Renamed from gl_LOCK.
3528         (gl_LOCK_BODY): Remove gl_PREREQ_LOCK invocation.
3529         (gl_LOCK): New macro.
3530
3531 2006-08-22  Simon Josefsson  <jas@extundo.com>
3532
3533         * modules/gc-md5 (Makefile.am): Need to add md5.h, after changes
3534         to md5 module.
3535
3536 2006-08-22  Simon Josefsson  <jas@extundo.com>
3537
3538         * MODULES.html.sh: Add "Support for maintaining and release
3539         projects".
3540
3541         * build-aux/gnupload: New file, from coreutils.
3542
3543 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
3544
3545         Avoid the need for AC_LIBSOURCES in m4 macros.
3546         * modules/arcfour (EXTRA_DIST): Add arcfour.h.
3547         * modules/arctwo (EXTRA_DIST): Add arctwo.h.
3548         * modules/check-version (EXTRA_DIST): Add check-version.h.
3549         * modules/crc (EXTRA_DIST): Add crc.h.
3550         * modules/des (EXTRA_DIST): Add des.h.
3551         * modules/gc (EXTRA_DIST): Add gc.h.
3552         * modules/getdelim (EXTRA_DIST): Add getdelim.h.
3553         * modules/getline (EXTRA_DIST): Add getline.h.
3554         * modules/getlogin_r (EXTRA_DIST): Add getlogin_r.h.
3555         * modules/hmac-md5 (EXTRA_DIST): Add hmac.h.
3556         * modules/hmac-sha1 (EXTRA_DIST): Add hmac.h.
3557         * modules/md2 (EXTRA_DIST): Add md2.h.
3558         * modules/md4 (EXTRA_DIST): Add md4.h.
3559         * modules/pagealign_alloc (EXTRA_DIST): Add pagealign_alloc.h.
3560         * modules/read-file (EXTRA_DIST): Add read-file.h.
3561         * modules/readline (EXTRA_DIST): Add readline.h.
3562         * modules/rijndael (EXTRA_DIST): Add rijndael-alg-fst.h,
3563         rijndael-api-fst.h.
3564
3565 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
3566
3567         * m4/rijndael.m4 (gl_ARCFOUR):
3568         * m4/arctwo.m4 (gl_ARCTWO):
3569         * m4/check-version.m4 (gl_CHECK_VERSION):
3570         * m4/crc.m4 (gl_CRC):
3571         * m4/des.m4 (gl_DES):
3572         * m4/gc-pbkdf2-sha1.m4 (gl_GC_PBKDF2_SHA1):
3573         * m4/gc.m4 (gl_GC):
3574         * m4/getdelim.m4 (gl_FUNC_GETDELIM):
3575         * m4/getline.m4 (gl_FUNC_GETLINE):
3576         * m4/getlogin_r.m4 (gl_GETLOGIN_R_SUBSTITUTE):
3577         * m4/hmac-md5.m4 (gl_HMAC_MD5):
3578         * m4/hmac-sha1.m4 (gl_HMAC_SHA1):
3579         * m4/md2.m4 (gl_MD2):
3580         * m4/md4.m4 (gl_MD4):
3581         * m4/pagealign_alloc.m4 (gl_PAGEALIGN_ALLOC):
3582         * m4/read-file.m4 (gl_FUNC_READ_FILE):
3583         * m4/readline.m4 (gl_FUNC_READLINE):
3584         * m4/rijndael.m4 (gl_RIJNDAEL):
3585         Don't use AC_LIBSOURCES; instead, rely on the files in ../modules/
3586         to get the necessary .h files and whatnot.
3587
3588 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
3589
3590         * config/srclist.txt: Remove gnupload, since coreutils now syncs from
3591         gnulib rather than the other way around.
3592         * config/srclistvars.sh (COREUTILS): Remove.
3593
3594 2006-08-22  Jim Meyering  <jim@meyering.net>
3595
3596         * modules/mkdir-p (Makefile.am): Fix typo: s/lib+SOURCES/lib_SOURCES/.
3597
3598         * modules/getpass-gnu (Makefile.am): Add getpass.h to EXTRA_DIST.
3599
3600 2006-08-22  Eric Blake  <ebb9@byu.net>
3601
3602         * modules/regexprops-generic: New file.
3603         * MODULES.html.sh (Support for building documentation): List it.
3604
3605 2006-08-22  Eric Blake  <ebb9@byu.net>
3606
3607         * m4/stdint_h.m4 (gl_AC_HEADER_STDINT_H): Avoid compiler warning.
3608         * m4/inttypes_h.m4 (gl_AC_HEADER_INTTYPES_H): Likewise.
3609         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Likewise.
3610         * m4/intmax_t.m4 (gt_AC_TYPE_INTMAX_T): Likewise.
3611
3612 2006-08-22  Bruno Haible  <bruno@clisp.org>
3613
3614         * gnulib-tool (func_emit_lib_Makefile_am): Don't treat lib_LIBRARIES
3615         and lib_LTLIBRARIES like the other lib_* variables.
3616
3617 2006-08-22  Bruno Haible  <bruno@clisp.org>
3618
3619         * build-aux/x-to-1.in: New file, from GNU gettext.
3620
3621 2006-08-22  Bruno Haible  <bruno@clisp.org>
3622
3623         * m4/readutmp.m4 (gl_READUTMP): Compile readutmp.c only if <utmp.h> or
3624         <utmpx.h> exists.
3625
3626 2006-08-22  Bruno Haible  <bruno@clisp.org>
3627
3628         * lib/readutmp.h: Skip most definitions if neither <utmp.h> nor
3629         <utmpx.h> exists.
3630
3631 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
3632
3633         BeOS portability.
3634         * lib/dirchownmod.c (dirchownmod): Don't use fchmod if it doesn't
3635         exist.
3636         Problem reported by Bruno Haible.
3637
3638 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
3639
3640         Avoid the need for AC_LIBSOURCES in m4 macros.
3641         * modules/acl (EXTRA_DIST): Add acl.h.
3642         * modules/argmatch (Files): Add m4/argmatch.m4.
3643         (configure.ac): Add gl_ARGMATCH.
3644         (EXTRA_DIST): Renamed from lib_SOURCES, for
3645         consistency with the other modules.  Remove argmatch.c.
3646         * modules/backupfile (EXTRA_DIST): Add backupfile.h.
3647         * modules/c-strtod (EXTRA_DIST): Add c-strtod.h.
3648         * modules/c-strtold (EXTRA_DIST): Add c-strtod.c, c-strtod.h.
3649         * modules/canonhost (EXTRA_DIST): Add c-canonhost.h.
3650         * modules/canonicalize (EXTRA_DIST): Add canonicalize.h.
3651         * modules/chdir-long (EXTRA_DIST): Add chdir-long.h.
3652         * modules/chdir-safer (EXTRA_DIST): Add chdir-safer.h.
3653         * modules/cloexec (EXTRA_DIST): Add cloexec.h.
3654         * modules/close-stream (EXTRA_DIST): Add close-stream.h.
3655         * modules/closeout (EXTRA_DIST): Add closeout.h.
3656         * modules/cycle-check (EXTRA_DIST): Add cycle-check.h.
3657         * modules/dev-ino (EXTRA_DIST): Add dev-ino.h.
3658         * modules/dirfd (EXTRA_DIST): Add dirfd.h.
3659         * modules/dirname (EXTRA_DIST): Renamed from lib_SOURCES.  Add
3660         dirname.h; remove basename.c and stripslash.c.
3661         * modules/exclude (EXTRA_DIST): Add exclude.h.
3662         * modules/exitfail (EXTRA_DIST): Add exitfail.h.
3663         * modules/fcntl-safer (EXTRA_DIST): Add fcntl-safer.h fcntl--.h.
3664         * modules/file-type (EXTRA_DIST): Add file-type.h.
3665         * modules/filemode (EXTRA_DIST): Add filemode.h.
3666         * modules/filenamecat (EXTRA_DIST): Add filenamecat.h.
3667         * modules/fopen-safer (EXTRA_DIST): Add stdio-safer.h stdio--.h.
3668         * modules/fpending (EXTRA_DIST): Add __fpending.h.
3669         * modules/fprintftime (EXTRA_DIST): Add fprintftime.h.
3670         * modules/fsusage (EXTRA_DIST): Add fsusage.h.
3671         * modules/fts (EXTRA_DIST): Add fts_.h fts-cycle.c.
3672         * modules/getcwd (EXTRA_DIST): Add getcwd.h.
3673         * modules/getdate (EXTRA_DIST): Add getdate.c.
3674         * modules/gethrxtime (EXTRA_DIST): Add gethrxtime.h xtime.h.
3675         * modules/getpagesize (EXTRA_DIST): Add getpagesize.h.
3676         * modules/getpass (EXTRA_DIST): Add getpass.h.
3677         * modules/glob (EXTRA_DIST): Add glob_.h glob-libc.h.
3678         * modules/group-member (EXTRA_DIST): Add group-member.h.
3679         * modules/hard-locale (EXTRA_DIST): Add hard-locale.h.
3680         * modules/hash (EXTRA_DIST): Add hash.h.
3681         * modules/human (EXTRA_DIST): Add human.h.
3682         * modules/inttypes (EXTRA_DIST): Add inttypes.h.
3683         * modules/lchmod (EXTRA_DIST): Add lchmod.h.
3684         * modules/lchown (EXTRA_DIST): Add lchown.h.
3685         * modules/long-options (EXTRA_DIST): Add long-options.h.
3686         * modules/lstat (EXTRA_DIST): Add lstat.h.
3687         * modules/md5 (EXTRA_DIST): Add memcasecmp.h.
3688         * modules/memcoll (EXTRA_DIST): Add memcoll.h.
3689         * modules/mempcpy (EXTRA_DIST): Add mempcpy.h.
3690         * modules/memrchr (EXTRA_DIST): Add memrchr.h.
3691         * modules/memxor (EXTRA_DIST): Add memxor.h.
3692         * modules/mkancesdirs (EXTRA_DIST): Add mkancesdirs.h.
3693         * modules/mkdir-p (EXTRA_DIST): Add modechange.h.
3694         * modules/mountlist (EXTRA_DIST): Add mountlist.h.
3695         * modules/openat (EXTRA_DIST): Add at-func.c openat.h openat-priv.h.
3696         * modules/pathmax (EXTRA_DIST): Add pathmax.h.
3697         * modules/physmem (EXTRA_DIST): Add physmem.h.
3698         * modules/posixtm (EXTRA_DIST): Add posixtm.h.
3699         * modules/posixver (EXTRA_DIST): Add posixver.h.
3700         * modules/quote (EXTRA_DIST): Add quote.h.
3701         * modules/quotearg (EXTRA_DIST): Add quotearg.h.
3702         * modules/readtokens (EXTRA_DIST): Add readtokens.h.
3703         * modules/readutmp (EXTRA_DIST): Add readutmp.h.
3704         * modules/regex (EXTRA_DIST): Add regcomp.c regex.h regex_internal.c
3705         regex_internal.h regexec.c.
3706         * modules/safe-read (EXTRA_DIST): Add safe-read.h.
3707         * modules/safe-write (EXTRA_DIST): Add safe-write.h.
3708         * modules/same (EXTRA_DIST): Add same.h.
3709         * modules/same-inode (EXTRA_DIST): Add same-inode.h.
3710         * modules/save-cwd (EXTRA_DIST): Add save-cwd.h.
3711         * modules/savedir (EXTRA_DIST): Add savedir.h.
3712         * modules/sha1 (EXTRA_DIST): Add sha1.h.
3713         * modules/sig2str (EXTRA_DIST): Add sig2str.h.
3714         * modules/stat-macros (EXTRA_DIST): Add stat-macros.h.
3715         * modules/stat-time (EXTRA_DIST): Add stat-time.h.
3716         * modules/stdlib-safer (EXTRA_DIST): Add stdlib-safer.h stdlib--.h.
3717         * modules/strdup (EXTRA_DIST): Add strdup.h.
3718         * modules/strftime (EXTRA_DIST): Add strftime.h.
3719         * modules/strndup (EXTRA_DIST): Add strndup.h.
3720         * modules/strnlen (EXTRA_DIST): Add strnlen.h.
3721         * modules/strverscmp (EXTRA_DIST): Add strverscmp.h.
3722         * modules/time_r (EXTRA_DIST): Add time_r.h.
3723         * modules/timespec (EXTRA_DIST): Add timespec.h.
3724         * modules/tmpfile-safer (EXTRA_DIST): Add stdio-safer.h stdio--.h.
3725         * modules/unistd-safer (EXTRA_DIST): Add unistd-safer.h unistd--.h.
3726         * modules/unlinkdir (EXTRA_DIST): Add unlinkdir.h.
3727         * modules/unlocked-io (EXTRA_DIST): Add unlocked-io.h.
3728         * modules/userspec (EXTRA_DIST): Add userspec.h.
3729         * modules/utimecmp (EXTRA_DIST): Add utimecmp.h.
3730         * modules/utimens (EXTRA_DIST): Add utimens.h.
3731         * modules/xalloc (EXTRA_DIST): Add xalloc.h.
3732         * modules/xgetcwd (EXTRA_DIST): Add xgetcwd.h.
3733         * modules/xnanosleep (EXTRA_DIST): Add xnanosleep.h.
3734         * modules/xreadlink (EXTRA_DIST): Add xreadlink.h.
3735         * modules/xstrtod (EXTRA_DIST): Add xstrtod.h.
3736         * modules/xstrtol (EXTRA_DIST): Add xstrtol.h.
3737         * modules/xstrtold (EXTRA_DIST): Add xstrtod.c xstrtod.h.
3738         * modules/yesno (EXTRA_DIST): Add yesno.h.
3739
3740 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
3741
3742         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Check for fchmod.
3743
3744         * m4/argmatch.m4: New file, from coreutils with AC_LIBSOURCES removed.
3745         * m4/dev-ino.m4, same-inode.m4: Remove.
3746
3747         * m4/_inttypes_h.m4 (gl_INTTYPES_H):
3748         * m4/acl.m4 (AC_FUNC_ACL):
3749         * m4/backupfile.m4 (gl_BACKUPFILE):
3750         * m4/c-strtod.m4 (gl_C99_STRTOLD):
3751         * m4/canon-host.m4 (gl_CANON_HOST):
3752         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME):
3753         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG):
3754         * m4/chdir-safer.m4 (gl_CHDIR_SAFER):
3755         * m4/cloexec.m4 (gl_CLOEXEC):
3756         * m4/close-stream.m4 (gl_CLOSE_STREAM):
3757         * m4/closeout.m4 (gl_CLOSEOUT):
3758         * m4/dirfd.m4 (gl_FUNC_DIRFD):
3759         * m4/dirname.m4 (gl_DIRNAME):
3760         * m4/exclude.m4 (gl_EXCLUDE):
3761         * m4/exitfail.m4 (gl_EXITFAIL):
3762         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER):
3763         * m4/file-type.m4 (gl_FILE_TYPE):
3764         * m4/filemode.m4 (gl_FILEMODE):
3765         * m4/filenamecat.m4 (gl_FILE_NAME_CONCAT):
3766         * m4/fpending.m4 (gl_FUNC_FPENDING):
3767         * m4/fprintftime.m4 (gl_FPRINTFTIME):
3768         * m4/fts.m4 (gl_FUNC_FTS):
3769         * m4/getcwd.m4 (gl_FUNC_GETCWD_NULL):
3770         * m4/getdate.m4 (gl_GETDATE):
3771         * m4/gethrxtime.m4 (gl_GETHRXTIME):
3772         * m4/getpagesize.m4 (gl_GETPAGESIZE):
3773         * m4/getpass.m4 (gl_FUNC_GETPASS):
3774         * m4/gettime.m4 (gl_GETTIME):
3775         * m4/getugroups.m4 (gl_GETUGROUPS):
3776         * m4/glob.m4 (gl_GLOB_SUBSTITUTE):
3777         * m4/group-member.m4 (gl_FUNC_GROUP_MEMBER):
3778         * m4/hard-locale.m4 (gl_HARD_LOCALE):
3779         * m4/hash.m4 (gl_HASH):
3780         * m4/idcache.m4 (gl_IDCACHE):
3781         * m4/lchmod.m4 (gl_FUNC_LCHMOD):
3782         * m4/lchown.m4 (gl_FUNC_LCHOWN):
3783         * m4/long-options.m4 (gl_LONG_OPTIONS):
3784         * m4/lstat.m4 (gl_FUNC_LSTAT):
3785         * m4/md5.m4 (gl_MD5):
3786         * m4/memcasecmp.m4 (gl_MEMCASECMP):
3787         * m4/memcoll.m4 (gl_MEMCOLL):
3788         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY):
3789         * m4/memrchr.m4 (gl_FUNC_MEMRCHR):
3790         * m4/memxor.m4 (gl_MEMXOR):
3791         * m4/mkancesdirs.m4 (gl_MKANCESDIRS):
3792         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS):
3793         * m4/modechange.m4 (gl_MODECHANGE):
3794         * m4/mountlist.m4 (gl_MOUNTLIST):
3795         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
3796         * m4/openat.m4 (gl_FUNC_OPENAT):
3797         * m4/pathmax.m4 (gl_PATHMAX):
3798         * m4/physmem.m4 (gl_PHYSMEM):
3799         * m4/posixtm.m4 (gl_POSIXTM):
3800         * m4/posixver.m4 (gl_POSIXVER):
3801         * m4/quote.m4 (gl_QUOTE):
3802         * m4/quotearg.m4 (gl_QUOTEARG):
3803         * m4/readtokens.m4 (gl_READTOKENS):
3804         * m4/readutmp.m4 (gl_READUTMP):
3805         * m4/regex.m4 (gl_REGEX):
3806         * m4/safe-read.m4 (gl_SAFE_READ):
3807         * m4/safe-write.m4 (gl_SAFE_WRITE):
3808         * m4/same.m4 (gl_SAME):
3809         * m4/save-cwd.m4 (gl_SAVE_CWD):
3810         * m4/savedir.m4 (gl_SAVEDIR):
3811         * m4/settime.m4 (gl_SETTIME):
3812         * m4/sha1.m4 (gl_SHA1):
3813         * m4/sig2str.m4 (gl_FUNC_SIG2STR):
3814         * m4/stat-macros.m4 (gl_STAT_MACROS):
3815         * m4/stat-time.m4 (gl_STAT_TIME):
3816         * m4/stdio-safer.m4 (gl_FOPEN_SAFER):
3817         * m4/stdlib-safer.m4 (gl_STDLIB_SAFER):
3818         * m4/strdup.m4 (gl_FUNC_STRDUP):
3819         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME):
3820         * m4/strndup.m4 (gl_FUNC_STRNDUP):
3821         * m4/strnlen.m4 (gl_FUNC_STRNLEN):
3822         * m4/strverscmp.m4 (gl_FUNC_STRVERSCMP):
3823         * m4/time_r.m4 (gl_TIME_R):
3824         * m4/timespec.m4 (gl_TIMESPEC):
3825         * m4/unistd-safer.m4 (gl_UNISTD_SAFER):
3826         * m4/unlinkdir.m4 (gl_UNLINKDIR):
3827         * m4/unlocked-io.m4 (gl_FUNC_GLIBC_UNLOCKED_IO):
3828         * m4/userspec.m4 (gl_USERSPEC):
3829         * m4/utimecmp.m4 (gl_UTIMECMP):
3830         * m4/utimens.m4 (gl_UTIMENS):
3831         * m4/xalloc.m4 (gl_XALLOC):
3832         * m4/xgetcwd.m4 (gl_XGETCWD):
3833         * m4/xnanosleep.m4 (gl_XNANOSLEEP):
3834         * m4/xreadlink.m4 (gl_XREADLINK):
3835         * m4/xstrtod.m4 (gl_XSTRTOD):
3836         * m4/yesno.m4 (gl_YESNO):
3837         Don't use AC_LIBSOURCES; instead, rely on the files in ../modules/
3838         to get the necessary .h files and whatnot.
3839
3840 2006-08-21  Mark D. Baushke  <mdb@gnu.org>
3841             Bruno Haible  <bruno@clisp.org>
3842
3843         * gnulib-tool (func_verify_module): Work around Sun's non-POSIX 1003.2
3844         /bin/sh understanding of '!' conditional negation.
3845
3846 2006-08-21  Jim Meyering  <jim@meyering.net>
3847
3848         * modules/openat (Depends-on): Really alphabetize.
3849
3850         * modules/acl (Depends-on): Add error and quote.
3851
3852         * check-module (find_included_lib_files): Add at-func.c to the
3853         ok-to-include-more-than-once white list.
3854
3855         * modules/openat (Depends-on): Add lstat.  Alphabetize.
3856
3857 2006-08-21  Bruno Haible  <bruno@clisp.org>
3858
3859         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
3860         Emit a pkgdata_DATA variable only if some snippets add contents to it.
3861         Reported by Martin Lambers <marlam@marlam.de>.
3862
3863 2006-08-21  Bruno Haible  <bruno@clisp.org>
3864
3865         * gnulib-tool (func_emit_lib_Makefile_am): If the snippets already
3866         specify an installation location, don't emit a noinst_LIBRARIES or
3867         noinst_LTLIBRARIES assignment.
3868
3869 2006-08-21  Bruno Haible  <bruno@clisp.org>
3870
3871         BeOS portability.
3872         * modules/mbchar (Include): Don't test HAVE_WCTYPE_H any more, since
3873         BeOS has mbrtowc() but no <wctype.h>.
3874
3875 2006-08-21  Bruno Haible  <bruno@clisp.org>
3876
3877         BeOS portability.
3878         * m4/mbchar.m4 (gl_MBCHAR): Compile mbchar.c also if <wctype.h> doesn't
3879         exist.
3880
3881 2006-08-21  Bruno Haible  <bruno@clisp.org>
3882
3883         BeOS portability.
3884         * lib/mbchar.h: Include <wctype.h> only if it exists.
3885
3886 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
3887
3888         Remove files that are no longer needed by their respective modules.
3889         * m4/obstack.m4: Remove.
3890         * m4/strerror_r.m4: Remove.
3891         * m4/uint32_t.m4: Remove.
3892         * m4/uintptr_t.m4: Remove.
3893         * m4/ullong_max.m4: Remove.
3894         * m4/xstrtoimax.m4: Remove.
3895         * m4/xstrtoumax.m4: Remove.
3896
3897         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Do not require
3898         gl_AC_TYPE_UINTMAX_T, gl_STRUCT_DEV_INO, or gl_SAME_INODE, since gnulib
3899         dependencies now capture this.
3900
3901         * m4/cycle-check.m4 (gl_CYCLE_CHECK):
3902         Do not use AC_LIBSOURCES, since gnulib modules now do this.
3903         * m4/fsusage.m4 (gl_FSUSAGE): Likewise.
3904         * m4/human.m4 (gl_HUMAN): Likewise.
3905         * m4/inttostr.m4 (gl_INTTOSTR): Likewise.
3906         * m4/xstrtol.m4 (gl_XSTRTOL): Likewise.
3907
3908         * m4/filemode.m4 (gl_FILEMODE): Require AC_STRUCT_ST_DM_MODE.
3909
3910         * m4/filemode.m4 (gl_PREREQ_FSUSAGE_EXTRA): Do not require
3911         gl_AC_TYPE_INTMAX_T or gl_AC_TYPE_UINTMAX_T, since we now require
3912         stdint.
3913         * m4/human.m4 (gl_HUMAN): Likewise.
3914         * m4/inttostr.m4 (gl_PREREQ_INTTOSTR): Likewise.
3915         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Likewise.
3916         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Likewise.
3917         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Likewise.
3918         * m4/xstrtol (gl_XSTRTOL): Likewise.
3919
3920         * m4/gethrxtime.m4 (gl_XTIME): gl_AC_TYPE_LONG_LONG ->
3921         AC_TYPE_LONG_LONG_INT.
3922         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Likewise.
3923         * m4/strtoll.m4 (gl_FUNC_STRTOLL): Likewise.
3924         * m4/strtoull.m4 (gl_FUNC_STRTOULL): Likewise, for unsigned long.
3925         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Likewise.
3926
3927         * m4/human.m4 (gl_HUMAN): Do not require AM_STDBOOL_H since we depend
3928         on stdbool.
3929
3930         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL_H, gl_PREREQ_XSTRTOL): Remove.
3931         (gl_PREREQ_XSTRTOUL): Remove.
3932
3933         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Check for hasmntopt.
3934
3935         * m4/posixver.m4: Fix comment since head -1 now works even in POSIX
3936         mode.
3937
3938 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
3939
3940         Add and change modules to make it easier for coreutils to use
3941         gnulib-tool.
3942         * modules/backupfile (Files): Remove m4/d-ino.m4.
3943         (Depends-on): Add d-ino.
3944         * modules/cycle-check (Depends-on): Add stdint.
3945         (lib_SOURCES): Add cycle-check.h.
3946         * modules/d-ino: New module.
3947         * modules/d-type: New module.
3948         * modules/error (Files): Remove m4/strerror_r.m4.
3949         * modules/filemode (Files): Add m4/st_dm_mode.m4.
3950         * modules/fsuage (Files): Remove m4/ulonglong.m4, m4/stdint_h.m4,
3951         m4/inttypes_h.m4, m4/uintmax_t.m4.
3952         (Depends-on): Add stdint.
3953         (lib_SOURCES): Add fsusage.h.
3954         * modules/getcwd (Files): Remove d-ino.m4.
3955         (Depends-on): Add d-ino.
3956         * modules/getndelim2 (Depends-on): Add stdint.
3957         * modules/glob (Files): Remove m4/d-type.m4.
3958         (Depends-on): Add d-type.
3959         * modules/host-os: New module.
3960         * modules/human (Files):  Remove m4/ulonglong.m4, m4/stdint_h.m4,
3961         m4/inttypes_h.m4, m4/uintmax_t.m4.
3962         * Depends-on: Add stdint.
3963         (lib_SOURCES): Add human.h.
3964         * modules/inttostr (Files): Remove m4/intmax_t.m4,
3965         m4/inttostr.m4, m4/inttypes_h.m4, m4/longlong.m4, m4/stdint_h.m4,
3966         m4/uintmax_t.m4, m4/ulonglong.m4.
3967         (Depends-on): Add stdint.
3968         (EXTRA_DIST): Add inttostr.h.
3969         * modules/lchmod: New module.
3970         * modules/link-follow: New module.
3971         * modules/mkdir-p (Files): Remove lib/lchmod.h, m4/lchmod.m4.
3972         (Depends-on): Add lchmod.
3973         * modules/mkstemp (Files): Remove m4/ulonglong.m4,
3974         m4/stdint_h.m4, m4/inttypes_h.m4, m4/uintmax_t.m4.
3975         (Depends-on): Add stdint.
3976         * modules/obstack (Files): Remove m4/inttypes_h.m4, m4/obstack.m4,
3977         m4/stdint_h.m4, m4/uintmax_t.m4, m4/ulonglong.m4.
3978         (Depends-on): Add stdint.
3979         (configure.ac): Change gl_OBSTACK to AC_FUNC_OBSTACK.
3980         * modules/perl: New module.
3981         * modules/regex (Depends-on): Add stdint.
3982         * modules/rmdir-errno: New module.
3983         * modules/strtoimax (Files): Remove m4/stdint_h.m4, m4/inttypes_h.m4,
3984         m4/intmax_t.m4.
3985         (Depends-on): Add stdint.
3986         * modules/strtoumax (Files): Remove m4/stdint_h.m4, m4/inttypes_h.m4,
3987         m4/uintmax_t.m4.
3988         (Depends-on): Add stdint.
3989         * modules/unlink-busy: New module.
3990         * modules/utimecmp (Depends-on): Add stdint.
3991         * modules/uptime: New module.
3992         * modules/winsz-ioctl: New module.
3993         * modules/winsz-termios: New module.
3994         * modules/xnanosleep (Depends-on): Add nanosleep.
3995         * modules/ullong_max: Remove.
3996         * modules/xstrtoimax (Files): Remove m4/xstrtoimax.m4.
3997         (configure.ac): Remove gl_XSTRTOIMAX; no action needed now.
3998         * modules/xstrtol (Files): Remove m4/ulonglong.m4, m4/longlong.m4,
3999         m4/stdint_h.m4, m4/inttypes_h.m4, m4/uintmax_t.m4, m4/intmax_t.m4.
4000         (Depends-on): Add inttypes.
4001         (lib_SOURCES): Add xstrtol.h.
4002         * modules/xstrtoumax (Files): Remove m4/xstrtoumax.m4.
4003         (configure.ac): Remove gl_XSTRTOUMAX; no action needed now.
4004         * MODULES.html.sh: Move 'assert' into the assert section.
4005         Move 'dummy' into the linking section.
4006         Remove ullong_max.
4007         Add section for compatibility checks for POSIX:2001 functions,
4008         and put d-ino, d-type, link-follow, rmdir-errno, unlink-busy,
4009         winsz-ioctl, and winsz-termios into it.
4010         Add lchmod.
4011         Add top-level Misc section and put host-os, perl, and uptime
4012         into it.
4013
4014 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
4015
4016         * lib/cycle-check.h: Include <stdint.h> unconditionally, since we
4017         now assume the stdint module.  Do not include inttypes.h.
4018         * lib/fsusage.h: Likewise.
4019         * lib/getndelim2.c: Likewise.
4020         * lib/human.h: Likewise.
4021         * lib/inttostr.h: Likewise.
4022         * lib/obstack.c: Likewise.
4023         * lib/regex_internal.h: Likewise.
4024         * lib/tempname.c: Likewise.
4025         * lib/utimecmp.c: Likewise.
4026         * lib/xstrtol.h: Likewise.
4027
4028         * lib/stat_.h: Fix typo: HAVE_FUNC_LSTAT -> HAVE_LSTAT.
4029
4030         * lib/strtoimax.c: Adjust to macro name changes in Autoconf,
4031         e.g., HAVE_LONG_LONG -> HAVE_LONG_LONG_INT.
4032         * lib/xtime.h: Likewise.
4033
4034 2006-08-19  Paul Eggert  <eggert@cs.ucla.edu>
4035
4036         * modules/openat (Files): Add lib/fchmodat.c.
4037         Fixes problem reported by Jay Youngman.
4038
4039 2006-08-19  Paul Eggert  <eggert@cs.ucla.edu>
4040
4041         * lib/fchmodat.c: New file, from coreutils.  This was inadvertently
4042         omitted in the 2006-08-17 update.  Problem reported by Jay Youngman.
4043
4044 2006-08-18  Paul Eggert  <eggert@cs.ucla.edu>
4045             Bruno Haible  <bruno@clisp.org>
4046
4047         * m4/bison-i18n.m4 (BISON_I18N): Also handle the case where yacc exists
4048         and is a script that invokes bison. Tighten the code. Add comments.
4049
4050 2006-08-18  Jim Meyering  <jim@meyering.net>
4051
4052         * m4/gethrxtime.m4 (gl_PREREQ_GETHRXTIME): Also check for
4053         CLOCK_REALTIME, since gethrxtime may revert to using clock_gettime via
4054         gettime.c.  Gabor Z. Papp reported that gethrxtime-using programs
4055         failed to link due to unresolved clock_gettime on a linux-2.4.x system.
4056
4057 2006-08-18  Bruno Haible  <bruno@clisp.org>
4058
4059         * modules/bison-i18n: New file.
4060         * MODULES.html.sh (Internationalization functions): Add it.
4061
4062 2006-08-18  Bruno Haible  <bruno@clisp.org>
4063
4064         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Also check for
4065         sys/statvfs.h. When getmntinfo was found, check its declaration and
4066         set either MOUNTED_GETMNTINFO or MOUNTED_GETMNTINFO2 depending on it.
4067
4068 2006-08-18  Bruno Haible  <bruno@clisp.org>
4069
4070         * m4/bison-i18n.m4: New file, from bison.
4071
4072 2006-08-18  Bruno Haible  <bruno@clisp.org>
4073
4074         * lib/mountlist.c [MOUNTED_GETMNTINFO2]: Include sys/statvfs.h.
4075         (ME_DUMMY): Treat "kernfs" as a dummy.
4076         (read_file_system_list) [MOUNTED_GETMNTINFO2]: Implement.
4077
4078 2006-08-17  Paul Eggert  <eggert@cs.ucla.edu>
4079
4080         Update from coreutils.
4081
4082         2006-08-15  Jim Meyering  <jim@meyering.net>
4083
4084         * m4/openat.m4 (gl_FUNC_OPENAT): Add at-func.c via AC_LIBSOURCES.
4085
4086         2006-01-17  Jim Meyering  <jim@meyering.net>
4087
4088         * m4/fts.m4 (gl_FUNC_FTS_CORE): Depend on gl_FUNC_OPENAT.
4089
4090         2006-01-11  Jim Meyering  <jim@meyering.net>
4091
4092         * m4/openat.m4 (gl_FUNC_OPENAT): Require and compile fchmodat.c.
4093         Check for the lchmod function.
4094
4095 2006-08-17  Paul Eggert  <eggert@cs.ucla.edu>
4096
4097         Update from coreutils.
4098
4099         * lib/__fpending.h: Add copyright notice.
4100         * lib/fprintftime.h: Likewise.
4101         * lib/savedir.c: Use (C) in copyright notice.
4102         * lib/savedir.h: Likewise.
4103
4104         2006-08-15  Jim Meyering  <jim@meyering.net>
4105
4106         * lib/at-func.c: New file, with the logic of all emulated at-functions.
4107         * lib/openat-priv.h: Include <errno.h> and define ENOSYS,
4108         in support of the EXPECTED_ERRNO macro.
4109         * lib/openat.c (fstatat, unlinkat, fchownat): Remove function
4110         definitions.  Instead, define the appropriate symbols and include
4111         "at-func.c".
4112         * lib/mkdirat.c (mkdirat): Likewise.
4113         * lib/fchmodat.c (fchmodat): Likewise.
4114         (ENOSYS): Remove definition.
4115         * lib/openat.c: Don't include <errno.h>, now that "openat-priv.h" does
4116         it.  Don't include "unistd--.h" -- it wasn't ever used.
4117
4118         2006-01-17  Jim Meyering  <jim@meyering.net>
4119
4120         Rewrite fts.c not to change the current working directory,
4121         by using openat, fstatat, fdopendir, etc..
4122
4123         * lib/fts.c [! _LIBC]: Include "openat.h" and "unistd--.h".
4124         (HAVE_OPENAT_SUPPORT): Define.
4125         [_LIBC] (fchdir): Don't undef or define; no longer used.
4126         (FCHDIR): Define in terms of cwd_advance_fd rather than fchdir.
4127         Now, this `function' always succeeds, and consumes its file descriptor
4128         parameter -- so callers must not close such FDs.  Update callers.
4129         (diropen_fd, opendirat, cwd_advance_fd): New functions.
4130         (diropen): Add parameter, SP.  Adjust all callers.
4131         Implement using diropen_fd, rather than open.
4132         (fts_open): Initialize new member, fts_cwd_fd.
4133         Remove fts_rft-setting code.
4134         (fts_close): Close fts_cwd_fd, if necessary.
4135         (__opendir2): Define in terms of opendir or opendirat,
4136         depending on whether the FST_NOCHDIR flag is set.
4137         (fts_build): Since fts_safe_changedir consumes its FD, and since
4138         this code must do `closedir(dirp)', dup the dirfd(dirp) argument,
4139         and close the dup'd file descriptor upon failure.
4140         (fts_stat): Use fstatat(...AT_SYMLINK_NOFOLLOW) in place of lstat.
4141         (fts_safe_changedir): Tweak semantics to reflect that this function
4142         now calls cwd_advance_fd and hence consumes its FD argument.
4143         * lib/fts_.h [struct FTS] (fts_cwd_fd): New member.
4144         [struct FTS] (fts_rft): Remove now-unused member.
4145         [struct FTS] (fts_cycle.state): Improve comment.
4146
4147         * lib/openat.c (openat_needs_fchdir): New function.
4148         * lib/openat.h (openat_needs_fchdir): Declare it.
4149
4150 2006-08-16  Paul Eggert  <eggert@cs.ucla.edu>
4151
4152         * lib/memcoll.c (memcoll): Set errno = 0 in the shortcut case, too.
4153         Problem and fix reported by Pádraig Brady in
4154         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00099.html>.
4155
4156 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
4157
4158         * modules/cycle-check (configure.ac): Add gl_CYCLE_CHECK.
4159
4160 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
4161
4162         * lib/memcoll.c (memcoll): Optimize for the common case where the
4163         arguments are bytewise equal.
4164
4165 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
4166
4167         * doc/regexprops-generic.texi: Add a copyright notice.
4168
4169 2006-08-15  Bruno Haible  <bruno@clisp.org>
4170
4171         * modules/tmpdir (License): Change to LGPL.
4172
4173 2006-08-15  Bruno Haible  <bruno@clisp.org>
4174
4175         * gnulib-tool (func_all_modules, func_verify_module): COPYING is not a
4176         module.
4177
4178 2006-08-14  Simon Josefsson  <jas@extundo.com>
4179
4180         * config/srclist.txt: Add gnupload.
4181
4182 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
4183
4184         Change copyright notice from LGPL 2 to GPL 2, since that's the
4185         standard form used in the gnulib repository.
4186         * tests/test-lock.c: Likewise.
4187         * tests/test-stdint.c: Likewise.
4188         * tests/test-tls.c: Likewise.
4189
4190         * users.txt: Add bison, diffutils, libprelude, prelude-lml,
4191         prelude-manager.  User shorter URLs for GNU projects, without '?'.
4192         Add copyright notice.
4193
4194         * check-module: Add copyright notice.  Output a copyright
4195         notice if "--version" is specified.
4196         * modules/COPYING: New file.
4197         * tests/test-getaddrinfo.c: Add copyright notice.
4198         * tests/test-verify.c: Likewise.
4199
4200 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
4201
4202         Change copyright notice from LGPL 2 to GPL 2, since that's the
4203         standard form used in the gnulib repository.
4204         * lib/lock.c: LGPL -> GPL.
4205         * lib/lock.h: Likewise.
4206         * lib/strnlen1.c: Likewise.
4207         * lib/strnlen1.h: Likewise.
4208         * lib/tls.c: Likewise.
4209         * lib/tls.h: Likewise.
4210         * lib/tmpdir.c: Likewise.
4211
4212         * lib/TODO: Remove; this belongs only in coreutils.
4213
4214 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
4215
4216         Add copyright notices to long-enough files that lack them, since
4217         otherwise the files aren't clearly free.  Use the same notice that
4218         getdate.texi already uses.
4219         * doc/alloca-opt.texi: Add copyright notice.
4220         * doc/alloca.texi: Likewise.
4221         * doc/ctime.texi: Likewise.
4222         * doc/functions.texi: Likewise.
4223         * doc/gcd.texi: Likewise.
4224         * doc/gnulib-tool.texi: Likewise.
4225         * doc/inet_ntoa.texi: Likewise.
4226         * doc/visibility.texi: Likewise.
4227
4228         * doc/getdate.texi: Update FDL version from 1.1 to 1.2.
4229         * doc/quote.texi: Add copyright notice.
4230
4231         * doc/solaris-versions: Add SunOS 5.10, SunOS 1.x, SunOS 4.0, SunOS
4232         4.0.x, SunOS 4.1.1.1, SunOS 4.1.1_U1, SunOS 4.1.3B.  SunOS 4.1.3
4233         was Solaris 1.1A.  Remove space before B in Solaris 1.1.1B.
4234         Mention SunOS 5.11.  Mention that everything before SunOS 5.7
4235         is now obsolete, and give a pointer to the Sun list.
4236         Add copyright notice.
4237
4238 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
4239
4240         * config/srclistvars.sh: Add copyright notice.
4241
4242 2006-08-14  Eric Blake  <ebb9@byu.net>
4243
4244         Import the following change from libc:
4245
4246         2006-08-12  Ulrich Drepper  <drepper@redhat.com>
4247
4248         Upstream bug 2997.
4249         * lib/misc/error.c: Add space between program name and message if file
4250         name is missing.
4251
4252 2006-08-12  Karl Berry  <karl@gnu.org>
4253
4254         * config/srclist.txt (ssize_t.m4, sig_atomic_t.m4, signalblocking.m4):
4255         remove, these originate in gnulib now.
4256
4257 2006-08-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4258
4259         * doc/Makefile (standards.info standards.html standards.dvi):
4260         Also depend on make-stds.texi.
4261
4262 2006-08-11  Paul Eggert  <eggert@cs.ucla.edu>
4263
4264         * lib/pipe-safer.c (pipe_safer): Fix misspelling: HAVE_FUNC_PIPE ->
4265         HAVE_PIPE.  Fix a file descriptor leak when fd_safer fails.
4266
4267         * lib/regex_internal.c (re_string_skip_chars): Don't assume WEOF fits
4268         in wchar_t.  Problem reported by Eric Blake.
4269
4270         * lib/snprintf.c (snprintf): memcpy LEN bytes, not SIZE - 1, when
4271         LEN is smaller than SIZE.  Suggested by Bruno Haible.
4272         Also, help the compiler to keep LEN in a register.
4273
4274 2006-08-11  Eric Blake  <ebb9@byu.net>
4275
4276         * users.txt: Sort.  Add tar.
4277
4278 2006-08-11  Bruno Haible  <bruno@clisp.org>
4279
4280         * users.txt: New file.
4281
4282 2006-08-11  Bruno Haible  <bruno@clisp.org>
4283
4284         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Include <stdio.h> and <time.h>
4285         before <wchar.h>. Needed for OSF/1 and BSD/OS.
4286
4287 2006-08-10  Paul Eggert  <eggert@cs.ucla.edu>
4288
4289         * modules/snprintf (Depends-on): Remove minmax.
4290         (Maintainer): Add self and Bruno.
4291
4292 2006-08-10  Paul Eggert  <eggert@cs.ucla.edu>
4293
4294         * lib/.cppi-disable: Add snprintf.h, socket_.h.
4295         * lib/snprintf.c: Include <errno.h> and <limits.h>.
4296         (EOVERFLOW): Define if the system does not.
4297         Do not include "minmax.h"; it wasn't used.
4298         (snprintf): Don't assume size_t promotes to an unsigned type.
4299         Fix bug when generated string was too long for the buffer: the
4300         buffer's contents are supposed to be the initial prefix of the
4301         output.  Don't assume vasnprintf returns EOVERFLOW if the size
4302         exceeds INT_MAX; do the check ourselves.
4303
4304         Import the following changes from libc:
4305
4306         2006-06-02  Jakub Jelinek  <jakub@redhat.com>
4307
4308         * lib/posix/regex_internal.c (re_string_skip_chars): If no character
4309         has been converted at all, set *last_wc to WEOF.  If mbrtowc failed,
4310         set wc to the byte which couldn't be converted.
4311         (re_string_reconstruct): Don't clear valid_raw_len before calling
4312         re_string_skip_chars.  If wc is WEOF after re_string_skip_chars, set
4313         tip_context using re_string_context_at.
4314
4315         2006-05-02  Ulrich Drepper  <drepper@redhat.com>
4316
4317         * lib/posix/regex.h: g++ still cannot handled [restrict].
4318
4319         2006-04-21  Ulrich Drepper  <drepper@redhat.com>
4320
4321         * lib/posix/regex.h: Remove special handling for VMS.
4322
4323 2006-08-10  Jim Meyering  <jim@meyering.net>
4324
4325         * modules/same-inode: New module.
4326         * modules/dev-ino: New module.
4327         * modules/cycle-check: Depend on these modules, rather than simply
4328         including their .h files.
4329         (Makefile.am): Don't list cycle-check.[ch] here, now that they're
4330         required via m4/cycle-check.m4.
4331         * modules/same: Depend on new same-inode module, rather than
4332         including same-inode.h.
4333         * modules/chdir-safer: New file.
4334
4335         * modules/chown (Depends-on): Add stat-macros.
4336
4337 2006-08-10  Jim Meyering  <jim@meyering.net>
4338
4339         * m4/cycle-check.m4: New file.
4340         Require gl_STRUCT_DEV_INO and gl_SAME_INODE.
4341         * m4/dev-ino.m4, m4/same-inode.m4: New files.
4342
4343 2006-08-10  Eric Blake  <ebb9@byu.net>
4344
4345         * modules/verror (Depends-on): Remove bogus gl_VERROR that snuck
4346         in from original proposal.
4347
4348 2006-08-10  Eric Blake  <ebb9@byu.net>
4349         and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4350
4351         * gnulib-tool (func_import): Detect unexpanded macros in gnulib
4352         namespace.
4353
4354 2006-08-10  Bruno Haible  <bruno@clisp.org>
4355
4356         * gnulib-tool (func_create_testdir): Detect unexpanded macros here
4357         as well.
4358
4359 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
4360
4361         Sync from coreutils.
4362
4363         2006-07-19  Mike Frysinger  <vapier@gentoo.org>
4364
4365         * lib/mountlist.c [ME_REMOTE]: Filter out cifs.
4366         Reported by Toralf Förster in <http://bugs.gentoo.org/141012>.
4367
4368 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
4369
4370         * modules/restrict: Remove; no longer needed now that we assume
4371         Autoconf 2.59 or later.
4372         * MODULES.html.sh: Remove 'restrict'.
4373         * modules/argp (Depends-on): Remove 'restrict'.
4374         * modules/base64 (Depends-on): Likewise.
4375         * modules/gc (Depends-on): Likewise.
4376         * modules/getaddrinfo (Depends-on): Likewise.
4377         * modules/glob (Depends-on): Likewise.
4378         * modules/inet_ntop (Depends-on): Likewise.
4379         * modules/inet_pton (Depends-on): Likewise.
4380         * modules/memxor (Depends-on): Likewise.
4381         * modules/regex (Depends-on): Likewise.
4382         * modules/strtok_r (Depends-on): Likewise.
4383         * modules/time_r (Depends-on): Likewise.
4384
4385 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
4386
4387         * m4/argp.m4 (gl_ARGP): Require AC_C_RESTRICT.
4388         * m4/gc.m4 (gl_PREREQ_GC): Likewise.
4389         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
4390         * m4/inet_ntop.m4 (gl_PREREQ_INET_NTOP): Likewise.
4391         * m4/inet_pton.m4 (gl_PREREQ_INET_PTON): Likewise.
4392         * m4/memxor.m4 (gl_MEMXOR): Likewise.
4393         * m4/restrict.m4: Remove; no longer needed.  All remaining uses of
4394         gl_C_RESTRICT replaced by AC_C_RESTRICT.
4395
4396         Merge from coreutils.
4397         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_C_RESTRICT, not
4398         gl_C_RESTRICT, now that we assume Autoconf 2.59 or later.
4399         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
4400         * m4/time_r.m4 (gl_TIME_R): Likewise.
4401
4402 2006-08-09  Karl Berry  <karl@gnu.org>
4403
4404         * config/srclist.txt: no more gettext-tools, per Bruno.
4405
4406 2006-08-08  Eric Blake  <ebb9@byu.net>
4407
4408         * modules/verror: New module.
4409         * MODULES.html.sh: Document it.
4410
4411 2006-08-08  Eric Blake  <ebb9@byu.net>
4412
4413         * lib/verror.h, lib/verror.c: New files.
4414
4415 2006-08-08  Eric Blake  <ebb9@byu.net>
4416
4417         * lib/verror.c (verror_at_line): Work around glibc bug 2997, so that
4418         verror_at_line output complies with GNU Coding Standards even when
4419         file is NULL.
4420
4421 2006-08-07  Bruno Haible  <bruno@clisp.org>
4422
4423         * lib/allocsa.h (sa_alignof) [_AIX]: Also consider 'long long' in newer
4424         versions of AIX.
4425         Reported by Ralf Wildenhues.
4426
4427 2006-08-07  Bruno Haible  <bruno@clisp.org>
4428
4429         * gnulib-tool (func_create_testdir): Wrap the set of autoconf snippets
4430         in an AC_DEFUN. Needed so that the autoconf snippets can use
4431         AC_REQUIRE.
4432
4433 2006-08-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4434
4435         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
4436         Initialize pkgdata_DATA.
4437         * modules/javaversion (Makefile.am): Add to pkgdata_DATA, rather than
4438         overriding it.
4439
4440 2006-08-06  Eric Blake  <ebb9@byu.net>
4441
4442         * lib/error.h: Fold in some upstream changes from glibc.
4443         * lib/error.c: Likewise.
4444
4445 2006-08-04  Bruno Haible  <bruno@clisp.org>
4446
4447         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
4448         Make the mostlyclean-local rule depend on mostlyclean-generic.
4449         Reported by Jim Meyering. Solution suggested by Ralf Wildenhues.
4450
4451 2006-07-31  Bruno Haible  <bruno@clisp.org>
4452
4453         * m4/localcharset.m4 (gl_LOCALCHARSET): Remove tests for <stddef.h>,
4454         <stdlib.h>, <string.h>.
4455
4456 2006-07-30  Bruno Haible  <bruno@clisp.org>
4457
4458         * modules/readlink (License): Change to LGPL.
4459
4460 2006-07-30  Bruno Haible  <bruno@clisp.org>
4461
4462         * modules/javaversion (Makefile.am): Distribute javaversion.java and
4463         javaversion.class. Also install javaversion.class in $(pkgdatadir) and
4464         set PKGDATADIR to point to it.
4465
4466 2006-07-30  Bruno Haible  <bruno@clisp.org>
4467
4468         * modules/csharpexec (configure.ac): Comment out macro invocation.
4469         * modules/javaexec (configure.ac): Likewise.
4470         * modules/javacomp-script (configure.ac): Likewise.
4471
4472         * modules/csharpcomp-script (configure.ac): Use AC_REQUIRE.
4473
4474 2006-07-30  Bruno Haible  <bruno@clisp.org>
4475
4476         * modules/clean-temp (Depends-on): Add linkedhash-list, remove
4477         linked-list.
4478
4479 2006-07-30  Bruno Haible  <bruno@clisp.org>
4480
4481         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Assume <string.h> exists.
4482
4483 2006-07-30  Bruno Haible  <bruno@clisp.org>
4484
4485         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
4486         Initialize MOSTLYCLEANFILES to core and *.stackdump, so that core dumps
4487         get removed.
4488
4489 2006-07-29  Bruno Haible  <bruno@clisp.org>
4490
4491         Make it possible for gnulib-tool to work with locally modified or
4492         augmented gnulib repositories.
4493         * gnulib-tool (func_usage): Document --local-dir option.
4494         (local_gnulib_dir): New variable.
4495         Handle --local-dir option.
4496         (func_lookup_file): New function.
4497         (func_all_modules, func_verify_module): Look also in $local_gnulib_dir.
4498         (func_get_description, func_get_filelist, func_get_description,
4499         func_get_filelist, func_get_dependencies, func_get_autoconf_snippet,
4500         func_get_automake_snippet, func_get_include_directive,
4501         func_get_license, func_get_maintainer): Use func_lookup_file.
4502         (func_import, func_create_testdir): Use func_lookup_file.
4503
4504 2006-07-29  Bruno Haible  <bruno@clisp.org>
4505
4506         * modules/setenv (Depends-on): Add unistd.
4507
4508 2006-07-29  Bruno Haible  <bruno@clisp.org>
4509
4510         * lib/setenv.c: Undo unintended modification done on 2006-02-27.
4511
4512 2006-07-29  Bruno Haible  <bruno@clisp.org>
4513
4514         * lib/localcharset.c: Assume <stddef.h>, <stdlib.h>, <string.h> exist.
4515
4516 2006-07-29  Bruno Haible  <bruno@clisp.org>
4517
4518         * gnulib-tool (import, update): If there is no Makefile.am, look at
4519         aclocal.m4, instead of bailing out.
4520
4521 2006-07-29  Bruno Haible  <bruno@clisp.org>
4522
4523         * gnulib-tool (func_usage): Revert most of the 2006-07-15 change.
4524         Categorize the options by when they are useful.
4525
4526 2006-07-29  Bruno Haible  <bruno@clisp.org>
4527
4528         * gnulib-tool (func_usage): Document option --no-libtool.
4529         Handle option --no-libtool.
4530         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am): Update
4531         for changed semantics of $libtool variable.
4532         (func_import): Likewise. If libtool is not used, show this through
4533         an option --no-libtool.
4534         (func_create_testdir): Update.
4535
4536 2006-07-29  Bruno Haible  <bruno@clisp.org>
4537
4538         * gnulib-tool (func_import): Extend error message about missing
4539         --doc-base.
4540
4541 2006-07-29  Bruno Haible  <bruno@clisp.org>
4542
4543         * gnulib-tool (func_import): Don't create the $docbase directory if
4544         there is no file to store there.
4545
4546 2006-07-29  Bruno Haible  <bruno@clisp.org>
4547
4548         * gnulib-tool (autoconf_minversion): If a --dir option is given and
4549         relevant, look for configure.ac there, not in the current directory.
4550         Also use a simple search for AC_PREREQ, not "autoconf --trace".
4551
4552 2006-07-29  Bruno Haible  <bruno@clisp.org>
4553
4554         * gnulib-tool (SORT): New variable.
4555         (func_usage): Undocument --assume-autoconf option.
4556         Remove --assume-autoconf option handling.
4557         (autoconf_minversion): Determine from the contents of configure.ac.
4558         (func_import): Remove autoconf_minversion handling.
4559         Suggested by Eric Blake.
4560
4561 2006-07-29  Bruno Haible  <bruno@clisp.org>
4562
4563         * doc/gnulib-tool.texi (gl_LIBTOOL): Mention --no-libtool option.
4564
4565 2006-07-29  Bruno Haible  <bruno@clisp.org>
4566
4567         * config/srclist.txt (*setenv.[ch]): Remove rules.
4568
4569 2006-07-28  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
4570
4571         * m4/inet_pton.m4, inet_ntop.m4: Check for netinet/in.h too.
4572
4573 2006-07-28  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
4574
4575         * lib/inet_ntop.h, inet_pton.h: Need to include netinet/in.h before
4576         arpa/inet.h.
4577
4578 2006-07-28  Simon Josefsson  <jas@extundo.com>
4579
4580         * modules/inet_ntop (Depends-on): Depend on arpa_inet.
4581         * modules/inet_pton (Depends-on): Likewise.
4582
4583 2006-07-28  Simon Josefsson  <jas@extundo.com>
4584
4585         * m4/netinet_in_h.m4: New file.
4586
4587 2006-07-28  Simon Josefsson  <jas@extundo.com>
4588
4589         * lib/inet_ntop.h, inet_pton.h: No need to guard netinet/in.h
4590         #include's.
4591
4592 2006-07-28  Simon Josefsson  <jas@extundo.com>
4593
4594         * lib/inet_ntop.h, inet_pton.h: No need to guard arpa/inet.h
4595         #include's.
4596
4597 2006-07-28  Paul Eggert  <eggert@cs.ucla.edu>
4598
4599         * lib/modechange.c (mode_compile): Numeric modes now affect setuid and
4600         setgid on directories only if they set these bits.
4601         * lib/modechange.h: Remove obsolete comment about masks.
4602
4603 2006-07-28  Eric Blake  <ebb9@byu.net>
4604
4605         * lib/regex_internal.h (struct re_dfa_t) [!_LIBC]: Avoid invalid C89
4606         macro expansion.
4607
4608 2006-07-28  Bruno Haible  <bruno@clisp.org>
4609
4610         * lib/inet_ntop.h, inet_pton.h: Use #if HAVE* instead of #ifdef HAVE*.
4611
4612 2006-07-28  Bruno Haible  <bruno@clisp.org>
4613
4614         * m4/mbchar.m4 (gl_MBCHAR): Also test for iswcntrl.
4615
4616 2006-07-28  Bruno Haible  <bruno@clisp.org>
4617
4618         * lib/mbchar.h (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit,
4619         iswgraph, iswlower, iswprint, iswpunct, iswspace, iswupper, iswxdigit):
4620         Define fallbacks.
4621         Avoids link error on FreeBSD 4.x.
4622         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
4623
4624         * lib/wcwidth.h (iswprint): Assume an ASCII compatible wide character
4625         encoding.
4626         * lib/mbswidth.c (iswcntrl): Likewise.
4627
4628 2006-07-27  Bruno Haible  <bruno@clisp.org>
4629
4630         * m4/stdint.m4 (gl_STDINT_H): Define __STDC_CONSTANT_MACROS during the
4631         test.
4632
4633 2006-07-27  Bruno Haible  <bruno@clisp.org>
4634
4635         * lib/stdint_.h (INT*_C, UINT*_C) [C++]: Define these if
4636         __STDC_CONSTANT_MACROS is defined, not if __STDC_LIMIT_MACROS is
4637         defined.
4638
4639 2006-07-26  Eric Blake  <ebb9@byu.net>
4640
4641         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Check for missing pipe.
4642
4643 2006-07-26  Eric Blake  <ebb9@byu.net>
4644
4645         * lib/mkstemp-safer.c [! HAVE_MKSTEMP]: Add prototype for platforms
4646         like mingw that lack mkstemp.
4647         * lib/pipe-safer.c (pipe_safer) [!HAVE_FUNC_PIPE]: Provide fallback to
4648         avoid compilation warning on mingw.
4649
4650 2006-07-26  Bruno Haible  <bruno@clisp.org>
4651
4652         * m4/stdint.m4 (gl_STDINT_H): Also verify the existence of the macros
4653         INT*_MIN, INT_LEAST*_MAX, INT_LEAST*_MIN, UINT_LEAST*_MAX,
4654         INT_FAST*_MIN, INTPTR_MIN.
4655
4656 2006-07-25  Bruno Haible  <bruno@clisp.org>
4657
4658         * modules/version-etc (Depends-on): Add stdarg.
4659
4660 2006-07-25  Bruno Haible  <bruno@clisp.org>
4661
4662         * m4/stdint.m4 (gl_INTEGER_TYPE_SUFFIX): Avoid 'eval' in front of
4663         complex commands.
4664
4665 2006-07-25  Bruno Haible  <bruno@clisp.org>
4666
4667         * lib/version-etc.c (version_etc_va): Use va_copy, assumed to be
4668         defined in <stdarg.h> or config.h.
4669
4670 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
4671
4672         * m4/stdio-safer.m4 (gl_FOPEN_SAFER, gl_TMPFILE_SAFER): New macros.
4673         (gl_STDIO_SAFER): Remove.
4674
4675 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
4676
4677         * MODULES.html.sh (File stream based Input/Output):
4678         Add fopen-safer, tmpfile-safer; remove stdio-safer.
4679         * modules/getusershell (Depends-on): Change stdio-safer to fopen-safer.
4680         * modules/fopen-safer, modules/tmpfile-safer: New files.
4681         * modules/stdio-safer: Remove.
4682
4683 2006-07-24  Bruno Haible  <bruno@clisp.org>
4684
4685         * modules/tmpdir: New file.
4686         * MODULES.html.sh (File system functions): Add it.
4687
4688 2006-07-24  Bruno Haible  <bruno@clisp.org>
4689
4690         * modules/javacomp (Depends-on): Add unistd, javaversion, binary-io,
4691         getline, pathname, fwriteerror, clean-temp, xvasprintf, strstr.
4692
4693 2006-07-24  Bruno Haible  <bruno@clisp.org>
4694
4695         * modules/clean-temp: New file.
4696
4697 2006-07-24  Bruno Haible  <bruno@clisp.org>
4698
4699         * m4/tmpdir.m4: New file, from GNU gettext.
4700
4701 2006-07-24  Bruno Haible  <bruno@clisp.org>
4702
4703         * lib/tmpdir.h: New file, from GNU gettext.
4704         * lib/tmpdir.c: New file, from GNU gettext.
4705
4706 2006-07-24  Bruno Haible  <bruno@clisp.org>
4707
4708         * lib/clean-temp.h: New file, from GNU gettext.
4709         * lib/clean-temp.c: New file, from GNU gettext.
4710
4711 2006-07-23  Eric Blake  <ebb9@byu.net>
4712
4713         * modules/stdio-safer (Files): Add tmpfile-safer.c.
4714         (Depends-on): Add binary-io.
4715
4716 2006-07-23  Eric Blake  <ebb9@byu.net>
4717
4718         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Add tmpfile-safer.c.
4719
4720 2006-07-23  Eric Blake  <ebb9@byu.net>
4721
4722         * lib/tmpfile-safer.c: New file.
4723         * lib/stdio-safer.h (fopen_safer): Add prototype.
4724         * lib/stdio--.h (tmpfile): Make safer.
4725
4726 2006-07-23  Bruno Haible  <bruno@clisp.org>
4727
4728         * lib/gl_anylinked_list2.h (ASYNCSAFE): New macro.
4729         (gl_linked_add_first, gl_linked_add_last, gl_linked_add_before,
4730         gl_linked_add_after, gl_linked_add_at, gl_linked_remove_node,
4731         gl_linked_remove_at): Use it.
4732
4733 2006-07-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
4734         and Simon Josefsson <jas@extundo.com>
4735
4736         * lib/getaddrinfo.h (AI_PASSIVE): Make sure it is defined.
4737
4738         * lib/getaddrinfo.c (getaddrinfo): Support AI_PASSIVE.
4739
4740 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
4741
4742         * modules/close-stream: New file.
4743         * modules/closeout (Description): Make it clear that it exits
4744         with a diagnostic on error.
4745         (Depends-on): Add close-stream.  Remove fpending, stdbool.
4746         * MODULES.html.sh (File stream based Input/Output): Add close-stream.
4747
4748 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
4749
4750         * m4/close-stream.m4: New file.
4751
4752 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
4753
4754         * lib/close-stream.c, lib/close-stream.h: New files.
4755
4756 2006-07-22  Bruno Haible  <bruno@clisp.org>
4757
4758         Merge from GNU gettext 0.15.
4759
4760         2006-05-01  Bruno Haible  <bruno@clisp.org>
4761
4762                 * build-aux/javacomp.sh.in: Update for changed javacomp.m4.
4763
4764         2006-07-22  Bruno Haible  <bruno@clisp.org>
4765
4766                 * modules/javaversion: New file.
4767                 * MODULES.html.sh (Java): Add javaversion.
4768
4769         2006-03-12  Bruno Haible  <bruno@clisp.org>
4770
4771                 * build-aux/javaexec.sh.in: Update for changed javaexec.m4.
4772
4773         2005-12-04  Bruno Haible  <bruno@clisp.org>
4774
4775                 * build-aux/csharpexec.sh.in: Add support for 'clix' launcher
4776                 (untested).
4777
4778         2006-06-21  Bruno Haible  <bruno@clisp.org>
4779
4780                 Avoid warnings from recent versions of mcs.
4781                 * build-aux/csharpcomp.sh.in (options_mcs): Don't use options
4782                 -o, -L, -r any more. Use options documented since mcs-1.0
4783                 instead. Similarly for -g.
4784
4785         2005-12-04  Bruno Haible  <bruno@clisp.org>
4786
4787                 * build-aux/csharpcomp.sh.in: Suffix for resources is
4788                 .resources, not .resource.
4789
4790         2005-07-09  Bruno Haible  <bruno@clisp.org>
4791
4792                 * build-aux/csharpcomp.sh.in (options_csc): For -l option,
4793                 add a .dll suffix.
4794                 Reported by Mark Junker <mjscod@gmx.de>.
4795
4796         2006-07-22  Bruno Haible  <bruno@clisp.org>
4797
4798                 * modules/gettext: Upgrade to gettext-0.15.
4799                 (Files): Remove m4/isc-posix.m4. Add m4/lock.m4,
4800                 m4/visibility.m4.
4801                 Replace m4/inttypes.m4 with m4/inttypes-h.m4.
4802
4803 2006-07-22  Bruno Haible  <bruno@clisp.org>
4804
4805         Merge from GNU gettext 0.15.
4806
4807         2006-03-25  Bruno Haible  <bruno@clisp.org>
4808
4809                 * lib-link.m4 (AC_LIB_LINKFLAGS_FROM_LIBS): New macro.
4810
4811         2006-07-21  Bruno Haible  <bruno@clisp.org>
4812
4813                 * javacomp.m4 (gt_JAVACOMP): Convert target_version "null" to
4814                 "1.1".
4815
4816         2006-05-09  Bruno Haible  <bruno@clisp.org>
4817
4818                 * javacomp.m4 (gt_JAVACOMP): On Cygwin, set
4819                 CLASSPATH_SEPARATOR to a semicolon. Use CLASSPATH_SEPARATOR
4820                 for the conftestver execution.
4821
4822         2006-05-01  Bruno Haible  <bruno@clisp.org>
4823
4824                 * javacomp.m4 (gt_JAVACOMP): Accept a source-version and an
4825                 optional target-version argument. Verify that the compiler
4826                 groks source of the specified source-version, or add -source
4827                 option as necessary. Verify that the compiler produces
4828                 bytecode in the specified target-version, or add -target and
4829                 -source options as necessary. Make the result of the test
4830                 available as variable CONF_JAVAC. Also log error output in
4831                 config.log.
4832
4833         2006-03-11  Bruno Haible  <bruno@clisp.org>
4834
4835                 * javacomp.m4 (gt_JAVACOMP): Treat gcj-4.x like gcj-3.x.
4836
4837         2006-05-09  Bruno Haible  <bruno@clisp.org>
4838
4839                 * javaexec.m4 (gt_JAVAEXEC): On Cygwin, set
4840                 CLASSPATH_SEPARATOR to a semicolon.
4841
4842         2006-03-12  Bruno Haible  <bruno@clisp.org>
4843
4844                 * javaexec.m4 (gt_JAVAEXEC): Make the result of the test
4845                 available as variable CONF_JAVA, for subsequent autoconf
4846                 tests. Also log error output in config.log.
4847
4848         2006-07-19  Bruno Haible  <bruno@clisp.org>
4849
4850                 * getline.m4 (AM_FUNC_GETLINE): When cross-compiling, assume
4851                 that getline works on glibc2 systems. Needed to avoid trouble
4852                 in relocatable.c.
4853                 Reported by Nils Magnus Larsgard <nmlarsgaard@atmel.no>.
4854
4855         2005-12-04  Bruno Haible  <bruno@clisp.org>
4856
4857                 * csharpexec.m4 (gt_CSHARPEXEC): Add support for 'clix'
4858                 launcher (untested).
4859
4860         2005-12-04  Bruno Haible  <bruno@clisp.org>
4861
4862                 * csharpcomp.m4 (gt_CSHARPCOMP): Also set CSHARPCOMPFLAGS.
4863
4864         2006-07-22  Bruno Haible  <bruno@clisp.org>
4865
4866                 * gettext.m4: Update from GNU gettext-0.15.
4867                 * nls.m4: Likewise.
4868                 * po.m4: Likewise.
4869                 * inttypes-pri.m4: Likewise.
4870                 * inttypes-h.m4: Renamed from inttypes.m4.
4871                 (gl_HEADER_INTTYPES_H): Renamed from gt_HEADER_INTTYPES_H.
4872
4873 2006-07-22  Bruno Haible  <bruno@clisp.org>
4874
4875         Merge from GNU gettext 0.15.
4876
4877         2005-07-05  Bruno Haible  <bruno@clisp.org>
4878
4879                 * printf-args.c (printf_fetchargs): Work around broken
4880                 definition of wint_t on mingw.
4881
4882         2005-02-12  Bruno Haible  <bruno@clisp.org>
4883
4884                 * xallocsa.h: Add extern "C" for C++.
4885
4886         2006-05-17  Bruno Haible  <bruno@clisp.org>
4887
4888                 Cygwin portability.
4889                 * progreloc.c (WIN32_NATIVE): Renamed from WIN32.
4890
4891         2006-04-30  Bruno Haible  <bruno@clisp.org>
4892
4893                 * progreloc.c: Include <mach-o/dyld.h> if available.
4894                 (find_executable): Use _NSGetExecutablePath when possible.
4895
4896         2006-05-06  Charles Wilson  <cygwin@cwilson.fastmail.fm>
4897
4898                 * progreloc.c (maybe_executable) [CYGWIN]: Use the access()
4899                 function.
4900
4901         2005-12-29  Bruno Haible  <bruno@clisp.org>
4902
4903                 * progreloc.c (set_program_name_and_installdir): Fix
4904                 compilation error.
4905
4906         2005-12-04  Bruno Haible  <bruno@clisp.org>
4907
4908                 Cygwin portability.
4909                 * progreloc.c: Include <windows.h> also on Cygwin.
4910                 (find_executable): Add support for Cygwin.
4911                 (set_program_name_and_installdir): Handle also platforms with
4912                 nonempty EXEEXT.
4913
4914         2006-07-11  Bruno Haible  <bruno@clisp.org>
4915
4916                 * javacomp.c: Fix a comment.
4917                 Reported by Jim Meyering.
4918
4919         2006-04-30  Bruno Haible  <bruno@clisp.org>
4920
4921                 * javacomp.h (compile_java_class): Add source_version,
4922                 target_version arguments.
4923                 * javacomp.c: Rewritten to choose only a compiler that
4924                 respects the specified source_version and target_version.
4925
4926         2006-06-27  Bruno Haible  <bruno@clisp.org>
4927
4928                 Assume correct S_ISDIR macro.
4929                 * mkdtemp.c: Remove test of STAT_MACROS_BROKEN.
4930
4931         2006-07-22  Bruno Haible  <bruno@clisp.org>
4932
4933                 * javaversion.h: New file, from GNU gettext.
4934                 * javaversion.c: New file, from GNU gettext.
4935                 * javaversion.java: New file, from GNU gettext.
4936                 * javaversion.class: New file, from GNU gettext.
4937
4938         2006-05-17  Bruno Haible  <bruno@clisp.org>
4939
4940                 Cygwin portability.
4941                 * javaexec.c (execute_java_class): Test for jview program
4942                 also on Cygwin.
4943
4944         2006-04-09  Bruno Haible  <bruno@clisp.org>
4945
4946                 * fatal-signal.c: Don't include string.h.
4947                 (at_fatal_signal): Use a copying loop instead of memcpy.
4948
4949         2005-12-04  Bruno Haible  <bruno@clisp.org>
4950
4951                 * csharpexec.c: Add support for 'clix' launcher (untested).
4952                 (execute_csharp_using_sscli): New function.
4953                 (execute_csharp_program): Call it.
4954
4955         2006-06-21  Bruno Haible  <bruno@clisp.org>
4956
4957                 Avoid warnings from recent versions of mcs.
4958                 * csharpcomp.c (compile_csharp_using_mono): Don't use options
4959                 -o, -L, -r any more. Use options documented since mcs-1.0
4960                 instead. Similarly for -g.
4961
4962         2005-07-09  Bruno Haible  <bruno@clisp.org>
4963
4964                 * csharpcomp.c (compile_csharp_using_sscli): For -l option,
4965                 add a .dll suffix.
4966                 Reported by Mark Junker <mjscod@gmx.de>.
4967
4968         2006-06-17  Bruno Haible  <bruno@clisp.org>
4969
4970                 * config.charset: Update for NetBSD 3.0.
4971
4972         2006-05-17  Bruno Haible  <bruno@clisp.org>
4973
4974                 Cygwin portability.
4975                 * localcharset.c (WIN32_NATIVE): Renamed from WIN32.
4976
4977         2006-05-16  Bruno Haible  <bruno@clisp.org>
4978
4979                 * localcharset.c [CYGWIN]: Include <windows.h>.
4980                 (get_charset_aliases): For Cygwin, return the same CPxxx
4981                 aliases list as under WIN32.
4982                 (locale_charset) [CYGWIN]: Try to retrieve the encoding from
4983                 the environment variables. Fall back to GetACP().
4984
4985         2006-04-05  Bruno Haible  <bruno@clisp.org>
4986
4987                 * config.charset: Update Juan Manuel Guerrero's address.
4988
4989         2005-02-12  Bruno Haible  <bruno@clisp.org>
4990
4991                 * allocsa.h: Add extern "C" for C++.
4992
4993         2005-02-10  Bruno Haible  <bruno@clisp.org>
4994
4995                 * allocsa.h (sa_alignof): Define differently with AIX xlc, to
4996                 avoid a bug of this compiler on AIX 3.2.5 dealing with enums.
4997
4998         2006-07-22  Bruno Haible  <bruno@clisp.org>
4999
5000                 * gettext.h: Update to GNU gettext-0.15.
5001
5002 2006-07-22  Bruno Haible  <bruno@clisp.org>
5003
5004         * config/srclist.txt: Resync printf-args.c, vasnprintf.c,
5005         localcharset.c, mkdtemp.c, config.rpath, lib-ld.m4, lib-link.m4,
5006         lib-prefix.m4, longdouble.m4, ssize_t.m4.
5007
5008 2006-07-21  Eric Blake  <ebb9@byu.net>
5009
5010         * modules/stdlib-safer: New file.
5011         * MODULES.html.sh (File stream based Input/Output): Add
5012         stdlib-safer.
5013
5014 2006-07-21  Eric Blake  <ebb9@byu.net>
5015
5016         * lib/stdlib-safer.h: New file from coreutils, required by
5017         stdlib--.h.
5018
5019 2006-07-20  Paul Eggert  <eggert@cs.ucla.edu>
5020
5021         * gnulib-tool (func_usage): Document --assume-autoconf='latest-stable'.
5022
5023 2006-07-20  Bruno Haible  <bruno@clisp.org>
5024
5025         * gnulib-tool: Recognize new option --assume-autoconf.
5026         (autoconf_minversion): New variable.
5027         (func_get_filelist): Use it to decide whether to add onceonly_2_57.m4.
5028
5029 2006-07-20  Bruno Haible  <bruno@clisp.org>
5030
5031         * MODULES.html.sh (func_all_modules): Add a missing func_begin_table.
5032
5033 2006-07-19  Derek R. Price  <derek@ximbiot.com>
5034
5035         * lib/getaddrinfo.h: Don't define unimplemented AI_* flags.
5036         Reindent and repaginate.
5037
5038 2006-07-19  Derek Price  <derek@ximbiot.com>
5039
5040         * doc/gnulib.texi (Libtool and Windows):  Eliminate passive voice.
5041         Correct grammar.
5042
5043 2006-07-17  Bruno Haible  <bruno@clisp.org>
5044
5045         * modules/list: New file.
5046         * modules/array-list: New file.
5047         * modules/carray-list, modules/carray-list-tests: New files.
5048         * modules/linked-list, modules/linked-list-tests: New files.
5049         * modules/avltree-list, modules/avltree-list-tests: New files.
5050         * modules/rbtree-list, modules/rbtree-list-tests: New files.
5051         * modules/linkedhash-list, modules/linkedhash-list-tests: New files.
5052         * modules/avltreehash-list, modules/avltreehash-list-tests: New files.
5053         * modules/rbtreehash-list, modules/rbtreehash-list-tests: New files.
5054         * modules/oset: New file.
5055         * modules/array-oset: New file.
5056         * modules/avltree-oset, modules/avltree-oset-tests: New files.
5057         * modules/rbtree-oset, modules/rbtree-oset-tests: New files.
5058         * tests/test-carray_list.c: New file.
5059         * tests/test-linked_list.c: New file.
5060         * tests/test-avltree_list.c: New file.
5061         * tests/test-rbtree_list.c: New file.
5062         * tests/test-linkedhash_list.c: New file.
5063         * tests/test-avltreehash_list.c: New file.
5064         * tests/test-rbtreehash_list.c: New file.
5065         * tests/test-avltree_oset.c: New file.
5066         * tests/test-rbtree_oset.c: New file.
5067         * MODULES.html.sh (Container data structures): New section.
5068
5069 2006-07-17  Bruno Haible  <bruno@clisp.org>
5070
5071         * m4/gl_list.m4: New file.
5072
5073 2006-07-17  Bruno Haible  <bruno@clisp.org>
5074
5075         * lib/gl_list.h: New file.
5076         * lib/gl_list.c: New file.
5077         * lib/gl_array_list.h: New file.
5078         * lib/gl_array_list.c: New file.
5079         * lib/gl_carray_list.h: New file.
5080         * lib/gl_carray_list.c: New file.
5081         * lib/gl_linked_list.h: New file.
5082         * lib/gl_linked_list.c: New file.
5083         * lib/gl_anylinked_list1.h: New file.
5084         * lib/gl_anylinked_list2.h: New file.
5085         * lib/gl_avltree_list.h: New file.
5086         * lib/gl_avltree_list.c: New file.
5087         * lib/gl_anyavltree_list1.h: New file.
5088         * lib/gl_anyavltree_list2.h: New file.
5089         * lib/gl_rbtree_list.h: New file.
5090         * lib/gl_rbtree_list.c: New file.
5091         * lib/gl_anyrbtree_list1.h: New file.
5092         * lib/gl_anyrbtree_list2.h: New file.
5093         * lib/gl_anytree_list1.h: New file.
5094         * lib/gl_anytree_list2.h: New file.
5095         * lib/gl_linkedhash_list.h: New file.
5096         * lib/gl_linkedhash_list.c: New file.
5097         * lib/gl_anyhash_list1.h: New file.
5098         * lib/gl_anyhash_list2.h: New file.
5099         * lib/gl_avltreehash_list.h: New file.
5100         * lib/gl_avltreehash_list.c: New file.
5101         * lib/gl_rbtreehash_list.h: New file.
5102         * lib/gl_rbtreehash_list.c: New file.
5103         * lib/gl_anytreehash_list1.h: New file.
5104         * lib/gl_anytreehash_list2.h: New file.
5105
5106         * lib/gl_oset.h: New file.
5107         * lib/gl_oset.c: New file.
5108         * lib/gl_array_oset.h: New file.
5109         * lib/gl_array_oset.c: New file.
5110         * lib/gl_avltree_oset.h: New file.
5111         * lib/gl_avltree_oset.c: New file.
5112         * lib/gl_rbtree_oset.h: New file.
5113         * lib/gl_rbtree_oset.c: New file.
5114         * lib/gl_anytree_oset.h: New file.
5115
5116 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
5117
5118         * m4/mkancesdirs.m4: New file.
5119         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Mention dirchownmod.c,
5120         dirchownmod.h.  Don't require AC_FUNC_ALLOCA, gl_AFS, gl_CHDIR_SAFER;
5121         no longer needed.  Require gl_FUNC_LCHOWN, since dirchownmod.c needs
5122         it.
5123
5124 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
5125
5126         * lib/dirchownmod.c, lib/dirchownmod.h, lib/mkancesdirs.c:
5127         * lib/mkancesdirs.h: New files.
5128         * lib/mkdir-p.c: Don't include alloca.h, stdio.h, sys/types.h,
5129         unistd.h, string.h, chdir-safer.h, dirname.h, lchmod.h, lchown.h,
5130         save-cwd.h.  Instead, include dirchownmod.h and mkancesdirs.h.
5131         (make_dir_parents): New args MAKE_ANCESTOR, OPTIONS, ANNOUNCE,
5132         MODE_BITS.  Remove options VERBOSE_FMT_STRING, CWD_ERRNO.  All
5133         callers changed.  Revamp internals significantly, by not
5134         attempting to create directories that are temporarily more
5135         permissive than the final results.  Do not attempt to use
5136         save_cwd/restore_cwd; it isn't worth it for mkdir and install.
5137         This removes some race conditions, fixes some bugs, and simplifies
5138         things.  Use new dirchownmod function to do owner and mode changes.
5139         * lib/mkdir-p.h: Likewise.
5140         * lib/modechange.c (octal_to_mode): New function.
5141         (struct mode_change): New member mentioned.
5142         (make_node_op_equals): New arg mentioned.  All callers changed.
5143         (mode_compile): Keep track of which mode bits the user has explicitly
5144         mentioned.
5145         (mode_adjust): New arg DIR, so that we implement the X op correctly.
5146         New arg PMODE_BITS, to keep track of which mode bits the user
5147         mentioned; it treats S_ISUID and S_ISGID speciall.
5148         All callers changed.
5149         * lib/modechange.h: Likewise.
5150
5151 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
5152
5153         * MODULES.html.sh: Add mkancestors.
5154         * modules/mkancesdirs: New module.
5155         * modules/mkdir-p (Files): Remove lib/chdir-safer.c, lib/chdir-safer.h,
5156         lib/same-inode.h, m4/afs.m4, m4/chdir-safer.m4.
5157         The chdir-safer and afs files are now orphans; I'll remove them
5158         unless someone speaks up.
5159         Add lib/dirchownmod.c, lib/dirchownmod.h.
5160         (Depends-on): Remove alloca, chown, save-cwd, dirname.
5161         Add lchown, mkancesdirs.
5162         (Maintainer): Add self.
5163
5164 2006-07-15  Karl Berry  <karl@gnu.org>
5165
5166         * gnulib-tool: help message wording/arrangement.
5167
5168 2006-07-14  Simon Josefsson  <jas@extundo.com>
5169
5170         * doc/gnulib.texi (Libtool and Windows): New section.
5171
5172 2006-07-12  Simon Josefsson  <jas@extundo.com>
5173
5174         * modules/gendocs (License): Fix license, approved by Karl.
5175
5176 2006-07-12  Eric Blake  <ebb9@byu.net>
5177
5178         * MODULES.html.sh: Add gendocs.
5179
5180 2006-07-11  Eric Blake  <ebb9@byu.net>
5181
5182         * modules/fdl: New module, to install doc/fdl.texi.
5183         * MODULES.html.sh: Add new section for documentation modules.
5184         * gnulib-tool: Avoid space-tab.
5185         (--doc-base): New option, to manage files from doc.
5186
5187 2006-07-11  Eric Blake  <ebb9@byu.net>
5188
5189         * m4/absolute-header.m4: Fix comments to match recent change.
5190
5191 2006-07-11  Eric Blake  <ebb9@byu.net>
5192
5193         * gnulib-tool: List --doc-base before --tests-base.
5194
5195 2006-07-11  Derek R. Price  <derek@ximbiot.com>
5196
5197         * lib/glob.c: s/NAMLEN/_D_EXACT_NAMLEN/.
5198
5199 2006-07-11  Bruno Haible  <bruno@clisp.org>
5200
5201         * README: Mention where to put documentation.
5202
5203 2006-07-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5204
5205         * doc/functions.texi, gnulib-tool.texi, gnulib.texi: Fix some typos.
5206
5207 2006-07-10  Paul Eggert  <eggert@cs.ucla.edu>
5208
5209         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Like today's change
5210         to stdint.m4.
5211
5212 2006-07-10  Paul Eggert  <eggert@cs.ucla.edu>
5213
5214         * m4/stdint.m4 (gl_STDINT_H): Like yesterday's change to
5215         absolute-header.m4.  Also, set ABSOLUTE_STDINT_H to a string
5216         "no/such/file/stdint.h" when there is no such file, so that
5217         the resulting C code can be parsed by dodgy compilers.
5218         Problems reported by Bob Proulx.
5219
5220 2006-07-10  Derek R. Price  <derek@ximbiot.com>
5221
5222         * lib/backupfile.c, dirfd.h, fts.c, getcwd.c, glob.c, glob_.h:
5223         Ignore the obsolescent !HAVE_DIRENT_H case.  Consolidate NAMLEN
5224         macros into the GNU _D_EXACT_NAMLEN.
5225         * lib/savedir.c:  Likewise.
5226         (savedirstream): Use _D_EXACT_NAMLEN in preference to strlen.
5227
5228 2006-07-10  Derek R. Price  <derek@ximbiot.com>
5229         and Paul Eggert  <eggert@cs.ucla.edu>
5230
5231         * m4/backupfile.m4, d-ino.m4, d-type.m4, dirfd.m4, fts.m4, getcwd.m4:
5232         * m4/savedir.m4:
5233         Ignore the obsolescent !HAVE_DIRENT_H case.  Consolidate NAMLEN
5234         macros into the GNU _D_EXACT_NAMLEN.
5235
5236 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
5237
5238         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Use "" rather than <>
5239         around the absolute name, to work around a problem with the HP-UX
5240         11.23 native C compiler, reported by Bob Proulx.
5241
5242 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
5243
5244         * doc/maintain.texi, make-stds.texi: Sync from
5245         <http://savannah.gnu.org/projects/gnustandards>.
5246
5247 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
5248
5249         * build-aux/depcomp, build-aux/install-sh: Sync from Automake.
5250
5251 2006-07-09  Jim Meyering  <jim@meyering.net>
5252
5253         * m4/glob.m4: Remove a doubled word in a comment.
5254
5255 2006-07-09  Jim Meyering  <jim@meyering.net>
5256
5257         * lib/argp-pv.c: Remove a doubled word in a comment.
5258         * lib/check-version.c (check_version): Likewise.
5259         * lib/javacomp.c (compile_java_class): Likewise.
5260
5261 2006-07-08  Paul Eggert  <eggert@cs.ucla.edu>
5262
5263         * gnulib-tool (func_get_filelist): Don't echo m4/onceonly_2_57.m4,
5264         for the benefit of people using Autoconf 2.60.  If you want to
5265         support older Autoconf versions you can copy m4/onceonly_2_57.m4
5266         (or m4/onceonly.m4, if pre-2.57) manually.
5267
5268 2006-07-08  Jim Meyering  <jim@meyering.net>
5269
5270         * m4/link-follow.m4: Remove one of two adjacent "whether"s in a
5271         comment.
5272         * m4/getopt.m4: Remove one of two adjacent "your"s in a comment.
5273         * m4/regex.m4 (gl_REGEX): Remove one of two adjacent "the"s in a
5274         comment.
5275
5276 2006-07-08  Jim Meyering  <jim@meyering.net>
5277
5278         * lib/getndelim2.h (getndelim2): Remove doubled "after" in comment.
5279
5280 2006-07-07  Simon Josefsson  <jas@extundo.com>
5281
5282         * tests/test-crc.c: Change expected crc value, the test vector
5283         were probably computed using the old broken crc.c?
5284
5285 2006-07-06  Simon Josefsson  <jas@extundo.com>
5286
5287         * modules/sys_socket (Files): Add m4/sockpfaf.m4 (this module is
5288         now the canonical place for the M4 file).
5289
5290         * modules/getaddrinfo (Files): Remove m4/sockpfaf.m4, we get it
5291         from the sys_socket dependency now.
5292
5293         * modules/inet_pton (Files): Ditto.
5294
5295         * modules/inet_ntop (Files): Ditto.
5296
5297 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
5298
5299         * modules/getusershell (configure.ac): Use gl_FUNC_GETUSERSHELL,
5300         not gl_PREREQ_GETUSERSHELL.
5301
5302 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5303
5304         * m4/_inttypes_h.m4 (gl_INTTYPES_H): Use AC_CHECK_DECLS_ONCE
5305         with only one argument, for Autoconf 2.60.
5306         * m4/fileblocks.m4 (gl_PREREQ_FILEBLOCKS): AC_CHECK_DECLS_ONCE may
5307         expand to nothing, so add a shell command to avoid syntax error.
5308         * m4/getpass.m4 (gl_PREREQ_GETPASS): Likewise.
5309
5310 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5311
5312         * lib/strtod.c (strtod): cast the argument of tolower to unsigned char.
5313
5314 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
5315
5316         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Don't check for getenv decl;
5317         no longer needed.  Check for isblank decl.
5318         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Don't check for getenv decl.
5319         * m4/regex.m4 (gl_PREREQ_REGEX): Dheck for isblank decl instead
5320         of existence.
5321
5322 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
5323
5324         * lib/getloadavg.c: Use __VMS, not VMS.
5325         * lib/getopt.c: Likewise.
5326         * lib/getpagesize.h: Likewise.
5327         * lib/glob.c: Remove most VMS cruft; it hasn't been tested for a while
5328         and probably does not work.
5329
5330 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
5331
5332         * lib/.cppi-disable: Add wcwidth.
5333         * lib/fnmatch.c (ISBLANK): Remove.  All uses changed to isblank.
5334         (isblank) [! (defined isblank || HAVE_DECL_ISBLANK)]: New macro.
5335         (ISGRAPH): Remove.  All uses changed to isgraph.
5336         (FOLD) [!defined _LIBC]: Remove special case.
5337         * lib/getdate.y (lookup_word): Remove no-longer-needed call to islower.
5338         * lib/regex_internal.h (isblank): Depend on HAVE_DECL_ISBLANK, not
5339         HAVE_ISBLANK.
5340         * lib/strftime.c (TOLOWER, TOUPPER) [!defined _LIBC]: Remove special
5341         case.
5342
5343 2006-07-06  Jim Hyslop  <jhyslop@dreampossible.ca>  (tiny change)
5344
5345         * lib/getaddrinfo.c: Changes to compile under MSVC6: changed
5346         '#if WIN32_NATIVE' to '#ifdef' & moved WSAAPI macro inside
5347         brackets.  Other minor changes to suppress some compiler
5348         warnings.
5349
5350 2006-07-06  Derek R. Price  <derek@ximbiot.com>
5351         and Paul Eggert  <eggert@cs.ucla.edu>
5352
5353         * m4/backupfile.m4 (gl_BACKUPFILE): Check for dirent.h, instead
5354         of invoking obsolescent AC_HEADER_DIRENT macro.
5355         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Likewise.
5356         * m4/d-type.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Likewise.
5357         * m4/dirfd.m4 (gl_FUNC_DIRFD): Likewise.
5358         * m4/fts.m4 (gl_FUNC_FTS_CORE): Likewise.
5359         * m4/getcwd.m4 (gl_PREREQ_GETCWD): Likewise.
5360         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
5361         * m4/savedir.m4 (gl_SAVEDIR): Likewise.
5362         * m4/readdir.m4: Remove; no longer needed.
5363
5364 2006-07-06  Derek R. Price  <derek@ximbiot.com>
5365         and Paul Eggert  <eggert@cs.ucla.edu>
5366
5367         * lib/backupfile.c [HAVE_DIRENT_H && ! HAVE_NDIR_H]:
5368         Don't worry about this obsolete case any more.
5369         (HAVE_DIR): Remove.  All uses removed; we now assume you can read
5370         directories.
5371         * lib/dirfd.h [HAVE_DIRENT_H && ! HAVE_NDIR_H]: Don't
5372         worry about this obsolete case any more.
5373         * lib/fts.c: Likewise.
5374         * lib/getcwd.c: Likewise.
5375         * lib/glob.h: Likewise.
5376         * lib/savedir.c: Likewise.
5377
5378 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
5379
5380         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Use AC_CHECK_DECLS_ONCE
5381         rather than AC_CHECK_DECLS for strtoimax and strtoumax.
5382         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Remove; no longer
5383         needed.
5384         All uses removed.
5385         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
5386         * m4/strtoul.m4 (gl_PREREQ_STRTOUL): Likewise.
5387         * m4/exclude.m4 (gl_EXCLUDE): Don't check for isascii; no longer
5388         needed.
5389         * m4/getdate.m4 (gl_GETDATE): Likewise.
5390         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Likewise.
5391         * m4/memcasecmp.m4 (gl_MEMCASECMP): Likewise.
5392         * m4/strtod.m4 (gl_FUNC_STRTOD): Likewise.
5393         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
5394         * m4/strtoul.m4 (gl_PREREQ_STRTOUL): Likewise.
5395         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
5396         * m4/exclude.m4 (gl_EXCLUDE): Don't require AC_C_INLINE; no longer
5397         needed.
5398
5399 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
5400
5401         * lib/memcasecmp.c: Include <limits.h>.
5402         (memcasecmp): Don't assume UCHAR_MAX <= INT_MAX.
5403         * lib/strtod.c (strtod): Don't assume isspace works on negative chars.
5404         Don't assume isdigit succeeds only on '0' through '9'.
5405
5406 2006-07-05  Eric Blake  <ebb9@byu.net>
5407
5408         * modules/getaddrinfo (Depends-on): Add snprintf.
5409
5410 2006-07-05  Eric Blake  <ebb9@byu.net>
5411
5412         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Use gl_HEADER_SYS_SOCKET
5413         to avoid 'header present but could not be compiled' on cygwin.
5414
5415 2006-07-05  Eric Blake  <ebb9@byu.net>
5416
5417         * lib/getaddrinfo.h (NI_NUMERICHOST, NI_NUMERICSERV): Define if
5418         missing from netdb.h.
5419         * lib/getaddrinfo.c (includes): Include inet_ntop and snprintf.
5420
5421 2006-07-05  Derek R. Price  <derek@ximbiot.com>
5422
5423         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Don't require AC_HEADER_STDC;
5424         no longer needed.
5425         * m4/exclude.m4 (gl_EXCLUDE): Likewise.
5426         * m4/getdate.m4 (gl_GETDATE): Likewise.
5427         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Likewise.
5428         * m4/memcasecmp.m4 (gl_MEMCASECMP): Likewise.
5429         * m4/strtod.m4 (gl_FUNC_STRTOD): Likewise.
5430         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
5431         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
5432
5433 2006-07-05  Derek R. Price  <derek@ximbiot.com>
5434
5435         * lib/exclude.c (IN_CTYPE_DOMAIN, is_space): Remove; no longer needed.
5436         All uses of is_space replaced by isspace.
5437         * lib/exit.h: Don't talk about STDC_HEADERS.
5438         * lib/fnmatch.c (ISASCII): Remove; no longer needed.  All uses removed.
5439         (ISPRINT, ISDIGIT, ISALNUM, ISALPHA, ISCNTRL, ISLOWER, ISPUNCT):
5440         (ISSPACE, ISUPPER, ISXDIGIT): Remove; no longer needed.  All uses
5441         replaced by isprint etc.
5442         * lib/getdate.y (IN_CTYPE_DOMAIN, ISSPACE, ISALPHA, ISLOWER): Likewise.
5443         * lib/getusershell.c (IN_CTYPE_DOMAIN, ISSPACE): Likewise.
5444         * lib/memcasecmp.c (IN_CTYPE_DOMAIN, ISLOWER, TOUPPER): Likewise.
5445         * lib/strtod.c (IN_CTYPE_DOMAIN, ISSPACE, ISDIGIT, TOLOWER): Likewise.
5446         * lib/strtol.c (IN_CTYPE_DOMAIN): Likewise.
5447         * lib/xstrtol.c (IN_CTYPE_DOMAIN, ISSPACE): Likewise.
5448
5449 2006-07-05  Bruno Haible  <bruno@clisp.org>
5450
5451         * m4/strndup.m4 (gl_FUNC_STRNDUP): When cross-compiling, check whether
5452         the function exists, before testing against AIX.
5453         Reported by Martin Lambers <marlam@marlam.de>.
5454
5455 2006-07-04  Paul Eggert  <eggert@cs.ucla.edu>
5456
5457         * modules/cycle-check (lib_SOURCES): Add same-inode.h.
5458         From Mark D. Baushke.
5459
5460 2006-07-04  Paul Eggert  <eggert@cs.ucla.edu>
5461
5462         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Prepend three slashes
5463         to the absolute name, not just one, to bypass Sun C 5.8's
5464         "warning: #include of /usr/include/... may be non-portable".
5465
5466 2006-07-04  Eric Blake  <ebb9@byu.net>
5467
5468         * modules/dirname-tests: New test module.
5469         * tests/test-dirname.c: New file, replacing dirname.c
5470         TEST_DIRNAME section that was recently deleted.
5471
5472 2006-07-04  Bruno Haible  <bruno@clisp.org>
5473
5474         Assume ANSI C header files and <ctype.h> functions.
5475         * lib/mbswidth.c (IN_CTYPE_DOMAIN, ISPRINT, ISCNTRL): Remove macros.
5476         (mbsnwidth): Use isprint, iscntrl instead.
5477
5478 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
5479
5480         Merge from coreutils.
5481         * MODULES.html.sh: Add xstrtold.
5482         * modules/xstrtold: New file.
5483         * modules/cycle-check (Files): Add lib/same-inode.h.
5484         * modules/dirname (Files): Add m4/double-slash-root.m4.
5485         * modules/getcwd (Files): Add m4/getcwd-abort-bug.m4.
5486         * modules/mkdir-p (Files): Add lib/same-inode.h.
5487         * modules/same (Files): Add lib/same-inode.h.
5488
5489 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
5490
5491         * m4/absolute-header.m4: Renamed from full-header-path.m4.
5492         This is to keep the terminology clean; POSIX talks about
5493         "absolute pathnames", not "full pathnames", but the GNU
5494         Coding Standards say to use "path" for something else;
5495         so use "absolute" to keep both sides happy.
5496         (gl_ABSOLUTE_HEADER): Renamed from gl_FULL_HEADER_PATH.
5497         Set gl_absolute_header, not gl_full_header_path.
5498         Set gl_cv_absolute_<header>, not gl_full_path_<header>.
5499         Define ABSOLUTE_<HEADER>, not FULL_PATH_<HEADER>.
5500         All uses changed.
5501
5502         Merge from coreutils.
5503
5504         2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
5505
5506         * m4/c-strtod.m4 (gl_C_STRTOLD): Add c-strtod.c to LIBSOURCES.
5507         Require gl_USE_SYSTEM_EXTENSIONS, not gl_C_STRTOD, since we don't
5508         want to require the building of c-strtod.o.
5509         * m4/lib-check.m4 (cu_LIB_CHECK): Remove SEQ_LIBM, since seq no longer
5510         needs -lm directly.
5511         * m4/xstrtod.m4 (gl_XSTRTOLD): New macro.
5512
5513         2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
5514
5515         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Prefer binutils's
5516         --as-needed option if available.  Problem reported by Albert Chin in
5517         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00114.html>.
5518         However, use -Wl,--as-needed, not bare --as-needed, since HP-UX 11.11
5519         cc merely issues a bunch of annoying warnings for --as-needed
5520         (this problem was reported by Bob Proulx).  Also, try linking with
5521         -lm to detect a bug in binutils 2.16 (this problem was reported
5522         by Ralf Wildenhues).
5523
5524         2006-06-18  Jim Meyering  <jim@meyering.net>
5525
5526         Test for a bug that causes glibc's getcwd to suffer a failed assertion.
5527         * m4/getcwd-abort-bug.m4 (gl_FUNC_GETCWD_ABORT_BUG): New file and
5528         macro.
5529         * m4/getcwd.m4 (gl_FUNC_GETCWD): If we detect support for getcwd_null,
5530         also check for glibc-2.4's abort-inducing bug.
5531
5532         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Fix typo.
5533         Low-probability clean-up should be to use rmdir to get rid of
5534         the just-created directory, not unlink.
5535
5536         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): If ftruncate is missing, make
5537         configure fail, and request a bug report to inform us about it.
5538         Add a comment that, barring reports to the contrary, in 2007 we'll
5539         assume ftruncate is universally available.
5540
5541         2006-04-17  Paul Eggert  <eggert@cs.ucla.edu>
5542
5543         * m4/filemode.m4 (gl_FILEMODE): Check for strmode declaration.
5544
5545         2006-03-12  Jim Meyering  <jim@meyering.net>
5546
5547         * m4/chdir-safer.m4 (gl_CHDIR_SAFER): Add same-inode.h to the list.
5548         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Likewise.
5549         * m4/same.m4 (gl_SAME): Likewise.
5550         * m4/root-dev-ino.m4 (gl_ROOT_DEV_INO): Likewise.
5551
5552         2006-03-11  Eric Blake  <ebb9@byu.net>
5553
5554         * m4/double-slash-root.m4: New file, provides gl_DOUBLE_SLASH_ROOT.
5555         * m4/dirname.m4 (gl_DIRNAME): Use gl_DOUBLE_SLASH_ROOT.
5556         * m4/dos.m4 (FILE_SYSTEM_PREFIX_LEN): Move from here to dirname.h.
5557         (FILE_SYSTEM_DRIVE_PREFIX_CAN_BE_RELATIVE): New define.
5558
5559 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
5560
5561         * lib/stdint_.h: Include <sys/types.h> after @FULL_PATH_STDINT_H@, for
5562         MacOS X 10.4.6.  Don't mention <sys/int_types.h>.  Problems
5563         reported by Mark D. Baushke, one in
5564         <http://lists.gnu.org/archive/html/bug-gnulib/2006-07/msg00015.html>.
5565
5566         Merge from coreutils.
5567
5568         * lib/.cppi-disable: Add stdint_.h.
5569         * lib/.cvsignore: Add stdint.h.
5570
5571         2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
5572
5573         * lib/xstrtod.c (XSTRTOD, DOUBLE): New macros, so that we can support
5574         both double and long double versions.
5575         (XSTRTOD): Renamed from xstrtod.  Use DOUBLE internally.
5576         * lib/xstrtold.c: New file.
5577         * lib/xstrtod.h (xstrtold): New decl.
5578
5579         2006-05-22  Paul Eggert  <eggert@cs.ucla.edu>
5580
5581         * lib/filemode.c (setst): Remove.
5582         (strmode): Rewrite to avoid setst.  This makes the code shorter,
5583         (arguably) clearer, and the generated code is a bit smaller on my
5584         Debian GNU/Linux stable x86 host.
5585
5586         2006-04-17  Paul Eggert  <eggert@cs.ucla.edu>
5587
5588         * lib/filemode.c: Include "filemode.h" first, to test the interface.
5589         Assume that filemode.h includes sys/types.h and sys/stat.h.
5590         (HAVE_ST_DM_MODE): New macro, moved here from ls.c.
5591         (ftypelet): Reorder to put common cases first, for efficiency.
5592         Add 'P', 'w'.  Remove 'M', since it's now the caller's responsibility
5593         to do 'M'.
5594         (strmode): Renamed from mode_string, and now stores 12 bytes instead
5595         of 10, for compatibility with FreeBSD.  All callers changed.
5596         (filemodestring): Now stores 12 bytes instead of 10, and sets file
5597         types that can't be deduced solely from st_mode.  First arg is now a
5598         const pointer.
5599         * lib/filemode.h (HAVE_DECL_STRMODE): Include <string.h> for strmode.
5600         (strmode): Renamed from mode_string.
5601         (filemodestring): New decl.
5602         * lib/stat-macros.h: Don't undef S_ISDOOR, since it's never buggy.
5603         (S_ISDOOR): Don't bother with S_IFDOOR, since that code is never
5604         needed.
5605         (S_ISPORT, S_ISWHT): New macros, if not already defined.
5606
5607         2006-04-12  Paul Eggert  <eggert@cs.ucla.edu>
5608
5609         * lib/fsusage.c: Don't include <inttypes.h> or <stdint.h>, since
5610         fsusage.h now does that.  Include fsusage.h first, to test interface.
5611         Prefer statvfs if it works, since it's blessed by POSIX.  Attempt
5612         at most one method (the old code could have generated decls that
5613         didn't conform to C89, not that this was ever exercised).
5614         * lib/fsusage.h: Include <inttypes.h> and <stdint.h> if they exist.
5615
5616         2006-03-19  Jim Meyering  <jim@meyering.net>
5617
5618         Work even in a chroot where d_ino values for entries in "/"
5619         don't match the stat.st_ino values for the same names.
5620         * lib/getcwd.c (__getcwd): When no d_ino value matches the target inode
5621         number, iterate through all entries again, using lstat instead.
5622         Reported by Kenshi Muto in http://bugs.debian.org/355810, and by
5623         Zouhir Hafidi in https://bugzilla.redhat.com/bugzilla/190656.
5624
5625         * lib/getcwd.c (__getcwd): Clarify a comment.
5626         Use memcpy in place of a call to strcpy.
5627
5628         2006-03-12  Jim Meyering  <jim@meyering.net>
5629
5630         * lib/fts-cycle.c (leave_dir): If cycle-check's saved dev-ino pair
5631         matches that of the current directory (which we're about to chdir ".."
5632         out of), then save the dev-ino of the parent, instead.
5633
5634         * lib/same-inode.h (SAME_INODE): New file/macro.
5635         * lib/chdir-safer.c (SAME_INODE): Remove definition.
5636         Include "same-inode.h", instead.
5637         * lib/same.c: Likewise.
5638         * lib/cycle-check.h: Include "same-inode.h".
5639         (CYCLE_CHECK_REFLECT_CHDIR_UP): Define.
5640         * lib/cycle-check.c (SAME_INODE): Remove definition.
5641         * lib/root-dev-ino.h: Include "same-inode.h".
5642
5643         2006-03-11  Eric Blake  <ebb9@byu.net>
5644
5645         * lib/same.c (same_name): s/base_name/last_component/
5646         * lib/backupfile.c (check_extension, numbered_backup): Likewise.
5647         * lib/filenamecat.c (file_name_concat): Likewise.
5648
5649         2006-03-11  Eric Blake  <ebb9@byu.net>,
5650                     Paul Eggert  <eggert@cs.ucla.edu>
5651
5652         * lib/dirname.h (FILE_SYSTEM_PREFIX_LEN): Move here from dos.m4.
5653         [FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]: Don't treat 1: as a
5654         drive prefix.
5655         (IS_ABSOLUTE_FILE_NAME): Treat all drive letters as absolute on
5656         platforms like cygwin with FILE_SYSTEM_DRIVE_PREFIX_IS_ABSOLUTE.
5657         (last_component): New method.
5658         * lib/dirname.c (dir_len): Determine when drive letters need a
5659         subsequent slash.  Preserve // when it is special.
5660         (dir_name): Don't append dot when drive letter is absolute.
5661         [TEST_DIRNAME]: Move into a full-blown gnulib test.
5662         * lib/basename.c (base_name): New semantics - malloc the result.
5663         Preserve // when it is special.  Preserve relative files that look
5664         like drive letters.
5665         (base_len): Preserve // when it is special.
5666         (last_component): New method, similar to old base_name semantics.
5667         * lib/stripslash.c (strip_trailing_slashes): Use last_component, not
5668         base_name.  Strip redundant slashes from ///.
5669
5670 2006-07-03  Jim Meyering  <jim@meyering.net>
5671
5672         * lib/cycle-check.h (CYCLE_CHECK_REFLECT_CHDIR_UP): Abort if this
5673         macro is used before the first cycle_check call.
5674
5675 2006-07-03  Eric Blake  <ebb9@byu.net>
5676
5677         * modules/dirname (Depends-on): Add xstrndup.
5678
5679 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
5680
5681         * m4/stdint.m4 (gl_STDINT_H): Use more-mnemonic identifiers for
5682         test cases, so that config.log is a bit easier to follow.
5683
5684 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
5685
5686         * lib/stdint_.h (intmax_t, uintmax_t): Prefer long to long long if
5687         both are 64 bits, since this seems to be the tradition, and this
5688         prevents gcc -Wformat from warning about usages with PRIuMAX.  If
5689         we ever run into a host that prefers long long to long in this
5690         case, we'll need another configure-time test.  Problem reported by
5691         Jim Meyering.
5692
5693 2006-07-02  Eric Blake  <ebb9@byu.net>
5694
5695         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Simplify by using AC_CHECK_DECLS.
5696
5697 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
5698
5699         * modules/inttypes (Depends-on): No longer depends on stdint.
5700         * modules/stdint (Description): Say more about assumptions.
5701         Say that the fast types might differ.  Say macros are used.
5702         (Files): Remove m4/size_max.m4, m4/wchar_t.m4.  Add m4/longlong.m4.
5703         (Makefile.am): Revise list of substituted symbols to match
5704         new stdint.m4.
5705         * modules/stdint-tests (Files): Add m4/wchar_t.m4, m4/wint_t.m4.
5706         (configure.ac): Add gt_TYPE_WCHAR_T, gt_TYPE_WINT_T.
5707         * tests/test-stdint.c (verify_same_types)
5708         [! (__GNUC__ >= 2 && DO_PEDANTIC)]: Put in a decl, so that
5709         the code conforms to C99/C89.
5710         Test for WCHAR_MIN and WCHAR_MAX only if HAVE_WCHAR_T.
5711         Test for WINT_MIN and WINT_MAX only if HAVE_WINT_T.
5712
5713 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
5714
5715         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Backport from Autoconf 2.60,
5716         but fix a bug, by requiring at least 64 bits.
5717         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Likewise.
5718         * m4/longlong.m4 (gl_AC_TYPE_LONG_LONG): Now just call
5719         AC_TYPE_LONG_LONG_INT.  This macro is obsolete and will go soon.
5720         * m4/ulonglong.m4 (gl_AC_TYPE_UNSIGNED_LONG_LONG) Likewise.
5721
5722         * m4/stdint.m4 (gl_STDINT_H): Rewrite to accommodate stdint_.h
5723         changes.  Make 2.59 a prerequisite.  Check and substitute for
5724         HAVE_LONG_LONG_INT.  Rely on Autoconf to check for stdint.h and
5725         inttypes.h.  Do not use special include files; just use the
5726         defaults.  Check for sys/inttypes.h and sys/bitypes.h in the usual
5727         way now.  Remove no-longer-needed tests for HAVE_LONG_64BIT,
5728         HAVE_LONG_LONG_64BIT, int8_t, int16_t, int32_t, int64_t, uint8_t,
5729         uint16_t, uint32_t uint64_t, int_least8_t, int_least16_t,
5730         int_least32_t, int_least64_t, uint_least8_t, uint_least16_t,
5731         uint_least32_t, uint_least64_t, int_fast8_t, int_fast16_t,
5732         int_fast32_t, int_fast64_t, uint_fast8_t uint_fast16_t,
5733         uint_fast32_t, uint_fast64_t, intptr_t, uintptr_t, intmax_t,
5734         uintmax_t, INT8_MIN, INT8_MAX, UINT8_MAX, INT16_MIN, INT16_MAX,
5735         UINT16_MAX, INT32_MIN, INT32_MAX, UINT32_MAX, INT64_MIN,
5736         INT64_MAX, UINT64_MAX, INT_LEAST8_MIN, INT_LEAST8_MAX,
5737         UINT_LEAST8_MAX, INT_LEAST16_MIN, INT_LEAST16_MAX,
5738         UINT_LEAST16_MAX, INT_LEAST32_MIN, INT_LEAST32_MAX,
5739         UINT_LEAST32_MAX, INT_LEAST64_MIN, INT_LEAST64_MAX,
5740         UINT_LEAST64_MAX, INT_FAST8_MIN, INT_FAST8_MAX, UINT_FAST8_MAX,
5741         INT_FAST16_MIN, INT_FAST16_MAX, UINT_FAST16_MAX, INT_FAST32_MIN,
5742         INT_FAST32_MAX, UINT_FAST32_MAX, INT_FAST64_MIN, INT_FAST64_MAX,
5743         UINT_FAST64_MAX, INTPTR_MIN, INTPTR_MAX, UINTPTR_MAX, INTMAX_MIN,
5744         INTMAX_MAX, UINTMAX_MAX, PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN,
5745         SIG_ATOMIC_MAX, SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN,
5746         WINT_MAX.  Check for C99 conformance more strictly, by detecting
5747         bugs in glibc 2.4, Solaris 10, and OpenBSD 3.9.  On the other hand do
5748         not check for things that C99 does not require, e.g., int8_t.  If
5749         a test isn't needed unless <stdint.h> isn't working, and is
5750         unlikely to be needed for any other reason, then don't do it
5751         unless <stdint.h> isn't working.  Do not check for ptrdiff_t or
5752         size_t, since we assume C89 freestanding at least.  Do not check
5753         for sig_atomic_t, wchar_t, or wint_t, since the code now does
5754         the right thing even if the types are not defined.  Instead use:
5755         (gl_STDINT_TYPE_PROPERTIES): New macro.
5756         (gl_HEADER_STDINT_H, gl_HEADER_INTTYPES_H): Remove.  Don't bother
5757         testing whether <sys/types.h> clashes, as Autoconf does this for
5758         us now.  All uses removed.
5759         (gl_STDINT_CHECK_TYPES, gl_STDINT_MISSING_BOUND):
5760         (gl_STDINT_MISSING_BOUNDS, gl_STDINT_MISSING_BOUNDS2):
5761         (gl_CHECK_TYPE_SAME):
5762         Remove; no longer needed.
5763         (gl_STDINT_BITSIZEOF): Don't bother to check whether the type
5764         exists, since we'll return 0 anyway in that case.
5765         (gl_INTEGER_TYPE_SUFFIX, gl_STDINT_INCLUDES): New macros.
5766
5767 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
5768
5769         * lib/stdint_.h (_GL_STDINT_H): Renamed from _STDINT_H, to avoid
5770         possible collision with system files.
5771         (<stdio.h>, <time.h>, <wchar.h>) [defined __cplusplus && ! defined
5772         __STDC_CONSTANT_MACROS)]: Do not include, since we don't need
5773         WCHAR_MIN and WCHAR_MAX in this case.
5774         (<stddef.h>): Do not include; no longer needed.
5775         (<sys/types.h>): Include if @HAVE_SYS_TYPES_H@, not if
5776         (defined(__OpenBSD__) || defined(__bsdi__) || defined(__sgi)).
5777         (<sys/inttypes.h>): Include if @HAVE_SYS_INTTYPES_H@ &&
5778         !@HAVE_INTTYPES_H@, not if (defined(__FreeBSD__)
5779         && (__FreeBSD__ >= 3) && (__FreeBSD__ <= 4)).
5780         (__STDINT_H__) [@HAVE_STDINT_H@ && defined __sgi && ! defined
5781         __c99]: Define, to work around IRIX <stdint.h> incompatibility.
5782         (@FULL_PATH_STDINT_H@) [!(defined(__sgi) && @HAVE_INTTYPES_H@ &&
5783         !defined(__c99))]: Include in this case too, since it's harmless
5784         now.
5785         (<inttypes.h>) [@HAVE_INTTYPES_H@]: Include, since it's no longer
5786         dangerous to do so.
5787         (@FULL_PATH_INTTYPES_H@) [(defined(__hpux) || defined(_AIX)) &&
5788         @HAVE_INTTYPES_H@]: Do not include, since we now include <inttypes.h>.
5789         (_STDINT_MIN, _STDINT_MAX): New macros.
5790         (int8_t, uint8_t, int16_t, uint16_t, int32_t, uint32_t, int64_t):
5791         (uint64_t, int_least8_t, uint_least8_t, int_least16_t):
5792         (uint_least16_t, int_least32_t, uint_least32_t, int_least64_t):
5793         (uint_least64_t, int_fast8_t, uint_fast8_t, int_fast16_t):
5794         (uint_fast16_t, int_fast32_t, uint_fast32_t, int_fast64_t):
5795         (uint_fast64_t, intptr_t, uintptr_t, intmax_t, uintmax_t): Now
5796         macros, not typedefs; this simplifies things quite a bit.
5797         Use long int for all types narrower than int64_t.
5798         (intmax_t, uintmax_t, INTMAX_C, UINTMAX_C):
5799         Define in terms of long long int or int64_t or long int,
5800         not int64_t or int32_t.  This saves some compile-time testing.
5801         (INT8_MIN, INT8_MAX, UINT8_MAX, INT16_MIN, INT16_MAX, UINT16_MAX):
5802         (INT32_MIN, INT32_MAX, UINT32_MAX, INT64_MIN, INT64_MAX):
5803         (UINT64_MAX, INT_LEAST8_MIN, INT_LEAST8_MAX, UINT_LEAST8_MAX):
5804         (INT_LEAST16_MIN, INT_LEAST16_MAX, UINT_LEAST16_MAX):
5805         (INT_LEAST32_MIN, INT_LEAST32_MAX, UINT_LEAST32_MAX):
5806         (INT_LEAST64_MIN, INT_LEAST64_MAX, UINT_LEAST64_MAX, INT_FAST8_MIN):
5807         (INT_FAST8_MAX, UINT_FAST8_MAX, INT_FAST16_MIN, INT_FAST16_MAX):
5808         (UINT_FAST16_MAX, INT_FAST32_MIN, INT_FAST32_MAX, UINT_FAST32_MAX):
5809         (INT_FAST64_MIN, INT_FAST64_MAX, UINT_FAST64_MAX, INTPTR_MIN):
5810         (INTPTR_MAX, UINTPTR_MAX, INTMAX_MIN, INTMAX_MAX, UINTMAX_MAX):
5811         (PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX):
5812         (SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN, WINT_MAX):
5813         undef any previous version and define our own version, for
5814         simplicity and consistency with the new macros for types.
5815         (PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX):
5816         (SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN, WINT_MAX):
5817         Simplify definitions by using _STDINT_MIN and _STDINT_MAX
5818         where appropriate.  Rely on new symbols @PTRDIFF_T_SUFFIX@,
5819         @SIG_ATOMIC_T_SUFFIX@, @SIZE_T_SUFFIX@, @WCHAR_T_SUFFIX@,
5820         @WINT_T_SUFFIX@ to keep things simple here.
5821         (UINT8_C, UINT16_C, UINT32_C, INT64_C, UINT64_C):
5822         Simplify by assuming typical 8/16/32/64 host, since we're
5823         already doing that elsewhere anyway.
5824         Use (LONG_MAX >> 31 >> 31 == 1) rather than @HAVE_LONG_64BIT@,
5825         and assume long long int is 64 bits if available.  This
5826         speeds up 'configure'.
5827
5828 2006-07-01  Eric Blake  <ebb9@byu.net>
5829
5830         * m4/stdarg.m4 (gl_STDARG_H): Use proper AH_VERBATIM.
5831         Reported by Andreas Buening.
5832
5833 2006-07-01  Eric Blake  <ebb9@byu.net>
5834
5835         * m4/stdarg.m4 (gl_STDARG_H): Properly parenthesize gl_va_copy.
5836
5837 2006-06-30  Jim Hyslop  <jhyslop@dreampossible.ca>  (tiny change)
5838
5839         * lib/getaddrinfo.c: fixed typo
5840
5841 2006-06-29  Jim Meyering  <jim@meyering.net>
5842
5843         * modules/strftime (Maintainer): Add my name, since with the
5844         FPRINTFTIME changes strftime.c has forked from glibc.
5845
5846 2006-06-29  Eric Blake  <ebb9@byu.net>
5847
5848         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Use AC_C_INLINE.
5849
5850 2006-06-29  Eric Blake  <ebb9@byu.net>
5851
5852         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): New file.
5853
5854 2006-06-29  Eric Blake  <ebb9@byu.net>
5855
5856         * lib/stat_.h: New file.
5857
5858 2006-06-29  Eric Blake  <ebb9@byu.net>
5859
5860         * lib/stat_.h (rpl_mkdir): Declare inline, to avoid warnings about
5861         unused static function.
5862
5863 2006-06-29  Eric Blake  <ebb9@byu.net>
5864
5865         * doc/functions.texi (Function Portability): Document missing lstat
5866         on mingw.
5867
5868 2006-06-29  Eric Blake  <ebb9@byu.net>
5869
5870         * MODULES.html.sh: Add sys_stat.
5871         * modules/sys_stat: New module.
5872         * modules/mkstemp (Depends-on): Add sys_stat.
5873
5874 2006-06-29  Derek R. Price  <derek@ximbiot.com>
5875
5876         * m4/strftime.m4: Don't call AC_FUNC_STRFTIME.
5877
5878 2006-06-29  Derek R. Price  <derek@ximbiot.com>
5879
5880         * m4/c-bs-a.m4: Removed.
5881
5882 2006-06-29  Derek R. Price  <derek@ximbiot.com>
5883
5884         * lib/strftime.c: Assume strftime() exists.
5885
5886 2006-06-29  Derek Price  <derek@ximbiot.com>
5887
5888         * modules/c-bs-a: Removed - \a is C89.
5889         * MODULES.html.sh: Remove c-bs-a.
5890
5891 2006-06-29  Bruno Haible  <bruno@clisp.org>
5892
5893         * modules/wcwidth (License): Change to LGPL.
5894
5895 2006-06-28  Simon Josefsson  <jas@extundo.com>
5896
5897         * tests/test-getaddrinfo.c: Test getnameinfo too.  Call WSAStartup
5898         on _WIN32.
5899
5900         * modules/getaddrinfo (Depends-on): Add inet_ntop, needed by
5901         getnameinfo.
5902
5903 2006-06-28  Simon Josefsson  <jas@extundo.com>
5904
5905         * m4/getaddrinfo.m4: Look for getnameinfo prototypes too.
5906
5907 2006-06-28  Simon Josefsson  <jas@extundo.com>
5908
5909         * lib/getaddrinfo.c: Try to load ws2_32.dll on Windows, to find the
5910         functions there.  It will succeed on Windows XP, but on Windows
5911         2000 and (presumably) earlier, it will fail, and use the internal
5912         re-implementation.
5913         (use_win32_p): New function.
5914         (getaddrinfo): Use strtoul on servname, to support numeric ports.
5915         Support AI_NUMERICSERV to disable getservbyname.
5916         (getnameinfo): New function, only supports
5917         NI_NUMERICHOST|NI_NUMERICSERV for now.
5918
5919         * lib/getaddrinfo.h: Test and check for AI_* flags separately, MinGW
5920         only have some of them.  Add AI_NUMERICSERV.  Add prototype for
5921         getnameinfo.
5922
5923 2006-06-28  Eric Blake  <ebb9@byu.net>
5924
5925         * modules/wcwidth: New file.
5926         * modules/mbchar (Depends-on): Add wcwidth.
5927         * modules/mbswidth (Depends-on): Add wcwidth.
5928         * MODULES.html.sh: Add wcwidth.
5929
5930 2006-06-28  Eric Blake  <ebb9@byu.net>
5931
5932         * m4/mbswidth.m4 (gl_MBSDWIDTH): Move wcwidth from here...
5933         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): ...to this new file.
5934
5935 2006-06-28  Eric Blake  <ebb9@byu.net>
5936
5937         * lib/xvasprintf.h: Fix comments.
5938
5939 2006-06-28  Eric Blake  <ebb9@byu.net>
5940
5941         * lib/mbchar.h (wcwidth): Include wcwidth.h.
5942         * lib/mbswidth.c (wcwidth): Move from here...
5943         * lib/wcwidth.h: ...to this new file.
5944
5945 2006-06-28  Derek R. Price  <derek@ximbiot.com>
5946
5947         * m4/savedir.m4: Remove AC_FUNC_CLOSEDIR_VOID requirement.
5948
5949         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Don't require AC_C_CONST, since
5950         it's obsolete.
5951         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME): Likewise.
5952
5953 2006-06-28  Derek R. Price  <derek@ximbiot.com>
5954
5955         * lib/savedir.c (CLOSEDIR): Remove.  All uses changed to closedir.
5956         Autoconf 2.60 says this stuff was obsolete.
5957
5958 2006-06-28  Bruno Haible  <bruno@clisp.org>
5959
5960         * modules/wcwidth (Files): Add m4/wchar_t.m4.
5961
5962 2006-06-28  Bruno Haible  <bruno@clisp.org>
5963
5964         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Also require AC_C_INLINE and
5965         gt_TYPE_WCHAR_T.
5966
5967 2006-06-28  Bruno Haible  <bruno@clisp.org>
5968
5969         * lib/wcwidth.h: Declare nothing if !HAVE_WCHAR_T. Provide a fallback
5970         declaration for wcwidth.
5971         * lib/mbswidth.c: Restore the includes of <wchar.h> and <wctypes.h>.
5972
5973 2006-06-28  Bruno Haible  <bruno@clisp.org>
5974
5975         * lib/mkdtemp.c [MINGW]: Include <io.h>.
5976         (mkdir): Define using _mkdir.
5977
5978 2006-06-28  Bruno Haible  <bruno@clisp.org>
5979
5980         * lib/getaddrinfo.h: Fix POSIX URL.
5981         * lib/getaddrinfo.c (WIN32_NATIVE): New macro. Use it instead of
5982         _WIN32.
5983         (use_win32_p): Make static.
5984         (getaddrinfo): Reject service name if it is empty or does not consist
5985         solely of decimal digits, or if its value is > 65535.
5986         (getnameinfo): Remove useless casts.
5987
5988 2006-06-27  Simon Josefsson  <jas@extundo.com>
5989
5990         * modules/sys_select: New file, suggested by Bruno Haible, Paul
5991         Eggert and Martin Lambers.
5992
5993 2006-06-27  Simon Josefsson  <jas@extundo.com>
5994
5995         * m4/sys_select_h.m4: New file, suggested by Bruno Haible, Paul
5996         Eggert and Martin Lambers.
5997
5998 2006-06-27  Bruno Haible  <bruno@clisp.org>
5999
6000         * m4/stdint.m4 (gl_STDINT_BITSIZEOF): For nonexistent types, set the
6001         result to 0, not to empty.
6002         Reported by Martin Neitzel <neitzel@sco.gaertner.de>.
6003
6004 2006-06-27  Bruno Haible  <bruno@clisp.org>
6005
6006         * lib/stdint_.h (intmax_t, uintmax_t): Undefine before typedef.
6007
6008 2006-06-26  Simon Josefsson  <jas@extundo.com>
6009
6010         * m4/inet_ntop.m4: Don't check for sys/types.h, we assume it is
6011         present.
6012
6013 2006-06-26  Paul Eggert  <eggert@cs.ucla.edu>
6014
6015         * lib/base64.c (B64): Use _ as the formal parameter, not x, to avoid
6016         bug in IBM C V6 for AIX.  Problem reported by Larry Jones in
6017         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00181.html>.
6018
6019 2006-06-26  Mark D. Baushke  <mdb@gnu.org>
6020
6021         * m4/stdint.m4 (gl_STDINT_H): Treat BSD/OS like OpenBSD.
6022
6023 2006-06-26  Bruno Haible  <bruno@clisp.org>
6024
6025         * modules/stdint (Makefile.am): Also substitute HAVE_WCHAR_H.
6026
6027 2006-06-26  Bruno Haible  <bruno@clisp.org>
6028
6029         * m4/stdint.m4 (gl_STDINT_H): Test also for <wchar.h>.
6030
6031 2006-06-26  Bruno Haible  <bruno@clisp.org>
6032
6033         * m4/stdint.m4 (gl_STDINT_H): Don't include <stdint.h> when using the
6034         SGI C compiler in pre-C99 mode.
6035         Suggested by Mark D. Baushke and Larry Jones.
6036
6037 2006-06-26  Bruno Haible  <bruno@clisp.org>
6038
6039         * lib/stdint_.h: Include <wchar.h> if necessary for WCHAR_MIN or
6040         WCHAR_MAX.
6041         Reported by Mark D. Baushke and Larry Jones.
6042
6043 2006-06-26  Bruno Haible  <bruno@clisp.org>
6044
6045         * lib/stdint_.h: Don't include <stdint.h> when using the SGI C compiler
6046         in pre-C99 mode.
6047         Suggested by Mark D. Baushke and Larry Jones.
6048
6049 2006-06-23  Simon Josefsson  <jas@extundo.com>
6050             Bruno Haible  <bruno@clisp.org>
6051
6052         * gnulib-tool (func_emit_lib_Makefile_am): Define MOSTLYCLEANDIRS.
6053         Emit mostlyclean-local rule.
6054         (func_emit_tests_Makefile_am): Likewise.
6055         * modules/sys_socket (Makefile.am): Use MOSTLYCLEANDIRS.
6056
6057 2006-06-23  Mark D. Baushke  <mdb@gnu.org>
6058
6059         * lib/stdint_.h: Treat BSD/OS like OpenBSD.
6060
6061 2006-06-23  Bruno Haible  <bruno@clisp.org>
6062
6063         * tests/test-stdint.c: Update to match ISO C 99 Technical
6064         Corrigendum 1.
6065
6066 2006-06-23  Bruno Haible  <bruno@clisp.org>
6067
6068         * m4/stdint.m4 (gl_STDINT_H): Treat IRIX like OpenBSD.
6069
6070 2006-06-23  Bruno Haible  <bruno@clisp.org>
6071
6072         * lib/stdint_.h: Treat IRIX like OpenBSD.
6073
6074 2006-06-23  Bruno Haible  <bruno@clisp.org>
6075
6076         * lib/stdint_.h (UINT8_C, UINT16_C, UINT32_C): Define according to
6077         ISO C 99 Technical Corrigendum 1.
6078
6079 2006-06-22  Simon Josefsson  <jas@extundo.com>
6080
6081         * m4/sockpfaf.m4: Include winsock2.h too, to make it work under
6082         MinGW.
6083
6084 2006-06-22  Paul Eggert  <eggert@cs.ucla.edu>
6085
6086         * lib/glob.c (collated_compare): Remove 'const' uses that weren't
6087         needed.  Some compiler complained about some of them.  Problem reported
6088         by Larry Jones in
6089         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00172.html>.
6090
6091 2006-06-21  Simon Josefsson  <jas@extundo.com>
6092
6093         * tests/test-getaddrinfo.c: New file.
6094
6095         * modules/getaddrinfo-tests: New file.
6096
6097         * MODULES.html.sh: Add inet_pton.
6098
6099         * modules/inet_pton: New file.
6100
6101 2006-06-21  Simon Josefsson  <jas@extundo.com>
6102
6103         * m4/getaddrinfo.m4: Don't define WINVER.  Look for gethostbyname in
6104         -lws2_32 too.  Fixes getaddrinfo on Windows 2000, with the price
6105         of using the (limited) gnulib implementation on Windows XP.
6106
6107         * m4/inet_pton.m4: New file.
6108
6109 2006-06-21  Simon Josefsson  <jas@extundo.com>
6110
6111         * lib/getaddrinfo.c (getaddrinfo): Set ai_family in the return
6112         variable.
6113
6114         * lib/socket_.h: Don't define WINVER.
6115
6116         * lib/inet_pton.h, inet_pton.c: New file, taken from glibc but
6117         slightly modified to work in gnulib.
6118
6119 2006-06-21  Simon Josefsson  <jas@extundo.com>
6120
6121         * doc/gnulib.texi (Windows sockets): Add.
6122
6123 2006-06-21  Paul Eggert  <eggert@cs.ucla.edu>
6124
6125         * lib/read-file.c (fread_file): Start with buffer allocation of
6126         0 bytes rather than 1 byte; this simplifies the code.
6127         Don't invoke feof; it's not needed.  Refactor to avoid duplicate
6128         code to free buffer and save/restore errno.
6129         (internal_read_file): Remove unused local.
6130
6131 2006-06-20  Paul Eggert  <eggert@cs.ucla.edu>
6132
6133         * lib/openat.c (openat): Use ?:, not if, to work around GCC bug 4210
6134         <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=4210>.
6135         Problem reported by Denis Excoffier in
6136         <http://lists.gnu.org/archive/html/bug-tar/2006-06/msg00023.html>.
6137
6138 2006-06-19  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
6139
6140         * modules/sys_socket, modules/socklen: Include sys/types since
6141         FreeBSD 4.x's sys/socket.h needs it.
6142
6143 2006-06-19  Simon Josefsson  <jas@extundo.com>
6144
6145         * lib/inet_ntop.c: Always build inet_ntop4, since inet_ntop6 calls it.
6146
6147 2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
6148
6149         * lib/alloca_.h (alloca) [defined alloca]: Don't define or declare.
6150
6151 2006-06-19  Bruno Haible  <bruno@clisp.org>
6152
6153         * m4/stdint.m4 (gl_STDINT_H): Enclose the values of FULL_PATH_STDINT_H
6154         and FULL_PATH_INTTYPES_H in angle brackets.
6155         Reported by Mark D. Baushke <mdb@gnu.org>.
6156
6157 2006-06-17  Eric Blake  <ebb9@byu.net>
6158
6159         * m4/rmdir-errno.m4 (gl_FUNC_FMDIR_NOTEMPTY): Assume errno.h declares
6160         errno.
6161
6162 2006-06-17  Bruno Haible  <bruno@clisp.org>
6163
6164         * m4/stdint.m4 (gl_STDINT_H) [FreeBSD >= 5]: Don't include
6165         <sys/inttypes.h>.
6166
6167 2006-06-17  Bruno Haible  <bruno@clisp.org>
6168
6169         * m4/setenv.m4 (gl_PREREQ_SETENV, gl_PREREQ_UNSETENV): Remove test
6170         whether errno is declared. Assume <errno.h> declares errno.
6171
6172 2006-06-17  Bruno Haible  <bruno@clisp.org>
6173
6174         * lib/stdint_.h [FreeBSD >= 5]: Don't include <sys/inttypes.h>.
6175
6176 2006-06-17  Bruno Haible  <bruno@clisp.org>
6177
6178         * lib/stdint_.h (_UINT8_T, _UINT32_T, _UINT64_T): New macros. Fixes a
6179         problem on Solaris 2.5.1.
6180
6181 2006-06-16  Eric Blake  <ebb9@byu.net>
6182
6183         * lib/unsetenv.c [!defined errno]: Assume errno.h declares errno.
6184         * lib/unicodeio.c [!defined errno]: Likewise.
6185         * lib/strtol.c [!defined errno]: Likewise.
6186         * lib/strtod.c [!defined errno]: Likewise.
6187
6188 2006-06-15  Eric Blake  <ebb9@byu.net>
6189
6190         * m4/ssize_t.m4 (gt_TYPE_SSIZE_T): Work in spite of -Werror.
6191
6192 2006-06-15  Eric Blake  <ebb9@byu.net>
6193
6194         * config/srclist.txt (ssize_t.m4): Lose sync.
6195
6196 2006-06-15  Bruno Haible  <bruno@clisp.org>
6197
6198         * modules/stdint (Files): Include m4/full-header-path.m4,
6199         m4/size_max.m4, m4/wchar_t.m4.
6200         (Makefile.am): Many more substitutions.
6201         * modules/stdint-tests: New file.
6202         * tests/test-stdint.c: New file.
6203
6204 2006-06-15  Bruno Haible  <bruno@clisp.org>
6205
6206         * m4/stdint.m4 (gl_STDINT_H): Rewritten to produce a complete stdint.h.
6207         (gl_HEADER_STDINT_H, gl_HEADER_INTTYPES_H, gl_STDINT_CHECK_TYPES,
6208         gl_STDINT_MISSING_BOUND, gl_STDINT_MISSING_BOUNDS,
6209         gl_STDINT_MISSING_BOUNDS2, gl_STDINT_BITSIZEOF, gl_CHECK_TYPES_SIGNED,
6210         gl_CHECK_TYPE_SAME): New macros.
6211
6212 2006-06-15  Bruno Haible  <bruno@clisp.org>
6213
6214         * m4/size_max.m4 (gl_SIZE_MAX): Make it work also when cross-compiling.
6215
6216 2006-06-15  Bruno Haible  <bruno@clisp.org>
6217
6218         * lib/stdint_.h: Rewritten to be fully auto-configured.
6219         Fixes bug on HP-UX/IA64.
6220
6221 2006-06-11  Paul Eggert  <eggert@cs.ucla.edu>
6222
6223         * lib/getdate.y (__attribute__): Don't define if already defined.
6224         Problem reported by Larry Jones.
6225         * lib/utimens.c (__attribute__): Likewise.
6226
6227 2006-06-04  Paul Eggert  <eggert@cs.ucla.edu>
6228
6229         * lib/regexec.c (group_nodes_into_DFAstates): Fix a buffer overrun
6230         reported by Andreas Schwab.
6231
6232 2006-05-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6233             Bruno Haible  <bruno@clisp.org>
6234
6235         * m4/strndup.m4 (gl_FUNC_STRNDUP): Replace the AC_REPLACE_FUNCS with a
6236         check for the declaration of strnlen and a run test that exposes the
6237         AIX 5.1 strnlen bug.  In the failure case, #define strndup to
6238         rpl_strndup.
6239
6240 2006-05-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6241             Bruno Haible  <bruno@clisp.org>
6242
6243         * lib/strndup.c (strndup) [!_LIBC]: Don't undefine macro definition.
6244
6245 2006-05-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6246
6247         * m4/c-strtod.m4 (gl_C99_STRTOLD): Use a link test rather than a
6248         compile test, for Tru64 4.0D.
6249
6250 2006-05-28  Karl Berry  <karl@gnu.org>
6251
6252         * config/srclist.txt (printf-args.c): lose sync.
6253
6254 2006-05-26  Martin Lambers  <marlam@marlam.de>
6255
6256         * lib/getpass.c: Updates the test for the native W32 API, and adds
6257         missing includes, thus fixing compilation warnings.
6258
6259 2006-05-25  Sergey Poznyakoff  <gray@gnu.org.ua>
6260
6261         * lib/exclude.c (exclude_fnmatch): New function.
6262         (excluded_file_name): Call exclude_fnmatch.
6263         * lib/exclude.h (excluded_file_name): New prototype
6264
6265 2006-05-25  Paul Eggert  <eggert@cs.ucla.edu>
6266
6267         * lib/tempname.c (small_open, large_open): New macros.
6268         (__open, __open64) [!_LIBC]: Remove.
6269         (__gen_tempname): Use small_open and large_open instead of __open
6270         and __open64.  This fixes a portability bug on HP-UX 11.11i
6271         reported by Simon Wing-Tang in
6272         <http://lists.gnu.org/archive/html/bug-coreutils/2006-05/msg00114.html>.
6273
6274 2006-05-24  Bruno Haible  <bruno@clisp.org>
6275
6276         * lib/printf-args.c (printf_fetchargs): Turn NULL pointers for
6277         TYPE_STRING and TYPE_WIDE_STRING into a non-NULL replacement.
6278         Reported by Thorsten Maerz <torte@netztorte.de> via
6279         Aaron Stone <aaron@serendipity.cx>.
6280
6281 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
6282
6283         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Rename cache variables to use
6284         gl_ rather than jm_.  Link, don't run, so that cross-compiles are
6285         allowed.  Check that resulting type is arithmetic.  Move AC_REQUIRE
6286         and AC_CHECK_HEADERS_ONCE outside of AC_CACHE_CHECK, since they're
6287         not really conditional on the cache.
6288         (gl_PREREQ_NANOSLEEP): Check for sys/select.h.
6289
6290 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
6291
6292         * lib/nanosleep.c [HAVE_SYS_SELECT_H]: Include <sys/select.h>.
6293         Use the usual Autoconf way to include <time.h> and/or sys/time.h.
6294         (my_usleep): Don't mishandle maximum value.
6295
6296 2006-05-19  Jim Meyering  <jim@meyering.net>
6297
6298         * lib/getugroups.c: Correct an outdated comment.  From Bruno Haible.
6299
6300 2006-05-17  Bruno Haible  <bruno@clisp.org>
6301
6302         Cygwin portability.
6303         * lib/classpath.c (PATH_SEPARATOR) [CYGWIN]: Define as ':'.
6304
6305 2006-05-17  Bruno Haible  <bruno@clisp.org>
6306
6307         * lib/stdint_.h: Fix recognition of Cygwin.
6308
6309 2006-05-15  Bruno Haible  <bruno@clisp.org>
6310
6311         * build-aux/config.rpath: Improve support for Sun C 5.9 on Linux, based
6312         on libtool patch by Ralf Wildenhues.
6313
6314 2006-05-14  Paul Eggert  <eggert@cs.ucla.edu>
6315
6316         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Fix overly-picky
6317         test for C99 conformance; (bool) 0.5 is an integer constant
6318         expression, but (bool) -0.5 is not.  Problem reported by Fedor
6319         Sergeev in <http://forum.sun.com/jive/thread.jspa?threadID=96202>.
6320
6321 2006-05-11  Simon Josefsson  <jas@extundo.com>
6322
6323         * m4/xvasprintf.m4: Fix obvious typo.
6324
6325 2006-05-11  Jim Meyering  <jim@meyering.net>
6326
6327         * lib/sha1.c (sha1_buffer): Correct comment: s/MD5/SHA1/.  From
6328         James Lemley.
6329
6330 2006-05-10  Simon Josefsson  <jas@extundo.com>
6331
6332         * lib/md4.c: Typo fix, update copyright years.
6333         (K1, K2): Don't use L because it turn computations into 64-bit on
6334         64-bit platforms.
6335
6336 2006-05-10  Paul Eggert  <eggert@cs.ucla.edu>
6337
6338         * lib/crc.c (crc32_update): Remove unnecessary L suffix.
6339         * lib/md4.c (rol): Cast right-shift arg to uint32_t to prevent
6340         unwanted sign propagation, e.g., on hosts with 64-bit int.
6341         There still are some problems with reeelly weird theoretical hosts
6342         (e.g., 33-bit int) but it's not worth worrying about now.
6343         * lib/sha1.c (rol): Likewise.
6344         (K1, K2, K3, K4): Remove unnecessary L suffix.
6345
6346 2006-05-10  Bruno Haible  <bruno@clisp.org>
6347
6348         * lib/des.c: Cast to avoid warnings.
6349
6350 2006-05-09  Bruno Haible  <bruno@clisp.org>
6351
6352         * modules/xvasprintf (Files): Add m4/xvasprintf.m4.
6353         (Depends-on): Depend also on xsize, stdarg.
6354         (configure.ac): Add gl_XVASPRINTF.
6355
6356 2006-05-09  Bruno Haible  <bruno@clisp.org>
6357
6358         * m4/xvasprintf.m4: New file.
6359
6360 2006-05-09  Bruno Haible  <bruno@clisp.org>
6361
6362         * lib/xvasprintf.c: Include limits.h, string.h, xsize.h.
6363         (EOVERFLOW): Define fallback value.
6364         (xstrcat): New function.
6365         (xvasprintf): Recognize the special case of a string concatenation.
6366
6367 2006-05-08  Eric Blake  <ebb9@byu.net>
6368
6369         * gnulib-tool (func_version): Base copyright year on CVS date.
6370         (func_emit_copyright_notice): New function.
6371         (func_emit_lib_Makefile_am): Use it.
6372         (func_emit_tests_Makefile_am): Likewise.
6373         (func_import): Likewise.
6374
6375 2006-05-08  Bruno Haible  <bruno@clisp.org>
6376
6377         * modules/stdarg: New file.
6378         * MODULES.html.sh (func_all_modules): Add section for <stdarg.h>.
6379
6380 2006-05-08  Bruno Haible  <bruno@clisp.org>
6381
6382         * m4/stdarg.m4: New file, from GNU gettext.
6383
6384 2006-05-08  Bruno Haible  <bruno@clisp.org>
6385
6386         * config/srclist.txt (build-aux/config.rpath): different from latest
6387         release.
6388
6389 2006-05-08  Bruno Haible  <bruno@clisp.org>
6390
6391         * build-aux/config.rpath: Add support for Sun C 5.9 on Linux.
6392
6393 2006-05-05  Jim Meyering  <jim@meyering.net>
6394
6395         * m4/warning.m4: New file, derived from bison's file by the same name.
6396
6397 2006-05-03  Bruno Haible  <bruno@clisp.org>
6398
6399         * lib/stdint_.h: Shorter URL.
6400         * lib/inttypes.h: Likewise.
6401
6402 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
6403
6404         * modules/inttypes (Maintainer): Change from Derek Price to 'all'.
6405
6406 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
6407
6408         * lib/verify.h: Document the internals better.  Most of this change
6409         was written by Bruno Haible.
6410
6411 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
6412
6413         * doc/verify.texi: New file, partly based on a proposal by
6414         Bruno Haible.
6415
6416 2006-05-02  Bruno Haible  <bruno@clisp.org>
6417
6418         * m4/full-header-path.m4 (gl_FULL_HEADER_PATH): Move the include_next
6419         test from here...
6420         * m4/_inttypes_h.m4 (gl_INTTYPES_H): ... to here.
6421
6422 2006-04-29  Bruno Haible  <bruno@clisp.org>
6423
6424         * lib/gcd.c: Use WORD_T and GCD instead of unsigned long and gcd.
6425         Suggested by Oskar Liljeblad <oskar@osk.mine.nu>.
6426
6427 2006-04-29  Bruno Haible  <bruno@clisp.org>
6428
6429         * gnulib-tool: Make --update option actually work.
6430
6431 2006-04-29  Bruno Haible  <bruno@clisp.org>
6432
6433         * doc/gcd.texi: New file.
6434         * doc/gnulib.texi: Include it.
6435
6436 2006-04-25  Paul Eggert  <eggert@cs.ucla.edu>
6437
6438         * lib/getdate.y (get_date): When adding relative date, start with the
6439         initial time, not with the result of the first mktime call.
6440
6441 2006-04-25  Bruno Haible  <bruno@clisp.org>
6442
6443         * gnulib-tool (func_import): Output the include directives in three
6444         blocks, sorted separately.
6445         Reported by Ben Pfaff <blp@cs.stanford.edu>.
6446
6447 2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
6448
6449         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Use prototype
6450         to define main with arguments, for C++.  Reported by Eric Blake.
6451         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC):
6452         Prefer 'int main ()' to 'int main (void)', for C++.
6453         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Likewise.
6454         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Specify a return type
6455         for 'main', for C99 and C++.
6456
6457 2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
6458
6459         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Use return, not exit.
6460         Don't assume that exit status -1 is valid.
6461         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
6462         * m4/putenv.m4 (gl_FUNC_PUTENV): Likewise.
6463         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Likewise.
6464         * m4/readdir.m4 (GL_FUNC_READDIR): Include <stdlib.h>.
6465         * m4/rename.m4 (vb_FUNC_RENAME): Likewise.
6466         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Use AC_RUN_IFELSE,
6467         not AC_TRY_RUN.  Use return, not exit.  Don't assume that
6468         functions can be used without declaring them, or that you can
6469         exit with status -1.
6470         * m4/utimes-null.m4 (gl_FUNC_UTIMES_NULL): Likewise.
6471
6472 2006-04-24  Karl Berry  <karl@gnu.org>
6473
6474         * config/srclist.txt (longdouble.m4): sync lost.
6475
6476 2006-04-24  Eric Blake  <ebb9@byu.net>
6477
6478         * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Avoid unused variable warning.
6479
6480 2006-04-24  Bruno Haible  <bruno@clisp.org>
6481
6482         * m4/poll.m4 (gl_FUNC_POLL): When cross-compiling, reject also the
6483         poll() implementation in AIX.
6484         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
6485
6486 2006-04-24  Bruno Haible  <bruno@clisp.org>
6487
6488         * m4/poll.m4 (gl_FUNC_POLL): Rearrange code, so that POLL_H gets
6489         assigned exactly once.
6490
6491 2006-04-23  Claudio Fontana  <claudio@gnu.org>
6492             Bruno Haible  <bruno@clisp.org>
6493
6494         * modules/gettext (Makefile.am): Add a -I flag for <libintl.h>.
6495         * gnulib-tool (func_emit_lib_Makefile_am): Emit empty default value
6496         for AM_CPPFLAGS.
6497
6498 2006-04-23  Bruno Haible  <bruno@clisp.org>
6499
6500         * modules/copy-file: Depend on unistd.
6501         * modules/execute: Likewise.
6502         * modules/fatal-signal: Likewise.
6503         * modules/findprog: Likewise.
6504         * modules/mkdtemp : Likewise.
6505         * modules/pipe: Likewise.
6506         * modules/wait-process: Likewise.
6507
6508 2006-04-23  Bruno Haible  <bruno@clisp.org>
6509
6510         * lib/fwriteerror.c (fwriteerror): Call fclose also when an error
6511         condition was already detected.
6512         Reported by Ben Pfaff <blp@cs.stanford.edu>.
6513
6514 2006-04-23  Bruno Haible  <bruno@clisp.org>
6515
6516         * lib/copy-file.c: Include <unistd.h> unconditionally.
6517         * lib/execute.c: Likewise.
6518         * lib/fatal-signal.c: Likewise.
6519         * lib/findprog.c: Likewise.
6520         * lib/mkdtemp.c: Likewise.
6521         * lib/pipe.h: Likewise.
6522         * lib/pipe.c: Likewise.
6523         * lib/wait-process.h: Likewise.
6524
6525 2006-04-23  Bruno Haible  <bruno@clisp.org>
6526
6527         * gnulib-tool (func_usage): Fix --import description. Document
6528         --update.
6529         (func_import): Create temporary file in a temporary directory, if
6530         --dry-run is specified. Silence errors from 'grep' when there are no
6531         m4 files in $m4dir.
6532         (func_create_testdir): Silence errors from 'grep' when there are no
6533         m4 files in $m4dir.
6534         Reported by Karl Berry <karl@freefriends.org>.
6535
6536 2006-04-20  Bruno Haible  <bruno@clisp.org>
6537
6538         * m4/argp.m4 (gl_ARGP): Don't call AC_CHECK_DECLS_ONCE with more than
6539         one argument, so that the code will be portable to Autoconf 2.60.
6540         * m4/getlogin_r.m4 (gl_PREREQ_GETLOGIN_R): Likewise.
6541         * m4/getpass.m4 (gl_PREREQ_GETPASS): Likewise.
6542         * m4/unlocked-io.m4 (gl_FUNC_GLIBC_UNLOCKED_IO): Likewise.
6543
6544 2006-04-19  Derek Price  <derek@ximbiot.com>
6545             Eric Blake  <ebb9@byu.net>
6546
6547         * m4/full-header-path.m4 (gl_FULL_HEADER_PATH): Use </full/path.h>
6548         rather than "/full/path.h".  Update comment to match.  Shorten &
6549         generalize m4_translit call via AS_TR_CPP.
6550
6551 2006-04-19  Derek Price  <derek@ximbiot.com>
6552             Eric Blake  <ebb9@byu.net>
6553
6554         * lib/inttypes.h: Correct grammar in comment.
6555
6556 2006-04-18  Derek Price  <derek@ximbiot.com>
6557             Paul Eggert  <eggert@cs.ucla.edu>
6558
6559         * modules/inttypes: New file.
6560         * modules/strtoimax, modules/strtoumax: Depend on inttypes.
6561
6562 2006-04-18  Derek Price  <derek@ximbiot.com>
6563             Paul Eggert  <eggert@cs.ucla.edu>
6564
6565         * m4/_inttypes_h.m4, m4/full-header-path.m4, m4/include_next.m4:
6566         New files.
6567
6568 2006-04-18  Derek Price  <derek@ximbiot.com>
6569             Paul Eggert  <eggert@cs.ucla.edu>
6570
6571         * lib/inttypes.h: New file.
6572         * lib/strtoimax.c: Assume <inttypes.h>.
6573
6574 2006-04-15  Paul Eggert  <eggert@cs.ucla.edu>
6575
6576         * lib/utimens.c (futimens): glibc futimesat messes up if /proc
6577         isn't mounted.  Problem reported by Kir Kolyshkin.
6578
6579 2006-04-13  Paul Eggert  <eggert@cs.ucla.edu>
6580
6581         * lib/regcomp.c (init_dfa): Don't use wchar_t or wctype_t if
6582         RE_ENABLE_I18N is not defined.  Problem reported by Mark D. Baushke via
6583         Derek R. Price.
6584         * lib/regex.h (RE_DUP_MAX): Update comment to match current
6585         implementation.
6586
6587 2006-04-12  Eric Blake  <ebb9@byu.net>
6588
6589         * modules/time_r (Makefile.am): Remove lib_SOURCES line, as this
6590         is now done automatically by the corresponding Autoconf macro.
6591
6592 2006-04-11  Paul Eggert  <eggert@cs.ucla.edu>
6593
6594         * m4/time_r.m4 (gl_TIME_R): Add AC_LIBSOURCES for time_r.c and
6595         time_r.h.
6596
6597 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
6598
6599         Merge regex changes from libc, removing some of our
6600         POSIX-conformance changes that were rejected and redoing them in a
6601         less-intrusive way.
6602
6603         * lib/regcomp.c (re_compile_internal, init_dfa):
6604         Length arg is now size_t, not Idx.  All uses changed.
6605         (peek_token): Forward decl now says internal_function.
6606         (__re_error_msgid, __re_error_msgid_idx):
6607         Now static rather than extern with attribute_hidden.
6608         (re_compile_pattern) [!defined _LIBC]: Use K&R-style defn.
6609         For some reason libc prefers K&R style defns for external functions.
6610         (regerror) [!defined _LIBC]: Likewise.
6611         (re_set_syntax, re_compile_fastmap, regcomp, regfree, re_comp):
6612         (seek_collating_symbol_entry, lookup_collation_sequence_value):
6613         (build_range_exp, build_collating_symbol):
6614         Use K&R-style defn.
6615         (re_compile_fastmap): Use '\0' to memset, not 0.
6616         (utf8_sb_map): Make the calculations more obvious.
6617         (init_dfa, parse_bracket_exp, build_charclass_op):
6618         Call calloc and cast result, as glibc does.
6619         (init_word_char, fetch_token, peek_token, peek_token_bracket):
6620         (build_range_exp, build_collating_symbol):
6621         Now internal functions.
6622
6623         * lib/regex.c [!defined _LIBC]: Allow compiling with C++ compilers.
6624
6625         * lib/regex.h (__USE_GNU_REGEX): New macro.  Don't depend on
6626         _REGEX_SOURCE any more; depend on _GNU_SOURCE instead.
6627         Don't depend on VMS; depend on __VMS instead, for POSIX
6628         namespace cleanness.
6629         (regoff_t): Define to ssize_t, not long int.
6630
6631         Remove the REG_ macros named below.  Instead, make the old names
6632         (e.g., RE_BACKSLASH_ESCAPE_IN_LISTS) visible only if
6633         __USE_GNU_REGEX.
6634         (REG_BACKSLASH_ESCAPE_IN_LISTS):
6635         (REG_BK_PLUS_QM, REG_CHAR_CLASSES, REG_CONTEXT_INDEP_ANCHORS):
6636         (REG_CONTEXT_INDEP_OPS, REG_CONTEXT_INVALID_OPS):
6637         (REG_DOT_NEWLINE, REG_DOT_NOT_NULL, REG_HAT_LISTS_NOT_NEWLINE):
6638         (REG_INTERVALS, REG_LIMITED_OPS, REG_NEWLINE_ALT):
6639         (REG_NO_BK_BRACES, REG_NO_BK_PARENS, REG_NO_BK_REFS):
6640         (REG_NO_BK_VBAR, REG_NO_EMPTY_RANGES):
6641         (REG_UNMATCHED_RIGHT_PAREN_ORD, REG_NO_POSIX_BACKTRACKING):
6642         (REG_NO_GNU_OPS, REG_DEBUG, REG_INVALID_INTERVAL_ORD):
6643         (REG_IGNORE_CASE, REG_CARET_ANCHORS_HERE):
6644         (REG_CONTEXT_INVALID_DUP, REG_NO_SUB, REG_SYNTAX_EMACS):
6645         (REG_SYNTAX_AWK, REG_SYNTAX_GNU_AWK, REG_SYNTAX_POSIX_AWK):
6646         (REG_SYNTAX_GREP, REG_SYNTAX_EGREP, REG_SYNTAX_POSIX_EGREP):
6647         (REG_SYNTAX_ED, REG_SYNTAX_SED, _REG_SYNTAX_POSIX_COMMON):
6648         (REG_SYNTAX_POSIX_BASIC, REG_SYNTAX_POSIX_MINIMAL_BASIC):
6649         (REG_SYNTAX_POSIX_EXTENDED, REG_SYNTAX_POSIX_MINIMAL_EXTENDED):
6650         (REG_DUP_MAX, REG_UNALLOCATED, REG_REALLOCATE, REG_FIXED):
6651         (REG_NREGS):
6652         Remove.  All uses replaced by the old RE_* names.
6653         (RE_BACKSLASH_ESCAPE_IN_LISTS):
6654         (RE_BK_PLUS_QM, RE_CHAR_CLASSES, RE_CONTEXT_INDEP_ANCHORS):
6655         (RE_CONTEXT_INDEP_OPS, RE_CONTEXT_INVALID_OPS):
6656         (RE_DOT_NEWLINE, RE_DOT_NOT_NULL, RE_HAT_LISTS_NOT_NEWLINE):
6657         (RE_INTERVALS, RE_LIMITED_OPS, RE_NEWLINE_ALT):
6658         (RE_NO_BK_BRACES, RE_NO_BK_PARENS, RE_NO_BK_REFS):
6659         (RE_NO_BK_VBAR, RE_NO_EMPTY_RANGES):
6660         (RE_UNMATCHED_RIGHT_PAREN_ORD, RE_NO_POSIX_BACKTRACKING):
6661         (RE_NO_GNU_OPS, RE_DEBUG, RE_INVALID_INTERVAL_ORD):
6662         (RE_IGNORE_CASE, RE_CARET_ANCHORS_HERE):
6663         (RE_CONTEXT_INVALID_DUP, RE_NO_SUB):
6664         Don't bother having these macros be independent of each others'
6665         values, since they no longer exist in the POSIX name space.
6666
6667         Rename the following member names back to their old names,
6668         unless !__USE_GNU_REGEX.  All uses changed back.
6669         (buffer): Renamed from re_buffer.
6670         (allocated): Renamed from re_allocated.
6671         (used): Renamed from re_used.
6672         (syntax): Renamed from re_syntax.
6673         (fastmap): Renamed from re_fastmap.
6674         (translate): Renamed from re_translate.
6675         (can_be_null): Renamed from re_can_be_null.
6676         (regs_allocated): Renamed from re_regs_allocated.
6677         (fastmap_accurate): Renamed from re_fastmap_accurate.
6678         (no_sub): Renamed from re_no_sub.
6679         (not_bol): Renamed from re_not_bol.
6680         (not_eol): Renamed from re_not_eol.
6681         (newline_anchor): Renamed from re_newline_anchor.
6682         (num_regs): Renamed from rm_num_regs.
6683         (start): Renamed from rm_start.
6684         (end): Renamed from rm_end.
6685
6686         (free_state): Move up a bit.
6687
6688         * lib/regex_internal.h (inline) [__GNUC__ < 3 && defined _LIBC]:
6689         #define to be empty.
6690         (ASCII_CHARS): New macro, replacing all uses of 0x80 and/or SBC_MAX / 2
6691         when that is what is intended.
6692         (SBC_MAX): Define to UCHAR_MAX + 1, not 256.
6693         (__re_error_msgid, __re_error_msgid_idx): Remove decls; not needed.
6694         (MAX): New macro.
6695         (re_xmalloc, re_calloc, re_xrealloc, re_x2realloc): Remove.
6696         All uses changed back to re_malloc, etc.  It's now the caller's
6697         responsibility to check for overflow; all callers changed.
6698         (re_alloc_oversized, re_x2alloc_oversized, re_xnmalloc, re_xnrealloc):
6699         (re_x2nrealloc): Remove.
6700         (free_state): Remove decl.
6701
6702         * lib/regexc.c (regexec, re_match, re_search, re_match_2, re_search_2):
6703         (re_set_registers, re_exec):
6704         Use K&R-style defn.
6705
6706         2006-01-31  Roland McGrath  <roland@redhat.com>
6707
6708         * lib/regcomp.c (calc_eclosure_iter): Remove dead variables.
6709         Reported by Mike Frysinger <vapier@gentoo.org>.
6710
6711         2006-01-15  Andreas Jaeger  <aj@suse.de>
6712
6713         [BZ #1950]
6714         * lib/regex_internal.c (re_string_reconstruct): Adjust for
6715         build_wcs_upper_buffer change.
6716         (build_wcs_upper_buffer): Change return type.
6717
6718         2005-12-10  Ulrich Drepper  <drepper@redhat.com>
6719
6720         * lib/regex_internal.h: Include <stdint.h> if available.
6721
6722         2005-12-06  Paolo Bonzini  <bonzini@gnu.org>
6723
6724         * lib/regex_internal.h (SIZE_MAX): Provide a default definition.
6725
6726         2005-10-14  Ulrich Drepper  <drepper@redhat.com>
6727
6728         * lib/regcomp.c: Adjust for changed secondary hash function.
6729
6730         2005-09-30  Ulrich Drepper  <drepper@redhat.com>
6731
6732         * lib/regex.h: Pretty printing.
6733         Clean up namespace a bit.
6734
6735         2005-09-30  Jakub Jelinek  <jakub@redhat.com>
6736
6737         * lib/regexec.c (update_cur_sifted_state, check_arrival,
6738         check_arrival_add_next_nodes): Avoid using uninitialized variable.
6739
6740         2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
6741                     Ulrich Drepper  <drepper@redhat.com>
6742
6743         [BZ #1302]
6744         * lib/regex_internal.h (bitset_t): Renamed from bitset.  All uses
6745         changed.
6746         (bitset_word_t): Renamed from bitset_word.  All uses changed.
6747
6748         2005-09-22  Ulrich Drepper  <drepper@redhat.com>
6749
6750         [BZ #281]
6751         * lib/regex.h: Define RE_TRANSLATE_TYPE as unsigned char *.
6752         * lib/regcomp.c: Remove unnecessary uses of
6753         unsigned RE_TRANSLATE_TYPE.
6754         * lib/regex_internal.h: Likewise.
6755         * lib/regex_internal.c: Likewise.
6756         * lib/regexec.c: Likewise.
6757         Based on a patch by Stepan Kasal <kasal@ucw.cz>.
6758
6759         2005-09-07  Ulrich Drepper  <drepper@redhat.com>
6760
6761         * lib/regexec.c (find_recover_state): Remove unnecessary
6762         initialization.
6763         (transit_state_bkref): Make DFA a const pointer.
6764         (get_subexp): Likewise.
6765         (check_arrival): Likewise.
6766         (update_cur_sifted_state): Likewise.
6767         (re_search_internal): Likewise.
6768         (prune_impossible_nodes): Likewise.
6769         (acquire_init_state_context): Likewise.
6770         (proceed_next_node): Likewise.
6771         (set_regs): Likewise.
6772         (free_fail_stack_return): Likewise.
6773         (check_arrival_expand_ecl): Mark DFA parameter as const.
6774         (check_arrival_expand_ecl_sub): Likewise.
6775         (check_subexp_limits): Likewise.
6776         (sub_epsilon_src_nodes):  Likewise.
6777         (add_epsilon_src_nodes):  Likewise.
6778         (merge_state_array): Likewise.
6779         (update_regs): Likewise.
6780         (build_trtable): Likewise.
6781         (sift_states_backward): Mark MCTX parameter as const.
6782         (build_sifted_states): Likewise.
6783         (update_cur_sifted_state): Likewise.
6784         (sift_states_mkref): Likewise.
6785         (check_arrival_expand_ecl): Mark eclosure as const.
6786         (check_dst_limits_calc_pos_1): Likewise.
6787         * lib/regex_internal.h (re_match_context_t): Make dfa a const
6788         pointer.
6789
6790         2005-09-06  Ulrich Drepper  <drepper@redhat.com>
6791
6792         * lib/regexec.c (merge_state_with_log): Define dfa as const pointer.
6793         (transit_state_sb): Likewise.
6794         (transit_state_mb): Likewise.
6795         (sift_states_iter_mb): Likewise.
6796         (check_arrival_add_next_nodes): Likewise.
6797         (check_node_accept_bytes): Change first parameter to pointer-to-const.
6798         [_LIBC] (re_search_2_stub): Use mempcpy.
6799
6800         * lib/regex_internal.c (re_string_reconstruct): Avoid calling
6801         mbrtowc for very simple UTF-8 case.
6802
6803         * lib/regex_internal.c (re_acquire_state): Make DFA pointer arg
6804         a pointer-to-const.
6805         (re_acquire_state_context): Likewise.
6806         * lib/regex_internal.h: Adjust prototypes.
6807
6808         * lib/regex.c: Prevent using C++ compilers.
6809
6810         * lib/regex_internal.c (re_acquire_state): Minor code rearrangement.
6811         (re_acquire_state_context): Likewise.
6812
6813 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
6814
6815         * modules/regex (Depends-on): Add ssize_t.
6816
6817 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
6818
6819         * m4/regex.m4 (gl_REGEX): Check for new glibc interface to
6820         translation table.
6821
6822 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
6823
6824         * doc/gnulib-tool.texi (Modified imports): pathname -> file name.
6825
6826 2006-03-29  Mark D. Baushke  <mdb@gnu.org>
6827             Bruno Haible  <bruno@clisp.org>
6828
6829         * lib/stdint_.h: On OpenBSD, don't redefine types already included in
6830         <sys/types.h> and <inttypes.h>.
6831
6832 2006-03-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6833
6834         * m4/argz.m4 (gl_FUNC_ARGZ): If we define `error_t', also define
6835         `__error_t_defined', so argp.h will not typedef the former.
6836
6837 2006-03-25  Paul Eggert  <eggert@cs.ucla.edu>
6838
6839         * m4/regex.m4 (gl_REGEX): Don't insist on REG_SYNTAX_POSIX_EGREP,
6840         REG_SYNTAX_EMACS, and REG_IGNORE_CASE.  Settle for the traditional
6841         glibc names.  Even if glibc is changed to conform to POSIX, the
6842         traditional names will be available anyway, since regex depends on
6843         the extensions module.  Also, fix a longstanding typo in the
6844         implementation of Spencer ERE test #75 from grep 2.3.  Problems
6845         reported by Emanuele Giaquinta.  Also, change sense of cached
6846         variable, so that the message makes sense.
6847
6848 2006-03-24  Simon Josefsson  <jas@extundo.com>
6849
6850         * lib/base64.c: Fix problems reported by Eric Blake <ebb9@byu.net>,
6851         including some doc fixes.
6852         (base64_encode_alloc): Fix +1 bug on allocation failures.
6853
6854 2006-03-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6855
6856         * lib/base64.c (base64_encode): Do not read past end of array with
6857         unsanitized input on systems with CHAR_BIT > 8.
6858
6859 2006-03-24  Eric Blake  <ebb9@byu.net>
6860
6861         * lib/time_r.c (copy_string_result): Remove, as it is no longer used.
6862
6863 2006-03-22  Karl Berry  <karl@gnu.org>
6864
6865         * config/srclist.txt (*setenv.[ch]): get from coreutils.
6866         * config/srclistvars.sh (COREUTILS): new var.
6867
6868 2006-03-17  Jim Meyering  <jim@meyering.net>
6869
6870         * m4/regex.m4 (gl_REGEX): Fix typo in last change:
6871         s/_REGEX_WIDE_OFFSETS/_REGEX_LARGE_OFFSETS/.
6872
6873 2006-03-16  Paul Eggert  <eggert@cs.ucla.edu>
6874
6875         * m4/regex.m4 (gl_REGEX): Don't check for off_t, since the code
6876         no longer needs it.  Instead, check that regoff_t is as least
6877         as wide as ptrdiff_t.
6878
6879         Don't define _REGEX_WIDE_OFFSETS unless using the included regex,
6880         so that our regex.h stays compatible with the installed regex.
6881         This is helpful for installers who configure --without-included-regex.
6882         Problem reported by Emanuele Giaquinta.
6883
6884 2006-03-16  Paul Eggert  <eggert@cs.ucla.edu>
6885
6886         * lib/regex.h (regoff_t) [defined _REGEX_LARGE_OFFSETS]:
6887         Typedef to long int, not to off_, as POSIX will likely change
6888         in that direction.
6889
6890 2006-03-15  Eric Blake  <ebb9@byu.net>
6891
6892         * m4/dirfd.m4 (gl_FUNC_DIRFD): Use AC_REQUIRE for AC_HEADER_DIRENT.
6893
6894 2006-03-13  Sergey Poznyakoff  <gray@gnu.org.ua>
6895
6896         * lib/argp-help.c (validate_uparams): Fix typo
6897         * lib/argp-parse.c (argp_default_options): Consistently begin help
6898         messages with a lowercase letter.
6899
6900 2006-03-11  Paul Eggert  <eggert@cs.ucla.edu>
6901
6902         * lib/time_r.h (asctime_r, ctime_r): Remove.  These functions can
6903         overrun buffers and shouldn't be used (much as gets shouldn't be
6904         used).
6905         * lib/time_r.c (asctime_r, ctime_r): Likewise.
6906
6907 2006-03-08  Simon Josefsson  <jas@extundo.com>
6908
6909         * m4/gc-random.m4: Permit 'no' as variable values and fix warnings,
6910         suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
6911
6912 2006-03-08  Simon Josefsson  <jas@extundo.com>
6913
6914         * m4/gc-random.m4: Call AC_CANONICAL_HOST and use $host_os instead of
6915         $target, suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
6916
6917 2006-03-08  Simon Josefsson  <jas@extundo.com>
6918
6919         * lib/gc-gnulib.c (randomize): Don't open files called 'no', they
6920         signal that configure disabled the device.
6921
6922 2006-03-08  Simon Josefsson  <jas@extundo.com>
6923
6924         * build-aux/maint.mk: Fix refresh-po, to handle no translated
6925         languages.
6926
6927 2006-03-07  Simon Josefsson  <jas@extundo.com>
6928
6929         * modules/getopt (Depends-on): Add unistd.
6930
6931         * modules/unistd: New file.
6932
6933 2006-03-07  Simon Josefsson  <jas@extundo.com>
6934
6935         * modules/gc-random: New file.
6936
6937 2006-03-07  Simon Josefsson  <jas@extundo.com>
6938
6939         * m4/unistd_h.m4: New file.
6940
6941 2006-03-07  Simon Josefsson  <jas@extundo.com>
6942
6943         * m4/readline.m4 (gl_FUNC_READLINE): Rewrite the cached part of the
6944         test to be side-effect free by storing the result in the cache
6945         variable gl_cv_lib_readline, and moving the assignment of
6946         LIBREADLINE and LTLIBREADLINE outside the COMMANDS-TO-SET-IT.
6947         From Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
6948
6949 2006-03-07  Simon Josefsson  <jas@extundo.com>
6950
6951         * m4/gc-random.m4: New file, mostly from gc.m4.  Warn instead of
6952         error on missing devices (the functions will return an error).
6953
6954         * m4/gc.m4: Move random stuff to gc-random.m4
6955
6956 2006-03-07  Simon Josefsson  <jas@extundo.com>
6957
6958         * lib/unistd_.h: New file.
6959
6960 2006-03-07  Simon Josefsson  <jas@extundo.com>
6961
6962         * lib/gc-libgcrypt.c, gc-gnulib.c: Use GC_USE_RANDOM.
6963
6964 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
6965
6966         * m4/unistd_h.m4 (gl_HEADER_UNISTD): Rename, to match modules file.
6967         Problem reported by Juan Manuel Guerrero.
6968
6969 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
6970
6971         * lib/c-stack.c: Include unistd.h unconditionally, since we now assume
6972         the unistd module.
6973         * lib/getlogin_r.c: Likewise.
6974         * lib/getlogin_r.h: Likewise.
6975         * lib/glob.c: Likewise.
6976         * lib/pagealign_alloc.c: Likewise.
6977         * lib/unistd_.h: Remove; no longer needed.
6978
6979 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
6980
6981         * MODULES.html.sh (Support for systems lacking POSIX:2001):
6982         Add unistd.
6983         * modules/c-stack (Depends-on): Add unistd.
6984         * modules/getlogin_r: Likewise.
6985         * modules/glob: Likewise.
6986         * modules/pagealign_alloc: Likewise.
6987         * modules/unistd (Files): Remove lib/unistd_.h.
6988         (EXTRA_DIST): Remove.
6989         (unistd.h): Create using 'echo' rather than 'cp', so that we don't
6990         need unistd_.h.
6991         (MOSTLYCLEANFILES): Remove unistd.h-t.
6992
6993 2006-03-03  Simon Josefsson  <jas@extundo.com>
6994
6995         * build-aux/maint.mk: Add several syntax checks from CoreUtils.
6996
6997 2006-03-03  Simon Josefsson  <jas@extundo.com>
6998
6999         * build-aux/maint.mk: Add refresh-po rule, based on ideas from
7000         libidn and bison.
7001
7002 2006-03-03  Simon Josefsson  <jas@extundo.com>
7003
7004         * build-aux/maint.mk: Add indent target.
7005
7006 2006-03-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de> (tiny change)
7007
7008         * m4/poll.m4 (gl_FUNC_POLL): If we deem poll(2) unacceptable, use
7009         our replacement poll.h in any case, to avoid a differing
7010         declaration from a system header.  Seen on AIX.
7011
7012 2006-03-01  Simon Josefsson  <jas@extundo.com>
7013
7014         * lib/readline.c: Fix typo, tiny patch from Stepan Kasal
7015         <kasal@ucw.cz>.
7016
7017 2006-03-01  Paul Eggert  <eggert@cs.ucla.edu>
7018
7019         * modules/gettime (Depends-on): Add extensions module.
7020         * modules/nanosleep (Depends-on): Likewise.
7021         * modules/settime (Depends-on): Likewise.
7022
7023 2006-03-01  Paul Eggert  <eggert@cs.ucla.edu>
7024
7025         * m4/clock_time.m4 (gl_CLOCK_TIME): Require gl_USE_SYSTEM_EXTENSIONS,
7026         not merely AC_GNU_SOURCE, for the benefit of Solaris 10 when compiled
7027         pedantically.
7028         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
7029         * m4/timespec.m4 (gl_TIMESPEC): Likewise.
7030
7031         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Use "=" with "test",
7032         not "==".  Reported by Ralf Wildenhues.
7033
7034 2006-03-01  Karl Berry  <karl@gnu.org>
7035
7036         * doc/Copyright/request-*: new files, synced from gnuorg.
7037
7038 2006-03-01  Karl Berry  <karl@gnu.org>
7039
7040         * config/srclist.txt (Copyright/*): new entries.
7041
7042 2006-02-28  Simon Josefsson  <jas@extundo.com>
7043
7044         * lib/getopt.c: Protect #include of unistd.h, for MSVS.
7045
7046 2006-02-27  Simon Josefsson  <jas@extundo.com>
7047
7048         * lib/base64.h: Indent #define's.  From Jim Meyering
7049         <jim@meyering.net>.
7050
7051 2006-02-27  Jim Meyering  <jim@meyering.net>
7052
7053         Revert the change of 2006-02-24, so these files can continue
7054         to be sync'd from gettext.
7055         * lib/mkdtemp.c, setenv.c, unsetenv.c: *Un*-normalize inclusion
7056         of `config.h'.
7057
7058 2006-02-26  Paul Eggert  <eggert@cs.ucla.edu>
7059
7060         * modules/intprops: New file.
7061         * MODULES.html.sh (Numeric conversion functions <stdlib.h>):
7062         Add intprops.
7063         * modules/getloadavg (Files): Remove lib/intprops.h.
7064         (Depends-on): Add intprops.
7065         * modules/human: Likewise.
7066         * modules/inttostr: Likewise.
7067         * modules/openat: Likewise.
7068         * modules/sig2str: Likewise.
7069         * modules/userspec: Likewise.
7070         * modules/utimecmp: Likewise.
7071         * modules/xnanosleep: Likewise.
7072         * modules/xstrtol: Likewise.
7073
7074 2006-02-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny changes)
7075
7076         * modules/xstrtod: Omit xstrtod.h, xstrtod.c; they're in LIB_SOURCES.
7077         * modules/lock-tests (TESTS): Use $(EXEEXT).
7078         * modules/tls-tests: Likewise.
7079         * modules/argp-tests: Likewise.
7080         (check_PROGRAMS): New var, replacing...
7081         (noinst_PROGRAMS, test_argp_SOURCES): Remove.
7082
7083 2006-02-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7084
7085         * lib/mkdtemp.c, lib/setenv.c, lib/unsetenv.c: Normalize inclusion of
7086         `config.h'.
7087
7088 2006-02-24  Paul Eggert  <eggert@cs.ucla.edu>
7089
7090         * lib/glob.c: Say "invalid" rather than "illegal" in comments.
7091
7092 2006-02-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7093
7094         Sync from coreutils.
7095         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Require gl_FUNC_LCHMOD and
7096         gl_CHDIR_SAFER.
7097
7098 2006-02-22  Jim Meyering  <jim@meyering.net>
7099
7100         Sync from coreutils.
7101         * m4/chdir-safer.m4: New file.
7102
7103 2006-02-20  Paul Eggert  <eggert@cs.ucla.edu>
7104
7105         * lib/getcwd.c (AT_FDCWD): Work around a bug in Solaris 9 and 10, where
7106         AT_FDCWD exceeds INT_MAX.
7107         * lib/openat.h (AT_FDCWD): Likewise.
7108
7109 2006-02-17  Eric Blake  <address@hidden>
7110
7111         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Fix caching error.
7112
7113 2006-02-16  Simon Josefsson  <jas@extundo.com>
7114
7115         * modules/getaddrinfo (Depends-on): Add sys_socket.
7116
7117 2006-02-15  Simon Josefsson  <jas@extundo.com>
7118
7119         * build-aux/maint.mk: Add dsyntax-check rule.
7120
7121 2006-02-15  Eric Blake  <ebb9@byu.net>
7122
7123         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Don't attempt using
7124         winsock2.h or ws2tcpip.h when sys/socket.h is present. Fixes
7125         'present but cannot compile' warnings on cygwin.
7126         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Use gl_HEADER_SYS_SOCKET.  Don't
7127         use ws2tcpip.h if sys/socket.h works.
7128         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Use gl_HEADER_SYS_SOCKET.
7129         (gl_GETADDRINFO): Don't use ws2tcpip.h when sys/socket.h is present.
7130
7131 2006-02-14  Simon Josefsson  <jas@extundo.com>
7132
7133         * modules/maintainer-makefile (Files): Rename.
7134
7135         * build-aux/GNUmakefile: Rename Makefile.maint to maint.mk
7136         and (the local) Makefile.cfg to maint-cfg.mk.
7137
7138         * build-aux/Makefile.maint, build-aux/maint.mk: Renamed the former
7139         to the latter.
7140
7141         * modules/maintainer-makefile: New module.
7142
7143         * build-aux/Makefile.maint: New file, from GNU CoreUtils, although
7144         severaly stripped to make it possible to build it up from scratch
7145         with reliable tests.
7146
7147         * build-aux/GNUmakefile: New file, from GNU CoreUtils with some
7148         fixes to permit overriding the default actions when configure and
7149         makefile are not available.
7150
7151 2006-02-14  Paul Eggert  <eggert@cs.ucla.edu>
7152
7153         Sync from coreutils.
7154         * modules/lstat (Depends-on): Don't depend on xalloc.
7155         (License): Change from GPL to LGPL, since this is now simply a
7156         replacement for a libc function.
7157
7158 2006-02-14  Jim Meyering  <jim@meyering.net>
7159
7160         Sync from coreutils.
7161
7162         Eliminate the unwelcome (albeit unlikely) possibility of xmalloc
7163         failure on deficient systems, and simplify gnulib lgpl dependencies.
7164         * lib/lstat.c (rpl_lstat): Rewrite to use stat() in place of the
7165         xmalloc/lstat combination.  Based on a patch from Bruno Haible.
7166
7167         * lib/xalloc-die.c: Remove unused definition of N_.
7168
7169 2006-02-14  Jim Meyering  <jim@meyering.net>
7170
7171         Sync from coreutils.
7172         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Invoke
7173         AC_CHECK_FUNCS(getmntent) unconditionally so that tests of
7174         $ac_cv_func_getmntent (e.g., in gl_LIST_MOUNTED_FILE_SYSTEMS) need not
7175         double-quote uses of that variable, to accommodate the rare case in
7176         which getmntent is available in none of the libraries checked.  This
7177         happens at least on FreeBSD 5.0.
7178
7179 2006-02-13  Simon Josefsson  <jas@extundo.com>
7180
7181         * gnulib-tool (Usage): Fix --import, from
7182         karl@freefriends.org (Karl Berry).
7183
7184 2006-02-13  Sergey Poznyakoff  <gray@gnu.org.ua>
7185
7186         * lib/argp-fmtstream.c: Restore another bugfix lost on 2005-12-12
7187
7188 2006-02-07  Sergey Poznyakoff  <gray@gnu.org.ua>
7189
7190         * lib/argp-namefrob.h: Restore changes accidentally lost during the
7191         "autoupdate" on 2005-12-12.
7192
7193 2006-02-07  Paul Eggert  <eggert@cs.ucla.edu>
7194
7195         * modules/closeout (Depends-on): Remove atexit.
7196
7197 2006-02-07  Paul Eggert  <eggert@cs.ucla.edu>
7198
7199         * lib/closeout.c (close_stdout): Don't assume 'bool' converts nonzero
7200         ints to 0 or 1, as this isn't true for the stdbool.h substitute.
7201
7202 2006-02-05  Paul Eggert  <eggert@cs.ucla.edu>
7203
7204         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Don't #define
7205         __EXTENSIONS__ if this causes compilation to fail.  Problem
7206         reported by Nelson H. F. Beebe with Solaris 10 and Sun C 5.7
7207         c89 -D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED.
7208
7209 2006-01-27  Paul Eggert  <eggert@cs.ucla.edu>
7210
7211         * lib/fnmatch.c (L_): Renamed from L, to work around a bug in
7212         Mac OS X 10.3.9 with GCC 3 reported by Claudio Fontana in
7213         <http://lists.gnu.org/archive/html/bug-gnulib/2006-01/msg00074.html>.
7214         All uses changed.
7215
7216 2006-01-26  Simon Josefsson  <jas@extundo.com>
7217
7218         * lib/socket_.h: Set WINVER to 0x0501, to make sure getaddrinfo
7219         prototype is visible on mingw32.
7220
7221         * lib/getaddrinfo.h: Define EAI_ADDRFAMILY and EAI_SYSTEM if not set,
7222         for mingw32.
7223
7224         * lib/gai_strerror.c, getaddrinfo.h: Protect netdb.h #include (for
7225         mingw32).
7226
7227 2006-01-26  Paul Eggert  <eggert@cs.ucla.edu>
7228
7229         * lib/fts.c (diropen): Open with O_NOCTTY | O_NONBLOCK too.  Don't
7230         attempt to open for write; this always fails, at least on POSIX
7231         hosts.  This reinstates the 2006-01-09 change, which was
7232         inadvertently removed.
7233
7234 2006-01-26  Bruno Haible  <bruno@clisp.org>
7235
7236         * gnulib-tool (func_import): Use "trap 'exit $?' instead of "trap :".
7237         Reported by Paul Eggert.
7238
7239 2006-01-26  Bruno Haible  <bruno@clisp.org>
7240             Paul Eggert  <eggert@cs.ucla.edu>
7241
7242         * lib/stdbool_.h (_Bool)
7243         [(! (defined __cplusplus || defined __BEOS__)
7244           && !defined __GNUC__
7245           && !(defined __HP_cc || defined __xlc__
7246                || (defined __SUNPRO_C && (__SUNPRO_C < 0x550 || __STDC__ == 1))
7247                || defined __sgi))]:
7248         #define to signed char in these cases too; this simplifies
7249         the code (so that we don't have to worry about HP-UX, AIX, SunPRO,
7250         etc., separately) and makes it more conservative.
7251
7252 2006-01-25  Simon Josefsson  <jas@extundo.com>
7253
7254         * m4/getaddrinfo.m4: Look for getaddrinfo inside ws2tcip.h and
7255         -lws2_32.  Protect sys/socket.h and netdb.h #include's.  Include
7256         ws2tcpip.h with WINVER=0x0501.  All for mingw32.
7257
7258 2006-01-25  Sergey Poznyakoff  <gray@gnu.org.ua>
7259
7260         * lib/argp-namefrob.h: Bugfix. Remove stray #
7261
7262 2006-01-25  Paul Eggert  <eggert@cs.ucla.edu>
7263
7264         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check for xlc bug if __GCC__ too,
7265         so that we test the test.
7266         Check for yet another HP-UX cc bug involving *bool |= bool.
7267
7268 2006-01-25  Karl Berry  <karl@gnu.org>
7269
7270         * config/srclist.txt (vasnprintf.c): sync lost.
7271
7272 2006-01-25  Jim Meyering  <jim@meyering.net>
7273
7274         Sync from the stable (b5) branch of coreutils:
7275
7276         * lib/fts.c (fts_children): Don't let close() clobber errno from
7277         failed fchdir().
7278
7279         * lib/fts.c (fts_stat): When following a symlink-to-directory,
7280         don't necessarily interpret stat-fails+lstat-succeeds as indicating
7281         a dangling symlink.  That can also happen at least for ELOOP.
7282         The fix: return FTS_SLNONE only when the stat errno is ENOENT.
7283         FYI, this bug predates the inclusion of fts.c in coreutils.
7284
7285         * lib/fts.c (fts_open): Put new maxarglen declaration and uses
7286         in their own block, so pre-c99 compilers don't object.
7287
7288         Avoid the double-free (first in fts_read, second in fts_close) that
7289         would occur when an `active' directory is made inaccessible (e.g.,
7290         via chmod a-x) during a traversal.
7291         * lib/fts.c (fts_read): After a failed fchdir, update sp->fts_cur
7292         before returning.  Reproduce this failure by
7293         mkdir -p a/b; cd a; chmod a-x . b
7294         Reported by Stavros Passas.
7295
7296 2006-01-25  Jim Meyering  <jim@meyering.net>
7297
7298         * lib/fileblocks.c: Remove more useless parentheses.
7299         * lib/readutmp.h: Likewise.
7300
7301 2006-01-25  Bruno Haible  <bruno@clisp.org>
7302
7303         * lib/stdbool_.h (_Bool) [IRIX cc]: Define as 'signed char', to avoid
7304         warnings.
7305         Reported by Paul Eggert.
7306
7307 2006-01-25  Bruno Haible  <bruno@clisp.org>
7308
7309         * gnulib-tool (func_import): Use "trap :" instead of "trap -" to get
7310         rid of a trap command. For Solaris sh.
7311         Reported by Mark D. Baushke <mdb@gnu.org>.
7312
7313 2006-01-24  Simon Josefsson  <jas@extundo.com>
7314
7315         * lib/socket_.h (SHUT_WR, SHUT_RDWR): Don't hardcode, suggested by
7316         Bruno.
7317
7318 2006-01-24  Karl Berry  <karl@gnu.org>
7319
7320         * config/srclist.txt (argp-namefrob.h): sync lost.
7321
7322 2006-01-24  Jim Meyering  <jim@meyering.net>
7323
7324         * modules/openat (Files): Add lib/intprops.h.
7325         From Mark D. Baushke.
7326
7327 2006-01-24  Jim Meyering  <jim@meyering.net>
7328
7329         * m4/openat.m4 (gl_FUNC_OPENAT): Add AC_LIBSOURCES([intprops.h]).
7330         Reported by Mark D. Baushke.
7331
7332 2006-01-24  Jim Meyering  <jim@meyering.net>
7333
7334         * lib/socket_.h: Remove useless parentheses in uses of cpp `defined'.
7335
7336 2006-01-24  Bruno Haible  <bruno@clisp.org>
7337
7338         * modules/strnlen (Maintainer): Change from glibc to all.
7339
7340 2006-01-24  Bruno Haible  <bruno@clisp.org>
7341
7342         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check for IBM and HP-UX bugs.
7343         Patch by Paul Eggert.
7344
7345 2006-01-24  Bruno Haible  <bruno@clisp.org>
7346
7347         * lib/stdbool_.h (_Bool) [__cplusplus]: Don't define if the compiler
7348         already has it.
7349         Report and patch by Albert Chin-A-Young  <china@thewrittenword.com> on
7350         2005-11-26.
7351
7352         * lib/stdbool_.h (_Bool) [HP-UX cc, AIX cc,xlc]: Define as
7353         'signed char' to avoid problems with the built-in _Bool type.
7354         Reported by Paul Eggert on 2005-11-26.
7355
7356 2006-01-24  Bruno Haible  <bruno@clisp.org>
7357
7358         * gnulib-tool (func_import): Avoid constructing complicated sed
7359         expressions inside backquote.
7360         Report and solution by Mark D. Baushke <mdb@gnu.org>.
7361
7362 2006-01-23  Ulrich Drepper  <drepper@redhat.com>
7363
7364         These changes imported from libc.
7365         * lib/getopt.c: Use __fxprintf instead of inline stream orientation
7366         test and two separate function calls.
7367         * lib/strndup.c (__strndup): Add libc_hidden_def.
7368
7369 2006-01-23  Simon Josefsson  <jas@extundo.com>
7370
7371         * modules/lock-tests: Use check_PROGRAMS instead of noinst_PROGRAMS.
7372         Remove the test_*_SOURCES variable: automake infers it by default.
7373         * modules/tls-tests: Likewise.
7374
7375 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
7376
7377         Work around porting bugs reported by Dieter in
7378         <http://lists.gnu.org/archive/html/bug-bison/2006-01/msg00049.html>.
7379         * lib/getopt.c (_NOPROTO): Remove; no longer needed.
7380         Include <stdlib.h> and <unistd.h> in all environments; it's safe now.
7381         Include "getopt.h" first, to check interface.
7382         (getenv): Declare only if defined HAVE_DECL_GETENV &&
7383         !HAVE_DECL_GETENV.
7384         * lib/strndup.c [!_LIBC]: Include "strndup.h" to get prototype.
7385         (__strndup): Revert to K&R-style function dfns, the glibc style.
7386         * lib/strnlen.c: Don't claim it's taken from glibc; it's not.
7387         (strnlen, __strnlen): Remove #defines and #undefs; not needed.
7388         Include strnlen.h first, to get prototype properly.
7389         (strnlen): Renamed from __strnlen.
7390         Remove weak alias.
7391
7392 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
7393
7394         * m4/getopt.m4 (gl_PREREQ_GETOPT): Check for getenv decl.
7395
7396 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
7397
7398         * config/srclist.txt: Adjust to reflect glibc reorganization.
7399         This affects only comments.
7400
7401 2006-01-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
7402
7403          * gnulib-tool, build-aux/csharpcomp.sh.in: Do not pass `-q' to mktemp.
7404          Reported by Bruce Korb <bkorb@gnu.org>.
7405
7406 2006-01-22  Paul Eggert  <eggert@cs.ucla.edu>
7407
7408         * lib/quotearg.c (quotearg_buffer_restyled): Add "default: break;"
7409         to pacify gcc -Wswitch-default.
7410
7411 2006-01-22  Bruno Haible  <bruno@clisp.org>
7412
7413         * lib/vasnprintf.c (VASNPRINTF): In the computation of the size of the
7414         temporary buffer for sprintf, take into account the precision also
7415         for 'd', 'i', 'u', 'o', 'x', 'X'.
7416
7417 2006-01-21  Sergey Poznyakoff  <gray@gnu.org.ua>
7418
7419         * modules/argp-tests: New module
7420         * tests/test-argp.c: New file
7421         * tests/test-argp-2.sh: New file
7422
7423 2006-01-21  Sergey Poznyakoff  <gray@gnu.org.ua>
7424
7425         * lib/argp-help.c (usage_long_opt): Do not print DOC options.
7426         (__argp_base_name): Removed
7427         * lib/argp-namefrob.h (__argp_basename): Removed definition. Was a
7428         typo.
7429         (__argp_base_name): Provide macro definition or extern declaration
7430         depending on the configuration
7431
7432 2006-01-20  Simon Josefsson  <jas@extundo.com>
7433
7434         * modules/inet_ntop (Depends-on): Depend on sys_socket.
7435
7436 2006-01-20  Simon Josefsson  <jas@extundo.com>
7437
7438         * lib/inet_ntop.h: Unconditionally include sys/socket.h.
7439
7440 2006-01-20  Paul Eggert  <eggert@cs.ucla.edu>
7441
7442         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Use -Wl,-z,ignore
7443         rather than -Xlinker -z -Xlinker ignore, as it's more portable.
7444         Suggested by Bruno Haible.
7445
7446 2006-01-20  Karl Berry  <karl@gnu.org>
7447
7448         * config/srclist.txt (argp-fmtstream.h, localcharset.c): comment out
7449         until changes propagate, I guess.
7450
7451 2006-01-19  Simon Josefsson  <jas@extundo.com>
7452
7453         * m4/socklen.m4: Look in ws2tcpip.h too, for mingw32.
7454
7455 2006-01-19  Simon Josefsson  <jas@extundo.com>
7456
7457         * lib/socket_.h: Map SHUT_RD, SHUT_WR, SHUT_RDWR correctly.
7458
7459 2006-01-19  Simon Josefsson  <jas@extundo.com>
7460
7461         * gnulib-tool: Set check_PROGRAMS.
7462
7463         * modules/arcfour-tests, modules/arctwo-tests, modules/crc-tests,
7464         modules/des-tests, modules/gc-arcfour-tests,
7465         modules/gc-arctwo-tests, modules/gc-des-tests,
7466         modules/gc-hmac-md5-tests, modules/gc-hmac-sha1-tests,
7467         modules/gc-md2-tests, modules/gc-md4-tests, modules/gc-md5-tests,
7468         modules/gc-pbkdf2-sha1-tests, modules/gc-rijndael-tests,
7469         modules/gc-sha1-tests, modules/gc-tests, modules/hmac-md5-tests,
7470         modules/hmac-sha1-tests, modules/md2-tests, modules/md4-tests,
7471         modules/md5-tests, modules/readline, modules/rijndael-tests: Use
7472         check_PROGRAMS instead of noinst_PROGRAMS to be able to remove
7473         test_*_SOURCES.
7474
7475 2006-01-18  Simon Josefsson  <jas@extundo.com>
7476
7477         * modules/socklen (Depends-on): Depend on sys_socket.
7478
7479 2006-01-18  Simon Josefsson  <jas@extundo.com>
7480
7481         * modules/arcfour-tests, modules/arctwo-tests, modules/crc-tests,
7482         modules/des-tests, modules/gc-arcfour-tests,
7483         modules/gc-arctwo-tests, modules/gc-des-tests,
7484         modules/gc-hmac-md5-tests, modules/gc-hmac-sha1-tests,
7485         modules/gc-md2-tests, modules/gc-md4-tests, modules/gc-md5-tests,
7486         modules/gc-pbkdf2-sha1-tests, modules/gc-rijndael-tests,
7487         modules/gc-sha1-tests, modules/gc-tests, modules/hmac-md5-tests,
7488         modules/hmac-sha1-tests, modules/md2-tests, modules/md4-tests,
7489         modules/md5-tests, modules/readline, modules/rijndael-tests: Add
7490         $(EXEEXT) to automake TESTS variable, for mingw32.
7491
7492 2006-01-17  Simon Josefsson  <jas@extundo.com>
7493
7494         * modules/socklen (Include): Need sys/socket.h.
7495
7496 2006-01-17  Bruno Haible  <bruno@clisp.org>
7497
7498         * modules/ssize_t (Include): Add <sys/types.h>.
7499
7500 2006-01-16  Paul Eggert  <eggert@cs.ucla.edu>
7501
7502         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Don't use ldd, as
7503         it's not portable and it doesn't work with cross-compiles.
7504         Problem reported by Bruno Haible.  Fix missing-$ typo in
7505         'test "gl_cv_ignore_unused_libraries" ...' that prevented
7506         -zignore from being used with Sun's C compiler.
7507
7508 2006-01-12  Simon Josefsson  <jas@extundo.com>
7509
7510         * lib/base64.c: Fix warning, reported by Bruno Haible
7511         <bruno@clisp.org> and patch by Paul Eggert <eggert@CS.UCLA.EDU>.
7512
7513 2006-01-12  Bruno Haible  <bruno@clisp.org>
7514
7515         * modules/ldd: New file.
7516         * build-aux/ldd.sh.in: New file.
7517         * MODULES.html.sh (Support for building libraries and executables): Add
7518         ldd.
7519
7520 2006-01-12  Bruno Haible  <bruno@clisp.org>
7521
7522         * m4/ldd.m4: New file.
7523
7524 2006-01-12  Bruno Haible  <bruno@clisp.org>
7525
7526         * gnulib-tool (func_import, func_create_testdir): Don't go into an
7527         endless loop while replacing $auxdir with build-aux.
7528
7529 2006-01-11  Simon Josefsson  <jas@extundo.com>
7530
7531         * lib/stdint_.h (SIZE_MAX): Add missing (.
7532
7533 2006-01-11  Paul Eggert  <eggert@cs.ucla.edu>
7534
7535         Sync from coreutils.
7536         * lib/md5.c: Fix commentary typos.
7537         (alignof, UNALIGNED_P): No need for a GCC-specific version.
7538         * lib/md5.h (__attribute__): Remove; unused.
7539         * lib/sha1.c: Fix commentary to match md5 better.
7540         * lib/sha1.h (struct sha1_ctx): Use a word buffer, not a byte buffer,
7541         so that we don't need to worry about alignment.  All uses changed.
7542         This merges the 2005-10-28 md5 change into sha1.
7543
7544 2006-01-11  Jim Meyering  <jim@meyering.net>
7545
7546         Sync from coreutils.
7547         * lib/md5.c (OP): Fix spacing.
7548
7549 2006-01-11  Bruno Haible  <bruno@clisp.org>
7550
7551         Ensure automatic ordering between gl_LOCK and gl_ARGP.
7552         * m4/lock.m4 (gl_LOCK_BODY): Renamed from gl_LOCK.
7553         (gl_LOCK): New macro, requiring gl_LOCK_BODY.
7554
7555 2006-01-11  Bruno Haible  <bruno@clisp.org>
7556
7557         Ensure automatic ordering between gl_LOCK and gl_ARGP.
7558         * gnulib-tool (func_import, func_create_testdir): Put gl_LOCK into
7559         the "early" section as well.
7560
7561 2006-01-11  Bruno Haible  <bruno@clisp.org>
7562
7563         Avoid "ar: no archive members specified" error on MacOS X.
7564         * gnulib-tool (func_modules_add_dummy): New function.
7565         (func_import, func_create_testdir): Invoke it.
7566
7567 2006-01-11  Bruno Haible  <bruno@clisp.org>
7568
7569         * gnulib-tool (func_import, func_create_testdir): Replace build-aux
7570         with $auxdir in AC_CONFIG_FILES statements.
7571
7572 2006-01-11  Bruno Haible  <bruno@clisp.org>
7573
7574         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
7575         Initialize also noinst_HEADERS to empty.
7576
7577 2006-01-11  Bruno Haible  <bruno@clisp.org>
7578
7579         * gnulib-tool (AUTOMAKEPATH, AUTOCONF, ACLOCAL, AUTOMAKE): New
7580         variables.
7581         (func_create_megatestdir): Call aclocal, autoconf, automake here, not
7582         autoreconf.
7583
7584 2006-01-11  Bruno Haible  <bruno@clisp.org>
7585
7586         * gnulib-tool (AUTOCONF, ACLOCAL, AUTOMAKE, AUTORECONF): Make
7587         overridable by the user.
7588         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
7589
7590 2006-01-10  Simon Josefsson  <jas@extundo.com>
7591
7592         * modules/sys_socket: New file.
7593
7594 2006-01-10  Simon Josefsson  <jas@extundo.com>
7595
7596         * m4/sys_socket_h.m4: New file.
7597
7598 2006-01-10  Simon Josefsson  <jas@extundo.com>
7599
7600         * lib/socket_.h: New file.
7601
7602 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
7603
7604         * modules/readutmp (Maintainer): Add myself.
7605
7606 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
7607
7608         * m4/memcoll.m4 (gl_MEMCOLL): Don't require AC_FUNC_MEMCMP, undoing
7609         the 2002-12-31 change.  Problem and fix reported by Bruno Haible.
7610         People who are still concerned with buggy memcmp implementations
7611         can invoke gl_FUNC_MEMCMP themselves.
7612
7613 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
7614
7615         * lib/regex_internal.h (BITSET_WORD_BITS):
7616         Work around a bug in 64-bit PGC (before version 6.1-2), where the
7617         preprocessor mishandles large unsigned values as if they were signed.
7618         Problem reported by Claudio Fontana in
7619         <http://lists.gnu.org/archive/html/bug-gnulib/2005-12/msg00061.html>.
7620
7621 2006-01-10  Jim Meyering  <jim@meyering.net>
7622
7623         Avoid the double-free (first in fts_read, second in fts_close) that
7624         would occur when an `active' directory is made inaccessible (e.g.,
7625         via chmod a-x) during a traversal.
7626         * lib/fts.c (fts_read): After a failed fchdir, update sp->fts_cur
7627         before returning.  Reproduce this failure by
7628         mkdir -p a/b; cd a; chmod a-x . b
7629         Reported by Stavros Passas.
7630
7631         Sync from coreutils.
7632         * lib/sha1.c: Tweak grammar in a comment.
7633
7634 2006-01-10  Jim Meyering  <jim@meyering.net>
7635
7636         * m4/fpending.m4: Also include <stdio.h>, for Dragonfly.
7637         Patch by Joerg Sonnenberger.
7638
7639 2006-01-10  Bruno Haible  <bruno@clisp.org>
7640
7641         * modules/readutmp: Depend on module free.
7642         * modules/strtok_r: Depend on module restrict.
7643
7644 2006-01-10  Bruno Haible  <bruno@clisp.org>
7645
7646         * modules/gettext (configure.ac): Add an invocation of
7647         AM_GNU_GETTEXT_VERSION. Needed since autoreconf is used by gnulib-tool.
7648
7649 2006-01-10  Bruno Haible  <bruno@clisp.org>
7650
7651         * m4/localcharset.m4 (gl_LOCALCHARSET): Also test for getc_unlocked.
7652         Reported by Werner Lemberg <wl@gnu.org>.
7653
7654 2006-01-10  Bruno Haible  <bruno@clisp.org>
7655
7656         * lib/localcharset.c: Update from GNU gettext.
7657
7658 2006-01-10  Bruno Haible  <bruno@clisp.org>
7659
7660         * lib/argp.h (__const): Remove macro. Use const instead.
7661         * lib/argp-fmtstream.h (__const): Likewise.
7662         * lib/glob_.h (__const): Remove macro.
7663         * lib/glob-libc.h: Use const instead of __const.
7664
7665 2006-01-10  Bruno Haible  <bruno@clisp.org>
7666
7667         * gnulib-tool (func_emit_tests_Makefile_am): Emit an empty SUBDIR
7668         variable.
7669         Needed to avoid an automake error regarding the 'gettext' module.
7670
7671 2006-01-09  Simon Josefsson  <jas@extundo.com>
7672
7673         * modules/inet_ntop (Depends-on): Add restrict.
7674
7675 2006-01-09  Simon Josefsson  <jas@extundo.com>
7676
7677         * modules/gc-rijndael-tests (License): Put under LGPL.
7678
7679         * modules/gc-des-tests (License): Likewise.
7680
7681         * modules/gc-arcfour-tests (License): Likewise.
7682
7683         * modules/gc-arctwo-tests (License): Likewise.
7684
7685         * modules/gc-pbkdf2-sha1-tests (License): Likewise.
7686
7687         * modules/gc-hmac-sha1-tests (Files): Likewise.
7688
7689         * modules/gc-hmac-md5-tests (License): Likewise.
7690
7691         * modules/gc-sha1-tests (License): Likewise.
7692
7693         * modules/gc-md5-tests (License): Likewise.
7694
7695         * modules/gc-md4-tests (License): Likewise.
7696
7697         * modules/gc-md2-tests (License): Likewise.
7698
7699         * modules/gc-tests (License): Likewise.
7700
7701         * modules/des-tests (License): Likewise.
7702
7703         * modules/md4-tests (License): Likewise.
7704
7705         * modules/md2-tests (License): Likewise.
7706
7707 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
7708
7709         Sync from coreutils:
7710
7711         * MODULES.html.sh (build_lib): New section, with new lib-ignore module.
7712         * modules/lib-ignore: New file.
7713         * modules/mkdir-p (Files): Add chdir-safer.c, chdir-safer.h, lchmod.h,
7714         chdir-safer.m4, lchmod.m4.
7715         * modules/openat: Add mkdirat.c, openat-priv.h.
7716
7717 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
7718
7719         Sync from coreutils.
7720         * m4/lib-ignore.m4: New file.
7721         * m4/lchmod.m4: New file.
7722
7723 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
7724
7725         Sync from coreutils.
7726         * lib/chdir-long.c (cdb_free): Don't bother trying to open directory
7727         for write access: POSIX says that must fail.
7728         * lib/fts.c (diropen): Likewise.
7729         * lib/save-cwd.c (save_cwd): Likewise.
7730         * lib/chdir-long.c (cdb_free): Open with O_NOCTTY | O_NONBLOCK as
7731         well, for minor improvements on hosts that lack O_DIRECTORY.
7732         * lib/chown.c (rpl_chown) [CHOWN_MODIFIES_SYMLINK]:
7733         Don't try O_WRONLY unless O_RDONLY failed wth EACCES.
7734         Fall back on chown if open failed with EACCES.
7735
7736         * lib/gettime.c (gettime) [!defined OK_TO_USE_1S_CLOCK]:
7737         Report an error at compile-time if only a 1-second nominal clock
7738         resolution is found.
7739
7740         * lib/lchmod.h: New file.
7741         * lib/mkdir-p.c: Include lchmod.h, lchown.h.
7742         (make_dir_parents): Use lchown rather than chown, and
7743         lchmod rather than chmod.
7744
7745         * lib/mountlist.c (ME_DUMMY): "none" and "proc" file systems are
7746         dummies too.  Problem with "none" reported by Bob Proulx.  Problem with
7747         "proc" reported by n0dalus.
7748
7749         * lib/mountlist.c: Include <limits.h>.
7750         (dev_from_mount_options)
7751         [defined MOUNTED_GETMNTENT1 || defined MOUNTED_GETMNTENT2]:
7752         New function.  It no longer assumes "dev=" has the System V meaning
7753         on Linux (since it doesn't).  It also parses "dev=" more carefully.
7754         (read_file_system_list)
7755         [defined MOUNTED_GETMNTENT1 || defined MOUNTED_GETMNTENT2]: Use it.
7756         MOUNTED_GETMNTENT2 is new here; the code didn't used to look for
7757         dev= in that case.
7758
7759         * lib/posixtm.h (PDS_PRE_2000): New macro.
7760         * lib/posixtm.c (year): Arg is now syntax_bits rather than
7761         allow_century.  All usages changed.  Reject dates outside the range
7762         1969-1999 if PDS_PRE_2000 is used.
7763
7764 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
7765
7766         Sync from coreutils.
7767         * doc/getdate.texi (General date syntax): Invalid dates are rejected.
7768         (Time of day items): Mention the possibility of leap seconds.
7769         Problem reported by Dr. David Alan Gilbert.
7770
7771 2006-01-09  Jim Meyering  <jim@meyering.net>
7772
7773         Sync from coreutils.
7774
7775         * lib/version-etc.c (COPYRIGHT_YEAR): Update to 2006.
7776
7777         * lib/chdir-safer.h, lib/chdir-safer.c: New files.
7778
7779         * lib/modechange.c (mode_compile): Reject an invalid mode string
7780         that starts with an octal digit.  From Andreas Gruenbacher.
7781
7782         * lib/openat.c: Include "fcntl--.h" and "unistd--.h", to map open
7783         and dup to open_safer and dup_safer, respectively.
7784         (openat_permissive): Fix typo in comment.
7785
7786         * lib/openat.c: Don't include <stdlib.h>, <unistd.h>, <fcntl.h>,
7787         "gettext.h"; either no longer needed or are guaranteed by openat.h.
7788         (_): Remove; no longer needed.
7789         (openat): Renamed from rpl_openat; no need for rpl_openat
7790         since openat.h renames openat for us.
7791         Replace most of the body with a call to openat_permissive,
7792         to avoid duplicate code.
7793         Port to (probably hypothetical) environments were mode_t is
7794         wider than int.
7795         (openat_permissive): Require mode arg, so that we can check
7796         types better.  Put it just after flags.  Change cwd failure
7797         indicator from pointer-to-bool to pointer-to-errno-value.
7798         All callers changed.
7799         Invoke openat_save_fail and/or openat_restore_fail if
7800         cwd_errno is null, so that openat can call us.
7801         (openat_permissive, fdopendir, fstatat, unlinkat):
7802         Simplify errno handling to avoid some duplicate code,
7803         as it's OK to set errno on success.
7804         * lib/openat.h: Revamp code so that function macros depend on
7805         __OPENAT_PREFIX only, not also on AT_FDCWD.
7806         (openat_ro): Remove.  Caller changed to use openat_permissive.
7807         (openat_permissive): Now a macro, if not a function.
7808         (openat_restore_fail, openat_save_fail): Now always functions,
7809         since mkdirat needs them even if __OPENAT_PREFIX is defined.
7810
7811         * lib/openat-priv.h: New file, defining macros used by mkdirat.c
7812         and openat.c.
7813         * lib/mkdirat.c: Include openat-priv.h.
7814         Remove definitions of macros defined therein.
7815         * lib/openat.c: Likewise.
7816
7817         * lib/mkdirat.c (mkdirat): New file and function.
7818         * lib/openat.h (mkdirat): Declare.
7819
7820         * lib/openat.c (fdopendir): Don't change errno when returning non-NULL.
7821
7822         * lib/openat.h (openat_permissive): Declare.
7823         (openat_ro): Define.
7824
7825         * lib/openat.c (EXPECTED_ERRNO): New macro.
7826         (openat_permissive): New function -- used in remove.c rewrite.
7827         (all functions): Set errno just before returning, only if there
7828         was an actual failure.
7829         Use EXPECTED_ERRNO rather than comparing against only ENOTDIR.
7830
7831         Emulate openat-family functions using Linux's procfs, if possible.
7832         Idea and some code based on Ulrich Drepper's glibc changes.
7833
7834         * lib/openat.c: (BUILD_PROC_NAME): New macro.
7835         Include <stdio.h>, <string.h>, "alloca.h" and "intprops.h".
7836         (rpl_openat): Emulate by trying to open /proc/self/fd/%d/%s,
7837         before falling back on save_cwd and restore_cwd.
7838         (fdopendir, fstatat, unlinkat): Likewise.
7839
7840         * lib/openat.c (fstatat, unlinkat): Perform the syscall directly,
7841         skipping the save_cwd...restore_cwd overhead, if FILE is absolute.
7842
7843         * lib/openat.c (rpl_openat): Use the promoted type (int), not mode_t,
7844         as second argument to va_arg.  Otherwise, some versions of gcc
7845         warn that `if this code is reached, the program will abort'.
7846
7847 2006-01-09  Jim Meyering  <jim@meyering.net>
7848
7849         Sync from coreutils.
7850         * m4/openat.m4 (gl_FUNC_OPENAT): Require and compile mkdirat.c.
7851         Require openat-priv.h.
7852
7853 2006-01-09  Bruno Haible  <bruno@clisp.org>
7854
7855         * modules/strnlen (Include): Use strnlen.h.
7856
7857 2006-01-09  Bruno Haible  <bruno@clisp.org>
7858
7859         * m4/stdint.m4 (gl_STDINT_H): Also test for <sys/bitypes.h>.
7860
7861 2006-01-09  Bruno Haible  <bruno@clisp.org>
7862
7863         * lib/sysexit_.h (EX_OK): New macro.
7864         Suggested by Martin Lambers <marlam@marlam.de>.
7865
7866 2006-01-09  Bruno Haible  <bruno@clisp.org>
7867
7868         * lib/stdint_.h: On Linux libc4 and libc5, include <sys/bitypes.h> and
7869         don't define _STDINT_H_NEED_SIGNED_INT_TYPES.
7870
7871 2006-01-09  Bruno Haible  <bruno@clisp.org>
7872
7873         * lib/stdint_.h (SIZE_MAX): Write the value without involving negative
7874         numbers.
7875
7876 2006-01-09  Bruno Haible  <bruno@clisp.org>
7877
7878         * lib/javacomp.sh.in: Move to ../build-aux/javacomp.sh.in.
7879         * lib/javaexec.sh.in: Move to ../build-aux/javaexec.sh.in.
7880         * lib/csharpcomp.sh.in: Move to ../build-aux/csharpcomp.sh.in.
7881         * lib/csharpexec.sh.in: Move to ../build-aux/csharpexec.sh.in.
7882
7883 2006-01-09  Bruno Haible  <bruno@clisp.org>
7884
7885         * build-aux/javacomp.sh.in: New file, moved from lib/.
7886         * modules/javacomp-script (Files): Update.
7887         (configure.ac): Add AC_CONFIG_FILES invocation.
7888         (EXTRA_DIST): Remove variable.
7889
7890         * build-aux/javaexec.sh.in: New file, moved from lib/.
7891         * modules/javaexec (Files): Update.
7892         (configure.ac): Add AC_CONFIG_FILES invocation.
7893         (EXTRA_DIST): Remove javaexec.sh.in.
7894
7895         * build-aux/csharpcomp.sh.in: New file, moved from lib/.
7896         * modules/csharpcomp-script (Files): Update.
7897         (configure.ac): Add AC_CONFIG_FILES invocation.
7898         (EXTRA_DIST): Remove variable.
7899
7900         * build-aux/csharpexec.sh.in: New file, moved from lib/.
7901         * modules/csharpexec (Files): Update.
7902         (configure.ac): Add AC_CONFIG_FILES invocation.
7903         (EXTRA_DIST): Remove csharpexec.sh.in.
7904
7905 2006-01-09  Andreas Gruenbacher  <agruen@suse.de>
7906
7907         Sync from coreutils.
7908
7909         Add POSIX ACL support
7910         * lib/acl.h (copy_acl, set_acl): Add declarations.
7911         * lib/acl.c (acl_entries): Add fallback implementation for POSIX ACL
7912         systems other than Linux.
7913         (chmod_or_fchmod): New function: use fchmod when possible,
7914         and chmod otherwise.
7915         (file_has_acl): Add a POSIX ACL implementation, with a
7916         Linux-specific subcase.
7917         (copy_acl): Add: copy an acl and S_ISUID, S_ISGID, and
7918         S_ISVTX from one file to another.  Fall back to fchmod/chmod when
7919         acls are unsupported.
7920         (set_acl): Add: set a file's acl and S_ISUID, S_ISGID, and
7921         S_ISVTX to a defined value.  Fall back to fchmod/chmod when acls
7922         are unsupported.
7923
7924 2006-01-09  Andreas Gruenbacher  <agruen@suse.de>
7925
7926         Sync from coreutils.
7927         * m4/acl.m4 (AC_FUNC_ACL): Add POSIX ACL and Linux-specific acl tests.
7928
7929 2006-01-07  Bruno Haible  <bruno@clisp.org>
7930
7931         * gnulib-tool (func_import): Add an AC_PROG_RANLIB dependency to
7932         gl_EARLY.
7933
7934 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
7935
7936         * lib/strftime.c (tzname): Don't declare if it is already #defined.
7937         Problem reported for Mingw by Mark Junker.
7938
7939 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
7940
7941         * README: Gnulib normally doesn't generate a tarball.
7942
7943 2006-01-03  Paul Eggert  <eggert@cs.ucla.edu>
7944
7945         * lib/xtime.h (xtime_make, xtime_nonnegative_nsec, xtime_nsec): Use
7946         long int, not int, for nanosecond counts, so that people who are
7947         used to POSIX struct timespec won't be surprised.  Reported by Jim
7948         Meyering.
7949
7950 2005-12-28  Bruno Haible  <bruno@clisp.org>
7951
7952         * build-aux/config.rpath: Update from GNU gettext.
7953
7954 2005-12-16  Jim Meyering  <jim@meyering.net>
7955
7956         * modules/fprintftime: New module.
7957         * MODULES.html.sh (Date and time <time.h>): Add fprintftime.
7958
7959 2005-12-16  Jim Meyering  <jim@meyering.net>
7960
7961         * m4/fprintftime.m4: New file.
7962
7963 2005-12-16  Jim Meyering  <jim@meyering.net>
7964
7965         * lib/fprintftime.c, lib/fprintftime.h: New files.
7966
7967 2005-12-15  Simon Josefsson  <jas@extundo.com>
7968
7969         * modules/socklen (configure.ac): Fix M4 macro name, to align with
7970         new m4/socklen.m4.
7971
7972 2005-12-10  Sergey Poznyakoff  <gray@gnu.org.ua>
7973
7974         * m4/argp.m4: Define HAVE_DECL_PROGRAM_INVOCATION_NAME and
7975         HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME
7976
7977 2005-12-10  Sergey Poznyakoff  <gray@gnu.org.ua>
7978
7979         * lib/argp-fmtstream.c (__argp_fmtstream_update): Fix coredump
7980         * lib/argp-help.c (fill_in_uparams): Check if the constructed
7981         struct uparams is valid. Fall back to the default values if it is
7982         not.
7983
7984 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
7985
7986         * modules/argp (Files): Add argp-pin.c
7987         (Depends-on): dirname
7988         (lib_SOURCES): Add argp-pin.c
7989
7990 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
7991
7992         * m4/argp.m4:  Check if program_invocation_name and
7993         program_invocation_short_name are declared and define appropriate
7994         macros if they are not.
7995
7996 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
7997
7998         * lib/argp-help.c (__argp_base_name): New function
7999         (__argp_short_program_name): Rewrite using __argp_base_name
8000         * lib/argp-namefrob.h: Define program_invocation_name and
8001         program_invocation_short_name if requested
8002         (__argp_base_name): Add prototype
8003         * lib/argp-parse.c (argp_def): Use gettext wrappers
8004         (argp_default_parser): Use __argp_base_name
8005         * lib/argp-pin.c: New file. Defines program_invocation_name and
8006         program_invocation_short_name on systems that lack them.
8007
8008 2005-12-07  Paul Eggert  <eggert@cs.ucla.edu>
8009
8010         * m4/stat-time.m4 (gl_STAT_TIME): Add check for
8011         TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC, to fix IRIX 5.3
8012         porting problem reported by Georg Schwarz in
8013         <http://lists.gnu.org/archive/html/bug-coreutils/2005-12/msg00083.html>.
8014
8015 2005-12-07  Paul Eggert  <eggert@cs.ucla.edu>
8016
8017         * lib/stat-time.h (STATE_TIMESPEC, STAT_TIMESPEC_NS): Add check for
8018         TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC, to fix IRIX 5.3
8019         porting problem reported by Georg Schwarz in
8020         <http://lists.gnu.org/archive/html/bug-coreutils/2005-12/msg00083.html>.
8021
8022 2005-12-05  Bruno Haible  <bruno@clisp.org>
8023
8024         * lib/csharpcomp.sh.in (options_csc): For -l option, add a .dll suffix.
8025         * lib/csharpcomp.c (compile_csharp_using_sscli): Likewise.
8026         Reported by Mark Junker <mjscod@gmx.de>.
8027
8028 2005-12-02  Paul Eggert  <eggert@cs.ucla.edu>
8029
8030         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Renamed from gl_SOCKLEN_T.
8031         Use implementation from Albert Chin, with some
8032         comments/corrections by Stepan Kasal and myself.
8033
8034 2005-12-02  Bruno Haible  <bruno@clisp.org>
8035
8036         * gnulib-tool (func_import): Accept GPLed build tool modules when
8037         --lgpl is given.
8038         * modules/csharpcomp-script: New file.
8039         * modules/csharpcomp: Depend on it.
8040         * modules/javacomp-script: New file.
8041         * modules/javacomp: Depend on it.
8042         Suggested by Simon Josefsson.
8043
8044 2005-12-01  Paul Eggert  <eggert@cs.ucla.edu>
8045
8046         * m4/regex.m4 (gl_REGEX): Check whether off_t can be used in a switch
8047         statement, to work around an HP-UX 10.20 compiler bug reported by
8048         Peter O'Gorman.
8049
8050 2005-11-29  Paul Eggert  <eggert@cs.ucla.edu>
8051
8052         * modules/savedir (Depends-on): Add openat.
8053
8054 2005-11-29  Paul Eggert  <eggert@cs.ucla.edu>
8055
8056         * lib/stdint_.h (intmax_t) [defined intmax_t]: Do not declare.
8057         (uintmax_t) [defined uintmax_t]: Do not declare.
8058         (SIZE_MAX) [defined SIZE_MAX]: Do not define.
8059         This works around a problem if intmax_t.m4 and/or uintmax_t.m4
8060         and/or size_max.m4 are also used.  Problem reported by Mark D. Baushke.
8061         (SIZE_MAX): Define to ((size_t) -1), not (~(size_t)0), for the
8062         sake of portability to weird hosts that C allows (though we don't
8063         know of any practical examples).
8064
8065         * lib/savedir.h (fdsavedir): New decl.
8066         * lib/savedir.c (fdsavedir, savedirstream): New functions; the latter
8067         contains most of the former guts of savedir.
8068         (savedir): Use savedirstream.
8069         Include "openat.h".
8070
8071 2005-11-25  Paul Eggert  <eggert@cs.ucla.edu>
8072
8073         * modules/obstack (Files): Add m4/ulonglong.m4.
8074         Problem reported by Davide Angelocola.
8075
8076 2005-11-15  Paul Eggert  <eggert@cs.ucla.edu>
8077
8078         * lib/xstrtod.c: Don't bother with #pragma STDC FENV_ACCESS ON, as
8079         coreutils no longer futzes with rounding modes.
8080
8081 2005-11-14  Jim Meyering  <jim@meyering.net>
8082
8083         * lib/mkstemp-safer.c: Include <config.h>, required for possible
8084         replacement of mkstemp.
8085
8086 2005-11-10  Simon Josefsson  <jas@extundo.com>
8087
8088         * lib/readline.c: Remove EOL.
8089
8090 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
8091
8092         * modules/gethrxtime (Depends-on): Add gettime.
8093
8094 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
8095
8096         * m4/gethrxtime.m4 (gl_PREREQ_GETHRXTIME): Don't require AC_HEADER_TIME
8097         or gettimeofday; no longer needed.
8098
8099 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
8100
8101         * lib/gethrxtime.c: Include "timespec.h" rather than the sys/time /
8102         time business.
8103         (gethrxtime) [! (HAVE_NANOUPTIME
8104         || (defined CLOCK_MONOTONIC && HAVE_CLOCK_GETTIME)
8105         || HAVE_MICROUPTIME)]: Fall back on gettime rather than rolling
8106         our own approximation.
8107
8108 2005-11-08  Eric Blake  <ebb9@byu.net>
8109
8110         * lib/inet_ntop.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
8111
8112 2005-11-08  Eric Blake  <ebb9@byu.net>
8113
8114         * lib/getaddrinfo.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
8115
8116 2005-11-04  Bruno Haible  <bruno@clisp.org>
8117
8118         * gnulib-tool: Implement --update mode.
8119
8120 2005-10-30  Paul Eggert  <eggert@cs.ucla.edu>
8121
8122         Fix porting problem reported by Theodoros V. Kalamatianos.
8123         * lib/utimens.c (futimens) [HAVE_WORKING_UTIMES && HAVE_FUTIMES]:
8124         Don't assume that futimes failing means we must fail.
8125
8126 2005-10-30  Paul Eggert  <eggert@cs.ucla.edu>
8127
8128         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Revamp wording and local
8129         variables to suggest the intended function of the PATH_MAX check.
8130
8131 2005-10-30  Kean Johnston  <jkj@sco.com>
8132
8133         Trivial changes to support SCO systems.
8134         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Check for MAXPATHLEN as well
8135         as PATH_MAX.
8136         * m4/fpending.m4 (gl_FUNC_FPENDING): Correct check for SCO systems,
8137         where __ptr is null when no I/O is pending.
8138
8139 2005-10-29  Paul Eggert  <eggert@cs.ucla.edu>
8140
8141         * lib/getcwd.c (__getcwd): Don't assume that system calls after readdir
8142         leave errno alone.  Problem reported by Dmitry V. Levin.
8143
8144 2005-10-28  Simon Josefsson  <jas@extundo.com>
8145
8146         * tests/test-gc-md4.c, tests/test-gc-md5.c, tests/test-gc-sha1.c:
8147         Test more.
8148
8149         * tests/test-gc-md2.c, tests/test-md2.c: New files.
8150
8151         * modules/md2, modules/md2-tests: New files.
8152
8153 2005-10-28  Simon Josefsson  <jas@extundo.com>
8154
8155         * m4/inet_ntop.m4: More tests.
8156
8157         * m4/gc-md2.m4, md2.m4: New file.
8158
8159 2005-10-28  Simon Josefsson  <jas@extundo.com>
8160
8161         * lib/inet_ntop.h, inet_ntop.c: Make it work under mingw32: Add
8162         "restrict" keywords, as per POSIX.  Protect the function
8163         declaration around HAVE_DECL_INET_NTOP rather than HAVE_INET_NTOP.
8164         Don't use K&R prototypes.  Check the sprintf return values.
8165         Re-define EAFNOSUPPORT if not present.  Indent.
8166
8167         * lib/md5.h, md5.c: Simplify buffer handling visavi alignment,
8168         suggested by Bruno Haible <bruno@clisp.org>.
8169
8170         * lib/gc-gnulib.c, gc-libgcrypt.c: Check calloc return value.
8171
8172         * lib/gc.h: Add MD2 and RMD160 length defines.  Add prototypes.
8173
8174         * lib/gc-libgcrypt.c: Add MD2 (which is not available through
8175         libgcrypt).
8176
8177         * lib/gc-gnulib.c: Add MD2.  Implement gc_hash_* API.
8178
8179         * lib/md2.h, lib/md2.c: New files.
8180
8181 2005-10-28  Paul Eggert  <eggert@cs.ucla.edu>
8182
8183         * lib/savedir.c (savedir): Don't assume that xrealloc etc. leave
8184         errno alone.  Problem reported by Frederic Jolliton.
8185
8186 2005-10-27  Paul Eggert  <eggert@cs.ucla.edu>
8187
8188         * modules/verify (License): Change from GPL to LGPL.  This is a
8189         tiny module and there are apparently near-equivalents that are
8190         under the BSD license.
8191
8192 2005-10-24  Simon Josefsson  <jas@extundo.com>
8193
8194         * modules/sha1: Relicense to LGPL.
8195
8196 2005-10-24  Simon Josefsson  <jas@extundo.com>
8197
8198         * lib/md4.h: Shrink buffer size, now that we changed the type.
8199
8200 2005-10-23  Simon Josefsson  <jas@extundo.com>
8201
8202         * gnulib-tool (func_import): Fix --tests-base.
8203
8204 2005-10-22  Simon Josefsson  <jas@extundo.com>
8205
8206         * modules/arcfour (Depends-on): Need stdint.
8207
8208 2005-10-22  Simon Josefsson  <jas@extundo.com>
8209
8210         * m4/gc.m4: Don't be fooled by --disable-*random-device parameters,
8211         suggested by Bruno Haible <bruno@clisp.org>.  Fix error messages.
8212
8213 2005-10-22  Simon Josefsson  <jas@extundo.com>
8214
8215         * lib/md4.h, md4.c: Simplify buffer handling visavi alignment,
8216         suggested by Bruno Haible <bruno@clisp.org>.
8217
8218 2005-10-22  Simon Josefsson  <jas@extundo.com>
8219
8220         * lib/crc.h: Include stddef.h, for size_t.
8221
8222 2005-10-22  Simon Josefsson  <jas@extundo.com>
8223
8224         * lib/arcfour.h, arcfour.c: Use fixed size indices in the
8225         arcfour_context struct (simplify test vector testing in GNU
8226         Shishi).
8227
8228 2005-10-21  Simon Josefsson  <jas@extundo.com>
8229
8230         * modules/des, modules/des-tests: New files.
8231
8232         * modules/gc-des, modules/gc-des-tests: New files.
8233
8234         * tests/test-des.c, tests/test-gc-des.c: New file.
8235
8236 2005-10-21  Simon Josefsson  <jas@extundo.com>
8237
8238         * modules/arctwo, modules/arctwo-tests: New files.
8239
8240         * tests/test-arctwo.c: New file.
8241
8242         * modules/gc-arctwo, modules/gc-arctwo-tests: New files.
8243
8244         * tests/test-gc-arctwo.c: New file.
8245
8246 2005-10-21  Simon Josefsson  <jas@extundo.com>
8247
8248         * m4/gc.m4: Don't use libgcrypt if gcrypt.h isn't found, suggested by
8249         Bruno Haible <bruno@clisp.org>.
8250
8251         * m4/gc-des.m4: New file.
8252
8253 2005-10-21  Simon Josefsson  <jas@extundo.com>
8254
8255         * m4/arctwo.m4: New file.
8256
8257         * m4/gc-arctwo.m4: New file.
8258
8259 2005-10-21  Simon Josefsson  <jas@extundo.com>
8260
8261         * lib/rijndael-api-fst.c: Fix bugs in CBC mode for more than one
8262         block.
8263
8264 2005-10-21  Simon Josefsson  <jas@extundo.com>
8265
8266         * lib/hmac-md5.c (hmac_md5): Add comments, suggested by Bruno Haible
8267         <bruno@clisp.org>.
8268
8269         * lib/hmac-sha1.c (hmac_sha1): Likewise.
8270
8271         * lib/crc.c (crc32_update): Actually use crc parameter, suggested by
8272         Bruno Haible <bruno@clisp.org>.
8273
8274         * lib/crc.h: Include stdint.h directly, suggested by Bruno Haible
8275         <bruno@clisp.org>.
8276
8277 2005-10-21  Simon Josefsson  <jas@extundo.com>
8278
8279         * lib/gc-libgcrypt.c (gc_cipher_open): Handle ECB.
8280
8281 2005-10-21  Simon Josefsson  <jas@extundo.com>
8282
8283         * lib/gc-gnulib.c: Support ARCTWO in CBC mode.
8284
8285 2005-10-21  Simon Josefsson  <jas@extundo.com>
8286
8287         * lib/des.h, lib/des.c: New files.
8288
8289         * lib/gc-gnulib.c: Support DES.c
8290
8291 2005-10-21  Simon Josefsson  <jas@extundo.com>
8292
8293         * lib/arctwo.h, lib/arctwo.c: New files.
8294
8295         * lib/gc-gnulib.c: Support ARCTWO.
8296
8297 2005-10-21  Simon Josefsson  <jas@extundo.com>
8298
8299         * lib/arctwo.h (arctwo_setkey): Protect variable in CPP macro,
8300         suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
8301
8302 2005-10-21  Simon Josefsson  <jas@extundo.com>
8303
8304         * gnulib-tool (func_import, func_create_testdir): Define automake
8305         conditional GL_COND_LIBTOOL if libtool is used (to be used by modules
8306         Makefile.am snippet),
8307         suggested by Bruno Haible <bruno@clisp.org>.
8308
8309         * modules/gc (Makefile.am): Use it.
8310
8311 2005-10-21  Bruno Haible  <bruno@clisp.org>
8312
8313         * gnulib-tool (func_import, func_create_testdir): Add quoting to last
8314         patch.
8315
8316 2005-10-19  Simon Josefsson  <jas@extundo.com>
8317
8318         * tests/test-gc-rijndael.c: New file.
8319
8320         * modules/gc-rijndael, modules/gc-rijndael-test: New files.
8321
8322 2005-10-19  Simon Josefsson  <jas@extundo.com>
8323
8324         * tests/test-gc-md4.c, tests/test-gc-md5.c: Test gc_hash_buffer
8325         interface too.
8326
8327 2005-10-19  Simon Josefsson  <jas@extundo.com>
8328
8329         * tests/test-gc-arcfour.c: New file.
8330
8331         * modules/gc-arcfour, modules/gc-arcfour-tests: New files.
8332
8333 2005-10-19  Simon Josefsson  <jas@extundo.com>
8334
8335         * modules/gc-md4, modules/gc-md4-tests: New file.
8336
8337         * tests/test-gc-md4.c: New file.
8338
8339 2005-10-19  Simon Josefsson  <jas@extundo.com>
8340
8341         * m4/gc-md4.m4: New file.
8342
8343 2005-10-19  Simon Josefsson  <jas@extundo.com>
8344
8345         * m4/gc-hmac-md5.m4, gc-hmac-sha1.m4, gc-md4.m4,
8346         gc-md5.m4, gc-sha1.m4: Fix typo, suggested by Stepan Kasal
8347         <kasal@ucw.cz>.
8348
8349 2005-10-19  Simon Josefsson  <jas@extundo.com>
8350
8351         * m4/gc-arcfour.m4: New file.
8352
8353         * m4/gc-rijndael.m4: New file.
8354
8355 2005-10-19  Simon Josefsson  <jas@extundo.com>
8356
8357         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Support MD4.
8358
8359 2005-10-19  Simon Josefsson  <jas@extundo.com>
8360
8361         * lib/gc-gnulib.c: Support ARCFOUR.
8362
8363 2005-10-19  Simon Josefsson  <jas@extundo.com>
8364
8365         * lib/gc-gnulib.c: Implement gc_cipher_* API, currently only with AES
8366         support.
8367
8368         * lib/gc.h: Add ECB enum type.
8369
8370         * lib/hmac-md5.c, hmac-sha1.c: Include memxor.h.
8371
8372 2005-10-18  Simon Josefsson  <jas@extundo.com>
8373
8374         * tests/test-md5.c: New file.
8375
8376         * modules/md5-tests: New file.
8377
8378 2005-10-18  Simon Josefsson  <jas@extundo.com>
8379
8380         * tests/test-md4.c: New file.
8381
8382         * modules/md4, modules/md4-tests: New files.
8383
8384 2005-10-18  Simon Josefsson  <jas@extundo.com>
8385
8386         * m4/md4.m4: New file.
8387
8388 2005-10-18  Simon Josefsson  <jas@extundo.com>
8389
8390         * lib/md4.h, lib/md4.c: New files, based on md5.?.
8391
8392 2005-10-17  Stepan Kasal  <kasal@ucw.cz>
8393
8394         * gnulib-tool (func_create_testdir): Omit the second check whether
8395         BUILT_SOURCES in nonempty.
8396
8397 2005-10-17  Simon Josefsson  <jas@extundo.com>
8398
8399         * tests/test-rijndael.c: New file.
8400
8401 2005-10-17  Simon Josefsson  <jas@extundo.com>
8402
8403         * modules/sha1: Depend on stdint instead of md5.
8404
8405         * modules/md5: Depend on stdint, remove uint32_t.
8406
8407 2005-10-17  Simon Josefsson  <jas@extundo.com>
8408
8409         * modules/gc-sha1-tests: New file.
8410
8411         * tests/test-gc-sha1.c: New file.
8412
8413 2005-10-17  Simon Josefsson  <jas@extundo.com>
8414
8415         * m4/md5.m4: Remove call to uint32_t.m4.
8416
8417 2005-10-17  Simon Josefsson  <jas@extundo.com>
8418
8419         * lib/sha1.c: Use uint32_t instead of md5_uint32.t
8420
8421         * lib/sha1.h: Use stdint.h and uint32_t instead of md5_uint32 from
8422         md5.h.
8423
8424         * lib/md5.c: Use uin32_t.  Fix non-gcc UNALIGNED_P macro.
8425
8426         * lib/md5.h: Use stdint.h and uint32_t.  Doc fix.
8427
8428 2005-10-17  Simon Josefsson  <jas@extundo.com>
8429
8430         * lib/gc.h, gc-libgcrypt.c: Add more hash types/functions.
8431
8432 2005-10-17  Simon Josefsson  <jas@extundo.com>
8433
8434         * lib/gc.h, gc-libgcrypt.c: Add ciphers.
8435
8436 2005-10-17  Simon Josefsson  <jas@extundo.com>
8437
8438         * lib/gc-libgcrypt.c (gc_hmac_sha1): Fix assert.
8439
8440         * lib/gc.h (gc_nonce, gc_pseudo_random, gc_random): Add prototypes.
8441
8442 2005-10-17  Bruno Haible  <bruno@clisp.org>
8443
8444         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Change the return statement so
8445         that it can also be used in a test.
8446
8447 2005-10-16  Bruno Haible  <bruno@clisp.org>
8448
8449         * gnulib-tool (func_emit_tests_Makefile_am): Also define
8450         TESTS_ENVIRONMENT, so that individual tests can augment it.
8451
8452         * gnulib-tool (func_create_testdir): Use an intermediate target for
8453         building $(BUILT_SOURCES). Needed because BUILT_SOURCES can contain
8454         macros, like $(ALLOCA_H), which cannot be passed through the command
8455         line.
8456
8457 2005-10-15  Simon Josefsson  <jas@extundo.com>
8458
8459         * modules/rijndael-tests: New file.
8460
8461         * modules/rijndael: New file.
8462
8463 2005-10-15  Simon Josefsson  <jas@extundo.com>
8464
8465         * m4/rijndael.m4: New file.
8466
8467 2005-10-15  Simon Josefsson  <jas@extundo.com>
8468
8469         * lib/rijndael-api-fst.h, lib/rijndael-api-fst.c: New files.
8470
8471         * lib/rijndael-alg-fst.h, lib/rijndael-alg-fst.c: New files.
8472
8473 2005-10-14  Simon Josefsson  <jas@extundo.com>
8474
8475         * tests/test-arcfour.c: New file.
8476
8477         * modules/arcfour, modules/arcfour-tests: New files.
8478
8479 2005-10-14  Simon Josefsson  <jas@extundo.com>
8480
8481         * m4/arcfour.m4: New file.
8482
8483 2005-10-14  Simon Josefsson  <jas@extundo.com>
8484
8485         * lib/arcfour.h, lib/arcfour.c: New files.
8486
8487 2005-10-14  Roland McGrath  <roland@redhat.com>
8488
8489         Import from libc.  [BZ #1331]
8490         * lib/obstack.h [!__STDC__] (obstack_int_grow_fast): Fix misnamed
8491         macro argument.
8492         Reported by Matej Vela <vela@debian.org>.
8493
8494 2005-10-14  Paul Eggert  <eggert@cs.ucla.edu>
8495
8496         * lib/obstack.c [defined _LIBC && defined USE_IN_LIBIO]: Don't
8497         include <wchar.h>; no longer needed.
8498
8499 2005-10-14  Paul Eggert  <eggert@cs.ucla.edu>
8500
8501         * config/srclist.txt: Add glibc bug 321 for obstack.c, obstack.h.
8502
8503 2005-10-14  Jakub Jelinek  <jakub@redhat.com>
8504         and  Ulrich Drepper  <drepper@redhat.com>
8505
8506         Import from libc.
8507         * lib/obstack.c (print_and_abort) [defined _LIBC]: Use __fxprintf
8508         instead of inline stream orientation test and two separate
8509         function calls.  Pay no attention to USE_IN_LIBIO.
8510
8511 2005-10-13  Simon Josefsson  <jas@extundo.com>
8512
8513         * modules/gc-hmac-md5-tests: New file.
8514
8515         * tests/test-gc-hmac-sha1.c: New file.
8516
8517         * tests/test-gc.c (main): Remove MD5 and HMAC-MD5 tests.
8518
8519         * modules/gc-hmac-md5-tests: New file.
8520
8521         * tests/test-gc-md5.c: New file.
8522
8523         * modules/gc-md5-tests: New file.
8524
8525 2005-10-13  Simon Josefsson  <jas@extundo.com>
8526
8527         * lib/gc-pbkdf2-sha1.c (gc_pbkdf2_sha1): Optimize CEIL computation.
8528         Move memory allocation outside of loop.
8529
8530 2005-10-13  Paul Eggert  <eggert@cs.ucla.edu>
8531
8532         * lib/mkdir-p.c (make_dir_parents): Don't report an error if an
8533         intermediate directory is in a read-only file system.  Problem
8534         reported by Eric Blake.
8535
8536 2005-10-13  Oskar Liljeblad  <oskar@osk.mine.nu>
8537
8538         * modules/human (Depends-on): Depend on xstrtoumax, not xstrtol.
8539
8540 2005-10-12  Simon Josefsson  <jas@extundo.com>
8541
8542         * tests/test-hmac-sha1.c: New file.
8543
8544         * modules/hmac-sha1-tests: New file.
8545
8546         * modules/hmac-sha1: New file.
8547
8548 2005-10-12  Simon Josefsson  <jas@extundo.com>
8549
8550         * modules/gc-sha1: New file.
8551
8552 2005-10-12  Simon Josefsson  <jas@extundo.com>
8553
8554         * modules/gc-pbkdf2-sha1, modules/gc-pbkdf2-sha1-tests: New files.
8555
8556         * tests/test-gc-pbkdf2-sha1.c: New file.
8557
8558 2005-10-12  Simon Josefsson  <jas@extundo.com>
8559
8560         * modules/gc-md5, modules/gc-hmac-md5: New files.
8561
8562         * modules/gc (Files): Remove md5, memxor and hmac files.
8563
8564 2005-10-12  Simon Josefsson  <jas@extundo.com>
8565
8566         * m4/gc-pbkdf2-sha1.m4: New file.
8567
8568         * m4/gc-hmac-sha1.m4: New file.
8569
8570         * m4/gc-sha1: New file.
8571
8572         * m4/hmac-sha1.m4: New file.
8573
8574 2005-10-12  Simon Josefsson  <jas@extundo.com>
8575
8576         * m4/gc-md5.m4, m4/gc-hmac-md5.m4: New files.
8577
8578         * m4/gc.m4: Don't call gl_MD5, gl_MEMXOR or gl_HMAC_MD5.
8579
8580 2005-10-12  Simon Josefsson  <jas@extundo.com>
8581
8582         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Use Gc_rc for return types,
8583         suggested by Bruno Haible <bruno@clisp.org>.
8584
8585 2005-10-12  Simon Josefsson  <jas@extundo.com>
8586
8587         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Support SHA-1.
8588
8589 2005-10-12  Simon Josefsson  <jas@extundo.com>
8590
8591         * lib/gc-pbkdf2-sha1.c: New file.
8592
8593         * lib/gc.h: Add gc_pbkdf2_sha1 prototype.
8594
8595 2005-10-12  Simon Josefsson  <jas@extundo.com>
8596
8597         * lib/gc-libgcrypt.c (gc_hmac_sha1): New function.
8598
8599         * lib/gc-gnulib.c (gc_hmac_sha1): New function.
8600
8601 2005-10-12  Simon Josefsson  <jas@extundo.com>
8602
8603         * lib/gc-gnulib.c: Condition MD5 and HMAC-MD5 use on GC_USE_MD5 and
8604         GC_USE_HMAC_MD5, respectively.
8605
8606         * lib/gc-libgcrypt.c (gc_md5): Fix assert call.
8607         (gc_md5): Fix typo.
8608
8609         * lib/gc.h (gc_hash_buffer): Use gc_hash in prototype.
8610
8611         * lib/gc-libgcrypt.c (gc_hash_buffer): Ditto.
8612
8613         * lib/gc-gnulib.c (gc_hash_buffer): Ditto.
8614
8615 2005-10-12  Bruno Haible  <bruno@clisp.org>
8616
8617         * m4/stdbool.m4 (gl_STDBOOL_H): Define as an alias of AM_STDBOOL_H.
8618         Reported by Stepan Kasal <kasal@ucw.cz>.
8619
8620 2005-10-11  Simon Josefsson  <jas@extundo.com>
8621
8622         * tests/test-crc.c: New file.
8623
8624         * modules/crc, modules/crc-tests: New files.
8625
8626 2005-10-11  Simon Josefsson  <jas@extundo.com>
8627
8628         * m4/crc.m4: New file.
8629
8630 2005-10-11  Simon Josefsson  <jas@extundo.com>
8631
8632         * lib/gc.h: Add gc_hash and gc_hash_buffer.
8633
8634         * lib/gc-gnulib.c (gc_hash_buffer): Add.  Reorder #include's.
8635
8636         * lib/gc-libgcrypt.c (gc_hash_buffer): Add.
8637
8638 2005-10-11  Simon Josefsson  <jas@extundo.com>
8639
8640         * lib/crc.h, lib/crc.c: New files.
8641
8642         * lib/gc.h (gc_hash_buffer): Add doc.
8643
8644 2005-10-11  Bruno Haible  <bruno@clisp.org>
8645
8646         * modules/c-strcasestr: New file.
8647         * MODULES.html.sh (String handling <string.h>): Add c-strcasestr.
8648
8649 2005-10-11  Bruno Haible  <bruno@clisp.org>
8650
8651         * modules/c-strcase: New file.
8652         * MODULES.html.sh (String handling <string.h>): Add c-strcase.
8653
8654 2005-10-11  Bruno Haible  <bruno@clisp.org>
8655
8656         * lib/strcasecmp.c: Include limits.h.
8657         (strcasecmp): Avoid integer overflow on exotic platforms.
8658         * lib/strncasecmp.c: Include limits.h.
8659         (strncasecmp): Avoid integer overflow on exotic platforms.
8660         Reported by Paul Eggert.
8661
8662 2005-10-11  Bruno Haible  <bruno@clisp.org>
8663
8664         * lib/c-strcasestr.h: New file, from GNU gettext.
8665         * lib/c-strcasestr.c: New file, from GNU gettext.
8666
8667 2005-10-11  Bruno Haible  <bruno@clisp.org>
8668
8669         * lib/c-strcase.h: New file, from GNU gettext.
8670         * lib/c-strcasecmp.c: New file, from GNU gettext.
8671         * lib/c-strncasecmp.c: New file, from GNU gettext.
8672
8673 2005-10-10  Paul Eggert  <eggert@cs.ucla.edu>
8674
8675         * modules/mempcpy (License): GPL -> LGPL.
8676         * modules/strchrnul (License): Likewise.
8677         * modules/sysexits (License): Likewise.
8678
8679 2005-10-08  Simon Josefsson  <jas@extundo.com>
8680
8681         * config/srclist.txt: Bug 1423 is closed, but 1439 remains.
8682
8683 2005-10-07  Simon Josefsson  <jas@extundo.com>
8684
8685         * m4/memxor.m4: Remove gl_C_RESTRICT call.
8686
8687 2005-10-06  Simon Josefsson  <jas@extundo.com>
8688
8689         * tests/test-hmac-md5.c: New file.
8690
8691         * modules/hmac-md5-tests: New file.
8692
8693         * modules/hmac-md5: New file.
8694
8695 2005-10-06  Simon Josefsson  <jas@extundo.com>
8696
8697         * m4/hmac-md5.m4: New file.
8698
8699         * m4/memxor.m4: Require gl_C_RESTRICT.
8700
8701 2005-10-06  Simon Josefsson  <jas@extundo.com>
8702
8703         * lib/memxor.c (memxor): Avoid casts and warnings.
8704
8705 2005-10-06  Simon Josefsson  <jas@extundo.com>
8706
8707         * lib/hmac-md5.c: New file.
8708
8709         * lib/hmac.h: New file.
8710
8711 2005-10-06  Paul Eggert  <eggert@cs.ucla.edu>
8712
8713         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check that bool
8714         promotes to int, not unsigned int, to catch the AIX 5.3
8715         compiler bug.
8716
8717 2005-10-05  Simon Josefsson  <jas@extundo.com>
8718
8719         * modules/memxor: New file.
8720
8721         * modules/iconv (Files): Move config.rpath to havelib, it is used
8722         there.
8723
8724         * modules/havelib (Files): Add config.rpath.
8725
8726 2005-10-05  Simon Josefsson  <jas@extundo.com>
8727
8728         * m4/memxor.m4: New file.
8729
8730 2005-10-05  Simon Josefsson  <jas@extundo.com>
8731
8732         * lib/memxor.c (memxor): Fix compiler error.
8733
8734         * lib/md5.h (MD5_DIGEST_SIZE, MD5_BLOCK_SIZE): Add, see also
8735         <http://sourceware.org/bugzilla/show_bug.cgi?id=1423>.
8736
8737         * lib/memxor.h, lib/memxor.c: New files.
8738
8739         * lib/getaddrinfo.h: Don't protect sys/types.h with HAVE_SYS_TYPES_H,
8740         we assume all systems have it, suggested by Jim Meyering
8741         <jim@meyering.net>.  Remove HAVE_SYS_SOCKET_H test too, to see if
8742         any systems lack sys/socket.h; mingw32 is known to lack it, but we
8743         don't support it yet anyway.  Also remove HAVE_NETDB_H test, for
8744         same reasons.
8745
8746 2005-10-05  Simon Josefsson  <jas@extundo.com>
8747
8748         * config/srclist.txt: Add glibc bug 1423 for md5.h.
8749
8750 2005-10-05  Paul Eggert  <eggert@cs.ucla.edu>
8751
8752         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Don't check for
8753         sys/socket.h, netdb.h, sys/types.h; the checks areno longer
8754         needed, since the source code now assumes these .h files.
8755
8756 2005-10-05  Derek Price  <derek@ximbiot.com>
8757
8758         * lib/getdelim.c (SIZE_MAX): New macro, if not already defined.
8759
8760 2005-10-05  Bruno Haible  <bruno@clisp.org>
8761
8762         * modules/stdint (License): Change to LGPL.
8763
8764 2005-10-04  Simon Josefsson  <jas@extundo.com>
8765
8766         * lib/getaddrinfo.h: Move sys/types.h include first, reported by "Mark
8767         D. Baushke" <mdb@gnu.org>.
8768
8769 2005-10-04  Bruno Haible  <bruno@clisp.org>
8770
8771         * lib/verify.h (verify_true): Provide alternative definition for C++.
8772
8773 2005-10-03  Paul Eggert  <eggert@cs.ucla.edu>
8774
8775         * lib/getdelim.c: Include getdelim.h first.  Include <limits.h>.
8776         (SSIZE_MAX): New macro, if not already defined.
8777         (getdelim): Fix buffer overrun on 64-bit hosts with lines longer
8778         than 2 GiB.
8779
8780 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
8781
8782         Sync from coreutils.
8783         * m4/openat.m4 (gl_FUNC_OPENAT): Check for fdopendir.
8784         * m4/ullong_max.m4 (gl_ULLONG_MAX): Simplify so that it merely
8785         defines ULONG_MAX_LT_ULLONG_MAX.  Thomas M.Ott reports that
8786         ULLONG_MAX doesn't work with 2.7.2.1.
8787
8788 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
8789
8790         * modules/xreadlink (Makefile.am): Remove lib_SOURCES.
8791         From Ben Pfaff.
8792
8793         * modules/exclude (Depends-on): Depend on verify.
8794         * modules/strtoimax (Depends-on): Likewise.
8795         * modules/utimecmp (Depends-on): Likewise.
8796
8797 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
8798
8799         * lib/exclude.c: Include verify.h.
8800         (verify): Remove.  All callers changed to use verify.h's version.
8801         * lib/strtoimax.c: Likewise.
8802         * lib/utimecmp.c: Likewis.e
8803
8804         Sync from coreutils.
8805         * lib/.cppi-disable: Add getaddrinfo.h, getdelim.h, getline.h,
8806         getpass.c, mbchar.h, mbuiter.h, strcase.h, strnlen.h, strnlen1.h.
8807         * lib/.cvsignore: Add fts.h, search.h, t-fpending.
8808         * lib/settime.c (settime): Fix { typo in previous patch.  Also, don't
8809         bother returning ENOSYS if settimeofday or stime fails; just let
8810         them return whatever errno they want to return.
8811         * lib/utimens.c: Include unistd.h, for dup2.
8812         (futimens): Fix typo: HAVE_FUTIMESAT was misspelled in an #if.
8813         (futimens) [! HAVE_FUTIMESAT]: If !file, set errno before returning -1.
8814
8815 2005-10-02  Jim Meyering  <jim@meyering.net>
8816
8817         Sync from coreutils.
8818         * m4/utimes.m4 (gl_FUNC_UTIMES): Detect the version of utimes
8819         from glibc-2.2.5 that fails for read-only files.
8820
8821 2005-10-02  Jim Meyering  <jim@meyering.net>
8822
8823         Sync from coreutils.
8824         * lib/fts-cycle.c [HAVE_CONFIG_H]: Include <config.h>.
8825         * lib/openat-die.c: Use `#ifdef HAVE_CONFIG_H', not
8826         `#if HAVE_CONFIG_H'.
8827         * lib/openat.c (fdopendir): Do not define if HAVE_FDOPENDIR.
8828         Remove AT_FDCWD test.
8829         Do not consume the fd unless successful.
8830         * lib/openat.h (fdopendir): Do not define if HAVE_FDOPENDIR.
8831         * lib/settime.c (settime): Move the HAVE_STIME block `up' into an #elif
8832         block, so that we don't even try to compile it if settimeofday is
8833         available.  This works around a compilation failure on OSF1 V5.1,
8834         due to stime requiring a `long int*' while tv_sec is `int'.
8835
8836 2005-10-02  Alfred M. Szmidt  <ams@gnu.org>
8837
8838         Sync from coreutils.
8839         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Compare $gl_have_path...
8840         against `yes', rather than just testing for nonempty.
8841
8842 2005-10-01  Simon Josefsson  <jas@extundo.com>
8843
8844         * m4/getaddrinfo.m4: Include sys/types.h for sys/socket.h, on FreeBSD
8845         and Darwin.
8846
8847         * m4/getaddrinfo.m4: Use AC_GNU_SOURCE, GNU only declare getaddrinfo
8848         as an (POSIX) extension.  Check for sys/types.h, sys/socket.h, and
8849         netdb.h too, needed by getaddrinfo.h.  Check if getaddrinfo,
8850         freeaddrinfo and gai_strerror are declared by the POSIX headers.
8851         Check if struct addrinfo is declared.
8852
8853 2005-10-01  Simon Josefsson  <jas@extundo.com>
8854
8855         * lib/getaddrinfo.h: Protect #include's of sys/socket.h and netdb.h.
8856         Only define struct addrinfo if !HAVE_STRUCT_ADDRINFO.  Protect
8857         AI_* and EAI_* definitions.  Protect function declarations.
8858
8859 2005-10-01  Jim Meyering  <jim@meyering.net>
8860
8861         Sync from coreutils.
8862
8863         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Look for getservbyname in these
8864         libraries [inet nsl socket xnet].  Nelson Beebe reported that with
8865         native cc on Solaris 7, getaddrinfo.c requires -lsocket.
8866         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Check for gethostbyname
8867         in the inet and nsl libraries.  Required on Solaris 5.7.
8868
8869 2005-10-01  Jim Meyering  <jim@meyering.net>
8870
8871         Sync from coreutils.
8872         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Check for gethostbyname
8873         in the inet and nsl libraries.  Required on Solaris 5.7.
8874
8875 2005-10-01  Eric Blake  <ebb9@byu.net>  (tiny change)
8876
8877         * lib/getdelim.c (getdelim): Remove unused variables.
8878
8879 2005-09-29  Paul Eggert  <eggert@cs.ucla.edu>
8880
8881         * lib/xtime.h (XTIME_PRECISION): Now of type int, not long long int,
8882         so that the code works even with ancient cpp.  Portability problem
8883         with GCC 2.7.2.1 reported by Thomas M.Ott.
8884
8885 2005-09-27  Paul Eggert  <eggert@cs.ucla.edu>
8886
8887         * modules/regex (Depends-on): Add strcase.
8888
8889         * modules/gethostname (Licence): Change from GPL to LGPL, since
8890         gethostname.c is a trivial implementation of a standard library
8891         function.
8892         * modules/poll (License): Change from GPL to LGPL, since it's
8893         derived from LGPL code.
8894
8895 2005-09-27  Jim Meyering  <jim@meyering.net>
8896
8897         * lib/getcwd.c: Change #ifdef<TAB>HAVE_CONFIG_H to #ifdef
8898         HAVE_CONFIG_H.
8899
8900         * lib/intprops.h (signed_type_or_expr__): Define.
8901         (INT_STRLEN_BOUND) [__GNUC__]: Use a slightly tighter bound
8902         for unsigned types.
8903
8904 2005-09-26  Paul Eggert  <eggert@cs.ucla.edu>
8905
8906         * lib/verify.h (verify_expr): Remove, replacing with:
8907         (verify_true): New macro that returns true instead of void.
8908         (verify_type__): Remove.
8909         (verify): Use verify_true rather than verify_type__.
8910
8911 2005-09-26  Bruno Haible  <bruno@clisp.org>
8912
8913         * modules/mbchar (Include): Mention that HAVE_WCHAR_H && HAVE_WCTYPE_H
8914         is necessary.
8915         (lib_SOURCES): Remove mbchar.c.
8916         * modules/mbfile (Include): Mention that HAVE_MBRTOWC is necessary.
8917         (Files): Add m4/mbrtowc.m4.
8918         * modules/mbiter: Likewise.
8919         * modules/mbuiter: Likewise.
8920
8921 2005-09-26  Bruno Haible  <bruno@clisp.org>
8922
8923         * m4/mbchar.m4 (gl_MBCHAR): Check for wchar.h and wctype.h. Don't
8924         compile mbchar.c if they are not both present.
8925         * m4/mbfile.m4 (gl_MBFILE): Require gl_FUNC_MBRTOWC.
8926         * m4/mbiter.m4 (gl_MBITER): Likewise.
8927         * m4/strstr.m4 (gl_PREREQ_STRSTR): Use AC_REQUIRE.
8928         * m4/strcasestr.m4 (gl_PREREQ_STRCASESTR): Likewise.
8929         * m4/strcase.m4 (gl_PREREQ_STRCASECMP): Likewise.
8930
8931 2005-09-25  Jim Meyering  <jim@meyering.net>
8932
8933         * modules/inet_ntop (Depends-on): Add socklen, since inet_ntop.c
8934         also uses socklen_t.
8935
8936 2005-09-24  Paul Eggert  <eggert@cs.ucla.edu>
8937
8938         * lib/utimens.c (ENOSYS): Define if not already defined.
8939         (futimens): Support having a null PATH if the file descriptor
8940         is nonnegative.
8941
8942         * lib/regex_internal.h (__GNUC_PREREQ, always_inline, inline, pure):
8943         Remove.
8944         (__attribute): Define to empty unless GCC 3.1 or later.
8945         This works around a core dump on OpenBSD 3.4, which has GCC
8946         2.95.3, which dumps core when given __attribute__(()).  It also
8947         simplifies other tests, since we really don't want to bother with
8948         worrying about which ancient version of GCC supported what.
8949         Original problem reported by Yoann Vandoorselaere, with part of
8950         the fix suggested by Derek Price.
8951
8952 2005-09-24  Jim Meyering  <jim@meyering.net>
8953
8954         * lib/verify.h (verify_type__): Use `unsigned int' as the bitfield type
8955         so we can once again use a positive bitfield width of 1 -- now we
8956         don't have to explain why we were using a bitfield width of 2.
8957
8958 2005-09-23  Paul Eggert  <eggert@cs.ucla.edu>
8959
8960         * m4/regex.m4 (gl_REGEX): If replacing, define regcomp to rpl_regcomp,
8961         and similarly for the other external symbols.  Problem reported
8962         by James Gallager.
8963
8964         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Catch Sun Studio 10u1 on Linux
8965         bug reported by Jim Meyering.
8966
8967         * m4/utimens.m4 (gl_UTIMENS): Check for futimesat.
8968         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Undo previous change;
8969         not needed, since socklen is a prerequisite module.
8970
8971 2005-09-23  Paul Eggert  <eggert@cs.ucla.edu>
8972
8973         * lib/getaddrinfo.c [HAVE_NETINET_IN_H]: Include <netinet/in.h>.
8974         Problem reported by Eric Blake.
8975         (getaddrinfo): Initialize se so that it's not garbage.
8976         Redo internal storage allocation so that it doesn't make unportable
8977         assumptions about alignment.
8978         Fix a memory leak.
8979
8980         * lib/utimens.c (futimens): Use futimesat if available.
8981         Prefer it to futimes since it doesn't have the futimes bug.
8982
8983         * lib/verify.h (GL_CONCAT0, GL_CONCAT): Remove.
8984         (verify): Don't use the __LINE__ trick, as it doesn't work in general.
8985         Instead, declare a function that returns a pointer to an array,
8986         and use verify_type__ to declare the size of the array.
8987         Problem and germ of a solution reported by Bruno Haible.
8988         (verify_type__): Use 2, not 1, for bitfield size, to avoid
8989         a warning with Irix 6.5 cc.  Problem reported by Bruno Haible.
8990
8991 2005-09-23  Jim Meyering  <jim@meyering.net>
8992
8993         Sync from coreutils.
8994         Correct build failure (socklen_t not defined) on at least
8995         mips-sgi-irix6.5 and alphaev67-dec-osf5.1.
8996         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Require gl_SOCKLEN_T.
8997
8998 2005-09-23  Jim Meyering  <jim@meyering.net>
8999
9000         * modules/getaddrinfo (Depends-on): Add socklen.
9001
9002 2005-09-23  Bruno Haible  <bruno@clisp.org>
9003
9004         * tests/test-verify.c: New file.
9005
9006 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
9007
9008         Sync from coreutils.
9009
9010         * modules/argmatch (Depends-on): Add verify.
9011         * modules/getloadavg (Depends-on): Depend on fcntl-safer, not
9012         unistd-safer.
9013         * modules/save-cwd (Depends-on): Likewise.
9014
9015         * modules/openat (Files): Add lib/openat-die.c.
9016         (Depends-on): Remove error, exitfail.
9017         Add dirname.
9018
9019         * modules/verify: New file.
9020         * MODULES.html.sh (Diagnostics <assert.h>): New section,
9021         with "verify" module.
9022
9023 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
9024
9025         Sync from coreutils.
9026
9027         * m4/backupfile.m4, calloc.m4, chown.m4, cloexec.m4, dup2.m4:
9028         * m4/fileblocks.m4, free.m4, ftruncate.m4, getcwd.m4, getpagesize.m4:
9029         * m4/getugroups.m4, group-member.m4, idcache.m4, link-follow.m4:
9030         * m4/mkstemp.m4, mktime.m4, mountlist.m4, nanosleep.m4, pathmax.m4:
9031         * m4/physmem.m4, posixver.m4, putenv.m4, safe-read.m4, same.m4:
9032         * m4/save-cwd.m4, stdio-safer.m4, unistd-safer.m4, unlinkdir.m4:
9033         * m4/userspec.m4, xgetcwd.m4, xreadlink.m4:
9034         Don't bother checking for string.h, stdlib.h, unistd.h.
9035         * m4/fts.m4 (gl_FUNC_FTS_CORE): Don't require
9036         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK; that's now the lstat
9037         module's job.
9038         * m4/jm-macros.m4 (gl_MACROS): Likewise.
9039         * m4/prereq.m4 (gl_PREREQ): Add gl_FUNC_LSTAT.
9040
9041         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): New macro.
9042         (gl_GETDATE): Use it.
9043
9044         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Don't bother checking for unistd.h.
9045
9046 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
9047
9048         Sync from coreutils.
9049
9050         * lib/.cppi-disable: Add regcomp.c, regex_internal.c, regex_internal.h,
9051         stat-time.h.
9052         * lib/argmatch.h: Include verify.h
9053         (ARGMATCH_VERIFY): Use verify rather than rolling our own.
9054         (ARGMATCH_ASSERT): Remove; unused.
9055         * lib/canonicalize.c: Assume STDC_HEADERS.
9056         * lib/exclude.c: Include "strcase.h".
9057         * lib/regex_internal.h [!defined _LIBC]: Likewise.
9058         * lib/getusershell.c: Include stdio--.h rather than stdio.h
9059         and stdio-safer.h.
9060         (getusershell): Call fopen, not fopen_safer.
9061         * lib/save-cwd.c: Include fcntl--.h rather than fcntl.h.
9062         Do not include unistd-safer.h.
9063         (save_cwd): Don't call fd_safer; no longer needed
9064         now that we include fcntl--.h.
9065
9066         * lib/getdate.y (relative_time): New type.
9067         (RELATIVE_TIME_0): New constant.
9068         (parser_control): Use relative_time instead of doing it ourselves.
9069         (%union): Add new relative_time rel member.
9070         (tYEAR_UNIT, tMONTH_UNIT, tHOUR_UNIT, tMINUTE_UNIT, tSEC_UNIT):
9071         Now typeless.
9072         (relunit, relunit_snumber): Now of type rel.
9073         (zone, rel, relunit, get_date): Adjust to above changes.
9074
9075         * lib/getloadavg.c: Include fcntl--.h rather than fcntl.h.
9076         Do not include unistd-safer.h.
9077         (getloadavg): Don't call fd_safer; no longer needed
9078         now that we include fcntl--.h.
9079
9080         * lib/mkdir-p.c (ENOSYS): Define to EEXIST if not defined.
9081         (make_dir_parents): Treat ENOSYS like EEXIST.
9082
9083         Improve quality of diagnostics on restore_cwd failure.
9084         * lib/mkdir-p.h (make_dir): Remove.  All uses replaced by mkdir.
9085         (make_dir_parents): Last arg is now int * (for errno), not bool *.
9086         * lib/mkdir-p.c (make_dir, make_dir_parents): Likewise.
9087         Rewrite "mkdir -p" algorithm to avoid the need for "stat"
9088         each time through the loop.  Do not diagnose restore_cwd failure;
9089         that is the caller's job (and perhaps the caller does not care).
9090
9091         * lib/mkdir-p.c (CLEANUP_CWD, CLEANUP): Remove.
9092         (make_dir_parents): Revamp to avoid need for CLEANUP_CWD, CLEANUP.
9093         If the file already exists but is not a directory, don't bother
9094         to try to make its parents.
9095         Close potential file descriptor leak if we can't chdir("/") (!).
9096         Don't always return true if chdir($PWD) fails; return true only
9097         if the requested action was done successfully (except for the
9098         chdir($PWD)).
9099         Don't log final directory unless we actually made it.
9100         Refactor to avoid duplicate code to fix up permissions.
9101         Don't attempt to fix up parent permissions if chdir($PWD) fails.
9102
9103         * lib/strftime.c (my_strftime): Rewrite the previous change slightly,
9104         to make it a bit faster and (I hope) clearer.
9105         * lib/strftime.c (my_strftime): Add support for %:z, %::z, %:::z.
9106         Fix bug in formats like %2N.
9107
9108         * lib/verify.h: New file.
9109
9110 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
9111
9112         Sync from coreutils.
9113         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Check for netinet/in.h.
9114
9115 2005-09-22  Jim Meyering  <jim@meyering.net>
9116
9117         Sync from coreutils.
9118
9119         * m4/lstat.m4 (gl_FUNC_LSTAT):
9120         Use AC_LIBSOURCES to require lstat.c and lstat.h.
9121         Remove obsolete comment.
9122         * m4/xreadlink.m4: Use AC_LIBSOURCES and AC_LIBOBJ.
9123         * m4/xstrtod.m4: Likewise.
9124
9125         * m4/openat.m4 (gl_FUNC_OPENAT): Add openat-die.c.
9126
9127 2005-09-22  Jim Meyering  <jim@meyering.net>
9128
9129         Sync from coreutils.
9130
9131         * lib/backupfile.c: Use ARGMATCH_VERIFY, just in case.
9132
9133         * lib/posixtm.c (posixtime) [lint]: Initialize *all* of tm0, not just
9134         the .tm_year member, since otherwise gcc-4.0 would now warn about
9135         tm_zone, tm_gmtoff, tm_isdst, tm_yday, tm_wday.
9136
9137         * lib/quotearg.c (quotearg_n_options): Change code to be suboptimal, in
9138         order to avoid an unsuppressible warning from gcc on 64-bit systems.
9139
9140         * lib/getdate.y (get_date): Undo part of the 2005-04-04 change, so that
9141         the command "date -d'2005-03-27 +1 day'" succeeds once again, even
9142         when run in a time zone for which daylight savings time is in effect
9143         for the starting date.
9144
9145         * lib/mkdir-p.c (make_dir_parents): Don't let a failed chdir($PWD)
9146         stop us from restricting permissions of just-created absolute-named
9147         directories.
9148         * lib/mkdir-p.c (CLEANUP_CWD): Return *true*, not false when failing
9149         to restore initial working directory.
9150         * lib/mkdir-p.c (make_dir_parents): New parameter:
9151         different_working_dir, to tell caller if/when we change the working
9152         directory and are unable to return to the initial one.
9153         * lib/mkdir-p.h (make_dir_parents): Update prototype.
9154         * lib/mkdir-p.c (CLEANUP_CWD): Change one more `return 1' to
9155         `return false'.  This fixes a bug introduced on 2004-07-30.
9156
9157         * lib/openat.c (fdopendir): Be sure to close the supplied
9158         file descriptor before returning.  This makes our replacement
9159         implementation a little closer to Solaris's, where fdopendir
9160         ties the file descriptor to the returned DIR* pointer.
9161         * lib/openat.c (unlinkat): New function.
9162         * lib/openat.h (unlinkat): Add prototype.
9163         * lib/openat-die.c (openat_save_fail): Rename from openat_save_die.
9164         (openat_restore_fail): Rename from openat_restore_die.
9165         * lib/openat.c, openat.h: Reflect s/_die/_fail/ renaming.
9166
9167         Provide an alternative to exiting immediately upon save_cwd or
9168         restore_cwd failure.  Now, an application can arrange e.g.,
9169         to perform a longjump in that case.
9170         * lib/openat.c: Include dirname.h.
9171         Use IS_ABSOLUTE_FILE_NAME rather than testing for leading slash.
9172         (rpl_openat, fdopendir, fstatat): Call openat_save_die
9173         and openat_restore_die rather than calling error directly.
9174         Don't include "error.h" or "exitfail.h"; they're no longer needed.
9175
9176         * lib/openat-die.c (openat_save_die, openat_restore_die): New file.
9177         * lib/openat.h (openat_save_die, openat_restore_die): Declare and
9178         define.
9179
9180         * lib/strftime.c [FPRINTFTIME] (fprintftime): Provide a new interface:
9181         size_t fprintftime (FILE *fp, char const *fmt, struct tm const *tm,
9182                             int utc, int nanoseconds);
9183         Background:
9184         date should not have to allocate a megabyte of virtual memory to
9185         handle a format argument like +%1048575T.  When implemented with
9186         strftime, it must allocate such a buffer, use strftime to fill it
9187         in, print it, then free it.
9188         With fprintftime, it simply prints everything and exits.
9189         With no need for memory allocation, that's one fewer way to fail.
9190         * lib/strftime.c (my_strftime): Parse the colons of %:::z *after* the
9191         optional field width, not before, so we accept %9:z, not %:9z.
9192         (my_strftime): Be sure to use L_('x') for literals.
9193
9194         * lib/backupfile.c, lib/canon-host.c, lib/canonicalize.c, lib/chown.c:
9195         * lib/cloexec.c, lib/dup-safer.c, lib/dup2.c, lib/euidaccess.c:
9196         * lib/fd-safer.c, lib/fileblocks.c, lib/fopen-safer.c, lib/fsusage.c:
9197         * lib/ftruncate.c, lib/getcwd.c, lib/getcwd.h, lib/getloadavg.c:
9198         * lib/getopt_.h, lib/getpagesize.h, lib/getugroups.c:
9199         * lib/group-member.c, lib/human.h, lib/idcache.c, lib/mkdir-p.c:
9200         * lib/mountlist.c, lib/nanosleep.c, lib/pathmax.h, lib/physmem.c:
9201         * lib/posixver.c, lib/putenv.c, lib/raise.c, lib/safe-read.c:
9202         * lib/same.c, lib/save-cwd.c, lib/setenv.c, lib/settime.c:
9203         * lib/tempname.c, lib/unlinkdir.c, lib/unsetenv.c, lib/userspec.c:
9204         * lib/xgethostname.c, lib/xreadlink.c:
9205         Assume HAVE_UNISTD_H, i.e., include <unistd.h> unconditionally.
9206
9207         * lib/chown.c, lib/cloexec.c, lib/dup-safer.c, lib/dup2.c:
9208         * lib/fsusage.c, lib/getcwd.c, lib/getloadavg.c, lib/mountlist.c:
9209         * lib/openat.h, lib/save-cwd.c, lib/tempname.c:
9210         Assume HAVE_FCNTL_H (i.e., include <fcntl.h> unconditionally,
9211         and don't include <sys/file.h>).
9212
9213 2005-09-22  Eric Blake  <ebb9@byu.net>  (tiny change)
9214
9215         Sync from coreutils.
9216
9217         * lib/getloadavg.c (getloadavg) [__CYGWIN__]: Port to cygwin.
9218         [__linux__]: Allocate a big enough buffer for /proc/loadavg.
9219         [!LDAV_DONE]: Avoid unused variable warning.
9220
9221 2005-09-21  Bruno Haible  <bruno@clisp.org>
9222
9223         * lib/unicodeio.h (unicode_to_mb): New declaration.
9224
9225 2005-09-20  Derek Price  <derek@ximbiot.com>
9226
9227         * lib/getaddrinfo.c: Don't include <netdb.h> included from
9228         getaddrinfo.h.
9229
9230 2005-09-20  Bruno Haible  <bruno@clisp.org>
9231
9232         * gnulib-tool: Remove trailing slashes from the values specified for
9233         --source-base, --m4-base, --tests-base, --aux-dir.
9234         Suggested by Simon Josefsson <jas@extundo.com>.
9235
9236 2005-09-20  Bruno Haible  <bruno@clisp.org>
9237
9238         * gnulib-tool (func_all_modules, func_modules_transitive_closure,
9239         func_modules_to_filelist, func_import, func_create_testdir): Make all
9240         sorting results locale-independent, so that gnulib-cache.m4 doesn't
9241         change when gnulib-tool is invoked in a different locale.
9242
9243 2005-09-19  Simon Josefsson  <jas@extundo.com>
9244
9245         * m4/socklen.m4: Fix typo.
9246
9247 2005-09-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9248
9249         Use a consistent style for including <config.h>.
9250         * lib/__fpending.c, lib/acl.c, lib/argmatch.c, lib/argp-help.c,
9251         lib/argp-parse.c, lib/argp-pvh.c, lib/backupfile.c, lib/basename.c,
9252         lib/c-stack.c, lib/calloc.c, lib/check-version.c, lib/cloexec.c,
9253         lib/closeout.c, lib/copy-file.c, lib/creat-safer.c, lib/cycle-check.c,
9254         lib/dirfd.c, lib/dirname.c, lib/dup-safer.c, lib/dup2.c,
9255         lib/euidaccess.c, lib/exclude.c, lib/exitfail.c, lib/fatal-signal.c,
9256         lib/fd-safer.c, lib/file-type.c, lib/fileblocks.c, lib/filemode.c,
9257         lib/filenamecat.c, lib/findprog.c, lib/fnmatch.c, lib/fopen-safer.c,
9258         lib/free.c, lib/fsusage.c, lib/ftruncate.c, lib/full-write.c,
9259         lib/fwriteerror.c, lib/getaddrinfo.c, lib/getcwd.c, lib/getdelim.c,
9260         lib/getline.c, lib/getlogin_r.c, lib/getndelim2.c, lib/getnline.c,
9261         lib/getopt1.c, lib/getpass.c, lib/group-member.c, lib/hard-locale.c,
9262         lib/hash-pjw.c, lib/hash.c, lib/human.c, lib/idcache.c,
9263         lib/inet_ntop.c, lib/isdir.c, lib/long-options.c, lib/malloc.c,
9264         lib/memcasecmp.c, lib/memcmp.c, lib/memcoll.c, lib/memcpy.c,
9265         lib/memmove.c, lib/mkdir-p.c, lib/modechange.c, lib/mountlist.c,
9266         lib/open-safer.c, lib/physmem.c, lib/pipe-safer.c, lib/pipe.c,
9267         lib/poll.c, lib/posixver.c, lib/progname.c, lib/progreloc.c,
9268         lib/putenv.c, lib/quote.c, lib/quotearg.c, lib/readline.c,
9269         lib/readlink.c, lib/realloc.c, lib/regex.c, lib/rename.c, lib/rmdir.c,
9270         lib/rpmatch.c, lib/safe-read.c, lib/same.c, lib/save-cwd.c,
9271         lib/savedir.c, lib/sig2str.c, lib/strcspn.c, lib/strerror.c,
9272         lib/stripslash.c, lib/strncasecmp.c, lib/strndup.c, lib/strnlen.c,
9273         lib/strnlen1.c, lib/strsep.c, lib/strstr.c, lib/strtod.c,
9274         lib/strtoimax.c, lib/strtol.c, lib/strverscmp.c, lib/tempname.c,
9275         lib/time_r.c, lib/userspec.c, lib/utimecmp.c, lib/version-etc-fsf.c,
9276         lib/version-etc.c, lib/wait-process.c, lib/xalloc-die.c, lib/xgetcwd.c,
9277         lib/xmalloc.c, lib/xmemcoll.c, lib/xnanosleep.c, lib/xreadlink.c,
9278         lib/xsetenv.c, lib/xstrndup.c, lib/xstrtoimax.c, lib/xstrtol.c,
9279         lib/xstrtoumax.c, lib/yesno.c:
9280         Standardize inclusion of config.h.
9281         * lib/__fpending.h, lib/dirfd.h, lib/getdate.h, lib/human.h,
9282         lib/inttostr.h:  Removed inclusion of config.h from header files.
9283         * lib/inttostr.c:  Adjusted in-tree users.
9284         * lib/timespec.h: Remove superfluous warning to include config.h.
9285         * lib/atexit.c, lib/chdir-long.c, lib/chown.c, lib/fchown-stub.c,
9286         lib/getgroups.c, lib/gettimeofday.c, lib/lchown.c, lib/lstat.c,
9287         lib/mkdir.c, lib/mkstemp.c, lib/nanosleep.c, lib/openat.c, lib/raise.c,
9288         lib/readtokens0.c, lib/readutmp.c, lib/unlinkdir.c: Guard inclusion of
9289         config.h with HAVE_CONFIG_H.
9290
9291 2005-09-19  Jim Meyering  <jim@meyering.net>
9292
9293         * modules/pathmax (License): Change to LGPL.
9294
9295 2005-09-19  Derek Price  <derek@ximbiot.com>
9296
9297         * config/srclist.txt: glibc's glob.h is now in lib/glob-libc.h.
9298
9299 2005-09-19  Bruno Haible  <bruno@clisp.org>
9300
9301         * gnulib-tool (import): Provide default for --tests-base.
9302
9303 2005-09-19  Bruno Haible  <bruno@clisp.org>
9304
9305         * doc/quote.texi: New file, extracted from gnulib.texi.
9306         * doc/ctime.texi: New file, extracted from gnulib.texi.
9307         * doc/inet_ntoa.texi: New file, extracted from gnulib.texi.
9308         * doc/gnulib-tool.texi: New file, extracted from gnulib.texi.
9309         * doc/gnulib.texi: Include them.
9310
9311 2005-09-18  Bruno Haible  <bruno@clisp.org>
9312
9313         Portability fix.
9314         * gnulib-tool (func_readlink): New function.
9315         (func_ln_if_changed): Use it.
9316
9317 2005-09-18  Bruno Haible  <bruno@clisp.org>
9318
9319         * gnulib-tool: Support --with-tests also with --import.
9320         (func_emit_tests_Makefile_am): Use variables $m4base and $testsbase.
9321         (func_import): Use variables $testsbase and $inctests. Emit a
9322         gl_TESTS_BASE form into gnulib-cache.m4. Create $testsbase/Makefile.am.
9323         Remind the user to add AC_CONFIG_FILES($testsdir/Makefile) and
9324         SUBDIRS += $testsdir.
9325         (func_create_testdir): Update.
9326
9327 2005-09-18  Bruno Haible  <bruno@clisp.org>
9328
9329         * gnulib-tool: Revise --dry-run implementation. Use variable $doit
9330         instead of $dry_run.
9331         (func_cp_if_changed, func_mv_if_changed): Remove functions.
9332         (func_ln_if_changed): Don't handle dry-run here.
9333         (func_import): In dry-run mode, detect more precisely which actions
9334         would be performed, and don't use "...ing" verbs.
9335
9336 2005-09-18  Bruno Haible  <bruno@clisp.org>
9337
9338         * gnulib-tool (func_tmpdir): New function, taken from GNU gettextize.
9339         (func_import): Use join on two temporary files instead of three nested
9340         loops, in order to determine which files are new or old.
9341
9342 2005-09-18  Bruno Haible  <bruno@clisp.org>
9343
9344         * gnulib-tool (func_import): Comment out code that spits out the
9345         new files with --dry-run.
9346
9347 2005-09-18  Bruno Haible  <bruno@clisp.org>
9348
9349         * doc/gnulib.texi (Invoking gnulib-tool): 50% rewritten.
9350
9351 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
9352
9353         * lib/stat-time.h: New file.
9354         * lib/timespec.h (ST_TIME_CMP_NS, ST_TIME_CMP, ATIME_CMP, CTIME_CMP):
9355         (MTIME_CMP, TIMESPEC_NS): Remove.  Now done by stat-time.h,
9356         in a different way.
9357         (timespec_cmp): New function.
9358         * lib/utimecmp.c: Include stat-time.h.
9359         (SYSCALL_RESOLUTION): Depend on whether various struct stat
9360         members exist, not on the obsolescent ST_MTIM_NSEC.
9361         (utimecmp): Use the new stat-time functions rater than TIMESPEC_NS.
9362
9363 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
9364
9365         * config/srclist.txt: Remove glibc bug 1033 and uncomment mktime.c.
9366
9367 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
9368
9369         * MODULES.html.sh (File system functions): Add stat-time.
9370         * modules/stat-time: New file.
9371         * modules/timespec (Files): Remove m4/st_mtim.m4; this
9372         is now done in a different way, by the stat-time module.
9373         * modules/utimecmp (Depends-on): Add stat-time.
9374
9375 2005-09-15  Paul Eggert  <eggert@cs.ucla.edu>
9376
9377         * m4/st_mtim.m4: Remove.  Superseded by...
9378         * m4/stat-time.m4: New file.
9379         * m4/timespec.m4 (gl_TIMESPEC): Require AC_C_INLINE.
9380         Do not invoke AC_STRUCT_ST_MTIM_NSEC; no longer needed.
9381
9382 2005-09-15  Derek Price  <derek@ximbiot.com>
9383
9384         * m4/strstr.m4 (gl_FUNC_STRSTR): Don't define strstr here.
9385
9386 2005-09-15  Derek Price  <derek@ximbiot.com>
9387
9388         * lib/regex_internal.h: Blank `pure' for GNUC < 3.
9389         * lib/regex_internal.c: Ditto, using this...
9390         (__GNUC_PREREQ): ...new macro.
9391         * lib/regcomp.c, regexec.c: Blank `always_inline' for GNUC < 3.1
9392         using...
9393         (__GNUC_PREREQ): ...this new macro.
9394
9395         * lib/strstr.h: Include string.h. Define strstr as a macro here.
9396
9397 2005-09-15  Derek Price  <derek@ximbiot.com>
9398             Paul Eggert  <eggert@cs.ucla.edu>
9399
9400         * lib/regcomp.c, regexec.c, regex_internal.c: Back out previous
9401         changes, consolidating in...
9402         * lib/regex_internal.h: ...this file.
9403
9404 2005-09-13  Jim Meyering  <jim@meyering.net>
9405
9406         * lib/canon-host.c: Filter through gnu indent and reword comments
9407         slightly.
9408         * lib/canon-host.h (ch_strerror_r): Tweak cpp indentation and spacing.
9409
9410 2005-09-13  Derek Price  <derek@ximbiot.com>
9411
9412         * lib/canon-host.c (canon_host_r): Set *cherror on memory allocation
9413         failure.
9414         Reported by Jim Meyering  <jim@meyering.net>.
9415
9416 2005-09-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
9417
9418         * lib/base64.c: Typo.
9419         (base64_encode): Put b64str in initialized data section.
9420
9421 2005-09-12  Paul Eggert  <eggert@cs.ucla.edu>
9422
9423         Merge glibc and coreutils changes into gnulib, plus a few
9424         extra fixes.
9425         * lib/md5.c: Use #error rather than a string.
9426         (CYCLIC): New macro, from glibc source.  Use it instead of rol.
9427         * lib/md5.h (__GNUC_PREREQ, __THROW): Define if not defined already.
9428         (__attribute__): Define to empty for non recent-GCC.
9429         (__md5_buffer, __md5_finish_ctx, __md5_init_ctx, __md5_process_block):
9430         (__md5_process_bytes, __md5_read_ctx, __md5_stream):
9431         Renamed from their non-__ counterparts, with new macros replacing
9432         them if not _LIBC.  Add __THROW attribute.
9433         (rol): Remove.
9434         (struct md5_ctx): Align buffer if using GCC.
9435         * lib/sha1.h (struct sha1_ctx): Likewise.
9436         * lib/sha1.c (SWAP): Renamed from the NOTSWAP.  All uses changed.
9437         The old name was backwards.
9438         (NOTSWAP): Remove; not used.
9439         (rol): New macro, moved here from md5.h.
9440         (sha1_process_block): Remove a FIXME that doesn't make sense.
9441
9442 2005-09-12  Derek Price  <derek@ximbiot.com>
9443
9444         Return usable errors from canon-host.
9445         * lib/canon-host.h: New file.
9446         * lib/canon-host.c (canon_host): Wrap...
9447         (canon_host_r): ...this new function, which now relies exclusively on
9448         getaddrinfo.
9449         (ch_strerror): New function.
9450         (last_cherror): New global.
9451         * lib/getaddrinfo.c: Move include of getaddrinfo.h first to test
9452         interface.
9453         (getaddrinfo): Add AI_CANONNAME functionality.  Don't do arithmetic on
9454         void *.
9455         (freeaddrinfo): Free ai->ai_canonname when set.
9456
9457 2005-09-12  Derek Price  <derek@ximbiot.com>
9458
9459         Make canon-host require getaddrinfo.
9460         * m4/canon-host.m4 (gl_CANON_HOST): Remove most dependencies.
9461         AC_LIBSOURCE canon-host.h.  Call...
9462         (gl_PREREQ_CANON_HOST): ...this new function, which requires
9463         gl_GETADDRINFO.
9464         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Compile gai_strerror when needed.
9465
9466 2005-09-12  Derek Price  <derek@ximbiot.com>
9467
9468         * modules/canon-host: Add canon-host.h.  Depend on getaddrinfo.  Make
9469         LGPL.
9470         * modules/getaddrinfo: Add link to opengroup spec.  Depend on strdup.
9471
9472 2005-09-12  Derek Price  <derek@ximbiot.com>
9473
9474         * lib/gai_strerror.c: Include config.h when available.  Include
9475         getaddrinfo.h before other headers to test interface.
9476         Reported by Larry Jones <lawrence.jones@ugs.com>.
9477
9478 2005-09-12  Derek Price  <derek@ximbiot.com>
9479             Paul Eggert  <eggert@cs.ucla.edu>
9480
9481         * modules/glob (Files): Add glob-libc.h.
9482
9483 2005-09-12  Derek Price  <derek@ximbiot.com>
9484             Paul Eggert  <eggert@cs.ucla.edu>
9485
9486         * m4/glob.m4 (gl_GLOB_SUBSTITUTE): AC_LIBSOURCES for glob.c,
9487         glob_.h, glob-libc.h.
9488         (gl_PREREQ_GLOB): Remove _SYS_CDEFS_H hack; no longer needed.
9489
9490 2005-09-12  Derek Price  <derek@ximbiot.com>
9491             Paul Eggert  <eggert@cs.ucla.edu>
9492
9493         * lib/glob-libc.h: Renamed from glob_.h.  The new version is
9494         taken from libc's glob.h, except with '#ifdef __GLOB_GNULIB'
9495         protecting things that should be done only in gnulib contexts.
9496         * lib/glob_.h: New file, containing only the glob things needed for
9497         gnulib.
9498         (GLOB_PREFIX): Remove.  All uses changed to look for __GLOB_GNULIB.
9499         (__GLOB_CONCAT, __GLOB_XCONCAT, __GLOB_ID): Remove; no longer needed.
9500         (glob, globfree, glob_pattern_p): Now defined simply in terms of
9501         rpl_glob, rpl_globfree, rpl_glob_pattern_p.
9502         (__GLOB_GNULIB): New macro, to keep the glob.h changes clearer
9503         and to respect the namespace rules better.
9504
9505 2005-09-08  Simon Josefsson  <jas@extundo.com>
9506
9507         * modules/socklen: New file.
9508
9509 2005-09-08  Simon Josefsson  <jas@extundo.com>
9510
9511         * m4/socklen.m4: New file.
9512
9513 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
9514
9515         * modules/utimens (Files): Add m4/utimbuf.m4, since
9516         m4/utimens.m4 requires gl_CHECK_TYPE_STRUCT_UTIMBUF.
9517         Reported by Sergey Poznyakoff.
9518
9519 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
9520
9521         * lib/glob.c (glob, globfree, __glob_pattern_p): Use old-style function
9522         definitions, since that's the preferred style in glibc.
9523         Fix a minor spacing issue, and update copyright notice to match
9524         glibc's.
9525
9526 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
9527
9528         * config/srclist.txt: Remove glibc bug 1061; it's been fixed.
9529
9530 2005-09-06  Simon Josefsson  <jas@extundo.com>
9531
9532         * lib/getpass.c (getpass): Fix typo, test for HAVE_TCSETATTR and not
9533         TCSETATTR.  Reported by Derek Price <derek@ximbiot.com>.
9534
9535 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
9536
9537         * lib/regex_internal.h (bitset_not): Add parens to avoid gcc -Wall
9538         warning.
9539
9540 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
9541
9542         * config/srclist.txt: Add glibc bug 1302.
9543
9544 2005-09-05  Paul Eggert  <eggert@cs.ucla.edu>
9545
9546         Change bitset word type from unsigned int to unsigned long int,
9547         as this has better performance on typical 64-bit hosts.
9548         Port bitset code to hosts with unusual word sizes.
9549         * lib/regcomp.c (build_equiv_class, build_charclass, build_range_exp):
9550         (build_collating_symbol):
9551         Prefer bitset to re_bitset_ptr_t in prototypes, when the actual
9552         argument is a bitset.  This is merely a style issue, but it makes
9553         it clearer that an entire array is expected.
9554         (re_compile_fastmap_iter, init_dfa, init_word_char, optimize_subexps):
9555         * lib/regcomp.c (lower_subexp, parse_bracket_exp, built_charclass_op):
9556         Port to the case where bitset_word is not the same as unsigned int.
9557         * lib/regex_internal.h (bitset_set, bitset_clear, bitset_contain):
9558         (bitset_not, bitset_merge, bitset_set_all, bitset_mask):
9559         Likewise.
9560         * lib/regexec.c (check_dst_limits_calc_pos_1,
9561         check_subexp_matching_top):
9562         (build_trtable, group_nodes_into_DFAstates):
9563         Likewise.
9564         * lib/regcomp.c (re_compile_fastmap_iter, utf8_sb_map, optimize_utf8):
9565         Don't assume that SBC_MAX is a multiple of BITSET_WORD_BITS.
9566         * lib/regex_internal.h (bitset_set_all, bitset_not): Likewise.
9567         * lib/regexec.c (group_nodes_into_DFAstates): Likewise.
9568         * lib/regcomp.c (utf8_sb_map): Don't assume UINT_MAX == 0xffffffff.
9569         * lib/regcomp.c (optimize_subexps, lower_subexp):
9570         Work even if bitset_word has holes in its bitwise representation.
9571         * lib/regex_internal.h (BITSET_WORD_BITS): Likewise.
9572         * lib/regexec.c (check_dst_limits_calc_pos_1,
9573         check_subexp_matching_top):
9574         Likewise.
9575         * lib/regex_internal.c (re_string_reconstruct):
9576         Don't assume UCHAR_MAX == 255.
9577         * lib/regex_internal.h (bitset_set_all): Likewise.
9578         * lib/regex_internal.h (BITSET_WORD_BITS): Renamed from UINT_BITS.
9579         All uses changed.
9580         (BITSET_WORDS): Renamed from BITSET_UINTS.  All uses changed.
9581         (bitset_word): New type, replacing 'unsigned int' for bitset uses.
9582         All uses changed.
9583         (BITSET_WORD_MAX): New macro.
9584         (bitset_set, bitset_clear, bitset_contain, bitset_empty):
9585         (bitset_set_all, bitset_copy):  Now inline functions, not macros.
9586         (bitset_empty, bitset_copy):
9587         Prefer sizeof (bitset) to multiplying it out ourselves.
9588         (bitset_not_merge): Remove; unused.
9589         (bitset_contain): Return bool, not unsigned int with one bit on.
9590         All callers changed.
9591         * lib/regexec.c (build_trtable): Don't assume bitset has no stricter
9592         alignment than re_node_set; do this by defining a new internal
9593         type struct dests_alloc and using it to allocate memory.
9594
9595 2005-09-05  Bruno Haible  <bruno@clisp.org>
9596
9597         * gnulib-tool (func_import): Fix comparison in handling of symbolic
9598         links.
9599
9600 2005-09-04  Martin Lambers  <marlam@marlam.de>  (tiny change)
9601
9602         * modules/size_max (Makefile.am): Add size_max.h
9603
9604 2005-09-04  Derek Price  <derek@ximbiot.com>
9605
9606         * gnulib-tool (func_import): Fix reversed $symbolic logic.
9607
9608 2005-09-03  Simon Josefsson  <jas@extundo.com>
9609
9610         * gnulib-tool: Fix typo.
9611
9612 2005-09-03  Simon Josefsson  <jas@extundo.com>
9613
9614         * config/srclist.txt: Add glibc bug 1293.
9615
9616 2005-09-03  Derek Price  <derek@ximbiot.com>
9617
9618         * m4/getlogin_r (gl_GETLOGIN_R): Fix cut & paste error.
9619         From Larry Jones <lawrence.jones@ugs.com>.
9620
9621 2005-09-02  Simon Josefsson  <jas@extundo.com>
9622
9623         * modules/socklen: New file.
9624
9625 2005-09-02  Simon Josefsson  <jas@extundo.com>
9626
9627         * modules/havelib: New module.
9628
9629         * modules/gettext, modules/iconv, modules/lock, modules/readline:
9630         Use havelib.
9631
9632 2005-09-02  Paul Eggert  <eggert@cs.ucla.edu>
9633
9634         Check for arithmetic overflow when calculating sizes, to prevent
9635         some buffer-overflow issues.  These patches are conservative, in the
9636         sense that when I couldn't determine whether an overflow was possible,
9637         I inserted a run-time check.
9638         * lib/regex_internal.h (re_xmalloc, re_xrealloc, re_x2realloc): New
9639         macros.
9640         (SIZE_MAX) [!defined SIZE_MAX]: New macro.
9641         (re_alloc_oversized, re_x2alloc_oversized, re_xnmalloc):
9642         (re_xnrealloc, re_x2nrealloc): New inline functions.
9643         * lib/regcomp.c (init_dfa, analyze, build_range_exp,
9644         parse_bracket_exp):
9645         (build_equiv_class, build_charclass): Check for arithmetic overflow
9646         in size expression calculations.
9647         * lib/regex_internal.c (re_string_realloc_buffers):
9648         (build_wcs_upper_buffer, re_node_set_add_intersect):
9649         (re_node_set_init_union, re_node_set_insert, re_node_set_insert_last):
9650         (re_dfa_add_node, register_state): Likewise.
9651         * lib/regexec.c (re_search_stub, re_copy_regs, re_search_internal):
9652         (prune_impossible_nodes, push_fail_stack, set_regs, check_arrival):
9653         (build_trtable, extend_buffers, match_ctx_init, match_ctx_add_entry):
9654         (match_ctx_add_subtop, match_ctx_add_sublast): Likewise.
9655
9656 2005-09-02  Paul Eggert  <eggert@cs.ucla.edu>
9657
9658         * modules/inttostr (Files): Add m4/inttypes_h.m4, m4/stdint_h.m4,
9659         m4/ulonglong.m4.  Problem reported by Martin Lambers.
9660
9661 2005-09-02  Bruno Haible  <bruno@clisp.org>
9662
9663         Support for lib vs. lib64 distinction on biarch platforms.
9664         * m4/lib-prefix.m4 (AC_LIB_PREPARE_MULTILIB): New macro.
9665         (AC_LIB_PREFIX): Require it. Use $acl_libdirstem instead of 'lib'.
9666         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Likewise.
9667
9668 2005-09-02  Bruno Haible  <bruno@clisp.org>
9669
9670         * gnulib-tool (import): In the other first-use case, provide defaults
9671         as well.
9672
9673 2005-09-02  Bruno Haible  <bruno@clisp.org>
9674
9675         * config/srclist.txt: lib-link.m4 and lib-prefix.m4 currently have
9676         patches not yet found in the latest gettext release.
9677
9678 2005-09-01  Paul Eggert  <eggert@cs.ucla.edu>
9679
9680         * lib/glob.c (GET_LOGIN_NAME_MAX): Renamed from LOGIN_NAME_MAX,
9681         to avoid a collision with bits/local_lim.h in glibc.
9682         All uses changed.  Problem reported by Dmitry V. Levin in
9683         <http://sources.redhat.com/bugzilla/show_bug.cgi?id=1060>.
9684
9685         * lib/regex_internal.c (build_wcs_upper_buffer): Fix portability
9686         bugs in int versus size_t comparisons.
9687         (re_string_context_at): Fix bug where the code assumed that
9688         Idx is signed.
9689
9690         Use bool where appropriate.
9691         * lib/regcomp.c (re_set_fastmap): ICASE arg is bool, not int.
9692         All callers changed.
9693         (calc_eclosure_iter): Likewise, for ROOT arg.
9694         (parse_bracket_element): Likewise, for ACCEPT_HYPHEN arg.
9695         (build_charclass_op): Likewise, for NON_MATCH arg.
9696         * lib/regex_internal.c (re_string_allocate, re_string_construct):
9697         (re_string_construct_common): Likewise, for ICASE arg.
9698         * lib/regexec.c (re_search_2_stub, re_search_stub):
9699         Likewise, for RET_LEN arg.
9700         (check_matching): Likewise, for FL_LONGEST_MATCH arg.
9701         (set_regs): Likewise, for FL_BACKTRACK arg.
9702         * lib/regcomp.c (re_compile_fastmap_iter, optimize_utf8):
9703         (duplicate_node_closure, calc_inveclosure, calc_eclosure):
9704         (calc_eclosure_iter, parse_bracket_exp):
9705         Use bool for internal variables that are booleans.
9706         * lib/regexec.c (re_search_internal, check_matching,
9707         proceed_next_node):
9708         (set_regs, build_sifted_states, sift_states_bkref):
9709         (check_arrival_add_next_nodes, check_arrival_expand_ecl_sub):
9710         (expand_bkref_cache, build_trtable, group_nodes_into_DFAstates):
9711         (find_collation_sequence_value):
9712         Likewise.
9713         * lib/regex_internal.c (re_node_set_insert, re_node_set_insert_last):
9714         (re_node_set_compare):
9715         Return bool, not int. All callers changed.
9716         * lib/regexec.c (check_halt_node_context, check_dst_limits):
9717         (build_trtable, check_node_accept): Likewise.
9718         * lib/regex_internal.h: Include stdbool.h.
9719
9720         Fix bugs uncovered when converting to bool.
9721         * lib/regcomp.c (calc_eclosure_iter): Check for storage allocation
9722         failure instead of charging ahead blindly.
9723         * lib/regex_internal.c (register_state): Likewise.
9724         * lib/regexec.c (re_search_2_stub): Use simpler method than boolean
9725         for freeing internal storage.
9726         (group_nodes_into_DFA_states): Use unsigned int, not int, for
9727         bitset pieces used as boolean, to avoid undefined behavior
9728         on hosts that do int overflow checking.
9729
9730 2005-09-01  Paul Eggert  <eggert@cs.ucla.edu>
9731
9732         * config/srclist.txt: Add glibc bugs 1285-1287.
9733
9734 2005-09-01  Jim Meyering  <jim@meyering.net>
9735
9736         * m4/lchown.m4: Require gl_FUNC_CHOWN, for the definition of
9737         CHOWN_MODIFIES_SYMLINK, which is used by lchown.c.
9738         Require gl_STAT_MACROS, too.
9739
9740 2005-09-01  Bruno Haible  <bruno@clisp.org>
9741
9742         * gnulib-tool (import): In the first-use case, provide defaults.
9743
9744 2005-09-01  Bruno Haible  <bruno@clisp.org>
9745
9746         * gnulib-tool (func_import): Remove the .tmp files.
9747
9748 2005-09-01  Bruno Haible  <bruno@clisp.org>
9749
9750         * gnulib-tool (func_import): Fix handling of symbolic links.
9751
9752 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
9753
9754         On 64-bit hosts (where size_t is 64 bits and int is 32 bits), the
9755         old glibc regex code mishandles strings longer than 2**31 bytes.
9756         This patch fixes this when the regex code is used in gnulib
9757         (i.e., outside glibc).
9758
9759         This patch should not affect the use of the regex code inside
9760         glibc.  No doubt this problem also needs to be handled for glibc
9761         as well, but the result will be an incompatible change to the
9762         glibc ABI, and the old ABI will have to be supported too.  That
9763         can be the the subject for another patch.
9764
9765         * lib/regex.h (_REGEX_LARGE_OFFSETS): New feature-test macro,
9766         governing whether the rest of this patch is active.  By default,
9767         the macro is disabled and the patch has no effect.
9768         (regoff_t) [defined _REGEX_LARGE_OFFSETS]: Define to off_t, not int.
9769         (__re_idx_t, __re_size_t, __re_long_size_t): New types.
9770         (struct re_pattern_buffer, re_search, re_search_2, re_match):
9771         (re_match_2, re_set_registers): Use the new types.
9772         * lib/regex_internal.h (Idx, re_hashval_t): New types.
9773         (REG_MISSING, REG_ERROR, REG_VALID_INDEX, REG_VALID_NONZERO_INDEX):
9774         New macros.
9775         (re_node_set, re_charset_t, re_token_t, re_string_realloc_buffers):
9776         (re_string_context_at, bin_tree_t, re_dfastate_t):
9777         (struct re_state_table_entry, state_array_t, re_sub_match_last_t):
9778         (re_sub_match_top_t, re_match_context_t, re_sift_context_t):
9779         (struct re_fail_stack_ent_t, struct re_fail_stack_t, struct re_dfa_t):
9780         (re_string_char_size_at, re_string_wchar_at):
9781         (re_string_elem_size_at):
9782         Use the new types and macros to port to 64-bit hosts.
9783         Use unsigned types for internal values, so that the code
9784         mostly works even for arrays larger than SSIZE_MAX.
9785         * lib/regcomp.c (re_compile_internal, init_dfa, duplicate_node):
9786         (search_duplicated_node, calc_eclosure_iter, fetch_number):
9787         (parse_reg_exp, parse_branch, parse_expression, parse_sub_exp):
9788         (build_equiv_class, build_charclass, re_compile_fastmap_iter):
9789         (free_dfa_content, create_initial_state, optimize_utf8, analyze):
9790         (optimize_subexps, calc_first, link_nfa_nodes, duplicate_node_closure):
9791         (calc_inveclosure, parse_dup_op, build_range_exp):
9792         (build_collating_symbol, parse_bracket_exp, build_charclass_op):
9793         (fetch_number, create_token_tree, mark_opt_subexp):
9794         Likewise.
9795         * lib/regex_internal.c (re_string_construct_common,
9796         create_ci_newstate):
9797         (create_cd_newstate, re_string_allocate, re_string_construct):
9798         (re_string_realloc_buffers, build_wcs_upper_buffer):
9799         (re_string_skip_chars, build_upper_buffer, re_string_translate_buffer):
9800         (re_string_reconstruct, re_string_peek_byte_case):
9801         (re_string_fetch_byte_case, re_string_context_at):
9802         (re_node_set_alloc, re_node_set_init_1, re_node_set_init_2):
9803         (re_node_set_init_copy, re_node_set_add_intersect):
9804         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
9805         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
9806         (re_node_set_remove_at, re_dfa_add_node, calc_state_hash):
9807         (re_acquire_state, re_acquire_state_context, register_state):
9808         Likewise.
9809         * lib/regex.c (match_ctx_init, match_ctx_add_entry,
9810         search_cur_bkref_entry):
9811         (match_ctx_add_subtop, match_ctx_add_sublast, sift_ctx_init):
9812         (re_search_internal, re_search_2_stub, re_search_stub)
9813         (re_copy_regs, check_matching, check_halt_state_context, update_regs):
9814         (push_fail_stack, sift_states_iter_mb, build_sifted_states):
9815         (update_cur_sifted_state, check_dst_limits):
9816         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
9817         (check_subexp_limits, sift_states_bkref, merge_state_array):
9818         (check_subexp_matching_top, get_subexp, get_subexp_sub):
9819         (find_subexp_node, check_arrival, check_arrival_add_next_nodes):
9820         (check_arrival_expand_ecl, check_arrival_expand_ecl_sub):
9821         (expand_bkref_cache, check_node_accept_bytes):
9822         (group_nodes_into_DFAstates, check_node_accept, regexec, re_match):
9823         (re_search, re_match_2, re_search_2, prune_impossible_nodes):
9824         (acquire_init_state_context, check_halt_node_context):
9825         (proceed_next_node, pop_fail_stack, set_regs, free_fail_stack_return):
9826         (sift_states_backward, clean_state_log_if_needed):
9827         (sub_epsilon_src_nodes, add_epsilone_src_nodes, merge_state_with_log):
9828         (find_recover_state, transit_state_sb, transit_state_mb):
9829         (transit_state_bkref, build_trtable, match_ctx_clean):
9830         Likewise.
9831         * lib/regcomp.c (parse_dup_op): Add an extra test if Idx is unsigned,
9832         to work around an assumption that REG_MISSING is negative.
9833
9834         * lib/regcomp.c (re_comp) [defined _REGEX_RE_COMP || defined _LIBC]:
9835         (seek_collating_symbol_entry) [defined _LIBC]:
9836         (lookup_collation_sequence_value) [defined _LIBC]:
9837         (build_range_exp, build_collating_symbol) [defined _LIBC]:
9838         Use prototypes rather than old-style function definitions.
9839         * lib/regexec.c (re_exec) [defined _REGEX_RE_COMP || defined _LIBC]:
9840         (transit_state_sb) [0]:
9841         (find_collation_sequence_value) [defined _LIBC]: Likewise.
9842
9843         * lib/regexec.c (re_search_internal): Simplify update of rm_so and
9844         rm_eo.
9845
9846         * lib/regcomp.c (re_compile_fastmap_iter, init_dfa, init_word_char):
9847         (optimize_subexps, lower_subexp):
9848         Don't assume 1<<31 has defined behavior on hosts with 32-bit int,
9849         since the signed shift might overflow.  Use 1u<<31 instead.
9850         * lib/regex_internal.h (bitset_set, bitset_clear, bitset_contain):
9851         Likewise.
9852         * lib/regexec.c (check_dst_limits_calc_pos_1,
9853         check_subexp_matching_top): Likewise.
9854
9855         * lib/regcomp.c (optimize_subexps, lower_subexp):
9856         Use CHAR_BIT rather than 8, for clarity.
9857         * lib/regexec.c (check_dst_limits_calc_pos_1):
9858         (check_subexp_matching_top): Likewise.
9859         * lib/regcomp.c (init_dfa): Make table_size unsigned, so that we don't
9860         have to worry about portability issues when shifting it left.
9861         Remove no-longer-needed test for table_size > 0.
9862         * lib/regcomp.c (parse_sub_exp): Do not shift more bits than there are
9863         in a word, as the resulting behavior is undefined.
9864         * lib/regexec.c (check_dst_limits_calc_pos_1): Likewise;
9865         in one case, a <= should have been an <, and in another case the
9866         whole test was missing.
9867         * lib/regex_internal.h (BYTE_BITS): Remove.  All uses changed to
9868         the standard name CHAR_BIT.
9869         * lib/regexec.c (match_ctx_add_entry): Don't assume that ~0 == -1;
9870         this is not true on one's complement and signed-magnitude hosts.
9871
9872         * lib/regex_internal.h (re_sub_match_top_t): Remove unused member
9873         next_last_offset.
9874         (struct re_dfa_t): Remove unused member states_alloc.
9875         * lib/regcomp.c (init_dfa): Don't initialize unused members.
9876
9877 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
9878
9879         * m4/regex.m4 (gl_REGEX): Require AC_SYS_LARGEFILE, Define
9880         _REGEX_LARGE_OFFSETS).  Test for regoff_t/off_t bug in 64-bit
9881         and large-file glibc and in 32-bit large-file Solaris.
9882
9883 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
9884
9885         * lib/regex_internal.c (re_string_reconstruct): Don't assume buffer
9886         lengths fit in regoff_t; this isn't true if regoff_t is the same
9887         width as size_t.
9888         * lib/regex.c (re_search_internal): 5th arg is LAST_START
9889         (= START + RANGE) instead of RANGE.  This avoids overflow
9890         problems when regoff_t is the same width as size_t.
9891         All callers changed.
9892         (re_search_2_stub): Check for overflow when adding the
9893         sizes of the two strings.
9894         (re_search_stub): Check for overflow when adding START
9895         to RANGE; if it occurs, substitute the extreme value.
9896
9897 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
9898
9899         * config/srclist.txt: Add glibc bugs 1273, 1278-1282, 1284.
9900
9901 2005-08-31  Jim Meyering  <jim@meyering.net>
9902
9903         * lib/regcomp.c (search_duplicated_node): Make first pointer arg
9904         a pointer-to-const.
9905         * lib/regex_internal.c (create_ci_newstate, create_cd_newstate):
9906         (register_state): Likewise.
9907         * lib/regexec.c (search_cur_bkref_entry, check_dst_limits):
9908         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
9909         (group_nodes_into_DFAstates): Likewise.
9910
9911 2005-08-31  Jim Meyering  <jim@meyering.net>
9912
9913         * check-module: Add a FIXME comment.
9914
9915 2005-08-31  Eric Blake  <ebb9@byu.net>
9916
9917         * modules/unistd-safer (Files): Add unistd--.h.
9918         * modules/stdio-safer (Files): Add stdio--.h.
9919
9920 2005-08-31  Derek Price  <derek@ximbiot.com>
9921
9922         * lib/getdelim.c (getdelim): Return EOF on EOF.
9923         Reported by Larry Jones <lawrence.jones@ugs.com>.
9924
9925 2005-08-31  Bruno Haible  <bruno@clisp.org>
9926
9927         Avoid unnecessary diffs in the generated lib/Makefile.am.
9928         * gnulib-tool (func_emit_lib_Makefile_am): Don't write the cmd into
9929         the generated files.
9930         (func_import): Don't set cmd.
9931
9932 2005-08-31  Bruno Haible  <bruno@clisp.org>
9933
9934         * lib/strstr.c: Include <stddef.h>, for NULL.
9935         * lib/strcasestr.c: Likewise.
9936         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
9937
9938 2005-08-31  Bruno Haible  <bruno@clisp.org>
9939
9940         * gnulib-tool: New option --macro-prefix.
9941         (func_import): Use macro_prefix.
9942         (import): Handle option --macro-prefix.
9943
9944 2005-08-31  Bruno Haible  <bruno@clisp.org>
9945
9946         * gnulib-tool (import): Rename most ac_* variables to cached_*.
9947         Also use new variables cached_lgpl, cached_libtool.
9948
9949 2005-08-31  Bruno Haible  <bruno@clisp.org>
9950
9951         * gnulib-tool (func_import): Require AC_GNU_SOURCE etc. instead of
9952         always instantiating them.
9953
9954 2005-08-31  Bruno Haible  <bruno@clisp.org>
9955
9956         * gnulib-tool (func_import): Read the previous cached settings
9957         from gnulib-cache.m4 and gnulib-comp.m4. Remove files that were
9958         earlier added by gnulib but are now dropped. Warn when a gnulib file
9959         overwrites a non-gnulib file.
9960
9961 2005-08-31  Bruno Haible  <bruno@clisp.org>
9962
9963         * gnulib-tool (func_import): Generate two files gnulib-cache.m4 and
9964         gnulib-comp.m4 instead of a single gnulib.m4, to make it easy for
9965         projects that don't keep autogenerated files in CVS. Put into
9966         actioncmd only the specified modules, not the transitive closure.
9967
9968 2005-08-31  Bruno Haible  <bruno@clisp.org>
9969
9970         * gnulib-tool (func_import): Fix defaulting of $libname and $libtool.
9971         Create directories that shall be filled.
9972         (import): Don't look for gl_* macros in configure.ac. Recurse across
9973         all directories containing a gnulib-cache.m4 files, if meaningful.
9974
9975 2005-08-31  Bruno Haible  <bruno@clisp.org>
9976
9977         * gnulib-tool (func_import): Emit also a stub for gl_LIBTOOL.
9978         (import): Set seen_libtool when we see gl_LIBTOOL.
9979
9980 2005-08-31  Bruno Haible  <bruno@clisp.org>
9981
9982         * gnulib-tool (func_import): Also copy m4/gnulib-tool.m4. Omit
9983         declaration macro definitions from generated gnulib.m4.
9984
9985 2005-08-30  "Oskar Liljeblad"  <oskar@osk.mine.nu>
9986
9987         * lib/iconvme.h: Add prototype for iconv_alloc.
9988
9989 2005-08-29  Simon Josefsson  <jas@extundo.com>
9990
9991         * lib/iconvme.c: Fix errno.
9992
9993 2005-08-29  Bruno Haible  <bruno@clisp.org>
9994
9995         * gnulib-tool: Enclose all occurrences of $destdir in "...", so
9996         that it works when the directory contains spaces.
9997
9998 2005-08-29  Bruno Haible  <bruno@clisp.org>
9999
10000         * gnulib-tool (import): Avoid unnecessary spaces in $avoidlist.
10001
10002 2005-08-29  Bruno Haible  <bruno@clisp.org>
10003
10004         * gnulib-tool (func_import): Emit more comments into gnulib.m4.
10005         Emit more advice.
10006
10007 2005-08-29  Bruno Haible  <bruno@clisp.org>
10008         and Stepan Kasal  <kasal@ucw.cz>
10009
10010         * check-module: If more parameters are given, check each of them
10011         separately; add more exceptions, as noted by Jim Meyering.
10012         (check_module): New procedure.
10013         (%exempt_header): Now contains all exceptions.
10014
10015 2005-08-29  Ben Pfaff  <blp@cs.stanford.edu>
10016
10017         * modules/byteswap (Makefile.am): Fix rule to not assume GNU make.
10018
10019 2005-08-29  "Oskar Liljeblad"  <oskar@osk.mine.nu>
10020
10021         * lib/iconvme.c: Split iconv_string into iconv_alloc.
10022
10023 2005-08-28  Bruno Haible  <bruno@clisp.org>
10024
10025         * m4/gnulib-tool.m4: New file.
10026
10027 2005-08-27  Jim Meyering  <jim@meyering.net>
10028
10029         * modules/unistd-safer (Files): Add pipe-safer.c.
10030         * modules/fcntl-safer (Files): Add creat-safer.c.
10031
10032 2005-08-27  Jim Meyering  <jim@meyering.net>
10033
10034         * m4/stdlib-safer.m4: New file.  From coreutils.
10035         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Add stdio--.h.
10036         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Add creat-safer.c to the
10037         AC_LIBSOURCES list and arrange to compile it via AC_LIBOBJ.
10038         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Likewise, add pipe-safer.c.
10039         Add pipe-safer.c and unistd--.h to the AC_LIBSOURCES list.
10040
10041 2005-08-27  Jim Meyering  <jim@meyering.net>
10042
10043         * lib/fopen-safer.c: Merge minor changes from coreutils.
10044         * lib/dup-safer.c: Likewise.
10045         * lib/fd-safer.c: Likewise.
10046
10047         Merge from coreutils.
10048         * lib/stdio--.h: New file.
10049         * lib/stdlib--.h: New file.
10050         * lib/mkstemp-safer.c: New file.
10051
10052         GNU tar needs these.
10053         * lib/pipe-safer.c: New file.
10054         * lib/creat-safer.c: New file.
10055         * lib/fcntl--.h (creat): Define to creat_safer.
10056         * lib/fcntl-safer.h: Include <sys/types.h> and declare creat_safer.
10057         * lib/unistd--.h (pipe): Define to pipe_safer.
10058         * lib/unistd-safer.h: Declare pipe_safer.
10059
10060 2005-08-26  Simon Josefsson  <jas@extundo.com>
10061
10062         * lib/getpass.c: Use _WIN32 instead of WIN32, suggested by Bruno
10063         Haible <bruno@clisp.org>.
10064
10065 2005-08-26  Paul Eggert  <eggert@cs.ucla.edu>
10066
10067         * lib/regex_internal.h: Remove all references to
10068         RE_NO_INTERNAL_PROTOTYPES; no longer neeeded now that we assume C89
10069         or better.
10070         (bitset_not, bitset_merge, bitset_not_merge):
10071         (bitset_mask, re_string_allocate, re_string_construct):
10072         (re_string_reconstruct, re_string_destruct, re_string_elem_size_at):
10073         (re_string_char_size_at, re_string_wchar_at, re_string_peek_byte_case):
10074         (re_string_fetch_byte_case, re_node_set_alloc, re_node_set_init_1):
10075         (re_node_set_init_2, re_node_set_init_copy, re_node_set_add_intersect):
10076         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
10077         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
10078         (re_node_set_remove_at, re_dfa_add_node, re_acquire_state):
10079         (re_acquire_state_context):
10080         Remove unnecessary forward decls.
10081         (re_string_char_size_at, re_string_wchar_at, re_string_elem_size_at):
10082         Put __attribute at function definition,
10083         now that the function decl has been removed.
10084         * lib/regex_internal.c (re_string_peek_byte_case):
10085         (re_string_fetch_byte_case, re_node_set_compare, re_node_set_contains):
10086         Likewise.
10087
10088 2005-08-25  Stepan Kasal  <kasal@ucw.cz>
10089
10090         * m4/regex.m4: Add AC_PREREQ(2.50).
10091         (gl_REGEX): If --with-included-regex was given, skip the autodetection.
10092
10093 2005-08-25  Simon Josefsson  <jas@extundo.com>
10094
10095         * m4/getpass.m4: Check for termios.h, tcgetattr, tcsetattr, and
10096         __fsetlocking.
10097
10098 2005-08-25  Simon Josefsson  <jas@extundo.com>
10099
10100         * lib/getpass.c: Add WIN32 implementation.  Conditionalize use of
10101         termios.h, tcgetattr, tcsetattr and __fsetlocking.  Remove some
10102         GLIBC specific code.
10103
10104 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
10105
10106         Make regex safe for g++.  This fixes one real bug (an "err"
10107         that should have been "*err").  g++ problem reported by
10108         Sam Steingold.
10109         * lib/regex_internal.h (re_calloc): New macro, consistent with
10110         re_malloc etc.  All callers of calloc changed to use re_calloc.
10111         * lib/regex_internal.c (build_wcs_upper_buffer): Return reg_errcode_t,
10112         not int.  All callers changed.
10113         * lib/regcomp.c (re_compile_fastmap_iter): Don't use
10114         alloca (mb_cur_max); just use an array of size MB_LEN_MAX.
10115         * lib/regexec.c (push_fail_stack): Use re_realloc, not realloc.
10116         (find_recover_state): Change "err" to "*err"; this fixes what
10117         appears to be a real bug.
10118         (check_arrival_expand_ecl_sub): Be consistent about reg_errcode_t
10119         versus int.
10120
10121 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
10122
10123         * modules/regex (Depends-on): Add malloc, since the code
10124         assumes that !malloc(0) means failure.
10125
10126 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
10127
10128         * lib/regexec.c (set_regs): Don't alloca with an unbounded size.
10129
10130         alloca modernization/simplification for regex.
10131         * lib/regex.c: Remove portability cruft for alloca.  This no longer
10132         needs to be at the start of the file, and can be moved into
10133         regex_internal.h and simplified.
10134         * lib/regex_internal.h: Include <alloca.h>.
10135         (__libc_use_alloca) [!defined _LIBC]: New macro.
10136         * lib/regexec.c (build_trtable): Remove "#ifdef _LIBC", since the code
10137         now works outside glibc.
10138
10139 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
10140
10141         * config/srclist.txt: Add glibc bugs 1241, 1245.
10142
10143 2005-08-25  Jim Meyering  <jim@meyering.net>
10144
10145         * lib/open-safer.c: Include <config.h>.
10146         Otherwise, we'd lose LARGEFILE support in any file using
10147         e.g. "fcntl--.h"
10148
10149 2005-08-25  Bruno Haible  <bruno@clisp.org>
10150
10151         * m4/minmax.m4: Require autoconf 2.52.
10152         (gl_MINMAX_IN_HEADER): Add comments. Use m4_pushdef/m4_popdef instead
10153         of define/undefine. Use AS_TR_SH and AS_TR_CPP as more robust
10154         alternatives of translit over the alphabet.
10155         Based on a patch from Stepan Kasal <kasal@ucw.cz>.
10156
10157 2005-08-24  Simon Josefsson  <jas@extundo.com>
10158
10159         * tests/test-getpass.c: New file.
10160
10161 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
10162
10163         * m4/regex.m4 (gl_REGEX): Use POSIX-compliant spellings when testing
10164         for GNU regex features.
10165
10166 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
10167
10168         * lib/regcomp.c (regerror): 2nd arg is 'restrict', as per POSIX.
10169         * lib/regex.h (regerror): Likewise.
10170
10171         * lib/regex.c: Do not include <sys/types.h>, as POSIX no longer
10172         requires this.  (The code never needed it.)
10173
10174         * lib/regcomp.c, regex_internal.c, regex_internal.h, regexec.c:
10175         All uses of recently-renamed identifiers changed to use the new,
10176         POSIX-compliant names.  The code will build and run just fine
10177         without these changes, but it's better to eat our own dog food
10178         and use the standard-conforming names.
10179
10180         * lib/regex.h: Fix a multitude of POSIX name space violations.
10181         These changes have an effect only for programs that define
10182         _POSIX_C_SOURCE, _POSIX_SOURCE, or _XOPEN_SOURCE; they
10183         do not change anything for programs compiled in the normal way.
10184         Also, there is no effect on the ABI.
10185
10186         (_REGEX_SOURCE): New macro.
10187         Do not include <stddef.h> if _XOPEN_SOURCE and VMS are both
10188         defined and _GNU_SOURCE is not; this fixes a name space violation.
10189
10190         Rename the following macros to obey POSIX requirements.
10191         The old names are still visible as macros if _REGEX_SOURCE is defined.
10192         (REG_BACKSLASH_ESCAPE_IN_LISTS): renamed from
10193         RE_BACKSLASH_ESCAPE_IN_LISTS.
10194         (REG_BK_PLUS_QM): renamed from RE_BK_PLUS_QM.
10195         (REG_CHAR_CLASSES): renamed from RE_CHAR_CLASSES.
10196         (REG_CONTEXT_INDEP_ANCHORS): renamed from RE_CONTEXT_INDEP_ANCHORS.
10197         (REG_CONTEXT_INDEP_OPS): renamed from RE_CONTEXT_INDEP_OPS.
10198         (REG_CONTEXT_INVALID_OPS): renamed from RE_CONTEXT_INVALID_OPS.
10199         (REG_DOT_NEWLINE): renamed from RE_DOT_NEWLINE.
10200         (REG_DOT_NOT_NULL): renamed from RE_DOT_NOT_NULL.
10201         (REG_HAT_LISTS_NOT_NEWLINE): renamed from RE_HAT_LISTS_NOT_NEWLINE.
10202         (REG_INTERVALS): renamed from RE_INTERVALS.
10203         (REG_LIMITED_OPS): renamed from RE_LIMITED_OPS.
10204         (REG_NEWLINE_ALT): renamed from RE_NEWLINE_ALT.
10205         (REG_NO_BK_BRACES): renamed from RE_NO_BK_BRACES.
10206         (REG_NO_BK_PARENS): renamed from RE_NO_BK_PARENS.
10207         (REG_NO_BK_REFS): renamed from RE_NO_BK_REFS.
10208         (REG_NO_BK_VBAR): renamed from RE_NO_BK_VBAR.
10209         (REG_NO_EMPTY_RANGES): renamed from RE_NO_EMPTY_RANGES.
10210         (REG_UNMATCHED_RIGHT_PAREN_ORD): renamed from
10211         RE_UNMATCHED_RIGHT_PAREN_ORD.
10212         (REG_NO_POSIX_BACKTRACKING): renamed from RE_NO_POSIX_BACKTRACKING.
10213         (REG_NO_GNU_OPS): renamed from RE_NO_GNU_OPS.
10214         (REG_DEBUG): renamed from RE_DEBUG.
10215         (REG_INVALID_INTERVAL_ORD): renamed from RE_INVALID_INTERVAL_ORD.
10216         (REG_IGNORE_CASE): renamed from RE_ICASE.  This renaming is a bit
10217         unusual, since we can't clash with the POSIX REG_ICASE.
10218         (REG_CARET_ANCHORS_HERE): renamed from RE_CARET_ANCHORS_HERE.
10219         (REG_CONTEXT_INVALID_DUP): renamed from RE_CONTEXT_INVALID_DUP.
10220         (REG_NO_SUB): renamed from RE_NO_SUB.
10221         (REG_SYNTAX_EMACS): renamed from RE_SYNTAX_EMACS.
10222         (REG_SYNTAX_AWK): renamed from RE_SYNTAX_AWK.
10223         (REG_SYNTAX_GNU_AWK): renamed from RE_SYNTAX_GNU_AWK.
10224         (REG_SYNTAX_POSIX_AWK): renamed from RE_SYNTAX_POSIX_AWK.
10225         (REG_SYNTAX_GREP): renamed from RE_SYNTAX_GREP.
10226         (REG_SYNTAX_EGREP): renamed from RE_SYNTAX_EGREP.
10227         (REG_SYNTAX_POSIX_EGREP): renamed from RE_SYNTAX_POSIX_EGREP.
10228         (REG_SYNTAX_ED): renamed from RE_SYNTAX_ED.
10229         (REG_SYNTAX_SED): renamed from RE_SYNTAX_SED.
10230         (_REG_SYNTAX_POSIX_COMMON): renamed from _RE_SYNTAX_POSIX_COMMON.
10231         (REG_SYNTAX_POSIX_BASIC): renamed from RE_SYNTAX_POSIX_BASIC.
10232         (REG_SYNTAX_POSIX_MINIMAL_BASIC): renamed from
10233         RE_SYNTAX_POSIX_MINIMAL_BASIC.
10234         (REG_SYNTAX_POSIX_EXTENDED): renamed from RE_SYNTAX_POSIX_EXTENDED.
10235         (REG_SYNTAX_POSIX_MINIMAL_EXTENDED): renamed from
10236         RE_SYNTAX_POSIX_MINIMAL_EXTENDED.
10237         (REG_DUP_MAX): renamed from RE_DUP_MAX.  No need to undef it.
10238         (REG_UNALLOCATED): Renamed from REGS_UNALLOCATED.
10239         (REG_REALLOCATE): Renamed from REGS_REALLOCATE.
10240         (REG_FIXED): Renamed from REGS_FIXED.
10241         (REG_NREGS): Renamed from RE_NREGS.
10242
10243         (REG_ICASE, REG_NEWLINE, REG_NOSUB): Do not depend on the values
10244         of other REG_* macros, since POSIX says the user is allowed to
10245         #undef these macros selectively.
10246
10247         (reg_errcode_t): Update comment stating what other tables need
10248         to be consistent.
10249
10250         Rename the following enum values to obey POSIX requirements.
10251         The old names are still visible as macros.
10252         (_REG_ENOSYS): Renamed from REG_ENOSYS.  Define even if _XOPEN_SOURCE
10253         is not defined, since GNU is supposed to be a superset of POSIX as
10254         much as possible, and since we want reg_errcode_t to be a signed
10255         type for implementation consistency.
10256         (_REG_NOERROR): Renamed from REG_NOERROR.
10257         (_REG_NOMATCH): Renamed from REG_NOMATCH.
10258         (_REG_BADPAT): Renamed from REG_BADPAT.
10259         (_REG_ECOLLATE): Renamed from REG_ECOLLATE.
10260         (_REG_ECTYPE): Renamed from REG_ECTYPE.
10261         (_REG_EESCAPE): Renamed from REG_EESCAPE.
10262         (_REG_ESUBREG): Renamed from REG_ESUBREG.
10263         (_REG_EBRACK): Renamed from REG_EBRACK.
10264         (_REG_EPAREN): Renamed from REG_EPAREN.
10265         (_REG_EBRACE): Renamed from REG_EBRACE.
10266         (_REG_BADBR): Renamed from REG_BADBR.
10267         (_REG_ERANGE): Renamed from REG_ERANGE.
10268         (_REG_ESPACE): Renamed from REG_ESPACE.
10269         (_REG_BADRPT): Renamed from REG_BADRPT.
10270         (_REG_EEND): Renamed from REG_EEND.
10271         (_REG_ESIZE): Renamed from REG_ESIZE.
10272         (_REG_ERPAREN): Renamed from REG_ERPAREN.
10273         (REG_ENOSYS, REG_NOERROR, REG_NOMATCH, REG_BADPAT, REG_ECOLLATE):
10274         (REG_ECTYPE, REG_EESCAPE, REG_ESUBREG, REG_EBRACK, REG_EPAREN):
10275         (REG_EBRACE, REG_BADBR, REG_ERANGE, REG_ESPACE, REG_BADRPT, REG_EEND):
10276         (REG_ESIZE, REG_ERPAREN): Now macros, not enum constants.
10277
10278         (_REG_RE_NAME, _REG_RM_NAME): New macros.
10279         (REG_TRANSLATE_TYPE): Renamed from RE_TRANSLATE_TYPE.  All uses
10280         changed.  But support the old name if the new one is not defined
10281         and if _REGEX_SOURCE.
10282
10283         Change the following member names in struct re_pattern_buffer.
10284         The old names are still supported if !_REGEX_SOURCE.
10285         The new names are always supported, regardless of _REGEX_SOURCE.
10286         (re_buffer): Renamed from buffer.
10287         (re_allocated): Renamed from allocated.
10288         (re_used): Renamed from used.
10289         (re_syntax): Renamed from syntax.
10290         (re_fastmap): Renamed from fastmap.
10291         (re_translate): Renamed from translate.
10292         (re_can_be_null): Renamed from can_be_null.
10293         (re_regs_allocated): Renamed from regs_allocated.
10294         (re_fastmap_accurate): Renamed from fastmap_accurate.
10295         (re_no_sub): Renamed from no_sub.
10296         (re_not_bol): Renamed from not_bol.
10297         (re_not_eol): Renamed from not_eol.
10298         (re_newline_anchor): Renamed from newline_anchor.
10299
10300         Change the following member names in struct re_registers.
10301         The old names are still supported if !_REGEX_SOURCE.
10302         The new names are always supported, regardless of _REGEX_SOURCE.
10303         (rm_num_regs): Renamed from num_regs.
10304         (rm_start): Renamed from start.
10305         (rm_end): Renamed from end.
10306
10307         (re_set_syntax, re_compile_pattern, re_compile_fastmap):
10308         (re_search, re_search_2, re_match, re_match_2, re_set_registers):
10309         Prepend __ to parameter names.
10310
10311         Undo yesterday's changes.
10312
10313 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
10314
10315         * config/srclist.txt: Remove glibc bug 1233 and add 1236, which
10316         supersedes it. Add glibc bugs 1237, 1238, 1240.  Comment out
10317         lib/regex.c.
10318
10319 2005-08-24  Jim Meyering  <jim@meyering.net>
10320
10321         Sync from coreutils.
10322         * m4/fcntl-safer.m4: New file.
10323
10324         * m4/xgetcwd.m4: Use AC_LIBSOURCES and AC_LIBOBJ to indicate source
10325         and object files for this module.
10326
10327 2005-08-24  Jim Meyering  <jim@meyering.net>
10328
10329         Sync from coreutils.
10330         * lib/fcntl--.h, lib/fcntl-safer.h, lib/open-safer.c: New files.
10331
10332 2005-08-24  Jim Meyering  <jim@meyering.net>
10333
10334         * modules/xgetcwd (Makefile.am): Remove `lib_SOURCES += ...' line,
10335         now that xgetcwd.m4 requires xgetcwd.c and xgetcwd.h.
10336
10337 2005-08-24  Jim Meyering  <jim@meyering.net>
10338
10339         * modules/fcntl-safer: New module.
10340         * modules/fts (Depends-on): Add fcntl-safer.
10341         * MODULES.html.sh (File descriptor based Input/Output):
10342         Add fcntl-safer.
10343
10344 2005-08-24  Bruno Haible  <bruno@clisp.org>
10345
10346         Support for unit test modules.
10347         * modules/README: Mention tests modules.
10348         * modules/TEMPLATE-TESTS: New file.
10349         * gnulib-tool: New options --extract-tests-module, --with-tests and
10350         --tests-base (unused for the moment).
10351         (testsbase, inctests): New variables.
10352         (func_all_modules): Exclude TEMPLATE-TESTS and *-tests.
10353         (func_verify_module): Exclude TEMPLATE-TESTS.
10354         (func_verify_nontests_module, func_verify_tests_module): New functions.
10355         (func_get_dependencies): Add implicit dependency for tests modules.
10356         (func_get_tests_module): New function.
10357         (func_modules_transitive_closure): When --with-tests was specified,
10358         include the unit tests as well, unless explicitly avoided.
10359         (func_emit_lib_Makefile_am): Ignore the tests modules here.
10360         (func_emit_tests_Makefile_am): New function.
10361         (func_create_testdir): When --with-tests was specified, emit a
10362         tests/ directory.
10363         * MODULES.html.sh (Future developments): Update.
10364
10365 2005-08-24  Bruno Haible  <bruno@clisp.org>
10366
10367         * modules/tls-tests: New file.
10368         * tests/test-tls.c: New file, from GNU gettext.
10369
10370 2005-08-24  Bruno Haible  <bruno@clisp.org>
10371
10372         * modules/lock-tests: New file.
10373         * tests/test-lock.c: New file, from GNU gettext.
10374
10375 2005-08-24  Bruno Haible  <bruno@clisp.org>
10376
10377         * lib/lock.h: Add multiple inclusion guard.
10378         * lib/tls.h: Add multiple inclusion guard.
10379
10380 2005-08-24  Bruno Haible  <bruno@clisp.org>
10381
10382         * gnulib-tool: Add support for the --aux-dir option to
10383         --create-testdir, --create-megatestdir, --test, --megatest.
10384         (func_create_testdir, func_create_megatestdir): Optionally emit a
10385         AC_CONFIG_AUX_DIR directive.
10386         (create-testdir, create-megatestdir, test, megatest): Provide a
10387         default value for $auxdir.
10388
10389 2005-08-24  Bruno Haible  <bruno@clisp.org>
10390
10391         * gnulib-tool (import): Use compound statement instead of subshell
10392         where possible.
10393
10394 2005-08-24  Bruno Haible  <bruno@clisp.org>
10395
10396         * gnulib-tool (import): Change --aux-dir default to "build-aux".
10397
10398 2005-08-24  Bruno Haible  <bruno@clisp.org>
10399
10400         * gnulib-tool (func_version): Update.
10401
10402 2005-08-24  Bruno Haible  <bruno@clisp.org>
10403
10404         * gnulib-tool (func_import, func_create_testdir,
10405         func_create_megatestdir): Quote all autoconf macro arguments.
10406
10407 2005-08-24  Bruno Haible  <bruno@clisp.org>
10408
10409         * gnulib-tool (func_create_megatestdir): Call autoreconf without the
10410         option --force, because --force causes the aclocal.m4 of each
10411         subdirectory to be newer than the corresponding config.h.in.
10412
10413 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
10414
10415         * m4/regex.m4 (gl_INCLUDED_REGEX): Remove; no longer used.
10416         All contents moved to gl_REGEX.
10417         (gl_REGEX): Don't bother checking whether lib/regex.c exists;
10418         assume that it does.
10419
10420 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
10421
10422         * lib/regex.h (REG_NOSYS)
10423         [!defined _XOPEN_SOURCE && 200112L <= _POSIX_C_SOURCE]:
10424         Define, since POSIX requires it as of 2001.
10425         (_REG_ENOSYS)
10426         [! (defined _XOPEN_SOURCE || 200112L <= _POSIX_C_SOURCE)]:
10427         New private symbol, used to keep the enum signed in all cases.
10428         * lib/regex.h (RE_NO_EMPTY_RANGES): Fix doc bug reported by James
10429         Youngman in
10430         <http://lists.gnu.org/archive/html/bug-gnulib/2005-07/msg00132.html>.
10431
10432         * lib/regex_internal.c (re_string_skip_chars, register_state):
10433         (calc_state_hash):
10434         Remove forward decls; no longer needed now that we use prototypes.
10435         * lib/regexec.c (acquire_init_state_context, check_halt_node_context):
10436         (proceed_next_node, pop_fail_stack, sub_epsilon_src_nodes):
10437         (clean_state_log_if_needed): Likewise.
10438
10439 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
10440
10441         * config/srclist.txt: Add glibc bugs 1231-1233.
10442
10443 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
10444
10445         Fix problems reported by Sam Steingold in
10446         <http://lists.gnu.org/archive/html/bug-gnulib/2005-08/msg00007.html>.
10447         * lib/regexec.c (sift_states_bkref): Fix portability bug: the code
10448         assumed that reg_errcode_t is a signed type, which is not
10449         necessarily true if _XOPEN_SOURCE is not defined.
10450         * lib/regex_internal.c (calc_state_hash): Put 'inline' before type,
10451         since some compilers warn about it otherwise.
10452
10453 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
10454
10455         * lib/regcomp.c (create_initial_state): Remove duplicate decl.
10456         (init_word_char, create_initial_state, duplicate_node_closure):
10457         (fetch_token, peek_token_bracket, build_range_exp):
10458         (build_collating_symbol): Remove forward decls; no longer needed
10459         now that we use prototypes.
10460
10461         * lib/regcomp.c:
10462         (re_compile_pattern, re_set_syntax, re_compile_fastmap):
10463         (re_compile_fastmap_iter, regcomp, regerror, regfree):
10464         (re_compile_internal, init_dfa, init_word_char, free_workarea_compile):
10465         (create_initial_state, optimize_utf8, analyze, postorder, preorder):
10466         (optimize_subexps, lower_subexps, lower_subexp, calc_first, calc_next):
10467         (link_nfa_nodes, duplicate_node_closure, search_duplicated_node):
10468         (duplicate_node, calc_inveclosure, calc_eclosure, calc_eclosure_iter):
10469         (fetch_token, peek_token, peek_token_bracket, parse, parse_reg_exp):
10470         (parse_branch, parse_expression, parse_sub_exp, parse_dup_op):
10471         (build_range_exp, build_collating_symbol, parse_bracket_exp):
10472         (parse_bracket_element, parse_bracket_symbol, build_equiv_class):
10473         (build_charclass, build_charclass_op, fetch_number, create_tree):
10474         (create_token_tree, mark_opt_subexp, duplicate_tree):
10475         Use prototypes rather than old-style definitions.
10476
10477         * lib/regex_internal.c:
10478         (re_string_allocate, re_string_construct, re_string_realloc_buffers):
10479         (re_string_construct_common, build_wcs_buffer, build_wcs_upper_buffer):
10480         (re_string_skip_chars, build_upper_buffer, re_string_translate_buffer):
10481         (re_string_reconstruct, re_string_peek_byte_case):
10482         (re_string_fetch_byte_case, re_string_destruct, re_string_context_at):
10483         (re_node_set_alloc, re_node_set_init_1, re_node_set_init_2):
10484         (re_node_set_init_copy, re_node_set_add_intersect):
10485         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
10486         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
10487         (re_node_set_remove_at, re_dfa_add_node, calc_state_hash):
10488         (re_acquire_state, re_acquire_state_context, register_state):
10489         (create_ci_newstate, create_cd_newstate, free_state):
10490         Likewise.
10491         * lib/regexec.c (regexec, re_match, re_search, re_match_2,
10492         re_search_2):
10493         (re_search_2_stub, re_search_stub, re_copy_regs, re_set_registers):
10494         (re_search_internal, prune_impossible_nodes):
10495         (acquire_init_state_context, check_matching, static):
10496         (check_halt_node_context, check_halt_state_context, proceed_next_node):
10497         (push_fail_stack, pop_fail_stack, set_regs, free_fail_stack_return):
10498         (update_regs, sift_states_backward, build_sifted_states):
10499         (clean_state_log_if_needed, merge_state_array):
10500         (update_cur_sifted_state, add_epsilon_src_nodes):
10501         (sub_epsilon_src_nodes, check_dst_limits, check_dst_limits_calc_pos_1):
10502         (check_dst_limits_calc_pos, check_subexp_limits, sift_states_bkref):
10503         (sift_states_iter_mb, transit_state, merge_state_with_log, static):
10504         (find_recover_state, check_subexp_matching_top, transit_state_mb):
10505         (transit_state_bkref, get_subexp, get_subexp_sub, find_subexp_node):
10506         (check_arrival, check_arrival_add_next_nodes):
10507         (check_arrival_expand_ecl, check_arrival_expand_ecl_sub):
10508         (expand_bkref_cache, build_trtable, group_nodes_into_DFAstates):
10509         (check_node_accept_bytes, check_node_accept, extend_buffers):
10510         (match_ctx_init, match_ctx_clean, match_ctx_free, match_ctx_add_entry):
10511         (search_cur_bkref_entry, match_ctx_add_subtop, match_ctx_add_sublast):
10512         (sift_ctx_init):
10513         Likewise.
10514
10515         * lib/regex_internal.h:
10516         (re_string_allocate, re_string_construct, re_string_reconstruct):
10517         (re_string_realloc_buffers, build_wcs_buffer, build_wcs_upper_buffer):
10518         (build_upper_buffer, re_string_translate_buffer, re_string_destruct):
10519         (re_string_elem_size_at, re_string_char_size_at, re_string_wchar_at):
10520         (re_string_context_at, re_string_peek_byte_case):
10521         (re_string_fetch_byte_case): Declare even if RE_NO_INTERNAL_PROTOTYPES
10522         is defined, since we now use prototypes always.
10523
10524         * lib/regex.h (_RE_ARGS): Remove.  No longer needed, since we assume
10525         C89 or better.  All uses removed.
10526
10527 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
10528
10529         * config/srclist.txt: Add glibc bugs 1220-1227.
10530
10531 2005-08-20  Jim Meyering  <jim@meyering.net>
10532
10533         * lib/regexec.c (regexec, re_search_stub) [!_LIBC]: Omit declaration
10534         of unused local, dfa.
10535
10536 2005-08-20  Bruno Haible  <bruno@clisp.org>
10537
10538         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_GNU_SOURCE.
10539
10540 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
10541
10542         * lib/regex_internal.c (re_string_realloc_buffers, re_node_set_insert):
10543         (re_node_set_insert_last, re_dfa_add_node):
10544         Rename local variables to avoid GCC shadowing warnings.
10545
10546 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
10547
10548         * lib/regex_internal.c (re_acquire_state, re_acquire_state_context)
10549         [defined lint]: Suppress bogus uninitialized-variable warnings.
10550
10551         * lib/regcomp.c (duplicate_node): Return new index, not an error code,
10552         and let the caller return REG_ESPACE if out of space.  This
10553         removes an uninitialied-variable warning with GCC 4.0.1, and also
10554         avoids taking the address of a local variable.  All callers
10555         changed.
10556
10557 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
10558
10559         * config/srclist.txt: Comment out $LIBCSRC/posix/regex_internal.c,
10560         $LIBCSRC/posix/regexec.c.
10561         Add glibc bug 1217 for regcomp.c.
10562
10563 2005-08-19  Jim Meyering  <jim@meyering.net>
10564
10565         * lib/regexec.c (proceed_next_node): Redo local variables to
10566         avoid GCC shadowing warnings.
10567
10568 2005-08-18  Bruno Haible  <bruno@clisp.org>
10569
10570         * lib/strstr.c (strstr): Fix return value in multibyte case.
10571         * lib/strcasestr.c (strcasestr): Likewise.
10572
10573 2005-08-17  Paul Eggert  <eggert@cs.ucla.edu>
10574
10575         * lib/regex.h: Remove useless space-before-tab.  From coreutils.
10576
10577 2005-08-17  Jim Meyering  <jim@meyering.net>
10578
10579         Make the %s format (seconds since the epoch) work for a negative
10580         number and when used with a zero-padded field width, e.g. %015s.
10581
10582         * lib/strftime.c (my_strftime): Move the `do_number_sign_and_padding'
10583         label so that it precedes the code to set `digits'.  Otherwise,
10584         %0Ns wouldn't work.  Before this change, `date -d @-22 +%05s' would
10585         print `00-22'.  Now, it prints `-0022', as it should.
10586
10587 2005-08-17  Bruno Haible  <bruno@clisp.org>
10588
10589         * modules/strstr (Files): Add m4/mbrtowc.m4.
10590         (Depends-on): Add mbuiter.
10591
10592 2005-08-17  Bruno Haible  <bruno@clisp.org>
10593
10594         * modules/strcasestr: New file.
10595         * MODULES.html.sh (String handling, based on ANSI C 89): Add
10596         strcasestr.
10597
10598 2005-08-17  Bruno Haible  <bruno@clisp.org>
10599
10600         * modules/strcase (Depends-on): Add mbuiter. Remove strnlen1, mbchar.
10601
10602 2005-08-17  Bruno Haible  <bruno@clisp.org>
10603
10604         * modules/mbuiter: New file.
10605         * MODULES.html.sh (Extended multibyte and wide character utilities):
10606         Add mbuiter.
10607
10608 2005-08-17  Bruno Haible  <bruno@clisp.org>
10609
10610         * m4/strstr.m4 (gl_FUNC_STRSTR): Use the replacement function always.
10611         (gl_PREREQ_STRSTR): Use gl_FUNC_MBRTOWC.
10612
10613 2005-08-17  Bruno Haible  <bruno@clisp.org>
10614
10615         * m4/strcasestr.m4: New file.
10616
10617 2005-08-17  Bruno Haible  <bruno@clisp.org>
10618
10619         * lib/strstr.h: Ignore HAVE_STRSTR, always declare the gnulib function.
10620         * lib/strstr.c: Completely rewritten, with multibyte locale support.
10621
10622 2005-08-17  Bruno Haible  <bruno@clisp.org>
10623
10624         * lib/strcasestr.h: New file.
10625         * lib/strcasestr.c: New file.
10626
10627 2005-08-17  Bruno Haible  <bruno@clisp.org>
10628
10629         * lib/strcasecmp.c: Use mbuiter.h.
10630
10631 2005-08-17  Bruno Haible  <bruno@clisp.org>
10632
10633         * lib/mbuiter.h: New file.
10634
10635 2005-08-16  Paul Eggert  <eggert@cs.ucla.edu>
10636
10637         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Do not override the results
10638         of gl_GETOPT_SUBSTITUTE.  That way, if both gl_GETOPT_SUBSTITUTE
10639         and gl_GETOPT are both invoked via different paths (as happens
10640         with GNU tar CVS because it uses both argp and getopt), the former
10641         wins.
10642
10643 2005-08-16  Bruno Haible  <bruno@clisp.org>
10644
10645         * modules/tls: New file.
10646         * MODULES.html.sh (Multithreading): Add tls.
10647
10648 2005-08-16  Bruno Haible  <bruno@clisp.org>
10649
10650         * modules/strnlen1: New file.
10651         * MODULES.html.sh (String handling): Add strnlen1.
10652
10653 2005-08-16  Bruno Haible  <bruno@clisp.org>
10654
10655         * modules/strcase (Files): Add m4/mbrtowc.m4.
10656         (Depends-on): Add strnlen1, mbchar.
10657
10658 2005-08-16  Bruno Haible  <bruno@clisp.org>
10659
10660         * modules/mbiter: New file.
10661         * MODULES.html.sh (Extended multibyte and wide character utilities):
10662         Add mbiter.
10663
10664 2005-08-16  Bruno Haible  <bruno@clisp.org>
10665
10666         * modules/mbfile: New file.
10667         * MODULES.html.sh (Extended multibyte and wide character utilities):
10668         Add mbfile.
10669
10670 2005-08-16  Bruno Haible  <bruno@clisp.org>
10671
10672         * modules/mbchar: New file.
10673         * MODULES.html.sh (Extended multibyte and wide character utilities):
10674         New section.
10675
10676 2005-08-16  Bruno Haible  <bruno@clisp.org>
10677
10678         * m4/tls.m4: New file, from GNU gettext.
10679
10680 2005-08-16  Bruno Haible  <bruno@clisp.org>
10681
10682         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Use the replacement function
10683         always.
10684         (gl_PREREQ_STRCASECMP): Use gl_FUNC_MBRTOWC.
10685
10686 2005-08-16  Bruno Haible  <bruno@clisp.org>
10687
10688         * m4/mbiter.m4: New file.
10689
10690 2005-08-16  Bruno Haible  <bruno@clisp.org>
10691
10692         * m4/mbfile.m4: New file.
10693
10694 2005-08-16  Bruno Haible  <bruno@clisp.org>
10695
10696         * m4/mbchar.m4: New file.
10697
10698 2005-08-16  Bruno Haible  <bruno@clisp.org>
10699
10700         * lib/tls.h: New file, from GNU gettext.
10701         * lib/tls.c: New file, from GNU gettext.
10702
10703 2005-08-16  Bruno Haible  <bruno@clisp.org>
10704
10705         * lib/strnlen1.h: New file.
10706         * lib/strnlen1.c: New file.
10707
10708 2005-08-16  Bruno Haible  <bruno@clisp.org>
10709
10710         * lib/strcasecmp.c (struct mbiter_multi): Remove at_end field.
10711         (mbi_init): Update.
10712         (mbi_avail, mbi_advance): Let the iteration end before the terminating
10713         NUL byte, not after it.
10714
10715 2005-08-16  Bruno Haible  <bruno@clisp.org>
10716
10717         * lib/strcase.h (strcasecmp): Add note in comments.
10718         * lib/strncasecmp.c: Use code from strcasecmp.c.
10719         * lib/strcasecmp.c: Use mbchar module. Define private mbiter variant.
10720         (strcasecmp): Work correctly in multibyte locales.
10721
10722 2005-08-16  Bruno Haible  <bruno@clisp.org>
10723
10724         * lib/mbiter.h: New file.
10725
10726 2005-08-16  Bruno Haible  <bruno@clisp.org>
10727
10728         * lib/mbfile.h: New file.
10729
10730 2005-08-16  Bruno Haible  <bruno@clisp.org>
10731
10732         * lib/mbchar.h: New file.
10733         * lib/mbchar.c: New file.
10734
10735 2005-08-16  Bruno Haible  <bruno@clisp.org>
10736
10737         * lib/mbchar.h (mb_cmp, mb_casecmp): Order the invalid characters after
10738         the valid ones. Makes the comparison operations transitive:
10739         cmp (a, b) < 0 && cmp (b, c) < 0 ==> cmp (a, c) < 0.
10740         * lib/strcasecmp.c (strcasecmp): Use mb_casecmp.
10741
10742 2005-08-15  Simon Josefsson  <jas@extundo.com>
10743
10744         * modules/ssize_t (License): Change to 'unlimited'.
10745
10746         * gnulib-tool (sed_extract_prog): Recognize 'unlimited' license.
10747
10748 2005-08-15  Paul Eggert  <eggert@cs.ucla.edu>
10749
10750         * config/srclist.txt: Comment out $LIBCSRC/posix/regex.h.
10751         Add comments for each pending glibc patch.
10752
10753 2005-08-15  Bruno Haible  <bruno@clisp.org>
10754
10755         * lib/regex.h (__restrict_arr): Don't define to __restrict if
10756         __cplusplus is defined.
10757
10758 2005-08-14  Jim Meyering  <jim@meyering.net>
10759
10760         Sync from coreutils.
10761
10762         * lib/fts-cycle.c (setup_dir, enter_dir, leave_dir, free_dir):
10763         Use the hash-table-based cycle-detection code not just when
10764         FTS_TIGHT_CYCLE_CHECK if specified, but also with FTS_LOGICAL.
10765         Reported by James Youngman in
10766         <http://lists.gnu.org/archive/html/bug-gnulib/2005-08/msg00011.html>.
10767         * lib/fts_.h: Mention that with FTS_LOGICAL, we use
10768         FTS_TIGHT_CYCLE_CHECK.
10769         * lib/fts.c (fts_cross_check) [FTS_DEBUG]:
10770         s/active_dir_ht/fts_cycle.ht/. This lets us compile with -DFTS_DEBUG,
10771         once again.
10772         * lib/fts.c [! _LIBC]: Include "lstat.h" rather than rolling our own.
10773         * lib/fts.c (fd_safer): Remove decl.
10774         Include fcntl--.h rather than unistd-safer.h
10775         (fts_safe_changedir): Don't call fd_safer; no longer needed
10776         now that we include fcntl--.h.
10777
10778 2005-08-12  Simon Josefsson  <jas@extundo.com>
10779
10780         * modules/getndelim2: Use ssize_t module.
10781         * modules/getnline: Likewise.
10782         * modules/safe-read: Likewise.
10783         * modules/xreadlink: Likewise.
10784
10785         * modules/ssize_t: New file.
10786
10787 2005-08-12  Simon Josefsson  <jas@extundo.com>
10788
10789         * m4/readline.m4: Look for termcap, curses or ncurses if required.
10790
10791 2005-08-12  Simon Josefsson  <jas@extundo.com>
10792
10793         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
10794         ssize_t.
10795
10796 2005-08-12  Simon Josefsson  <jas@extundo.com>
10797
10798         * MODULES.html.sh (Extra functions based on ANSI C 89: Misc): Add
10799         readline, getdelim and check_version.
10800         (Support for systems lacking ISO C 99: Sizes of integer types):
10801         Add size_max.
10802
10803 2005-08-12  Bruno Haible  <bruno@clisp.org>
10804
10805         * m4/readline.m4 (gl_FUNC_READLINE): Look for ncurses first.
10806
10807 2005-08-11  Simon Josefsson  <jas@extundo.com>
10808
10809         * modules/readline: New file.
10810
10811         * modules/strnlen (Files): Add strnlen.h.
10812
10813 2005-08-11  Simon Josefsson  <jas@extundo.com>
10814
10815         * m4/readline.m4: New file.
10816
10817 2005-08-11  Simon Josefsson  <jas@extundo.com>
10818
10819         * lib/readline.h, readline.c: New file.
10820
10821 2005-08-11  Simon Josefsson  <jas@extundo.com>
10822
10823         * doc/gnulib.texi (Initial import, Finishing touches): Mention
10824         gl_AVOID.
10825
10826 2005-08-11  Bruno Haible  <bruno@clisp.org>
10827
10828         * lib/strnlen.h (strnlen): Change parameter name to match comment.
10829
10830 2005-08-10  Stepan Kasal  <kasal@ucw.cz>
10831
10832         * m4/onceonly_2_57.m4: Really require Autoconf 2.57.
10833
10834 2005-08-10  Simon Josefsson  <jas@extundo.com>
10835
10836         * tests/test-iconvme.c: New file.
10837
10838 2005-08-10  Simon Josefsson  <jas@extundo.com>
10839
10840         * m4/strnlen.m4: New file.
10841
10842         * m4/strndup.m4: Don't check for strnlen declaration, done in
10843         strnlen.m4.
10844
10845 2005-08-10  Simon Josefsson  <jas@extundo.com>
10846
10847         * lib/strndup.c: Use strnlen.h.
10848
10849         * lib/strnlen.h: New file.
10850
10851 2005-08-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
10852
10853         * README: Typos.
10854
10855 2005-08-02  Simon Josefsson  <jas@extundo.com>
10856
10857         * modules/readline: New file.
10858
10859 2005-08-02  Simon Josefsson  <jas@extundo.com>
10860
10861         * modules/getdelim: New file.
10862
10863         * modules/getline: Rewrite, don't use getndelim2.
10864
10865 2005-08-02  Simon Josefsson  <jas@extundo.com>
10866
10867         * m4/getline.m4: Separate out getdelim stuff into separate module.
10868
10869         * m4/getdelim.m4: New file.
10870
10871 2005-08-02  Simon Josefsson  <jas@extundo.com>
10872
10873         * lib/getline.h, getline.c: Rewrite.
10874
10875         * lib/getdelim.h, lib/getdelim.c: New files, ported from glibc.
10876
10877 2005-07-31  Bruno Haible  <bruno@clisp.org>
10878
10879         * lib/lock.h (gl_lock_initializer): New macro.
10880         (gl_lock_define_initialized): Use it.
10881         (gl_rwlock_initializer): New macro.
10882         (gl_rwlock_define_initialized): Use it.
10883         (gl_recursive_lock_initializer): New macro.
10884         (gl_recursive_lock_define_initialized): Use it.
10885
10886 2005-07-30  Karl Berry  <karl@gnu.org>
10887
10888         * doc/gnulib.texi (Initial import): mention -I$(top_builddir)/lib.
10889         Report from Ben Pfaff, regarding getopt.
10890
10891 2005-07-26  Paul Eggert  <eggert@cs.ucla.edu>
10892
10893         Add support to getopt for Emacs, which doesn't use LIBOBJS in the
10894         normal way.
10895         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE_HEADER): New macro.
10896         (gl_GETOPT_SUBSTITUTE): Use it.  Invoke gl_PREREQ_GETOPT.
10897         (gl_GETOPT_IFELSE, gl_GETOPT_CHECK_HEADERS): New macros.
10898         (gl_GETOPT): Use the new macros.  Most of the implementation
10899         is moved to the new macros.  This is for programs like Emacs
10900         that don't want all the functionality of gl_GETOPT.
10901
10902 2005-07-26  Bruno Haible  <bruno@clisp.org>
10903
10904         * m4/lock.m4: Update from GNU gettext.
10905
10906 2005-07-26  Bruno Haible  <bruno@clisp.org>
10907
10908         * lib/lock.h: Update from GNU gettext.
10909         * lib/lock.c: Update from GNU gettext.
10910
10911 2005-07-25  Paul Eggert  <eggert@cs.ucla.edu>
10912
10913         * m4/regex.m4 (gl_INCLUDED_REGEX): Use AC_RUN_IFELSE instead of the
10914         obsolescent AC_TRY_RUN.  Include the default includes files, for
10915         'exit'.
10916
10917 2005-07-24  Bruno Haible  <bruno@clisp.org>
10918
10919         * modules/visibility: New file.
10920         * MODULES.html.sh (Misc): Add visibility.
10921
10922 2005-07-24  Bruno Haible  <bruno@clisp.org>
10923
10924         * m4/visibility.m4: New file.
10925
10926 2005-07-24  Bruno Haible  <bruno@clisp.org>
10927
10928         * doc/visibility.texi: New file.
10929
10930 2005-07-22  Bruno Haible  <bruno@clisp.org>
10931
10932         * modules/alloca-opt (Makefile.am): Remove explicit dependency on
10933         $(ALLOCA_H), redundant through BUILT_SOURCES.
10934         * modules/argz (Makefile.am): Remove explicit dependency on $(ARGZ_H),
10935         redundant through BUILT_SOURCES.
10936         * modules/byteswap (Makefile.am): Remove explicit dependency on
10937         $(BYTESWAP_H), redundant through BUILT_SOURCES.
10938         * modules/fnmatch (Makefile.am): Remove explicit dependency on
10939         $(FNMATCH_H), redundant through BUILT_SOURCES.
10940         * modules/getopt (Makefile.am): Remove explicit dependency on
10941         $(GETOPT_H), redundant through BUILT_SOURCES.
10942         * modules/glob (Makefile.am): Remove explicit dependency on $(GLOB_H),
10943         redundant through BUILT_SOURCES.
10944         * modules/poll (Makefile.am): Remove explicit dependency on $(POLL_H),
10945         redundant through BUILT_SOURCES.
10946         * modules/stdbool (Makefile.am): Remove explicit dependency on
10947         $(STDBOOL_H), redundant through BUILT_SOURCES.
10948         * modules/stdint (Makefile.am): Remove explicit dependency on
10949         $(STDINT_H), redundant through BUILT_SOURCES.
10950         * modules/sysexits (Makefile.am): Add $(SYSEXITS_H) to BUILT_SOURCES.
10951         Remove explicit dependency on $(SYSEXITS_H).
10952         Reported by Alexandre Duret-Lutz <adl@src.lip6.fr>.
10953
10954 2005-07-18  Simon Josefsson  <jas@extundo.com>
10955
10956         * lib/check-version.c (check_version): Accept identical versions too.
10957
10958 2005-07-18  Bruno Haible  <bruno@clisp.org>
10959
10960         * modules/lock: New file.
10961         * MODULES.html.sh (Multithreading): New section.
10962
10963 2005-07-18  Bruno Haible  <bruno@clisp.org>
10964
10965         * m4/lock.m4: New file, from GNU gettext.
10966
10967 2005-07-18  Bruno Haible  <bruno@clisp.org>
10968
10969         * lib/lock.h: New file, from GNU gettext.
10970         * lib/lock.c: New file, from GNU gettext.
10971
10972 2005-07-18  Bruno Haible  <bruno@clisp.org>
10973
10974         * lib/lock.h (gl_once_t): New type.
10975         (gl_once_define, gl_once): New macros.
10976         * lib/lock.c (fresh_once): New variable.
10977         (glthread_once, glthread_once_call, glthread_once_singlethreaded): New
10978         functions.
10979
10980 2005-07-16  Simon Josefsson  <jas@extundo.com>
10981
10982         * doc/gnulib.texi (Library version handling): Add ELF symbol collision
10983         workaround, suggested by Bruno.
10984
10985 2005-07-15  Paul Eggert  <eggert@cs.ucla.edu>
10986
10987         * modules/xalloc (Depends-on): Add xalloc-die.
10988         * modules/xvasprintf (Depends-on): Add xalloc-die.
10989
10990 2005-07-15  Paul Eggert  <eggert@cs.ucla.edu>
10991
10992         * lib/quotearg.c: Add translator comment suggested by Bruno Haible,
10993         with a minor change.
10994
10995 2005-07-15  Bruno Haible  <bruno@clisp.org>
10996
10997         * m4/poll.m4 (gl_FUNC_POLL): Check against MacOS X 10.4 poll() bug.
10998         When using lib/poll.c, define poll as rpl_poll.
10999
11000 2005-07-14  Paul Eggert  <eggert@cs.ucla.edu>
11001
11002         * modules/argp (Depends-on): Remove unlocked-io.
11003
11004 2005-07-14  Derek Price  <derek@ximbiot.com>
11005
11006         * m4/glob.m4 (gl_GLOB): Cache glob interface check result.  Add check
11007         for glob symlink bug.
11008
11009 2005-07-14  Bruno Haible  <bruno@clisp.org>
11010
11011         * m4/argp.m4 (gl_ARGP): Remove invocation of gl_FUNC_GLIBC_UNLOCKED_IO.
11012         Instead, test for *_unlocked function declarations directly.
11013
11014 2005-07-11  Simon Josefsson  <jas@extundo.com>
11015
11016         * modules/size_max: New file.
11017
11018         * modules/xsize: Depend on size_max module for size_max.m4.
11019
11020 2005-07-11  Simon Josefsson  <jas@extundo.com>
11021
11022         * lib/size_max.h: New file.
11023
11024 2005-07-11  Paul Eggert  <eggert@cs.ucla.edu>
11025
11026         * lib/version-etc-fsf.c (version_etc_copyright): Parameterize the
11027         copyright symbol and the year.
11028         * lib/version-etc.c (COPYRIGHT_YEAR): New constant.
11029         (version_etc_va): Use parameterized copyright notice.
11030         Reword to conform to the current GNU coding standards.
11031
11032 2005-07-11  Karl Berry  <karl@gnu.org>
11033
11034         * doc/gnulib.texi (Quoting): new node.
11035         (Initial import): more info, from Patrice.
11036
11037 2005-07-11  Bruno Haible  <bruno@clisp.org>
11038
11039         * gnulib-tool (func_usage): Document option --avoid.
11040         (Command line options): Handle --avoid.
11041         (func_acceptable): New function.
11042         (func_modules_transitive_closure): Use it.
11043
11044 2005-07-11  Bruno Haible  <bruno@clisp.org>
11045
11046         * MODULES.html.sh: Use shortcut URLs to the www.opengroup.org site.
11047         Reported by Jim Meyering.
11048
11049 2005-07-10  Bruno Haible  <bruno@clisp.org>
11050
11051         * m4/size_max.m4 (gl_SIZE_MAX): Cast ~(size_t)0 back to size_t.
11052         Needed when size_t is smaller than 'unsigned int'.
11053         Reported by Paul Eggert.
11054
11055 2005-07-09  Sergey Poznyakoff  <gray@gnu.org.ua>
11056
11057         * modules/argp (Depends-on): Add unlocked-io
11058
11059 2005-07-09  Sergey Poznyakoff  <gray@gnu.org.ua>
11060
11061         * lib/argp-namefrob.h: Include unlocked-io.h. Removed unnecessary
11062         block of defines.
11063
11064 2005-07-08  Paul Eggert  <eggert@cs.ucla.edu>
11065
11066         * config/srclist.txt: Comment out regcomp.c, since we have a porting
11067         fix now.
11068
11069 2005-07-08  Eric Blake  <ebb9@byu.net>  (tiny change)
11070         and Paul Eggert  <eggert@cs.ucla.edu>
11071
11072         * lib/regcomp.c (init_dfa, build_range_exp): Store __btowc value
11073         in wint_t, not wchar_t.  Remove now-unnecessary cast.
11074
11075 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
11076
11077         * modules/regex (Files): Add lib/regex_internal.c,
11078         lib/regex_internal.h, lib/regexec.c, lib/regcomp.c, m4/codeset.m4.
11079         (Depends-on): Add extensions.
11080         (Makefile.am): Remove lib_SOURCES; now done by m4 code.
11081
11082 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
11083
11084         * m4/backupfile.m4 (gl_BACKUPFILE): Use AC_CHECK_FUNCS_ONCE on
11085         pathconf.
11086         * m4/same.m4 (gl_SAME): Likewise.
11087         Require AC_SYS_LONG_FILE_NAMES; bug reported by Gerrit P. Haase.
11088
11089         * m4/regex.m4: Adjust to new libc regex implementation.
11090         (gl_INCLUDED_REGEX): Add AC_LIBSOURCES for
11091         all the .c and .h parts of (the new) regex.
11092         Quote the m4 stuff better.
11093         Check for RE_ICASE bug of old gnulib.
11094         Check for REG_STARTEND of recent libc.
11095         Rename local variables from jm_* to gl_*.
11096         Quote operand of "test -f".
11097         Say "recent enough" version of libc, not "version 2".
11098         (gl_PREREQ_REGEX): Remove AC_FUNC_ALLOCA, since alloca is a
11099         prerequisite module.  Remove AC_HEADER_STDC; no longer needed.
11100         Check for locale.h, isblank, mbrtowc, wcrtomb, wcscoll.
11101         Remove check for btowc, isascii.
11102         Require AM_LANGINFO_CODESET.
11103
11104 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
11105
11106         * lib/regex.c, regex.h: Sync from libc.
11107         * lib/regcomp.c, lib/regexec_internal.c, lib/regex_internal.h:
11108         * lib/regexec.c:
11109         New files, synced from libc, except that regex_internal.h
11110         currently has a small porting fix.
11111
11112 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
11113
11114         * config/srclist.txt: Add regcomp.c, regex.c, regex.h,
11115         regex_internal.c, regexec.c.
11116         Add regex_internal.h too, but as a comment, since the libc version
11117         is currently broken in gnulib mode.
11118
11119 2005-07-06  Paul Eggert  <eggert@cs.ucla.edu>
11120
11121         Support programs like Emacs that use gnulib but not gettext.
11122         * MODULES.html.sh (Internationalization functions): Add gettext-h.
11123         * modules/gettext-h: New file.
11124         * modules/gettext (Files): Remove lib/gettext.h.
11125         (Depends-on): Add gettext-h.
11126         (Makefile.am): Remove lib_SOURCES.
11127         * modules/argmatch, modules/c-stack, modules/closeout:
11128         * modules/copy-file, modules/csharpcomp, modules/csharpexec:
11129         * modules/execute, modules/file-type, modules/getaddrinfo:
11130         * modules/getopt, modules/human, modules/javacomp:
11131         * modules/javaexec, modules/mkdir-p, modules/obstack:
11132         * modules/openat, modules/pagealign_alloc, modules/pipe:
11133         * modules/quotearg, modules/regex, modules/rpmatch:
11134         * modules/unicodeio, modules/userspec, modules/version-etc:
11135         * modules/wait-process, modules/xalloc-die, modules/xmemcoll:
11136         * modules/xsetenv:
11137         Depend on gettext-h, not gettext.
11138
11139 2005-07-05  Paul Eggert  <eggert@cs.ucla.edu>
11140
11141         * gnulib-tool (func_import): Add support for 'public domain' license.
11142         * modules/alloca, modules/atexit, modules/memmove:
11143         Now public domain, not GPL.
11144         * modules/dup2, modules/getpagesize, modules/malloc, modules/memset:
11145         * modules/realloc, modules/strerror, modules/strtod:
11146         Now LGPL, not GPL.
11147
11148 2005-07-05  Bruno Haible  <bruno@clisp.org>
11149
11150         * m4/mbrtowc.m4 (gl_FUNC_MBRTOWC): Upgrade to version from current
11151         autoconf CVS. Needed for mingw.
11152
11153 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
11154
11155         Remove the dependency of the strftime module on the tzset module.
11156         * modules/strftime (Depends-on): Remove dependency on tzset.
11157
11158 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
11159
11160         Remove the dependency of the strftime module on the tzset module.
11161         * m4/strftime.m4 (gl_FUNC_STRFTIME): Don't require
11162         gl_FUNC_TZSET_CLOBBER.
11163
11164 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
11165
11166         Remove the dependency of the strftime module on the tzset module.
11167         * lib/strftime.c (my_strftime)
11168         [! defined _LIBC && ! HAVE_RUN_TZSET_TEST]:
11169         Copy the input structure, to work around some of the bug with
11170         Solaris 2.5.1 and Solaris 2.6.  If you still care about these old
11171         Solaris releases, you should also use the tzset module, but we won't
11172         require it as a dependency any more since we don't want LGPLed code
11173         to depend on GPLed code.
11174
11175 2005-07-02  Jim Meyering  <jim@meyering.net>
11176
11177         * m4/chown.m4, cloexec.m4, dup2.m4, fsusage.m4:
11178         * m4/getcwd-path-max.m4, getcwd.m4, mkstemp.m4, mountlist.m4:
11179         * m4/pagealign_alloc.m4, save-cwd.m4, unistd-safer.m4:
11180         Don't check for fcntl.h, and don't test for HAVE_FCNTL_H.
11181
11182 2005-07-02  Jim Meyering  <jim@meyering.net>
11183
11184         * lib/backupfile.c (backup_args): Change a `0' to NULL.
11185
11186 2005-07-01  Paul Eggert  <eggert@cs.ucla.edu>
11187
11188         * lib/xnanosleep.c: Include timespec.h, since OpenBSD 3.4 <time.h>
11189         declares only 'struct timespec;' (!).
11190
11191 2005-07-01  Jim Meyering  <jim@meyering.net>
11192
11193         * lib/chown.c, cloexec.c, dup-safer.c, dup2.c, fsusage.c, getcwd.c:
11194         * lib/getloadavg.c, mountlist.c, openat.h, pagealign_alloc.c:
11195         * lib/save-cwd.c, tempname.c:
11196         Assume HAVE_FCNTL_H (i.e., include <fcntl.h> unconditionally,
11197         and don't include <sys/file.h>).
11198
11199 2005-06-29  Jim Meyering  <jim@meyering.net>
11200
11201         * lib/mkdir-p.c (make_dir_parents): Don't apply sizeof to a hard-coded
11202         type name.  Use the variable name instead.
11203         * lib/idcache.c (getuser, getuidbyname, getgroup, getgidbyname):
11204         Likewise.
11205
11206 2005-06-28  Simon Josefsson  <jas@extundo.com>
11207
11208         * modules/check-version (Files): Add check-version.m4.
11209
11210 2005-06-28  Simon Josefsson  <jas@extundo.com>
11211
11212         * m4/check-version.m4: New file, suggested by Jim Meyering
11213         <jim@meyering.net>.
11214
11215 2005-06-28  Simon Josefsson  <jas@extundo.com>
11216
11217         * lib/check-version.h, lib/check-version.c: New files.
11218
11219 2005-06-28  Simon Josefsson  <jas@extundo.com>
11220
11221         * lib/base64.c (base64_encode): Indent.  Rename 'b64' to avoid
11222         collision with global variable.  Better indentation.  Don't
11223         increment buffer pointer beyond buffer end.  Based on comments
11224         from Paul Eggert <eggert@cs.ucla.edu>.
11225
11226         * lib/base64.h: Indent.
11227
11228 2005-06-28  Simon Josefsson  <jas@extundo.com>
11229
11230         * doc/gnulib.texi (Library version handling): New section.
11231
11232 2005-06-28  Jim Meyering  <jim@meyering.net>
11233
11234         * check-module (find_included_lib_files): Hard-code another
11235         pair of exceptions: fts.c includes fts-cycle.c and unistd-safer.h
11236         but modules/fts-lgpl (correctly) does not list those files.
11237
11238         * modules/canonicalize (Files): Add lib/pathmax.h.
11239
11240 2005-06-25  Simon Josefsson  <jas@extundo.com>
11241
11242         * modules/check-version: New file.
11243
11244 2005-06-24  Paul Eggert  <eggert@cs.ucla.edu>
11245
11246         * lib/canon-host.c (canon-host): Append trailing "," to 0 in
11247         initializer of struct addrinfo, as an indication that we don't
11248         care how many members the structure has.
11249
11250 2005-06-24  Derek Price  <derek@ximbiot.com>
11251         and Bruno Haible  <bruno@clisp.org>
11252
11253         Remove stat module & update lstat.
11254         * m4/lstat.m4 (gl_FUNC_LSTAT): Drop AC_FUNC_LSTAT in favor of
11255         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
11256         * m4/stat.m4: Remove this file.
11257
11258 2005-06-24  Derek Price  <derek@ximbiot.com>
11259         and Bruno Haible  <bruno@clisp.org>
11260
11261         Remove stat module & update lstat.
11262         * lib/stat.c: Remove this file...
11263         (slash_aware_lstat): ...moving this content and its support...
11264         * lib/lstat.c (rpl_lstat): ...into here.
11265         * lib/lstat.h: New file.
11266
11267 2005-06-24  Derek Price  <derek@ximbiot.com>
11268         and Bruno Haible  <bruno@clisp.org>
11269
11270         Remove stat module & update lstat.
11271         * config/srclist.txt (libc sources): Remove stat.
11272
11273 2005-06-24  Derek Price  <derek@ximbiot.com>
11274         and Bruno Haible  <bruno@clisp.org>
11275
11276         Remove stat module & update lstat.
11277         * MODULES.html.sh (stat): Remove.
11278         * MODULES.html: Regenerated.
11279         * modules/lstat (Description): Correct function name.
11280         (Files): Add "lstat.h".
11281         (Depends-on): Remove stat, add xalloc, stat-macros.
11282         * modules/stat: Remove this file.
11283         (Include): Add "lstat.h", remove <sys/stat.h>.
11284
11285 2005-06-23  Paul Eggert  <eggert@cs.ucla.edu>
11286
11287         * lib/mktime.c: Include <string.h> even if !DEBUG.  (From glibc.)
11288         (ranged_convert): Don't save conversion in a temporary struct.
11289         This causes a warning with GCC 4.0.0, and anyway in the typical
11290         case it's not worth the extra 100 bytes or so of code.
11291         (ranged_convert, __mktime_internal): When calling a function via a
11292         pointer P, use P () rather than (*P) (), as we now assume C89 or
11293         better.
11294
11295 2005-06-22  Paul Eggert  <eggert@cs.ucla.edu>
11296
11297         * lib/readutmp.c (desirable_utmp_entry): Fix bug where "who -b" and
11298         "who -r" failed to give output.  Problem reported by Tim Waugh.
11299
11300         * lib/xmalloc.c (HAVE_GNU_CALLOC): New constant.
11301         (xcalloc): Use it to avoid needless tests.
11302         Problem reported by Jim Meyering.
11303
11304 2005-06-20  Derek Price  <derek@ximbiot.com>
11305
11306         * m4/bison.m4: Note that precious decls of YACC & YFLAGS will be
11307         unnecessary for Autoconfs > 2.59c.
11308
11309 2005-06-16  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
11310
11311         * lib/argp.h (__option_is_short): Check upper limit of
11312         __key. Isprint() requires its argument to have the value
11313         of an unsigned char or EOF.
11314
11315 2005-06-16  Jim Meyering  <jim@meyering.net>
11316
11317         * lib/calloc.c (rpl_calloc): Allocate a 1-byte buffer (not 1xS or Nx1)
11318         when either N or S is zero.
11319
11320 2005-06-16  Derek Price  <derek@ximbiot.com>
11321
11322         * m4/bison.m4: Declare YACC & YFLAGS precious.
11323
11324 2005-06-10  Paul Eggert  <eggert@cs.ucla.edu>
11325
11326         * lib/fnmatch.c (fnmatch): If there is an encoding error in a
11327         multibyte string or pattern, fall back on unibyte matching.
11328         Problem reported by James Youngman.
11329
11330 2005-06-08  Bruno Haible  <bruno@clisp.org>
11331
11332         * modules/csharpcomp: New file.
11333         * MODULES.html.sh (C#): Add csharpcomp.
11334
11335 2005-06-08  Bruno Haible  <bruno@clisp.org>
11336
11337         * m4/csharpcomp.m4: New file, from GNU gettext.
11338
11339 2005-06-08  Bruno Haible  <bruno@clisp.org>
11340
11341         * lib/csharpcomp.h: New file, from GNU gettext.
11342         * lib/csharpcomp.c: New file, from GNU gettext.
11343         * lib/csharpcomp.sh.in: New file, from GNU gettext.
11344
11345 2005-06-08  Bruno Haible  <bruno@clisp.org>
11346
11347         * lib/binary-io.h (fileno): Undefine before defining it. Avoids a gcc
11348         warning on mingw.
11349
11350 2005-06-07  Derek Price  <derek@ximbiot.com>
11351
11352         Sync from CVS.
11353         * lib/glob_.h: Indent nested #ifdef.
11354
11355 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
11356
11357         Sync from coreutils.
11358         Use "file name" when talking about file names, instead of "filename"
11359         or "path", as per the GNU coding standards.
11360         * lib/mkdir-p.c: Renamed from makepath.c.
11361         (make_dir_parents): Renamed from make_path.  All callers changed.
11362         * lib/mkdir-p.h: Likewise.  All includers changed.
11363         * lib/filenamecat.c: Renamed from path-concat.c.
11364         (file_name_concat): Renamed from path_concat.  All callers changed.
11365         [TEST_FILE_NAME_CONCAT]: Renamed from TEST_PATH_CONCAT.
11366         * lib/filenamecat.h: Likewise.  All includers changed.
11367         * lib/acl.c: Don't use "path" or "filename" to mean "file name"
11368         in comments or local variable names.
11369         * lib/basename.c: Likewise.
11370         * lib/canonicalize.c, canonicalize.h: Likewise.
11371         * lib/dirname.c, dirname.h: Likewise.
11372         * lib/euidaccess.c: Likewise.
11373         * lib/exclude.c: Likewise
11374         * lib/fnmatch_.h, fnmatch_loop.c: Likewise.
11375         * lib/fsusage.c, fsuage.h: Likewise.
11376         * lib/fts.c, fts_.h: Likewise.
11377         * lib/getcwd.c: Likewise.
11378         * lib/getloadavg.c: Likewise.
11379         * lib/mkstemp.c: Likewise.
11380         * lib/mountlist.c, mountlist.h: Likewise.
11381         * lib/openat.c, openat.h: Likewise.
11382         * lib/readlink-stub.c: Likewise.
11383         * lib/readutmp.c, readutmp.h: Likewise.
11384         * lib/rename.c: Likewise.
11385         * lib/rmdir.c: Likewise.
11386         * lib/same.c: Likewise.
11387         * lib/savedir.c: Likewise.
11388         * lib/stripslash.c: Likewise.
11389         * lib/tempname.c: Likewise.
11390         * lib/xreadlink.c: Likewise.
11391         * lib/exclude.c (excluded_file_name): Renamed from excluded_filename.
11392         All uses changed.
11393         * lib/exclude.h: Likewise.
11394
11395         * lib/euidaccess.c (getuid, getgid, getuid, getegid)
11396         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
11397         * lib/idcache.c (getpwuid, getpwnam, getgrgid, getgrnam)
11398         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
11399         * lib/pathmax.h: Include <limits.h> unconditionally, since other
11400         files have been getting away with it for years (MORE/BSD 4.3
11401         is extinct now).
11402         * lib/userspec.c (getpwnam, getgrnam, getgrgid)
11403         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
11404
11405         * lib/pathmax.h (_POSIX_PATH_MAX) [!defined _POSIX_PATH_MAX]:
11406         Define to 256, not 255, as per modern POSIX.
11407
11408 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
11409
11410         Sync from coreutils.
11411         Use "file name" when talking about file names, instead of "filename"
11412         or "path", as per the GNU coding standards.
11413         * MODULES.html.sh: mkdir-p renamed from makepath.
11414         filenamecat renamed from path-concat.
11415         * modules/filenamecat: Renamed from modules/path-concat.
11416         (Files): filenamecat.h and filenamecat.c renamed from
11417         path-concat.h and path-concat.c.
11418         (configure.ac): gl_FILE_NAME_CONCAT, not gl_PATH_CONCAT.
11419         (Include): filenamecat.h, not path-concat.h.
11420         * modules/mkdir-p: Renamed from modules/makepath.
11421         (Files): mkdir-p.h and mkdir-p.c renamed from makepath.h and
11422         makepath.c.
11423         (configure.ac): gl_MKDIR_PARENTS, not gl_MAKEPATH.
11424         (Include): mkdir-p.h, not makepath.h.
11425
11426 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
11427
11428         Sync from coreutils.
11429         * m4/mkdir-p.m4: Renamed from makepath.m4.
11430         (gl_MKDIR_PARENTS): Renamed from gl_MAKEPATH.  All uses changed.
11431         Rename files from makepath.c to mkdir-p.c, and from
11432         makepath.h to mkdir-p.h.
11433         * m4/filenamecat.m4: Renamed from path-concat.m4.
11434         (gl_FILE_NAME_CONCAT): Renamed from gl_PATH_CONCAT.  All uses changed.
11435         Rename files from path-concat.c to filenamecat.c,
11436         and from path-concat.h to filenamecat.h.
11437         * m4/getcwd-path-max.m4: Don't use "path" or "filename" to mean
11438         "file name" in local variables or comments.
11439         * m4/rename.m4: Likewise.
11440
11441 2005-06-01  Bruno Haible  <bruno@clisp.org>
11442
11443         * modules/csharpexec: New file.
11444         * MODULES.html.sh (C#): New section.
11445
11446 2005-06-01  Bruno Haible  <bruno@clisp.org>
11447
11448         * m4/csharp.m4: New file, from GNU gettext.
11449         * m4/csharpexec.m4: New file, from GNU gettext.
11450
11451 2005-06-01  Bruno Haible  <bruno@clisp.org>
11452
11453         * lib/csharpexec.h: New file, from GNU gettext.
11454         * lib/csharpexec.c: New file, from GNU gettext.
11455         * lib/csharpexec.sh.in: New file, from GNU gettext.
11456
11457 2005-05-31  Derek Price  <derek@ximbiot.com>
11458             Paul Eggert  <eggert@cs.ucla.edu>
11459
11460         Sync from cvs.
11461         * m4/glob.m4: s/MISSING_SYS_CDEFS_H/_SYS_CDEFS_H/ and comment.
11462
11463 2005-05-31  Derek Price  <derek@ximbiot.com>
11464             Paul Eggert  <eggert@cs.ucla.edu>
11465
11466         Sync from cvs.
11467         * lib/glob_.h: s/MISSING_SYS_CDEFS_H/_SYS_CDEFS_H/ and comment.
11468
11469 2005-05-29  Derek Price  <derek@ximbiot.com>
11470
11471         * config/srclist.txt (glob_.h, glob.c): Add these files.
11472
11473 2005-05-29  Derek Price  <derek@ximbiot.com>
11474
11475         * MODULES.html.sh: Add glob to Enhanced POSIX.2001 section.
11476         * modules/glob: New file.
11477         * modules/getlogin_r: Add link to POSIX spec in description.
11478
11479 2005-05-29  Derek Price  <derek@ximbiot.com>
11480             Paul Eggert  <eggert@cs.ucla.edu>
11481
11482         * m4/glob.m4: New file.
11483
11484 2005-05-29  Derek Price  <derek@ximbiot.com>
11485             Paul Eggert  <eggert@cs.ucla.edu>
11486
11487         * lib/glob_.h, lib/glob.c: New files.
11488
11489 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
11490
11491         * modules/fts (Files): Remove m4/inttypes-pri.m4.
11492         * modules/fts-lgpl (Depends-on): Remove gettext.
11493
11494 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
11495
11496         * m4/fts.m4 (gl_FUNC_FTS_CORE): Don't check for inttypes.h or stdint.h,
11497         and don't require gt_INTTYPES_PRI.
11498
11499 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
11500
11501         * lib/getlogin_r.c (getlogin_r): Don't set errno to 0 on return.
11502
11503         * lib/fts.c: Don't worry about debugging on pre-C99-compatible hosts;
11504         the configuration hassle isn't worth it.
11505         Include inttypes.h and stdint.h unconditionally if FTS_DEBUG.
11506         (LONGEST_MODIFIER, PRIuMAX): Remove.
11507
11508 2005-05-27  Bruno Haible  <bruno@clisp.org>
11509
11510         * lib/getlogin_r.h: Remove second include of <stddef.h>.
11511
11512 2005-05-26  Paul Eggert  <eggert@cs.ucla.edu>
11513
11514         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Define
11515         _POSIX_PTHREAD_SEMANTICS for Solaris.
11516
11517 2005-05-25  Derek Price  <derek@ximbiot.com>
11518
11519         * MODULES.html.sh: Add getlogin_r to POSIX.2001 support section.
11520
11521 2005-05-25  Derek Price  <derek@ximbiot.com>
11522             Paul Eggert  <eggert@cs.ucla.edu>
11523
11524         * modules/getlogin_r, m4/getlogin_r.m4: New files.
11525         * lib/getlogin_r.c, getlogin_r.h: New files.
11526
11527 2005-05-25  Bruno Haible  <bruno@clisp.org>
11528             Derek Price  <derek@ximbiot.com>
11529
11530         * lib/getlogin_r.h: Simplify API documentation.
11531
11532 2005-05-23  Derek Price  <derek@ximbiot.com>
11533
11534         * modules/minmax (Files): Add m4/minmax.m4.
11535         (configure.ac): Add gl_MINMAX.
11536
11537 2005-05-22  Paul Eggert  <eggert@cs.ucla.edu>
11538
11539         * lib/fts.c (fd_safer) [_LGPL_PACKAGE]: New static function,
11540         so that unistd-safer.h (GPL'ed code) need not be included.
11541
11542 2005-05-22  Bruno Haible  <bruno@clisp.org>
11543
11544         * m4/minmax.m4: New file.
11545         Based on a patch by Derek Price <derek@ximbiot.com>.
11546
11547 2005-05-22  Bruno Haible  <bruno@clisp.org>
11548
11549         * lib/stdint_.h (_STDINT_H_HAVE_INT64): New macro. Use it in #ifdefs.
11550         (INT64_MIN): Fix definition.
11551         Suggested by Paul Eggert <eggert@cs.ucla.edu>.
11552
11553         * lib/stdint_.h (_STDINT_H_NEED_SIGNED_INT_TYPES): Renamed from
11554         NEED_SIGNED_INT_TYPES.
11555
11556         * lib/stdint_.h (_STDINT_H_HAVE_SYSTEM_INTTYPES): Renamed from
11557         HAVE_SYSTEM_INTTYPES.
11558
11559 2005-05-22  Bruno Haible  <bruno@clisp.org>
11560
11561         * lib/minmax.h: Include <limits.h> only when it defines MIN, MAX.
11562         Also include <sys/param.h> if it defines MIN, MAX.
11563         Based on a patch by Derek Price <derek@ximbiot.com>.
11564
11565 2005-05-21  Jim Meyering  <jim@meyering.net>
11566
11567         * modules/fts (Files): Add m4/inttypes-pri.m4.
11568         (Depends-on): Add lstat and remove gettext.  Alphabetize.
11569
11570 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
11571
11572         New fts module.
11573         * lib/fts.c: Don't include "cycle-check.h" or "hash.h".
11574         (setup_dir, free_dir): New functions.
11575         (enter_dir, leave_dir): Define trivial
11576         alternatives of _LGPL_PACKAGE.  Move to fts-cycle.c if !_LGPL_PACKAGE.
11577         (HT_INITIAL_SIZE, ENTER_DIR): Remove.  All uses removed.
11578         (LEAVE_DIR): Fix typo: pass Fts and Ent to leave_dir.
11579         (struct Active_dir, AD_compare, AD_hash, enter_dir, leave_dir):
11580         Move to fts-cycle.c.
11581         (fts_open): Use setup_dir.
11582         (fts_close): Use free_dir.
11583         (fts_read): Have just one copy of the ENTER_DIR code rather than three.
11584         This adds a label and some gotos, but the alternatives were messier.
11585         Check for memory allocation failure when entering a dir.
11586         (fts_stat) [_LGPL_PACKAGE]: Bring back glibc cycle detection code.
11587         * lib/fts_.h (_LGPL_PACKAGE) [defined _LIBC]: New macro.
11588         (FTS): New member fts_cycle, that is a union that contains the
11589         old active_dir_ht and cycle_state.  All uses changed to mention
11590         fts_cycle.ht and fts_cycle.state.
11591         * lib/fts-cycle.c: New file, containing GPL'ed code migrated out of
11592         fts.c, with the following changes:
11593         (setup_dir, free_dir): New functions.
11594         (enter_dir): Now returns bool.  Return true if successful, false
11595         if memory exhausted.  All callers changed.
11596         Do not bother partly cleaning up on
11597         memory allocation failure; that is free_dir's job.
11598         However, free ad if hash_insert fails, to avoid memory leak.
11599         (enter_dir, leave_dir): Accommodate change to FTS by inspecting
11600         fts->fts_options to see which union member to use.
11601
11602 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
11603
11604         * m4/fts.m4 (gl_FUNC_FTS_CORE): Renamed from gl_FUNC_FTS.
11605         (gl_FUNC_FTS, gl_FUNC_FTS_LGPL): New macros.
11606
11607 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
11608
11609         * MODULES.html.sh (File system functions): Add fts, fts-lgpl.
11610
11611 2005-05-20  Jim Meyering  <jim@meyering.net>
11612
11613         * lib/unlinkdir.h (cannot_unlink_dir) [UNLINK_CANNOT_UNLINK_DIR]:
11614         Now a macro, to pacify GCC.
11615
11616 2005-05-20  Eric Blake  <ebb9@byu.net>  (tiny change)
11617
11618         * m4/chown.m4 (gl_FUNC_CHOWN): Correct sense of test for honoring IDs
11619         of -1.
11620
11621 2005-05-20  Eric Blake  <ebb9@byu.net>  (tiny change)
11622
11623         * lib/chown.c (rpl_chown): Return -1 on failure.
11624
11625 2005-05-18  Paul Eggert  <eggert@cs.ucla.edu>
11626
11627         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME]):
11628         Don't check for stddef.h.
11629         * m4/fts.m4 (gl_FUNC_FTS): Don't require AC_HEADER_STDC, as we
11630         don't use its results.
11631         Don't check for fcntl.h, stddef.h, stdlib.h, string.h, unistd.h,
11632         since we include them unconditionally.  Don't require
11633         AM_STDBOOL_H, since stdbool is a prerequisite.
11634         Don't require AC_C_CONST, AC_TYPE_SIZE_T or check for ptrdiff_t
11635         since we assume C89 or better.
11636         Don't require AC_FUNC_CLOSEDIR_VOID, AC_FUNC_LSTAT, or AC_FUNC_STAT,
11637         as we don't use their results.
11638         Don't check for fchdir, memmove, memset, strrchr, as we use
11639         them unconditionally.
11640         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Don't define
11641         GETTIMEOFDAY_CLOBBERS_LOCALTIME_BUFFER, since nobody uses it.
11642
11643 2005-05-18  Paul Eggert  <eggert@cs.ucla.edu>
11644
11645         * lib/canonicalize.c: Include canonicalize.h first, to test interface.
11646         Include <stddef.h> unconditionally, since we assume C89 now.
11647         All uses of PTR_INT_TYPE replaced by ptrdiff_t.
11648         * lib/fts.c: Include fts_.h first, to check interface.
11649         Do not include intprops.h; no longer needed.
11650         Include cycle-check.h and hash.h, since fts_.h no longer does.
11651         Remove unnecessary casts of closedir to void.
11652         (fts_build): Use a simpler method (not involving TYPE_SIGNED) to
11653         decide whether to decrement nlinks.
11654         * lib/fts_.h: Do not include hash.h or cycle-check.h; no longer needed.
11655         (FTS): Use struct hash_table * instead of Hash_table, so that
11656         we no longer need to include hash.h here.
11657
11658 2005-05-18  Jim Meyering  <jim@meyering.net>
11659
11660         * modules/dirfd (License): Change to LGPL.  Most of the code
11661         is already in the public domain.
11662
11663 2005-05-18  Jim Meyering  <jim@meyering.net>
11664
11665         * m4/fts.m4 (AC_LIBSOURCES): Add intprops.h to the list.
11666         Reported by Yoann Vandoorselaere.
11667
11668 2005-05-17  Jim Meyering  <jim@meyering.net>
11669
11670         * m4/fts.m4: New file, from coreutils.
11671
11672 2005-05-17  Jim Meyering  <jim@meyering.net>
11673
11674         * lib/fts.c, lib/fts_.h: New files, from coreutils.
11675
11676 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
11677
11678         Sync from coreutils.
11679         * m4/unlinkdir.m4: New file.
11680
11681 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
11682
11683         Sync from coreutils.
11684         * lib/unlinkdir.c, lib/unlinkdir.h: New files.
11685         * lib/gethrxtime.c, lib/gethrxtime.h, lib/getpass.h, lib/mountlist.h,
11686         lib/path-concat.c, lib/regex.h, lib/unlocked-io.h, lib/xtime.h:
11687         White space changes only.
11688         * lib/makepath.c (make_path): Port to hosts where leading "//" is
11689         special.
11690         * lib/yesno.c: Include getline.h, not ctype.h.
11691         (yesno): Don't remove leading white space; POSIX doesn't allow it.
11692         Use getline to remove arbitrary restriction on response length.
11693
11694 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
11695
11696         * config/srclist-update: Spell out "Street" in FSF postal
11697         mail address; this is the style the FSF seems to prefer.
11698
11699         * build-aux/depcomp, build-aux/install-sh, build-aux/mdate-sh,
11700         build-aux/missing, build-aux/mkinstalldirs: Sync from Automake;
11701         this updates FSF postal mail address.
11702
11703         Sync from coreutils.
11704         * modules/unlinkdir: New file.
11705         * modules/yesno (Depends-on): Add getline.
11706         * MODULES.html.sh (File system functions): Add unlinkdir.
11707
11708 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
11709
11710         * lib/byteswap_.h, lib/getsubopt.h, lib/iconvme.h, lib/strsep.c,
11711         lib/strsep.h:
11712         Change the initial comment to refer to GPL, not LGPL.
11713         gnulib-tool will change it to LGPL as needed.
11714
11715         * lib/__fpending.c, lib/acl.c, lib/acl.h, lib/alloca_.h, lib/allocsa.c,
11716         lib/allocsa.h, lib/argmatch.c, lib/argmatch.h, lib/argp-ba.c,
11717         lib/argp-eexst.c, lib/argp-fmtstream.c, lib/argp-fmtstream.h,
11718         lib/argp-fs-xinl.c, lib/argp-help.c, lib/argp-namefrob.h,
11719         lib/argp-parse.c, lib/argp-pv.c, lib/argp-pvh.c, lib/argp-xinl.c,
11720         lib/argp.h, lib/argz.c, lib/argz_.h, lib/asnprintf.c, lib/asprintf.c,
11721         lib/atanl.c, lib/backupfile.c, lib/backupfile.h, lib/base64.c,
11722         lib/base64.h, lib/basename.c, lib/binary-io.h, lib/byteswap_.h,
11723         lib/c-ctype.c, lib/c-ctype.h, lib/c-stack.c, lib/c-stack.h,
11724         lib/c-strtod.c, lib/calloc.c, lib/canon-host.c, lib/canonicalize.c,
11725         lib/canonicalize.h, lib/ceill.c, lib/chdir-long.c, lib/chdir-long.h,
11726         lib/chown.c, lib/classpath.c, lib/classpath.h, lib/cloexec.c,
11727         lib/closeout.c, lib/closeout.h, lib/concatpath.c, lib/config.charset,
11728         lib/copy-file.c, lib/copy-file.h, lib/cycle-check.c, lib/cycle-check.h,
11729         lib/diacrit.c, lib/diacrit.h, lib/dirfd.c, lib/dirfd.h, lib/dirname.c,
11730         lib/dirname.h, lib/dummy.c, lib/dup-safer.c, lib/dup2.c, lib/eealloc.h,
11731         lib/error.c, lib/error.h, lib/euidaccess.c, lib/exclude.c,
11732         lib/exclude.h, lib/execute.c, lib/execute.h, lib/exit.h,
11733         lib/exitfail.c, lib/exitfail.h, lib/expl.c, lib/fatal-signal.c,
11734         lib/fatal-signal.h, lib/fd-safer.c, lib/file-type.c, lib/file-type.h,
11735         lib/fileblocks.c, lib/filemode.c, lib/filemode.h, lib/findprog.c,
11736         lib/findprog.h, lib/floorl.c, lib/fnmatch.c, lib/fnmatch_.h,
11737         lib/fnmatch_loop.c, lib/fopen-safer.c, lib/free.c, lib/frexpl.c,
11738         lib/fsusage.c, lib/fsusage.h, lib/full-read.c, lib/full-read.h,
11739         lib/full-write.c, lib/full-write.h, lib/fwriteerror.c,
11740         lib/fwriteerror.h, lib/gai_strerror.c, lib/gcd.c, lib/gcd.h,
11741         lib/getaddrinfo.c, lib/getaddrinfo.h, lib/getcwd.c, lib/getcwd.h,
11742         lib/getdate.h, lib/getdate.y, lib/getdomainname.c, lib/getdomainname.h,
11743         lib/getgroups.c, lib/gethostname.c, lib/gethrxtime.c, lib/gethrxtime.h,
11744         lib/getline.c, lib/getline.h, lib/getloadavg.c, lib/getndelim2.c,
11745         lib/getndelim2.h, lib/getnline.c, lib/getnline.h, lib/getopt.c,
11746         lib/getopt1.c, lib/getopt_.h, lib/getopt_int.h, lib/getpagesize.h,
11747         lib/getpass.c, lib/getpass.h, lib/getsubopt.c, lib/getsubopt.h,
11748         lib/gettext.h, lib/gettime.c, lib/gettimeofday.c, lib/getugroups.c,
11749         lib/getusershell.c, lib/group-member.c, lib/group-member.h,
11750         lib/hard-locale.c, lib/hard-locale.h, lib/hash-pjw.c, lib/hash-pjw.h,
11751         lib/hash.c, lib/hash.h, lib/human.c, lib/human.h, lib/iconvme.c,
11752         lib/iconvme.h, lib/idcache.c, lib/inet_ntop.h, lib/intprops.h,
11753         lib/inttostr.c, lib/inttostr.h, lib/isdir.c, lib/javacomp.c,
11754         lib/javacomp.h, lib/javacomp.sh.in, lib/javaexec.c, lib/javaexec.h,
11755         lib/javaexec.sh.in, lib/lbrkprop.h, lib/lchown.c, lib/ldexpl.c,
11756         lib/linebreak.c, lib/linebreak.h, lib/linebuffer.c, lib/linebuffer.h,
11757         lib/localcharset.c, lib/localcharset.h, lib/logl.c, lib/long-options.c,
11758         lib/long-options.h, lib/lstat.c, lib/makepath.c, lib/makepath.h,
11759         lib/malloc.c, lib/mathl.h, lib/mbswidth.c, lib/mbswidth.h, lib/md5.c,
11760         lib/md5.h, lib/memcasecmp.c, lib/memcasecmp.h, lib/memchr.c,
11761         lib/memcmp.c, lib/memcoll.c, lib/memcoll.h, lib/memcpy.c, lib/memmem.c,
11762         lib/memmem.h, lib/mempcpy.c, lib/mempcpy.h, lib/memrchr.c,
11763         lib/memrchr.h, lib/memset.c, lib/minmax.h, lib/mkdir.c, lib/mkdtemp.c,
11764         lib/mkdtemp.h, lib/mkstemp.c, lib/mktime.c, lib/modechange.c,
11765         lib/modechange.h, lib/mountlist.c, lib/mountlist.h, lib/nanosleep.c,
11766         lib/obstack.c, lib/obstack.h, lib/openat.c, lib/openat.h,
11767         lib/pagealign_alloc.c, lib/pagealign_alloc.h, lib/path-concat.c,
11768         lib/path-concat.h, lib/pathmax.h, lib/pathname.h, lib/physmem.c,
11769         lib/physmem.h, lib/pipe.c, lib/pipe.h, lib/poll.c, lib/poll_.h,
11770         lib/posixtm.c, lib/posixtm.h, lib/posixver.c, lib/printf-args.c,
11771         lib/printf-args.h, lib/printf-parse.c, lib/printf-parse.h,
11772         lib/progname.c, lib/progname.h, lib/progreloc.c, lib/putenv.c,
11773         lib/quote.c, lib/quote.h, lib/quotearg.c, lib/quotearg.h, lib/raise.c,
11774         lib/readlink.c, lib/readtokens.c, lib/readtokens.h, lib/readtokens0.c,
11775         lib/readtokens0.h, lib/readutmp.c, lib/readutmp.h, lib/realloc.c,
11776         lib/ref-add.sin, lib/ref-del.sin, lib/regex.c, lib/regex.h,
11777         lib/rename.c, lib/rmdir.c, lib/rpmatch.c, lib/safe-read.c,
11778         lib/safe-read.h, lib/safe-write.c, lib/safe-write.h, lib/same.c,
11779         lib/same.h, lib/save-cwd.c, lib/save-cwd.h, lib/savedir.c,
11780         lib/savedir.h, lib/setenv.c, lib/setenv.h, lib/settime.c,
11781         lib/sh-quote.c, lib/sh-quote.h, lib/sha1.c, lib/sha1.h, lib/sig2str.c,
11782         lib/sig2str.h, lib/sincosl.c, lib/snprintf.c, lib/snprintf.h,
11783         lib/sqrtl.c, lib/stat-macros.h, lib/stat.c, lib/stdbool_.h,
11784         lib/stdint_.h, lib/stdio-safer.h, lib/stpcpy.c, lib/stpcpy.h,
11785         lib/stpncpy.c, lib/stpncpy.h, lib/strcase.h, lib/strcasecmp.c,
11786         lib/strchrnul.c, lib/strchrnul.h, lib/strcspn.c, lib/strdup.c,
11787         lib/strdup.h, lib/strerror.c, lib/strftime.c, lib/strftime.h,
11788         lib/stripslash.c, lib/strndup.c, lib/strndup.h, lib/strnlen.c,
11789         lib/strpbrk.c, lib/strpbrk.h, lib/strsep.c, lib/strsep.h, lib/strstr.c,
11790         lib/strstr.h, lib/strtod.c, lib/strtoimax.c, lib/strtok_r.c,
11791         lib/strtok_r.h, lib/strtol.c, lib/strtoll.c, lib/strtoul.c,
11792         lib/strtoull.c, lib/strverscmp.c, lib/strverscmp.h, lib/sysexit_.h,
11793         lib/tempname.c, lib/time_r.c, lib/time_r.h, lib/timegm.c, lib/timegm.h,
11794         lib/timespec.h, lib/trigl.c, lib/trigl.h, lib/ucs4-utf16.h,
11795         lib/ucs4-utf8.h, lib/unicodeio.c, lib/unicodeio.h, lib/unistd-safer.h,
11796         lib/unlocked-io.h, lib/unsetenv.c, lib/userspec.c, lib/utf16-ucs4.h,
11797         lib/utf8-ucs4.h, lib/utime.c, lib/utimecmp.c, lib/utimecmp.h,
11798         lib/utimens.c, lib/vasnprintf.c, lib/vasnprintf.h, lib/vasprintf.c,
11799         lib/vasprintf.h, lib/version-etc-fsf.c, lib/version-etc.c,
11800         lib/version-etc.h, lib/vsnprintf.c, lib/vsnprintf.h, lib/w32spawn.h,
11801         lib/wait-process.c, lib/wait-process.h, lib/xalloc-die.c, lib/xalloc.h,
11802         lib/xallocsa.c, lib/xallocsa.h, lib/xasprintf.c, lib/xgetcwd.c,
11803         lib/xgetcwd.h, lib/xgetdomainname.c, lib/xgetdomainname.h,
11804         lib/xgethostname.c, lib/xmalloc.c, lib/xmemcoll.c, lib/xnanosleep.c,
11805         lib/xreadlink.c, lib/xreadlink.h, lib/xsetenv.c, lib/xsetenv.h,
11806         lib/xsize.h, lib/xstrndup.c, lib/xstrndup.h, lib/xstrtod.c,
11807         lib/xstrtod.h, lib/xstrtoimax.c, lib/xstrtol.c, lib/xstrtol.h,
11808         lib/xstrtoumax.c, lib/xtime.h, lib/xvasprintf.c, lib/xvasprintf.h,
11809         lib/yesno.c, lib/yesno.h:
11810         Update FSF postal mail address.
11811
11812 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
11813
11814         * MODULES.html.sh, README, gnulib-tool, tests/test-base64.c,
11815         tests/test-memmem.c, tests/test-stpncpy.c:
11816         Update FSF postal mail address.
11817
11818 2005-05-13  Bruno Haible  <bruno@clisp.org>
11819
11820         * lib/stdint_.h (int64_t, uint64_t, int_least64_t, uint_least64_t,
11821         int_fast64_t, uint_fast64_t, intmax_t, uintmax_t, INT64_MIN, INT64_MAX,
11822         UINT64_MAX, INT_LEAST64_MIN, INT_LEAST64_MAX, UINT_LEAST64_MAX,
11823         INT_FAST64_MIN, INT_FAST64_MAX, UINT_FAST64_MAX, INTMAX_MIN,
11824         INTMAX_MAX, UINTMAX_MAX, INT64_C, UINT64_C, INTMAX_C, UINTMAX_C):
11825         Add support for 64-bit integers in the MSVC compiler.
11826
11827 2005-05-12  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
11828
11829         * modules/getdate (Makefile.am): Add getdate.c to EXTRA_DIST
11830
11831 2005-05-12  Eric Blake  <ebb9@byu.net>  (tiny change)
11832
11833         * gnulib-tool (func_import): Sort and uniquify recommended includes.
11834
11835 2005-05-11  Paul Eggert  <eggert@cs.ucla.edu>
11836
11837         * doc/getdate.texi (General date syntax): Don't say that date
11838         date --iso-8601=ns generates acceptable dates; it doesn't yet.
11839         Problem reported by Nic Ferrier.
11840
11841 2005-05-10  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
11842
11843         * lib/getaddrinfo.c: Don't fail when SOCK_STREAM or SOCK_DGRAM are
11844         specified in ai_socktype. Fix invalid ai_protocol
11845         check. ai_protocol is usually set to 0 or depending on
11846         ai_family/ai_socktype to IPPROTO_TCP / IPPROTO_UDP.  Checking for
11847         SOCK_STREAM / SOCK_DGRAM in ai_protocol was invalid.  Set
11848         ai_socktype / ai_protocol in the returned addrinfo structure.
11849
11850 2005-05-10  Simon Josefsson  <jas@extundo.com>
11851
11852         * m4/getaddrinfo.m4: Look in libnsl/libsocket for getaddrinfo, from
11853         Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
11854
11855 2005-05-10  Karl Berry  <karl@gnu.org>
11856
11857         * doc/fdl.texi, gpl.texi, lgpl.texi, COPYING: update FSF address
11858         (from http://www.gnu.org/licenses).
11859         * doc/COPYING.LIB: also rename to COPYING.LESSER.
11860         * doc/COPYING.DOC: remove; per rms, only needed in doc files, so
11861         fdl.texi suffices.
11862
11863 2005-05-10  Karl Berry  <karl@gnu.org>
11864
11865         * config/srclist.txt (COPYING.LESSER): rename from COPYING.LIB.
11866         (COPYING.DOC): remove.
11867
11868         * config/srclist-update: new FSF address.
11869
11870 2005-05-10  Derek Price  <derek@ximbiot.com>
11871
11872         * m4/getopt.m4 (gl_GETOPT): Check for Solaris 10 bug, not decl, when
11873         possible.
11874
11875 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
11876             Bruno Haible  <bruno@clisp.org>
11877
11878         * modules/inet_ntop: New file.
11879         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
11880         inet_ntop.
11881
11882 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
11883             Bruno Haible  <bruno@clisp.org>
11884
11885         * m4/inet_ntop.m4: New file.
11886
11887 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
11888             Bruno Haible  <bruno@clisp.org>
11889
11890         * lib/inet_ntop.h: New file.
11891         * lib/inet_ntop.c: New file, from glibc with modifications.
11892
11893 2005-05-09  Paul Eggert  <eggert@cs.ucla.edu>
11894
11895         * modules/time_r (License): Change to LGPL.
11896         * modules/extensions (License): Change to LGPL.  Actually,
11897         the license is more permissive than that, but currently gnulib-tool
11898         doesn't know how to handle more-permissive licenses.
11899
11900         * modules/stat-macros (Depends-on): Don't depend on stat-macros (!).
11901         Problem reported by Dave Love.
11902
11903 2005-05-08  Jim Meyering  <jim@meyering.net>
11904
11905         * lib/classpath.c (PATH_SEPARATOR): Remove insignificant trailing
11906         blank.
11907
11908 2005-05-06  Paul Eggert  <eggert@cs.ucla.edu>
11909
11910         * modules/argmatch (Depends-on): Add stdbool.
11911         * modules/backupfile (Depends-on): Likewise.
11912         * modules/chdir-long (Depends-on): Likewise.
11913         * modules/closeout (Depends-on): Likewise.
11914         * modules/cycle-check (Depends-on): Likewise.
11915         * modules/dirname (Depends-on): Likewise.
11916         * modules/fnmatch (Depends-on): Likewise.
11917         * modules/fsusage (Depends-on): Likewise.
11918         * modules/fwriteerror (Depends-on): Likewise.
11919         * modules/getcwd (Depends-on): Likewise.
11920         * modules/getloadavg (Depends-on): Likewise.
11921         * modules/hard-locale (Depends-on): Likewise.
11922         * modules/makepath (Depends-on): Likewise.
11923         * modules/mountlist (Depends-on): Likewise.
11924         * modules/nanosleep (Depends-on): Likewise.
11925         * modules/posixtm (Depends-on): Likewise.
11926         * modules/quotearg (Depends-on): Likewise.
11927         * modules/readtokens (Depends-on): Likewise.
11928         * modules/readtokens0 (Depends-on): Likewise.
11929         * modules/readutmp (Depends-on): Likewise.
11930         * modules/save-cwd (Depends-on): Likewise.
11931         * modules/strftime (Depends-on): Likewise.
11932         * modules/userspec (Depends-on): Likewise.
11933         * modules/utimecmp (Depends-on): Likewise.
11934         * modules/xgetcwd (Depends-on): Likewise.
11935         * modules/xnanosleep (Depends-on): Likewise.
11936         * modules/xstrtod (Depends-on): Likewise.
11937         * modules/yesno (Depends-on): Likewise.
11938
11939 2005-05-05  Paul Eggert  <eggert@cs.ucla.edu>
11940
11941         * m4/getopt.m4 (gl_GETOPT): Check for Solaris 10 getopt, and avoid
11942         needless checks.
11943
11944 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
11945
11946         Merge from coreutils.  Among other things,
11947         add bulletproofing for cases where stdin, stdout, or stderr are closed.
11948         * lib/fd-safer.c: New file.
11949         * lib/fcntl-safer.h, open-safer.c: Remove.
11950         * lib/chdir-long.c: Fix comment "fetish" -> "coreutils".
11951         * lib/dup-safer.c: Include unistd-safer.h first.
11952         Don't include errno.h.
11953         (dup_safer) [!defined F_DUPFD]: Let fd_safer do the real work.
11954         * lib/file-type.h: Don't assume invoker included sys/stat.h first.
11955         * lib/file-type.c: Rely on file-type.h change.
11956         * lib/getloadavg.c: Include unistd-safer.h.
11957         (getloadavg): Use safer open.
11958         * lib/getusershell.c: Include "stdio-safer.h".
11959         (getusershell): Use safer fopen.
11960         * lib/long-options.c (long_options): Use NULL rather than 0.
11961         * lib/modechange.h (mode_free): Remove; all callers changed to invoke
11962         'free'.
11963         * lib/modechange.c: Likewise.
11964         xstrtol.h, stdbool.h, stddef.h: Don't include; no longer needed.
11965         (MODE_DONE): New constant.
11966         (struct mode_change): Remove 'next' member.
11967         (make_node_op_equals): New function; like the old one of the
11968         same name, except it allocates an array.
11969         (mode_compile, mode_create_from_ref): Use it.
11970         (mode_compile): Allocate result as an array, not a linked list.
11971         Parse octal string ourself, so that we catch mistakes like "+0".
11972         (mode_adjust): Arg is an array, not a linked list.
11973         * lib/modechange.c: Include stat-macros.h, xalloc.h.
11974         (S_ISDIR, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR):
11975         (S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH, S_IRXWU):
11976         (S_IRWXG, S_IRWXO, CHMOD_MODE_BITS):
11977         Remove.  This is now stat-macros.h's job.
11978         (talloc): Remove.  All callers replaced by xalloc, so that
11979         our invokers don't have to worry about reporting memory failures.
11980         (make_node_op_equals): Remove.
11981         (MODE_ORDINARY_CHAGE, MODE_X_IF_ANY_X, MODE_COPY_EXISTING):
11982         New constants.
11983         (struct mode_change): Moved here from modechange.h.
11984         (mode_append_entry): Remove.
11985         (mode_compile): Remove MASKED_OPS arg, since it encouraged
11986         apps to have incorrect behavior.  Use simpler algorithm for head
11987         and tail.  Don't futz with umask; that's now the job of mode_adjust.
11988         Detect more invalid usages rather than having somewhat-random behavior.
11989         Don't insert an "a=" action, as that leads to incorrect behavior.
11990         (mode_compile, mode_create_from_ref): Return NULL on error instead
11991         of an enum, since now there's only one way to have an error.  All
11992         callers changed.
11993         (mode_adjust): Accept new arg UMASK_VALUE, and interpret it
11994         at the correct time.  Simplify calculation of "+u" and its ilk.
11995         Don't mishandle "+X".
11996         (mode_free): Remove "register" and localize decls.
11997         * lib/modechange.h (MODE_X_IF_ANY_X, MODE_COPY_EXISTING):
11998         (struct mode_change): Move to modechange.c; callers don't
11999         need to see this stuff.
12000         (MODE_MASK_EQUALS, MODE_MASK_PLUS, MODE_MASK_MINUS, MODE_MASK_ALL):
12001         (MODE_INVALID, MODE_MEMORY_EXHAUSTED, MODE_BAD_REFERENCE): Remove.
12002         (mode_change, mode_adjust): Reflect the new signatures noted above.
12003         * lib/nanosleep.c (rpl_nanosleep): Include "timespec.h" before macros
12004         that might redefine system include files.
12005         (siginterrupt) [!HAVE_SIGINTERRUPT]: New macro.
12006         (my_usleep): Use NULL rather than (void *) 0.
12007         (rpl_nanosleep) [!defined SA_NOCLDSTOP]:
12008         Use siginterrupt to specify that system calls should be interrupted.
12009         (rpl_nanosleep): Move initialization of suspended closer to call of
12010         my_usleep.
12011         * lib/readutmp.h (read_utmp): New arg OPTIONS.  All uses changed.
12012         * lib/readutmp.c: Likewise.  Include signal.h, stdbool.h.
12013         (desirable_utmp_entry): New function.
12014         (read_utmp) [defined UTMP_NAME_FUNCTION]: Redo memory allocation
12015         using x2nrealloc, to simplify logic.
12016         (read_utmp) [!defined UTMP_NAME_FUNCTION]: Check for overflow in
12017         size calculation.  Do not assume utmp file is a regular file.
12018         * lib/readutmp.h (UT_PID): Moved here from ../src/who.c.
12019         (READ_UTMP_CHECK_PIDS): New constant.
12020         * lib/save-cwd.c: Include unistd-safer.h.
12021         (save_cwd): Use fd_safer.
12022         * lib/tempname.c (S_ISDIR, S_IRUSR, S_IRUSR, S_IWUSR, S_IXUSR): Remove.
12023         [!_LIBC] Include "stat-macros.h" instead.
12024         * lib/unistd-safer.h (fd_safer): New decl.
12025
12026 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
12027
12028         * modules/getloadavg (Depends-on): Add unistd-safer.
12029         * modules/getusershell (Depends-on): Add stdio-safer.
12030         * modules/lstat (Depends-on): Remove xalloc.
12031         * modules/mkstemp (Depends-on): Add stat-macros.
12032         * modules/modechange (Depends-on): Remove xstrtol.
12033         Add stat-macros, xalloc.
12034         * modules/save-cwd (Depends-on): Add unistd-safer.
12035         * modules/stdio-safer (Makefile.am): Remove lib_SOURCES.
12036         * modules/unistd-safer (Files): Add lib/fd-safer.c
12037         (Makefile.am): Remove lib_SOURCES.
12038
12039         * MODULES.html.sh (Enhancements for POSIX:2001 functions):
12040         Remove fcntl-safer; unistd-safer supersedes it.
12041
12042 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
12043
12044         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Don't require
12045         AC_HEADER_STAT.
12046         * m4/lchown.m4 (gl_FUNC_CHOWN): Likewise.
12047         (gl_PREREQ_CHOWN): Remove.
12048         * m4/lstat.m4 (gl_FUNC_LSTAT): Require AC_FUNC_LSTAT instead of calling
12049         it.  Don't require AC_HEADER_STAT.
12050         (gl_PREREQ_LSTAT): Remove.
12051         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Check stdint.h only once.
12052         Don't require AC_HEADER_STAT.
12053         * m4/rmdir.m4 (gl_FUNC_RMDIR): Don't require AC_HEADER_STAT.
12054         (gl_PREREQ_RMDIR): Remove.
12055         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Don't
12056         mention stat-macros.h or AC_HEADER_STAT, since we'll make
12057         the stat-macros module a prerequisite.
12058         * m4/file-type.m4 (gl_FILE_TYPE): Likewise.
12059         * m4/filemode.m4 (gl_FILEMODE): Likewise.
12060         * m4/makepath.m4 (gl_MAKEPATH): Likewise.
12061         * m4/modechange.m4 (gl_MODECHANGE): Likewise.
12062         * m4/clock_time.m4 (gl_CLOCK_TIME): Use gl_ rather than fetish_ for
12063         variable names.
12064         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Renamed from
12065         fetish_FUNC_RMDIR_NOTEMPTY.  All uses changed.  Use gl_ for
12066         variable prefixes.
12067         * m4/fcntl-safer.m4: Remove.
12068         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Use AC_LIBSOURCES and AC_LIBOBJ.
12069         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Likewise.
12070         Invoke gl_PREREQ_FD_SAFER.
12071         (gl_PREREQ_FD_SAFER): New macro.
12072         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): Check for siginterrupt.
12073         * m4/readutmp.m4 (gl_READUTMP): Require AC_C_INLINE.
12074         Use AC_CHECK_HEADERS_ONCE and AC_CHECK_FUNCS_ONCE when possible.
12075         Remove duplicate call to AC_LIBOBJ(readutmp).
12076         (gl_PREREQ_READUTMP): Remove.  All uses inlined.
12077
12078         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Check for message, not for
12079         MAP_ANON.  Problem reported by Moriyoshi Koizumi to bug-cvs.
12080
12081 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
12082
12083         * MODULES.html.sh (Misc): Add byteswap.
12084
12085 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
12086
12087         * modules/getcwd (Depends-on): Add extensions.
12088         * modules/openat (Depends-on): Likewise.
12089
12090 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
12091
12092         * modules/byteswap: New file.
12093
12094 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
12095
12096         * m4/byteswap.m4: New file.
12097
12098 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
12099
12100         * lib/byteswap_.h: New file.
12101
12102 2005-04-25  Karl Berry  <karl@gnu.org>
12103
12104         * m4/gettext.m4: Update from GNU gettext 0.14.4.
12105
12106 2005-04-25  Albert Chin  <china@thewrittenword.com>
12107
12108         * lib/regex.c: Include <stdio.h>, as a workaround to a Compaq Desktop
12109         Toolkit C bug.
12110
12111 2005-04-21  Oskar Liljeblad  <oskar@osk.mine.nu>
12112
12113         * gnulib-tool (Options): Add -s for --symlink/--symbolic.
12114         (func_ln_if_changed) Remove forcibly for no error message
12115         in case file does not exist.
12116
12117 2005-04-19  Simon Josefsson  <jas@extundo.com>
12118
12119         * gnulib-tool (Options): Make --symlink mean --symbolic.
12120
12121 2005-04-18  Oskar Liljeblad  <oskar@osk.mine.nu>
12122
12123         * doc/gnulib.texi (Initial import): Fix.  Mention --aux-dir.
12124
12125 2005-04-16  Simon Josefsson  <jas@extundo.com>
12126
12127         * modules/getpass-gnu (Makefile.am): Don't mention getpass.h.
12128
12129 2005-04-15  Simon Josefsson  <jas@extundo.com>
12130
12131         * m4/getpass.m4 (gl_FUNC_GETPASS): Use AC_LIBSOURCES.
12132
12133 2005-04-15  Simon Josefsson  <jas@extundo.com>
12134
12135         * gnulib-tool: Rename --symlink to --symbolic.
12136
12137 2005-04-15  Oskar Liljeblad  <oskar@osk.mine.nu>
12138
12139         * gnulib-tool: Add -s, --symlink option to gnulib-tool to make
12140         symbolic links to files instead of copying/moving.  Add --aux-dir,
12141         specifying directory relative --dir where auxiliary build tools
12142         are placed.
12143
12144 2005-04-14  Bruno Haible  <bruno@clisp.org>
12145
12146         * modules/allocsa (License): Change to LGPL.
12147         Requested by Yoann Vandoorselaere <yoann@prelude-ids.org>.
12148
12149 2005-04-13  Paul Eggert  <eggert@cs.ucla.edu>
12150
12151         * lib/getdate.y (zone): Allow relunit_snumber after tZONE, so
12152         that "UTC +1 second" continues to work.  Problem reported
12153         by Dmitry V. Levin.
12154         (relunit_snumber): New rule.
12155         (relunit): Use it.
12156
12157 2005-04-12  Paul Eggert  <eggert@cs.ucla.edu>
12158
12159         * lib/getdate.y (universal_time_zone_table): New constant.
12160         (time_zone_table): Remove GMT, UT, UTC entries; they're now in
12161         universal_time_zone_table.
12162         (lookup_zone): Prefer universal_time_zone_table to
12163         local_time_zone_table, so that "GMT" time stamps are allowed in
12164         London during the summer.  Problem reported by Ian Abbott.
12165
12166 2005-04-12  Jim Meyering  <jim@meyering.net>
12167
12168         * lib/human.c (humblock): Set *options even when returning due to
12169         xstrtoumax conversion failure.  Thanks to a used-uninitialized
12170         warning from gcc-4.
12171
12172 2005-04-09  Jim Meyering  <jim@meyering.net>
12173
12174         * lib/posixtm.c (posixtime) [lint]: Avoid spurious warning from gcc-4's
12175         -Wuninitialized: initialize tm0.tm_year.
12176
12177 2005-04-04  Paul Eggert  <eggert@cs.ucla.edu>
12178
12179         * lib/getdate.y (parser_control): rels_seen is now a boolean, not a
12180         count, since there's no maximum.  All uses changed.
12181         Add member dsts_seen.
12182         (local_zone): Accumulate dsts_seen rather than relying on tm_isdst
12183         not being INT_MAX.
12184         (get_date): Initialize dsts_seen, and check that it doesn't go over 1.
12185         Use pc_rels_seen to decide whther a date is absolute.
12186
12187         * lib/getdate.y (number): Don't overwrite year.
12188         (get_date): Initialize pc.year.digits to 0, not 4, to enable above
12189         check.
12190
12191 2005-04-02  Simon Josefsson  <jas@extundo.com>
12192
12193         * lib/getaddrinfo.h: Fix OpenBSD compilation failure, inspired by tiny
12194         patch from Yoann Vandoorselaere <yoann@prelude-ids.org>.
12195
12196 2005-03-28  Eric Blake  <ebb9@byu.net>  (tiny change)
12197
12198         * m4/getcwd-path-max.m4: Return success on systems such as Cygwin
12199         where no absolute path name can be longer than PATH_MAX.
12200
12201 2005-03-27  Jim Meyering  <jim@meyering.net>
12202
12203         * lib/argmatch.c: Clarify comment: null-terminated -> NULL-terminated.
12204
12205 2005-03-26  Paul Eggert  <eggert@cs.ucla.edu>
12206
12207         * lib/intprops.h (INT_STRLEN_BOUND, INT_BUFSIZE_BOUND):
12208         "one's complement" -> "ones' complement" in comment, as per Knuth.
12209         "value of type" -> "type or expression" in comment.
12210         * lib/mktime.c, strftime.c: Propagate intprops.h comment nits.
12211
12212 2005-03-26  Jim Meyering  <jim@meyering.net>
12213
12214         Comment nits.
12215         * lib/intprops.h: Add the apostrophe in `(one|two)'s complement'.
12216         Correct typos: s/or/of/.
12217
12218 2005-03-26  Jim Meyering  <jim@meyering.net>
12219
12220         * modules/check-include-files: Move to ../ and rename to...
12221         * check-module: ...this.
12222
12223 2005-03-25  Jim Meyering  <jim@meyering.net>
12224
12225         * modules/xvasprintf (Files): Add xalloc.h.
12226
12227 2005-03-23  Paul Eggert  <eggert@cs.ucla.edu>
12228
12229         * modules/gettext (Files): config/config.rpath ->
12230         build-aux/config.rpath
12231         * modules/iconv (Files): Likewise.
12232         Problem reported by Oskar Liljeblad.
12233
12234 2005-03-23  Jim Meyering  <jim@meyering.net>
12235
12236         * modules/check-include-files: New script to check for
12237         missing dependencies, multiple includes, etc.
12238
12239         * modules/c-strtold (Depends-on): Add xalloc.
12240         * modules/c-strtod (Depends-on): Add xalloc.
12241         * modules/hash (Depends-on): Add xalloc.
12242         (Files): Remove lib/xalloc.h.
12243
12244         * modules/gethrxtime (Files): Add lib/gethrxtime.h.
12245         * modules/userspec (Files): Add lib/inttostr.h.
12246
12247 2005-03-23  Jim Meyering  <jim@meyering.net>
12248
12249         * lib/canonicalize.c: Remove duplicate `#include "stat-macros.h"'.
12250
12251 2005-03-22  Jim Meyering  <jim@meyering.net>
12252
12253         * modules/stat-macros: New module.
12254         * modules/canonicalize, modules/euidaccess, modules/file-type,
12255         * modules/filemode, modules/lchown, modules/makepath,
12256         * modules/rmdir, modules/stat: Depend on new stat-macros module
12257         rather than listing lib/stat-macros.h manually.
12258         Don't add stat-macros.h to lib_SOURCES or list it in Files: section.
12259
12260 2005-03-22  Jim Meyering  <jim@meyering.net>
12261
12262         * m4/stat-macros.m4 (gl_STAT_MACROS): New file/macro.
12263
12264 2005-03-22  Bruno Haible  <bruno@clisp.org>
12265
12266         * config/srclist.txt: Replace target directory 'config' with
12267         'build-aux'.
12268         * config/config.guess, config.sub, config.rpath, depcomp, install-sh:
12269         * config/mdate-sh, missing, mkinstalldirs, texinfo.tex: Move to
12270         ../build-aux/.
12271
12272 2005-03-21  Paul Eggert  <eggert@cs.ucla.edu>
12273
12274         * modules/chdir-long (Depends-on): Add mempcpy.
12275
12276         * modules/acl, modules/backupfile, modules/c-strtod,
12277         modules/c-strtold, modules/canon-host, modules/canonicalize,
12278         modules/cloexec, modules/closeout, modules/dirfd, modules/dirname,
12279         modules/exclude, modules/exitfail, modules/file-type,
12280         modules/filemode, modules/fpending, modules/fsusage, modules/getcwd,
12281         modules/getdate, modules/getline, modules/getpagesize,
12282         modules/getpass, modules/getugroups, modules/group-member,
12283         modules/hard-locale, modules/hash, modules/human, modules/idcache,
12284         modules/inttostr, modules/long-options, modules/makepath,
12285         modules/md5, modules/memcasecmp, modules/memcoll,
12286         modules/modechange, modules/mountlist, modules/path-concat,
12287         modules/pathmax, modules/physmem, modules/posixtm, modules/posixver,
12288         modules/quote, modules/quotearg, modules/readtokens, modules/readutmp,
12289         modules/safe-read, modules/safe-write, modules/same, modules/savedir,
12290         modules/settime, modules/sha1, modules/sig2str, modules/strdup,
12291         modules/strftime, modules/strndup, modules/strverscmp,
12292         modules/timespec, modules/unlocked-io, modules/userspec,
12293         modules/utimecmp, modules/utimens, modules/xalloc, modules/xstrtol,
12294         modules/yesno:
12295         Remove lib_SOURCES line from Makefile.am section, as this is now
12296         done automatically by the corresponding Autoconf macro.
12297
12298 2005-03-21  Jim Meyering  <jim@meyering.net>
12299
12300         Changes imported from coreutils.
12301
12302         * lib/cycle-check.c: Don't include xalloc.h.
12303
12304         * lib/path-concat.c: Don't include assert.h.
12305         (path_concat): Remove assertion that would have triggered
12306         for ABASE starting with more than one slash.
12307         Reported by Andreas Schwab.
12308
12309         * lib/path-concat.c (path_concat): Set *BASE_IN_RESULT
12310         properly when ABASE is an absolute file name.
12311         Correct the description of this function.
12312         Include <assert.h>.
12313         Add an assertion and a test driver.
12314         This fixes a bug introduced on 2004-07-02.
12315         Andreas Schwab reported the resulting failure of cp --parents:
12316         http://lists.gnu.org/archive/html/bug-coreutils/2005-01/msg00130.html
12317
12318 2005-03-21  Jim Meyering  <jim@meyering.net>
12319
12320         * m4/chdir-long.m4 (gl_PREREQ_CHDIR_LONG): Invoke gl_FUNC_MEMRCHR.
12321         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Check for memrchr decl.
12322
12323 2005-03-21  Jim Meyering  <jim@meyering.net>
12324         and  Paul Eggert  <eggert@cs.ucla.edu>
12325
12326         * m4/acl.m4, m4/backupfile.m4, m4/c-strtod.m4, m4/canon-host.m4,
12327         m4/canonicalize.m4, m4/cloexec.m4, m4/closeout.m4, m4/dirfd.m4,
12328         m4/dirname.m4, m4/exclude.m4, m4/exitfail.m4, m4/file-type.m4,
12329         m4/filemode.m4, m4/fpending.m4, m4/fsusage.m4, m4/getcwd.m4,
12330         m4/getdate.m4, m4/getline.m4, m4/getpagesize.m4, m4/getpass.m4,
12331         m4/getugroups.m4, m4/group-member.m4, m4/hard-locale.m4, m4/hash.m4,
12332         m4/human.m4, m4/idcache.m4, m4/inttostr.m4, m4/long-options.m4,
12333         m4/makepath.m4, m4/md5.m4, m4/memcasecmp.m4, m4/memcoll.m4,
12334         m4/modechange.m4, m4/mountlist.m4, m4/nanosleep.m4, m4/path-concat.m4,
12335         m4/pathmax.m4, m4/physmem.m4, m4/posixtm.m4, m4/posixver.m4,
12336         m4/quote.m4, m4/quotearg.m4, m4/readtokens.m4, m4/readutmp.m4,
12337         m4/safe-read.m4, m4/safe-write.m4, m4/same.m4, m4/savedir.m4,
12338         m4/settime.m4, m4/sha1.m4, m4/sig2str.m4, m4/strdup.m4, m4/strftime.m4,
12339         m4/strndup.m4, m4/strverscmp.m4, m4/timespec.m4, m4/unlocked-io.m4,
12340         m4/userspec.m4, m4/utimecmp.m4, m4/utimens.m4, m4/xalloc.m4,
12341         m4/xnanosleep.m4, m4/xstrtol.m4, m4/yesno.m4:
12342         Use AC_LIBSOURCES and AC_LIBOBJ to indicate source and object files
12343         for these modules.
12344
12345 2005-03-18  Paul Eggert  <eggert@cs.ucla.edu>
12346
12347         * lib/strftime.c (my_strftime): If the underlying strftime returns 0
12348         (which shouldn't happen), generate nothing instead of returning 0
12349         immediately, so that nstrftime (NULL, ...) doesn't return 0.
12350
12351 2005-03-16  Bruno Haible  <bruno@clisp.org>
12352
12353         * modules/stdint (Makefile.am): Use HAVE_LONG_LONG_64BIT instead of
12354         HAVE_LONGLONG_64BIT.
12355
12356 2005-03-16  Bruno Haible  <bruno@clisp.org>
12357
12358         * m4/stdint.m4 (gl_STDINT_H): Define HAVE_LONG_LONG_64BIT instead of
12359         HAVE_LONGLONG_64BIT.
12360
12361 2005-03-16  Bruno Haible  <bruno@clisp.org>
12362
12363         * lib/stdint_.h: Use HAVE_LONG_LONG_64BIT instead of
12364         HAVE_LONGLONG_64BIT.
12365
12366 2005-03-15  Paul Eggert  <eggert@cs.ucla.edu>
12367
12368         * lib/strftime.c (my_strftime): Prepend space to format so that we can
12369         reliably distinguish strftime failure from empty output on POSIX
12370         hosts.
12371
12372 2005-03-15  Paul Eggert  <eggert@cs.ucla.edu>
12373
12374         * lib/iconvme.c (SIZE_MAX): New macro, if not already defined.
12375         (iconv_string): Don't guess a size-zero buffer, as that might cause
12376         buffer overrun.  Instead, avoid multiplying by MB_LEN_MAX if the
12377         result would be 'too large', where 'too large' is (heuristically)
12378         the square root of SIZE_MAX, divided by MB_LEN_MAX to allay
12379         overflow concerns.  This will prevent some unwanted malloc failures
12380         when the inputs are very large.
12381
12382 2005-03-15  Karl Berry  <karl@gnu.org>
12383
12384         * config/srclist.txt (config.rpath): from gettext.
12385         * config/config.rpath: update.
12386
12387 2005-03-15  Bruno Haible  <bruno@clisp.org>
12388
12389         * lib/regex.c (byte_re_match_2_internal): Rename local variable 'not'
12390         to 'negate'.
12391
12392         * lib/regex.c (byte_re_match_2_internal): Reduce scope of same_str_p
12393         variable.
12394
12395         * lib/regex.c (EXTEND_BUFFER, regcomp): Cast the realloc/malloc
12396         results.
12397
12398 2005-03-14  Simon Josefsson  <jas@extundo.com>
12399
12400         * lib/timegm.h: Use proper prototype CPP guards, reported by Dave Love
12401         <fx@gnu.org>.
12402
12403 2005-03-14  Paul Eggert  <eggert@cs.ucla.edu>
12404
12405         * lib/mktime.c (TYPE_TWOS_COMPLEMENT, TYPE_ONES_COMPLEMENT,
12406         TYPE_SIGNED_MAGNITUDE, TYPE_MINIMUM, TYPE_MAXIMUM): Sync from
12407         intprops.h.
12408         * lib/strtol.c: Likewise.
12409
12410 2005-03-14  Jim Meyering  <jim@meyering.net>
12411
12412         * lib/strftime.c (my_strftime) [HAVE_STRFTIME && ! (_NL_CURRENT
12413         && HAVE_STRUCT_ERA_ENTRY)]: Initialize the first byte of ubuf[]
12414         to be nonzero so that we (and caller) can detect the difference
12415         between a valid zero-length expansion and an error return, even
12416         when the underlying strftime fails before writing anything into
12417         that location.
12418
12419 2005-03-14  Bruno Haible  <bruno@clisp.org>
12420
12421         * m4/lib-link.m4, gettext.m4, nls.m4, po.m4:
12422         Update from GNU gettext 0.14.3.
12423
12424 2005-03-10  Jim Meyering  <jim@meyering.net>
12425
12426         * m4/save-cwd.m4 (gl_SAVE_CWD): Check for fchdir.
12427
12428 2005-03-10  Jim Meyering  <jim@meyering.net>
12429
12430         * lib/save-cwd.c [!HAVE_FCHDIR]: Define open, fchdir, and chdir_long
12431         so that this module works on systems without fchdir.
12432
12433 2005-03-09  Paul Eggert  <eggert@cs.ucla.edu>
12434
12435         Factor int-properties macros into a single file, except for
12436         glibc-related files.
12437         * lib/intprops.h: New file.
12438         * lib/getloadavg.c: Include it instead of limits.h.
12439         (INT_STRLEN_BOUND): Remove.
12440         * lib/human.c: Include intprops.h.
12441         (group_number): Use INT_STRLEN_BOUND instead of rolling it ourself.
12442         * lib/human.h (LONGEST_HUMAN_READABLE): Use 146/485 rather than
12443         302/1000.
12444         * lib/inttostr.h: Include intprops.h instead of limits.h.
12445         (INT_STRLEN_BOUND, INT_BUFSIZE_BOUND): Remove.
12446         * lib/mktime.c (TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT): New macros,
12447         for consistency with intprops.h.
12448         (time_t_is_integer, twos_complement_arithmetic): Use them.
12449         * lib/sig2str.h: Include <signal.h>, intprops.h.
12450         (INT_STRLEN_BOUND): Remove.
12451         * lib/strftime.c (TYPE_SIGNED): Remove.
12452         (INT_STRLEN_BOUND): Switch to same implementation as intprops.h.
12453         * lib/strtol.c: Adjust comments to match intprops.h.
12454         * lib/userspec.c: Include intprops.h.
12455         (TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Remove.
12456         * lib/utimecmp.c, xnanosleep.c, xstrtol.c: Likewise.
12457         * lib/utimecmp.c (utimecmp): Use TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT
12458         instead of rolling our own expressions.
12459         * lib/xstrtol.c: Include xstrtol.h first, to test interface.
12460
12461         * lib/strftime.c: Include <stdbool.h>.  Use bool where appropriate,
12462         instead of int.
12463         (my_strftime): Do not mishandle years close to INT_MAX, by doing
12464         the right thing even if adding 1900 would overflow.  Similarly
12465         for tm_mon + 1 and tm_yday + 1.
12466         Make %Y always equivalent to %C%y, and similarly for %G and %g.
12467         (DO_NUMBER, DO_NUMBER_SPACEPAD): Set digits to d, not a conditional.
12468         (DO_SIGNED_NUMBER): New macro.
12469         (my_strftime) [HAVE_TZNAME]: Don't dump core if tp->tm_dst > 1.
12470
12471 2005-03-07  Bruno Haible  <bruno@clisp.org>
12472
12473         * m4/mmap-anon.m4 (MAP_FILE, MAP_FAILED): Remove definitions.
12474
12475 2005-03-07  Bruno Haible  <bruno@clisp.org>
12476
12477         * lib/pagealign_alloc.c (MAP_FILE, MAP_FAILED): Define fallbacks.
12478
12479 2005-03-04  Derek R. Price  <derek@ximbiot.com>
12480
12481         * gnulib-tool (func_cp_if_changed, func_mv_if_changed): New functions.
12482         (func_import): Only replace files via --import when they have actually
12483         changed.
12484
12485 2005-03-03  Derek R. Price  <derek@ximbiot.com>
12486
12487         * m4/mmap-anon.m4: New file.
12488         * m4/pagealign_alloc.m4: New file.
12489
12490 2005-03-03  Derek R. Price  <derek@ximbiot.com>
12491             Bruno Haible  <bruno@clisp.org>
12492
12493         * modules/pagealign_alloc: New file.
12494         * MODULES.html.sh (Memory management functions): Add pagealign_alloc.
12495
12496 2005-03-03  Derek R. Price  <derek@ximbiot.com>
12497             Bruno Haible  <bruno@clisp.org>
12498
12499         * lib/pagealign_alloc.h: New file.
12500         * lib/pagealign_alloc.c: New file.
12501
12502 2005-03-03  Bruno Haible  <bruno@clisp.org>
12503
12504         * m4/inttypes.m4, isc-posix.m4, once-only.m4:
12505         Use an all-permissive copyright notice, recommended by RMS.
12506
12507 2005-03-02  Bruno Haible  <bruno@clisp.org>
12508
12509         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Undo the replacement here. Because
12510         of AIX, the replacement has to be done only after <string.h> is
12511         included, therefore not in config.h. stpncpy.h does the replacement,
12512         and stpncpy.c uses it.
12513
12514 2005-03-02  Bruno Haible  <bruno@clisp.org>
12515
12516         * lib/stpncpy.h (stpncpy): Define as a macro without arguments, so that
12517         stpncpy.c uses it.
12518
12519 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
12520
12521         Remove workaround for bug in Linux kernel 2.6.8 or thereabouts.
12522         The workaround isn't strictly needed for POSIX conformance, and
12523         it's too much of a pain to configure and maintain.  We'll ask
12524         people to fix their kernels instead.
12525         * lib/xnanosleep.c: Don't include gethrxtime.h or xtime.h.
12526         (NANOSLEEP_BUG_WORKAROUND): Remove.
12527         (xnanosleep): Remove the workaround.
12528
12529 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
12530
12531         * modules/gettime (Makefile.am): Remove lib_SOURCES line.
12532         Reported by Derek Price.
12533         (Include): Add "timespec.h".
12534
12535         * modules/xnanosleep (Depends-on): Remove gethrxtime.
12536
12537 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
12538
12539         * m4/xnanosleep.m4 (gl_XNANOSLEEP): Remove configuration attempting
12540         to detect nanosleep bug.
12541
12542 2005-03-01  Bruno Haible  <bruno@clisp.org>
12543
12544         * lib/vasnprintf.c (EOVERFLOW): Define to a fallback if needed.
12545
12546 2005-02-26  Paul Eggert  <eggert@cs.ucla.edu>
12547
12548         * modules/gethrxtime: New file.
12549         * modules/xnanosleep (Files): Add m4/xnanosleep.m4.
12550         (Depends-on): Add gethrxtime.
12551         (configure.ac): Add gl_XNANOSLEEP.
12552         (Makefile.am): Remove lib_SOURCES line.
12553
12554 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
12555
12556         * m4/gethrxtime.m4, m4/xnanosleep.m4: New files.
12557         * m4/gettime.m4 (gl_GETTIME): Check for nanotime.
12558
12559 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
12560
12561         * lib/gethrxtime.h, lib/gethrxtime.c, lib/xtime.h: New files.
12562         * lib/timespec.h (gettime): Return void, since it always
12563         succeeds now.  All uses changed.
12564         * lib/gettime.c (gettime) Likewise.
12565         [HAVE_NANOTIME]: Prefer nanotime.
12566         Assume gettimeofday succeeds, as POSIX requires.
12567         Assime time () succeeds, since other code already does.
12568         * lib/xnanosleep.c: Include xtime.h and gethrxtime.h, not xalloc.h.
12569         (timespec_subtract): Remove.
12570         (NANOSLEEP_BUG_WORKAROUND): New constant.
12571         (xnanosleep): Use gethrxtime rather than gettime; this simplifies
12572         things considerably.  Use it only on GNU/Linux hosts, since the
12573         workaround shouldn't be needed elsewhere.
12574
12575 2005-02-24  Bruno Haible  <bruno@clisp.org>
12576
12577         * modules/gettext (Files): Add m4/glibc2.m4.
12578
12579 2005-02-24  Bruno Haible  <bruno@clisp.org>
12580
12581         * m4/gettext.m4, intdiv0.m4, intmax.m4, inttypes-pri.m4, lcmessage.m4:
12582         * m4/lib-link.m4, lib-prefix.m4, nls.m4, po.m4, printf-posix.m4:
12583         * m4/progtest.m4:
12584         Update from GNU gettext 0.14.2.
12585         * m4/glibc2.m4: New file, from GNU gettext 0.14.2.
12586
12587 2005-02-24  Bruno Haible  <bruno@clisp.org>
12588
12589         * lib/localcharset.c: Update from GNU gettext 0.14.2.
12590         * lib/config.charset: Update from GNU gettext 0.14.2.
12591
12592 2005-02-24  Bruno Haible  <bruno@clisp.org>
12593
12594         * lib/gettext.h: Update from GNU gettext 0.14.2.
12595
12596 2005-02-23  Simon Josefsson  <jas@extundo.com>
12597
12598         * m4/iconvme.m4: New file.
12599
12600 2005-02-23  Jim Meyering  <jim@meyering.net>
12601
12602         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Revert yesteday's
12603         change.
12604         Thanks to Bruno Haible for catching it.
12605
12606 2005-02-22  Simon Josefsson  <jas@extundo.com>
12607
12608         * modules/iconvme: New file.
12609
12610         * MODULES.html.sh: Add iconvme.
12611
12612 2005-02-22  Simon Josefsson  <jas@extundo.com>
12613
12614         * lib/iconvme.h, lib/iconvme.c: New files, from libc.
12615
12616 2005-02-22  Simon Josefsson  <jas@extundo.com>
12617
12618         * config/srclist.txt: Sync iconvme.h, iconvme.c from libc.
12619
12620 2005-02-22  Jim Meyering  <jim@meyering.net>
12621
12622         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Fix typo:
12623         s/ifndef/ifdef/.
12624
12625 2005-02-20  Neil Conway  <neilc@samurai.com>
12626
12627         * lib/xgethostname.c (xgethostname): Check for ENOMEM, which is
12628         returned by OSX/Darwin if the specified buffer is not large
12629         enough for the hostname.
12630
12631 2005-02-03  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
12632
12633         * lib/argp-help.c (__argp_help): Create a fake struct argp_state and
12634         pass it to _help, otherwise the latter coredumps trying to
12635         dereference state.root_argp.
12636
12637 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
12638
12639         * modules/chdir-long (Depends-on): Add memrchr.
12640         * modules/memrchr (Files): Add lib/memrchr.h.
12641         (Include): "memrchr.h".
12642
12643 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
12644
12645         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Add AC_LIBSOURCES, for memrchr.h.
12646
12647 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
12648
12649         * lib/memrchr.h: New file.
12650         * lib/chdir-long.c: Include it.
12651         * lib/memrchr.c [!defined _LIBC]: Include it rather than <string.h>
12652         Don't bother including stddef.h.
12653
12654 2005-02-01  Paul Eggert  <eggert@cs.ucla.edu>
12655
12656         * lib/mountlist.h (MOUNTLIST_H_): New macro, to protect against double
12657         inclusion.
12658         Include <sys/types.h>, for dev_t.
12659         (ME_DUMMY, ME_REMOTE): Move from here....
12660         * lib/mountlist.c (ME_DUMMY, ME_REMOTE): To here.
12661         (ME_DUMMY): Count "subfs" as a dummy.  Problem reported by
12662         Dmitry V. Levin.
12663         Include mountlist.h first, to test the interface.
12664
12665 2005-01-29  Bruno Haible  <bruno@clisp.org>
12666
12667         * lib/progname.c (program_name): Initialize.
12668         Needed when linking statically on MacOS X.
12669
12670 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
12671
12672         Sync from coreutils.
12673         * modules/getloadavg (Files): Remove m4/getloadavg.m4.
12674         (Depends-on): Add c-strtod.
12675         (configure.ac): Replace gl_FUNC_GETLOADAVG with AC_FUNC_GETLOADAVG.
12676
12677 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
12678
12679         Sync from coreutils.
12680         * m4/getloadavg.m4, glibc.m4, search-libs.m4: Remove.
12681
12682         Remove files that are specific to coreutils.
12683         * m4/check-decl.m4, jm-macros.m4, lib-check.m4, prereq.m4: Remove.
12684
12685 2005-01-28  Bruno Haible  <bruno@clisp.org>
12686
12687         * modules/javacomp: New file.
12688         * MODULES.html.sh (Java): Add javacomp.
12689
12690 2005-01-28  Bruno Haible  <bruno@clisp.org>
12691
12692         * m4/javacomp.m4: New file, from GNU gettext.
12693
12694 2005-01-28  Bruno Haible  <bruno@clisp.org>
12695
12696         * lib/javacomp.sh.in: New file, from GNU gettext.
12697         * lib/javacomp.h: New file, from GNU gettext.
12698         * lib/javacomp.c: New file, from GNU gettext.
12699
12700 2005-01-26  Simon Josefsson  <jas@extundo.com>
12701
12702         * lib/gai_strerror.c: Use GPL in header.
12703
12704 2005-01-26  Bruno Haible  <bruno@clisp.org>
12705
12706         * modules/javaexec: New file.
12707         * MODULES.html.sh (Java): Add javaexec.
12708
12709 2005-01-26  Bruno Haible  <bruno@clisp.org>
12710
12711         * m4/javaexec.m4: New file, from GNU gettext.
12712
12713 2005-01-26  Bruno Haible  <bruno@clisp.org>
12714
12715         * lib/javaexec.sh.in: New file, from GNU gettext.
12716         * lib/javaexec.h: New file, from GNU gettext.
12717         * lib/javaexec.c: New file, from GNU gettext.
12718
12719 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
12720
12721         * modules/lchown (Depends-on): Remove lchown.h
12722
12723 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
12724
12725         * m4/sysexits.m4 (gl_SYSEXITS): Reverted logic. SYSEXITS_H
12726         must be defined if the header file was not found, in order
12727         to provide a replacement. Reported by Todd Vierling <tv@duh.org>
12728
12729 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
12730
12731         * lib/argp-help.c (hol_entry_help): Avoid using non-constant
12732         initializers for struct pentry_state.
12733         (__argp_error): Check return value of __asprintf
12734         (__argp_failure): Translate error message
12735
12736         * lib/argp-parse.c: Removed braces around the expansion of N_()
12737
12738 2005-01-23  Paul Eggert  <eggert@cs.ucla.edu>
12739
12740         * m4/acl.m4, afs.m4, alloca.m4, argp.m4, assert.m4, atexit.m4,
12741         backupfile.m4, base64.m4, bison.m4, c-bs-a.m4, c-stack.m4,
12742         c-strtod.m4, calloc.m4, canon-host.m4, canonicalize.m4,
12743         clock_time.m4, cloexec.m4, closeout.m4, d-ino.m4, d-type.m4,
12744         dirfd.m4, dirname.m4, dos.m4, dup2.m4, error.m4, euidaccess.m4,
12745         exclude.m4, exitfail.m4, extensions.m4, fcntl-safer.m4,
12746         file-type.m4, fileblocks.m4, filemode.m4, fnmatch.m4, fpending.m4,
12747         free.m4, fstypename.m4, fsusage.m4, ftruncate.m4, getaddrinfo.m4,
12748         getcwd-path-max.m4, getcwd.m4, getdate.m4, getdomainname.m4,
12749         getgroups.m4, gethostname.m4, getline.m4, getndelim2.m4,
12750         getnline.m4, getopt.m4, getpagesize.m4, getpass.m4, getsubopt.m4,
12751         gettime.m4, gettimeofday.m4, getugroups.m4, getusershell.m4,
12752         group-member.m4, hard-locale.m4, hash.m4, host-os.m4, human.m4,
12753         idcache.m4, inttostr.m4, isdir.m4, jm-winsz1.m4, jm-winsz2.m4,
12754         link-follow.m4, long-options.m4, ls-mntd-fs.m4, lstat.m4,
12755         makepath.m4, mathl.m4, md5.m4, memcasecmp.m4, memchr.m4,
12756         memcmp.m4, memcoll.m4, memcpy.m4, memmem.m4, memmove.m4,
12757         memrchr.m4, memset.m4, mkdir-slash.m4, mkstemp.m4, mktime.m4,
12758         modechange.m4, mountlist.m4, nanosleep.m4, obstack.m4,
12759         path-concat.m4, pathmax.m4, perl.m4, physmem.m4, poll.m4,
12760         posixtm.m4, posixver.m4, putenv.m4, quote.m4, quotearg.m4,
12761         readdir.m4, readtokens.m4, readutmp.m4, regex.m4, rename.m4,
12762         restrict.m4, rmdir-errno.m4, rmdir.m4, rpmatch.m4, same.m4,
12763         savedir.m4, settime.m4, sha1.m4, sig2str.m4, snprintf.m4,
12764         sockpfaf.m4, st_dm_mode.m4, st_mtim.m4, stat.m4, stdint.m4,
12765         stdio-safer.m4, strchrnul.m4, strdup.m4, strerror.m4,
12766         strerror_r.m4, strftime.m4, strndup.m4, strnlen.m4, strsep.m4,
12767         strtod.m4, strtoimax.m4, strtok_r.m4, strtol.m4, strtoll.m4,
12768         strtoul.m4, strtoull.m4, strtoumax.m4, strverscmp.m4, sysexits.m4,
12769         time_r.m4, timegm.m4, timespec.m4, tm_gmtoff.m4, tzset.m4,
12770         uint32_t.m4, uintptr_t.m4, unistd-safer.m4, unlink-busy.m4,
12771         unlocked-io.m4, uptime.m4, userspec.m4, utimbuf.m4, utime.m4,
12772         utimecmp.m4, utimens.m4, utimes-null.m4, vsnprintf.m4, xalloc.m4,
12773         xgetcwd.m4, xreadlink.m4, xstrndup.m4, xstrtod.m4, xstrtoimax.m4,
12774         xstrtol.m4, xstrtoumax.m4, yesno.m4:
12775         Use an all-permissive copyright notice, recommended by RMS.
12776
12777 2005-01-21  Paul Eggert  <eggert@cs.ucla.edu>
12778
12779         * modules/chdir-long (Depends-on): Remove mempcpy.
12780
12781 2005-01-21  Jim Meyering  <jim@meyering.net>
12782
12783         * lib/openat.h (AT_SYMLINK_NOFOLLOW): Define to 4096, so it's the
12784         same value as for Solaris 9.
12785
12786         * lib/chdir-long.c (chdir_long): Rewrite to remove limitation on
12787         component length.  This included changing the parameter to be
12788         of type `char *' rather than `char const *'.
12789         * lib/chdir-long.h (chdir_long): Update prototype.
12790
12791         * lib/openat.c (fdopendir, fstatat): New functions.
12792         * lib/openat.h: Include headers required for use of DIR and struct
12793         stat.
12794         [AT_SYMLINK_NOFOLLOW]: Define.
12795         (fdopendir, fstatat): Add prototypes.
12796
12797 2005-01-21  Bruno Haible  <bruno@clisp.org>
12798
12799         * modules/classpath: New file.
12800         * MODULES.html.sh (Java): Add classpath.
12801
12802 2005-01-21  Bruno Haible  <bruno@clisp.org>
12803
12804         * lib/classpath.h: New file, from GNU gettext.
12805         * lib/classpath.c: New file, from GNU gettext.
12806
12807 2005-01-20  Simon Josefsson  <jas@extundo.com>
12808
12809         * modules/version-etc-fsf: New file.
12810
12811 2005-01-20  Simon Josefsson  <jas@extundo.com>
12812
12813         * lib/version-etc-fsf.c: New file, with version_etc_copyright.
12814         * lib/version-etc.c: Remove version_etc_copyright.
12815         * lib/version-etc.h (version_etc_copyright): Use [] instead of * in
12816         prototype, suggested by Paul Eggert <eggert@CS.UCLA.EDU>.
12817
12818 2005-01-20  Simon Josefsson  <jas@extundo.com>
12819
12820         * lib/base64.h (isbase64): Add.
12821
12822         * lib/base64.c (isb64): Rename to isbase64, use to_uchar instead of
12823         using a unsigned prototype, don't inline.
12824         (base64_decode): Use it.
12825
12826 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
12827
12828         * m4/save-cwd.m4 (gl_SAVE_CWD): Remove check for fcntl; we now assume
12829         it.
12830
12831 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
12832
12833         * lib/save-cwd.c (save_cwd): Remove code to support the case
12834         where fchdir is missing or flaky.
12835
12836 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
12837
12838         * MODULES.html.sh (Command-line arguments): Add version-etc-fsf.
12839
12840 2005-01-19  Paul Eggert  <eggert@cs.ucla.edu>
12841
12842         * modules/mempcpy (Makefile.am): Remove mention of mempcpy.h;
12843         AC_LIBSOURCES now does this.
12844         * MODULES.html.sh (Sizes of integer types <limits.h>): New element,
12845         with new ullong_max module.
12846
12847 2005-01-19  Bruno Haible  <bruno@clisp.org>
12848
12849         * modules/sh-quote: New file.
12850         * MODULES.html.sh (Executing programs): Add sh-quote.
12851
12852 2005-01-19  Bruno Haible  <bruno@clisp.org>
12853
12854         * lib/sh-quote.h: New file, from GNU gettext.
12855         * lib/sh-quote.c: New file, from GNU gettext.
12856
12857 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
12858
12859         Merge from coreutils.
12860         * m4/ullong_max.m4: New file.
12861         * m4/jm-macros.m4 (gl_MACROS): Require gl_ULLONG_MAX.
12862         (gl_MACROS): Assume localeconv exists.
12863
12864 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
12865
12866         Merge changes from coreutils, as described below in several
12867         changelogs dated today.
12868
12869         * lib/save-cwd.c: Include "save-cwd.h" before other include files.
12870         (O_DIRECTORY): Remove; not needed here, since "." must be
12871         a directory.  All uses removed.
12872         (save_cwd): Use __sgi || __sun, not sun || __sun.  __sun is
12873         universal on Suns, and we also need to test for IRIX.
12874         Revamp code to use 'if' rather than '#if'.
12875         Avoid unnecessary comparison of cwd->desc to 0.
12876
12877         * lib/utimens.c (futimens): Robustify the previous patch, by checking
12878         for known valid error numbers rather than observed invalid ones.
12879
12880 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
12881
12882         * modules/ullong_max: New file.
12883
12884         * modules/chdir-long, modules/openat: New files.
12885         * modules/save-cwd (Depends-on): Depend on chdir-long.
12886         (Makefile.am): Remove lib_SOURCES; now handled by AC_LIBSOURCES.
12887
12888 2005-01-18  Jim Meyering  <jim@meyering.net>
12889
12890         Merge from coreutils.
12891         * m4/chdir-long.m4, m4/openat.m4: New files.
12892         * m4/save-cwd.m4 (gl_SAVE_CWD): Add AC_LIBSOURCES for save-cwd.c,
12893         save-cwd.h.  Add AC_LIBOBJ for save-cwd.
12894         * m4/chown.m4 (gl_FUNC_CHOWN): When cross-compiling, assume that chown
12895         is sane and DOES follow symlinks.  Besides, testing 20 different
12896         systems found no broken chown implementations.
12897         Prompted by a change in rsync's copy of this macro.
12898         * m4/jm-macros.m4 (gl_MACROS): Require gl_FUNC_CHDIR_LONG.
12899
12900         * m4/lchown.m4 (gl_FUNC_LCHOWN): Use AC_LIBSOURCES.
12901
12902         * m4/utimes.m4: Work around tests/touch/empty-file failure on a system
12903         (sparc64, Linux-2.4.28, glibc-2.3.3) that didn't honor utimes'
12904         NULL-means-set-to-current-time semantics.
12905         Remove temporary file immediately, rather than waiting
12906         for configure's at-exit trap code to do it.
12907
12908 2005-01-18  Jim Meyering  <jim@meyering.net>
12909
12910         * lib/version-etc.c (version_etc_copyright): Update copyright date.
12911
12912         * lib/utimens.c (futimens): Account for the fact that futimes
12913         can also fail with errno == ENOSYS or errno == ENOENT.
12914         Patch from Dmitry V. Levin.
12915
12916         Change the name of the robust chdir function from chdir to chdir_long.
12917         * lib/save-cwd.c: Include chdir-long.h rather than chdir.h.
12918         (restore_cwd): Use chdir_long, not chdir.
12919         * lib/chdir-long.c: Renamed from chdir.c.
12920         * lib/chdir-long.h: Renamed from chdir.h.
12921         [!defined PATH_MAX]: Define chdir_long to chdir on systems like the
12922         Hurd.
12923
12924 2005-01-18  Bruno Haible  <bruno@clisp.org>
12925
12926         * m4/allocsa.m4, m4/codeset.m4, m4/copy-file.m4, m4/eaccess.m4:
12927         * m4/eealloc.m4, m4/eoverflow.m4, m4/execute.m4, m4/fatal-signal.m4:
12928         * m4/findprog.m4, m4/glibc21.m4, m4/iconv.m4, m4/intmax_t.m4:
12929         * m4/inttypes_h.m4, m4/lib-ld.m4, m4/lib-link.m4, m4/lib-prefix.m4:
12930         * m4/linebreak.m4, m4/localcharset.m4, m4/longdouble.m4:
12931         * m4/longlong.m4, m4/mbrtowc.m4, m4/mbstate_t.m4, m4/mbswidth.m4:
12932         * m4/mkdtemp.m4, m4/pipe.m4, m4/readlink.m4, m4/safe-read.m4:
12933         * m4/safe-write.m4, m4/setenv.m4, m4/sig_atomic_t.m4:
12934         * m4/signalblocking.m4, m4/signed.m4, m4/size_max.m4, m4/ssize_t.m4:
12935         * m4/stdbool.m4, m4/stdint_h.m4, m4/stpcpy.m4, m4/stpncpy.m4:
12936         * m4/strcase.m4, m4/strcspn.m4, m4/strpbrk.m4, m4/strstr.m4:
12937         * m4/ucs4-utf.m4, m4/uintmax_t.m4, m4/ulonglong.m4, m4/unicodeio.m4:
12938         * m4/utf-ucs4.m4, m4/vasnprintf.m4, m4/vasprintf.m4:
12939         * m4/wait-process.m4, m4/wchar_t.m4, m4/wint_t.m4, m4/xsize.m4:
12940         Use an all-permissive copyright notice, recommended by RMS.
12941
12942 2005-01-18  Bob Proulx  <bob@proulx.com>
12943
12944         * lib/obstack.c [DEFAULT_ALIGNMENT]: Use an intermediate type to
12945         simplify offsetof() macro construct to avoid compile failure with
12946         native HP-UX 11.0 ANSI C compiler.
12947
12948 2005-01-17  Bruno Haible  <bruno@clisp.org>
12949
12950         * lib/stpncpy.c: Remove HAVE_STPNCPY and gnu_stpncpy renaming,
12951         redundant because stpncpy.m4 takes care of it.
12952
12953 2005-01-17  Bruno Haible  <bruno@clisp.org>
12954
12955         * lib/progreloc.c: Include xalloc.h instead of xmalloc.h.
12956
12957 2005-01-17  Bruno Haible  <bruno@clisp.org>
12958
12959         * lib/progreloc.c (xstrdup): Define as strdup if no xmalloc should be
12960         used.
12961
12962 2005-01-17  Bruno Haible  <bruno@clisp.org>
12963
12964         * lib/fwriteerror.h (fwriteerror): Change specification to include
12965         fclose.
12966         * lib/fwriteerror.c: Include <stdbool.h>.
12967         (fwriteerror): At the end, close the file stream. Record whether
12968         stdout was already closed.
12969
12970 2005-01-17  Bruno Haible  <bruno@clisp.org>
12971
12972         * lib/execute.c (environ): Declare if needed.
12973         * lib/pipe.c (environ): Likewise.
12974         Reported by Michael Schloh von Bennewitz <michael.schloh@cw.com>.
12975
12976 2005-01-11  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
12977
12978         * modules/argp: Depend on vsnprintf
12979
12980 2005-01-10  Jim Meyering  <jim@meyering.net>
12981
12982         * modules/closeout (Depends-on): Add atexit.
12983
12984 2005-01-06  Bruno Haible  <bruno@clisp.org>
12985
12986         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Rename stpncpy to gnu_stpncpy here.
12987
12988 2005-01-04  Paul Eggert  <eggert@cs.ucla.edu>
12989
12990         * lib/human.c (SIZE_MAX, UINTMAX_MAX): Move these conditional
12991         definitions to be after all include files, to avoid collisions.
12992         Problem reported by Bob Proulx.
12993
12994 2005-01-04  Jim Meyering  <jim@meyering.net>
12995
12996         Changes imported from coreutils.
12997         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Rather than using "conftestXXXXXX"
12998         as the mkstemp template, use a temporary directory and an
12999         8.3-friendly template to avoid trouble on systems like DJGPP.
13000         Reported by Juan M. Guerrero via Stepan Kasal.
13001         * m4/(gl_FUNC_MKSTEMP): Include <unistd.h> for the declaration of
13002         close. Remove the temporary directory right away, rather than waiting
13003         for configure's at-exit trap code to do it.
13004         Suggestion from Stepan Kasal.
13005
13006 2005-01-01  Simon Josefsson  <jas@extundo.com>
13007
13008         * gnulib-tool: Print #include directives when --import'ing.
13009
13010 2004-12-28  Simon Josefsson  <jas@extundo.com>
13011
13012         * tests/test-base64.c: Include required header files.  Remove
13013         unused variables.
13014
13015 2004-12-28  Paul Eggert  <eggert@cs.ucla.edu>
13016
13017         * modules/error (Depends-on): Remove gettext.
13018
13019 2004-12-28  Paul Eggert  <eggert@cs.ucla.edu>
13020
13021         * lib/error.c [!_LIBC && !ENABLE_NLS]: Do not include "gettext.h";
13022         not needed.  This removes a dependency on the gettext module.
13023         [defined _LIBC]: Do not include <libintl.h>; not needed.
13024
13025 2004-12-24  Paul Eggert  <eggert@cs.ucla.edu>
13026
13027         * m4/c-strtod.m4 (gl_C99_STRTOLD): New macro.
13028         (gl_C_STRTOD): Use it instead of AC_CHECK_DECLS_ONCE(strtold).
13029
13030 2004-12-24  Paul Eggert  <eggert@cs.ucla.edu>
13031
13032         * lib/c-strtod.c (STRTOD): Depend on HAVE_C99_STRTOLD, not
13033         HAVE_DECL_STRTOLD.
13034
13035 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
13036
13037         * modules/getdate (Depends-on): Remove alloca-opt.
13038
13039 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
13040
13041         * m4/getdate.m4 (gl_GETDATE): Remove AC_FUNC_ALLOCA.
13042
13043 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
13044
13045         * lib/argp-parse.c: Include <stddef.h>.
13046         (alignof, alignto): New macros.
13047         (parser_init): Don't assume that void * is aligned sufficiently
13048         for struct option.
13049
13050         * lib/getdate.y (YYSTACK_USE_ALLOCA): Define to 0, since there's no
13051         need to extend the stack.
13052         (YYINITDEPTH): New macro, so that the initial stack isn't overly
13053         large.
13054
13055 2004-12-22  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
13056
13057         * lib/argp-parse.c (parser_init): Avoid arithmetics on void pointers.
13058
13059 2004-12-19  Paul Eggert  <eggert@cs.ucla.edu>
13060
13061         * modules/regex (lib_SOURCES): Remove regex.c, undoing previous
13062         (2004-10-24) change.  Apparently this was a false alarm.
13063
13064         * modules/getdate: Depend on alloca-opt, not alloca.
13065
13066 2004-12-19  Paul Eggert  <eggert@cs.ucla.edu>
13067
13068         * lib/alloca_.h: Conditionalize on _GNULIB_ALLOCA_H, not _ALLOCA_H.
13069         Remove now-obsolete comment about AIX.
13070         * lib/getdate.y: Include <alloca.h> only if HAVE_ALLOCA.
13071         (YYSTACK_USE_ALLOCA): Define to 0 if !HAVE_ALLOCA.
13072         (YYMAXDEPTH): New macro.
13073
13074 2004-12-18  Simon Josefsson  <jas@extundo.com>
13075
13076         * modules/alloca: Depend on alloca-opt, instead of duplicating it.
13077
13078 2004-12-18  Bruno Haible  <bruno@clisp.org>
13079
13080         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Also test for sigaction.
13081
13082 2004-12-18  Bruno Haible  <bruno@clisp.org>
13083
13084         * lib/fatal-signal.c (fatal_signals): Make non-const.
13085         (init_fatal_signals): New function.
13086         (uninstall_handlers, install_handlers): Ignore signals that were set to
13087         SIG_IGN.
13088         (at_fatal_signal): Call init_fatal_signals.
13089         (init_fatal_signal_set): Likewise. Ignore signals that were set to
13090         SIG_IGN.
13091         Reported by Paul Eggert.
13092
13093 2004-12-18  Bruno Haible  <bruno@clisp.org>
13094
13095         * doc/alloca.texi: New file.
13096         * doc/alloca-opt.texi: New file.
13097
13098 2004-12-17  Jim Meyering  <jim@meyering.net>
13099
13100         * config/install-sh: Use `(exit N); exit N', not `(exit N); exit'.
13101         Otherwise, install-sh could exit with improper exit status when
13102         exiting via a trapped interrupt.  Thanks to a report from Bob Proulx.
13103
13104 2004-12-16  Simon Josefsson  <jas@extundo.com>
13105
13106         * tests/test-base64.c: Add license.
13107
13108 2004-12-15  Stepan Kasal  <address@hidden>
13109
13110         * gnulib-tool (func_emit_lib_Makefile_am): Shorten a long sed command.
13111
13112 2004-12-12  Paul Eggert  <eggert@cs.ucla.edu>
13113
13114         * modules/getcwd (Files): Add m4/d-ino.m4.
13115         Suggested by Mark D. Baushke.
13116
13117 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
13118
13119         * lib/getdate.y (textint): New member "negative".
13120         (time_zone_hhmm): New function.
13121         Expect 14 shift-reduce conflicts, not 13.
13122         (o_colon_minutes): New rule.
13123         (time, zone): Use it to add support for +HH:MM, UTC+HH:MM.
13124         (yylex): Set the "negative" member of signed numbers.
13125
13126 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
13127
13128         * doc/getdate.texi (Time of day items, Time zone items):
13129         Describe new formats +00:00, UTC+00:00.
13130
13131 2004-12-07  Paul Eggert  <eggert@cs.ucla.edu>
13132
13133         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Fix typo in previous change:
13134         spurious "-l"s.  Problem reported by Stepan Kasal.
13135
13136 2004-12-06  Paul Eggert  <eggert@cs.ucla.edu>
13137
13138         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): New macro, to work around bug
13139         in Autoconf 2.59.  Problem reported by Mark D. Baushke.
13140
13141 2004-12-04  Simon Josefsson  <jas@extundo.com>
13142
13143         * modules/getaddrinfo (License): Add LGPL, reported by Yoann
13144         Vandoorselaere <yoann@prelude-ids.org>.
13145
13146 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
13147
13148         Changes imported from coreutils.
13149         * m4/hard-locale.m4 (gl_HARD_LOCALE): Assume locale.h and setlocale
13150         exist.
13151         * m4/human.m4 (gl_HUMAN): Assume locale.h and localeconv exist.
13152
13153 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
13154
13155         Changes imported from coreutils.
13156         * lib/hard-locale.c: Assume <locale.h> exists.
13157         Include "strdup.h".
13158         (GLIBC_VERSION): New macro.
13159         (hard_locale): Assume setlocale exists.
13160         Rewrite to avoid #ifdef.
13161         Use strdup rather than malloc + strcpy.
13162         * lib/human.c: Assume <locale.h> exists.
13163         (human_readable): Assume localeconv exists.
13164
13165 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
13166
13167         * modules/hard-locale (Depends-on): Add strdup.
13168
13169 2004-12-01  Jakub Jelinek  <jakub@redhat.com>
13170
13171         * lib/mktime.c (__mktime_internal): If SEC_REQUESTED != SEC,
13172         convert T2, not T.  (Imported from libc.)
13173
13174 2004-11-30  Simon Josefsson  <jas@extundo.com>
13175
13176         * modules/restrict (License): Change to LGPL.
13177
13178 2004-11-30  Simon Josefsson  <jas@extundo.com>
13179
13180         * m4/restrict.m4: Add copyright and copying conditions.
13181
13182 2004-11-30  Simon Josefsson  <jas@extundo.com>
13183
13184         * m4/base64.m4: New file.
13185
13186 2004-11-30  Simon Josefsson  <jas@extundo.com>
13187
13188         * MODULES.html.sh (Extra functions based on ANSI C 89): Add
13189         base64.
13190
13191         * tests/test-base64.c: New file.
13192
13193         * modules/base64: New file.
13194
13195 2004-11-30  Paul Eggert  <eggert@cs.ucla.edu>
13196
13197         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX):
13198         Define HAVE_PARTLY_WORKING_GETCWD if getcwd is partly working.
13199
13200         * m4/readutmp.m4 (gl_READUTMP): Don't check for sys/param.h.
13201
13202 2004-11-30  Paul Eggert  <eggert@cs.ucla.edu>
13203
13204         * lib/getcwd.c (is_ENAMETOOLONG): New macro.
13205         (__getcwd.c): Don't restore errno; glibc doesn't.
13206         [HAVE_PARTLY_WORKING_GETCWD && !defined AT_FDCWD]: Try system getcwd
13207         first, falling back to our code only if its results look suspicious.
13208         Ensure that the resulting buffer is only as large as necessary.
13209
13210         * lib/readutmp.c: Include readutmp.h first.
13211         Include <errno.h>, since readutmp.h no longer does that.
13212         * lib/readutmp.h: Don't include <errno.h>,
13213         <sys/param.h>, <time.h>; not needed to establish interface.
13214         (errno): Remove decl.
13215         (HAVE_STRUCT_XTMP_UT_TYPE): Remove; no longer needed.
13216         (UT_TYPE_EQ, UT_TYPE_NOT_DEFINED, UT_TYPE_BOOT_TIME,
13217         UT_TYPE_USER_PROCESS, IS_USER_PROCESS): New macros.
13218
13219 2004-11-28  Simon Josefsson  <jas@extundo.com>
13220
13221         * lib/base64.h, base64.c: New file.
13222
13223 2004-11-27  Paul Eggert  <eggert@cs.ucla.edu>
13224
13225         * lib/getcwd.h: New file, which I forgot to check in on 2004-11-25.
13226
13227 2004-11-26  Paul Eggert  <eggert@cs.ucla.edu>
13228
13229         * modules/getcwd (Files): Add lib/getcwd.h, m4/getcwd.m4.
13230         (Depends-on): Remove pathmax, same.  Add mempcpy.
13231         (configure.ac): GL_FUNC_GETCWD_PATH_MAX -> gl_FUNC_GETCWD.
13232         (Makefile.am): Append getcwd.h to lib_SOURCES.
13233         (Include): Add getcwd.h.
13234         (Maintainer): Change from Jim Meyering to "all, glibc",
13235         since getdate now uses intended-for-glibc code.
13236         * modules/xgetcwd (Files): Remove m4/getcwd.m4.
13237         (Depends-on): Depend on getcwd.  Do not depend on pathmax.
13238
13239 2004-11-25  Paul Eggert  <eggert@cs.ucla.edu>
13240
13241         Fix problems reported by Scott S. Tinsley for HP-UX 11.11 using
13242         HP's ANSI C compiler.
13243         * lib/fsusage.c (statvfs) [HAVE_SYS_STATVFS_H]: Remove decl.
13244         Declaring int functions causes warnings on some modern systems and
13245         shouldn't be needed to compile on ancient ones.
13246         * lib/same.c (MIN) [defined MIN]: Don't define, since it's already
13247         defined.
13248
13249         * lib/getcwd.c: Replace by a copy of glibc/sysdeps/posix/getcwd.c, but
13250         with the following changes.
13251         (__set_errno): Parenthesize properly.
13252         Include <stdbool.h>.
13253         (MIN, MAX, MATCHING_INO): New macros.
13254         (__getcwd): Define with prototype, not K&R form.
13255         Use heuristics to allocate default buffer on stack if possible.
13256         If AT_FDCWD is defined, use openat and fstatat to avoid O(N**2)
13257         behavior, and to avoid the PATH_MAX limit when computing
13258         ../../../../...
13259         Use MATCHING_INO to compare inode number to file.
13260         Check for arithmetic overflow in size calculations.
13261         Fix bug in reallocation of dot array that caused getcwd to fail
13262         on directories nested deeper than 75.
13263         Be more careful about saving errno on error.
13264         Do not use realloc; use only free+malloc, as this is a bit
13265         more flexible and avoids a needless copy operation.
13266         Do not inspect st_dev and st_ino for symbolic links; POSIX
13267         doesn't specify the latter.
13268         Check for closedir errors.
13269         Avoid needless casts.
13270         Use "#ifdef weak_alias" around weak_alias, to be like other
13271         glibc code.
13272         The following changes to getcwd.c have effect only when used in
13273         gnulib; they have no effect inside glibc proper.
13274         (#pragma alloca) [defined _AIX && !defined __GNUC__]: Remove,
13275         as alloca isn't used.
13276         (alloca, __alloca): Likewise.
13277         [!_LIBC]: Include "getcwd.h", "mempcpy.h".
13278         Include <stddef.h>, <stdlib.h>, <string.h>, <limits.h>
13279         unconditionally, as gnulib assumes C89 or better.
13280         Do not include <sys/param.h>.
13281         (errno) [!defined __GNU_LIBRARY__ && !defined STDC_HEADERS]: Remove
13282         no-longer-necessary 'extern int errno' decl; gnulib assumes C89 or
13283         better.
13284         (NULL) [!defined NULL]: Remove; we assume C89 or better.
13285         Include <dirent.h> in a way that is compatible with modern Autoconf.
13286         (_D_ALLOC_NAMELEN, _D_EXACT_NAMLEN):
13287         New macros, if not already defined.
13288         Include <unistd.h> if _LIBC, not if __GNU_LIBRARY__.
13289         Use "_LIBC", not "defined _LIBC", for consistency.
13290         (HAVE_MEMPCPY): Remove; no longer needed now that gnulib has
13291         a mempcpy module.
13292         (__lstat, __closedir, __opendir, __readdir) [!_LIBC]: New macros.
13293         (GETCWD_RETURN_TYPE): Remove.  All uses replaced by char *.
13294         * lib/xgetcwd.c: David MacKenzie's old code was removed, so give
13295         credit only to Jim Meyering and adjust the copyright dates.
13296         Do not include <limits.h>, <stdio.h>, <sys/types.h>,
13297         <stdlib.h>, <unistd.h>, "pathmax.h".
13298         Instead, include "xgetcwd.h" (first) and "getcwd.h".
13299         (INITIAL_BUFFER_SIZE): Remove.
13300         (xgetcwd): Rely on getcwd, since we now depend on a reliable one.
13301
13302 2004-11-25  Paul Eggert  <eggert@cs.ucla.edu>
13303
13304         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Renamed from
13305         GL_FUNC_GETCWD_PATH_MAX for consistency.  All uses changed.
13306         Use the _ONCE methods, for efficiency.
13307         Check for fcntl.h.  In test program, include <errno.h>
13308         and <fcntl.h> if available.  Remove old K&R cruft from
13309         test program.  Check for common errors in GNU/Linux,
13310         OpenBSD, and Solaris.  Just set gl_cv_func_getcwd_path_max;
13311         don't do AC_LIBOBJ, as that's getcwd.m4's job.
13312         * m4/getcwd.m4 (gl_FUNC_GETCWD_NULL): Renamed from
13313         AC_FUNC_GETCWD_NULL.  All used changed.  Change cache variable
13314         name accordingly.
13315         (gl_FUNC_GETCWD, gl_PREREQ_GETCWD): New macros.  Revamp to
13316         accommodate new getcwd.c.
13317         * m4/jm-macros.m4 (gl_MACROS): Don't require GL_FUNC_GETCWD_PATH_MAX.
13318         * m4/prereq.m4 (gl_PREREQ): Add gl_FUNC_MEMPCPY.
13319         * m4/xgetcwd.m4 (gl_XGETCWD): Replace with gl_FUNC_GETCWD, since
13320         that's all we need now.
13321
13322 2004-11-23  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
13323
13324         * m4/argp.m4 (gl_ARGP): Require gl_GETOPT_SUBSTITUTE unconditionally:
13325         argp-parse.c depends on getopt internals, that means we should
13326         always use our getopt, to be on the safe side.
13327         * m4/getopt.m4 (gl_GETOPT): Check if GETOPT_H is already set, in
13328         order not to spoil the result of an eventual previous invocation
13329         of gl_GETOPT_SUBSTITUTE.
13330
13331 2004-11-23  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
13332
13333         * lib/getopt_.h: Re-addition of __getopt_argv_const caused
13334         redefinition warnings. To avoid them, include the defines
13335         in `#if !defined __need_getopt ... #endif'. The only place
13336         where __getopt_argv_const is used is in definitions
13337         of getopt_long and getopt_long_only below, which are as well
13338         protected by `#ifndef __need_getopt'.
13339         [defined __GETOPT_PREFIX && !defined __need_getopt]: Undef
13340         __need_getopt after including <stdio.h> and <unistd.h> These
13341         headers might have defined it.
13342
13343 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
13344
13345         * m4/utimens.m4 (gl_UTIMENS): Check for futimes function.
13346
13347 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
13348
13349         * lib/utimens.c (__attribute__, ATTRIBUTE_UNUSED): New macros.
13350         (futimens): New function, which uses futimes if available.
13351         (futimens, utimens): Support timespec==NULL, with same semantics
13352         as utime and utimens.
13353         * lib/utimens.h (futimens): New decl.
13354
13355 2004-11-23  Jim Meyering  <jim@meyering.net>
13356
13357         * lib/getopt_.h: Remove trailing blanks.
13358
13359 2004-11-23  Jim Meyering  <jim@meyering.net>
13360
13361         * lib/__fpending.c: Add comment.
13362
13363 2004-11-22  Paul Eggert  <eggert@cs.ucla.edu>
13364
13365         * modules/canonicalize (Depends-on): Add xreadlink.
13366         Problem reported by James Youngman.
13367
13368 2004-11-20  Paul Eggert  <eggert@cs.ucla.edu>
13369
13370         * lib/getopt_.h (__GETOPT_CONCAT, __GETOPT_XCONCAT, __GETOPT_ID):
13371         New macros.
13372         (getopt, getopt_long, getopt_long_only, optarg, opterr, optind,
13373         optopt): Use them instead of invoking ## directly; otherwise, the
13374         symbols will be __GETOPT_PREFIXgetopt rather than rpl_getopt.
13375
13376 2004-11-19  Bruno Haible  <bruno@clisp.org>
13377
13378         * lib/strtok_r.c: Move comments from here...
13379         * lib/strtok_r.h: ... to here.
13380
13381 2004-11-17  Paul Eggert  <eggert@cs.ucla.edu>
13382
13383         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Check for buggy calloc
13384         implementations that mishandle size_t overflow.
13385
13386 2004-11-17  Paul Eggert  <eggert@cs.ucla.edu>
13387
13388         * lib/realloc.c (rpl_realloc): Call 'free' if n==0, since realloc
13389         might fail.  Problem reported by Yoann Vandoorselaere.
13390         * lib/calloc.c (rpl_calloc): Defend against buggy calloc
13391         implementations that mishandle size_t overflow.
13392
13393 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
13394
13395         * modules/canon-host (Depends-on): Add strdup.
13396
13397 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
13398
13399         * m4/canon-host.m4 (gl_CANON_HOST): Check for getaddrinfo.
13400
13401 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
13402
13403         * lib/canon-host.c: Include "strdup.h".
13404         (canon_host): Use getaddrinfo if available, so that IPv6 works.
13405         Use strdup instead of malloc/strcpy to duplicate strings.
13406
13407         * lib/human.h (LONGEST_HUMAN_READABLE): Add 1 for space before unit.
13408         (human_space_before_unit): New constant.
13409         * lib/human.c (human_readable): Support it.
13410
13411         * lib/xgetcwd.c: Include <limits.h>, for PATH_MAX.
13412         (xgetcwd): Set errno correctly when failing.
13413         Work around Solaris 9 bug: getcwd sets errno==ERANGE even though
13414         the failure is actually due to a PATH_MAX problem.
13415
13416         Further getopt changes to make it more likely that glibc will
13417         buy the changes back.
13418         * lib/getopt.c (POSIXLY_CORRECT): New constant.
13419         (getopt): Use it, so to preserve glibc semantic
13420         * lib/getopt1.c (getopt_long, getopt_long_only): Arg is char * const *
13421         when compiling for libc.
13422         * lib/getopt_.h (__getopt_argv_const): Bring it back.
13423         (getopt_long, getopt_long_only): Use it.
13424
13425         * lib/getopt.c (_getopt_initialize, _getopt_internal_r,
13426         _getopt_internal): New arg POSIXLY_CORRECT.  All callers changed.
13427         (getopt): Argv is now char * const *, as per standard.
13428         (_getopt_internal_r, _getopt_internal): Argv is now char **,
13429         not char *__getopt_argv_const *.
13430         * lib/getopt1.c (getopt_long, _getopt_long_r, getopt_long_only,
13431         _getopt_long_only_r): Likewise.
13432         * lib/getopt_.h (getopt, getopt_long, geopt_long_only): Likewise.
13433         * lib/getopt_int.h (_getopt_internal, _getopt_internal_r,
13434         _getopt_long_r, _getopt_long_only_r): Likewise.
13435         * lib/getopt_.h (__getopt_argv_const): Remove.
13436         (getopt): Argv is now char * const *, as per standard.
13437
13438         * lib/getdate.y (tORDINAL): New token.
13439         (day, relunit): Allow it for relative times.
13440         (relative_time_table): Use tORDINAL for ordinals.
13441
13442 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
13443
13444         * doc/getdate.texi (General date syntax): "next" is 1, not 2.
13445         Document that "second" isn't allowed as an ordinal number.
13446
13447 2004-11-16  Jim Meyering  <jim@meyering.net>
13448
13449         * modules/closeout (Depends-on): Add fpending.
13450
13451 2004-11-15  Jim Meyering  <jim@meyering.net>
13452
13453         * lib/closeout.c: Include "__fpending.h" once again.
13454         Include <stdbool.h>.
13455         (close_stdout): Don't fail just because stdout was closed initially,
13456         since some programs don't write to stdout in the normal course of
13457         operation (other than --version and --help), and we don't want this
13458         function to make e.g. `touch file >&-' fail.
13459         But do fail if it was closed and someone has tried to write to it.
13460         E.g., `printf foo >&-' must fail.
13461
13462 2004-11-13  Jim Meyering  <jim@meyering.net>
13463
13464         * m4/jm-macros.m4: Do require gl_FUNC_FPENDING.
13465
13466 2004-11-12  Simon Josefsson  <jas@extundo.com>
13467
13468         * config/srclist.txt: Add strtok_r.c, glibc bought our changes, but a
13469         small doc fix is still pending.
13470
13471 2004-11-11  Simon Josefsson  <jas@extundo.com>
13472
13473         * modules/strtok_r: New file.
13474
13475         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
13476         strtok_r.
13477
13478 2004-11-11  Simon Josefsson  <jas@extundo.com>
13479
13480         * m4/strtok_r.m4: New file.
13481
13482         * m4/getopt.m4: Replace opterr.
13483
13484 2004-11-11  Simon Josefsson  <jas@extundo.com>
13485
13486         * lib/strtok_r.h, strtok_r.c: New file.
13487
13488 2004-11-11  Paul Eggert  <eggert@cs.ucla.edu>
13489
13490         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): Define __GETOPT_PREFIX instead
13491         of replacing opterr, getopt, etc.  This should handle the
13492         powerpc-apple-darwin5.5 problem recently noted by Simon Josefsson.
13493
13494 2004-11-11  Paul Eggert  <eggert@cs.ucla.edu>
13495
13496         * lib/getopt_.h (__getopt_argv_const): New macro, to be used so that
13497         we can stop lying to compilers about the constness of argv when we
13498         are compiled outside glibc.
13499         (getopt, getopt_long, getopt_long_only): Use it.
13500         * lib/getopt.c (_getopt_initialize, _getopt_internal_r,
13501         _getopt_internal, getopt): Likewise.
13502         * lib/getopt1.c (getopt_long, _getopt_long_r, getopt_long_only,
13503         _getopt_long_only_r): Likewise.
13504         * lib/getopt_int.h (_getopt_internal, _getopt_internal_r,
13505         _getopt_long_r, _getopt_long_only_r): Likewise.
13506
13507         * lib/getopt_.h [defined __GETOPT_PREFIX && !defined __need_getopt]:
13508         Include <stdlib.h> and <stdio.h>, and <unistd.h> if available.
13509         Then rename getopt to __GETOPT_PREFIX##getopt, and so forth for
13510         the other external symbols.
13511         (getopt) [!defined __GNU_LIBRARY]: Use prototype, not old-style
13512         declaration, since the above renaming now works around collisions.
13513
13514 2004-11-11  Jim Meyering  <jim@meyering.net>
13515
13516         * lib/linebreak.c: Remove trailing blanks.
13517         * lib/alloca_.h: Likewise.
13518         * lib/acosl.c: Likewise.
13519         * lib/euidaccess.c: Likewise.
13520         * lib/allocsa.h: Likewise.
13521
13522 2004-11-10  Simon Josefsson  <jas@extundo.com>
13523
13524         * m4/getaddrinfo.m4: New file.
13525
13526 2004-11-10  Simon Josefsson  <jas@extundo.com>
13527
13528         * lib/getaddrinfo.h, lib/getaddrinfo.c: New files.
13529
13530 2004-11-10  Simon Josefsson  <jas@extundo.com>
13531
13532         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
13533         getaddrinfo.
13534
13535         * modules/getaddrinfo: New file.
13536
13537 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
13538
13539         * m4/prereq.m4 (gl_PREREQ): Require gt_FUNC_SETENV.
13540
13541 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
13542
13543         * lib/mktime.c (SHR): New macro, which is a portable
13544         substitute for >> that should work even on Crays.
13545         (TIME_T_MIDPOINT, ydhms_diff, __mktime_internal): Use it.
13546         Problem reported by Mark D. Baushke in
13547         <http://lists.gnu.org/archive/html/bug-gnulib/2004-11/msg00071.html>.
13548         * lib/getdate.y (SHR): Likewise.
13549         (tm_diff): Use it.
13550         * lib/strftime.c (SHR): Likewise.
13551         (tm_diff): Use it.
13552         * lib/quotearg.c (struct quoting_options): Use unsigned int for
13553         quote_these_too, so that right shifts are well defined.  All uses
13554         changed.
13555
13556 2004-11-10  Jim Meyering  <jim@meyering.net>
13557
13558         Ensure that no close failure goes unreported.
13559         * lib/closeout.c (close_stdout): Always close stdout.  I.e., don't
13560         return early when it seems there's nothing to flush.
13561         Don't include __fpending.h.
13562
13563 2004-11-10  Jim Meyering  <jim@meyering.net>
13564
13565         * modules/closeout (Depends-on): Remove fpending.
13566
13567 2004-11-10  Jim Meyering  <jim@meyering.net>
13568
13569         * m4/jm-macros.m4 (gl_MACROS): Don't require gl_FUNC_FPENDING.
13570
13571 2004-11-09  Paul Eggert  <eggert@cs.ucla.edu>
13572
13573         * m4/strftime.m4 (_gl_STRFTIME_PREREQS): Remove.  Move its body to
13574         gl_FUNC_STRFTIME.
13575         (gl_FUNC_STRFTIME): Use AC_CHECK_FUNCS_ONCE and AC_CHECK_HEADERS_ONCE
13576         and AC_REQUIRE when possible, to avoid duplicate checks.
13577         Check for <wchar.h>.
13578
13579 2004-11-09  Paul Eggert  <eggert@cs.ucla.edu>
13580
13581         * lib/strftime.c (DO_MULTIBYTE): Check for wchar.h, too.
13582
13583 2004-11-09  Bruno Haible  <bruno@clisp.org>
13584
13585         * m4/sockpfaf.m4: New file.
13586
13587 2004-11-05  Bruno Haible  <bruno@clisp.org>
13588
13589         * lib/readlink.c: Include stddef.h, needed for size_t on Woe32.
13590         Reported by Mark D. Baushke <mdb@cvshome.org>.
13591
13592 2004-11-04  Bruno Haible  <bruno@clisp.org>
13593
13594         2004-09-11  Bruno Haible  <bruno@clisp.org>
13595                 * allocsa.valgrind: New file.
13596         2004-02-06  Bruno Haible  <bruno@clisp.org>
13597                 * allocsa.h (sa_alignof): Define differently with HP-UX cc, to
13598                 avoid a bug of this cc on HP-UX 10.20 dealing with enums.
13599                 Reported by Christopher Seip <chris.seip@hp.com>.
13600
13601 2004-11-04  Bruno Haible  <bruno@clisp.org>
13602
13603         * modules/allocsa (Files): Add lib/allocsa.valgrind.
13604         (Makefile.am): Distribute it.
13605
13606 2004-11-03  Paul Eggert  <eggert@cs.ucla.edu>
13607
13608         * lib/xreadlink.c (xreadlink): AIX and HP-UX readlink return -1
13609         with errno == ERANGE if the buffer is too small.
13610         Problem reported by Mark D. Baushke.
13611
13612 2004-11-03  Albert Chin  <china@thewrittenword.com>
13613             Paul Eggert  <eggert@cs.ucla.edu>
13614
13615         * m4/uint32_t.m4 (gl_AC_TYPE_UINT32_T): When determining uint32_t
13616         equivalent, substitute $ac_type for equivalent type rather than
13617         blindly using uint32_t *always* which won't work if uint32_t is not
13618         available.  Define _UINT32_T to work around typedef of uint32_t if
13619         <sys/sched.h>, <pthread.h>, or <semaphore.h> used on Solaris
13620         2.5.1.
13621
13622 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
13623
13624         * m4/jm-macros.m4: Sync from coreutils.
13625         (gl_MACROS): Check for mbrlen, for pathchk.
13626         (gl_CHECK_ALL_TYPES): Require AC_TYPE_MBSTATE_T, for pathchk.
13627
13628 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
13629
13630         * lib/xreadlink.c (MAXSIZE): New macro.
13631         (xreadlink): Use it instead of SSIZE_MAX.  Ensure initial buffer
13632         size does not exceed MAXSIZE.  Avoid cast.
13633         As suggested by Mark D. Baushke in
13634         <http://lists.gnu.org/archive/html/bug-gnulib/2004-11/msg00009.html>,
13635         if readlink fails with buffer size just under MAXSIZE, try again
13636         with MAXSIZE.
13637
13638 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
13639
13640         * config/srclist.txt: Add mktime.c; glibc bought all our changes.
13641
13642 2004-11-02  Derek R. Price  <derek@ximbiot.com>
13643         and  Paul Eggert  <eggert@cs.ucla.edu>
13644
13645         * lib/getdate.y [!TEST]: Include <stdio.h>, since we use sprintf now.
13646         (get_date): Overparenthesize to avoid GCC warning.
13647
13648 2004-11-02  Bruno Haible  <bruno@clisp.org>
13649
13650         * m4/setenv.m4 (gt_FUNC_SETENV): Define VOID_UNSETENV if unsetenv()
13651         returns void.
13652
13653 2004-11-02  Bruno Haible  <bruno@clisp.org>
13654
13655         * lib/setenv.h (unsetenv): Define as a macro if the system's unsetenv()
13656         function returns void.
13657
13658 2004-11-01  Paul Eggert  <eggert@cs.ucla.edu>
13659
13660         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for declarations of
13661         fflush_unlocked, flockfile, funlockfile, funlockfile,
13662         fputs_unlocked, putc_unlocked.
13663
13664 2004-11-01  Paul Eggert  <eggert@cs.ucla.edu>
13665
13666         * lib/getpass.c (fflush_unlocked, flockfile, funlockfile)
13667         (funlockfile, fputs_unlocked, putc_unlocked): Don't define if
13668         already declared.
13669
13670 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
13671
13672         * modules/getdate (Files): Add doc/getdate.texi.
13673         (Depends-on): Add setenv, xalloc.
13674
13675 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
13676
13677         * lib/getdate.y: Add support for TZ="foo" within a date string.
13678         Fix some bugs near time_t boundaries.  Reject dates with
13679         out-of-range components, e.g., "Sept 31".
13680         Include <stdlib.h>, "setenv.h", "xalloc.h".
13681         (ISDIGIT_LOCALE): Remove; unused.
13682         Note that the TZ and time functions used here are not reentrant.
13683         (mktime_ok, get_tz): New functions.
13684         (TZBUFSIZE): New constant.
13685         (get_date): Parse leading TZ="foo".  Reject out-of-range components;.
13686         This requires that we sometimes generate our own TZ="XXX..." setting.
13687
13688 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
13689
13690         * doc/getdate.texi: New file, from coreutils with modifications for
13691         the new TZ parsing.
13692
13693 2004-10-27  Derek R. Price  <derek@ximbiot.com>
13694
13695         * lib/mktime.c (not_equal_tm): Remove redundant check.
13696
13697 2004-10-24  Paul Eggert  <eggert@cs.ucla.edu>
13698
13699         * modules/regex (lib_SOURCES): Add regex.c.
13700         Reported by James Youngman in
13701         <http://lists.gnu.org/archive/html/bug-gnulib/2004-10/msg00199.html>.
13702
13703 2004-10-24  Paul Eggert  <eggert@cs.ucla.edu>
13704
13705         * lib/getdate.y: Use Bison 1.875 features, and some minor
13706         code cleanups.  This change does not affect semantics.
13707         Don't include <stdlib.h>; no longer needed.
13708         Don't include unlocked-io.h; only the "#if TEST" code uses
13709         stdio, and performance isn't crucial there.
13710         (PC, YYLEX_PARAM, YYPARSE_PARAM): Remove; replaced by
13711         Bison 1.875 features as described below.
13712         All uses of "PC." replaced by "pc->".
13713         (YYSTYPE): Add a forward declaration.
13714         (yylex, yyerror): Use full prototypes in forward decls.
13715         Use "%pure-parser" rather than obsolescent "%pure_parser".
13716         Use %parse-param and %lex-param instead of obsolescent
13717         YYPARSE_PARAM and YYLEX_PARAM.
13718         (meridian_table, month_and_day_table, time_units_table,
13719         relative_time_table, time_zone_table, military_table,
13720         lookup_zone, lookup_word, get_date):
13721         Use NULL instead of 0 where appropriate.
13722         (to_hour): Avoid abort (), to avoid a dependency on
13723         stdlib.h.
13724         (yyerror, yylex): Now accepts parser_control * arg.
13725         (main) [TEST]: Use '\0' rather than 0 for char.
13726
13727 2004-10-22  Paul Eggert  <eggert@cs.ucla.edu>
13728
13729         * m4/getpagesize.m4 (gl_GETPAGESIZE): Check for <sys/param.h>.
13730
13731 2004-10-22  Paul Eggert  <eggert@cs.ucla.edu>
13732
13733         * lib/getpagesize.c (getpagesize): Don't assume <sys/param.h> exists.
13734         It's now the caller's responsibility to handle the case where
13735         !HAVE_GETPAGESIZE && !defined getpagesize.
13736
13737         * lib/mktime.c (leapyear): Arg is long int, not int.
13738
13739 2004-10-18  Paul Eggert  <eggert@cs.ucla.edu>
13740
13741         * lib/argp-fs-xinl.c, argp-xinl.c: Update from glibc.
13742
13743 2004-10-17  Paul Eggert  <eggert@cs.ucla.edu>
13744
13745         * gnulib-tool (func_emit_lib_Makefile_am): Fix typo: a $ was
13746         missing.  Problem reported by James Youngman.
13747
13748 2004-10-16  Simon Josefsson  <jas@extundo.com>
13749
13750         * gnulib-tool: Fix comments.  Fix parse problem.
13751         (func_emit_lib_Makefile_am): Don't hard code a in libgl_a_SOURCES.
13752
13753 2004-10-15  Paul Eggert  <eggert@cs.ucla.edu>
13754
13755         * m4/getopt.m4 (gl_GETOPT): Detect and reject the incompatible BSD
13756         implementation of getopt_long.  Problem reported by Alexander Taler in:
13757         http://lists.gnu.org/archive/html/bug-gnulib/2004-10/msg00103.html
13758
13759 2004-10-15  Bruno Haible  <bruno@clisp.org>
13760
13761         * gnulib-tool: Untabify. Initialize supplied_libname.
13762         (func_usage): More homogenous output.
13763         (func_modules_transitive_closure, func_modules_to_filelist,
13764         func_emit_lib_Makefile_am): New functions.
13765         (func_import): New function, extracted from big case statement. Use
13766         func_get_license, func_modules_transitive_closure,
13767         func_modules_to_filelist, func_emit_lib_Makefile_am. Initialize
13768         opt_lgpl. Don't use test -a, as it's not portable.
13769         (func_create_testdir): Use func_modules_transitive_closure,
13770         func_modules_to_filelist, func_emit_lib_Makefile_am.
13771
13772 2004-10-15  Bruno Haible  <bruno@clisp.org>
13773
13774         * gnulib-tool (func_import): Let gl_INIT define LTALLOCA when needed.
13775
13776 2004-10-15  Bruno Haible  <bruno@clisp.org>
13777
13778         * gnulib-tool (func_emit_lib_Makefile_am): Add markers to separate
13779         the portions belonging to each module.
13780         Suggested by Derek Robert Price <derek@ximbiot.com>.
13781
13782 2004-10-12  Simon Josefsson  <jas@extundo.com>
13783
13784         * lib/getpass.c (fflush_unlocked, flockfile, funlockfile)
13785         (fputs_unlocked, putc_unlocked) [!_LIBCS && !USE_UNLOCKED_IO]: Map
13786         to real functions.
13787
13788 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
13789
13790         * modules/vsnprintf: New file.
13791
13792 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
13793
13794         * m4/vsnprintf.m4: New file.
13795
13796 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
13797
13798         * lib/vsnprintf.h: New file.
13799         * lib/vsnprintf.c: New file.
13800
13801 2004-10-11  Bruno Haible  <bruno@clisp.org>
13802
13803         * MODULES.html.sh (Support for systems lacking ISO C 99): Add
13804         vsnprintf.
13805
13806 2004-10-10  Paul Eggert  <eggert@cs.ucla.edu>
13807
13808         * config/srclistvars.sh: Add GNUSTANDARDS (for eggert only).
13809
13810 2004-10-07  Bruno Haible  <bruno@clisp.org>
13811
13812         * lib/snprintf.c (snprintf): Avoid a memory allocation if the result
13813         fits into the provided buffer.
13814
13815 2004-10-06  Paul Eggert  <eggert@cs.ucla.edu>
13816
13817         * lib/diacrit.c, diacrit.h: Add GPL notice.
13818
13819         * lib/atanl.c, logl.c: Add GPL notice, to match glibc's added LGPL
13820         notice.
13821         * lib/atanl.c (atanl): Keep the code as similar to glibc as possible.
13822         * lib/logl.c (logl): Keep the code as similar to glibc as possible.
13823         This avoids a potential constant-folding bug.
13824
13825 2004-10-05  Bruno Haible  <bruno@clisp.org>
13826
13827         * m4/strsep.m4 (gl_FUNC_STRSEP): Require AC_GNU_SOURCE. Don't check
13828         for the declaration of strsep.
13829
13830 2004-10-05  Bruno Haible  <bruno@clisp.org>
13831
13832         * lib/strsep.h: Don't declare strsep() if HAVE_STRSEP.
13833
13834 2004-10-04  Simon Josefsson  <jas@extundo.com>
13835
13836         * modules/memmem: New file.
13837         * tests/test-memmem.c: New file.
13838         * MODULES.html.sh (Extra functions based on ANSI C 89): Add memmem.
13839
13840 2004-10-04  Simon Josefsson  <jas@extundo.com>
13841
13842         * m4/memmem.m4: New file.
13843
13844 2004-10-04  Simon Josefsson  <jas@extundo.com>
13845
13846         * lib/memmem.h: New file.
13847         * lib/memmem.c: New file, taken from glibc.
13848
13849 2004-10-04  Simon Josefsson  <jas@extundo.com>
13850
13851         * lib/error.c, md5.c, regex.c: Use '#if USE_UNLOCKED_IO' instead of
13852         '#ifdef USE_UNLOCKED_IO'.
13853
13854 2004-10-04  Simon Josefsson  <jas@extundo.com>
13855
13856         * config/srclist.txt: Add memmem from glibc.
13857
13858 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
13859
13860         * modules/xalloc (Files, Makefile.am): Remove xstrdup.c.
13861
13862         * modules/argmatch, modules/argp, modules/closeout, modules/error,
13863         modules/exclude, modules/getdate, modules/getline,
13864         modules/getndelim2, modules/getpass, modules/getpass-gnu,
13865         modules/getusershell, modules/linebuffer, modules/md5,
13866         modules/mountlist, modules/posixtm, modules/readtokens,
13867         modules/readutmp, modules/regex, modules/sha1,
13868         modules/version-etc, modules/yesno:
13869         Remove dependency on unlocked-io.
13870
13871 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
13872
13873         * m4/xalloc.m4 (gl_PREREQ_XSTRDUP): Remove.  All uses removed.
13874
13875         * m4/unlocked-io.m4: Add copyright notice.
13876         (gl_FUNC_GLIBC_UNLOCKED_IO): Define USE_UNLOCKED_IO.
13877
13878 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
13879
13880         * lib/xalloc.h (xmemdup): Renamed from xclone.  All uses changed.
13881         * lib/xmalloc.c (xmemdup): Likewise.
13882         * lib/xalloc.h (CCLONE, CLONE, NEW, XCALLOC, XMALLOC, XREALLOC,
13883         XFREE): Remove these long-obsolescent macros.
13884         * lib/xmalloc.c (xstrdup): Implementation moved here from xstrdup.c
13885         * lib/xstrdup.c: Remove.
13886
13887         * lib/regex.c (re_comp): Cast gettext return value to char *,
13888         Problem reported by Martin Neitzel via Mark D. Baushke.
13889
13890 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
13891
13892         * lib/argmatch.c, closeout.c, error.c, exclude.c, getdate.y,
13893         getndelim2.c, getpass.c, getusershell.c, linebuffer.c,
13894         md5.c, mountlist.c, posixtm.c, readtokens.c, readutmp.c,
13895         regex.c, sha1.c, version-etc.c, yesno.c:
13896         Include "unlocked-io.h" only if USE_UNLOCKED_IO.
13897         * lib/unlocked-io.h: Don't worry about USE_UNLOCKED_IO; that's now
13898         the includer's responsibility.
13899
13900         Sync from coreutils.
13901
13902         * lib/modechange.c (mode_compile): Don't decrement a pointer that
13903         points to the start of a string, as the C Standard says the
13904         resulting behavior is undefined.
13905
13906         * lib/backupfile.h (enum backuptype): Rename none -> no_backups,
13907         simple -> simple_backups, numbered_existing ->
13908         numbered_existing_backups, numbered -> numbered_backups
13909         to avoid shadowing problems.  All uses changed.
13910         * lib/argmatch.c (enum backuptype) [defined TEST]: Likewise.
13911         * lib/backupfile.c (check_extension, numbered_backup):
13912         Rename locals to avoid shadowing 'basename'.
13913         * lib/backupfile.h (VALID_BACKUP_TYPE): Don't evaluate arg more than
13914         once.
13915
13916         * lib/.cppi-disable: Add getopt_.h, getopt_int.h.
13917         * lib/.cvsignore: Add getopt.h.
13918
13919 2004-10-04  Bruno Haible  <bruno@clisp.org>
13920
13921         * modules/README: New file.
13922         * gnulib-tool (func_all_modules, func_verify_module): modules/README is
13923         not a module.
13924
13925 2004-10-02  Jim Meyering  <jim@meyering.net>
13926
13927         * lib/dirfd.h, getpagesize.h: Add copyright notice.
13928
13929 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
13930
13931         * modules/strsep: New file.
13932
13933 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
13934
13935         * m4/strsep.m4: New file.
13936
13937 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
13938
13939         * lib/strsep.h: New file.
13940         * lib/strsep.c: New file.
13941
13942 2004-10-01  Simon Josefsson  <jas@extundo.com>
13943
13944         * lib/snprintf.c (snprintf): Handle size==0.
13945
13946 2004-10-01  Simon Josefsson  <jas@extundo.com>
13947             Bruno Haible  <bruno@clisp.org>
13948
13949         * lib/snprintf.c: Include <stdarg.h>, <stdlib.h>, <string.h>.
13950         (snprintf): Declare 'args'.
13951
13952 2004-10-01  Paul Eggert  <eggert@cs.ucla.edu>
13953
13954         * lib/snprintf.c: Remove comments as to why each header is needed.
13955
13956 2004-10-01  Bruno Haible  <bruno@clisp.org>
13957
13958         * MODULES.html.sh: Add strsep.
13959
13960 2004-09-30  Simon Josefsson  <jas@extundo.com>
13961
13962         * modules/snprintf: New file.
13963
13964 2004-09-30  Simon Josefsson  <jas@extundo.com>
13965
13966         * m4/snprintf.m4: New file.
13967
13968 2004-09-30  Simon Josefsson  <jas@extundo.com>
13969
13970         * lib/snprintf.h, lib/snprintf.c: New files.
13971
13972 2004-09-30  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
13973
13974         * lib/argp-help.c (canon_doc_option): Fixed coredump if *name==NULL
13975         (hol_entry_help): Never translate an empty string.
13976         Do not translate option tag (opt->name) if OPTION_NO_TRANS is set
13977         * lib/argp.h (OPTION_NO_TRANS): New option.
13978
13979 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
13980
13981         * modules/argp (Maintainer): Replace Simon Josefsson
13982         by Sergey Poznyakoff.
13983
13984 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
13985
13986         * config/srclist.txt: Comment-out argp/argp.h, until we get the argp
13987         changes merged back into glibc.
13988
13989 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
13990
13991         * MODULES.html.sh (Support for systems lacking ISO C 99): Add snprintf.
13992
13993 2004-09-29  Oskar Liljeblad  <oskar@osk.mine.nu>
13994
13995         * lib/xvasprintf.c: Include xalloc.h.
13996         (xvasprintf): Use xalloc_die, not xmalloc_die.
13997
13998 2004-09-29  Bruno Haible  <bruno@clisp.org>
13999
14000         * modules/alloca-opt: New file, derived from modules/alloca.
14001         * modules/allocsa: Depend on alloca-opt instead of alloca.
14002         * modules/setenv: Likewise.
14003         * modules/vasnprintf: Likewise.
14004         * MODULES.html.sh: Add alloca-opt.
14005
14006 2004-09-28  Simon Josefsson  <jas@extundo.com>
14007
14008         * gnulib-tool: New parameter --lgpl, to asseert that modules are
14009         LGPL, and to replace license template from GPL to LGPL.
14010
14011 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
14012
14013         * modules/dummy: Change license to LGPL.
14014
14015 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
14016
14017         * lib/dummy.c: Change copyright notice to FSF, and license to GPL.
14018
14019 2004-09-24  Simon Josefsson  <jas@extundo.com>
14020
14021         * modules/minmax (License): Change from GPL to LGPL.
14022
14023 2004-09-23  Simon Josefsson  <jas@extundo.com>
14024
14025         * gnulib-tool (--import): Typo.
14026
14027 2004-09-23  Simon Josefsson  <jas@extundo.com>
14028
14029         * gnulib-tool (--import): Make sure *.m4 end up in m4/ by default.
14030
14031 2004-09-22  Bruno Haible  <bruno@clisp.org>
14032
14033         * modules/*: Add 'License' field.
14034         * gnulib-tool: Accept --extract-license option.
14035         (func_get_license): New function.
14036
14037 2004-09-21  Bruno Haible  <bruno@clisp.org>
14038
14039         * modules/vasnprintf (Files): Add m4/stdint_h.m4, m4/inttypes_h.m4.
14040         Reported by Simon Josefsson.
14041
14042 2004-09-20  Paul Eggert  <eggert@cs.ucla.edu>
14043
14044         * modules/inttostr (Files): Add m4/longlong.m4, since it uses
14045         gl_AC_TYPE_LONG_LONG.
14046
14047 2004-09-20  Paul Eggert  <eggert@cs.ucla.edu>
14048
14049         * config/srclist.txt: Add getsubopt.c, since libc bought our changes.
14050
14051 2004-09-18  Simon Josefsson  <jas@extundo.com>
14052         and  Paul Eggert  <eggert@cs.ucla.edu>
14053
14054         * gnulib-tool: Replace various ad-hoc automake/autoconf/aclocal
14055         calls with autoreconf.  Define GL_LIB.
14056
14057 2004-09-14  Karl Berry  <karl@gnu.org>
14058
14059         * config/srclist.txt: unsync setenv.c, sigh.
14060
14061 2004-09-13  Paul Eggert  <eggert@cs.ucla.edu>
14062
14063         * lib/argp-pvh.c (argp_program_version_hook): Provide initial value.
14064         Problem reported by Bruno Haible in:
14065         http://lists.gnu.org/archive/html/bug-tar/2004-09/msg00023.html
14066
14067 2004-09-13  Paul Eggert  <eggert@cs.ucla.edu>
14068
14069         * config/srclist.txt: Comment out argp-pvh.c.
14070
14071 2004-09-11  Paul Eggert  <eggert@cs.ucla.edu>
14072
14073         * lib/mempcpy.h: Wrap the entire include file inside #ifndef mempcpy,
14074         in case some system header has #define'd it.  Problem reported by
14075         Soeren D. Schulze in
14076         <http://lists.gnu.org/archive/html/bug-gnulib/2004-09/msg00017.html>.
14077
14078 2004-09-09  Karl Berry  <karl@gnu.org>
14079
14080         * regex.[ch]: delete from the root.  These were supposed to be
14081                 synced with emacs cvs, but this has not happened for about
14082                 a year, and anyway nothing else uses emacs regex.[ch].
14083                 bug-gnulib mail from Jeff Bailey, 9 Sep 2004 15:49:24 -0700.
14084                 lib/regex[.ch] is untouched.
14085
14086 2004-09-09  Bruno Haible  <bruno@clisp.org>
14087
14088         * modules/vasnprintf (Files): Add m4/eoverflow.m4.
14089
14090 2004-09-09  Bruno Haible  <bruno@clisp.org>
14091
14092         * m4/eoverflow.m4: New file, taken from GNU libiconv eilseq.m4 with
14093         modifications.
14094         * m4/vasnprintf.m4 (gl_FUNC_VASNPRINTF): Require gl_EOVERFLOW.
14095
14096 2004-09-08  Oskar Liljeblad  <oskar@osk.mine.nu>
14097
14098         * modules/xvasprintf: New file.
14099         * MODULES.html.sh (Extra functions based on ANSI C 89): Add vasprintf.
14100
14101 2004-09-08  Oskar Liljeblad  <oskar@osk.mine.nu>
14102
14103         * lib/xvasprintf.h: New file.
14104         * lib/xvasprintf.c: New file.
14105         * lib/xasprintf.c: New file.
14106
14107 2004-09-08  Bruno Haible  <bruno@clisp.org>
14108
14109         * m4/stdint.m4: New file, taken from GNU clisp with modifications.
14110
14111 2004-09-08  Bruno Haible  <bruno@clisp.org>
14112
14113         * lib/vasnprintf.c (VASNPRINTF): Signal EOVERFLOW if the resulting
14114         length is > INT_MAX.
14115         * lib/vasprintf.c (vasprintf): Don't test for length > INT_MAX any
14116         more.
14117
14118 2004-09-08  Bruno Haible  <bruno@clisp.org>
14119
14120         * lib/stdint_.h: New file, taken from GNU clisp.
14121
14122 2004-09-08  Bruno Haible  <bruno@clisp.org>
14123             Oskar Liljeblad  <oskar@osk.mine.nu>
14124
14125         * modules/stdint: New file.
14126         * MODULES.html.sh (Support for systems lacking ISO C 99): Add stdint.
14127
14128 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
14129
14130         Import from coreutils.
14131         * lib/userspec.c: Don't use <alloca.h>, so that we don't use alloca on
14132         strings on unbounded length.  alloca's performance benefits aren't
14133         that important here.
14134         (V_STRDUP): Remove.
14135         (parse_with_separator): New function, with most of the internals
14136         of the old parse_user_spec.  Allow user to omit both user and group,
14137         for compatibility with FreeBSD.
14138         Clone only the user name, not the entire spec.
14139         Do not set *uid, *gid unless entirely successful.
14140         Avoid memory leak in some failing cases.
14141         Fix regression for USER.GROUP reported by Dmitry V. Levin in
14142         <http://lists.gnu.org/archive/html/bug-coreutils/2004-08/msg00102.html>
14143         (parse_user_spec): Rewrite to use parse_with_separator.
14144
14145 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
14146
14147         * modules/userspec: Don't depend on alloca.
14148
14149 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
14150
14151         * m4/userspec.m4 (gl_USERSPEC): Don't require AC_FUNC_ALLOCA.
14152
14153 2004-08-17  Paul Eggert  <eggert@cs.ucla.edu>
14154
14155         * MODULES.html.sh: Add xalloc-die, c-strtod, c-strtold, raise,
14156         readtokens0, getcwd, fcntl-safer, canonicalize, cycle-check,
14157         utimecmp, utimens, xnanosleep.  Rename sha to sha1.
14158
14159 2004-08-16  Simon Josefsson  <jas@extundo.com>
14160
14161         * gnulib-tool: Use sed instead of autoconf --trace, inspired by
14162         libtoolize behaviour by "Gary V. Vaughan" <gary@gnu.org>.
14163         Add --dry-run for --import.
14164         Let user provided command line parameters override configure.ac
14165         settings.
14166
14167 2004-08-12  Simon Josefsson  <jas@extundo.com>
14168
14169         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): New macro,
14170         as discussed with Paul Eggert in threads rooted at
14171         <http://lists.gnu.org/archive/html/bug-gnulib/2004-06/msg00039.html>
14172         and
14173         <http://lists.gnu.org/archive/html/bug-gnulib/2004-07/msg00001.html>.
14174         Before, the test was empty, and relied on ELIDE_CODE in source
14175         code.)
14176         (gl_PREREQ_GETOPT): New macro.
14177         (gl_GETOPT): Use them.
14178
14179 2004-08-12  Simon Josefsson  <jas@extundo.com>
14180
14181         * lib/getopt.c, getopt1.c: Remove ELIDE_CODE hack.
14182         * lib/getopt_.h: Renamed from getopt.h.
14183
14184 2004-08-12  Simon Josefsson  <jas@extundo.com>
14185
14186         * gnulib-tool: Add --source-base, --m4-base, --libtool options.
14187         Change default library name from libfoo to libgnu.
14188         Now, if you have a configure.ac that says:
14189                 gl_SOURCE_BASE(gl)
14190                 gl_M4_BASE(gl/m4)
14191                 gl_MODULES(error getopt etcetera)
14192                 gl_INIT
14193         you can import all you need by running:
14194                 ../gnulib/gnulib-tool --import
14195
14196         * modules/getopt (Files): Rename getopt.h to getopt_.h.
14197         (Makefile.am): Rewrite, use logic from argz.
14198         (Include): Use <getopt.h> instead of "getopt.h".
14199
14200 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
14201
14202         * modules/argp (Files): Add m4/unlocked-io.m4.
14203         (Depends-on): Add extensions.
14204
14205 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
14206
14207         * m4/argp.m4 (gl_ARGP): Do not check for argp.h or argp_parse; nobody
14208         uses HAVE_ARGP_H or HAVE_ARGP_PARSE.
14209         Require gl_FUNC_GLIBC_UNLOCKED_IO, gl_USE_SYSTEM_EXTENSIONS.
14210         Check for program_invocation_name, program_invocation_short_name,
14211         flockfile, funlockfile, features.h, _getopt_long_only_r.
14212
14213 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
14214
14215         * lib/argp-help.c, argp-parse.c: Use "gettext.h" instead of
14216         its complicated substitute.
14217         * lib/argp-help.c: Include <errno.h>, for program_invocation_short_name
14218         and program_invocation_name.
14219         (__argp_basename) [!_LIBC]: Remove; the only use was
14220         replaced by its body.
14221         (__argp_short_program_name): Change condition from
14222         !defined __argp_short_program_name to
14223         ! (defined _LIBC || HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME),
14224         to match argp-namefrob.h.
14225         (__argp_failure): Don't assume strerror_r returns char *.
14226         * lib/argp-parse.c (N_): Define unconditionally.
14227         (argp_default_options): Fill out initializers with 0 to avoid
14228         gcc warnings.
14229
14230 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
14231
14232         * config/srclist.txt: Remove getopt.c, getopt.h (renamed to getopt_.h),
14233         getopt1.c.
14234
14235 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
14236
14237         Merge from coreutils.
14238
14239         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for wmemchr and wmemcpy.
14240
14241         * m4/obstack.m4 (gl_PREREQ_OBSTACK): Require
14242         gl_AC_HEADER_INTTYPES_H, gl_AC_HEADER_STDINT_H, gl_AC_TYPE_UINTMAX_T.
14243
14244 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
14245
14246         Merge from coreutils.
14247
14248         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Don't set to 1 if missing
14249         wmemchr or wmemcpy.  Problem reported by Robert Dahlem
14250         for Reliant Unix 5.43.
14251
14252         * lib/obstack.c: Include <inttypes.h> and <stdint.h> if available.
14253         (union fooround): Use uintmax_t, not long int.
14254         The rest is a merge from libc:
14255         [defined _LIBC]: Include <shlib-compat.h>.
14256         (_obstack) [defined _LIBC]: Remove after 2.3.4.
14257
14258         * lib/settime.c (settime): Recode to avoid warning with
14259         Sun Forte C 6U2.
14260
14261         * lib/strverscmp.c: Convert to UTF-8.
14262
14263 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
14264
14265         * modules/obstack (Files): Add m4/inttypes_h.m4, m4/stdint_h.m4,
14266         m4/uintmax_t.m4.
14267
14268 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
14269
14270         * modules/xalloc-die: New file.
14271         * modules/xalloc: Remove dependencies on error, gettext, exitfail.
14272
14273         * modules/md5 (Files): Add m4/uint32_t.m4.
14274         * modules/sha1: Renamed from modules/sha.
14275         (Files):
14276         Rename lib/sha.h to lib/sha1.h.
14277         Rename lib/sha.c to lib/sha1.c.
14278         Rename m4/sha.m4 to m4/sha1.m4.
14279         (lib_SOURCES): Likewise.
14280         (configure.ac): Rename gl_SHA to gl_SHA1.
14281         (Include): sha.h -> sha1.h.
14282
14283 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
14284
14285         * m4/uint32_t.m4, m4/uintptr_t.m4: New files.
14286         * m4/sha1.m4: Renamed from sha.m4.
14287         (gl_SHA1): Renamed from gl_SHA.  All uses changed.
14288
14289 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
14290
14291         * lib/obstack.h (obstack_empty_p):
14292         Don't assume that chunk->contents is suitably aligned.
14293         * lib/obstack.c (_obstack_begin, _obstack_begin_1, _obstack_newchunk):
14294         Likewise. Problem reported by Benno in
14295         <http://sources.redhat.com/ml/libc-alpha/2004-08/msg00055.html>.
14296
14297         * lib/chown.c (rpl_chown): Work even if the file is writeable but not
14298         readable.  This could be improved further but it'd take some work.
14299
14300 2004-08-08  Simon Josefsson  <jas@extundo.com>
14301
14302         * modules/xgethostname (Depends-on): Remove exit and error (not
14303         used).
14304
14305         * modules/getpass-gnu: Add getpass.h.
14306         (Depends-on): Add stdbool.
14307         * modules/getpass: Add getpass.h.
14308
14309 2004-08-08  Simon Josefsson  <jas@extundo.com>
14310
14311         * m4/getpass.m4 (gl_FUNC_GETPASS, gl_FUNC_GETPASS_GNU):
14312         Check getpass declaration.
14313
14314 2004-08-08  Simon Josefsson  <jas@extundo.com>
14315
14316         * lib/xgethostname.c: Don't include error.h (not used).
14317
14318         * lib/getpass.h: Add.
14319         * lib/getpass.c: Include getpass.h first.
14320
14321 2004-08-08  Paul Eggert  <eggert@cs.ucla.edu>
14322
14323         * lib/xalloc-die.c: New file.
14324         * lib/xalloc.h (xalloc_fail_func, xalloc_msg_memory_exhausted): Remove.
14325         All uses removed.
14326         * lib/xmalloc.c (xalloc_fail_func, xalloc_msg_memory_exhausted):
14327         Likewise. Move inclusions of gettext.h, error.h, exitfail.h to
14328         xalloc-die.c.
14329         (_, N_, xalloc_die): Move to xalloc-die.c.
14330         * lib/userspec.c (parse_user_spaec): Use xstrdup rather than strdup,
14331         so that we needn't mess with xalloc_msg_memory_exhausted.
14332
14333         * lib/sha1.h: Renamed from sha.h.
14334         (SHA1_H): Renamed from _SHA_H.
14335         (sha1_ctx): Renamed from sha_ctx.
14336         (sha1_init_ctx): Renamed from sha_init_ctx.
14337         (sha1_process_block): Renamed from sha_process_block.
14338         (sha1_process_bytes): Renamed from sha_process_bytes.
14339         (sha1_finish_ctx): Renamed from sha_finish_ctx.
14340         (sha1_read_ctx): Renamed from sha_read_ctx.
14341         (sha1_stream): Renamed from sha_stream.
14342         (sha1_buffer): Renamed from sha_buffer.
14343         * lib/sha1.c: Likewise; renamed from sha.c.
14344         Do not include <sys/types.h>.
14345         Include <stddef.h> rather than <stdlib.h>.
14346
14347 2004-08-08  Bruno Haible  <bruno@clisp.org>
14348
14349         * lib/pathname.h (FILE_SYSTEM_PREFIX_LEN): Renamed from
14350         FILESYSTEM_PREFIX_LEN.
14351         * lib/progreloc.c: Likewise.
14352         * lib/concatpath.c (concatenated_pathname): Use FILE_SYSTEM_PREFIX_LEN.
14353
14354 2004-08-06  Simon Josefsson  <jas@extundo.com>
14355
14356         * modules/progname (Depends-on): Don't depend on stdbool.
14357
14358 2004-08-06  Simon Josefsson  <jas@extundo.com>
14359
14360         * modules/getsubopt: New file.
14361         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
14362         getsubopt.
14363
14364 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
14365
14366         More merge from coreutils.
14367
14368         * m4/utimens.m4, m4/utimecmp.m4: New files.
14369         * m4/backupfile.m4, euidacces.m4, acl.m4, afs.m4, calloc.m4, dirfd.m4,
14370         fsusage.m4, jm-macros.m4, ls-mntd-fs.m4, md5.m4, mountlist.m4,
14371         prereq.m4, sha.m4: Import changes from coreutils.
14372
14373 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
14374
14375         More merge from coreutils.
14376         * modules/raise, modules/readtokens0, modules/utimens:
14377         * modules/utimecmp, module/xnanosleep: New files.
14378         * modules/strftime: Add lib/strftime.h.
14379         Change include from <time.h> to "strftime.h".
14380         * modules/yesno: Add lib/yesno.h.
14381         * modules/backupfile: Remove lib/addext.c.
14382         * modules/euidaccess: Add stat-macros.h.
14383         * modules/canonicalize, modules/euidaccess,
14384         modules/filemode, modules/lchown, modules/makepath,
14385         modules/rmdir, modules/stat: Likewise.
14386
14387 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
14388
14389         Merge from tar.
14390         * lib/argp-help.c (make_hol, hol_append): Don't assume that
14391         SIZE_MAX is a valid preprocessor constant.
14392         (__argp_basename): Change from "#ifndef _LIBC"
14393         to "#ifndef __argp_short_program_name", so that
14394         we don't compile these functions for tar.
14395
14396         More merges from coreutils.
14397         * lib/raise.c, lib/readtokens0.h, lib/readtokens0.c, lib/strftime.h:
14398         * lib/utimens.h, lib/utimens.c, lib/utimecmp.h, lib/utimecmp.c:
14399         * lib/xnanosleep.h, lib/xnanosleep.c, lib/yesno.h: New files.
14400         * lib/addext.c: Remove; no longer needed.
14401         * lib/yesno.c, lib/argmatch.h, lib/argmatch.c, lib/backupfile.h,
14402         lib/backupfile.c, lib/euidaccess.c, lib/filemode.c, lib/closeout.c,
14403         lib/dup2.c, lib/exclude.c, lib/fileblocks.c, lib/filemode.c,
14404         lib/fnmatch.c, lib/fnmtahc_loop.c, lib/fopen-safer.c, lib/fsusage.c,
14405         lib/fsusage.h, lib/ftruncate.c, lib/full-write.c, lib/getdate.y,
14406         lib/getloadavg.c, lib/getugroups.c, lib/hard-locale.c,
14407         lib/hard-locale.h, lib/hash.c, lib/human.c, lib/human.h, lib/lchown.c,
14408         lib/lchown.h, lib/makepath.c, lib/makepath.h, lib/md5.c, lib/md5.h,
14409         lib/memchr.c, lib/memcoll.c, lib/memrchr.c, lib/modechange.c,
14410         lib/modechange.h, lib/mountlist.c, lib/mountlist.h, lib/nanosleep.c,
14411         lib/posixtm.c, lib/putenv.c, quotearg.c, lib/quotearg.h,
14412         lib/readtokens.c, lib/readutmp.c, lib/readutmp.h, lib/rmdir.c,
14413         lib/safe-read.c, lib/save-cwd.c, lib/savedir.c, lib/setenv.c,
14414         lib/sig2str.c, lib/stat.c, lib/strtoimax.c, lib/strverscmp.c,
14415         lib/userspec.c, lib/utime.c, lib/version-etc.c., lib/xgethostname.c,
14416         lib/xmemcoll.c, lib/xreadlink.c, lib/xstrtod.c, lib/xstrtod.h,
14417         lib/xstrtoimax.c, lib/xstrtol.c, lib/xstrtol.h, lib/xstrtoumax.c:
14418         Import changes from coreutils.
14419
14420 2004-08-05  Simon Josefsson  <jas@extundo.com>
14421
14422         * m4/strdup.m4: Always run gl_PREREQ_STRDUP, since strdup.h need it.
14423
14424 2004-08-05  Simon Josefsson  <jas@extundo.com>
14425
14426         * m4/getsubopt.m4: New file.
14427
14428 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
14429
14430         Merge from coreutils.
14431
14432         * m4/c-strtod.m4, m4/canonicalize.m4, m4/fcntl-safer.m4:
14433         * m4/getcwd-path-max.m4: New files.
14434
14435         * m4/dos.m4 (gl_AC_DOS): filesystem -> file system renaming.
14436         FILESYSTEM_PREFIX_LEN ->
14437         FILE_SYSTEM_PREFIX_LEN.
14438         FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX ->
14439         FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX.
14440         FILESYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR ->
14441         FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR.
14442
14443         * m4/path-concat.m4 (gl_PATH_CONCAT): Don't require gl_AC_DOS, the
14444         prerequisite modules now handle the DOS stuff.
14445         Don't check for unistd.h.
14446
14447 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
14448
14449         Merge from coreutils.
14450
14451         * lib/.gdb-history: Remove; this doesn't belong here.
14452
14453         * lib/c-strtod.c, lib/c-strtod.h, lib/c-strtold.c, lib/cycle-check.c:
14454         * lib/cycle-check.h, lib/dev-ino.h, lib/canonicalize.h:
14455         * lib/canonicalize.c, lib/fcntl-safer.h, lib/fcntl-safer.c:
14456         * lib/getcwd.c: New files.
14457
14458         * lib/dirname.h: Include <stdbool.h>.
14459         (FILE_SYSTEM_PREFIX_LEN): Renamed from FILESYSTEM_PREFIX_LEN,
14460         for consistency with POSIX terminology.  All uses changed.
14461         (IS_ABSOLUTE_FILE_NAME, IS_RELATIVE_FILE_NAME): New macros.
14462         (strip_trailing_slashes): Use bool for booleans.
14463         * lib/stripslash.c (strip_trailing_slashes): Likewise.
14464
14465         * lib/error.c: Work around bug in OpenBSD 3.4 sterror_r: it
14466         sometimes returns a positive errno value even when it succeeds.
14467         (print_errno_message) [!LIBC]: Fall back on strerror if
14468         __strerror_r fails.
14469
14470         * lib/path-concat.c (mempcpy): Don't define if a system header defines
14471         it. Don't include stdio.h, stdlib.h, unistd.h, strdup.h.
14472         (longest_relative_suffix): New function.
14473         (path_concat): Use it.  Assume first argument is not NULL.
14474         Port to DOS.  Omit redundant separators.
14475         Report an error instead of returning NULL.
14476         Use mempcpy instead of memcpy.
14477         (xpath_concat): Remove: not declared or used.
14478
14479         * lib/same.h: Include <stdbool.h>
14480         (same_name): Return bool, not int.
14481         * lib/same.c (same_name): Likewise.
14482         (errno): Don't declare; we assume C89 or better now.
14483
14484         * lib/stat-macros (S_ISCTG, S_ISOFD, S_ISOFL): New macros,
14485         if not already defined.
14486
14487         * lib/xgetcwd.c (errno): Don't declare; we assume C89 or better now.
14488         * lib/dup-safer.c (errno): Likewise.
14489
14490 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
14491
14492         Merge from coreutils.
14493         * modules/c-strtod, modules/c-strtold, modules/canonicalize:
14494         * modules/cycle-check, modules/fcntl-safer, modules/getcwd: New files.
14495         * modules/path-concat: Don't depend on strdup.
14496
14497 2004-08-03  Simon Josefsson  <jas@extundo.com>
14498
14499         * lib/strdup.h: Only use HAVE_DECL_STRDUP if defined.
14500         * lib/progname.h: Don't include stdbool.h.
14501
14502 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
14503
14504         * modules/fatal: Remove, as the "fatal" module wasn't used or working.
14505         * MODULES.html.sh (func_all_modules): Remove fatal.
14506
14507 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
14508
14509         * m4/fatal.m4: Remove, as the "fatal" module wasn't used or working.
14510
14511 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
14512
14513         * lib/fatal.c, fatal.h: Remove as the "fatal" module wasn't used or
14514         working.
14515
14516 2004-08-02  Simon Josefsson  <jas@extundo.com>
14517
14518         * lib/getsubopt.h: New file, with comments from Bruno Haible.
14519         * lib/getsubopt.c: New file, from glibc, but slightly modified based on
14520         suggestions from Paul Eggert <eggert@cs.ucla.edu>.
14521
14522 2004-08-01  Simon Josefsson  <jas@extundo.com>
14523
14524         * lib/xgetdomainname.c: Include stdlib.h, for free().
14525
14526 2004-07-19  Bruno Haible  <bruno@clisp.org>
14527
14528         * MODULES.html.sh (func_all_modules): Add dummy.
14529
14530 2004-07-16  Simon Josefsson  <jas@extundo.com>
14531
14532         * modules/dummy: New file.
14533
14534 2004-07-16  Simon Josefsson  <jas@extundo.com>
14535
14536         * lib/dummy.c: New file.
14537
14538 2004-07-16  Bruno Haible  <bruno@clisp.org>
14539
14540         * lib/backupfile.h: Add extern "C" for C++.
14541         * lib/closeout.h: Likewise.
14542         * lib/copy-file.h: Likewise.
14543         * lib/findprog.h: Likewise.
14544         * lib/full-write.h: Likewise.
14545         * lib/pathname.h: Likewise.
14546         * lib/progname.h: Likewise.
14547         * lib/stpcpy.h: Likewise.
14548         * lib/stpncpy.h: Likewise.
14549         * lib/strcase.h: Likewise.
14550         * lib/strstr.h: Likewise.
14551         * lib/xalloc.h: Likewise.
14552
14553         * lib/mbswidth.h: Add extern "C" for C++.
14554         Reported by Albert Chin-A-Young <china@thewrittenword.com>.
14555
14556 2004-07-13  Robert Millan  <robertmh@gnu.org>
14557
14558         * m4/host-os.m4: s/KNetBSD/kNetBSD/g and s/KFreeBSD/kFreeBSD/g.
14559
14560 2004-07-09  Simon Josefsson  <jas@extundo.com>
14561
14562         * lib/getndelim2.c: Include stddef.h, for ptrdiff_t.  (FreeBSD 4.9
14563         failed without this.)
14564
14565 2004-07-09  Paul Eggert  <eggert@cs.ucla.edu>
14566
14567         * modules/chown (Files): Add lib/fchown-stub.c, since
14568         gl_PREREQ_CHOWN invokes AC_LIBOBJ(fchown-stub).
14569
14570 2004-07-09  Paul Eggert  <eggert@cs.ucla.edu>
14571
14572         * lib/fchown-stub.c: New file.
14573
14574 2004-06-24  Jim Meyering  <jim@meyering.net>
14575
14576         * lib/obstack.h (obstack_base): Cast to (void *), per documentation.
14577
14578 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
14579
14580         * modules/argz: Omit "#include".
14581
14582         * MODULES.html.sh (func_all_modules): Add calloc, to match
14583         2004-06-01 addition of calloc module.
14584
14585 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
14586
14587         * m4/argz.m4: New file, which is autoupdated from libtool.
14588
14589 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
14590
14591         * lib/argz.c, lib/argz_.h: New files, which are autoupdated from
14592         libtool.
14593
14594 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
14595
14596         * config/srclist-update: Don't insist on "USA." before the
14597         close-comment, as libtool omits the period and puts the */ on a
14598         separate line.
14599         * config/srclist.txt: Add argz.c, argz_.h, argz.m4.
14600         * config/srclistvars.sh: Add LIBTOOL (for eggert only).
14601
14602 2004-06-22  Gary V. Vaughan  <gary@gnu.org>
14603
14604         * modules/argz: New file.
14605         * MODULES.html.sh (func_all_modules): Add argz.
14606
14607 2004-06-12  Jim Meyering  <jim@meyering.net>
14608         and  Paul Eggert  <eggert@cs.ucla.edu>
14609
14610         * modules/hash (Files): Add lib/xalloc.h.
14611         * modules/pipe (Depends-on): Add wait-process.
14612         * modules/stat (Depends-on): Add xalloc.
14613         * modules/userspec (Files): Add lib/userspec.h.
14614         * modules/xstrto
14615
14616         Upgrade from gettext-0.13.
14617         * modules/gettext (Files): Add m4/intmax.m4, m4/longdouble.m4,
14618         m4/longlong.m4, m4/printf-posix.m4, m4/signed.m4, m4/size_max.m4,
14619         m4/wchar_t.m4, m4/wint_t.m4, m4/xsize.m4.
14620
14621 2004-06-10  Jim Meyering  <jim@meyering.net>
14622
14623         * lib/calloc.c: New file.
14624
14625 2004-06-06  Paul Eggert  <eggert@cs.ucla.edu>
14626
14627         * lib/getdate.y (yylex): Allow space between sign and number.
14628         Problem reported by Dan Jacobson.
14629
14630 2004-06-01  Paul Eggert  <eggert@cs.ucla.edu>
14631
14632         Merge from coreutils CVS.
14633
14634         * m4/backupfile.m4, dirname.m4, human.m4, inttypes.m4, longlong.m4,
14635         makepath.m4, memchr.m4, memcmp.m4, mountlist.m4, path-concat.m4,
14636         putenv.m4, quotearg.m4, readutmp.m4, strtoimax.m4, strtoll.m4,
14637         strtoull.m4, strtoumax.m4, ulonglong.m4, vasnprintf.m4,
14638         xstrtol.m4: Fix copyright date and/or serial number.
14639
14640         * m4/chown.m4 (gl_PREREQ_CHOWN): Check for fcntl.h.
14641         See if we need an fchown replacement.
14642         (gl_FUNC_CHOWN_FOLLOWS_SYMLINK): New macro.
14643         (gl_FUNC_CHOWN): Require gl_FUNC_CHOWN_FOLLOWS_SYMLINK,
14644         and use the replacement function if we detect either defect.
14645
14646         * m4/prereq.m4 (gl_PREREQ): Add gl_ALLOCSA, gl_CLOEXEC, gl_INTTOSTR,
14647         gl_UTIMECMP.
14648
14649 2004-06-01  Paul Eggert  <eggert@cs.ucla.edu>
14650         and  Jim Meyering  <jim@meyering.net>
14651
14652         Merge from coreutils CVS.
14653
14654         * lib/stat-macros.h: New file, with contents from file-type.h
14655         and coreutils' system.h.
14656         * lib/file-type.c: Include "stat-macros.h".
14657         * lib/file-type.h (file_type): Move all macro definitions to new file,
14658         stat-macros.h.
14659
14660         * lib/chown.c (rpl_chown) [CHOWN_FAILS_TO_HONOR_ID_OF_NEGATIVE_ONE]:
14661         Wrap old code with this conditional.
14662         [CHOWN_MODIFIES_SYMLINK]: Try to work around a chown
14663         function that does not dereference symlinks.
14664         * lib/lchown.c (lchown) [CHOWN_MODIFIES_SYMLINK]: Just call chown.
14665
14666         * lib/xreadlink.c: Include xreadlink.h first, to catch .h file
14667         dependency problems.
14668         (xreadlink): Accept new arg SIZE, for efficiency.
14669         All decls and uses changed.
14670         * lib/xreadlink.h: Include <stddef.h>, for size_t.
14671
14672         * lib/.cppi-disable: Add alloca_.h, allocsa.h, exit.h, getndelim2.h,
14673         gettext.h, localcharset.h, strdup.h, strndup.h, strtoul.c, time_r.h.
14674
14675         * lib/.cvsignore: Add alloca.h, fnmatch.h, poll.h, stdbool.h,
14676         sysexits.h.
14677
14678 2004-06-01  Jim Meyering  <jim@meyering.net>
14679
14680         * m4/calloc.m4: New file.
14681
14682 2004-05-31  Paul Eggert  <eggert@cs.ucla.edu>
14683
14684         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Detect _Bool bug in HP aC++/ANSI
14685         C B3910B A.05.55 [Dec 04 2003].  Problem reported by Jim Meyering.
14686         Also, fix a typo in a diagnostic.
14687
14688 2004-05-30  Paul Eggert  <eggert@cs.ucla.edu>
14689
14690         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Do not require AC_FUNC_MALLOC
14691         or AC_FUNC_REALLOC.
14692
14693 2004-05-30  Paul Eggert  <eggert@cs.ucla.edu>
14694
14695         * lib/xmalloc.c (HAVE_MALLOC, HAVE_REALLOC): Do not require these
14696         macros to be defined.
14697         (xnmalloc_inline, xnrealloc_inline, xcalloc): Do not die if
14698         the allocator returns NULL because the requested size is zero.
14699
14700 2004-05-20  Paul Eggert  <eggert@cs.ucla.edu>
14701
14702         * lib/malloc/obstack.c (_obstack) [defined _LIBC]: Bring back this
14703         var.  Add comment explaining why libc still defines it.  This
14704         merges the following patch from glibc:
14705         http://sources.redhat.com/ml/libc-alpha/2004-05/msg00157.html
14706
14707 2004-05-20  Andreas Schwab  <schwab@suse.de>
14708
14709         * m4/free.m4: Replace free if it not known to work, not the other
14710         way round.
14711
14712 2004-05-19  Paul Eggert  <eggert@cs.ucla.edu>
14713
14714         * lib/obstack.c (_obstack): Remove unused variable.  It hasn't been
14715         present in glibc since revision 1.1 of this file.
14716         * lib/obstack.h (_obstack_free, obstack_1grow, obstack_1grow_fast,
14717         obstack_alignment_mask, obstack_alloc, obstack_base,
14718         obstack_blank, obstack_blank_fast, obstack_chunk_size,
14719         obstack_copy, obstack_copy0, obstack_finish, obstack_grow,
14720         obstack_grow0, obstack_init, obstack_int_grow,
14721         obstack_int_grow_fast, obstack_make_room, obstack_memory_used,
14722         obstack_next_free, obstack_object_size, obstack_ptr_grow,
14723         obstack_ptr_grow_fast, obstack_room): Remove declarations of
14724         nonexistent functions.
14725
14726 2004-05-18  Karl Berry  <karl@gnu.org>
14727
14728         * config/srclist.txt: break link for vasnprintf.c.
14729
14730 2004-05-17  Paul Eggert  <eggert@cs.ucla.edu>
14731
14732         Port obstack to the AS/400, where pointers are 16 bytes wide and
14733         you cannot cast an integer to a valid pointer.  This patch is
14734         currently waiting to be integrated into glibc; see
14735         <http://sources.redhat.com/ml/libc-alpha/2004-05/msg00073.html>.
14736
14737         * lib/obstack.h (__PTR_TO_INT, __INT_TO_PTR): Remove.
14738         All uses of __INT_TO_PTR (PTR_TO_INT ...) replaced by __PTR_ALIGN.
14739         (__BPTR_ALIGN, __PTR_ALIGN): New macros.
14740         (struct obstack): temp member is now a union of a pointer and
14741         an integer, instead of an integer.  All integer uses changed.
14742         This does not affect the physical layout of struct obstack,
14743         except on hosts (like the AS/400) where the size or alignment of
14744         void * is greater than that of ptrdiff_t.
14745         (obstack_finish) [! (defined __GNUC__ && defined __STDC__ &&
14746         __STDC__)]: Store temporary in pointer member of union, not
14747         integer member.
14748         * lib/obstack.c: Include <stddef.h>, for offsetof.
14749         (struct fooalign): Remove; it doesn't need a name.
14750         (union fooround): Change double to long double, and add void *.
14751         (DEFAULT_ALIGNMENT): Use offsetof to compute.
14752         (DEFAULT_ALIGNMENT, DEFAULT_ROUNDING): Now an enum constant,
14753         not a macro.  Hence the values are always int; so remove all
14754         casts-to-int in uses.
14755
14756 2004-05-17  Paul Eggert  <eggert@cs.ucla.edu>
14757
14758         * config/srclist.txt: Break link for argp-help.c and argp-parse.c until
14759         we can get this patch merged into glibc.
14760
14761 2004-05-17  Derek R. Price  <derek@ximbiot.com>
14762             Paul Eggert  <eggert@cs.ucla.edu>
14763
14764         * m4/argp: Depend on alloca.
14765
14766 2004-05-17  Derek R. Price  <derek@ximbiot.com>
14767             Paul Eggert  <eggert@cs.ucla.edu>
14768
14769         * lib/argp-help.c, argp-parse.c: Assume <alloca.h> rather than
14770         freecoding.
14771
14772 2004-05-17  Bruno Haible  <bruno@clisp.org>
14773
14774         * lib/vasnprintf.c (VASNPRINTF): Correctly handle the case of a
14775         precision that consists of a '.' followed by an empty digit string.
14776         Patch by Tor Lillqvist <tml@iki.fi>.
14777
14778 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
14779
14780         * m4/alloca.m4 (gl_FUNC_ALLOCA): Define HAVE_ALLOCA_H always,
14781         for backward compatibility with older code.  We need our own
14782         alloca.h if _AIX is defined.  Define HAVE_ALLOCA if we discover
14783         it under some other name, and our alloca.h will define it.
14784
14785 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
14786             Derek Price  <derek@ximbiot.com>
14787
14788         * lib/alloca.c: Include <alloca.h>, to get our interface.
14789         * lib/alloca_.h: Use __alloca on AIX, so that we don't have to
14790         include <alloca.h> first.  Use C89 prototype for alloca; this
14791         requires including <stddef.h> for size_t.  Use extern "C" if C++.
14792         Use #elif for simplicity, since we can assume C89 now.
14793         Don't try to source the system alloca.h since it will not be found
14794         and to prevent recursively including its replacement.
14795         * lib/fnmatch.c: Include <alloca.h> instead of opencoding.
14796         * lib/regex.c: Likewise.
14797
14798 2004-05-16  Derek Price  <derek@ximbiot.com>
14799             Paul Eggert  <eggert@cs.ucla.edu>
14800
14801         getline cleanup.  This changes the getndelim2 API: both order of
14802         arguments, and meaning of delim2 (now uses EOF, not 0, to indicate
14803         no delimiter).
14804
14805         * lib/getline.c: Don't include stddef.h or stdio.h, since our
14806         interface does that.
14807         (getline): Always use getdelim, so that we don't have two
14808         copies of this code.
14809         * lib/getndelim2.c: Include <limits.h>, <inttypes.h>, <stdint.h>
14810         if available.
14811         (PTRDIFF_MAX, SIZE_MAX, SSIZE_MAX): Define if not defined.
14812         (GETNDELIM2_MAXIMUM): New macro.
14813         (getndelim2): Reorder arguments.  delim==EOF now means no delimiter,
14814         instead of the old practice of delim2==0.  All callers changed.
14815         Return -1 on overflow, instead of returning junk.
14816         Do not set *linesize unless allocation succeeds.
14817         * lib/getndelim2.h: Do not include stddef.h; no longer needed, now
14818         that we include sys/types.h.
14819         * lib/getnline.h: Likewise.
14820         * lib/getndelim2.h (GETNLINE_NO_LIMIT): New macro.
14821         (getndelim2): Reorder arguments.
14822         * lib/getnline.c (getnline, getndelim):
14823         Don't discard the NMAX argument.
14824         (getnline): Invoke getndelim, to avoid code duplication.
14825         * lib/getnline.h (GETNLINE_NO_LIMIT): New macro, used instead
14826         of (size_t) -1 by callers of the getnline family.
14827
14828 2004-05-13  Paul Eggert  <eggert@cs.ucla.edu>
14829
14830         * m4/gettime.m4 (gl_GETTIME): Require gl_TIMESPEC.
14831         Check for gettimeofday.
14832         * m4/settime.m4 (gl_SETTIME): Require gl_TIMESPEC.
14833         Check for settimeofday, stime.
14834
14835 2004-05-13  Paul Eggert  <eggert@cs.ucla.edu>
14836
14837         * lib/nanosleep.c (suspended): Change its type from int to
14838         sig_atomic_t volatile.
14839         (first_call): Make it private to rpl_nanosleep, and have it
14840         be zero initially as that's a bit faster.
14841         (my_usleep): Round up fractional times instead of truncating them,
14842         as this is the usual meaning for 'sleep'.
14843
14844         * lib/gettime.c (gettime): Fall back on `time' if `gettimeofday'
14845         doesn't work.
14846         * lib/settime.c: Include <unistd.h>, for stime (on Solaris 8, anyway).
14847         (ENOSYS): Define if not defined.
14848         (settime): Fall back on stime if it exists and settimeofday fails.
14849         But don't bother with fallbacks if a method fails with errno == EPERM.
14850
14851 2004-05-11  Jim Meyering  <jim@meyering.net>
14852
14853         Prior to this change, the save_cwd caller required read access to the
14854         current directory on most systems (ones with the fchdir function).
14855
14856         * lib/save-cwd.c (save_cwd) [HAVE_FCHDIR]: If opening `.' read-only
14857         fails, try write-only, and finally, resort to using xgetcwd.
14858
14859 2004-05-06  Paul Eggert  <eggert@cs.ucla.edu>
14860
14861         * lib/obstack.c, obstack.h: Import changes from libc.
14862
14863 2004-04-28  Bruno Haible  <bruno@clisp.org>
14864
14865         * lib/findprog.c (find_in_path): Treat Cygwin like Windows, since it
14866         also implicitly appends .exe to executables.
14867         * lib/localcharset.c (ISSLASH): Treat Cygwin like Windows, since it now
14868         accepts Windows pathnames.
14869         * lib/pathname.h (ISSLASH, IS_PATH_WITH_DIR, FILESYSTEM_PREFIX_LEN):
14870         Treat Cygwin like Windows, since it now accepts Windows pathnames.
14871         * lib/progreloc.c (ISSLASH, IS_PATH_WITH_DIR, FILESYSTEM_PREFIX_LEN):
14872         Treat Cygwin like Windows, since it now accepts Windows pathnames.
14873         Reported by Derek Robert Price <derek@ximbiot.com>.
14874
14875 2004-04-21  Karl Berry  <karl@gnu.org>
14876
14877         * config/srclist.txt (localcharset.c): break sync.
14878
14879 2004-04-20  Paul Eggert  <eggert@twinsun.com>
14880
14881         * m4/host-os.m4: Add a copyright notice.
14882
14883 2004-04-20  Jim Meyering  <jim@meyering.net>
14884
14885         Change UTILS_ to gl_ in AC_DEFINE'd names.
14886         Change utils_- and jm_-prefixed variables, too.
14887         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Renamed from
14888         UTILS_FUNC_MKDIR_TRAILING_SLASH.
14889         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Renamed from UTILS_FUNC_MKSTEP.
14890
14891         * m4/dirfd.m4 (gl_FUNC_DIRFD): Rename from UTILS_FUNC_DIRFD.
14892         Don't emit trailing blanks.
14893         Also rename jm_-prefixed variables to have gl_ prefix.
14894
14895         * m4/host-os.m4 (gl_HOST_OS): Rename from UTILS_HOST_OS.
14896         Also rename jm_-prefixed variables to have gl_ prefix.
14897
14898         * m4/jm-macros.m4: Reflect the renamings.
14899         * m4/prereq.m4: Likewise.
14900
14901 2004-04-20  Jim Meyering  <jim@meyering.net>
14902
14903         * lib/getndelim2.c (getndelim2): Upon realloc failure, don't leak
14904         memory.
14905
14906 2004-04-20  Jim Meyering  <jim@meyering.net>
14907             Bruno Haible  <bruno@clisp.org>
14908
14909         * lib/localcharset.c (get_charset_aliases) [!VMS && !WIN32]: Don't leak
14910         memory when realloc fails.
14911
14912 2004-04-19  Jim Meyering  <jim@meyering.net>
14913
14914         * m4/readutmp.m4 (gl_PREREQ_READUTMP): Require gl_FUNC_FREE,
14915         now that readutmp.c may call `free (0)'.
14916
14917 2004-04-19  Bruno Haible  <bruno@clisp.org>
14918
14919         * m4/mbrtowc.m4: Change jm_ to gl_ in cache variables as well.
14920         * m4/inttypes_h.m4: Likewise.
14921         * m4/stdint_h.m4: Likewise.
14922         * m4/intmax_t.m4: Likewise.
14923         * m4/uintmax_t.m4: Likewise.
14924
14925 2004-04-18  Jim Meyering  <jim@meyering.net>
14926
14927         * m4/prereq.m4: Don't forbid jm_ prefix.
14928
14929         * m4/afs.m4, m4/allocsa.m4, m4/assert.m4, m4/backupfile.m4:
14930         * m4/bison.m4, m4/check-decl.m4, m4/chown.m4, m4/d-ino.m4:
14931         * m4/d-type.m4, m4/dirname.m4, m4/dos.m4, m4/error.m4, m4/fpending.m4:
14932         * m4/fstypename.m4, m4/fsusage.m4, m4/ftruncate.m4, m4/getdate.m4:
14933         * m4/getgroups.m4, m4/gettext.m4, m4/glibc21.m4, m4/group-member.m4:
14934         * m4/human.m4, m4/intmax.m4, m4/intmax_t.m4, m4/inttostr.m4:
14935         * m4/inttypes.m4, m4/inttypes_h.m4, m4/jm-macros.m4, m4/jm-winsz1.m4:
14936         * m4/jm-winsz2.m4, m4/lchown.m4, m4/lib-check.m4, m4/link-follow.m4:
14937         * m4/localcharset.m4, m4/longlong.m4, m4/ls-mntd-fs.m4, m4/lstat.m4:
14938         * m4/makepath.m4, m4/mbrtowc.m4, m4/mbswidth.m4, m4/memchr.m4:
14939         * m4/memcmp.m4, m4/mkdtemp.m4, m4/mkstemp.m4, m4/mountlist.m4:
14940         * m4/nanosleep.m4, m4/path-concat.m4, m4/perl.m4, m4/prereq.m4:
14941         * m4/putenv.m4, m4/quotearg.m4, m4/regex.m4, m4/stat.m4:
14942         * m4/stdint_h.m4, m4/strftime.m4, m4/strtoimax.m4, m4/strtoll.m4:
14943         * m4/strtoull.m4, m4/strtoumax.m4, m4/timespec.m4, m4/uintmax_t.m4:
14944         * m4/ulonglong.m4, m4/unlink-busy.m4, m4/unlocked-io.m4, m4/uptime.m4,
14945         * m4/utimbuf.m4, m4/utime.m4, m4/utimes-null.m4, m4/vasnprintf.m4:
14946         * m4/xstrtoimax.m4, m4/xstrtol.m4, m4/xstrtoumax.m4:
14947         Change jm_ to gl_ in AC_DEFINE'd names. Update all uses.
14948
14949 2004-04-18  Jim Meyering  <jim@meyering.net>
14950
14951         * lib/readutmp.c (read_utmp) [UTMP_NAME_FUNCTION]: Upon realloc
14952         failure, don't leak memory and do call END_UTMP_ENT.
14953
14954 2004-04-16  Jim Meyering  <jim@meyering.net>
14955
14956         * m4/prereq.m4 (jm_PREREQ_STAT): Remove macro.  It is specific to
14957         coreutils' stat program.
14958         (gl_PREREQ): Don't require jm_PREREQ_STAT.
14959
14960 2004-04-11  Paul Eggert  <eggert@twinsun.com>
14961
14962         * lib/inttostr.h: Include <limits.h> unconditionally, since we assume
14963         C89.
14964         (CHAR_BIT): Remove, since we assume C89.
14965         Include <stdint.h> if available, as per current Autoconf CVS advice.
14966
14967 2004-03-31  Jim Meyering  <jim@meyering.net>
14968
14969         * m4/prereq.m4: Require AC_FUNC_MALLOC, not jm_FUNC_MALLOC.
14970         Require AC_FUNC_REALLOC, not jm_FUNC_REALLOC.
14971         * m4/xalloc.m4: Likewise.
14972
14973 2004-03-30  Paul Eggert  <eggert@twinsun.com>
14974
14975         Merge from coreutils.
14976
14977         * m4/inttostr.m4: New file.
14978         * m4/getdate.m4 (gl_GETDATE): Remove time-related stuff.
14979         Require AM_STDBOOL_H and gl_TIMESPEC instead.
14980         Require gl_CLOCK_TIME.
14981         * m4/clock_time.m4 (gl_CLOCK_TIME): Require AC_GNU_SOURCE.
14982
14983 2004-03-30  Paul Eggert  <eggert@twinsun.com>
14984
14985         * lib/cloexec.h, cloexec.c (set_cloexec_flag): Return int
14986         not bool, to be more consistent with Unix conventions.
14987         Suggested by Bruno Haible.
14988
14989         Merge from coreutils.
14990
14991         * lib/imaxtostr.c, lib/inttostr.c, lib/inttostr.h, lib/offtostr.c:
14992         * lib/umaxtostr.c: New files.
14993
14994         * lib/getdate.h: Include stdbool.h, and timespec.h instead of
14995         the usual <time.h> dance.
14996         (get_date): Change signature to support fractional time stamps.
14997         All callers changed.
14998         * lib/getdate.y: Include "getdate.h" first, as we can now
14999         assume C89 and don't need to worry about 'const'.
15000         Similarly, include "unlocked-io.h" near start, not in middle.
15001         Include <limits.h>.
15002         (textint.value): Use long int rather than int.
15003         (textint.digits): Use size_t rather than int.
15004         (BILLION, LOG10_BILLION): New constants.
15005         (parser_control): New member rel_ns.  Members day_ordinal,
15006         time_zone, month, day, hour, minutes, rel_year, rel_month,
15007         rel_day, rel_hour, rel_minutes, rel_seconds
15008         are now long int, not int.  Member seconds is now struct timespec,
15009         not int.  New member timespec_seen.  Members dates_seen, days_seen,
15010         local_zones_seen, rels_seen, times_seen, zones_seen are now size_t,
15011         not int.
15012         (%union.intval): Now long int, not int.
15013         New member timespec.
15014         (tSDECIMAL_NUMBER, tUDECIMAL_NUMBER): New tokens.
15015         (seconds, signed_seconds, unsigned_seconds): New nonterminals.
15016         (spec): Now is a timespec or an item list.
15017         (timespec, items): New nonterminals.
15018         (time, rel, relunit, number, get_date):
15019         Add support for fractional seconds.
15020         (time): Fix bug: seconds weren't cleared in "00:00 +0000" syntax.
15021         (gmtime, localtime, mktime): Remove decls; not needed with C89.
15022         (to_hour): First arg is now long int, not int.
15023         (to_year): Returns long int, not int.
15024         Don't treat year -70 like 70.
15025         (tm_diff): Returns long int, not int.
15026         (lookup_word): Use bool instead of int when appropriate.
15027         (yylex): Use size_t for count, not int.
15028         Detect overflow when parsing large integer constants.
15029         Add support for fractions.
15030         (get_date): Make pointers 'const' if possible.
15031         Use more-portable code to detect integer overflow.
15032         (main) [TEST]: Adjust to above changes.  Test for localtime failure.
15033         Don't use ctime; it's not reliable if the year has >4 digits.
15034
15035         * lib/human.c (humblock): Inspect BLOCKSIZE if BLOCK_SIZE isn't set.
15036         This is for compatibility with BSD.
15037
15038         * lib/timespec.h (ST_TIME_CMP_NS, ST_TIME_CMP): Define.
15039         (ATIME_CMP, CTIME_CMP, MTIME_CMP, TIMESPEC_NS): Likewise.
15040         From coreutils' system.h.
15041
15042         * lib/userspec.c: Don't include "posixver.h".
15043         (parse_user_spec): Fall back on USER.GROUP parsing, regardless
15044         of POSIX version, as POSIX 1003.1-2001 allows that behavior as a
15045         compatible extension.  Simplify code by removing a boolean int
15046         that was always nonzero if a string was nonnull.
15047
15048 2004-03-30  Jim Meyering  <jim@meyering.net>
15049
15050         Merge from coreutils.
15051
15052         Avoid a configure-time warning about sys/ucred.h on OSF V4.0.
15053         * m4/ls-mntd-fs.m4: Test for sys/ucred.h separately, since
15054         on some systems one must include <grp.h> before it.
15055         Reported by Christian Krackowizer.
15056
15057 2004-03-30  Jim Meyering  <jim@meyering.net>
15058
15059         Merge from coreutils.
15060
15061         * lib/mountlist.c [HAVE_SYS_UCRED_H]: Include grp.h before sys/ucred.h.
15062
15063         * lib/readtokens.c (readtoken): Don't leak 64 bytes when reading
15064         an empty input stream.
15065
15066         * lib/readtokens.c: Include <stdbool.h>.
15067         (readtoken): Use `size_t' rather than int/long.
15068         All callers adjusted.
15069         Use `bool' rather than `int' where appropriate.
15070         Use memset rather than an explicit loop.
15071         Use x2nrealloc rather than xrealloc.
15072         Allow the use of `\0' as a delimiter.
15073         (readtokens): Likewise.
15074         * lib/readtokens.h (readtoken, readtokens): Update prototypes.
15075
15076 2004-03-30  Jim Meyering  <jim@meyering.net>
15077
15078         * m4/realloc.m4: Remove file, since now it does no more than
15079         AC_REQUIRE([AC_FUNC_REALLOC]), and that can be done via
15080         the `configure.ac' section of module/realloc.
15081         * m4/malloc.m4: Likewise, but for AC_FUNC_MALLOC.
15082
15083 2004-03-30  Bruno Haible  <bruno@clisp.org>
15084
15085         * lib/getloadavg.c (getloadavg): Don't assume setlocale returns
15086         nonnull.
15087
15088 2004-03-29  Paul Eggert  <eggert@twinsun.com>
15089
15090         Merge changes to getloadavg.c from coreutils and Emacs.
15091
15092         * lib/getloadavg.c [!defined HAVE_SETLOCALE] (setlocale):
15093         Define to an expression, not to the empty string.
15094         Include cloexec.h and xalloc.h.
15095         (getloadavg): Restore LC_NUMERIC locale after setting it temporarily.
15096         Use set_cloexec_flag rather than rolling our own.
15097         * lib/cloexec.c, lib/cloexec.h: New files.
15098
15099 2004-03-29  Paul Eggert  <eggert@twinsun.com>
15100
15101         * m4/cloexec.m4: New file.
15102
15103 2004-03-18  Paul Eggert  <eggert@twinsun.com>
15104
15105         * lib/getopt.h: Sync with libc CVS.
15106
15107 2004-03-18  Paul Eggert  <eggert@twinsun.com>
15108             Bruno Haible  <bruno@clisp.org>
15109
15110         * m4/mbswidth.m4 (gl_MBSWIDTH): Also test whether <wchar.h> declares
15111         mbswidth.
15112
15113 2004-03-18  Paul Eggert  <eggert@twinsun.com>
15114             Bruno Haible  <bruno@clisp.org>
15115
15116         * lib/mbswidth.h: Include <wchar.h> only if
15117         HAVE_DECL_MBSWIDTH_IN_WCHAR_H, not on all platforms that have
15118         <wchar.h>.
15119         * lib/mbswidth.c: Include <stdio.h> and <time.h> before <wchar.h>.
15120
15121 2004-03-09  Paul Eggert  <eggert@twinsun.com>
15122
15123         * lib/argp-parse.c, getopt.c, getopt.h, getopt1.c:
15124         Sync with libc CVS.
15125         * lib/getopt_int.h: New file, also synced from libc.
15126
15127 2004-03-09  Paul Eggert  <eggert@twinsun.com>
15128
15129         * config/srclistvars.sh: Add GNUWWWLICENSES for eggert.
15130         * config/srclist.txt: Sync getopt with libc.  Add getopt_int.h.
15131         Bring back getopt.c, getopt.h, getopt1.c.
15132
15133 2004-03-07  Paul Eggert  <eggert@twinsun.com>
15134
15135         * m4/c-stack.m4 (gl_PREREQ_C_STACK): Renamed from jm_PREREQ_C_STACK.
15136         All uses changed.  Check for sa_sigaction member; this fixes
15137         a bug first reported by Jason Andrade in
15138         <http://mail.gnu.org/archive/html/bug-textutils/2003-03/msg00027.html>.
15139
15140 2004-03-07  Paul Eggert  <eggert@twinsun.com>
15141
15142         * lib/c-stack.c (SIGACTION_WORKS): New macro.  Use it instead of long
15143         '#if' expressions.  Unlike the code it replaces, it does not
15144         depend on (defined _SC_PAGESIZE).  However, it does depend on
15145         HAVE_STRUCT_SIGACTION_SA_SIGACTION; this last change fixes a bug
15146         first reported by Jason Andrade in
15147         <http://mail.gnu.org/archive/html/bug-textutils/2003-03/msg00027.html>.
15148
15149 2004-02-25  Simon Josefsson  <jas@extundo.com>
15150
15151         * m4/strdup.m4 (gl_PREREQ_STRDUP): Check whether strdup is declared.
15152
15153 2004-02-25  Simon Josefsson  <jas@extundo.com>
15154
15155         * lib/strdup.h: New file.
15156         * lib/strdup.c: Include it.
15157         * lib/path-concat.c: Include strdup.h. Drop strdup declaration.
15158         * lib/userspec.c: Include strdup.h. Drop strdup declaration.
15159
15160 2004-02-23  Karl Berry  <karl@gnu.org>
15161
15162         * doc/maintain.texi, doc/standards.texi, doc/make-stds.texi: new files
15163         (from fencepost.gnu.org:/gd/gnuorg).
15164
15165 2004-02-23  Karl Berry  <karl@gnu.org>
15166
15167         * config/srclistvars.sh (GNUORG) [karl]: redefine.
15168         * config/srclist.txt: add maintain/standards documents.
15169
15170 2004-02-18  Bruno Haible  <bruno@clisp.org>
15171
15172         * m4/xsize.m4 (gl_XSIZE): Require AC_C_INLINE.
15173         Reported by Derek Robert Price <derek@ximbiot.com>.
15174
15175 2004-02-16  Karl Berry  <karl@gnu.org>
15176
15177         * config/mkinstalldirs, install-sh: update from automake.
15178
15179 2004-02-06  Karl Berry  <karl@gnu.org>
15180
15181         * m4/po.m4: update from gettext 0.14.1.
15182
15183 2004-02-06  Karl Berry  <karl@gnu.org>
15184
15185         * lib/config.charset: update from gettext 0.14.1.
15186
15187 2004-02-05  Paul Eggert  <eggert@twinsun.com>
15188
15189         Add comments and code, prompted by suggestions from Bruno Haible
15190         for sh-quote.
15191         * lib/quotearg.h (quotearg_alloc): New decl.  Improve the comments
15192         describing the enum quoting_style values.
15193         * lib/quotearg.c (quotearg_alloc): New function.
15194         (quotearg_buffer_restyled): Treat lone { and } as special.
15195         Treat = as special.  Work around bug with older shells
15196         that "see" a '\' that is really the 2nd byte of a multibyte char.
15197         Quote empty string with shell_quoting_style.
15198
15199 2004-02-03  Bruno Haible  <bruno@clisp.org>
15200
15201         * m4/pipe.m4: New file, from GNU gettext.
15202
15203 2004-02-03  Bruno Haible  <bruno@clisp.org>
15204
15205         * lib/pipe.h: New file, from GNU gettext.
15206         * lib/pipe.c: New file, from GNU gettext.
15207
15208 2004-01-27  Bruno Haible  <bruno@clisp.org>
15209
15210         * m4/execute.m4: New file, from GNU gettext.
15211
15212 2004-01-27  Bruno Haible  <bruno@clisp.org>
15213
15214         * lib/execute.h: New file, from GNU gettext.
15215         * lib/execute.c: New file, from GNU gettext.
15216         * lib/w32spawn.h: New file, from GNU gettext.
15217
15218 2004-01-24  Paul Eggert  <eggert@twinsun.com>
15219
15220         Merge from diffutils.
15221
15222         * lib/file-type.c (file_type): Add typed memory objects.
15223         * lib/file-type.h (S_TYPEISTMO): New macro.
15224
15225         * lib/c-stack.h (c_stack_action): Remove argv argument.
15226         * lib/c-stack.c (c_stack_action): Likewise.  All uses changed.
15227         (die): Don't calculate message unless segv_action returns.
15228         (get_stack_location, min_address_from_argv, max_address_from_argv,
15229         volatile stack_base, volatile_stack_size): Remove.
15230         (segv_handler): If ! HAVE_XSI_STACK_OVERFLOW_HEURISTIC, assume
15231         that every segmentation violation is a stack overflow.  (Ouch!)
15232         See Debian bug 136249 (still outstanding) for more info about why
15233         HAVE_XSI_STACK_OVERFLOW_HEURISTIC fails on Linux kernels.
15234
15235 2004-01-24  Paul Eggert  <eggert@twinsun.com>
15236
15237         Exit-status fix from coreutils.
15238
15239         Use exit_failure consistently in place of EXIT_FAILURE,
15240         so that program exit statuses are consistent on failure.
15241
15242         * lib/argmatch.c (ARGMATCH_DIE) [! defined ARGMATCH_DIE]:
15243         Include "exitfail.h", and use exit_failure rather than EXIT_FAILURE.
15244         * lib/argmatch.h: Comment fix to match the above.
15245         * lib/obstack.c (obstack_exit_failure) [!defined _LIBC]:
15246         Now a macro referring to exit_failure, instead of a separate
15247         variable.  Include "exitfail.h" to get it.
15248         * lib/xstrtol.h: Include "exitfail.h".
15249         (STRTOL_FATAL_ERROR): Exit with status exit_failure, not 2.
15250
15251         * lib/long-options.c (parse_long_options): Use prototype
15252         for usage function arg.  Pass it EXIT_SUCCESS rather than 0,
15253         for clarity.
15254
15255 2004-01-21  Jim Meyering  <jim@meyering.net>
15256
15257         * lib/mktime.c (__mktime_internal) [!_LIBC]: Define to mktime_internal
15258         so as not to conflict with a different-sized __mktime_internal
15259         function in GNU libc.
15260         * lib/timegm.c (__mktime_internal) [!_LIBC]: Likewise.
15261         Problem building statically-linked `ls' reported by Michael Brunnbauer.
15262
15263 2004-01-20  Karl Berry  <karl@gnu.org>
15264
15265         * config/config.guess: update from config.
15266
15267         * config/srclistvars.sh: GNUWWWLICENSES for karl.
15268
15269 2004-01-20  Bruno Haible  <bruno@clisp.org>
15270
15271         Safer stack allocation.
15272         * lib/setenv.c: Include allocsa.h.
15273         (alloca): Remove fallback definition.
15274         (freea): Remove macro.
15275         (__add_to_environ) [!_LIBC]: Use allocsa instead of alloca. Use freesa
15276         instead of freea.
15277
15278 2004-01-20  Bruno Haible  <bruno@clisp.org>
15279
15280         * m4/eealloc.m4: New file, from GNU gettext.
15281
15282 2004-01-20  Bruno Haible  <bruno@clisp.org>
15283
15284         * m4/allocsa.m4: New file, from GNU gettext.
15285
15286 2004-01-20  Bruno Haible  <bruno@clisp.org>
15287
15288         * lib/xallocsa.h: New file, from GNU gettext.
15289         * lib/xallocsa.c: New file, from GNU gettext.
15290
15291 2004-01-20  Bruno Haible  <bruno@clisp.org>
15292
15293         * lib/wait-process.c: On Windows, include windows.h. Needed on mingw.
15294
15295 2004-01-20  Bruno Haible  <bruno@clisp.org>
15296
15297         * lib/wait-process.c (wait_subprocess): Add ignore_sigpipe argument.
15298         * lib/wait-process.c (wait_subprocess): Likewise. Handle SIGPIPE
15299         specially.
15300
15301 2004-01-20  Bruno Haible  <bruno@clisp.org>
15302
15303         * lib/wait-process.c (wait_process): Disable the 2003-10-31 waitid()
15304         patch.
15305
15306 2004-01-20  Bruno Haible  <bruno@clisp.org>
15307
15308         * lib/wait-process.c (cleanup_slaves): Use ANSI C declaration.
15309
15310 2004-01-20  Bruno Haible  <bruno@clisp.org>
15311
15312         * lib/eealloc.h: New file.
15313
15314 2004-01-20  Bruno Haible  <bruno@clisp.org>
15315
15316         * lib/binary-io.h: Avoid warnings on Cygwin.
15317
15318 2004-01-20  Bruno Haible  <bruno@clisp.org>
15319
15320         * lib/allocsa.h: New file, from GNU gettext.
15321         * lib/allocsa.c: New file, from GNU gettext.
15322
15323 2004-01-18  Karl Berry  <karl@gnu.org>
15324
15325         * doc/gpl.texi, doc/lgpl.texi: new files.
15326
15327 2004-01-18  Karl Berry  <karl@gnu.org>
15328
15329         * config/srclistvars.sh (GNUWWWLICENSES): new variable.
15330         * config/srclist.txt ({fdl,gpl,lgpl}.text): get from there.
15331
15332 2004-01-15  Paul Eggert  <eggert@twinsun.com>
15333
15334         Merge from coreutils.
15335
15336         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for uintptr_t.
15337         * m4/posixver.m4 (gl_POSIXVER): Require gl_DEFAULT_POSIX2_VERSION.
15338         (gl_DEFAULT_POSIX2_VERSION): Move
15339         the documentation from 'configure' into 'config.hin',
15340         so that 'configure --help' isn't burdened by it and
15341         we don't have to worry about its formatting there.
15342         Reword the documentation so that it's more succinct
15343         and can be run together into a single paragraph.
15344         * m4/same.m4 (gl_SAME): Check for pathconf.
15345
15346 2004-01-15  Paul Eggert  <eggert@twinsun.com>
15347
15348         Merge from coreutils.
15349
15350         * lib/posixver.c: Include posixver.h.
15351
15352         * lib/same.c: Include <stdbool.h>, <limits.h>.
15353         (_POSIX_NAME_MAX): Define if not defined.
15354         (MIN): New macro.
15355         (same_name): If file names are silently truncated, report
15356         that the file names are the same if they are the same after
15357         the silent truncation.
15358
15359         * lib/xstrtod.h (xstrtod): Accept an extra arg, specifying the
15360         conversion function.
15361         * lib/xstrtod.c (xstrtod): Likewise.  All callers changed to
15362         include c-strtod.h and use c_strtod.  Don't include stdlib.h; no
15363         longer needed.
15364
15365 2004-01-15  Jim Meyering  <jim@meyering.net>
15366
15367         Merge from coreutils.
15368
15369         * m4/clock_time.m4 (gl_CLOCK_TIME): Don't set LIB_CLOCK_GETTIME
15370         if no library is required.
15371         * m4/jm-macros.m4: Don't require UTILS_SYS_OPEN_MAX.
15372         * m4/jm-macros.m4 (jm_MACROS): Require gl_FUNC_FREE.
15373         * m4/jm-macros.m4 (jm_MACROS): Require autoconf-2.58.
15374         (AC_LANG_SOURCE): Remove definition, now that we require autoconf-2.58.
15375         * m4/jm-macros.m4 (jm_MACROS): Don't require AC_FUNC_FTW.
15376         * m4/lib-check.m4 (jm_LIB_CHECK): Do not set LIB_CRYPT to the
15377         value, $ac_cv_search_crypt, if it's "none required".
15378         * m4/posixver.m4 (gl_DEFAULT_POSIX2_VERSION): New macro.
15379         * m4/prereq.m4 (jm_PREREQ): Require AC_FUNC_GETLOADAVG,
15380         not gl_FUNC_GETLOADAVG.
15381         * m4/prereq.m4 (jm_PREREQ): Require gl_READTOKENS, gl_MD5, gl_MAKEPATH,
15382         gl_LONG_OPTIONS, and gl_IDCACHE, gl_GETUGROUPS.
15383
15384 2004-01-15  Jim Meyering  <jim@meyering.net>
15385
15386         Merge from coreutils.
15387
15388         * lib/md5.h (rol) [__GNUC__ && __i386__]: Don't use `asm' code.  These
15389         days, gcc-3.x does better all by itself.  Patch from Dean Gaudet:
15390         http://mail.gnu.org/archive/html/bug-coreutils/2003-11/msg00144.html
15391
15392         * lib/posixver.c (DEFAULT_POSIX2_VERSION): Use definition of new,
15393         optional configure-time default.
15394
15395         * lib/version-etc.c (version_etc_copyright): Update copyright date.
15396
15397         * lib/xreadlink.c (xreadlink): Correct outdated comment.
15398
15399 2004-01-15  Alexandre Duret-Lutz  <adl@gnu.org>
15400
15401         Merge from coreutils.
15402
15403         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Do not set LIB_NANOSLEEP to the
15404         value, $ac_cv_search_nanosleep, if it's "none required".
15405
15406 2004-01-14  Paul Eggert  <eggert@twinsun.com>
15407
15408         * lib/fnmatch_loop.c (ALLOCA_LIMIT): Remove macro, which collided
15409         with like-named macro in fnmatch.c.
15410         (EXT): Use an internal constant instead.
15411
15412         Merge fnmatch patches from glibc.
15413         * lib/fnmatch.c (mbsinit): Remove define.
15414         Add libc_hidden_ver (__fnmatch, fnmatch).
15415         * lib/fnmatch_loop.c (FCT): Cast to int32_t and UCHAR when appropriate.
15416         Adjust to renaming of collseq_table_lookup to __collseq_table_lookup.
15417
15418 2004-01-14  Karl Berry  <karl@gnu.org>
15419
15420         * config/install-sh: update from automake.
15421
15422 2004-01-13  Karl Berry  <karl@gnu.org>
15423
15424         * config/install-sh: update from automake.
15425
15426 2004-01-09  Karl Berry  <karl@gnu.org>
15427
15428         * config/install-sh: update from automake.
15429
15430 2004-01-05  Karl Berry  <karl@gnu.org>
15431
15432         * config/config.{sub,guess}: update from config.
15433
15434 2003-12-31  Karl Berry  <karl@gnu.org>
15435
15436         * config/depcomp: update from automake.
15437
15438 2003-12-14  Karl Berry  <karl@gnu.org>
15439
15440         * lib/config.charset: update from gettext-runtime.
15441
15442 2003-12-03  Paul Eggert  <eggert@twinsun.com>
15443
15444         * lib/getgroups.c (getgroups): xmalloc takes one argument, not two.
15445         Bug reported by Alfred M. Szmidt.
15446
15447 2003-12-03  Bruno Haible  <bruno@clisp.org>
15448
15449         * m4/gettext.m4: Upgrade from gettext-0.13.
15450         * m4/po.m4: Upgrade from gettext-0.13.
15451         * m4/size_max.m4 (gl_SIZE_MAX): Don't use the _ONCE macros here.
15452         * m4/intmax.m4: New file, from gettext-0.13.
15453         * m4/printf-posix.m4: New file, from gettext-0.13.
15454
15455 2003-11-29  Karl Berry  <karl@gnu.org>
15456
15457         * lib/argp-{help.c,parse.c,namefrob.h}, argp.h: update from libc.
15458
15459 2003-11-25  Paul Eggert  <eggert@twinsun.com>
15460             Bruno Haible  <bruno@clisp.org>
15461
15462         * lib/printf-parse.h: Don't include sys/types.h.
15463         (ARG_NONE): New macro.
15464         (char_directive): Change type of *arg_index fields to size_t.
15465         * lib/printf-parse.c: Don't include sys/types.h.
15466         (SSIZE_MAX): Remove macro.
15467         (PRINTF_PARSE): Change the type of the arg_index variables to size_t.
15468         Remove unnecessary overflow check.
15469         * lib/vasnprintf.c (VASNPRINTF): Update for type change of *arg_index
15470         fields.
15471
15472 2003-11-25  Bruno Haible  <bruno@clisp.org>
15473
15474         * modules/vasnprintf (Files): Remove m4/ssize_t.m4.
15475
15476 2003-11-25  Bruno Haible  <bruno@clisp.org>
15477
15478         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Don't require
15479         gt_TYPE_SSIZE_T.
15480
15481 2003-11-24  Paul Eggert  <eggert@twinsun.com>
15482
15483         * modules/alloca: Remove dependency on xalloc.
15484
15485 2003-11-24  Paul Eggert  <eggert@twinsun.com>
15486
15487         * lib/alloca.c: Remove dependency on xalloc module.
15488         (xalloc_die): Remove.
15489         (memory_full) [!defined emacs]: New macro.
15490         [!defined emacs]: Don't include xalloc.h.
15491         (alloca): Invoke memory_full, not xalloc_die, if malloc fails or
15492         address arithmetic overflows.  Change datatypes a bit to avoid
15493         unnecessary casts.
15494
15495 2003-11-22  Jim Meyering  <jim@meyering.net>
15496
15497         * lib/xmalloc.c (x2nrealloc_inline): Fix typos in comments:
15498         s/size/size_t/.
15499
15500 2003-11-21  Karl Berry  <karl@gnu.org>
15501
15502         * config/config.{sub,guess}: update from config.
15503
15504 2003-11-18  Karl Berry  <karl@gnu.org>
15505
15506         * config/config.{sub,guess}: update from config.
15507
15508         * config/(printf-{parse,args}.[ch]): sync broken, sigh.
15509
15510 2003-11-17  Paul Eggert  <eggert@twinsun.com>
15511
15512         * README: Mention that S+T cannot overflow if S is the size of
15513         an existing object and T is sufficiently small.
15514
15515 2003-11-17  Jim Meyering  <jim@meyering.net>
15516
15517         On systems without utime and without a utimes function capable of
15518         dealing with a NULL struct utimbuf* argument, this utime replacement
15519         could -- in unusual circumstances -- leak a file descriptor.
15520         * lib/utime.c: Include <unistd.h> and <errno.h>.
15521         (utime_null): Be sure to close `fd' and to preserve errno.
15522         Reported by Geoff Collyer via Arnold Robbins.
15523
15524 2003-11-17  Bruno Haible  <bruno@clisp.org>
15525
15526         * modules/vasnprintf (Files): Add m4/ssize_t.m4.
15527         (Depends-on): Add xsize.
15528
15529 2003-11-17  Bruno Haible  <bruno@clisp.org>
15530
15531         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Require gt_TYPE_SSIZE_T.
15532
15533 2003-11-17  Bruno Haible  <bruno@clisp.org>
15534
15535         * lib/vasnprintf.c (alloca): Remove fallback definition.
15536         (freea): Remove definition.
15537         (VASNPRINTF): Use alloca only for small sizes, say <= 4000 bytes.
15538         Reported by Paul Eggert.
15539
15540 2003-11-16  Paul Eggert  <eggert@twinsun.com>
15541             Bruno Haible  <bruno@clisp.org>
15542
15543         Protect against address arithmetic overflow.
15544         * lib/printf-args.h: Include stddef.h.
15545         (arguments): Change type of field 'count' to size_t.
15546         * lib/printf-args.c (printf_fetchargs): Use size_t instead of
15547         'unsigned int' where appropriate.
15548         * lib/printf-parse.h: Include sys/types.h.
15549         (char_directive): Change type of *arg_index fields to ssize_t.
15550         (char_directives): Change type of fields 'count', max_*_length to
15551         size_t.
15552         * lib/printf-parse.c: Include sys/types.h and xsize.h.
15553         (SSIZE_MAX): Define fallback value.
15554         (PRINTF_PARSE): Use size_t instead of 'unsigned int' and ssize_t
15555         instead of 'int' where appropriate. Check a_allocated, d_allocated
15556         against overflow. Reject %m$ argument numbers > SSIZE_MAX + 1.
15557         * lib/vasnprintf.c: Include xsize.h.
15558         (VASNPRINTF): Use size_t instead of 'unsigned int' where appropriate.
15559         Check alloca, malloc, realloc, ENSURE_ALLOCATION arguments against
15560         overflow. Avoid wraparound when converting a width or precision from
15561         decimal to binary.
15562
15563 2003-11-16  Bruno Haible  <bruno@clisp.org>
15564
15565         Update from GNU gettext.
15566         * lib/printf-parse.c: Generalize to it can be compiled for wide
15567         strings.
15568         (PRINTF_PARSE, CHAR_T, DIRECTIVE, DIRECTIVES): New macros.
15569         * lib/vasnprintf.c: Generalize to it can be compiled for wide strings.
15570         (VASNPRINTF, CHAR_T, DIRECTIVE, DIRECTIVES, PRINTF_PARSE, USE_SNPRINTF,
15571         SNPRINTF): New macros.
15572         Don't include <alloca.h> if the file is used inside libintl.
15573         (local_wcslen): New function, for Solaris 2.5.1.
15574         (VASNPRINTF): Use it instead of wcslen.
15575
15576 2003-11-16  Bruno Haible  <bruno@clisp.org>
15577
15578         * lib/xsize.h (xmax): New function.
15579         (xsum, xsum3, xsum4): Declare as "pure" functions.
15580
15581 2003-11-12  Paul Eggert  <eggert@twinsun.com>
15582
15583         * modules/xalloc (Files): Undo latest change, since xalloc.h
15584         no longer needs SIZE_MAX or PTRDIFF_MAX.
15585
15586 2003-11-12  Paul Eggert  <eggert@twinsun.com>
15587
15588         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Do not require gl_SIZE_MAX or
15589         gl_PTRDIFF_MAX.
15590
15591 2003-11-12  Paul Eggert  <eggert@twinsun.com>
15592
15593         * lib/xstrtol.c (__xstrtol): Remove "break" immediately after
15594         "return", to pacify some unknown compiler.  Problem reported
15595         by Joerg Schilling.
15596
15597 2003-11-12  Paul Eggert  <eggert@twinsun.com>
15598
15599         * lib/xalloc.h: Do not include <limits.h> or <stdint.h>.
15600         (xalloc_oversized): Use sizeof (ptrdiff_t) and sizeof (size_t) for
15601         the heuristic, rather than PTRDIFF_MAX and SIZE_MAX.  This
15602         heuristic is just as accurate as far as we know, and it removes a
15603         dependency on size_max.m4 and ptrdiff_max.m4.
15604
15605 2003-11-11  Bruno Haible  <bruno@clisp.org>
15606
15607         * modules/xsize (Files): Add m4/size_max.m4.
15608         * modules/xalloc (Files): Add m4/size_max.m4, m4/ptrdiff_max.m4.
15609
15610 2003-11-11  Bruno Haible  <bruno@clisp.org>
15611
15612         * m4/size_max.m4: New file.
15613         * m4/ptrdiff_max.m4: New file.
15614         * m4/xsize,m4 (gl_XSIZE): Require gl_SIZE_MAX.
15615         * m4/xalloc.m4 (gl_PREREQ_XALLOC): New macro.
15616         (gl_XALLOC): Invoke it.
15617
15618 2003-11-11  Bruno Haible  <bruno@clisp.org>
15619
15620         * lib/xsize.h (SIZE_MAX): Remove fallback definition.
15621         * lib/xalloc.h: Include limits.h. Assume SIZE_MAX and PTRDIFF_MAX are
15622         defined.
15623
15624 2003-11-10  Paul Eggert  <eggert@twinsun.com>
15625
15626         * lib/xalloc.h (xalloc_oversized): [! (defined PTRDIFF_MAX &&
15627         PTRDIFF_MAX < SIZE_MAX)]: Fix off-by-one error that would have
15628         rejected some allocations of exactly SIZE_MAX - 2 bytes.
15629         From Bruno Haible.
15630         [defined PTRDIFF_MAX && PTRDIFF_MAX < SIZE_MAX]: Use SIZE_MAX,
15631         not (size_t) -1, since it's defined here.
15632
15633 2003-11-09  Karl Berry  <karl@gnu.org>
15634
15635         * config/mkinstalldirs, depcomp, mdate-sh: update from automake.
15636
15637 2003-11-06  Paul Eggert  <eggert@twinsun.com>
15638
15639         * lib/xalloc.h [HAVE_STDINT_H]: Include <stdint.h>.
15640         (xalloc_oversized) [! (PTRDIFF_MAX < SIZE_MAX)]:
15641         Reject sizes of exactly SIZE_MAX bytes.
15642         * lib/xreadlink.c: Include "xalloc.h" before checking whether SIZE_MAX
15643         is defined, since "xalloc.h" now defines SIZE_MAX on modern hosts.
15644
15645 2003-11-05  Bruno Haible  <bruno@clisp.org>
15646
15647         * lib/xsize.h: Include limits.h, to avoid a possible collision with
15648         SIZE_MAX defined in <limits.h> on Solaris.
15649
15650 2003-11-04  Jim Meyering  <jim@meyering.net>
15651
15652         * modules/sysexits: Use the `$(VAR)' notation for AC_SUBST'd
15653         variable names, rather than @VAR@.
15654         * modules/poll: Likewise.
15655
15656 2003-11-04  Bruno Haible  <bruno@clisp.org>
15657
15658         * modules/xsize: New file.
15659         * modules/linebreak: Depend on xsize.
15660         * MODULES.html.sh (func_all_modules): Add xsize.
15661
15662 2003-11-04  Bruno Haible  <bruno@clisp.org>
15663
15664         * m4/xsize.m4: New file.
15665
15666 2003-11-04  Bruno Haible  <bruno@clisp.org>
15667
15668         * lib/xsize.h: New file.
15669         * lib/linebreak.c: Include xsize.h.
15670         (mbs_possible_linebreaks, mbs_width_linebreaks): Check malloc()
15671         argument for overflow.
15672         Suggested by Paul Eggert.
15673
15674 2003-11-03  Karl Berry  <karl@gnu.org>
15675
15676         * config/config.{guess,sub}: update from config.
15677
15678 2003-11-03  Jim Meyering  <jim@meyering.net>
15679
15680         * modules/userspec (lib_SOURCES): Add userspec.h.
15681         (Include): Add "userspec.h".
15682         Improve description.
15683
15684 2003-11-03  Jim Meyering  <jim@meyering.net>
15685
15686         * lib/userspec.c: Include "userspec.h".
15687         * lib/userspec.h: New file.
15688
15689 2003-11-03  Bruno Haible  <bruno@clisp.org>
15690
15691         * m4/wait-process.m4 (gl_WAIT_PROCESS): Also check for waitid.
15692
15693 2003-11-03  Bruno Haible  <bruno@clisp.org>
15694
15695         * lib/wait-process.c (wait_process): Use waitid with WNOWAIT if
15696         available, to avoid (extremely rare) race condition.
15697         Suggested by Paul Eggert.
15698
15699 2003-11-02  Karl Berry  <karl@gnu.org>
15700
15701         * config/srclist.txt (vasprintf.c): sync broken, sigh.
15702
15703 2003-10-31  Paul Eggert  <eggert@twinsun.com>
15704
15705         * lib/mountlist.h (struct mount_entry.me_type_malloced): New member.
15706         * lib/mountlist.c (SIZE_MAX): Define if not defined already.
15707         (read_filesystem_list): Set and use me_type_malloced.
15708         Use "sizeof *me" rather than "sizeof (struct mount_entry)" (or
15709         whatever the type happens to be), for brevity and consistency.
15710         Check for size calculation overflow on Alphas running OSF/1.
15711
15712 2003-10-31  Jim Meyering  <jim@meyering.net>
15713
15714         * lib/hash.c: Include "xalloc.h" for use of xalloc_oversized.
15715
15716         * lib/linebuffer.c: Include <string.h> for declaration of memset.
15717
15718 2003-10-30  Paul Eggert  <eggert@twinsun.com>
15719             Bruno Haible  <bruno@clisp.org>
15720
15721         * lib/vasprintf.c: Include <limits.h>, <stdlib.h>.
15722         (vasprintf): Fail if the resulting length doesn't fit in an 'int'.
15723
15724 2003-10-30  Paul Eggert  <eggert@cs.ucla.edu>
15725
15726         * m4/host-os.m4 (UTILS_HOST_OS): Change netbsd*-gnu pattern back to
15727         netbsd*-gnu*.  Suggested by Robert Millan.
15728
15729 2003-10-29  Paul Eggert  <eggert@twinsun.com>
15730
15731         * modules/group-member: Depend on stdbool.
15732
15733 2003-10-29  Paul Eggert  <eggert@twinsun.com>
15734
15735         * m4/xalloc.m4 (gl_XALLOC): Undo previous change.
15736
15737 2003-10-29  Paul Eggert  <eggert@twinsun.com>
15738
15739         * m4/host-os.m4 (UTILS_HOST_OS): Resurrect netbsd*-gnu.  Add comments
15740         to it, and to knetbsd*-gnu and kfreebsd*-gnu.  Remove the '*' from
15741         after the 'gnu' in these cases.  This fixes some bugs in the
15742         previous change, and is based on suggestions by Robert Millan.
15743
15744 2003-10-29  Paul Eggert  <eggert@twinsun.com>
15745
15746         * lib/xalloc.h (xalloc_oversized): Now a macro, not a function,
15747         so that it works even if SIZE_MAX < N.  Do not include <stdbool.h>;
15748         no longer needed.
15749         * lib/quotearg.c (quotearg_n_options): Use it.
15750         * lib/group-member.c: Include <stdbool.h>.
15751         (free_group_info): Arg is now const *; don't free arg.
15752         (get_group_info): Now returns bool and accepts struct group_info *,
15753         rather than returning a malloc'ed struct group_info *.
15754         All uses changed.  Check for overflow in internal size calculation.
15755
15756         * lib/getusershell.c (readname): Simplify the code by using x2nrealloc
15757         rather than xmalloc/xrealloc.
15758         * lib/linebuffer.c (initbuffer, readlinebuffer): Simplify the code by
15759         using x2realloc rather than xmalloc/xrealloc.  Also, fix a C
15760         conformance bug: the old code used a pointer after freeing the
15761         storage that it addressed.
15762         * lib/hash.c (hash_initialize): Simplify the code by using
15763         xalloc_oversized rather than doing it by hand.
15764         * lib/getgroups.c (getgroups): Don't use xrealloc, since we don't need
15765         the buffer preserved.  Use free and xmalloc instead.
15766         * lib/quotearg.c (quotearg_n_options): Likewise.
15767         Use a simpler test for size overflow.  Don't use xalloc_oversized
15768         because unsigned int might be wider than size_t (!); this suggests
15769         that we should switch from unsigned int to size_t for slot numbers.
15770
15771 2003-10-28  Paul Eggert  <eggert@twinsun.com>
15772
15773         * m4/host-os.m4 (UTILS_HOST_OS): Identify GNU/KFreeBSD and
15774         GNU/KNetBSD.  These implementations use glibc atop the FreeBSD and
15775         NetBSD kernels.  Requested by Richard Stallman.
15776
15777 2003-10-27  Paul Eggert  <eggert@twinsun.com>
15778
15779         * lib/exclude.c (new_exclude): Use xzalloc rather than xmalloc
15780         to allocate the returned structure.  Do not allocate a subarray,
15781         as x2nrealloc will do that.
15782         (add_exclude): Use x2nrealloc to reallocate ex->exclude,
15783         instead of xnrealloc.
15784         (add_exclude_file): Use x2realloc instead of malloc + xnrealloc.
15785
15786 2003-10-27  Bruno Haible  <bruno@clisp.org>
15787
15788         * lib/stdbool_.h: Better support for BeOS.
15789
15790 2003-10-26  Paul Eggert  <eggert@twinsun.com>
15791
15792         * m4/xalloc.m4 (gl_XALLOC): Requore AC_C_INLINE, since xalloc.h
15793         now uses inline.
15794
15795 2003-10-26  Paul Eggert  <eggert@twinsun.com>
15796
15797         * lib/xalloc.h (xalloc_oversized): New static inline function, for
15798         callers that want to do their own size-overflow checking.  Include
15799         <stdbool.h>, since xalloc_oversized returns bool.
15800         * lib/xalloc.c (array_size_overflow): Remove.  All callers changed
15801         to use xalloc_oversized.
15802
15803         Add two functions x2realloc, x2nrealloc, for programs that grow
15804         arrays dynamically by doubling their sizes.
15805         * lib/xalloc.h (x2realloc, x2nrealloc): New decls.
15806         * lib/xmalloc.c (x2nrealloc_inline, x2nrealloc, x2realloc):
15807         New functions.
15808
15809         Port to C99 semantics for 'inline' of external functions.
15810         Bug reported by Bruno Haible.
15811         * lib/xmalloc.c (xnmalloc_inline): New static inline function,
15812         with the old contents of xnmalloc.
15813         (xnmalloc, xmalloc): Use it.
15814         (xnrealloc_inline): New static inline function,
15815         with the old contents of xnrealloc.
15816         (xnrealloc, xrealloc): Use it.
15817
15818         * lib/alloc.c (alloca): xmalloc cannot return NULL, so don't test for
15819         that.
15820
15821 2003-10-26  Karl Berry  <karl@gnu.org>
15822
15823         * config/srclist.txt (COPYING.DOC): no longer available from
15824         /gd/gnuorg; don't know where the ultimate source is.
15825
15826 2003-10-25  Paul Eggert  <eggert@twinsun.com>
15827
15828         Fix several address-calculation bugs in the hash modules,
15829         plus some minor code cleanup.
15830
15831         * lib/hash.h: Include <stdbool.h>, for bool.
15832         * lib/hash.c: Don't include <stdbool.h>, since hash.h does it now.
15833         * lib/hash.h (Hash_hasher, hash_get_n_buckets, hash_get_n_buckets_used,
15834         hash_get_n_entries, hash_get_max_bucket_length,
15835         hash_get_entries, hash_do_for_each, hash_string, hash_initialize,
15836         hash_rehash): Use size_t rather than unsigned.
15837         * lib/hash.c (struct hash_table, hash_get_n_buckets,
15838         hash_get_n_buckets_used, hash_get_n_entries,
15839         hash_get_max_bucket_length, hash_table_ok, hash_print_statistics,
15840         hash_get_entries, hash_do_for_each, hash_string, is_prime,
15841         next_prime, hash_initialize, hash_rehash, hash_delete, hash_print):
15842         Likewise.
15843         (SIZE_MAX): Define if not defined.
15844         (hash_get_max_bucket_length, hash_table_ok, hash_lookup,
15845         hash_get_first, hash_get_next, hash_get_entries, hash_do_for_each,
15846         hash_print):
15847         Use const * when possible.
15848         (hash_string): Use (unsigned char) *P rather than *(unsigned char *) P.
15849         (check_tuning): Fix bug: if tuning parameters were very close to
15850         0 or 1, rounding errors could have caused subscript violations.
15851         (hash_initialize, allocate_entry, hash_print): Remove unnecessary cast.
15852         (hash_initialize): Add 'fail:' label
15853         to free table and return NULL, and use it to simplify code.
15854         Use calloc rather than clearing the storage ourself.
15855         (hash_initialize, hash_rehash): Check for arithmetic overflow in
15856         buffer size calculations.
15857         * lib/hash-pjw.h (hash_pjw): Use size_t, not unsigned.
15858         Include <stddef.h>, for size_t.
15859         * lib/hash-pjw.c (hash_pjw): Likewise.
15860         Switch to method described by Bruno Haible.
15861         Include <limits.h>, for CHAR_BIT.
15862         (SIZE_BITS): New macro.
15863
15864 2003-10-23  Paul Eggert  <eggert@twinsun.com>
15865
15866         * m4/getline.m4 (AM_FUNC_GETLINE):
15867         Don't include getndelim2.o twice into LIBOBJS; this breaks on some
15868         hosts.  Problem reported by Derek Robert Price in
15869         <http://mail.gnu.org/archive/html/bug-gnulib/2003-10/msg00092.html>.
15870         This patch can be withdrawn after Autoconf 2.58 is required for gnulib.
15871         * m4/getndelim2.m4 (gl_GETNDELIM2): Likewise.
15872
15873 2003-10-21  Paul Eggert  <eggert@twinsun.com>
15874
15875         * lib/getndelim2.c (getndelim2): When size calculation overflows,
15876         ceiling the allocation at NMAX bytes rather than silently
15877         discarding input bytes before NMAX is reached.  This makes
15878         a difference only if NMAX exceeds SIZE_MAX / 2.
15879
15880         * lib/obstack.c: Merge from glibc.
15881         [defined _LIBC]: Include <obstack.h>, not "obstack.h".
15882         Add libc_hidden_def (_obstack_newchunk).
15883         (_obstack_free) [! defined _LIBC]: Remove.
15884         [defined _LIBC]: Make a strong alias from obstack_free, rather than
15885         a clone of the function body.
15886         (fputs) [defined _LIBC && defined USE_IN_LIBIO]: Remove.
15887         [defined _LIBC && !defined USE_IN_LIBIO]: Include <libio/iolibio.h>.
15888
15889         * lib/obstack.h: Indenting cleanup, to make it easier to merge with
15890         glibc.
15891         (obstack_grow, obstack_grow0): Remove unnecessary parentheses around
15892         arg to memcpy.
15893
15894         * lib/obstack.h (obstack_1grow_fast): Properly parenthesize arg.
15895         (obstack_ptr_grow_fast, obstack_int_grow_fast):
15896         Don't use lvalue casts, as GCC plans to remove support for them
15897         in GCC 3.5.  Reported by Joseph S. Myers.  This bug
15898         was also present in the non-GCC version, indicating that this
15899         code had always been buggy and had never been widely used.
15900         (obstack_1grow, obstack_ptr_grow, obstack_int_grow, obstack_blank):
15901         Use the fast variant of each macro, rather than copying the
15902         definiens of the fast variant; that way, we'll be more likely to
15903         catch future bugs in the fast variants.
15904
15905 2003-10-20  Bruno Haible  <bruno@clisp.org>
15906
15907         * modules/wait-process: New file.
15908         * MODULES.html.sh (func_all_modules): Add wait-process.
15909
15910 2003-10-20  Bruno Haible  <bruno@clisp.org>
15911
15912         * m4/wait-process.m4: New file.
15913
15914 2003-10-20  Bruno Haible  <bruno@clisp.org>
15915
15916         * lib/wait-process.h: New file, from GNU gettext.
15917         * lib/wait-process.c: New file, from GNU gettext.
15918
15919 2003-10-19  Jim Meyering  <jim@meyering.net>
15920
15921         * lib/vasnprintf.c (vasnprintf): Work around losing snprintf on
15922         HPUX 10.20.
15923
15924 2003-10-18  Karl Berry  <karl@gnu.org>
15925
15926         * config/config.guess: update from config.
15927
15928 2003-10-16  Paul Eggert  <eggert@twinsun.com>
15929
15930         * lib/getgroups.c: Include <errno.h>, <stdlib.h>.
15931         (getgroups): First arg is int, not size_t.
15932         Don't let 'free' mangle errno.
15933
15934 2003-10-16  Paul Eggert  <eggert@twinsun.com>
15935
15936         * README: Mention that gnulib assumes that (foo *) NULL + 0 == NULL.
15937
15938 2003-10-16  Karl Berry  <karl@gnu.org>
15939
15940         * config/config.{guess,sub}: update from config.
15941
15942 2003-10-16  Jim Meyering  <jim@meyering.net>
15943
15944         * lib/xmalloc.c: Include <string.h>, for declarations of memset and
15945         memcpy.
15946
15947 2003-10-15  Paul Eggert  <eggert@twinsun.com>
15948
15949         * lib/exclude.c: Do not include <inttypes.h> or <stdint.h>.
15950         (SIZE_MAX): Remove.
15951         (new_exclude, add_exclude_file): Initial size no longer needs to
15952         be a power of 2.
15953         (add_exclude, add_exclude_file): Use xnrealloc instead of rolling
15954         our own address arithmetic overflow checking.
15955
15956         * lib/fnmatch.c (SIZE_MAX): Define if standard headers don't.
15957         (fnmatch): Do not alloca more than 2000 wide characters;
15958         instead, use malloc for large buffers.
15959         Check for address arithmetic overflow, and return -1
15960         with errno set to ENOMEM in that case.
15961         * lib/fnmatch_loop.c (ALLOCA_LIMIT): New macro.
15962         (NEW_PATTERN): Do not alloca more than 8000 bytes;
15963         instead, return -1.  Check for address arithmetic overflow.
15964
15965 2003-10-14  Paul Eggert  <eggert@twinsun.com>
15966
15967         Handle invalid suffixes and overflow independently, so that
15968         callers can treat them independently as needed.  Fix some bugs in
15969         suffix handling, e.g., "100k@" was not diagnosed as an invalid
15970         suffix for a human-readable blocksize.  The major caller-visible
15971         change is the addition of a new
15972         LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW enum value, indicating
15973         that both overflow and suffix chars were found.
15974
15975         * lib/human.c (humblock): Don't check separately for invalid suffix
15976         char; that is xstrtoumax's job (now that its bug is fixed).
15977         * lib/xstrtoimax.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM) [defined
15978         INTMAX_MAX]: New macros.
15979         * lib/xstrtol.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM, TYPE_MINIMUM,
15980         TYPE_MAXIMUM): New macros.
15981         (bkm_scale, bkm_scale_by_power): Return strtol_error, not int.
15982         (bkm_scale, bkm_scale_by_power, __xstrtol): Return maximal values
15983         if overflow occurs, as it's what __strtol does and it's more useful
15984         in practice.
15985         (__xstrtol): If __strtol reports some error other than ERANGE,
15986         reflect it to the caller as LONGINT_INVALID.  If it reports
15987         ERANGE, continue the rest of parsing, and report LONGINT_OVERFLOW
15988         | LONGINT_INVALID_SUFFIX_CHAR if both errors occur.
15989         * lib/xstrtol.h (LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW): New enum
15990         value.
15991         (_STRTOL_ERROR): Handle it.  Abort when given unknown error codes.
15992         * lib/xstrtoul.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM): New macros.
15993         * lib/xstrtoumax.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM)
15994         [defined UINTMAX_MAX]: New macros.
15995
15996 2003-10-14  Bruno Haible  <bruno@clisp.org>
15997
15998         * modules/fatal-signal: Add m4/sig_atomic_t.m4 to file list.
15999
16000 2003-10-14  Bruno Haible  <bruno@clisp.org>
16001
16002         * m4/sig_atomic_t: New file, from GNU gettext.
16003         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Require gt_TYPE_SIG_ATOMIC_T.
16004
16005 2003-10-14  Bruno Haible  <bruno@clisp.org>
16006
16007         * lib/fatal-signal.h: Improved comments. Suggested by Paul Eggert.
16008         * lib/fatal-signal.c: Use sig_atomic_t. Suggested by Paul Eggert.
16009         Also use volatile where needed.
16010
16011 2003-10-12  Paul Eggert  <eggert@twinsun.com>
16012
16013         * modules/xalloc: Do not depend on 'exit'.  Depend on 'stdbool'.
16014         Change maintainer from Bruno Haible to 'all'.
16015
16016 2003-10-12  Paul Eggert  <eggert@twinsun.com>
16017
16018         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Require AC_C_INLINE.
16019
16020 2003-10-12  Paul Eggert  <eggert@twinsun.com>
16021
16022         * lib/xalloc.h (xnmalloc, xzalloc, xnrealloc, xclone): New decls.
16023         (XMALLOC, XCALLOC, XREALLOC, XFREE, CCLONE, CLONE): Deprecate,
16024         and define in terms of the other primitives.
16025         * lib/xmalloc.c: Include stdbool.h; do not include exit.h.
16026         (SIZE_MAX): Define if not already defined.
16027         (array_size_overflow): New function.
16028         (xalloc_die): Abort instead of exiting if 'error' returns.
16029         (xnmalloc, xnrealloc, xzalloc, xclone): New functions.
16030         (xmalloc, xrealloc): Use them.
16031         (xcalloc): Check for address arithmetic overflow.
16032         * lib/xstrdup.c (xstrdup): Use xclone, since memcpy should be
16033         a bit faster than strcpy.
16034
16035 2003-10-10  Simon Josefsson  <jas@extundo.com>
16036
16037         * modules/argp (Depends-on): Add restrict and strcase.
16038
16039 2003-10-10  Simon Josefsson  <jas@extundo.com>
16040
16041         * m4/argp.m4: Add AC_C_INLINE.
16042
16043 2003-10-08  Paul Eggert  <eggert@twinsun.com>
16044
16045         Merge getpass from libc, plus a few fixes.
16046
16047         * lib/getpass.c (HAVE_STDIO_EXT) [_LIBC]: Define to 1.
16048         Include <stdbool.h>.
16049         Include <stdio_ext.h> if HAVE_STDIO_H, otherwise define
16050         __fsetlocking to empty.
16051         [_LIBC]: Do not include "getline.h" or "unlocked-io.h", but
16052         do include <bits/libc-lock.h>.
16053         Do not include <fcntl.h>; not needed.
16054         [_LIBC]: Include <wchar.h>.
16055         (NOTCANCEL_MODE): New macro.
16056         (flockfile, funlockfile) [_LIBC]: New macros.
16057         (__libc_cleanup_push, __libc_cleanup_pop, __getline, __tcgetattr)
16058         [!_LIBC]: New macros.
16059         (call_fclose): New function.
16060         (getpass): Use it.  Save tty stream separately; this simplifies the
16061         code and makes it more reliable if stdin happens to equal stdout.
16062         Invoke __fsetlocking on tty.
16063         Handle thread cancellation if needed.
16064         Namespace cleanup (use __tcgetattr, __getline).
16065         Use bool for Booleans.
16066         [USE_IN_LIBIO]: Handle wide streams.
16067         [!_LIBC]: Unconditionally do the fseek, since we don't know what
16068         stream might go where.
16069
16070         * lib/unlocked-io.h: Include <stdio.h>, so that the caller
16071         doesn't have to include <stdio.h> before us.
16072         (clearerr_unlocked, feof_unlocked, ferror_unlocked,
16073         fflush_unlocked, fgets_unlocked, fputc_unlocked, fputs_unlocked,
16074         fread_unlocked, fwrite_unlocked, getc_unlocked, getchar_unlocked,
16075         putc_unlocked, putchar_unlocked): Define to the unlocked counterpart
16076         if not declared, so that we can use getpass.c code from libc without
16077         rewriting it.
16078         (flockfile, ftrylockfile, funlockfile): New macros.
16079
16080 2003-10-08  Paul Eggert  <eggert@twinsun.com>
16081
16082         * modules/getpass: Depend on stdbool.
16083
16084 2003-10-08  Paul Eggert  <eggert@twinsun.com>
16085
16086         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for stdio_ext.h.
16087
16088 2003-10-07  Karl Berry  <karl@gnu.org>
16089
16090         * config/config.{guess,sub}: update from config.
16091
16092 2003-10-06  Jim Meyering  <jim@meyering.net>
16093             Bruno Haible  <bruno@clisp.org>
16094
16095         This lets translators provide better translations for the
16096         "Written by ..." part of --version output.
16097         * lib/version-etc.h: Include stdarg.h.
16098         (version_etc_copyright): Declare as readonly.
16099         (version_etc): Make this function variadic with a NULL-terminated list
16100         of author name strings.
16101         (version_etc_va): New declaration.
16102         * lib/version-etc.c: Include stdarg.h, stdlib.h.
16103         (version_etc_copyright): Declare as readonly.
16104         (version_etc_va): New function. Provide a different translatable string
16105         for each possible number of authors < 10. Abbreviate when there are 10
16106         authors or more.
16107         (version_etc): Make this function variadic. Call version_etc_va.
16108         Suggestion from Gary V. Vaughan.
16109
16110         * lib/long-options.h (parse_long_options): Change prototype: the
16111         authors string is moved to the end and becomes variadic.
16112         * lib/long-options.c: Include stdarg.h.
16113         (parse_long_options): Make this function variadic, too.
16114         Call version_etc_va, not version_etc.
16115
16116 2003-10-06  Bruno Haible  <bruno@clisp.org>
16117
16118         * modules/version-etc-2: Remove file.
16119         * MODULES.html.sh (func_all_modules): Remove version-etc-2.
16120
16121 2003-10-06  Bruno Haible  <bruno@clisp.org>
16122
16123         * modules/fatal-signal: New file.
16124         * MODULES.html.sh (func_all_modules): Add fatal-signal.
16125
16126 2003-10-06  Bruno Haible  <bruno@clisp.org>
16127
16128         * m4/fatal-signal.m4: New file.
16129         * m4/signalblocking.m4: New file, from GNU gettext.
16130
16131 2003-10-06  Bruno Haible  <bruno@clisp.org>
16132
16133         * lib/version-etc-2.h: Remove file.
16134         * lib/version-etc-2.c: Remove file.
16135
16136 2003-10-06  Bruno Haible  <bruno@clisp.org>
16137
16138         * lib/fatal-signal.h: New file, from GNU gettext.
16139         * lib/fatal-signal.c: New file, from GNU gettext.
16140
16141 2003-10-05  Paul Eggert  <eggert@twinsun.com>
16142
16143         * README: Rework advice for preventing empty .o files.
16144         Don't recommend ELIDE constructs.  Recommend <stddef.h>,
16145         not <sys/types.h>.
16146
16147 2003-10-04  Karl Berry  <karl@gnu.org>
16148
16149         * lib/argp*: update from libc.
16150
16151 2003-10-04  Karl Berry  <karl@gnu.org>
16152
16153         * config/config.{guess,sub}: update from config.
16154
16155 2003-10-02  Bruno Haible  <bruno@clisp.org>
16156
16157         * modules/lchown (Include): Add lchown.h.
16158         * modules/time_r (Include): Use "..." syntax.
16159         * modules/xgetdomainname (Include): Add xgetdomainname.h.
16160
16161 2003-10-01  Simon Josefsson  <jas@extundo.com>
16162
16163         * MODULES.html.sh (func_all_modules): Move gethostname from section
16164         'based on' to section 'lacking' POSIX:2001.
16165
16166 2003-10-01  Larry Jones  <lawrence.jones@eds.com>
16167
16168         * lib/getpass.c (getpass): Use a no-op fseek when switching from input
16169         to output mode on the same stream.
16170
16171 2003-09-29  Paul Eggert  <eggert@twinsun.com>
16172
16173         * lib/strftime.c (tm_diff) [! HAVE_TM_GMTOFF]:
16174         Fix arg typo in previous patch.
16175
16176 2003-09-28  Jim Meyering  <jim@meyering.net>
16177
16178         * lib/error.c: Correct cpp indentation.
16179
16180 2003-09-27  Paul Eggert  <eggert@twinsun.com>
16181
16182         * modules/free: New file.
16183
16184 2003-09-27  Paul Eggert  <eggert@twinsun.com>
16185
16186         * m4/free.m4: New file.
16187
16188 2003-09-27  Paul Eggert  <eggert@twinsun.com>
16189
16190         * lib/minmax.h (MIN, MAX)
16191         [__STDC__ && defined __GNUC__ && __GNUC__ >= 2]:
16192         Omit the special code that used __typeof__, since we worry that
16193         it could be more trouble than it's worth.  See:
16194         http://mail.gnu.org/archive/html/bug-gnulib/2003-01/msg00090.html
16195         http://mail.gnu.org/archive/html/bug-gnulib/2003-01/msg00095.html
16196
16197         * lib/free.c: New file.
16198
16199 2003-09-27  Oskar Liljeblad  <oskar@osk.mine.nu>
16200
16201         Trivial fixes to Makefile.am parts of module listings.
16202         * modules/strstr: Append strstr.h to lib_SOURCES.
16203         * modules/strcase: Likewise, for strcase.h.
16204
16205 2003-09-27  Karl Berry  <karl@gnu.org>
16206
16207         * config/mkinstalldirs: update from automake.
16208
16209 2003-09-26  Paul Eggert  <eggert@twinsun.com>
16210
16211         * lib/error.c (SIZE_MAX) [!defined SIZE_MAX]: Define.
16212         (error_tail): Do not loop, reallocating temporary buffer, since
16213         the output cannot contain more wide characters than the input
16214         contains bytes, the size must be big enough already.  This avoids
16215         one potential size overflow calculation.  Check for size overflow
16216         when calculating temporary buffer size.  Free temporary buffer
16217         when done, if it was allocated with malloc; this plugs a memory
16218         leak.  Remove casts from void * to pointers, that are no longer
16219         needed now that we're assuming C89 or better.
16220
16221         Merge error changes from glibc.
16222
16223         * lib/error.c, error.h: Update copyright notice header to match glibc.
16224         * lib/error.c [defined _LIBC]: Include <errno.h>, <bits/libc-lock.h>.
16225         (error, error_at_line) [defined _LIBC && defined __libc_ptf_call]:
16226         Disable cancellation while printing error.
16227         * lib/error.h: Prepend __ to parameter names.
16228
16229 2003-09-26  Jim Meyering  <jim@meyering.net>
16230
16231         * lib/error.c (error_tail): Move some declarations
16232         into inner scope where the local variables are used.
16233
16234 2003-09-26  Bruno Haible  <bruno@clisp.org>
16235
16236         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Add comments about the AIX
16237         stpncpy().
16238         Don't define stpncpy through config.h; it's now done through stpncpy.h.
16239
16240 2003-09-26  Bruno Haible  <bruno@clisp.org>
16241
16242         * lib/stpncpy.h (gnu_stpncpy): New declaration.
16243         (stpncpy): Define as alias for gnu_stpncpy.
16244         * lib/stpncpy.c [!_LIBC]: Define gnu_stpncpy, not stpncpy.
16245
16246 2003-09-25  Simon Josefsson  <jas@extundo.com>
16247
16248         * lib/xgetdomainname.h: New file.
16249         * lib/xgetdomainname.c: New file.
16250
16251 2003-09-25  Simon Josefsson  <jas@extundo.com>
16252             Bruno Haible  <bruno@clisp.org>
16253
16254         * modules/getdomainname: New file.
16255         * modules/xgetdomainname: New file.
16256         * MODULES.html.sh (func_all_modules): Add getdomainname,
16257         xgetdomainname.
16258
16259 2003-09-25  Simon Josefsson  <jas@extundo.com>
16260             Bruno Haible  <bruno@clisp.org>
16261
16262         * m4/getdomainname.m4: New file.
16263
16264 2003-09-25  Simon Josefsson  <jas@extundo.com>
16265             Bruno Haible  <bruno@clisp.org>
16266
16267         * lib/getdomainname.h: New file.
16268         * lib/getdomainname.c: New file.
16269
16270 2003-09-25  Karl Berry  <karl@gnu.org>
16271
16272         * lib/argp-fmtstream.c, argp-help.c: update from libc.
16273
16274 2003-09-25  Karl Berry  <karl@gnu.org>
16275
16276         * config/install-sh: update from automake.
16277
16278 2003-09-25  Bruno Haible  <bruno@clisp.org>
16279
16280         * modules/version-etc-2: New file, from modules/version-etc with
16281         modifications.
16282         * MODULES.html.sh (func_all_modules): Add version-etc-2.
16283
16284 2003-09-25  Bruno Haible  <bruno@clisp.org>
16285
16286         * lib/version-etc-2.h: New file, from version-etc.h with modifications.
16287         * lib/version-etc-2.c: New file, from version-etc.c with modifications.
16288
16289 2003-09-24  Simon Josefsson  <jas@extundo.com>
16290
16291         * modules/xgethostname: Add xgethostname.h.
16292
16293 2003-09-24  Paul Eggert  <eggert@twinsun.com>
16294
16295         * lib/linebuffer.c (freebuffer): Don't free the argument, just
16296         the buffer associated with the argument.  Bug reported by
16297         Simon Josefsson.
16298
16299 2003-09-24  Paul Eggert  <eggert@twinsun.com>
16300
16301         * README: Document assumptions that 'int' is at least 32 bits
16302         wide, that integer arithmetic is 2's complement without overflow,
16303         that there are no holes in integer values, that adding sizes of
16304         two nonoverlapping objects can't overflow, and that all-bits-zero
16305         yields scalar zero.  Fix spelling and capitalization typos.
16306
16307 2003-09-19  Karl Berry  <karl@gnu.org>
16308
16309         * lib/argp.h: update from libc.
16310
16311 2003-09-17  Paul Eggert  <eggert@twinsun.com>
16312
16313         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Call AC_BEFORE first,
16314         to avoid spurious warnings like "AC_RUN_IFELSE was called before
16315         gl_USE_SYSTEM_EXTENSIONS" from autoreconf.
16316
16317 2003-09-17  Paul Eggert  <eggert@twinsun.com>
16318
16319         * gnulib-tool: Use "test -h", not "test -L", for portability
16320         to Solaris 8 /bin/sh.  (This bug is fixed in Solaris 9.)
16321         (tags_regexp): Remove, since \| doesn't conform to POSIX.
16322         (sed_extract_prog): Issue s commands one-by-one, rather than
16323         using \| in one s command.
16324
16325 2003-09-16  Paul Eggert  <eggert@twinsun.com>
16326
16327         * lib/linebuffer.c (readlinebuffer): Return NULL immediately upon
16328         input error, instead of returning NULL the next time we are called
16329         (and therefore losing track of errno).
16330
16331 2003-09-16  Bruno Haible  <bruno@clisp.org>
16332
16333         * gnulib-tool (func_create_testdir): Warn about duplicated
16334         dependencies.
16335
16336 2003-09-15  Paul Eggert  <eggert@twinsun.com>
16337
16338         * modules/argmatch, modules/fatal, modules/obstack,
16339         modules/xalloc, modules/xgethostname: Sort dependencies by
16340         importance, not alphabetically.
16341
16342 2003-09-15  Paul Eggert  <eggert@twinsun.com>
16343
16344         * lib/getndelim2.c (getndelim2): Don't trash errno when a read
16345         fails, so that the caller gets the proper errno.
16346
16347         * lib/readutmp.c (read_utmp): Likewise.
16348         Check for fstat error.  Close stream and free storage
16349         when failing.
16350
16351 2003-09-14  Karl Berry  <karl@gnu.org>
16352
16353         * config/srclist.txt (strdup.c): disable for c89 changes.
16354
16355 2003-09-14  Jim Meyering  <jim@meyering.net>
16356
16357         * lib/getloadavg.c: Correct cpp indentation.
16358         * lib/strdup.c: Likewise.
16359         * lib/vasnprintf.c: Likewise.
16360
16361 2003-09-14  Bruno Haible  <bruno@clisp.org>
16362
16363         * modules/fwriteerror: New file.
16364         * MODULES.html.sh (func_all_modules): Add fwriteerror.
16365
16366 2003-09-14  Bruno Haible  <bruno@clisp.org>
16367
16368         * lib/fwriteerror.h: New file.
16369         * lib/fwriteerror.c: New file.
16370
16371 2003-09-12  Paul Eggert  <eggert@twinsun.com>
16372
16373         * modules/argmatch, modules/exitfail, modules/fatal, modules/obstack,
16374         modules/xgethostname, modules/xalloc: Depend on exit.
16375
16376 2003-09-12  Paul Eggert  <eggert@twinsun.com>
16377
16378         * m4/error.m4: Require AC_FUNC_STRERROR_R rather than invoking it.
16379
16380         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Require AC_AIX
16381         and AC_MINIX, too, so that their extensions are available.
16382
16383         * m4/prereq.m4 (jm_PREREQ_ADDEXT): Remove.  All uses removed.
16384         This macro has been superseded by gl_BACKUPFILE.
16385
16386         More patches to assume C89 or better.
16387
16388         * m4/error.m4 (gl_ERROR): Don't check for vprintf.
16389
16390         * m4/check-decl.m4 (jm_CHECK_DECLS): Include <string.h>, <stdlib.h>
16391         unconditionally.
16392         * m4/closeout.m4 (gl_CLOSEOUT): Don't check for stdlib.h.
16393         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER):
16394         Include <string.h>, <stdlib.h> unconditionally.
16395         * m4/lstat.m4 (gl_PREREQ_LSTAT): Don't check for stdlib.h, free.
16396         * m4/readdir.m4 (GL_FUNC_READDIR): Don't check for string.h.
16397         * m4/readutmp.m4 (gl_PREREQ_READUTMP): Don't check for standard C
16398         headers or for string.h.
16399         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Don't check for stdlib.h
16400         or strtoul.
16401
16402         * m4/mkstemp.m4 (jm_PREREQ_TEMPNAME): Do not require standard C
16403         headers.
16404         * m4/strdup.m4 (gl_PREREQ_STRDUP): Likewise.
16405         * m4/userspec.m4 (gl_USERSPEC): Likewise.
16406         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Likewise.
16407         * m4/xstrtod.m4 (gl_XSTRTOD): Likewise.
16408         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
16409         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't check for limits.h,
16410         memcpy, memset.
16411         (jm_FUNC_GNU_STRFTIME): Don't require standard C headers.
16412         * m4/strtod.m4 (gl_FUNC_STRTOD): Do not check for float.h.
16413         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Do not check for stdlib.h,
16414         strtol.
16415         * m4/strtol.m4 (gl_FUNC_STRTOL): Do not check for limits.h.
16416         * m4/userspec.m4 (gl_USERSPEC): Do not check for string.h.
16417         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Do not check for string.h, strtol,
16418         strtoul.
16419
16420 2003-09-12  Paul Eggert  <eggert@twinsun.com>
16421
16422         * lib/argmatch.c, fatal.c, xgethostname.c, xmalloc.c: Include exit.h.
16423         * lib/obstack.c [!defined _LIBC]: Likewise.
16424         * lib/argmatch.c (EXIT_FAILURE): Remove; now done by exit.h
16425         * lib/exitfail.c, fatal.c, xgethostname.c, xmalloc.c: Likewise.
16426         * lib/exitfail.c: Don't include stdlib.h; no longer needed.
16427
16428         More changes to assume C89 or better.
16429
16430         * lib/error.c (error_tail): Assume vprintf.
16431
16432         * lib/argmatch.c (getenv): Remove decl.
16433         * lib/progreloc.c (get_full_program_name): Define via prototype.
16434         * lib/setenv.c (clearenv): Likewise.
16435         * lib/stpncpy.c: Do not include <string.h> or <sys/types.h>; not
16436         needed.
16437         * lib/strdup.c: Include <stdlib.h>, <string.h> unconditionally.
16438         (malloc, memcpy): Remove decls.
16439         * lib/strftime.c (HAVE_LIMITS_H, STDC_HEADERS) [defined _LIBC]: Remove.
16440         (HAVE_MEMCPY) [defined emacs && !defined HAVE_BCOPY]: Remove.
16441         Include <limits.h>, <stddef.h>, <stdlib.h>, <string.h> unconditionally.
16442         (memcpy): Remove macro.
16443         (MEMCPY) [!defined COMPILE_WIDE]: Define to memcpy unconditionally.
16444         (__P): Remove.  All uses removed.
16445         (PTR): Remove.  All uses changed to void *.
16446         (CHAR_BIT, NULL): Remove.
16447         (spaces, zeros, memset_space, memset_zero)
16448         [!defined memset && !defined HAVE_MEMSET && !defined _LIBC]:
16449         Remove.
16450         (LOCALE_PARAM, LOCALE_PARAM_DECL): Remove.
16451         (memcpy_lowcase, memcpy_uppcase, tm_diff, iso_week_days):
16452         Define with prototype.
16453         Remove now-unnecessary prototype decl.
16454         (extra_args_spec): Assume ANSI C.  All uses changed.
16455         (extra_args_spec_iso): Remove.
16456         (my_strftime, emacs_strftimeu): Define via prototype.
16457         * lib/strtod.c: Include <float.h>, <stdlib.h>, <string.h>
16458         unconditionally.
16459         (DBL_MAX, DBL_MIN, HUGE_VAL, NULL): Remove decls.
16460         * lib/strtoimax.c: Include <stdlib.h> unconditionally.
16461         (strtoul, strtol): Remove decls.
16462         * lib/strtol.c (STDC_HEADERS, HAVE_LIMITS_H, NULL, ULONG_MAX,
16463         LONG_MAX): Remove.
16464         Include <limits.h>, <stddef.h>, <stdlib.h>, <string.h> unconditionally.
16465         (LOCALE_PARAM_DECL): Remove.  All uses changed to LOCALE_PARAM_PROTO.
16466         (LOCALE_PARAM_PROTO): New macro.
16467         (INTERNAL, INTERNAL1, WEAKNAME): Assume ANSI C, not K&R.
16468         (INTERNAL (strtol), strtol): Define with a prototype.
16469         (PARAMS): Remove.  All uses removed.
16470         * lib/tempname.c: Include <string.h> unconditionally.
16471         * lib/userspec.c: Include <stdlib.h>, <string.h> unconditionally.
16472         * lib/xgethostname.c (main): Define with a prototype.
16473         * lib/xmalloc.c: Include "xalloc.h" first, to check interface.
16474         Include <stdlib.h> unconditionally.
16475         (calloc, malloc, realloc, free): Remove decls.
16476         * lib/xstrtod.c: Include "xstrtod.h" first, to check interface.
16477         Include <stdlib.h> unconditionally.  Sort include file names.
16478         (strtod): Remove.
16479         (xstrtod): Define with a prototype.
16480         * lib/xstrtol.c: Include <stdlib.h>, <string.h> unconditionally.
16481         (strtol, strtoul): Remove decls.
16482
16483 2003-09-11  Paul Eggert  <eggert@twinsun.com>
16484
16485         More patches to assume C89 or better.
16486         * m4/strndup.m4 (gl_PREREQ_STRNDUP): Remove STDC_HEADERS check.
16487         * m4/strnlen.m4 (gl_PREREQ_STRNLEN): Don't check for memory.h,
16488         string.h, memchr, STDC_HEADERS.
16489
16490 2003-09-11  Paul Eggert  <eggert@twinsun.com>
16491
16492         * lib/strndup.c: Don't include <stdio.h>, <sys/types.h>.
16493         Include <stdlib.h>, <string.h> unconditionally.
16494         Remove now-unnecessary cast to char *.
16495         * lib/strnlen.c: Include <string.h> unconditionally.
16496         * lib/yesno.c (yesno): Define with a prototype.
16497
16498 2003-09-11  Bruno Haible  <bruno@clisp.org>
16499
16500         * config/srclist.txt (setenv.c, unsetenv.c): Disable for the moment.
16501
16502 2003-09-10  Jim Meyering  <jim@meyering.net>
16503
16504         * lib/error.c: Correct indentation of cpp directives.
16505
16506 2003-09-10  Bruno Haible  <bruno@clisp.org>
16507
16508         * m4/strcspn.m4 (gl_PREREQ_STRCSPN): Remove <string.h> check.
16509         * m4/strpbrk.m4 (gl_PREREQ_STRPBRK): Remove <string.h> check.
16510         * m4/strstr.m4 (gl_PREREQ_STRSTR): Remove <string.h> check.
16511         * m4/unicodeio.m4 (gl_UNICODEIO): Remove <string.h> check.
16512         * m4/setenv.m4 (gl_PREREQ_SETENV, gl_PREREQ_UNSETENV): Remove
16513         <stdlib.h> and <string.h> checks.
16514         * m4/xreadlink.m4 (gl_XREADLINK): Remove <stdlib.h> check.
16515         * m4/yesno.m4 (gl_YESNO): Remove <stdlib.h> check.
16516
16517 2003-09-10  Bruno Haible  <bruno@clisp.org>
16518
16519         * lib/strcspn.c: Include <string.h> unconditionally.
16520         * lib/strpbrk.c: Include <string.h> unconditionally.
16521         * lib/strstr.c: Include <string.h> unconditionally.
16522         * lib/unicodeio.c: Include <string.h> unconditionally.
16523         * lib/setenv.c: Include <stdlib.h> and <string.h> unconditionally.
16524         * lib/unsetenv.c: Likewise.
16525         * lib/xreadlink.c: Include <stdlib.h> unconditionally.
16526         * lib/yesno.c: Include <stdlib.h> unconditionally.
16527         (rpmatch): Add prototype.
16528
16529 2003-09-09  Paul Eggert  <eggert@twinsun.com>
16530
16531         More patches to assume C89 or better.
16532         * m4/getcwd.m4 (AC_FUNC_GETCWD_NULL): Don't check for stdlib.h.
16533         * m4/getopt.m4 (gl_GETOPT): Don't check for string.h.
16534         * m4/getugroups.m4 (gl_GETUGROUPS): Do not check for standard C headers
16535         or for string.h.
16536         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Do not check for
16537         stdlib.h.
16538         * m4/group-member.m4 (gl_PREREQ_GROUP_MEMBER): Do not require standard
16539         C headers.
16540         * m4/hard-locale.m4 (gl_HARD_LOCALE): Do not check for stdlib.h,
16541         string.h.
16542         * m4/hash.m4 (gl_HASH): Do not check for stdlib.h, malloc, free.
16543         * m4/human.m4 (gl_HUMAN): Do not check for stdlib.h, string.h, getenv.
16544         * m4/idcache.m4 (gl_IDCACHE): Do not check for standard C headers,
16545         or for string.h.
16546         * m4/long-options.m4 (gl_LONG_OPTIONS): Do not check for stdlib.h.
16547         * m4/makepath.m4 (gl_MAKEPATH): Do not check for string.h or standard
16548         C headers.
16549         * m4/md5.m4 (gl_MD5): Don't check for limits.h, standard C headers,
16550         memcpy.
16551         * m4/sha.m4 (gl_SHA): Don't check for standard Cheaders, memcpy.
16552         * m4/memchr.m4 (jm_PREREQ_MEMCHR): Don't check for limits.h, stdlib.h.
16553         * m4/memcmp.m4 (gl_PREREQ_MEMCMP): Don't check for string.h.
16554         * m4/memcoll.m4 (gl_MEMCOLL): Likewise.
16555         * m4/memrchr.c (gl_PREREQ_MEMRCHR): Don't check for limits.h.
16556         * m4/mkdir-slash.m4 (gl_PREREQ_MKDIR): Don't check for stdlib.h,
16557         string.h, free.
16558         * m4/mktime.m4 (gl_PREREQ_MKTIME): Don't check for standard C headers.
16559         * m4/modechange.m4 (gl_MODECHANGE): Don't check for standard C headers.
16560         * m4/mountlist.m4 (gl_PREREQ_MOUNTLIST_EXTRA): Don't check for standard
16561         C headers, or for string.h.
16562         * m4/obstack.m4 (gl_OBSTACK): Don't check for stddefe.h, string.h.
16563         (gl_PREREQ_OBSTACK): Don't check for stdlib.h.
16564         * m4/path-concat.m4 (gl_PATH_CONCAT): Don't check for standard C
16565         headers, memory.h, stdlib.h, string.h, strings.h.
16566         * m4/posixtm.m4 (gl_POSIXTM): Don't check for stdlib.h, string.h.
16567         * m4/posixver.m4 (gl_POSIXVER): Don't check for getenv.
16568         * m4/putenv.m4 (gl_PREREQ_PUTENV): Don't check for string.h, memcpy,
16569         strchr.
16570         * m4/readtokens.m4 (gl_READTOKENS): Don't check for standard C
16571         headers, memory.h, string.h.
16572         * m4/regex.m4 (jm_PREREQ_REGEX): Do not check for limits.h, string.h.
16573         * m4/rename.m4 (gl_PREREQ_RENAME): Do not check for stdlib.h, string.h,
16574         free.
16575         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Don't check for standard C
16576         headers.
16577         * m4/same.m4 (gl_SAME): Don't check for stdlib.h, string.h, free.
16578         * m4/save-cwd.m4 (gl_SAVE_CWD): Don't check for standard C headers.
16579         * m4/savedir.m4 (gl_SAVEDIR): Don't check for standard C headers.
16580         * m4/strchrnul.m4 (gl_PREREQ_STRCHRNUL): Don't check for string.h.
16581         * m4/xgetcwd.m4 (gl_XGETCWD): Don't check for stdlib.h.
16582
16583 2003-09-09  Paul Eggert  <eggert@twinsun.com>
16584
16585         More K&R removal.
16586
16587         * lib/acosl.c (main): Use a prototype.
16588         * lib/asinl.c, cosl.c, expl.c, frexpl.c, ldexpl.c, sinl.c,
16589         tanl.c: Likewise.
16590
16591         * lib/getloadavg.c (getloadavg, main): Define via prototypes.
16592
16593         * lib/getopt.h (struct option.name): Assume C89, and use 'const'.
16594         (getopt, etopt_long, getopt_long_only, _getopt_internal)
16595         [defined __GNU_LIBRARY__]: Assume C89, so we can always declare
16596         with a prototype.
16597         * lib/getopt.c (const): Remove macro.
16598         Include <string.h> unconditionally.
16599         (my_index): Remove; all uses changed to strchr.
16600         (strlen): Remove decl.
16601         (exchange): Remove forward decl; no longer needed.
16602         (exchange, _getopt_initialize, _getopt_internal, getopt, main):
16603         Define with prototype.
16604         * lib/getopt1.c (const): Remove macro.
16605         (getopt_long, getopt_long_only, main): Define with prototype.
16606
16607         * lib/getugroups.c: Include <string.h> unconditionally.
16608
16609         * lib/getusershell.c: Include <stdlib.h> unconditionally.
16610         (getusershell, setusershell, endusershell, readname, main):
16611         Define with prototypes.
16612
16613         * lib/group-member.c: Include group-member.h first.
16614         Include <stdlib.h> unconditionally.
16615
16616         * lib/hard-locale.c: Include hard-locale.h first.
16617         Include <stdlib.h>, <string.h> unconditionally.
16618
16619         * lib/hash.c (free, malloc): Remove decls.
16620         Include <stdlib.h> unconditionally.
16621
16622         * lib/human.c: Include <stdlib.h>, <string.h> unconditionally.
16623         (getenv): Do not declare.
16624
16625         * lib/idcache.c: Include <string.h> unconditionally.
16626
16627         * lib/long-options.c: Include long-options.h first, to test interface.
16628         Include <stdlib.h> unconditionally.
16629
16630         * lib/makepath.c: Include makepath.h first, to test interface.
16631         Include <stdlib.h> and <string.h> unconditionally.
16632
16633         * lib/linebuffer.c: Include <stdlib.h>.
16634         (free): Remove decl.
16635
16636         * lib/malloc.c: Include <stdlib.h>, for malloc; don't bother with
16637         stddef.h. rpl_malloc returns void *, not char *.
16638         * lib/realloc.c (rpl_realloc): Likewise.  Also, define with a
16639         prototype.
16640
16641         * lib/md5.h: Include <limits.h> unconditionally.
16642         (UINT_MAX_32_BITS): Don't worry about non-__STDC__ case.
16643         (__P): Remove; all uses removed.
16644         * lib/md5.c: Include "md5.h" first.
16645         (md5_init_ctx, md5_read_ctx, md5_finish_ctx, md5_stream,
16646         md5_buffer, md5_process_bytes, md5_process_block):
16647         Define with prototypes.
16648         * lib/sha.h (__P): Remove all uses.  (It wasn't defined??)
16649         * lib/sha.c: Include "sha.h" first.
16650         Include <stdlib.h>, <string.h> unconditionally.
16651
16652         * lib/memchr.c (__ptr_t): Remove; all uses changed to void *.
16653         * lib/memcmp.c (__ptr_t): Likewise.
16654         * lib/memrchr.c (__ptr_t): Likewise.
16655         * lib/memchr.c, memcmp.c, memcoll.c, memrchr.c:
16656         Include <string.h> unconditionally.
16657         * lib/memchr.c, memrchr.c: Include <limits.h> unconditionally.
16658         * lib/memchr.c: Include <stdlib.h> unconditionally.
16659         * lib/memchr.c (LONG_MAX): Remove.
16660         * lib/memrchr.c (LONG_MAX): Likewise.
16661         * lib/memchr.c (__memchr): Define via a prototype.
16662         * lib/memrchr.c (__memrchr): Likewise.
16663         * lib/memcmp.c (__P): Remove, and remove all uses.
16664         (memcmp_bytes, memcmp_common_alignment, memcmp_not_common_alignment):
16665         Remove forward decls; no longer needed.
16666         * lib/memcpy.c, memmove.c, memset.c: Include <stddef.h>.
16667         Use types required by C89 in prototype.
16668
16669         * lib/mkdir.c: Include <stdlib.h>, <string.h> unconditionally.
16670         * lib/savedir.c: Likewise.
16671         * lib/mkdir.c (free): Remove decl.
16672         * lib/rmdir.c (rmdir): Define with a prototype.
16673         * lib/savedir.c: Include savedir.h first, to test interface.
16674
16675         * lib/mktime.c (STDC_HEADERS): Remove.
16676         Include <stdlib.h>, <string.h> unconditionally.
16677
16678         * lib/modechange.c: Include <stdlib.h> unconditionally.
16679         (malloc): Remove decl.
16680
16681         * lib/mountlist.c: Include <stdlib.h>, <string.h> unconditionally.
16682         (free): Remove decl.
16683
16684         * lib/obstack.h (PTR_INT_TYPE) [!defined __PTRDIFF_TYPE__]:
16685         Define to ptrdiff_t, without bothering to check HAVE_STDDEF_H.
16686         (This type really should be intptr_t, but that's a C99ism.)
16687         (_obstack_memcpy): Remove: all uses changed to memcpy.
16688         Include <string.h> unconditionally.
16689         (struct obstack): Assume __STDC__ for types of members
16690         chunkfun, freefun, extra_arg.
16691         (_obstack_newchunk, _obstack_free, _obstack_begin, _obstack_begin_1,
16692         _obstack_memory_used, obstack_alloc_failed_handler, obstack_init,
16693         obstack_begin, obstack_specify_allocation,
16694         obstack_specify_allocation_with_arg, obstack_chunkfun,
16695         obstack_freefun, obstack_free) [! (defined __STDC__ && __STDC__)]:
16696         Remove unprototyped decls and the macros that use them.
16697         * lib/obstack.c (POINTER): Remove.  All uses changed to void *.
16698         (obstack_alloc_failed_handler, CALL_CHUNKFUN, CALL_FREEFUN,
16699         _obstack_begin, _obstack_begin_1, _obstack_allocated_p)
16700         (defined __STDC__ && __STDC__)]:
16701         Remove nonprototyped code.
16702         Include <stdlib.h> unconditionally.
16703         (_obstack_begin, _obstack_begin_1, _obstack_newchunk,
16704         _obstack_allocated_p, _obstack_free, obstack_free,
16705         _obstack_memory_used, print_and_abort):
16706         Define using prototypes.
16707         (obstack_1grow, obstack_1grow_fast, obstack_alloc, obstack_base,
16708         obstack_blank, obstack_blank_fast, obstack_copy, obstack_copy0,
16709         obstack_finish, obstack_grow, obstack_grow0, obstack_make_room,
16710         obstack_next_free, obstack_object_size, obstack_room) [0]:
16711         Remove unused, unprototyped code.
16712
16713         * lib/path-concat.c: Include <stdlib.h>, <string.h> unconditionally.
16714
16715         * lib/physmem.c (physmem_total, physmem_available, main): Define
16716         with prototypes.
16717
16718         * lib/posixtm.c: Include <stdlib.h>, <string.h> unconditionally.
16719         (main): Define with a prototype.
16720
16721         * lib/posixver.c (getenv): Remove decl.
16722
16723         * lib/putenv.c (malloc): Returns void *, not char *.
16724         Include <string.h> unconditionally.
16725         (strchr, memcpy, NULL): Do not define.
16726
16727         * lib/readtokens.c: Include readtokens.h first, to test interface.
16728         Include <stdlib.h>, <string.h> unconditionally.
16729         (init_tokenbuffer): Define with a prototype.
16730
16731         * lib/regex.c (PARAMS): Remove.  All uses removed.
16732         All uses of _RE_ARGS removed, too.
16733         Include <stddef.h>, <stdlib.h>, <string.h>, <limits.h>
16734         unconditionally.
16735         (bzero): Assume memset exists.
16736         (memcmp, memcpy, NULL): Remove.
16737         (SIGN_EXTEND_CHAR): Remove; all uses replaced by casts to signed
16738         char, or assignments to local vars of type signed char.
16739         (init_syntax_once, PREFIX(extract_number_and_incr),
16740         PREFIX(print_partial_compiled_pattern),
16741         PREFIX(print_compiled_pattern), PREFIX(print_double_string),
16742         convert_mbs_to_wcs, print_fastmap, re_set_syntax,
16743         PREFIX(regex_grow_registers), PREFIX(regex_compile),
16744         PREFIX(store_op1), PREFIX(store_op2), PREFIX(insert_op1),
16745         PREFIX(insert_op2), PREFIX(at_begline_loc_p),
16746         PREFIX(at_endline_loc_p), group_in_compile_stack, insert_space,
16747         wcs_compile_range, byte_compile_range, truncate_wchar,
16748         PREFIX(re_compile_fastmap), re_compile_fastmap, re_set_registers,
16749         re_search, re_search_2, PREFIX(re_search_2), re_match, re_match_2,
16750         count_mbs_length, wcs_re_match_2_internal,
16751         byte_re_match_2_internal, PREFIX(group_match_null_string_p),
16752         PREFIX(alt_match_null_string_p),
16753         PREFIX(common_op_match_null_string_p), PREFIX(bcmp_translate),
16754         re_compile_pattern, re_comp, re_exec, regcomp, regexec, regerror,
16755         regfree, PREFIX(extract_number)): Define with prototype.  Remove
16756         now-unnecessary declaration, if any.
16757         (byte_compile_range, PREFIX(regex_compile), re_comp, re_exec,
16758         regcomp, regexec):
16759         Remove now-unnecessary casts among pointer types.
16760         * lib/regex.h (_RE_ARGS): Remove.  All uses removed.
16761
16762         * lib/rename.c: Include <stdlib.h>, <string.h> unconditionally.
16763         (free): Remove decl.
16764
16765         * lib/rpmatch.c: Include <stdlib.h> unconditionally.
16766
16767         * lib/same.c: Include <stdlib.h>, <string.h> unconditionally.
16768         (free): Remove decl.
16769
16770         * lib/save-cwd.c: Include <stdlib.h> unconditionally.
16771         * lib/xgetcwd.c: Likewise.
16772
16773         * lib/stat.c: Include <stdlib.h>, <string.h> unconditionally.
16774         (free): Remove decl.
16775
16776         * lib/strchrnul.c (strchrnul): Define with a prototype.
16777         Fix bug: c_in was not converted to char before searching.
16778
16779         The following changes are not K&R related:
16780
16781         * lib/group-member.h: Include <sys/types.h>, so that this file is
16782         self-contained.
16783         * lib/makepath.h: Likewise.
16784
16785         * lib/getusershell.c (readname, default_index, line_size, readname):
16786         Use size_t, not int, for sizes.
16787         (readname): If the size overflows, report an error instead of
16788         looping forever.
16789
16790 2003-09-09  Paul Eggert  <eggert@twinsun.com>
16791
16792         * config/srclist.txt: Do not get getopt.h, getopt1.c, or regex.h from
16793         libc.
16794
16795 2003-09-09  Paul Eggert  <eggert@twinsun.com>
16796
16797         * README: New section: portability guidelines.
16798
16799 2003-09-09  Derek Robert Price  <derek@ximbiot.com>
16800
16801         * m4/getndelim2.m4 (gl_PREREQ_GETNDELIM2): Assume stdlib.h per the
16802         C89 spec.
16803
16804 2003-09-09  Derek Robert Price  <derek@ximbiot.com>
16805
16806         * lib/getndelim2.c: Assume stdlib.h per the C89 spec.
16807
16808 2003-09-08  Paul Eggert  <eggert@twinsun.com>
16809
16810         Assume C89 or better; remove K&R cruft.
16811         A few of these changes were first proposed by Derek Robert Price
16812         in <http://mail.gnu.org/archive/html/bug-gnulib/2003-07/msg00105.html>.
16813
16814         * lib/addext.c: Include <string.h> unconditionally.
16815         * lib/backupfile.c: Include <string.h>, <stdlib.h> unconditionally.
16816         Don't declare getenv or malloc.
16817
16818         * lib/alloca.c: Include <string.h>, <stdlib.h> unconditionally.
16819         (POINTER_TYPE, pointer): Remove; all uses changed to void *.
16820         (NULL): Remove.
16821         (find_stack_direction, alloca): Use prototypes.
16822
16823         * lib/atexit.c (atexit): Define using a prototype.
16824
16825         * lib/basename.c, dirname.c, stripslash.c:
16826         Include <string.h> unconditionally.
16827
16828         * lib/bcopy.c: Include <stddef.h>.
16829         (bcopy): Define with prototype, using 'const' and 'void' and 'size_t'.
16830
16831         * lib/canon-host.c: Include <stdlib.h>, <string.h> unconditionally.
16832
16833         * lib/error.h (error, error_at_line, error_print_progname)
16834         [! (defined (__STDC__) && __STDC__)]: Remove decls.
16835         * lib/error.c: Include error.h first, to check interface.
16836         Include <stdarg.h>, <stdlib.h>, <string.h> unconditionally.
16837         (VA_START): Remove; all uses changeed to va_start.
16838         (exit, strerror): Remove decls.
16839         (error_print_progname): Prototype uncondionally.
16840         Don't include <errno.h>; no longer needed.
16841         (private_strerror): Remove.
16842         (error_tail): Always define.
16843         (error, error_at_line): Assume C89 or better; always use prototypes.
16844         * lib/fatal.c: Include "fatal.h" first, to test interface.
16845         Include <stdarg.h>, <stdlib.h>, <string.h> unconditionally.
16846         (VA_START): Remove; all uses changed to va_start.
16847         [! (HAVE_VPRINTF || HAVE_DOPRNT || _LIBC)]: Remove support for
16848         this case.
16849         (exit): Remove decl.
16850         (fatal): Prototype unconditionally.  Assume va_start works.
16851         Abort at end, to pacify gcc.
16852
16853         * lib/euidaccess.c (main): Define with a prototype.
16854
16855         * lib/exclude.c: Include <stdlib.h>, <string.h> unconditionally.
16856
16857         * lib/exitfail.c: Include <stdlib.h> unconditionally.
16858
16859         * lib/fnmatch_.h (__P): Remove.  All uses changed to assume
16860         prototypes.
16861         * lib/fnmatch.c: Include fnmatch.h first, to test interface.
16862         Include <string.h>, <stddef.h>, <stdlib.h> unconditionally.
16863         (getenv): Remove decl.
16864         (fnmatch): Define using a prototype.
16865         * lib/fnmatch_loop.c (FCT): Remove forward decl; no longer needed.
16866         (FCT): Define using a prototype.
16867
16868         * lib/getdate.y: Include <stdlib.h>, <string.h> unconditionally.
16869
16870         * lib/gethostname.c: Include <stddef.h>.
16871         (gethostname): Define with prototype.  Length is size_t, not int.
16872
16873 2003-09-08  Paul Eggert  <eggert@twinsun.com>
16874
16875         Assume C89 or better; remove K&R cruft.
16876         * m4/alloca.m4 (gl_PREREQ_ALLOCA): Don't check for stdlib.h, string.h.
16877         * m4/backupfile.m4 (gl_BACKUPFILE): Don't check for stdlib.h,
16878         string.h, getenv, malloc.
16879         * m4/dirname.m4 (gl_DIRNAME): Don't check for string.h or C standard
16880         headers.
16881         * m4/canon-host.m4 (gl_CANON_HOST): Don't check for string.h, stdlib.h.
16882         * m4/error.m4 (jm_PREREQ_ERROR): Do not require STDC headers, and
16883         do not check for strerror.
16884         * m4/exclude.m4: Do not check for stdlib.h, string.h, strings.h.
16885         * m4/exitfail.m4 (gl_EXITFAIL): Do not check for stdlib.h.
16886         * m4/fatal.m4 (gl_FATAL): Do not require STDC headers, and
16887         do not check for doprnt or vprintf.
16888         * m4/fnmatch.m4 (gl_PREREQ_FNMATCH_EXTRA): Remove.  All uses removed.
16889         * m4/getdate.m4 (gl_GETDATE): Don't check for stdlib.h or string.h.
16890
16891 2003-09-08  Paul Eggert  <eggert@twinsun.com>
16892
16893         * lib/getversion.c: Remove; was migrated to backupfile.c in 1997.
16894         getversion.c should have been removed then, but was accidentally
16895         preserved.
16896
16897         * lib/utime.c [!HAVE_UTIMES_NULL]: Include <sys/stat.h>, <fcntl.h>.
16898         (utime_null): Fix typo: 'st' was sometimes called 'sb'.
16899
16900 2003-09-08  Karl Berry  <karl@gnu.org>
16901
16902         * config/config.sub, config.guess, srclistvars.sh: update from savannah
16903                 config, forget about prep.
16904
16905         * config/depcomp, missing: update from automake.
16906
16907 2003-09-07  Paul Eggert  <eggert@twinsun.com>
16908
16909         * modules/time_r: Depend on 'restrict'.  Fix from Simon Josefsson in
16910         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00028.html>.
16911
16912 2003-09-07  Paul Eggert  <eggert@twinsun.com>
16913
16914         * lib/time_r.c (gmtime_r, localtime_r): Fix silly typo: missing arg to
16915         copy_tm_result.  Bug reported by Simon Josefsson in
16916         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00028.html>.
16917
16918 2003-09-06  Paul Eggert  <eggert@twinsun.com>
16919
16920         * m4/time_r.m4: New file.
16921         * m4/mktime.m4 (gl_PREREQ_MKTIME): Remove check for limits.h.
16922         * m4/timegm.m4 (gl_FUNC_TIMEGM): Assume that timegm is buggy if mktime
16923         is. Check for timegm declaration.
16924         (gl_PREREQ_TIMEGM): Require gl_FUNC_MKTIME.
16925         Do not check for gmtime_r.
16926         Replace mktime if __mktime_internal does not exist and if mktime
16927         hasn't been replaced already.
16928
16929 2003-09-06  Paul Eggert  <eggert@twinsun.com>
16930
16931         * lib/time_r.c, lib/time_r.h: New files.
16932
16933         * lib/mktime.c (my_mktime_localtime_r): Remove; all uses changed to
16934         __localtime_r.
16935         (__localtime_r) [!defined _LIBC]: New macro.  Include <time_r.h>.
16936         (__mktime_internal) [!defined _LIBC]: Now extern, not static.
16937
16938         * lib/strftime.c (my_strftime_gmtime_r): Remove; all uses changed to
16939         __gmtime_r.
16940         (my_strftime_localtime_r): Remove; all uses changed to __localtime_r.
16941         (__gtime_r, __localtime_r) [!HAVE_TM_GMTOFF]: New macros.
16942         Include <time_r.h>.
16943
16944         * lib/timegm.c: Switch to glibc implementation, with the following
16945         changes:
16946         [defined HAVE_CONFIG_H]: Include <config.h>.
16947         [!defined _LIBC]: Include "timegm.h" rather than <time.h>.
16948         (__mktime_internal) [!defined _LIBC]: New decl.
16949         (__gmtime_r) [!defined _LIBC]: New macro and function.
16950         (timegm): Use a prototype, since gnulib assumes C89.
16951         Do not bother declaring tmp to be const, as it's not really usefu.
16952         * lib/timegm.h: Hoist "#include <time.h>" out of #ifdef.
16953         (timegm): Declare only if HAVE_DECL_TIMEGM.
16954
16955 2003-09-06  Paul Eggert  <eggert@twinsun.com>
16956
16957         * MODULES.html.sh (func_all_modules): Add time_r.
16958         * modules/time_r: New file.
16959         * modules/mktime, modules/strftime, modules/timegm: Depend on time_r.
16960         * modules/timegm: Depend on mktime.  Change maintainer to "all, glibc".
16961
16962 2003-09-03  Paul Eggert  <eggert@twinsun.com>
16963
16964         * lib/human.c (human_readable): Fix bug that rounded 10501 to 10k.
16965         Bug reported by Lute Kamstra in
16966         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00003.html>.
16967
16968         * lib/getdate.y (relative_time_table): Use tDAY_UNIT for "tomorrow",
16969         "yesterday", "today", and "now" rather than tMINUTE_UNIT.  Of
16970         course with correspondingly smaller numbers for tomorrow and
16971         yesterday.  From Tadayoshi Funaba.  Originally installed into
16972         sh-utils on 1999-08-07, but the patch got lost (I guess during the
16973         coreutils merge?).
16974
16975 2003-08-31  Simon Josefsson  <jas@extundo.com>
16976
16977         * modules/timegm: New file.
16978         * MODULES.html.sh (func_all_modules): Add timegm.
16979
16980 2003-08-31  Simon Josefsson  <jas@extundo.com>
16981
16982         * m4/timegm.m4: New file.
16983
16984 2003-08-31  Simon Josefsson  <jas@extundo.com>
16985
16986         * lib/timegm.h: New file.
16987         * lib/timegm.c: New file.  Based on
16988         wget-1.8.2/src/http.c:mktime_from_utc.
16989
16990 2003-08-31  Karl Berry  <karl@gnu.org>
16991
16992         * lib/argp.h: update from libc.
16993
16994 2003-08-28  Bruno Haible  <bruno@clisp.org>
16995
16996         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Remove AC_DEFINE of fnmatch here.
16997         This avoids havoc on compilers for which '#define fnmatch rpl_fnmatch'
16998         followed by '#define fnmatch fnmatch_posix' gives an error.
16999
17000 2003-08-28  Bruno Haible  <bruno@clisp.org>
17001
17002         * lib/binary-io.h: Undefine O_BINARY before defining it. This avoids a
17003         warning on QNX, which defines O_BINARY to 000000.
17004
17005 2003-08-27  Jim Meyering  <jim@meyering.net>
17006
17007         * m4/mkstemp.m4: Require that the system mkstemp be able to create
17008         70 temporary files, not just 30.  Tru64 V4.0F's mkstemp function
17009         would fail after 32.  Reported by Danny Levinson.  Details here:
17010         http://mail.gnu.org/archive/html/bug-coreutils/2003-08/msg00124.html
17011
17012 2003-08-24  Bruno Haible  <bruno@clisp.org>
17013
17014         * lib/binary-io.h: Include <stdio.h>, to avoid a compilation error when
17015         MSVC7 <stdio.h> is included later.
17016
17017 2003-08-22  Simon Josefsson  <jas@extundo.com>
17018
17019         * modules/strndup (Makefile.am): Add strndup.h to lib_SOURCES.
17020
17021 2003-08-20  Karl Berry  <karl@gnu.org>
17022
17023         * m4/lib-ld.m4: serial 1003 from gettext, no changes besides serial.
17024
17025 2003-08-20  Bruno Haible  <bruno@clisp.org>
17026
17027         * modules/progname: New file.
17028         * MODULES.html.sh (func_all_modules): Add progname.
17029
17030 2003-08-20  Bruno Haible  <bruno@clisp.org>
17031
17032         * lib/progname.h: New file, from GNU gettext.
17033         * lib/progname.c: New file, from GNU gettext.
17034         * lib/progreloc.c: New file, from GNU gettext.
17035
17036 2003-08-19  Jim Meyering  <jim@meyering.net>
17037
17038         * m4/lib-ld.m4: Revert yesterday's change, per Bruno's request here:
17039         http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00155.html
17040
17041 2003-08-19  Bruno Haible  <bruno@clisp.org>
17042
17043         * m4/xalloc.m4 (gl_PREREQ_XSTRDUP): Don't check for <string.h> any
17044         more.
17045
17046 2003-08-19  Bruno Haible  <bruno@clisp.org>
17047
17048         * lib/xstrdup.c: Assume <string.h> exists.
17049
17050 2003-08-18  Paul Eggert  <eggert@twinsun.com>
17051
17052         * modules/stdbool: Add BUILT_SOURCES.  Prefer $@ to target name
17053         in makefile rules.
17054
17055 2003-08-18  Jim Meyering  <jim@meyering.net>
17056
17057         * m4/getloadavg.m4: Use [\t ], not [ \t] (where \t is a literal TAB).
17058         * m4/lib-ld.m4: Likewise.
17059
17060 2003-08-18  Jim Meyering  <jim@meyering.net>
17061
17062         * lib/setenv.h: Indent nested cpp directive.
17063         * lib/vasnprintf.c: Remove trailing blanks.
17064
17065 2003-08-17  Simon Josefsson  <jas@extundo.com>
17066
17067         * modules/xstrndup: New file.
17068         * MODULES.html.sh (func_all_modules): Add xstrndup.
17069
17070 2003-08-17  Simon Josefsson  <jas@extundo.com>
17071
17072         * modules/argp: Fix autoconf macro name. Add more dependencies.
17073
17074 2003-08-17  Simon Josefsson  <jas@extundo.com>
17075
17076         * m4/xstrndup.m4: New file.
17077
17078 2003-08-17  Simon Josefsson  <jas@extundo.com>
17079
17080         * m4/argp.m4: New file.
17081
17082 2003-08-17  Simon Josefsson  <jas@extundo.com>
17083             Bruno Haible  <bruno@clisp.org>
17084
17085         * lib/xstrndup.h: New file.
17086         * lib/xstrndup.c: New file.
17087
17088 2003-08-17  Bruno Haible  <bruno@clisp.org>
17089
17090         * modules/strndup (Files, Include): Add lib/strndup.h.
17091
17092 2003-08-17  Bruno Haible  <bruno@clisp.org>
17093
17094         * modules/euidaccess (Files): Add lib/euidaccess.h.
17095
17096 2003-08-17  Bruno Haible  <bruno@clisp.org>
17097
17098         * lib/strndup.h: New file.
17099
17100 2003-08-17  Bruno Haible  <bruno@clisp.org>
17101
17102         * gnulib-tool (func_create_testdir): Handle gl_USE_SYSTEM_EXTENSIONS
17103         like AC_GNU_SOURCE.
17104         * modules/extensions (configure.ac): Comment out the invocation of
17105         gl_USE_SYSTEM_EXTENSIONS.
17106
17107 2003-08-16  Paul Eggert  <eggert@twinsun.com>
17108
17109         Merges from coreutils, etc.
17110         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Insert ':' to prevent a syntax
17111         error in gl_FUNC_MATCH.  This fixes a bug I introduced on 2003-05-28.
17112         * m4/readlink.m4 (gl_PREREQ_READLINK): Renamed from gl_PREREQ_READLINE,
17113         fixing a typo.
17114         * m4/host-os.m4 (UTILS_HOST_OS): Add GNU/NetBSD, GNU/FreeBSD.
17115         * m4/hash.m4 (gl_HASH): Use AM_STDBOOL_H, not AC_HEADER_STDBOOL.
17116
17117 2003-08-16  Paul Eggert  <eggert@twinsun.com>
17118
17119         Document merge from coreutils.
17120         * modules/alloca: Append $(ALLOCA_H) to BUILT_SOURCES.
17121         * modules/fnmatch: Append $(FNMATCH_H) to BUILT_SOURCES.
17122         * modules/utime: Add m4/utimes-null.m4.
17123
17124 2003-08-16  Paul Eggert  <eggert@twinsun.com>
17125
17126         * lib/regex.h, strdup.c, strtoll.c, strtoul.c: Do not normalize white
17127         space, undoing this 2003-08-12 change:
17128         <http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00080.html>
17129
17130 2003-08-16  Paul Eggert  <eggert@twinsun.com>
17131
17132         * config/srclist.txt: Get regex.h, strdup.c, strtoll.c,
17133         strtoul.c from libc, undoing this 2003-08-12 change:
17134         <http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00080.html>
17135
17136 2003-08-16  Jim Meyering  <jim@meyering.net>
17137
17138         Merges from coreutils.
17139         * m4/readdir.m4 (GL_FUNC_READDIR): Change name to have GL_ (not jm_)
17140         prefix.  Adjust cache variables similarly.  Create 500 rather than
17141         just 300 files, to exercise bug on Darwin6.5, too.
17142         * m4/perl.m4 (jm_PERL): Use $am_missing_run, not undefined
17143         $missing_dir.
17144         * m4/jm-winsz1.m4: Require AC_SYS_POSIX_TERMIOS, not
17145         AM_SYS_POSIX_TERMIOS.
17146         Reported by mkc@mathdogs.com.
17147         Also change use of $am_cv_sys_posix_termios
17148         to $ac_cv_sys_posix_termios.  Reported by Andreas Schwab.
17149         * m4/getgroups.m4 (jm_FUNC_GETGROUPS): Rewrite to use AC_FUNC_GETGROUPS
17150         and (if needed) to call AC_LIBOBJ and to set GETGROUPS_LIB.
17151         * m4/fsusage.m4 [__GLIBC__]: GNU libc's statvfs stats each mount point
17152         in /proc/mounts until it finds one with matching device number.  This
17153         is unnecessary when the FILE argument *is* a mount point.  No stat call
17154         is necessary in that case.  So, disable the statvfs-testing code on
17155         systems with GNU libc.  Reported by Andrei Gaponenko via Tim Waugh
17156         as RedHat bug# 84846.
17157         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size
17158         to 1MB, so as not to render systems with no stack size limit (e.g.,
17159         linux-2.2.x) unusable.  Suggestion and code from Bruno Haible.
17160         Include <unistd.h>.  On some systems,
17161         it is required for the definition of _SC_PAGESIZE.
17162
17163 2003-08-16  Jim Meyering  <jim@meyering.net>
17164
17165         Merge from coreutils.
17166         * lib/xstrtoimax.c: #else #if -> #elif.
17167         * lib/xstrtoumax.c: Likewise.
17168
17169 2003-08-16  Jim Meyering  <jim@meyering.net>
17170
17171         * m4/utimes.m4 (gl_FUNC_UTIMES): New file.
17172         * m4/utimes.m4: Removed.
17173         * m4/utimes-null.m4: Renamed from utimes.m4.
17174
17175         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size
17176         to 1MB, so as not to render systems with no stack size limit (e.g.,
17177         linux-2.2.x) unusable.  Suggestion and code from Bruno Haible.
17178         Include <unistd.h>.  On some systems,
17179         it is required for the definition of _SC_PAGESIZE.
17180
17181 2003-08-16  Jim Meyering  <jim@meyering.net>
17182         and Paul Eggert  <eggert@cs.ucla.edu>
17183
17184         Merges from coreutils, etc.
17185
17186         * m4/jm-macros.m4 (AC_LANG_SOURCE(C)): New macro, undefine, then define
17187         using the latest version from cvs.  This avoids problems with #line
17188         directives using a vendor (Sun) compiler.
17189         (jm_MACROS): Bump prerequisite from 2.52g to 2.57.
17190         Don't set GETGROUPS_LIB here; now it's
17191         done via getgroups.m4's wrapper function.
17192         AC_SUBST OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, and MAN here,
17193         rather than just in sh-util/configure.in, so that the
17194         now-shared-by-fileutils-and-textutils lib/Makefile.am are all the
17195         same.
17196         Use AC_CONFIG_LIBOBJ_DIR(lib) to tell the new
17197         AC_FUNC_GETLOADAVG where to find getloadavg.c.
17198         Require AC_FUNC_FTW, gt_INTTYPES_PRI, gl_CLOCK_TIME,
17199         UTILS_SYS_OPEN_MAX, GL_FUNC_GETCWD_PATH_MAX, GL_FUNC_READDIR,
17200         gl_FSUSAGE, gl_MOUNTLIST, AC_FUNC_CANONICALIZE_FILE_NAME.
17201         Remove code that is now done by the newly-required macros.
17202         Append $(EXEEXT) to DF_PROG.
17203         AC_LIBOBJ fchdir-stub if fchdir doesn't exist; similarly for fchown.
17204         Do not invoke or require the following here,
17205         since prereq.m4 or some gnulib .m4 now does this for us:
17206         gl_REGEX, UTILS_FUNC_MKDIR_TRAILING_SLASH, jm_BISON, gl_FUNC_MKTIME,
17207         jm_FUNC_LSTAT, jm_FUNC_STAT, jm_FUNC_REALLOC, jm_FUNC_MALLOC,
17208         jm_FUNC_NANOSLEEP, jm_FUNC_READDIR, jm_FUNC_MEMCMP,
17209         jm_FUNC_GLIBC_UNLOCKED_IO, AC_FUNC_FNMATCH_GNU, jm_FUNC_PUTENV,
17210         jm_AC_PREREQ_XSTRTOUMAX, jm_AC_PREREQ_XSTRTOIMAX,
17211         AC_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, AC_FUNC_VPRINTF,
17212         vb_FUNC_RENAME, UTILS_FUNC_MKSTEP, jm_FUNC_UTIME, AM_FUNC_GETLINE,
17213         AC_FUNC_OBSTACK.
17214         Do not replace the following functions, as this is now the job
17215         of some gnulib .m4: strcasecmp, strncasecmp, dup2, gethostname,
17216         getusershell, sig2str, strcspn, stpcpy, strstr, strtol, strtoul
17217         strpbrk, euidaccess, memcmp, rmdir, rpmatch, strndup, strverscmp,
17218         atexit getpass, strdup, getpagesize.
17219         Replace 'raise'.
17220         Do not check for the following functions, as this is now the job
17221         of some gnulib .m4: bcopy, canonicalize_file_name, fchdir, ftime,
17222         getcwd, getmntinfo, resolvepath.  But check for sysctl, setreuid,
17223         setregid.
17224         (jm_CHECK_ALL_HEADERS): Do not check for fenv.h.
17225         Check for sys/sysctl.h.
17226         (jm_CHECK_ALL_TYPES): Do not require AC_STRUCT_TM, AC_STRUCT_TIMEZONE,
17227         jm_CHECK_TYPE_STRUCT_TIMESPEC.  Invoke gt_TYPE_SSIZE_T instead
17228         of checking for ssize_t ourselves.
17229
17230         * m4/prereq.m4 (jm_PREREQ): Don't invoke macros; AC_REQUIRE them.
17231         Require every macro that gnulib/modules/* suggests for us.
17232         (jm_PREREQ_ADDEXT): New macro.
17233         (jm_PREREQ_STAT): Check for 'struct statfs' on Ultrix 4.4.
17234         Require jm_AC_TYPE_LONG_LONG instead of invoking it.
17235
17236         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): New macro.
17237         (gl_PHYSMEM): Use it.
17238         Also check for `table' function.
17239         Check for new headers and functions.
17240         Add check for sys/sysmp.h.
17241         With suggestions from Kaveh Ghazi.
17242         Ignore headers that are present but cannot be compiled.  This
17243         avoids spurious warnings on Solaris 9 sparc with Forte Developer 7
17244         C 5.4.
17245
17246 2003-08-15  Paul Eggert  <eggert@twinsun.com>
17247
17248         Document merge from coreutils.
17249         * modules/userspec: Depend on posixver.
17250         * modules/strftime: Depend on tzset.
17251
17252 2003-08-15  Paul Eggert  <eggert@twinsun.com>
17253
17254         * lib/config.charset, ref-add.sin, ref-del.sin: Use three spaces,
17255         rather than tab, after '#' in shell-script copyright notices.
17256         Suggested by Bruno Haible.
17257
17258 2003-08-15  Paul Eggert  <eggert@twinsun.com>
17259
17260         * config/srclist-update: Use three spaces, rather than tab, after '#'
17261         in shell-script copyright notices.  Suggested by Bruno Haible.
17262         Remove unnecessary parenthesization in regular expression.
17263
17264 2003-08-15  Jim Meyering  <jim@meyering.net>
17265
17266         Merge from coreutils.
17267         * lib/xgethostname.c: Include <stdlib.h>.
17268         (xghostname): Don't exit for anything other than memory-related
17269         failure; just return NULL.
17270         * lib/userspec.c: Include "posixver.h".
17271         (parse_user_spec): Accept `.' as a separator only
17272         in pre-POSIX-200112 mode.
17273         * lib/strtoimax.c: Use #elif rather than #else #if.
17274         * lib/strftime.c (my_strftime) [!_LIBC && HAVE_TZNAME && HAVE_TZSET]:
17275         Remove function, now that we can rely on a working tzset function.
17276         [!_LIBC]: Ensure that the required autoconf test has been run.
17277         [!defined _NL_CURRENT && HAVE_STRFTIME]:
17278         Use underlying_strftime for %r.
17279         * lib/sha.c: Merge in some clean-up and optimization changes from
17280         glibc.
17281         * lib/sha.c (sha_stream) [BLOCKSIZE]: Move definition to top of file.
17282         Ensure that it is a multiple of 64.
17283         Rearrange loop exit tests so as to avoid performing an
17284         additional fread after encountering an error or EOF.
17285         * lib/realloc.c: Update copyright date.
17286
17287 2003-08-15  Jim Meyering  <jim@meyering.net>
17288         and Paul Eggert  <eggert@twinsun.com>
17289
17290         Merge from coreutils.
17291         * lib/readutmp.h (HAVE_UTMPX_H): Undef if struct utmp has the ut_exit
17292         member but strut utmpx does not.  Needed for AIX 4.3.3.
17293         (UT_EXIT_E_TERMINATION, UT_EXIT_E_EXIT): Define.
17294
17295 2003-08-15  Jim Meyering  <jim@meyering.net>
17296         and Paul Eggert  <eggert@cs.ucla.edu>
17297
17298         Merges from coreutils, etc.
17299         * m4/strftime.m4 (_jm_STRFTIME_PREREQS):
17300         Require gl_FUNC_TZSET_CLOBBER.
17301         * m4/readutmp.m4 (gl_READUTMP): Check for ut_exit.ut_exit,
17302         ut_exit.e_exit, ut_exit.ut_termination, and ut_exit.e_termination
17303         members.
17304
17305 2003-08-14  Paul Eggert  <eggert@twinsun.com>
17306
17307         Help the merge from coreutils.
17308         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): New macro.
17309         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Use it.
17310         * m4/tzset.m4: Use it too.
17311
17312 2003-08-14  Paul Eggert  <eggert@twinsun.com>
17313
17314         * modules/tzset: New file.
17315
17316 2003-08-14  Jim Meyering  <jim@meyering.net>
17317
17318         Merges from coreutils.
17319         * modules/fnmatch: Use the `$(FNMATCH_H)' notation for AC_REPLACED
17320         variable names, rather than @FNMATCH_H@.
17321         * modules/alloca: Likewise for $(ALLOCA_H).
17322
17323         * modules/fnmatch (fnmatch.h): Use `$@' in the commands, in place of
17324         the three copies of the literal target, `fnmatch.h'.
17325         * modules/alloca (alloca.h): Likewise.
17326
17327 2003-08-14  Jim Meyering  <jim@meyering.net>
17328
17329         Merge from coreutils.
17330         * m4/tzset.m4: New file.
17331         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Move the
17332         MOUNTED_VMOUNT test to precede the MOUNTED_GETMNTENT1 tests, since
17333         otherwise, AIX 5.1 systems would end up using the latter.
17334         MOUNTED_GETMNTENT1 support is inadequate on such systems: 1) detecting
17335         whether a file system is remote doesn't work  2) the MOUNTED_VMOUNT
17336         code reports the HOSTNAME:/MOUNT_POINT, while the MOUNTED_GETMNTENT1
17337         code reports merely /MOUNT_POINT.  Reported by Mike Jetzer.
17338
17339 2003-08-14  Jim Meyering  <jim@meyering.net>
17340
17341         Merge from coreutils.
17342         * lib/obstack.h: Whitespace changes.
17343         * lib/mountlist.c: Remove anachronistic casts of xmalloc, xrealloc,
17344         and xcalloc return values.
17345         (read_filesystem_list) [MOUNTED_GETFSSTAT]:
17346         Use MNT_NOWAIT, rather than MNT_WAIT.  Otherwise, `df DIR' could
17347         hang on OSF/1 5.1 for DIR on both local and remote file systems.
17348         Reported by (and fix confirmed by) Nelson H. F. Beebe.
17349         (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
17350         error from mntctl.
17351         Use mntctl's return value to drive the entry-processing loop, since
17352         we can't rely on the value of the vmt_length member in the last
17353         entry.  On some systems doing so could result in exhausting
17354         virtual memory.  Based in part on a patch from Mike Jetzer.
17355
17356 2003-08-14  Jim Meyering  <jim@meyering.net>
17357         and Paul Eggert  <eggert@twinsun.com>
17358
17359         Merges from coreutils, plus other fixes.
17360         * lib/physmem.c: Merge in portability changes from gcc/libiberty
17361         to support AIX, IRIX, Tru64, and Windows.  See the ChangeLog there
17362         for credits and details.  Thanks to Kaveh Ghazi for helping
17363         to keep these files in sync.
17364         (ARRAY_SIZE): Define it.
17365         (physmem_total, physmem_available): Add comments. From Kaveh Ghazi.
17366         * lib/memcasecmp.c: Remove unnecessary parentheses after 'defined'.
17367         (memcasecmp): Don't assume size_t fits in unsigned int.
17368         Remove casts and duplicate code.
17369         * lib/md5.c: Include <string.h> and <stdlib.h> unconditionally.
17370         (memcpy): Remove definition.
17371         Merge in some clean-up and optimization changes from glibc.
17372         [BLOCKSIZE]: Move definition to top of file.
17373         Ensure that it is a multiple of 64.
17374         Rearrange loop exit tests so as to avoid performing an
17375         additional fread after encountering an error or EOF.
17376         * lib/md5.h (md5_uintptr): Define.
17377         * lib/makepath.c (CLEANUP_CWD): Report an error if we failed to
17378         return to the initial working directory.  Preserve errno
17379         for caller.
17380         * lib/idcache.c: Include "xalloc.h".
17381         (xmalloc, xrealloc): Remove decls.
17382         (getuser): Remove casts no longer required in C89.
17383         * lib/human.c: Include stdio.h, for sprintf.
17384         * lib/group-member.c: Include "xalloc.h".
17385         (xmalloc, xrealloc): Remove decls.
17386         (get_group_info): Remove casts no longer required in C89.
17387         * lib/getusershell.c (readname): Remove casts no longer required in
17388         C89.
17389         * lib/gettimeofday.c (rpl_gmtime, rpl_tzset): New functions.
17390         * lib/getline.c: Whitespace fix, from coreutils.
17391
17392 2003-08-13  Paul Eggert  <eggert@twinsun.com>
17393
17394         * m4/exclude.m4 (gl_EXCLUDE): Require AC_C_INLINE, AC_HEADER_STDC.
17395         Check for isascii.
17396
17397         * m4/gettext.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, lib-link.m4,
17398         lib-prefix.m4, longdouble.m4, po.m4, progtest.m4, signed.m4:
17399         Undo previous (whitespace-only) change.
17400
17401 2003-08-13  Paul Eggert  <eggert@twinsun.com>
17402
17403         * lib/exclude.c: Include <ctype.h>
17404         (IN_CTYPE_DOMAIN): New macro.
17405         (is_space): New fn.
17406         (add_exclude_file): If LINE_END is a space, ignore trailing spaces
17407         and empty lines.
17408
17409         * lib/argp-help.c, argp-parse.c, config.charset, getopt.h:
17410         Undo previous (whitespace-only) change.
17411
17412 2003-08-13  Paul Eggert  <eggert@twinsun.com>
17413
17414         * config/srclist-update: Change update back to the old behavior,
17415         leaving whitespace alone.  Use one 'sed' command rather than a
17416         pipeline.
17417         (fixlicense): Now a variable, not a function.
17418         (remove_trailing_blanks): Remove.
17419         (fixfile): Don't invoke unexpand or cat, or remove trailing blanks.
17420         * config/config.guess, config.sub, install-sh, missing, texinfo.tex:
17421         Undo previous (whitespace-only) change.
17422
17423 2003-08-12  Paul Eggert  <eggert@twinsun.com>
17424
17425         Merge from coreutils.
17426         * modules/euidaccess: Add lib_SOURCES, include for new
17427         file euidaccess.h
17428
17429 2003-08-12  Paul Eggert  <eggert@twinsun.com>
17430
17431         * m4/gettext.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, lib-link.m4,
17432         lib-prefix.m4, longdouble.m4, po.m4, progtest.m4, signed.m4:
17433         Normalize leading white space and remove trailing white space.
17434
17435         Merge from coreutils
17436         * m4/euidaccess.m4 (gl_FUNC_EUIDACCESS): Check for euidaccess decl.
17437
17438         * m4/lib-ld.m4, lib-link.m4, lib-prefix.m4: Regenerate from gettext
17439         0.12.1.  These files are now being upgraded automatically by
17440         ../config/srclist-update.
17441
17442 2003-08-12  Paul Eggert  <eggert@twinsun.com>
17443
17444         * lib/argp-help.c, argp-parse.c, config.charset, getopt.h:
17445         Normalize leading white space and remove trailing white space.
17446         * lib/ref-add.sin, ref-del.sin: Use '#' before empty line in copyright
17447         notice, as per ../config/srclist-update.
17448
17449         Merge from coreutils.
17450         * lib/euidaccess.h: New file.
17451         * lib/euidaccess.c: Include it.
17452         * lib/.cppi-disable: Add printf-args.h, printf-parse.h, stdbool_.h,
17453         vasnprintf.h, vasprintf.h.  Remove strdup.c, gettext.h.
17454         * lib/regex.h, strdup.c, strtoll.c, strtoul.c: Normalize white space.
17455
17456 2003-08-12  Paul Eggert  <eggert@twinsun.com>
17457
17458         * config/srclist-update: Add copyright notice.
17459         (remove_id_lines, remove_trailing_blanks): New constants.
17460         (fixfile): Use them to normalize spacing a bit in copied files.
17461         * config/config.guess, config.sub, install-sh, missing, texinfo.tex:
17462         Normalize leading white space and remove trailing white space.
17463
17464         * config/texinfo.tex: Sync with texinfo.
17465
17466         * config/srclist.txt: Don't get regex.h, strdup.c, strtoll.c,
17467         strtoul.c from libc, to merge coreutils whitespace changes.
17468
17469         * config/srclist.txt: Get the following m4 files from gettext:
17470         codeset.m4, gettext.m4, glibc21.m4, iconv.m4, intdiv0.m4,
17471         inttypes-pri.m4, lcmessage.m4, lib-ld.m4, lib-link.m4, lib-prefix.m4,
17472         longdouble.m4, nls.m4, po.m4, progtest.m4, signed.m4, wchar_t.m4,
17473         wint_t.m4.
17474
17475 2003-08-12  Karl Berry  <karl@gnu.org>
17476
17477         * config/srclist.txt: can't sync vasnprintf.c any more, changes have
17478         been made.
17479
17480 2003-08-11  Paul Eggert  <eggert@twinsun.com>
17481
17482         * modules/gnu-source, m4/gnu-source.m4:
17483         Remove; we're assuming Autoconf 2.54 or later now.
17484         Suggested by Bruno Haible.
17485         * MODULES.html.sh (func_all_modules): Remove gnu-source.
17486
17487 2003-08-11  Bruno Haible  <bruno@clisp.org>
17488
17489         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Also check for wcslen.
17490
17491 2003-08-11  Bruno Haible  <bruno@clisp.org>
17492
17493         * lib/vasnprintf.c (local_wcslen): New function, for Solaris 2.5.1.
17494         (vasnprintf): Use it instead of wcslen.
17495
17496 2003-08-11  Bruno Haible  <bruno@clisp.org>
17497
17498         * lib/stdbool_.h (_Bool): Undo last change; instead use a negative enum
17499         value to ensure that _Bool promotes to int. Use #define for _Bool when
17500         using the Solaris C compiler. Adds comments suggested by Paul Eggert.
17501
17502 2003-08-10  Karl Berry  <karl@gnu.org>
17503
17504         * lib/regex.h: update from libc (whitespace fix).
17505
17506 2003-08-09  Paul Eggert  <eggert@twinsun.com>
17507
17508         Merge some files from coreutils.  These changes were
17509         originally made by Jim Meyering.
17510         * lib/acl.c: Include <sys/types.h> before <sys/stat.h>;
17511         many older Unixes require this.
17512         * lib/alloca.c (alloca): Remove cast to argument of free;
17513         no longer needed in C89.
17514         * lib/alloca_.h, regex.h: Fix white space to match
17515         what GNU indent does.
17516
17517 2003-08-09  Paul Eggert  <eggert@twinsun.com>
17518
17519         * m4/regex.m4 (jm_INCLUDED_REGEX): Change "\201" to "\371";
17520         apparently Emacs's Unicode mode got confused before my 2003-08-05
17521         checkin.
17522
17523 2003-08-08  Paul Eggert  <eggert@twinsun.com>
17524
17525         * m4/extensions.m4: New file.
17526         * m4/timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC):
17527         Require gl_USE_SYSTEM_EXTENSIONS.
17528         * m4/unlocked-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO):
17529         Require gl_USE_SYSTEM_EXTENSIONS rather than AC_GNU_SOURCE.
17530
17531 2003-08-08  Paul Eggert  <eggert@twinsun.com>
17532
17533         * MODULES.html.sh (func_all_modules): Add extensions, gnu-source.
17534         * modules/extensions, modules/gnu-source: New files.
17535         * modules/timespec, modules/unlocked-io: Depend on extensions.
17536
17537 2003-08-07  Paul Eggert  <eggert@twinsun.com>
17538
17539         * modules/restrict: New file.
17540         * MODULES.html.sh (func_all_modules): Add restrict.
17541         * modules/regex: Depend on restrict.
17542
17543 2003-08-07  Paul Eggert  <eggert@twinsun.com>
17544
17545         * m4/restrict.m4: New file.
17546         * m4/regex.m4 (jm_PREREQ_REGEX): Add gl_C_RESTRICT.
17547
17548 2003-08-07  Bruno Haible  <bruno@clisp.org>
17549
17550         * modules/getndelim2 (Makefile.am): Add the files to EXTRA_DIST, not
17551         lib_SOURCES, because getndelim2.m4 now uses AC_LIBOBJ(getndelim2).
17552
17553 2003-08-07  Bruno Haible  <bruno@clisp.org>
17554
17555         * m4/getndelim2.m4 (gl_GETNDELIM2): Use AC_LIBOBJ(getndelim2). This
17556         makes the module 'getndelim2' compatible with the module 'getline'.
17557
17558 2003-08-05  Paul Eggert  <eggert@twinsun.com>
17559
17560         * m4/regex.m4 (jm_INCLUDED_REGEX): Replace a single non-ASCII
17561         byte with "\201" to avoid glitches when editing that source file
17562         with multi-gnome-terminal.
17563
17564 2003-08-05  Paul Eggert  <eggert@twinsun.com>
17565
17566         * lib/bumpalloc.h: Remove.
17567
17568 2003-08-05  Paul Eggert  <eggert@twinsun.com>
17569
17570         * MODULES.html.sh (func_all_modules): Remove bumpalloc.
17571         * modules/bumpalloc: Remove.
17572
17573 2003-08-04  Paul Eggert  <eggert@twinsun.com>
17574
17575         * lib/getloadavg.c: Change copyright notice and spacing to conform to
17576         GNU coding style.
17577
17578         Merge from coreutils.
17579         * lib/error.c [!USE_IN_LIBIO]: Omit this case; assume USE_IN_LIBIO is
17580         1. From glibc.
17581         * lib/getdate.y (date): Also accept dates like May-23-2003; suggestion
17582         from Karl Berry, implemented by Jim Meyering.
17583         * lib/getgroups.c: Include "xalloc.h" instead of declaring xalloc fns;
17584         from Dmitry V. Levin.
17585         Remove anachronistic cast of xrealloc.
17586         * lib/fnmatch_.h (__const): Remove.  Use 'const'.
17587         * lib/fnmatch_loop.c (NEW_PATTERN): Cast alloca return value to proper
17588         type. Otherwise, it wouldn't compile with at least /bin/cc on
17589         ymp-cray-unicos9.0.2.X.
17590         Combine two mostly-identical uses of alloca into one.
17591         Thanks to the Cray-Cyber project for access to a Cray Y-MP.
17592
17593 2003-08-04  Dave Love  <d.love@dl.ac.uk>
17594
17595         [From Emacs.]
17596
17597         * lib/getloadavg.c: Check `__unix' as well as `unix'.  Use #ifdef, not
17598         #if.  Check HAVE_LIBKSTAT as well as LOAD_AVE_TYPE.  Check
17599         F_SETFD, not FD_SETFD.  Use HAVE_STRUCT_NLIST_N_UN_N_NAME, not
17600         obsolete NLIST_NAME_UNION.
17601         [__GNU__]: Undef BSD and FSCALE.
17602         [!NLIST_STRUCT]: Remove conditional definition of NLIST_STRUCT.
17603
17604 2003-08-03  Paul Eggert  <eggert@twinsun.com>
17605
17606         * lib/stdbool_.h (_Bool): Make it signed char, instead of
17607         an enum type, so that it's guaranteed to promote to int.  See:
17608         <http://mail.gnu.org/archive/html/bug-gnulib/2003-07/msg00124.html>
17609
17610 2003-08-03  Karl Berry  <karl@gnu.org>
17611
17612         * config/depcomp: update from automake.
17613
17614 2003-07-31  Paul Eggert  <eggert@twinsun.com>
17615
17616         * lib/strerror.c: Include config.h, limits.h.  Declare sprintf.
17617         (strerror): Don't assume that a printable int fits in 14 bytes.
17618
17619 2003-07-31  Bruno Haible  <bruno@clisp.org>
17620
17621         * modules/getpass-gnu: New file.
17622         * MODULES.html.sh (func_all_modules): Add getpass-gnu.
17623
17624 2003-07-31  Bruno Haible  <bruno@clisp.org>
17625
17626         * m4/getpass.m4 (gl_FUNC_GETPASS_GNU): New macro.
17627
17628 2003-07-24  Karl Berry  <karl@gnu.org>
17629
17630         * config/missing: update from automake.
17631
17632 2003-07-24  Derek Robert Price  <derek@ximbiot.com>
17633             Bruno Haible  <bruno@clisp.org>
17634
17635         * lib/getline.h (getline, getdelim): Change return type to ssize_t.
17636         * lib/getline.c (getline, getdelim): Likewise.
17637         Remove _GNU_SOURCE define; now it's defined in config.h through
17638         m4/getline.m4.
17639
17640 2003-07-23  Karl Berry  <karl@gnu.org>
17641
17642         * config/config.sub: update from prep.
17643
17644 2003-07-22  Paul Eggert  <eggert@twinsun.com>
17645
17646         * modules/xalloc (Depends-on): Add exitfail.
17647         * modules/xmemcoll: Likewise.
17648
17649 2003-07-22  Paul Eggert  <eggert@twinsun.com>
17650
17651         * lib/xalloc.h (XCALLOC, XREALLOC, CCLONE): Fix under- and
17652         over-parenthesization in macros.
17653
17654         Sync with coreutils.
17655
17656         * lib/xalloc.h (XMALLOC, XCALLOC, XREALLOC): Remove casts not
17657         required by C99.
17658
17659         Use `exit_failure' for xalloc and xmemcoll instead of their own
17660         private exit-failure variables.
17661         * lib/xalloc.h (xalloc_exit_failure): Remove.
17662         * lib/xmalloc.c: Likewise.  Include exitfail.h.
17663         (xalloc_die): Use exit_failure instead of xalloc_exit_failure.
17664         * lib/xmemcoll.h (xmemcoll_exit_failure): Remove.
17665         * lib/xmemcoll.c: Likewise.  Include exitfail.h.
17666         (xmemcoll): Use exit_failure instead of xalloc_exit_failure.
17667
17668 2003-07-20  Jim Meyering  <jim@meyering.net>
17669
17670         * modules/closeout (Depends-on): Add exitfail.
17671         Suggestion from Bruno Haible.
17672
17673 2003-07-19  Karl Berry  <karl@gnu.org>
17674
17675         * config/config.sub: update from prep.
17676
17677 2003-07-18  Paul Eggert  <eggert@twinsun.com>
17678
17679         * lib/closeout.h (close_stdout_set_status, close_stdout_status):
17680         Remove.
17681         * lib/closeout.c: Likewise.  Include "closeout.h" right after config.h,
17682         to test that it can stand by itself.  Include "exitfail.h".
17683         Clients should set exit_failure instead.
17684         (EXIT_FAILURE): Remove; no longer needed.  Do not include <stdlib.h>.
17685
17686 2003-07-18  Bruno Haible  <bruno@clisp.org>
17687
17688         * modules/getndelim2: New file.
17689         * modules/getline: Share files with module getndelim2.
17690         * modules/getnline: Depend on getndelim2 instead of sharing files with
17691         it. Add getnline.c to lib_SOURCES.
17692         * MODULES.html.sh (func_all_modules): Add getndelim2.
17693
17694 2003-07-18  Bruno Haible  <bruno@clisp.org>
17695
17696         * m4/getndelim2.m4: New file.
17697         * m4/getline.m4 (AM_FUNC_GETLINE): Add AC_LIBOBJ of getndelim2.c and
17698         invoke gl_PREREQ_GETNDELIM2.
17699         (gl_PREREQ_GETLINE): Drop AC_HEADER_STDC, now done by
17700         gl_PREREQ_GETNDELIM2.
17701         * m4/getnline.m4 (gl_GETNLINE): Drop AC_HEADER_STDC, now done by
17702         gl_GETNDELIM2.
17703
17704 2003-07-18  Bruno Haible  <bruno@clisp.org>
17705
17706         * lib/getndelim2.h: New file.
17707         * lib/getndelim2.c: Make into a module of its own. Include config.h,
17708         getndelim2.h.
17709         (getndelim2): Make non-static. Change return type to ssize_t.
17710         * lib/getline.h: Change argument names.
17711         * lib/getline.c: Include getndelim2.h instead of getndelim2.c.
17712         * lib/getnline.c: Include getndelim2.h.
17713
17714 2003-07-18  Andreas Schwab  <schwab@suse.de>
17715
17716         * lib/memcoll.c (memcoll) [!HAVE_STRCOLL]: Clear errno.
17717
17718 2003-07-17  Karl Berry  <karl@gnu.org>
17719
17720         * config/config.sub: update from prep.
17721
17722 2003-07-17  Bruno Haible  <bruno@clisp.org>
17723
17724         * modules/getnline: New file.
17725         * modules/getline: Add lib/getndelim2.c to source file list.
17726         * MODULES.html.sh (func_all_modules): Add getnline.
17727
17728 2003-07-17  Bruno Haible  <bruno@clisp.org>
17729
17730         * m4/getnline.m4: New file.
17731
17732 2003-07-17  Bruno Haible  <bruno@clisp.org>
17733
17734         * m4/Makefile.am.in: Remove file.
17735         * m4/Makefile.am: Remove file.
17736         * m4/Makefile.in: Remove file.
17737
17738 2003-07-17  Bruno Haible  <bruno@clisp.org>
17739
17740         * lib/getnline.h: New file.
17741         * lib/getnline.c: New file.
17742         * lib/getndelim2.c: New file, extracted from getline.c.
17743         (getndelim2): Renamed from getdelim2, with added nmax argument.
17744         * lib/getline.c: Include getndelim2.c.
17745         (getdelim2): Moved out to getndelim2.c.
17746         (getline, getdelim): Update.
17747
17748 2003-07-17  Bruno Haible  <bruno@clisp.org>
17749
17750         * lib/Makefile.am: Remove file.
17751         * lib/Makefile.in: Remove file.
17752
17753 2003-07-17  Bruno Haible  <bruno@clisp.org>
17754
17755         * configure.in: Remove file.
17756         * Makefile.in: Remove file.
17757
17758 2003-07-17  Bruno Haible  <bruno@clisp.org>
17759
17760         * MODULES.html.sh: Put the </BODY> right before </HTML>.
17761
17762 2003-07-16  Karl Berry  <karl@gnu.org>
17763
17764         * config/srclist-update: was running fixlicense twice, which caused
17765                 texinfo.tex to be nullified for some reason.  Simplify,
17766                 $gplsrc is no longer needed as far as I can see?
17767
17768 2003-07-16  Jim Meyering  <jim@meyering.net>
17769
17770         * modules/save-cwd: Depend on xgetcwd.  From Derek Price.
17771
17772 2003-07-15  Paul Eggert  <eggert@twinsun.com>
17773
17774         * config/srclist.txt: Get the following files from gettext-runtime/intl
17775         instead: config.charset, localcharset.c, localcharset.h, ref-add.sin,
17776         ref-del.sin.  From Bruno Haible.
17777         * config/srclist-update (fixfile): Change grep pattern again, since the
17778         previous fix didn't work (there was another trailing $).  Use
17779         '[$]' to escape the $s.
17780
17781 2003-07-15  Karl Berry  <karl@gnu.org>
17782
17783         * lib/vasnprintf.c: update from gettext.
17784
17785 2003-07-15  Karl Berry  <karl@gnu.org>
17786
17787         * config/srclist-update (fixfile): Change grep pattern, since 'Id'
17788         gets expanded when surrounded by '$'.
17789
17790 2003-07-15  Jim Meyering  <jim@meyering.net>
17791
17792         * modules/save-cwd: Don't depend on error.  From Derek Price.
17793
17794 2003-07-15  Jim Meyering  <jim@meyering.net>
17795
17796         * lib/makepath.c (make_path): Enclose diagnostic in _(...).
17797
17798 2003-07-14  Simon Josefsson  <jas@extundo.com>
17799
17800         * modules/mempcpy: New file.
17801         * MODULES.html.sh (func_all_modules): Add mempcpy.
17802
17803 2003-07-14  Simon Josefsson  <jas@extundo.com>
17804
17805         * m4/mempcpy.m4: New file.
17806
17807 2003-07-14  Simon Josefsson  <jas@extundo.com>
17808
17809         * lib/mempcpy.h: New file.
17810         * lib/mempcpy.c: New file.
17811
17812 2003-07-14  Paul Eggert  <eggert@twinsun.com>
17813
17814         * modules/getdate, modules/posixtm: Depend on mktime.
17815
17816 2003-07-14  Paul Eggert  <eggert@twinsun.com>
17817
17818         * lib/ceill.c, expl.c, floorl.c, frexpl.c, ldexpl.c, mathl.h,
17819         sincosl.c, sqrtl.c, trigl.c, trigl.h, poll.c, poll_.h, mkstemp.c,
17820         unicodeio.c, unicodeio.h, unlocked-io.h:
17821         Switch from LGPL to GPL.
17822
17823 2003-07-14  Paul Eggert  <eggert@twinsun.com>
17824
17825         * lib/asnprintf.c, asprintf.c, config.charset, gettext.h,
17826         localcharset.c, localcharset.h, mkdtemp.c, printf-args.c,
17827         printf-args.h, printf-parse.c, printf-parse.h, ref-add.sin,
17828         ref-del.sin, setenv.c, unsetenv.c, vasnprintf.c, vasnprintf.h,
17829         vasprintf.c, vasprintf.h: Regenerate.  These files are now being
17830         updated automatically by ../config/srclist-update.  This changes
17831         their license from LPGL to GPL.
17832
17833 2003-07-14  Paul Eggert  <eggert@twinsun.com>
17834
17835         * config/srclist.txt: Add tons more gettext files.  $GETTEXT is now
17836         assumed to refer to the root of the most recent stable gettext version.
17837         * config/srclistvars.sh: Add defaults for eggert.
17838         * config/srclist-update: Convert LGPL to GPL in shell scripts, too.
17839         Match "This program" as well as "The program".  This is needed
17840         for gettext.
17841
17842 2003-07-14  Jim Meyering  <jim@meyering.net>
17843
17844         Don't emit diagnostics.  Let callers do that.
17845         * lib/save-cwd.c: Don't include "error.h".
17846         (save_cwd): Don't call error.  Ensure that errno is valid
17847         when returning nonzero.
17848
17849         * lib/save-cwd.h (restore_cwd): Update prototype.
17850         * lib/save-cwd.c (restore_cwd): Remove two parameters.
17851         Simplify.  Don't call error upon failure.  Let callers do that.
17852         (save_cwd): Mention that Irix 5.3 has the same problem as SunOS 4
17853         when auditing is enabled.  But don't bother updating the #if.
17854
17855 2003-07-11  Alexandre Duret-Lutz  <adl@gnu.org>
17856
17857         * lib/obstack.h (__INT_TO_PTR): Revert change of 2003-03-13;
17858         it breaks C++ compilation.
17859         [!__GNUC__ || !__STDC__] (obstack_finish): Cast result to void*.
17860
17861 2003-07-10  Simon Josefsson  <jas@extundo.com>
17862
17863         * modules/strchrnul (Makefile.am): Add strchrnul.h.
17864
17865 2003-07-10  Jim Meyering  <jim@meyering.net>
17866
17867         * m4/clock_time.m4: Remove trailing blank.
17868         * m4/intmax_t.m4: Likewise.
17869
17870 2003-07-10  Jim Meyering  <jim@meyering.net>
17871
17872         * lib/vasnprintf.c: Remove trailing blanks.
17873         Make cpp indentation consistent.
17874
17875 2003-07-09  Paul Eggert  <eggert@twinsun.com>
17876
17877         * lib/alloca_.h, euidaccess.c, getpass.c, memrchr.c, obstack.h,
17878         posixver.c, strftime.c, strnlen.c, strverscmp.c:
17879         Switch from LGPL to GPL.
17880
17881 2003-07-09  Paul Eggert  <eggert@twinsun.com>
17882
17883         * config/srclist.txt: Sort sublists.  Add
17884         $LIBCSRC/sysdeps/generic/strtoul.c. In comments, add more libc files
17885         that differ from gnulib for one reason or another; we'd like this list
17886         to be smaller but for now let's document what we have.
17887
17888 2003-07-08  Paul Eggert  <eggert@twinsun.com>
17889
17890         * config/srclist-update: Port to POSIX 1003.1-2001 hosts by avoiding
17891         the use of GNU extensions.  Change "x=`eval echo $x`" to the shorter
17892         and sweeter "eval x=$x".
17893         * config/srclist.txt: Get lib/argp* from glibc.
17894
17895 2003-07-07  Paul Eggert  <eggert@twinsun.com>
17896
17897         * lib/mktime.c: Fix some boundary cases and remove need for floating
17898         point.
17899
17900         Issue a compile-time diagnostic if time_t is floating point, or if
17901         two's complement arithmetic is not in effect, or if arithmetic
17902         right shift does not propagate the sign.  These assumptions were
17903         all in the original code but they weren't checked.
17904
17905         (TIME_T_MIDPOINT, verify): New macros.
17906         (__isleap): Remove; it has integer overflow problems.
17907         (leapyear): New function, without those problems.
17908         (ydhms_tm_diff): Remove; splitting into two parts.
17909         (ydhms_diff): New function, containing the arithmetic part of
17910         the old ydhms_tm_diff function.  Issue a compile-time
17911         diagnostic if we are not using C99 integer division.
17912         Avoid casts when possible.
17913         (guess_time_tm): New function, containing the checking part of
17914         the old ydhms_tm_diff function.  Return the new value, rather than
17915         the difference between it and the old.  Accept a new argument T
17916         so that *T specifies the old value.  Check for overflow in the result.
17917
17918         (__mktime_internal): Use a time_t offset, not a long int offset.
17919         This undoes the 2003-06-04 change, which is no longer needed now
17920         that we have better overflow checking.
17921         (localtime_offset): Likewise.
17922
17923         (__mktime_internal): Avoid harmful overflow on hosts where time_t
17924         and long are 64-bit but int is only 32-bit.
17925         (ydhms_diff): Use long int to store year1 and yday1.
17926         Issue a compile-time diagnostic if long int is not wide enough.
17927
17928         (__mktime_internal): Use long int to store adjusted year and yday.
17929         Use plain C rather than preprocessor commands, if that doesn't
17930         affect efficiency.
17931         Check for overflow (and try to repair) after each probe
17932         rather than checking only at the very end.  This avoids some bugs
17933         (e.g., southern hemisphere, behind GMT, and GMT offset at minimum time
17934         does not equal GMT offset at maximum time).
17935         Use integer to check for overflow rather than floating point; this
17936         is more portable to non-IEEE hosts, and is a tad faster.
17937         When we detect that we are oscillating between two values,
17938         don't check whether tm_isdst has the requested value, since
17939         we already know the answer.  When tm_isdst has the wrong value,
17940         use a different heuristic to find the right one, based on the
17941         extreme values actually observed in practice in tz2003a,
17942         rather than the (overly optimistic) "previous 3 calendar quarters".
17943
17944         (not_equal_tm, print_tm, check_result): Use "const T" rather than
17945         "T const" to accommodate glibc style.
17946         (check_result): Use less-confusing report format.  "long" -> "long int.
17947         (main): Likewise.
17948         Don't loop if the iteration overflows time_t.
17949         Allow a negative step in the iteration.
17950
17951 2003-07-06  Karl Berry  <karl@gnu.org>
17952
17953         * config/depcomp: update from automake.
17954         * config/config.sub: update from prep.
17955
17956 2003-07-03  Karl Berry  <karl@gnu.org>
17957
17958         * config/config.guess: update from prep.
17959
17960 2003-07-01  Paul Eggert  <eggert@twinsun.com>
17961
17962         * m4/xreadlink.m4 (gl_XREADLINK): Don't check for sys/types.h, since
17963         xreadlink.c now includes it unconditionally.
17964
17965 2003-07-01  Paul Eggert  <eggert@twinsun.com>
17966
17967         * lib/xreadlink.c: Include <sys/types.h> unconditionally, instead of
17968         having it depend on HAVE_SYS_TYPES_H.
17969
17970 2003-07-01  Bruno Haible  <bruno@clisp.org>
17971
17972         * m4/ssize_t.m4 (gt_TYPE_SSIZE_T): Don't include <unistd.h>.
17973         <sys/types.h> should be sufficient.
17974         Reported by Paul Eggert.
17975
17976 2003-06-26  Karl Berry  <karl@gnu.org>
17977
17978         * config/depcomp: update from automake.
17979
17980 2003-06-26  Bruno Haible  <bruno@clisp.org>
17981
17982         * modules/human: Depend on module stdbool.
17983
17984 2003-06-25  Bruno Haible  <bruno@clisp.org>
17985
17986         * modules/readlink: New file.
17987         * modules/xreadlink: Depend on it.
17988         * MODULES.html.sh (func_all_modules): Add readlink.
17989
17990 2003-06-25  Bruno Haible  <bruno@clisp.org>
17991
17992         * m4/readlink.m4: New file.
17993
17994 2003-06-25  Bruno Haible  <bruno@clisp.org>
17995
17996         * lib/readlink.c: New file.
17997
17998 2003-06-22  Karl Berry  <karl@gnu.org>
17999
18000         * config/srclist.txt: update mkinstalldirs from automake.
18001         * config/mkinstalldirs: update.
18002
18003 2003-06-22  Bruno Haible  <bruno@clisp.org>
18004
18005         Portability to mingw32.
18006         * m4/ssize_t.m4: New file, from GNU gettext.
18007         * m4/safe-read.m4 (gl_PREREQ_SAFE_READ): Require gt_TYPE_SSIZE_T.
18008         * m4/xreadlink.m4 (gl_XREADLINK): Require gt_TYPE_SSIZE_T.
18009
18010 2003-06-22  Bruno Haible  <bruno@clisp.org>
18011
18012         * modules/safe-read: Add m4/ssize_t.m4.
18013         * modules/xreadlink: Add m4/ssize_t.m4.
18014
18015 2003-06-20  Bruno Haible  <bruno@clisp.org>
18016
18017         Assume C89, so PARAMS isn't needed.
18018         * lib/unicodeio.h (PARAMS): Remove.
18019         * lib/unicodeio.c: Don't use PARAMS.
18020
18021 2003-06-18  Karl Berry  <karl@gnu.org>
18022
18023         * config/config.{guess,sub}: update from prep.
18024
18025 2003-06-18  Jim Meyering  <jim@meyering.net>
18026
18027         Merge changes from coreutils.
18028         * lib/readutmp.c: Include <string.h> and <stdlib.h> unconditionally.
18029         Remove explicit declarations of xmalloc and realloc.
18030         Include xalloc.h.
18031         (read_utmp): Remove anachronistic cast of xmalloc.
18032
18033 2003-06-17  Paul Eggert  <eggert@twinsun.com>
18034
18035         Assume C89, so PARAMS isn't needed.
18036         * lib/backupfile.h (PARAMS): Remove.  All uses removed.
18037         * lib/closeout.h, lib/dirname.h, lib/filemode.h, lib/fsusage.h,
18038         lib/getdate.h, lib/getline.h, lib/group-member.h, lib/hard-locale.h,
18039         lib/hash.h, lib/linebuffer.h, lib/long-options.h, lib/makepath.h,
18040         lib/memcasecmp.h, lib/memcoll.h, lib/modechange.h, lib/mountlist.h,
18041         lib/path-concat.h, lib/physmem.h, lib/posixtm.h, lib/quote.h,
18042         lib/readutmp.h, lib/same.h, lib/save-cwd.h, lib/savedir.h,
18043         lib/stdio-safer.h, lib/strtoimax.c, lib/strverscmp.h,
18044         lib/unistd-safer.h, lib/version-etc.h, lib/xalloc.h, lib/xreadlink.h,
18045         lib/xstrtod.h, lib/xstrtol.h: Likewise.
18046         * lib/filemode.h, lib/hard-locale.h, lib/memcoll.h, lib/modechange.h,
18047         lib/physmem.h, lib/same.h, lib/strverscmp.h: Do not include config.h;
18048         no longer needed. Anyway, config.h should always be included before any
18049         other file.
18050
18051 2003-06-11  Simon Josefsson  <jas@extundo.com>
18052
18053         * modules/sysexits: New file.
18054         * MODULES.html.sh (func_all_modules): Add sysexits.
18055
18056 2003-06-11  Simon Josefsson  <jas@extundo.com>
18057
18058         * lib/sysexit_.h: New file.
18059
18060 2003-06-11  Derek Price  <derek@ximbiot.com>
18061
18062         * lib/stat.c [LSTAT]: Compile/use slash_aware_lstat only if it is
18063         necessary.
18064
18065 2003-06-11  Bruno Haible  <bruno@clisp.org>
18066
18067         * m4/sysexits.m4: New file.
18068
18069 2003-06-10  Simon Josefsson  <jas@extundo.com>
18070
18071         * lib/argp.h: New file, from glibc.
18072         * lib/argp-ba.c: New file, from glibc.
18073         * lib/argp-eexst.c: New file, from glibc.
18074         * lib/argp-fmtstream.c: New file, from glibc.
18075         * lib/argp-fmtstream.h: New file, from glibc.
18076         * lib/argp-fs-xinl.c: New file, from glibc.
18077         * lib/argp-help.c: New file, from glibc.
18078         * lib/argp-namefrob.h: New file, from glibc.
18079         * lib/argp-parse.c: New file, from glibc.
18080         * lib/argp-pv.c: New file, from glibc.
18081         * lib/argp-pvh.c: New file, from glibc.
18082         * lib/argp-xinl.c: New file, from glibc.
18083
18084 2003-06-10  Simon Josefsson  <jas@extundo.com>
18085
18086         * modules/strchrnul: New file.
18087
18088 2003-06-10  Simon Josefsson  <jas@extundo.com>
18089
18090         * modules/argp: New file.
18091
18092 2003-06-10  Simon Josefsson  <jas@extundo.com>
18093
18094         * m4/strchrnul.m4: New file.
18095
18096 2003-06-10  Simon Josefsson  <jas@extundo.com>
18097
18098         * lib/strchrnul.h: New file.
18099         * lib/strchrnul.c: New file.
18100
18101 2003-06-10  Bruno Haible  <bruno@clisp.org>
18102
18103         * MODULES.html.sh (func_all_modules): Add strchrnul and argp.
18104
18105 2003-06-07  Karl Berry  <karl@gnu.org>
18106
18107         * config/config.{guess,sub}: update from prep.
18108
18109 2003-06-07  Jim Meyering  <jim@meyering.net>
18110
18111         * modules/strtod: Use $(...) notation, not @...@ for
18112         AC_REPLACE'd variables.
18113         * modules/localcharset: Likewise.
18114
18115 2003-06-07  Jim Meyering  <jim@meyering.net>
18116
18117         * lib/readtokens.h: Put `Free Software Foundation, Inc.'
18118         in place of my name in the copyright comment.
18119         Remove definition and uses of __P.
18120
18121         From coreutils.
18122         * lib/stat.c: Don't declare xmalloc explicitly.
18123         Instead, include "xalloc.h".
18124         * lib/readtokens.c (readtokens): Remove anachronistic casts of xmalloc,
18125         xrealloc, and xcalloc return values.
18126         * lib/xgetcwd.c (xgetcwd): Include "xgetcwd.h".
18127         Improve comment.
18128         * lib/xgetcwd.h: Remove definition/uses of PARAMS.
18129
18130 2003-06-07  Bruno Haible  <bruno@clisp.org>
18131
18132         * modules/poll (Makefile.am): Use explicit creation rule for poll.h, to
18133         avoid AC_CONFIG_LINKS.
18134         * modules/fnmatch (Makefile.am): Use explicit creation rule for
18135         fnmatch.h, to avoid AC_CONFIG_LINKS.
18136         * modules/alloca (Makefile.am): Make creation of alloca.h Ctrl-C safe.
18137
18138 2003-06-07  Bruno Haible  <bruno@clisp.org>
18139
18140         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH, gl_FUNC_FNMATCH_POSIX,
18141         gl_FUNC_FNMATCH_GNU): Set FNMATCH_H instead of invoking
18142         AC_CONFIG_LINKS. Needed to allow for a different name of the lib
18143         directory.
18144         * m4/poll.m4 (gl_FUNC_POLL): Set POLL_H instead of invoking
18145         AC_CONFIG_LINKS. Needed to allow for a different name of the lib
18146         directory.
18147
18148 2003-06-06  Jim Meyering  <jim@meyering.net>
18149
18150         Merge from coreutils.
18151         * lib/same.c: (same_name): Declare *_basename locals to be `const'.
18152         Consolidate declarations and initializations of *_base* locals.
18153
18154         Merge from coreutils.
18155         This avoids a core dump on systems without GNU putenv,
18156         when running `env -u SOME_ALREADY_UNSET_VARIABLE'.
18157         * lib/putenv.c (__set_errno, LOCK, UNLOCK): Define.
18158         (unsetenv): New static function, from GNU libc.
18159         (rpl_putenv): Use it.
18160
18161         * lib/modechange.c: Remove trailing blanks.
18162
18163         Merge from coreutils.
18164         * lib/fsusage.c: Remove declaration of statfs.
18165         It conflicted with one from OSF/1 5.1 in <sys/mount.h>.
18166
18167         * lib/posixtm.c: Include <stdbool.h> unconditionally.
18168
18169 2003-06-06  Jim Meyering  <jim@meyering.net>
18170
18171         * lib/stdbool_.h: Renamed from stdbool.h.in.
18172
18173 2003-06-06  Jim Meyering  <jim@meyering.net>
18174             Bruno Haible  <bruno@clisp.org>
18175
18176         * modules/stdbool: Reflect renaming: stdbool.h.in -> stdbool_.h.
18177         Adjust Makefile.am snippet not to redirect directly to target.
18178         Use $(STDBOOL_H) notation, not @STDBOOL_H@ for AC_REPLACE'd variables.
18179
18180 2003-06-05  Paul Eggert  <eggert@twinsun.com>
18181
18182         * lib/mktime.c (__mktime_internal): When resolving a tm_isdst
18183         mismatch, look in future quarters as well as past.  This fixes a
18184         bug when processing fall-backwards gaps immediately after a long
18185         period of daylight-saving time.
18186
18187         * lib/mktime.c: Assume freestanding C89 or better.
18188         (HAVE_LIMITS_H): Remove.  Assume it's 1.
18189         (__P): Remove; not used.
18190         (CHAR_BIT, INT_MIN, INT_MAX): Remove; <limits.h> defines them.
18191         (mktime, not_equal_tm, print_tm, check_result,
18192         main): Use prototypes.  Use const * where appropriate.
18193         (main): Fix typo in testing code that uncovered by above changes.
18194         (Local Variables): Remove -DHAVE_LIMITS_H from compile-command.
18195
18196 2003-06-04  Paul Eggert  <eggert@twinsun.com>
18197
18198         * m4/human.m4 (gl_HUMAN): Require AM_STDBOOL_H.  Check for
18199         locale.h, localeconv.  This merges changes from coreutils.
18200
18201         * m4/mktime.m4 (AC_FUNC_MKTIME): New macro, taken from Autoconf CVS.
18202         It can be removed after the next Autoconf is released.
18203         * m4/exclude.m4 (gl_EXCLUDE): Don't check for sys/types.h; no loner
18204         needed.
18205
18206 2003-06-04  Paul Eggert  <eggert@twinsun.com>
18207
18208         * lib/mktime.c: Fix Debian bug 177940
18209         <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=177940>.
18210         (localtime_offset): Now long int, not time_t, because we want it
18211         to be guaranteed to be signed.  All uses changed.
18212         (__mktime_internal): If overflow would occur when adding offset,
18213         don't add it.
18214
18215         Merge 'human' changes from coreutils.  Rewrite to support
18216         locale-specific notations like thousands separators.
18217         * lib/human.c: Simplify authorship notice.
18218         Include human.h immediately after config.h.
18219         <sys/types.h>, <stdio.h>: Do not include; no longer needed.
18220         <limits.h>: Do not include, since human.h does.
18221         (SIZE_MAX, UINTMAX_MAX): New macros.
18222         <strings.h>: Include if HAVE_STRINGS_H, not if !HAVE_STRING_H.
18223         <locale.h>: Include if HAVE_LOCALE_H and HAVE_LOCALECONV.
18224         (HUMAN_READABLE_SUFFIX_LENGTH_MAX): New macro.
18225         (power_letter): Renamed from suffixes.
18226         (generate_suffix_backwards): Remove.
18227         (adjust_value): Now takes int style (because of human.h changes)
18228         and long double value (for greater precision on some platforms).
18229         (group_number): New function.
18230         (human_readable): Use it.  Use integer options, not enum.
18231         Put the options before the sizes in the arg list.
18232         Support all the new options.
18233         The old human_readable function has been removed;
18234         use inttostr.h instead.
18235         (human_readable, default_block_size, humblock):
18236         Use uintmax_t, not int, for block sizes.
18237         (human_readable_inexact, block_size_types): Remove.
18238         (block_size_opts): New constant.
18239         (human_options): Renamed from human_block_size, with new signature
18240         that allows block sizes up to UINTMAX_MAX.  All callers changed.
18241         * lib/human.h: Add copyright and authorship notice.
18242         Include <limits.h> and <stdbool.h> unconditionally.
18243         (PARAMS): Remove.  All uses removed.
18244         (LONGEST_HUMAN_READABLE): Add support for thousands separator.
18245         (enum human_inexact_style): Remove tag; now a nameless enum.
18246         (human_floor, human_ceiling, human_round_to_even): Now have
18247         values 2, 0, 1 rather than -1, 1, 0.
18248         (human_group_digits, human_suppress_point_zero, human_autoscale,
18249         human_base_1024, human_SI, human_B): New constants.
18250         (human_readable_inexact, human_block_size): Remove.
18251         (human_readable): Size args are now uintmax_t, not int.
18252         (human_options): New decl.
18253
18254         * lib/exclude.c: (new_exclude, add_exclude): Remove casts that are
18255         unnecessary now that we assume C89 or better.  This change
18256         imported from coreutils.
18257
18258         * lib/mktime.c (__mktime_internal): Do not reject negative timestamps
18259         arbitrarily.  This is the same patch as 2003-05-28, but it got lost
18260         in the 2003-05-30 sync from glibc.
18261
18262         .h files should stand alone, but we shouldn't include <sys/types.h>
18263         if we can get away with just <stddef.h>.
18264
18265         * lib/__fpending.h, addext.c, backupfile.c, exclude.c, getline.c,
18266         malloc.c, putenv.c, realloc.c, strcasecmp.c: Include <stddef.h>
18267         rather than <sys/types.h>, as we merely need size_t.
18268         * lib/dirname.h, memcoll.h, xalloc.h, xmemcoll.h: Include <stddef.h>,
18269         to get size_t.
18270         * lib/hash.h, linebuffer.h, readtokens.h, stdio-safer.h, version-etc.h:
18271         Include <stdio.h>, to get FILE.
18272         * lib/memcasecmp.c: Don't include <sys/types.h>, as we can assume
18273         memcasecmp.h has included <stddef.h> and all we need is size_t.
18274         * lib/memcoll.c: Include "memcoll.h", which gets us size_t and checks
18275         our interface, instead of including <sys/types.h>
18276
18277 2003-06-04  Paul Eggert  <eggert@twinsun.com>
18278
18279         * config/srclist.txt ($LIBCSRC/time/mktime.c lib gpl): Comment out for
18280         now, as glibc mktime is buggy on non-glibc systems.
18281
18282 2003-06-03  Karl Berry  <karl@gnu.org>
18283
18284         * config/config.sub: update from prep.
18285
18286 2003-06-02  Paul Eggert  <eggert@twinsun.com>
18287
18288         [from coreutils]
18289         Fix some minor time-related bugs with POSIX time arguments.
18290         Some valid time stamps were being rejected (notably -1, and
18291         time stamps before 1900 on 64-bit hosts).  And some invalid
18292         time stamps were being accepted, e.g. September 31.
18293
18294         * lib/posixtm.h (posixtime): Return bool instead of time_t, so
18295         that we can return (time_t) -1 successfully.
18296         * lib/posixtm.c: Likewise.
18297         [HAVE_STDBOOL_H]: Include <stdbool.h>.
18298         (bool, false, true) [!HAVE_STDBOOL_H]: New type.
18299         (t): Remove static var.
18300         (year, posix_time_parse): Now takes struct tm * arg to modify, instead
18301         of static var.  All uses changed.
18302         (year): Do not reject years before 1900; they can occur with
18303         64-bit time_t.
18304         (posix_time_parse): Do not check for out-of-range components;
18305         that is now the caller's responsibility, since our checks were
18306         only approximations.
18307         (posixtime): Use mktime to check for out-of-range components,
18308         since it knows them exactly.
18309         If mktime returns (time_t) -1, check whether an error actually occurred
18310         by invoking localtime on -1.
18311         (main) [TEST_POSIXTIME]: Check for input data errors, and report
18312         posixtime failures better.
18313         Improve the test data (in comments only).
18314
18315 2003-06-02  Karl Berry  <karl@gnu.org>
18316
18317         * config/mkinstalldirs (version): new variable.
18318         (--version): new option.
18319         (usage): improve message.
18320
18321 2003-05-30  Karl Berry  <karl@gnu.org>
18322
18323         * lib/mktime.c: update from libc.
18324
18325 2003-05-30  Bruno Haible  <bruno@clisp.org>
18326
18327         * modules/gettext: Add files m4/nls.m4 and m4/po.m4.
18328         * config/config.rpath: Upgrade to gettext-0.12.1.
18329
18330 2003-05-30  Bruno Haible  <bruno@clisp.org>
18331
18332         * m4/gettext.m4: Upgrade to gettext-0.12.1.
18333         * m4/nls.m4: New file, from gettext-0.12.1.
18334         * m4/po.m4: New file, from gettext-0.12.1.
18335         * m4/progtest.m4: Upgrade to gettext-0.12.1.
18336
18337 2003-05-30  Bruno Haible  <bruno@clisp.org>
18338
18339         * lib/config.charset: Upgrade to gettext-0.12.1 and libiconv-1.9.1.
18340         * lib/localcharset.h: Likewise.
18341         * lib/localcharset.c: Likewise.
18342
18343 2003-05-29  Karl Berry  <karl@gnu.org>
18344
18345         * config/config.rpath: update from gettext.
18346
18347 2003-05-28  Paul Eggert  <eggert@twinsun.com>
18348
18349         Assume the headers required for C89 freestanding compilers.
18350         * m4/backupfile.m4 (gl_BACKUPFILE): Don't check for limits.h.
18351         * m4/fsusage.m4 (gl_PREREQ_FSUSAGE_EXTRA): Likewise.
18352         * m4/human.m4 (gl_HUMAN): Likewise.
18353         * m4/pathmax.m4 (gl_PATHMAX): Likewise.
18354         * m4/rpmatch.m4 (gl_FUNC_RPMATCH): Likewise.
18355         * m4/userspec.m4 (gl_USERSPEC): Likewise.
18356         * m4/xreadlink.m4 (gl_XREADLINK): Likewise.
18357         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
18358         * m4/quote.m4 (gl_QUOTE): Don't check for stddef.h.
18359
18360 2003-05-28  Paul Eggert  <eggert@twinsun.com>
18361
18362         Assume the headers required for C89 freestanding compilers.
18363         * lib/addext.c, lib/backupfile.c, lib/fsusage.c, lib/human.c,
18364         lib/pathmax.h, lib/rpmatch.c, lib/userspec.c, lib/xreadlink.c,
18365         lib/xstrtol.c: Include <limits.h> without checking for HAVE_LIMITS_H.
18366         * lib/backupfile.c, lib/fsusage.c, lib/hash.c, lib/human.c,
18367         lib/safe-read.c, lib/userspec.c, lib/xstrtol.c (CHAR_BIT): Don't
18368         define, since <limits.h> is guaranteed to do that.
18369         * lib/fatal.c: Include <stdarg.h> without checking for __STDC__.
18370         * lib/exclude.c: Include <stdbool.h> unconditionally.
18371         * lib/tempname.c: Include <stddef.h> unconditionally.
18372         * lib/hash.c: Include <limits.h>, since we no longer define CHAR_BIT.
18373         * lib/modechange.c, rpmatch.c (NULL): Don't define, since
18374         <stddef.h> does that.
18375         * lib/quote.c: Dont include <stddef.h> or <sys/types.h>; not needed.
18376         * lib/safe-read.c (INT_MAX): Don't define, since <limits.h> does that.
18377         * lib/safe-read.c (TYPE_MINIMUM, TYPE_MAXIMUM): Remove; no longer
18378         needed.
18379         * lib/xstrtol.c: Likewise.
18380         * lib/safe-read.c: Remove TYPE_SIGNED; no longer needed.
18381         * lib/savedir.c: Include <stddef.h> instead of defining NULL.
18382
18383         * lib/addext.c (addext): Use assignment rather than cast, to avoid
18384         warnings on some platforms.
18385
18386         * lib/mktime.c (__mktime_internal): Do not reject negative timestamps
18387         arbitrarily.
18388
18389 2003-05-26  Jim Meyering  <jim@meyering.net>
18390
18391         Merge in a change from coreutils:
18392         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Test the cache variable, not one
18393         that is guaranteed to be `no'.  Use `no_such_member' to indicate
18394         that condition, rather than `-1' which is slightly misleading.
18395         Change the name of the cache variable to have the gl_ prefix.
18396         Prompted by a patch from Richard Dawe for DJGPP.
18397
18398 2003-05-24  Karl Berry  <karl@gnu.org>
18399
18400         * config/config.guess: update from prep.
18401
18402 2003-05-22  Karl Berry  <karl@gnu.org>
18403
18404         * gnulib-tool (func_usage): =LIBRARY not =libRARY in help msg.
18405
18406 2003-05-20  Karl Berry  <karl@gnu.org>
18407
18408         * config/config.guess: update from prep.
18409
18410 2003-05-18  Karl Berry  <karl@gnu.org>
18411
18412         * config/srclistvars.sh (TEXMF): use TEXMFROOT instead, since TEXMF
18413         might actually be set by the user.
18414
18415         * config/depcomp, install-sh, mdate-sh: update from automake.
18416
18417 2003-05-17  Bruno Haible  <bruno@clisp.org>
18418
18419         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Fix a quoting bug leading to an
18420         invalid expansion for AC_EGREP_CPP.
18421         * m4/strtoimax.m4 (gl_FUNC_STRTOIMAX): Likewise.
18422         * m4/strtoumax.m4 (gl_FUNC_STRTOUMAX): Likewise.
18423         Suggested by Akim Demaille <akim@epita.fr> in
18424         http://mail.gnu.org/archive/html/bug-autoconf/2003-05/threads.html
18425
18426 2003-05-12  Jim Meyering  <jim@meyering.net>
18427
18428         * lib/strftime.c (my_strftime): Let the `-' (no-pad) flag affect
18429         the space-padded-by-default conversion specifiers, %e, %k, %l.
18430
18431 2003-05-12  Bruno Haible  <bruno@clisp.org>
18432
18433         * lib/linebreak.c (iconv_string_length): Don't return -1 just because
18434         the string is longer than 4 KB.
18435
18436 2003-05-11  Karl Berry  <karl@gnu.org>
18437
18438         * config/config.{guess,sub}: update from prep.
18439
18440 2003-05-09  Bruno Haible  <bruno@clisp.org>
18441
18442         * modules/error: Add m4/strerror_r.m4 to file list.
18443
18444 2003-05-03  Bruno Haible  <bruno@clisp.org>
18445
18446         Upgrade to Unicode-4.0.
18447         * lib/linebreak.c (nonspacing_table_data): Change width of U+00AD,
18448         U+0350..U+0357, U+035D..U+035F, U+0600..U+0603, U+0610..U+0615,
18449         U+0656..U+0658, U+0A01, U+0AE2..U+0AE3, U+0CBC, U+17B4..U+17B5,
18450         U+17DD, U+1920..U+1922, U+1927..U+192B, U+1932, U+1939..U+193B
18451         from 1 to 0. Change width of U+0CBF, U+0CC6, U+180E from 0 to 1.
18452         (uc_width): Change width of U+4DC0..U+4DFF from 2 to 1. Change width
18453         of U+2A6D7..U+2F7FF, U+2FA1E..U+2FFFD, U+30000..U+3FFFD from 1 to 2.
18454         Change width of U+E0100..U+E01EF from 1 to 0.
18455
18456 2003-04-25  Jim Meyering  <jim@meyering.net>
18457
18458         * lib/copy-file.c (copy_file_preserving): Declare buf_size to be
18459         of type size_t, not int.
18460
18461 2003-04-25  Bruno Haible  <bruno@clisp.org>
18462
18463         * lib/copy-file.c: Include <stddef.h>, for size_t.
18464
18465 2003-04-21  Paul Eggert  <eggert@twinsun.com>
18466
18467         * m4/error.m4 (gl_ERROR): Do not put under dynamic conditions some
18468         code which expansion is under static control.  Patch imported from
18469         Akim Demaille's patch to Bison; see
18470         <http://mail.gnu.org/archive/html/bison-patches/2003-03/msg00057.html>.
18471
18472 2003-04-14  Bruno Haible  <bruno@clisp.org>
18473
18474         * m4/error.m4 (jm_PREREQ_ERROR): Use AC_FUNC_VPRINTF.
18475
18476 2003-04-11  Jim Meyering  <jim@meyering.net>
18477
18478         Merge changes from Coreutils.
18479
18480         2003-03-22  Jim Meyering  <jim@meyering.net>
18481
18482         * lib/strftime.c (widen): Cast alloca return value to proper type.
18483
18484         2003-01-19  Ulrich Drepper  <drepper@redhat.com>
18485
18486         From GNU libc.
18487         * lib/strftime.c (my_strftime): Handle very large width
18488         specifications for numeric values correctly.  Improve checks for
18489         overflow.
18490
18491         2003-01-19  Jim Meyering  <jim@meyering.net>
18492
18493         * lib/strftime.c (widen) [COMPILE_WIDE]: Merge nearly-identical
18494         definitions.
18495         (nl_get_alt_digit) [! defined my_strftime]: Define.
18496         (my_strftime) [_NL_CURRENT]: Merge nearly-identical uses of
18497         _nl_get_alt_digit and _nl_get_walt_digit.
18498
18499         * lib/strftime.c (my_strftime): Merge in locale-related changes from
18500         libc. These changes have no effect outside of _LIBC.
18501
18502 2003-04-10  Bruno Haible  <bruno@clisp.org>
18503
18504         * modules/findprog: New file.
18505         * MODULES.html.sh (func_all_modules): Add it.
18506
18507 2003-04-10  Bruno Haible  <bruno@clisp.org>
18508
18509         * m4/findprog.m4: New file.
18510         * m4/eaccess.m4: New file.
18511
18512 2003-04-10  Bruno Haible  <bruno@clisp.org>
18513
18514         * lib/findprog.h: New file, from GNU gettext.
18515         * lib/findprog.c: New file, from GNU gettext.
18516
18517 2003-04-05  Jim Meyering  <jim@meyering.net>
18518
18519         Merge changes from Coreutils.
18520
18521         * lib/exclude.h (PARAMS): Remove definition and uses.
18522         * lib/exclude.c: Remove uses of `PARAMS'.
18523
18524         * lib/dirname.c [TEST_DIRNAME]: Update build instructions for test.
18525         Add test-cases for DOS filenames. Declare program_name.
18526         (main): Set up program_name.  Patch by Rich Dawe.
18527
18528         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
18529         error from mntctl.
18530         Use mntctl's return value to drive the entry-processing loop, since
18531         we can't rely on the value of the vmt_length member in the last
18532         entry.  On some systems doing so could result in exhausting
18533         virtual memory.  Based in part on a patch from Mike Jetzer.
18534
18535 2003-04-04  Bruno Haible  <bruno@clisp.org>
18536
18537         * modules/linebreak: New file.
18538         * MODULES.html.sh (func_all_modules): Add it.
18539
18540 2003-04-04  Bruno Haible  <bruno@clisp.org>
18541
18542         * m4/linebreak.m4: New file.
18543
18544 2003-04-04  Bruno Haible  <bruno@clisp.org>
18545
18546         * lib/linebreak.h: New file, from GNU gettext.
18547         * lib/linebreak.c: New file, from GNU gettext with slight
18548         modifications.
18549         * lib/lbrkprop.h: New file, from GNU gettext.
18550
18551 2003-04-03  Bruno Haible  <bruno@clisp.org>
18552
18553         * modules/utf8-ucs4: New file.
18554         * modules/utf16-ucs4: New file.
18555         * modules/ucs4-utf8: New file.
18556         * modules/ucs4-utf16: New file.
18557         * MODULES.html.sh (func_all_modules): Add them.
18558
18559 2003-04-03  Bruno Haible  <bruno@clisp.org>
18560
18561         * m4/utf-ucs4.m4: New file.
18562         * m4/ucs4-utf.m4: New file.
18563
18564 2003-04-03  Bruno Haible  <bruno@clisp.org>
18565
18566         * lib/utf8-ucs4.h: New file, from GNU gettext.
18567         * lib/utf16-ucs4.h: New file, from GNU gettext.
18568         * lib/ucs4-utf8.h: New file, from GNU gettext.
18569         * lib/ucs4-utf16.h: New file, from GNU gettext.
18570
18571 2003-04-02  Bruno Haible  <bruno@clisp.org>
18572
18573         * modules/binary-io: New file.
18574         * MODULES.html.sh (func_all_modules): Add it.
18575
18576 2003-04-02  Bruno Haible  <bruno@clisp.org>
18577
18578         * lib/binary-io.h: New file, from GNU gettext.
18579
18580 2003-04-01  Bruno Haible  <bruno@clisp.org>
18581
18582         * modules/pathname: New file.
18583         * MODULES.html.sh (func_all_modules): Add it.
18584
18585 2003-04-01  Bruno Haible  <bruno@clisp.org>
18586
18587         * lib/pathname.h: New file, from GNU gettext.
18588         * lib/concatpath.c: New file, from GNU gettext.
18589
18590 2003-03-30  Bruno Haible  <bruno@clisp.org>
18591
18592         * m4/copy-file.m4 (gl_COPY_FILE): Add check for chown().
18593
18594 2003-03-30  Bruno Haible  <bruno@clisp.org>
18595
18596         * lib/copy-file.c (copy_file_preserving): Don't set owner if the
18597         function chown() doesn't exist.
18598
18599 2003-03-28  Bruno Haible  <bruno@clisp.org>
18600
18601         * modules/copy-file: New file.
18602         * MODULES.html.sh (func_all_modules): Add it.
18603
18604 2003-03-28  Bruno Haible  <bruno@clisp.org>
18605
18606         * m4/copy-file.m4: New file.
18607
18608 2003-03-28  Bruno Haible  <bruno@clisp.org>
18609
18610         * lib/copy-file.h: New file, from GNU gettext.
18611         * lib/copy-file.c: New file, from GNU gettext.
18612
18613 2003-03-18  Jim Meyering  <jim@meyering.net>
18614
18615         * lib/quote.c (quote_n): Fix typo in comment.
18616
18617 2003-03-18  Bruno Haible  <bruno@clisp.org>
18618
18619         * m4/onceonly.m4: Use m4_defn instead of defn, for better error
18620         checking.
18621         * m4/onceonly_2_57.m4: Likewise.
18622
18623 2003-03-17  Bruno Haible  <bruno@clisp.org>
18624
18625         * m4/onceonly.m4: Require autoconf 2.54 or newer.
18626         (m4_quote): Remove macro.
18627         * m4/onceonly_2_57.m4: Require autoconf 2.54 or newer.
18628
18629 2003-03-14  Jim Meyering  <jim@meyering.net>
18630
18631         Merge changes from Coreutils.
18632         * lib/obstack.h (obstack_object_size): Declare temporary, __o,
18633         to be const, in order to avoid warnings.
18634         (obstack_room): Likewise.
18635         (obstack_empty_p): Likewise.
18636
18637 2003-03-14  Bruno Haible  <bruno@clisp.org>
18638
18639         * m4/onceonly_2_57.m4 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE,
18640         AC_CHECK_DECLS_ONCE): Quote AC_FOREACH variable-expansions properly.
18641
18642 2003-03-13  Paul Eggert  <eggert@twinsun.com>
18643
18644         Merge changes from Bison.
18645         * lib/obstack.h: (__INT_TO_PTR) [__STDC__]: Cast result to
18646         (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
18647         when compiling Bison 1.875's `bitset bset = obstack_alloc
18648         (bobstack, bytes);'.  Problem reported by Nelson H. F. Beebe.
18649         * lib/hash.c: Include <stdbool.h> unconditionally.
18650
18651 2003-03-13  Paul Eggert  <eggert@twinsun.com>
18652
18653         * m4/onceonly.m4 (m4_quote): New macro.
18654         (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
18655         Quote AC_FOREACH variable-expansions properly.
18656
18657 2003-03-13  Paul Eggert  <eggert@twinsun.com>
18658
18659         * doc/COPYING.DOC, fdl.texi: Sync with latest FSF version.
18660
18661 2003-03-09  Paul Eggert  <eggert@twinsun.com>
18662
18663         * lib/argmatch.c (EXIT_FAILURE): Define if the system doesn't.
18664         Reported by Bruce Becker; see:
18665         http://mail.gnu.org/archive/html/bug-bison/2003-03/msg00017.html
18666
18667 2003-03-03  Paul Eggert  <eggert@twinsun.com>
18668             Bruno Haible  <bruno@clisp.org>
18669
18670         * lib/mbswidth.h: Include <wchar.h>. Needed for UnixWare 7.1.1.
18671         Reported by John Hughes, see
18672         http://mail.gnu.org/archive/html/bug-bison/2003-02/msg00030.html
18673
18674 2003-02-20  Bruno Haible  <bruno@clisp.org>
18675
18676         * MODULES.html.sh (func_all_modules): Add poll.
18677
18678 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
18679
18680         * modules/poll: New file.
18681
18682 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
18683
18684         * lib/poll_.h: New file.
18685         * lib/poll.c: New file.
18686
18687 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
18688
18689         * m4/poll.m4: New file.
18690
18691 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
18692
18693         * modules/mathl: New file.
18694
18695 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
18696
18697         * lib/mathl.h: New file.
18698         * lib/acosl.c: New file.
18699         * lib/asinl.c: New file.
18700         * lib/atanl.c: New file.
18701         * lib/ceill.c: New file.
18702         * lib/cosl.c: New file.
18703         * lib/expl.c: New file.
18704         * lib/floorl.c: New file.
18705         * lib/frexpl.c: New file.
18706         * lib/ldexpl.c: New file.
18707         * lib/logl.c: New file.
18708         * lib/sincosl.c: New file.
18709         * lib/sinl.c: New file.
18710         * lib/sqrtl.c: New file.
18711         * lib/tanl.c: New file.
18712         * lib/trigl.c: New file.
18713         * lib/trigl.h: New file.
18714
18715 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
18716
18717         * m4/mathl.m4: New file.
18718
18719 2003-02-18  Bruno Haible  <bruno@clisp.org>
18720
18721         * MODULES.html.sh (func_all_modules): Add mathl.
18722
18723 2003-02-17  Bruno Haible  <bruno@clisp.org>
18724
18725         * modules/mkdtemp: New module.
18726         * MODULES.html.sh (func_all_modules): Add it.
18727
18728 2003-02-17  Bruno Haible  <bruno@clisp.org>
18729
18730         * m4/mkdtemp.m4: New file, from GNU gettext with modifications.
18731
18732 2003-02-17  Bruno Haible  <bruno@clisp.org>
18733
18734         * lib/mkdtemp.h: New file, from GNU gettext.
18735         * lib/mkdtemp.c: New file, from GNU gettext.
18736
18737 2003-02-02  Jim Meyering  <jim@meyering.net>
18738
18739         * m4/regex.m4 (jm_INCLUDED_REGEX): Detect broken re_search in
18740         e.g. glibc-2.2.93.
18741
18742 2003-01-31  Bruno Haible  <bruno@clisp.org>
18743
18744         * m4/rename.m4 (vb_FUNC_RENAME): Add a redirection from 'rename' to
18745         'rpl_rename'.
18746         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Add a redirection from 'strnlen' to
18747         'rpl_strnlen'.
18748         * m4/strtod.m4 (gl_FUNC_STRTOD): Add a redirection from 'strtod' to
18749         'rpl_strtod'.
18750         * m4/utime.m4 (jm_FUNC_UTIME): Add a redirection from 'utime' to
18751         'rpl_utime'.
18752
18753 2003-01-31  Bruno Haible  <bruno@clisp.org>
18754
18755         * lib/rename.c: #undef rename before defining rpl_rename.
18756         * lib/strnlen.c: #undef strnlen, define rpl_strnlen instead of strnlen.
18757
18758 2003-01-30  Bruno Haible  <bruno@clisp.org>
18759
18760         * modules/vasnprintf, modules/vasprintf: New modules.
18761         * MODULES.html.sh (func_all_modules): Add them.
18762
18763 2003-01-30  Bruno Haible  <bruno@clisp.org>
18764
18765         * m4/signed.m4: New file, from GNU gettext.
18766         * m4/longdouble.m4: New file, from GNU gettext.
18767         * m4/wchar_t.m4: New file, from GNU gettext.
18768         * m4/wint_t.m4: New file, from GNU gettext.
18769         * m4/vasnprintf.m4: New file.
18770         * m4/vasprintf.m4: New file.
18771
18772 2003-01-30  Bruno Haible  <bruno@clisp.org>
18773
18774         * lib/printf-args.h: New file, from GNU gettext.
18775         * lib/printf-args.c: New file, from GNU gettext.
18776         * lib/printf-parse.h: New file, from GNU gettext.
18777         * lib/printf-parse.c: New file, from GNU gettext.
18778         * lib/vasnprintf.h: New file, from GNU gettext.
18779         * lib/vasnprintf.c: New file, from GNU gettext.
18780         * lib/asnprintf.c: New file, from GNU gettext.
18781         * lib/vasprintf.h: New file, from GNU gettext with modifications.
18782         * lib/vasprintf.c: New file, from GNU gettext.
18783         * lib/asprintf.c: New file, from GNU gettext.
18784
18785 2003-01-29  Bruno Haible  <bruno@clisp.org>
18786
18787         * modules/stpncpy: New module.
18788         * MODULES.html.sh (func_all_modules): Add it.
18789
18790 2003-01-29  Bruno Haible  <bruno@clisp.org>
18791
18792         * m4/stpncpy.m4: New file.
18793
18794 2003-01-29  Bruno Haible  <bruno@clisp.org>
18795
18796         * lib/stpncpy.h: New file, from GNU gettext with modifications.
18797         * lib/stpncpy.c: New file, from GNU gettext with modifications.
18798
18799 2003-01-28  Bruno Haible  <bruno@clisp.org>
18800
18801         * modules/c-ctype: New module.
18802         * MODULES.html.sh (func_all_modules): Add it.
18803
18804 2003-01-28  Bruno Haible  <bruno@clisp.org>
18805
18806         * lib/c-ctype.h: New file, from GNU gettext, with changes suggested by
18807         Paul Eggert.
18808         * lib/c-ctype.c: New file, from GNU gettext, with changes suggested by
18809         Paul Eggert.
18810
18811 2003-01-27  Bruno Haible  <bruno@clisp.org>
18812
18813         * modules/xsetenv: New module.
18814         * MODULES.html.sh (func_all_modules): Add it.
18815
18816 2003-01-27  Bruno Haible  <bruno@clisp.org>
18817
18818         * lib/xsetenv.h: New file, from GNU gettext.
18819         * lib/xsetenv.c: New file, from GNU gettext.
18820
18821 2003-01-23  Jim Meyering  <jim@meyering.net>
18822
18823         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Correct typo: s/-1/no/ that kept this
18824         from working on systems without dirfd (at least Irix and OSF1/Tru64).
18825
18826 2003-01-23  Bruno Haible  <bruno@clisp.org>
18827
18828         * modules/minmax: New module.
18829         * MODULES.html.sh (func_all_modules): Add it.
18830
18831 2003-01-23  Bruno Haible  <bruno@clisp.org>
18832
18833         * lib/minmax.h: New file, from GNU gettext, with comments from Paul
18834         Eggert.
18835
18836 2003-01-22  Bruno Haible  <bruno@clisp.org>
18837
18838         * modules/exit: New module.
18839         * MODULES.html.sh (func_all_modules): Add it.
18840
18841 2003-01-22  Bruno Haible  <bruno@clisp.org>
18842
18843         * lib/exit.h: New file, from GNU gettext.
18844
18845 2003-01-19  Bruno Haible  <bruno@clisp.org>
18846
18847         * gnulib-tool: Recognize option --extract-maintainer.
18848         (func_get_maintainer): New function.
18849         * modules/*: Add Maintainer entry.
18850
18851 2003-01-16  Jim Meyering  <jim@meyering.net>
18852
18853         * m4/regex.m4: The `regex' struct is both input and output.
18854         Initialize it before each use.  Patch by Tim Waugh.
18855
18856 2003-01-16  Bruno Haible  <bruno@clisp.org>
18857
18858         * MODULES.html.sh: Add a table of contents. Add the module name as
18859         leftmost column. Add hyperlinks.
18860
18861 2003-01-15  Bruno Haible  <bruno@clisp.org>
18862
18863         * m4/md5.m4 (gl_MD5): Require AC_C_INLINE.
18864
18865 2003-01-15  Bruno Haible  <bruno@clisp.org>
18866
18867         * m4/longlong.m4 (jm_AC_TYPE_LONG_LONG): Also test the LL suffix.
18868         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Also test the ULL
18869         suffix.
18870
18871 2003-01-15  Bruno Haible  <bruno@clisp.org>
18872
18873         * m4/alloca.m4 (gl_FUNC_ALLOCA): Invoke AC_EGREP_CPP prerequisites.
18874
18875 2003-01-15  Bruno Haible  <bruno@clisp.org>
18876
18877         * lib/stpcpy.h (stpcpy): Use ANSI C function declarations.
18878         * lib/strcase.h (strcasecmp, strncasecmp): Likewise.
18879
18880 2003-01-14  Jim Meyering  <jim@meyering.net>
18881
18882         * lib/same.c (same_name): Tweak a comment.
18883
18884 2003-01-14  Bruno Haible  <bruno@clisp.org>
18885
18886         * lib/same.c (same_name): Reorder tests so as to avoid calling stat()
18887         when a string comparison is sufficient.
18888
18889 2003-01-14  Bruno Haible  <bruno@clisp.org>
18890
18891         * lib/readtokens.c (readtoken): Cast character to 'unsigned char', not
18892         'unsigned int'.
18893
18894 2003-01-14  Bruno Haible  <bruno@clisp.org>
18895
18896         * lib/hash-pjw.c: Add comment about low quality of this function.
18897
18898 2003-01-13  Bruno Haible  <bruno@clisp.org>
18899
18900         * modules/stpcpy: Distribute lib/stpcpy.h.
18901         * modules/setenv: Depend on alloca. Distribute lib/setenv.h.
18902
18903 2003-01-13  Bruno Haible  <bruno@clisp.org>
18904
18905         * modules/*: Add a description.
18906         * modules/strpbrk: Fix Makefile.am snippet.
18907         * modules/strtoimax: Fix dependencies.
18908         * modules/strtoumax: Likewise.
18909
18910 2003-01-13  Bruno Haible  <bruno@clisp.org>
18911
18912         * gnulib-tool (func_create_testdir): Substitute lib_OBJECTS.
18913         * modules/alloca (Makefile.am): All object files depend on alloca.h.
18914         * modules/stdbool (Makefile.am): All object files depend on stdbool.h.
18915
18916 2003-01-13  Bruno Haible  <bruno@clisp.org>
18917
18918         * gnulib-tool (func_create_testdir): Store config/* files in the main
18919         directory.
18920         * config.rpath: Move to ...
18921         * config/config.rpath: ... here.
18922         * modules/gettext: Contains config/config.rpath, not config.rpath.
18923         * modules/iconv: Likewise.
18924
18925 2003-01-12  Paul Eggert  <eggert@twinsun.com>
18926
18927         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
18928         to avoid collisions with libcurses and libreadline.
18929
18930         * m4/getstr.m4: Remove.
18931         * m4/getline.m4 (gl_PREREQ_GETLINE): Require AC_HEADER_STDC.
18932
18933 2003-01-12  Paul Eggert  <eggert@twinsun.com>
18934
18935         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
18936         to avoid collisions with libcurses and libreadline.
18937
18938         * lib/Makefile.am (libfetish_a_SOURCES): Remove getstr.c, getstr.h.
18939         * lib/getstr.h, getstr.c: Remove.
18940         * lib/getline.c: Include "getline.h", to check interface.
18941         Move body of old getstr.c here: this defines MIN_CHUNK and
18942         declares getdelim2, which is renamed from getstr.
18943         (getline, getdelim): Adjust to renaming of getstr -> getdelim2.
18944
18945         * lib/linebuffer.c (readlinebuffer): Renamed from readline.
18946         All uses changed.
18947         * lib/linebuffer.h: Likewise.
18948         (readline): Remove backward-compatibility macro.
18949
18950 2003-01-12  Paul Eggert  <eggert@twinsun.com>
18951
18952         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
18953         to avoid collisions with libcurses and libreadline.
18954         * getstr: Remove.
18955         * MODULES.html.sh: Remove getstr.
18956         * modules/getline: Depend on unlocked-io, not getstr.
18957
18958 2003-01-12  Jim Meyering  <jim@meyering.net>
18959
18960         * lib/makepath.c: Don't test HAVE_ERRNO_H.  It's not necessary.
18961
18962 2003-01-10  Bruno Haible  <bruno@clisp.org>
18963
18964         * modules/alloca: Change Makefile.am requirements. Simplify Include
18965         requirements. Add lib/alloca_.h to file list.
18966
18967 2003-01-10  Bruno Haible  <bruno@clisp.org>
18968
18969         * m4/alloca.m4 (gl_FUNC_ALLOCA): Also define ALLOCA_H.
18970
18971 2003-01-10  Bruno Haible  <bruno@clisp.org>
18972
18973         * lib/alloca_.h: New file.
18974         * lib/getdate.y: Unconditionally include alloca.h.
18975         * lib/makepath.c: Likewise.
18976         * lib/setenv.c: Likewise.
18977         * lib/userspec.c: Likewise.
18978
18979 2003-01-09  Karl Berry  <karl@gnu.org>
18980
18981         * MODULES.html.sh: include `dirname $0` in PATH, to find
18982         gnulib-tool.
18983
18984 2003-01-09  Bruno Haible  <bruno@clisp.org>
18985
18986         * modules/stdbool: Change configure.ac, Makefile.am requirements.
18987         Simplify Include requirements. Add lib/stdbool.h.in to file list.
18988
18989 2003-01-09  Bruno Haible  <bruno@clisp.org>
18990
18991         * m4/stdbool.m4 (AM_STDBOOL_H): New macro.
18992
18993 2003-01-09  Bruno Haible  <bruno@clisp.org>
18994
18995         * lib/stdbool.h.in: New file.
18996
18997 2003-01-09  Bruno Haible  <bruno@clisp.org>
18998
18999         * gnulib-tool (func_all_modules): Ignore files ending in ~.
19000         * MODULES.html.sh: Likewise.
19001
19002 2003-01-08  Jim Meyering  <jim@meyering.net>
19003
19004         * lib/full-write.c: Undefine and define-away `const' after inclusion
19005         of errno.h, not before.  Suggestion from Bruno Haible.
19006
19007 2003-01-08  Bruno Haible  <bruno@clisp.org>
19008
19009         * modules/full-read: Depend on full-write.
19010
19011 2003-01-08  Bruno Haible  <bruno@clisp.org>
19012
19013         * lib/safe-read.c: Include specification header first, to ensure its
19014         selfcontainedness.
19015         * lib/full-write.c: Likewise.
19016
19017 2003-01-07  Jim Meyering  <jim@meyering.net>
19018
19019         * lib/full-write.c: Rework so that it may serve to define full_read,
19020         too.
19021         * lib/full-read.c: Simply #define FULL_READ and include full-write.c.
19022
19023 2003-01-07  Bruno Haible  <bruno@clisp.org>
19024
19025         * lib/strtoimax.c: Include <stdint.h> as an alternative to
19026         <inttypes.h>.
19027         * lib/xstrtol.h: Likewise.
19028         * lib/xstrtoimax.c: Likewise.
19029         * lib/xstrtoumax.c: Likewise.
19030         * lib/human.h: Likewise.
19031
19032         * lib/tempname.c: Include <inttypes.h> too. Avoids a compilation error
19033         on systems that have <inttypes.h> but not <stdint.h>.
19034
19035 2003-01-07  Bruno Haible  <bruno@clisp.org>
19036
19037         * MODULES.html.sh: Add copyright notice.
19038         (missed_files): Omit CVS directory entries.
19039         (func_module): Make it work with sed-3.02.
19040         * MODULES.txt: Remove file.
19041
19042 2003-01-06  Jim Meyering  <jim@meyering.net>
19043
19044         * lib/version-etc.c: Update year in translatable copyright string.
19045
19046 2003-01-03  Karl Berry  <karl@gnu.org>
19047
19048         * config/config.{guess,sub}: update from prep.
19049
19050 2003-01-02  Karl Berry  <karl@gnu.org>
19051
19052         * doc/COPYING.DOC: belatedly updated to 1.2.
19053
19054 2003-01-01  Karl Berry  <karl@gnu.org>
19055
19056         * gnulib-tool (func_verify_module): report module name $module in
19057         error message, not $1.
19058         * gnulib-tool (create-testdir): don't complain if destdir couldn't
19059         be created, only if it doesn't exist.
19060         * gnulib-tool (last_checkin_date): don't expand the $Date here.
19061
19062 2002-12-31  Paul Eggert  <eggert@twinsun.com>
19063
19064         * m4/memcoll.m4 (gl_MEMCOLL): Require AC_FUNC_MEMCMP.
19065
19066 2002-12-31  Paul Eggert  <eggert@twinsun.com>
19067
19068         * lib/memcoll.c (memcoll): Fall back on a simple algorithm using
19069         memcmp if strcoll doesn't work.
19070
19071 2002-12-31  Bruno Haible  <bruno@clisp.org>
19072
19073         * lib/utime.c (utime_null): No need to call ftruncate if the file was
19074         nonempty.
19075
19076 2002-12-31  Bruno Haible  <bruno@clisp.org>
19077
19078         * lib/memcoll.c (STRCOLL): New macro.
19079         (memcoll): Use it.
19080
19081 2002-12-31  Bruno Haible  <bruno@clisp.org>
19082
19083         * lib/localcharset.h: New file.
19084         * lib/localcharset.c: Include it.
19085         * lib/unicodeio.c: Likewise.
19086
19087 2002-12-31  Bruno Haible  <bruno@clisp.org>
19088
19089         * lib/getstr.h (getstr): Define, to avoid clash with libcurses.
19090         * lib/linebuffer.h (readline): Define, to avoid clash with libreadline.
19091
19092 2002-12-31  Bruno Haible  <bruno@clisp.org>
19093
19094         * lib/getline.h: Include <stddef.h>, for size_t.
19095
19096         * lib/unicodeio.h: Include <stddef.h>, for size_t.
19097         * lib/unicodeio.c: Don't include <stddef.h>.
19098
19099 2002-12-31  Bruno Haible  <bruno@clisp.org>
19100
19101         * lib/getdate.y (get_date): Test HAVE_STRUCT_TM_TM_ZONE, not
19102         HAVE_TM_ZONE.
19103
19104 2002-12-24  Karl Berry  <karl@gnu.org>
19105
19106         * config/config.guess: update from prep.
19107
19108 2002-12-24  Bruno Haible  <bruno@clisp.org>
19109
19110         General infrasructure.
19111         * m4/README: Rewritten.
19112         * m4/onceonly.m4: New file.
19113         * m4/onceonly_2_57.m4: New file.
19114
19115         Module atexit.
19116         * m4/atexit.m4: New file.
19117
19118         Module strtod.
19119         * m4/strtod.m4: New file.
19120
19121         Module strtol.
19122         * m4/strtol.m4: New file.
19123
19124         Module strtoul.
19125         * m4/strtoul.m4: New file.
19126
19127         Module memchr.
19128         * m4/memchr.m4: New file.
19129
19130         Module memcmp.
19131         * m4/memcmp.m4 (gl_PREREQ_MEMCMP): New macro.
19132         (jm_FUNC_MEMCMP): Invoke it.
19133
19134         Module memcpy.
19135         * m4/memcpy.m4: New file.
19136
19137         Module memmove.
19138         * m4/memmove.m4: New file.
19139
19140         Module memset.
19141         * m4/memset.m4: New file.
19142
19143         Module strcspn.
19144         * m4/strcspn.m4: New file.
19145
19146         Module strpbrk.
19147         * m4/strpbrk.m4: New file.
19148
19149         Module strstr.
19150         * m4/strstr.m4: New file.
19151
19152         Module strerror.
19153         * m4/strerror.m4: New file.
19154
19155         Module mktime.
19156         * m4/mktime.m4: Renamed from jm-mktime.m4.
19157         (gl_PREREQ_MKTIME): New macro.
19158         (gl_FUNC_MKTIME): Renamed from jm_FUNC_MKTIME. Invoke gl_PREREQ_MKTIME.
19159
19160         Module malloc.
19161         * m4/malloc.m4 (gl_PREREQ_MALLOC): New macro.
19162         (jm_FUNC_MALLOC): Use AC_FUNC_MALLOC. Invoke gl_PREREQ_MALLOC.
19163         Don't define HAVE_DONE_WORKING_MALLOC_CHECK, since nothing uses it.
19164
19165         Module realloc.
19166         * m4/realloc.m4 (gl_PREREQ_REALLOC): New macro.
19167         (jm_FUNC_REALLOC): Use AC_FUNC_REALLOC. Invoke gl_PREREQ_REALLOC.
19168         Don't define HAVE_DONE_WORKING_REALLOC_CHECK, since nothing uses it.
19169
19170         Module strftime.
19171         * m4/tm_gmtoff.m4: New file, extracted from strftime.m4.
19172         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Use AC_FUNC_STRFTIME.
19173         Don't test for bcopy (we are not emacs). Invoke AC_TYPE_MBSTATE_T and
19174         gl_TM_GMTOFF.
19175         (_jm_STRFTIME_PREREQS, jm_FUNC_GNU_STRFTIME): Use onceonly macros.
19176
19177         Module xalloc.
19178         * m4/xalloc.m4: New file.
19179
19180         Module alloca.
19181         * m4/alloca.m4: New file.
19182
19183         Module putenv.
19184         * m4/putenv.m4 (gl_PREREQ_PUTENV): New macro.
19185         (jm_FUNC_PUTENV): Invoke it.
19186
19187         Module setenv.
19188         * m4/setenv.m4 (gt_FUNC_SETENV): New macro.
19189         (gt_CHECK_VAR_DECL): Fix quoting error that led to infinite loop in m4
19190         when invoked twice.
19191         (gt_PREREQ_SETENV, gt_PREREQ_UNSETENV): New macros, replacing old
19192         gt_FUNC_SETENV.
19193
19194         Module memrchr.
19195         * m4/memrchr.m4: New file.
19196
19197         Module stpcpy.
19198         * m4/stpcpy.m4: New file.
19199
19200         Module strcase.
19201         * m4/strcase.m4: New file.
19202
19203         Module strdup.
19204         * m4/strdup.m4: New file.
19205
19206         Module strnlen.
19207         * m4/strnlen.m4: New file.
19208
19209         Module strndup.
19210         * m4/strndup.m4: New file.
19211
19212         Module xstrtod.
19213         * m4/xstrtod.m4: New file.
19214
19215         Module xstrtol.
19216         * m4/xstrtol.m4: New file.
19217
19218         Module getdate.
19219         * m4/getdate.m4: New file.
19220
19221         Module unlocked-io.
19222         * m4/unlocked-io.m4: Renamed from jm-glibc-io.m4.
19223         (jm_FUNC_GLIBC_UNLOCKED_IO): Invoke AC_GNU_SOURCE. Use onceonly macros.
19224         * m4/jm-glibc-io.m4n: Remove file.
19225
19226         Module long-options.
19227         * m4/long-options.m4: New file.
19228
19229         Module md5.
19230         * m4/md5.m4: New file.
19231
19232         Module sha.
19233         * m4/sha.m4: New file.
19234
19235         Module getstr.
19236         * m4/getstr.m4: New file.
19237
19238         Module getline.
19239         * m4/getline.m4 (gl_PREREQ_GETLINE): New macro.
19240         (AM_FUNC_GETLINE): Invoke AC_GNU_SOURCE. Use <stdlib.h>, not
19241         <sys/types.h>, for size_t. Use the function name gnu_getline, not
19242         simply getline. Infoke gl_PREREQ_GETLINE.
19243
19244         Module obstack.
19245         * m4/obstack.m4: New file.
19246
19247         Module hash.
19248         * m4/hash.m4: New file.
19249
19250         Module readtokens.
19251         * m4/readtokens.m4: New file.
19252
19253         Module strverscmp.
19254         * m4/strverscmp.m4: New file.
19255
19256         Module stdbool.
19257         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Add test for _Bool. Needed for
19258         OSF/1.
19259
19260         Module strtoll.
19261         * m4/strtoll.m4: New file.
19262
19263         Module strtoull.
19264         * m4/strtoull.m4: New file.
19265
19266         Module strtoimax.
19267         * m4/strtoimax.m4: New file.
19268
19269         Module strtoumax.
19270         * m4/strtoumax.m4: New file.
19271
19272         Module xstrtoimax.
19273         * m4/xstrtoimax.m4 (jm_XSTRTOIMAX): Renamed from
19274         jm_AC_PREREQ_XSTRTOIMAX.
19275         Moved the strtol prerequisites to strtol.m4.
19276         Moved the strtoll prerequisites to strtoll.m4.
19277         Moved the strtoimax prerequisites to strtoimax.m4.
19278
19279         Module xstrtoumax.
19280         * m4/xstrtoumax.m4 (jm_XSTRTOUMAX): Renamed from
19281         jm_AC_PREREQ_XSTRTOUMAX.
19282         Moved the strtoul prerequisites to strtoul.m4.
19283         Moved the strtoull prerequisites to strtoull.m4.
19284         Moved the strtoumax prerequisites to strtoumax.m4.
19285
19286         Module chown.
19287         * m4/chown.m4 (gl_PREREQ_CHOWN): New macro.
19288         (jm_FUNC_CHOWN): Use AC_FUNC_CHOWN. Invoke gl_PREREQ_CHOWN.
19289
19290         Module dup2.
19291         * m4/dup2.m4: New file.
19292
19293         Module ftruncate.
19294         * m4/ftruncate.m4 (gl_PREREQ_FTRUNCATE): New macro.
19295         (jm_FUNC_FTRUNCATE): Use AC_REPLACE_FUNCS. Invoke gl_PREREQ_FTRUNCATE.
19296
19297         Module getgroups.
19298         * m4/getgroups.m4 (gl_PREREQ_GETGROUPS): New macro.
19299         (jm_FUNC_GETGROUPS): Use AC_FUNC_GETGROUPS. Invoke gl_PREREQ_GETGROUPS.
19300
19301         Module gettimeofday.
19302         * m4/gettimeofday.m4 (gl_PREREQ_GETTIMEOFDAY): New macro.
19303         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Use onceonly macros. Invoke
19304         gl_PREREQ_GETTIMEOFDAY.
19305
19306         Module mkdir.
19307         * m4/mkdir-slash.m4 (gl_PREREQ_MKDIR): New macro.
19308         (UTILS_FUNC_MKDIR_TRAILING_SLASH): Invoke gl_PREREQ_MKDIR.
19309
19310         Module mkstemp.
19311         * m4/mkstemp.m4 (gl_PREREQ_MKSTEMP): New macro.
19312         (jm_PREREQ_TEMPNAME): New macro, from prereq.m4. Also invoke
19313         jm_AC_TYPE_UINTMAX_T.
19314         (UTILS_FUNC_MKSTEMP): Invoke gl_PREREQ_MKSTEMP and jm_PREREQ_TEMPNAME.
19315
19316         Module stat.
19317         * m4/stat.m4 (gl_PREREQ_STAT): New macro.
19318         (jm_FUNC_STAT): Use AC_FUNC_STAT. Invoke gl_PREREQ_STAT.
19319
19320         Module lstat.
19321         * m4/lstat.m4 (gl_PREREQ_LSTAT): New macro.
19322         (jm_FUNC_LSTAT): Use AC_FUNC_LSTAT. Invoke gl_PREREQ_LSTAT.
19323
19324         Module timespec.
19325         * m4/timespec.m4 (gl_TIMESPEC): New macro.
19326         (jm_CHECK_TYPE_STRUCT_TIMESPEC): Add check for <sys/time.h>.
19327         * m4/st_mtim.m4: Indentation.
19328
19329         Module nanosleep.
19330         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): New macro.
19331         (jm_FUNC_NANOSLEEP): Add check for <sys/time.h>. Invoke
19332         gl_PREREQ_NANOSLEEP.
19333
19334         Module regex.
19335         * m4/regex.m4 (jm_PREREQ_REGEX): New macro.
19336         (jm_INCLUDED_REGEX): Invoke jm_PREREQ_REGEX.
19337         (gl_REGEX): New macro.
19338
19339         Module rename.
19340         * m4/rename.m4 (gl_PREREQ_RENAME): New macro.
19341         (vb_FUNC_RENAME): Invoke gl_PREREQ_RENAME.
19342
19343         Module rmdir.
19344         * m4/rmdir.m4: New file.
19345
19346         Module utime.
19347         * m4/utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Use onceonly macros.
19348         * m4/utime.m4 (gl_PREREQ_UTIME): New macro.
19349         (jm_FUNC_UTIME): Invoke gl_PREREQ_UTIME.
19350
19351         Module dirname.
19352         * m4/dirname.m4: New file.
19353
19354         Module getopt.
19355         * m4/getopt.m4: New file.
19356
19357         Module unistd-safer.
19358         * m4/unistd-safer.m4: New file.
19359
19360         Module fnmatch.
19361         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Include <stdlib.h>, for exit()
19362         declaration.
19363         (gl_PREREQ_FNMATCH_EXTRA): New macro.
19364         (gl_FUNC_FNMATCH_POSIX): New macro.
19365         (gl_FUNC_FNMATCH_GNU): Renamed from AC_FUNC_FNMATCH_GNU. Invoke
19366         gl_PREREQ_FNMATCH_EXTRA. Use the function name gnu_fnmatch, not
19367         simply fnmatch.
19368
19369         Module exclude.
19370         * m4/exclude.m4: New file.
19371
19372         Module human.
19373         * m4/human.m4: New file.
19374
19375         Module acl.
19376         * m4/acl.m4: Nop.
19377
19378         Module backupfile.
19379         * m4/backupfile.m4: New file.
19380         * m4/d-ino.m4: Indentation.
19381
19382         Module fsusage.
19383         * m4/fsusage.m4 (gl_FSUSAGE): New macro.
19384         (jm_STATFS_TRUNCATES): New macro, from coreutils-4.5.4/configure.ac.
19385         (gl_PREREQ_FSUSAGE_EXTRA): New macro.
19386
19387         Module dirfd.
19388         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Invoke some AC_EGREP_CPP
19389         requirements.
19390
19391         Module euidaccess.
19392         * m4/euidaccess.m4: New file.
19393
19394         Module file-type.
19395         * m4/file-type.m4: New file.
19396
19397         Module fileblocks.
19398         * m4/fileblocks.m4: New file.
19399
19400         Module filemode.
19401         * m4/filemode.m4: New file.
19402
19403         Module isdir.
19404         * m4/isdir.m4: New file.
19405
19406         Module lchown.
19407         * m4/lchown.m4 (gl_PREREQ_LCHOWN): New macro.
19408         (jm_FUNC_LCHOWN): Invoke gl_PREREQ_LCHOWN.
19409
19410         Module makepath.
19411         * m4/makepath.m4: New file.
19412
19413         Module modechange.
19414         * m4/modechange.m4: New file.
19415
19416         Module mountlist.
19417         * m4/mountlist.m4: New file.
19418         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Use onceonly macros.
19419         Indentation.
19420
19421         Module path-concat.
19422         * m4/path-concat.m4: New file.
19423
19424         Module pathmax.
19425         * m4/pathmax.m4: New file.
19426
19427         Module same.
19428         * m4/same.m4: New file.
19429
19430         Module save-cwd.
19431         * m4/save-cwd.m4: New file.
19432
19433         Module savedir.
19434         * m4/savedir.m4: New file.
19435
19436         Module xgetcwd.
19437         * m4/xgetcwd.m4: New file.
19438         * m4/getcwd.m4 (AC_FUNC_GETCWD_NULL): Use onceonly macros.
19439
19440         Module xreadlink.
19441         * m4/xreadlink.m4: New file.
19442
19443         Module safe-read.
19444         * m4/safe-read.m4: New file.
19445
19446         Module safe-write.
19447         * m4/safe-write.m4: New file.
19448
19449         Module closeout.
19450         * m4/closeout.m4: New file.
19451
19452         Module stdio-safer.
19453         * m4/stdio-safer.m4: New file.
19454
19455         Module getpass.
19456         * m4/getpass.m4: New file.
19457
19458         Module getugroups.
19459         * m4/getugroups.m4: New file.
19460
19461         Module group-member.
19462         * m4/group-member.m4 (gl_PREREQ_GROUP_MEMBER): New macro.
19463         (jm_FUNC_GROUP_MEMBER): Invoke AC_GNU_SOURCE, gl_PREREQ_GROUP_MEMBER.
19464
19465         Module idcache.
19466         * m4/idcache.m4: New file.
19467
19468         Module userspec.
19469         * m4/userspec.m4: New file.
19470
19471         Module gettime.
19472         * m4/clock_time.m4: New file.
19473         * m4/gettime.m4: New file.
19474
19475         Module settime.
19476         * m4/settime.m4: New file.
19477
19478         Module posixtm.
19479         * m4/posixtm.m4: New file.
19480
19481         Module gethostname.
19482         * m4/gethostname.m4: New file.
19483
19484         Module canon-host.
19485         * m4/canon-host.m4: New file.
19486
19487         Module gettext.
19488         * m4/codeset.m4: New file, from gettext-0.11.5.
19489         * m4/gettext.m4: New file, from gettext-0.11.5.
19490         * m4/glibc21.m4: New file, from gettext-0.11.5.
19491         * m4/iconv.m4: New file, from gettext-0.11.5.
19492         * m4/intdiv0.m4: New file, from gettext-0.11.5.
19493         * m4/inttypes-pri.m4: New file, from gettext-0.11.5.
19494         * m4/inttypes.m4: New file, from gettext-0.11.5.
19495         * m4/inttypes_h.m4: New file, from gettext-0.11.5 with modifications.
19496         * m4/isc-posix.m4: New file, from gettext-0.11.5.
19497         * m4/lcmessage.m4: New file, from gettext-0.11.5.
19498         * m4/lib-ld.m4: New file, from gettext-0.11.5.
19499         * m4/lib-link.m4: New file, from gettext-0.11.5.
19500         * m4/lib-prefix.m4: New file, from gettext-0.11.5.
19501         * m4/progtest.m4: New file, from gettext-0.11.5.
19502         * m4/stdint_h.m4: New file, from gettext-0.11.5 with modifications.
19503         * m4/uintmax_t.m4: New file, from gettext-0.11.5 with modifications.
19504         * m4/ulonglong.m4: New file, from gettext-0.11.5 with modifications.
19505
19506         Module localcharset.
19507         * m4/localcharset.m4: New file.
19508
19509         Module hard-locale.
19510         * m4/hard-locale.m4: New file.
19511
19512         Module mbswidth.
19513         * m4/mbswidth.m4 (gl_MBSWIDTH): Renamed from jm_PREREQ_MBSWIDTH. Use
19514         onceonly macros.
19515         * m4/mbrtowc.m4: Add comment.
19516
19517         Module memcasecmp.
19518         * m4/memcasecmp.m4: New file.
19519
19520         Module memcoll.
19521         * m4/memcoll.m4: New file.
19522
19523         Module unicodeio.
19524         * m4/unicodeio.m4: New file.
19525
19526         Module rpmatch.
19527         * m4/rpmatch.m4: New file.
19528
19529         Module yesno.
19530         * m4/yesno.m4: New file.
19531
19532         Module exitfail.
19533         * m4/exitfail.m4: New file.
19534
19535         Module c-stack.
19536         * m4/c-stack.m4 (gl_C_STACK): New macro.
19537         (jm_PREREQ_C_STACK): Check for <sys/time.h>. Use onceonly macros.
19538
19539         Module error.
19540         * m4/error.m4 (gl_ERROR): New macro.
19541         (jm_PREREQ_ERROR): Use onceonly macros.
19542
19543         Module fatal.
19544         * m4/fatal.m4: New file.
19545
19546         Module getloadavg.
19547         * m4/getloadavg.m4 (AC_FUNC_GETLOADAVG): Use onceonly macros.
19548         (gl_FUNC_GETLOADAVG, gl_PREREQ_GETLOADAVG): New macros.
19549
19550         Module getpagesize.
19551         * m4/getpagesize.m4: New file.
19552
19553         Module getusershell.
19554         * m4/getusershell.m4: New file.
19555
19556         Module physmem.
19557         * m4/physmem.m4: New file.
19558
19559         Module posixver.
19560         * m4/posixver.m4: New file.
19561
19562         Module quotearg.
19563         * m4/quotearg.m4: New file.
19564
19565         Module quote.
19566         * m4/quote.m4: New file.
19567
19568         Module readutmp.
19569         * m4/readutmp.m4: New file, based on jm_PREREQ_READUTMP from prereq.m4.
19570
19571         Module sig2str.
19572         * m4/sig2str.m4: New file.
19573
19574         Other.
19575         * m4/longlong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Remove, moved to
19576         ulonglong.m4.
19577         * m4/intmax_t.m4: New file.
19578         * m4/d-type.m4: Indentation.
19579         * m4/jm-macros.m4: Update.
19580         * m4/prereq.m4 (jm_PREREQ): Update.
19581         (jm_PREREQ_ADDEXT): Remove, obsoleted by backupfile.m4.
19582         (jm_PREREQ_CANON_HOST): Remove, obsoleted by canon-host.m4.
19583         (jm_PREREQ_DIRNAME): Remove, obsoleted by dirname.m4.
19584         (jm_PREREQ_EXCLUDE): Remove, obsoleted by exclude.m4.
19585         (jm_PREREQ_GETPAGESIZE): Remove, obsoleted by getpagesize.m4.
19586         (jm_PREREQ_HARD_LOCALE): Remove, obsoleted by hard-locale.m4.
19587         (jm_PREREQ_HASH): Remove, obsoleted by hash.m4.
19588         (jm_PREREQ_HUMAN): Remove, obsoleted by human.m4.
19589         (jm_PREREQ_MEMCHR): Remove, obsoleted by memchr.m4.
19590         (jm_PREREQ_PHYSMEM): Remove, obsoleted by physmem.m4.
19591         (jm_PREREQ_POSIXVER): Remove, obsoleted by posixver.m4.
19592         (jm_PREREQ_QUOTEARG): Remove, obsoleted by quotearg.m4.
19593         (jm_PREREQ_READUTMP): Remove, obsoleted by readutmp.m4.
19594         (jm_PREREQ_REGEX): Remove, obsoleted by regex.m4.
19595         (jm_PREREQ_STRNLEN): Remove, obsoleted by strnlen.m4.
19596         (jm_PREREQ_TEMPNAME): Remove, obsoleted by mkstemp.m4.
19597         (jm_PREREQ_XGETCWD): Remove, obsoleted by xgetcwd.m4.
19598         (jm_PREREQ_XREADLINK): Remove, obsoleted by xreadlink.m4.
19599         * m4/readdir.m4 (jm_FUNC_READDIR): Use onceonly macros.
19600
19601 2002-12-24  Bruno Haible  <bruno@clisp.org>
19602
19603         * MODULES.txt: Update according to m4/ changes.
19604
19605         Module gettext.
19606         * config.rpath: New file, from gettext-0.11.5.
19607
19608         * modules/*: New module descriptions.
19609         * gnulib-tool: New file.
19610         * MODULES.html.sh: New file.
19611
19612 2002-12-21  Karl Berry  <karl@gnu.org>
19613
19614         * doc/fdl.texi: update to version 1.2.
19615
19616 2002-12-19  Karl Berry  <karl@gnu.org>
19617
19618         * config/config.guess: update from prep.
19619
19620 2002-12-18  Bruno Haible  <bruno@clisp.org>
19621
19622         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't test for localtime_r.
19623         * m4/jm-mktime.m4 (jm_FUNC_MKTIME): Likewise.
19624
19625 2002-12-17  Bruno Haible  <bruno@clisp.org>
19626
19627         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Remove checks for limits.h,
19628         stdlib.h, string.h.
19629
19630 2002-12-17  Bruno Haible  <bruno@clisp.org>
19631
19632         * lib/canon-host.c (strdup): Remove unused declaration.
19633
19634         * lib/fsusage.c: Include full_read.h.
19635         (get_fs_usage): Use full_read instead of safe_read.
19636
19637         * lib/utime.c (utime_null): Use SAFE_READ_ERROR.
19638
19639 2002-12-12  Karl Berry  <karl@gnu.org>
19640
19641         * config/config.guess: update from prep.
19642
19643 2002-12-11  Bruno Haible  <bruno@clisp.org>
19644
19645         * m4/setenv.m4: New file, from gettext-0.11.5.
19646
19647 2002-12-11  Bruno Haible  <bruno@clisp.org>
19648
19649         * lib/setenv.h: Rewritten to cope with systems that have setenv() but
19650         not unsetenv().
19651         * lib/setenv.c, unsetenv.c: Taken from glibc-2.2.4 with the following
19652         modifications:
19653
19654         2002-12-11  Bruno Haible  <bruno@clisp.org>
19655
19656                 * setenv.c (alloca): Fall back to malloc.
19657                 (freea): New macro.
19658                 (setenv): Use freea() to free memory allocated with alloca().
19659
19660         2002-11-13  Bruno Haible  <bruno@clisp.org>
19661
19662                 * setenv.c (compar_fn_t, __add_to_environ, setenv): Use ANSI C
19663                 function declarations.
19664                 * unsetenv.c (unsetenv): Likewise.
19665
19666         2002-03-04  Bruno Haible  <bruno@clisp.org>
19667
19668                 Portability to AIX 4.3.3.
19669                 * unsetenv.c: New file, extracted from setenv.c.
19670                 * setenv.c: Move the unsetenv() function to unsetenv.c.
19671
19672         2001-12-20  Bruno Haible  <bruno@clisp.org>
19673
19674                 * setenv.c (__add_to_environ): Don't call realloc(NULL,...),
19675                 use malloc instead. For SunOS 4.
19676
19677         2001-12-11  Bruno Haible  <bruno@clisp.org>
19678
19679                 * setenv.c: Declare alloca.
19680                 (compar_fn_t): New typedef.
19681                 (KNOWN_VALUE, STORE_VALUE): Use it.
19682
19683         * lib/Makefile.am (libfetish_a_SOURCES): Add setenv.c, unsetenv.c,
19684         setenv.h.
19685
19686 2002-12-10  Paul Eggert  <eggert@twinsun.com>
19687
19688         Port exclude.c and exclude.h to more non-GNU systems, e.g. Solaris 7.
19689         * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE, EXCLUDE_WILDCARDS):
19690         Choose values that are less likely to collide with system fnmatch
19691         options.
19692         * lib/exclude.c (FNM_CASEFOLD, FNM_LEADING_DIR): Define to 0 if not
19693         defined (e.g., a pure POSIX system).
19694         (EXCLUDE_macros_do_not_collide_with_FNM_macros): Use FNM_PATHNAME
19695         instead of FNM_FILE_NAME, for compatibility with pure POSIX sytems.
19696
19697 2002-12-06  Paul Eggert  <eggert@twinsun.com>
19698
19699         Undo the 2001-07-02 change for jm-glibc-io, as it was too much of
19700         a pain in practice to deal with generated m4 files.  This change
19701         goes together with the 2002-12-04 unlocked-io.h change in ../lib.
19702
19703         * m4/Makefile.am.in (Makefile.am): Don't mention jm-glibc-io.m4n
19704         and jm-glibc-io.m4, as they are no longer a special case.
19705         * m4/jm-glibc-io.m4: Rename from jm-glibc-io.m4n, and remove the
19706         kludge and the auto-generation stuff.  Check only whether the
19707         functions are declared, not whether they exist, since older hosts
19708         that don't declare the functions can't use the optimization anyway.
19709
19710 2002-12-06  Jim Meyering  <jim@meyering.net>
19711
19712         * lib/error.c: Be consistent: change `#ifndef _LIBC' to `#if !_LIBC'.
19713
19714         Merge in changes from libc's misc/error.c, in preparation
19715         for the merge of gnulib's changes back into libc.
19716
19717         * lib/error.c (_): Define only if not already defined.
19718         Move definition to follow all #include directives.
19719         Include unlocked-io.h only if !_LIBC.
19720         [_LIBC]: Include <libio/libioP.h>.
19721         [USE_IN_LIBIO]: Include <libio/iolibio.h>
19722         (fflush): Tweak definition to use INTUSE.
19723         (putc): Define.
19724
19725 2002-12-05  Paul Eggert  <eggert@twinsun.com>
19726
19727         * lib/alloca.c [defined emacs]: Include "lisp.h".
19728         (xalloc_die) [defined emacs]: New macro.
19729         (free) [defined emacs && defined EMACS_FREE]: Define to EMACS_FREE.
19730         [! defined emacs]: Include <xalloc.h>.
19731         (POINTER_TYPE) [!defined POINTER_TYPE]: New macro.
19732         (pointer): Typedef to POINTER_TYPE *.
19733         (malloc): Remove decl; we now always use xmalloc.
19734         (alloca): Use old-style definition, since Emacs needs this.
19735         Check for arithmetic overflow when computing combined size.
19736
19737 2002-12-04  Paul Eggert  <eggert@twinsun.com>
19738
19739         Do not generate unlocked-io.h automatically, since it's easier to
19740         maintain it by hand.
19741
19742         * lib/unlocked-io.h: New file, from GNU diffutils,
19743         but with proper copyright notice and attribution.
19744         * lib/gen-uio: Remove.
19745         * lib/Makefile.am: Add copyright notice.
19746         (libfetish_a_SOURCES): Add unlocked-io.h.
19747         (BUILT_SOURCES, all-local): Remove unlocked-io.h.
19748         (DISTCLEANFILES, io_functions): Remove macros.
19749         (EXTRA_DIST): Remove gen_uio.
19750         (unlocked-io.h): Remove rule.
19751
19752 2002-12-04  Jim Meyering  <jim@meyering.net>
19753
19754         Reflect the fact that stat.c and lstat.c are no longer generated.
19755         * lib/Makefile.am (BUILT_SOURCES): Remove stat.c and lstat.c.
19756         (DISTCLEANFILES): Likewise.
19757         (EXTRA_DIST): Likewise.
19758         (all_local): Don't depend on stat.c or lstat.c.
19759         (stat.c, lstat.c): Remove rules.
19760         (EXTRA_DIST): Remove xstat.in.
19761
19762         * lib/xstat.in: Remove file.  Contents moved into stat.c.
19763         * lib/stat.c: New file.  Contents mostly from xstat.in.
19764         * lib/stat.c: Rework so that it may serve to define rpl_lstat, too.
19765         * lib/lstat.c: New file. Simply #define LSTAT and include stat.c.
19766
19767         * lib/safe-read.c: Rework so that it may serve to define safe_write,
19768         too.
19769         * lib/safe-write.c: Simply #define SAFE_WRITE and include safe-read.c.
19770
19771 2002-12-03  Jim Meyering  <jim@meyering.net>
19772
19773         * lib/safe-read.c, safe-write.c: Change variable names and comments,
19774         but not semantics, to minimize the differences between these two files.
19775         (safe_read): Change comment to mention SAFE_READ_ERROR.
19776
19777         * lib/safe-read.c (IS_EINTR): Define.
19778         (safe_read): Use IS_EINTR in place of in-function cpp directives.
19779
19780 2002-12-02  Jim Meyering  <jim@meyering.net>
19781
19782         * lib/safe-read.c (EINTR): Define.
19783         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
19784         (INT_MAX): Provide fallback.
19785         (safe_read): Rewrite to iterate IFF the read fails with EINTR.
19786
19787         * lib/safe-read.h (SAFE_READ_ERROR): Define.
19788
19789 2002-12-02  Bruno Haible  <bruno@clisp.org>
19790
19791         * lib/safe-write.c (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM):
19792         Define, taken from safe-read.c.
19793         (INT_MAX): Provide fallback.
19794         (safe_write): Rewrite to iterate IFF the write fails with EINTR.
19795         * lib/safe-write.h (SAFE_WRITE_ERROR): Define.
19796
19797         * lib/safe-read.c (EINTR): Remove definition.
19798         (safe_read): Don't use EINTR if it is absent.
19799
19800 2002-12-01  Jim Meyering  <jim@meyering.net>
19801
19802         * lib/safe-read.c: (safe_read): Also exit the loop when read returns
19803         zero.
19804         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM, INT_MAX): Define.
19805
19806 2002-11-27  Paul Eggert  <eggert@twinsun.com>
19807
19808         * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
19809         hash_find_entry, hash_rehash): Replace `if (limit <= value) abort ();'
19810         with `if (! (value < limit)) abort ();', for readability.
19811
19812 2002-11-26  Karl Berry  <karl@gnu.org>
19813
19814         * lib/strdup.c: copy from libc again, with jim's ok.
19815         * lib/.cppi-disable: re-add strdup.c
19816
19817 2002-11-25  Karl Berry  <karl@gnu.org>
19818
19819         * lib/strtoll.c: copy from libc, meaning we now #include <strtol.c>
19820         instead of "strtol.c".
19821
19822 2002-11-25  Karl Berry  <karl@gnu.org>
19823
19824         * config/install-sh: update from automake for variable quoting, $0 in
19825         error msgs, etc.
19826
19827         * config/srclist.txt ($LIBCSRC/time/mktime.c lib gpl): new entry.
19828         * config/srclist.txt ($LIBCSRC/sysdeps/generic/strtoll.c lib gpl): new
19829         entry.
19830
19831 2002-11-25  Jim Meyering  <jim@meyering.net>
19832
19833         * lib/mktime.c: Sync from libc, now that it has the latest fix.
19834
19835 2002-11-24  Karl Berry  <karl@gnu.org>
19836
19837         * lib/error.c, getopt.c, getopt.h, getopt1.c, obstack.c, regex.c,
19838         regex.h, strdup.c, strtoll.c, tempname.c: change license to gpl.
19839
19840 2002-11-24  Jim Meyering  <jim@meyering.net>
19841
19842         Update from coreutils:
19843
19844         * lib/mktime.c: Merge in changes from libc.
19845
19846         Avoid a link-time failure on some Linux systems.
19847         * lib/mktime.c (STATIC): Define to be empty (_LIBC) or `static'
19848         (otherwise).
19849         (__mon_yday): Declare with the STATIC attribute.
19850         (__mktime_internal): Likewise.
19851         Based on a report from Greg Schafer.
19852
19853 2002-11-23  Jim Meyering  <jim@meyering.net>
19854
19855         * lib/sig2str.c (str2signum, sig2str): Avoid a warning from gcc:
19856         Use `unsigned', not `int', as type of index.
19857
19858         * lib/xstat.in [@BEGIN_LSTAT_ONLY@]: Include <string.h>.
19859
19860         * lib/fsusage.c: Remove unneeded parentheses around operands of
19861         `defined'.
19862
19863 2002-11-22  Paul Eggert  <eggert@twinsun.com>
19864
19865         * lib/quotearg.h: Allow multiple inclusion by surrounding with
19866         "#ifndef QUOTEARG_H_".  Include <stddef.h>, for size_t,
19867         so that we can be included first.
19868         (PARAMS): Remove; we now assume C89 or later.  All uses removed.
19869         * lib/quotearg.c: Include quotearg.h immediately after config.h.
19870         No need to include stddef.h or sys/types.h any more.
19871         Surround local include files with "", not "<>".
19872         Assume HAVE_LIMITS_H unconditionally, as we assume C89.
19873         Similarly, assume HAVE_C_BACKSLASH_A, CHAR_BIT, UCHAR_MAX, UINT_MAX,
19874         HAVE_STDLIB_H, HAVE_STRING_H, STDC_HEADERS.
19875         (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
19876         (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
19877         (ISPRINT): Remove; no longer needed now that we assume C89.
19878
19879         (clone_quoting_options, quotearg_buffer, quotearg_n_options):
19880         Preserve errno.
19881
19882         (quotearg_buffer_restyled, quotearg_n, quotearg_n_style,
19883         quotearg_char): Use SIZE_MAX rather than
19884         (size_t) -1 when we are talking about "infinity".
19885
19886         (quotearg_buffer_restyled): Fix bug when quoting trigraphs.
19887
19888 2002-11-22  Paul Eggert  <eggert@twinsun.com>
19889
19890         * lib/hash.c: Avoid use of <assert.h>, as the GNU Coding Standards
19891         hint that one should use `if (! x) abort ();' rather than `assert
19892         (x);', and anyway it's one less thing to worry about configuring.
19893         (hash_lookup, hash_get_first, hash_get_next, hash_find_entry,
19894         hash_rehash, hash_insert): Use abort rather than assert.
19895
19896 2002-11-22  Bruno Haible  <bruno@clisp.org>
19897
19898         * lib/safe-read.h: Assume C89. Add comments.
19899         (safe_read): Change return type to size_t.
19900         * lib/safe-read.c (safe_read): Change return type to size_t. Handle
19901         byte counts > SSIZE_MAX correctly.
19902         * lib/safe-write.h: New file.
19903         * lib/safe-write.c: New file.
19904         * lib/full-read.h: New file.
19905         * lib/full-read.c: New file.
19906         * lib/full-write.h: Assume C89. Add comments.
19907         * lib/full-write.c: Include safe-write.h.
19908         (full_write): Rewritten to use safe_write.
19909         Suggested by Jim Meyering and Paul Eggert.
19910
19911 2002-11-21  Jim Meyering  <jim@meyering.net>
19912
19913         * lib/strdup.c (strdup): Tweak comment and initial #if/#include.
19914
19915         Merge in changes from the coreutils.
19916
19917         2002-09-25  Paul Eggert  <eggert@twinsun.com>
19918         * lib/fsusage.c [! HAVE_INTTYPES_H && HAVE_STDINT_H] Include
19919         <stdint.h>.
19920         (UINTMAX_MAX) [!defined UINTMAX_MAX]: New macro.
19921         (PROPAGATE_ALL_ONES): Work even if X is unsigned and narrower than
19922         int.  Work more efficiently if X is the same width as uintmax_t.
19923         Do not compare X to -1, to avoid bogus compiler warning.
19924         (get_fs_usage): (uintmax_t) -1 -> UINTMAX_MAX to avoid a cast.
19925         Don't assume that f_frsize and f_bsize are the same type.
19926
19927         * lib/mountlist.c: #undef MNT_IGNORE before defining it, to avoid
19928         warning on FreeBSD.
19929
19930         * lib/makepath.c (make_path): Restore umask *before* creating the final
19931         component.
19932         (make_path): Minor reformatting.
19933
19934         * lib/xmalloc.c: Adjust to work with new autoconf macros,
19935         AC_FUNC_MALLOC and AC_FUNC_REALLOC: test #ifndef
19936         HAVE_MALLOC/HAVE_REALLOC.
19937
19938         * lib/mountlist.h (ME_DUMMY): Don't count entries of type `auto' as
19939         dummy ones.  At least on GNU/Linux systems, `auto' means something
19940         else.
19941         From Michael Stone.
19942
19943 2002-11-21  Bruno Haible  <bruno@clisp.org>
19944
19945         Remove case insensitive option matching.
19946         * lib/argmatch.h (argcasematch): Remove declaration.
19947         (ARGCASEMATCH): Remove macro.
19948         (__xargmatch_internal): Remove case_sensitive argument.
19949         (XARGMATCH): Update.
19950         (XARGCASEMATCH): Remove macro.
19951         * lib/argmatch.c (argmatch): Renamed from __argmatch_internal. Remove
19952         case_sensitive argument.
19953         (argcasematch): Remove function.
19954         (__xargmatch_internal): Remove case_sensitive argument.
19955         (main): Use XARGMATCH instead of XARGCASEMATCH.
19956
19957         * lib/xmalloc.c: Change compile-time error message. Add comment about
19958         required autoconf version.
19959
19960 2002-11-20  Paul Eggert  <eggert@twinsun.com>
19961
19962         Merge argmatch cleanups from Bison.  Assume C89.
19963
19964         * lib/argmatch.c: Include config.h here, not in argmatch.h.
19965         Include stdlib.h, for EXIT_FAILURE.
19966         Always include <string.h>, since we assume C89.
19967         (EXIT_FAILURE): Remove pre-C89 bug workaround.
19968         * lib/argmatch.h: Do not include <config.h> or <sys/types.h>.
19969         Include <stddef.h> instead, since it's all we need for size_t.
19970         (PARAMS): Remove.  All uses removed.
19971         (ARRAY_CARDINALITY): Do not bother to #undef.
19972         (ARRAY_CARDINALITY, ARGMATCH, ARGCASEMATCH, invalid_arg,
19973         ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
19974         Remove unnecessary parentheses.
19975         (ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
19976         Insert necessary parentheses.
19977         (ARGMATCH_CONSTRAINT, ARGMATCH_VERIFY): New macros.
19978         (ARGMATCH_ASSERT): Use ARGMATCH_CONSTRAINT.
19979
19980 2002-11-19  Bruno Haible  <bruno@clisp.org>
19981
19982         * lib/mbswidth.c: Include mbswidth.h right at the beginning.
19983         * lib/mbswidth.h: Include <stddef.h>, for size_t.
19984
19985         * lib/mbswidth.h (PARAMS): Remove macro.
19986         (mbswidth, mbsnwidth): Use ANSI C function declarations.
19987         * lib/mbswidth.c (mbswidth, mbsnwidth): Likewise.
19988
19989         * lib/gcd.h (PARAMS): Remove macro.
19990         (gcd): Use ANSI C function declarations.
19991         * lib/gcd.c (gcd): Likewise.
19992
19993 2002-11-15  Bruno Haible  <bruno@clisp.org>
19994
19995         * lib/strcspn.c: Include <stddef.h>.
19996         (strcspn): Use ANSI C function declaration. Change return type to
19997         size_t. Use NULL.
19998         * lib/strpbrk.c: Minimize diffs to glibc. Include <stddef.h>.
19999         (strpbrk): Use NULL.
20000         * lib/strpbrk.h (PARAMS): Remove macro.
20001         (strpbrk): Use ANSI C function declaration.
20002         * lib/strstr.c: Don't include <sys/types.h>.
20003         * lib/strstr.h (PARAMS): Remove macro.
20004         (strstr): Use ANSI C function declarations.
20005
20006 2002-11-14  Karl Berry  <karl@gnu.org>
20007
20008         * config/mkinstalldirs: `do' on separate line, instead of
20009         `for var; do'.
20010
20011 2002-11-06  Bruno Haible  <bruno@clisp.org>
20012
20013         * lib/gcd.h (gcd): Change argument type to 'unsigned long'.
20014         * lib/gcd.c (gcd): Likewise.
20015
20016 2002-11-05  Bruno Haible  <bruno@clisp.org>
20017
20018         * lib/gcd.h: New file, from gettext-0.11.5.
20019         * lib/gcd.c: New file, from gettext-0.11.5.
20020
20021 2002-11-05  Bruno Haible  <bruno@clisp.org>
20022
20023         * lib/error.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
20024         * lib/getopt.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
20025         * lib/obstack.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
20026         * lib/regex.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
20027
20028         * lib/argmatch.c: Include gettext.h instead of <locale.h> and
20029         <libintl.h>.
20030         * lib/makepath.c: Include gettext.h instead of <locale.h> and
20031         <libintl.h>.
20032
20033         * lib/closeout.c: Include gettext.h instead of <libintl.h>.
20034         * lib/human.c: Include gettext.h instead of <libintl.h>.
20035         * lib/quotearg.c: Include gettext.h instead of <libintl.h>.
20036         * lib/rpmatch.c: Include gettext.h instead of <libintl.h>.
20037         * lib/unicodeio.c: Include gettext.h instead of <libintl.h>.
20038         * lib/userspec.c: Include gettext.h instead of <libintl.h>.
20039         * lib/version-etc.c: Include gettext.h instead of <libintl.h>.
20040         * lib/xmalloc.c: Include gettext.h instead of <libintl.h>.
20041         (textdomain): Remove definition.
20042         * lib/xmemcoll.c: Include gettext.h instead of <libintl.h>.
20043
20044         * lib/long-options.c: Remove include of <libintl.h> and definition of
20045         _.
20046         * lib/same.c: Remove include of <libintl.h> and definition of _.
20047
20048 2002-11-04  Owen Taylor  <otaylor@redhat.com>
20049
20050         * lib/config.charset: A few additions for Solaris.
20051
20052 2002-11-04  Bruno Haible  <haible@clisp.cons.org>
20053
20054         Make it possible to build libcharset with CC=gcc CFLAGS="-x c++".
20055         * lib/localcharset.c (locale_charset): Declare as extern "C".
20056
20057 2002-11-04  Bruno Haible  <haible@clisp.cons.org>
20058
20059         * lib/config.charset: msdos in uk_UA uses CP1125.
20060
20061 2002-11-04  Bruno Haible  <bruno@clisp.org>
20062
20063         * lib/stpcpy.h: New file, from GNU gettext-0.11.5.
20064         * lib/strcase.h: New file, from GNU gettext-0.11.5.
20065         * lib/strpbrk.h: New file, from GNU gettext-0.11.5.
20066         * lib/strstr.h: New file, from GNU gettext-0.11.5.
20067         * lib/xgetcwd.h: New file, from GNU gettext-0.11.5.
20068
20069 2002-11-04  Bruno Haible  <bruno@clisp.org>
20070
20071         * lib/localcharset.c (locale_charset): Don't return an empty string.
20072
20073 2002-11-04  Bruno Haible  <bruno@clisp.org>
20074
20075         * lib/localcharset.c (get_charset_aliases): Add more Windows specific
20076         aliases.
20077
20078 2002-11-04  Bruno Haible  <bruno@clisp.org>
20079
20080         * lib/config.charset: Update for newest glibc. Add canonical names
20081         ISO-8859-14, KOI8-T, TCVN5712-1, GEORGIAN-PS.
20082
20083 2002-11-04  Bruno Haible  <bruno@clisp.org>
20084
20085         * lib/config.charset: Add support for NetBSD.
20086
20087 2002-11-04  Bruno Haible  <bruno@clisp.org>
20088
20089         * lib/config.charset [msdosdjgpp]: For Russian, use CP866.
20090
20091 2002-11-01  Bruno Haible  <bruno@clisp.org>
20092
20093         * configure.in: Add AC_CONFIG_AUX_DIR call.
20094         (AC_OUTPUT): Add m4/Makefile, lib/Makefile. Remove doc/Makefile,
20095         test/Makefile.
20096         * Makefile.in (subdirs): Add m4, lib. Remove doc, test.
20097
20098 2002-09-28  Karl Berry  <karl@gnu.org>
20099
20100         * config/srclist.txt: can't copy install-sh/mkinstalldirs from
20101         installed automake until the next release, since changes have been
20102         made.
20103
20104 2002-09-25  Karl Berry  <karl@gnu.org>
20105
20106         * lib/strdup.c: copy from libc/string (via ../config/srclist*).
20107         * lib/getopt*: copy from libc/posix.
20108         * lib/gettext.h: copy from gettext.
20109         * lib/.cppi-disable: add strdup.c, gettext.h.
20110
20111 2002-09-25  Karl Berry  <karl@gnu.org>
20112
20113         * config/srclist.txt: enable gettext.h check.
20114         * config/config.{guess,sub}: update from prep.
20115         * config/depcomp, install-sh, mdate-sh, missing, mkinstalldirs: update
20116                 from automake 1.6.3.
20117         See srclist*.
20118
20119 2002-08-23  Stefan Monnier  <monnier@cs.yale.edu>
20120
20121         * regex.c (PATFETCH): Remove the translating fetch.
20122         (PATFETCH_RAW): Rename to PATFETCH.
20123         (set_image_of_range): New fun.
20124         (SET_RANGE_TABLE_WORK_AREA): Use it.
20125         (regex_compile): Don't translate the pattern chars so eagerly.
20126         Only do it when inserting an `exactn' bytecode or when handling
20127         a char-range.
20128         (mutually_exclusive_p): Avoid empty statement.
20129
20130 2002-07-06  Jim Meyering  <meyering@lucent.com>
20131
20132         * m4/README: Don't mention Makefile.am.in.
20133         Outline how I've tested changes to .m4 files.  Yep, it's a pain.
20134
20135 2002-07-01  Jim Meyering  <meyering@lucent.com>
20136
20137         * lib/c-stack.c: Include sys/time.h.
20138         From Volker Borchert.
20139
20140 2002-06-26  Paul Eggert  <eggert@twinsun.com>
20141
20142         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for btowc.
20143
20144 2002-06-26  Paul Eggert  <eggert@twinsun.com>
20145
20146         * lib/fnmatch.c, fnmatch_loop.c (WIDE_CHAR_SUPPORT):
20147         New macro.  Use it uniformly instead of
20148         (defined HAVE_WCTYPE_H && defined HAVE_WCHAR_H).
20149         It also uses HAVE_BTOWC, to fix a porting bug on Solaris 2.5.1
20150         reported by Vin Shelton.
20151
20152 2002-06-22  Paul Eggert  <eggert@twinsun.com>
20153
20154         * lib/c-stack.h (segv_handler, c_stack_action) [! defined SA_SIGINFO]:
20155         Do not assume SA_SIGINFO behavior.
20156         Bug reported by Jim Meyering on NetBSD 1.5.2.
20157
20158 2002-06-22  Jim Meyering  <meyering@lucent.com>
20159
20160         * m4/c-stack.m4: New file, from diffutils-2.8.2.
20161         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_C_STACK.
20162
20163         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Don't require AC__GNU_SOURCE,
20164         now that configure.ac uses AC_GNU_SOURCE.
20165         (jm_MACROS): Rename: jm_FUNC_FNMATCH to AC_FUNC_FNMATCH_GNU.
20166         * m4/prereq.m4 (jm_PREREQ_EXCLUDE): Likewise, wrt jm_FUNC_FNMATCH.
20167
20168         Update to latest tools.  Suggestions from Paul Eggert.
20169         * m4/stdbool.m4: New file, from diffutils-2.8.2.
20170         * m4/gnu-source.m4: Update from diffutils-2.8.2.
20171         * m4/fnmatch.m4: Likewise.
20172         * m4/prereq.m4: Change each use of AC_CHECK_HEADERS(stdbool.h)
20173         to AC_HEADER_STDBOOL
20174
20175 2002-06-22  Jim Meyering  <meyering@lucent.com>
20176
20177         * lib/fnmatch.c (ISASCII, ISPRINT): Undefine, to avoid warning about
20178         redefinition due to Solaris 2.6's definition in /usr/include/sys/euc.h.
20179
20180 2002-06-22  Jim Meyering  <meyering@lucent.com>
20181
20182         * lib/c-stack.c, lib/c-stack.h: New files, from diffutils-2.8.2.
20183
20184         * lib/exitfail.c, exitfail.h: Likewise.
20185         * lib/Makefile.am (libfetish_a_SOURCES): Add exitfail.c and exitfail.h.
20186
20187         * lib/Makefile.am (libfetish_a_SOURCES): Add fnmatch_.h in place
20188         of fnmatch.h.
20189         (EXTRA_DIST): Add fnmatch_loop.c.
20190         (libfetish_a_SOURCES): Add c-stack.c and c-stack.h.
20191
20192         * lib/fnmatch_loop.c: New file, from diffutils-2.8.2.
20193         * lib/fnmatch.c: Update from diffutils-2.8.2.
20194         * lib/fnmatch_.h: New file.  From diffutils-2.8.2.
20195         * lib/fnmatch.h: Remove file.
20196
20197 2002-06-21  Jim Meyering  <meyering@lucent.com>
20198
20199         * m4/c-bs-a.m4: Add comment, from diffutils-2.8.2.
20200         * m4/mbrtowc.m4: Likewise.
20201
20202         * m4/mbstate_t.m4: Update from diffutils-2.8.2.
20203         * m4/mbswidth.m4: Reflect name change:
20204         s/AC_MBSTATE_T/AC_TYPE_MBSTATE_T.
20205         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Likewise.
20206
20207         * m4/lib-link.m4: Update from gettext-0.11.2.
20208         * m4/gettext.m4: Likewise.
20209
20210         * m4/jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for hurd.h.
20211         From Alfred M. Szmidt.
20212
20213 2002-06-18  Paul Eggert  <eggert@twinsun.com>
20214
20215         * lib/file-type.h: Report an error if neither S_ISREG nor
20216         S_IFREG is defined, instead of using a test specific to glibc
20217         2.2.  This should be safe, since POSIX requires S_ISREG and
20218         Unix Version 7 had S_IFREG.  We don't need to check for
20219         <sys/types.h> since we don't use any symbols that it defines.
20220
20221 2002-06-15  Richard Dawe  <richdawe@bigfoot.com>
20222
20223         * lib/Makefile.am (lstat.c, stat.c, .sin.sed): Use t-$@, rather than
20224         $@-t, so that each temporary file name is unique and valid in the first
20225         8 characters, for operation under DOS.
20226
20227 2002-06-15  Paul Eggert  <eggert@twinsun.com>
20228
20229         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for st_author.
20230
20231 2002-06-15  Jim Meyering  <meyering@lucent.com>
20232
20233         Work even with DJGPP 2.03, which lacks support for symlinks.
20234         From Richard Dawe.
20235         * lib/xstat.in (S_ISLNK): Define to 0 if neither S_ISLNK nor S_IFLNK
20236         is defined.
20237         * lib/lchown.c (S_ISLNK): Likewise.
20238
20239 2002-06-15  Jim Meyering  <meyering@lucent.com>
20240
20241         * lib/file-type.h (FILE_TYPE_H): Guard entire contents with #ifndef.
20242         For GNU libc 2.2 and newer, ensure that <sys/types.h> and <sys/stat.h>
20243         have been included before this file.
20244
20245 2002-06-14  Jim Meyering  <meyering@lucent.com>
20246
20247         * lib/file-type.h: Use the version from diffutils-2.8.2.
20248         * lib/file-type.c: Likewise.
20249
20250 2002-06-07  Jim Meyering  <meyering@lucent.com>
20251
20252         * m4/prereq.m4 (jm_PREREQ_STAT): Check for sys/param.h and sys/mount.h.
20253         They're needed at least for NetBSD 1.5.2.
20254         ($statxfs_includes): Include those same headers.
20255         ($statxfs_includes): Include sys/vfs.h if available.
20256         ($statxfs_includes): Likewise for sys/statvfs.h.
20257         Check for the following members in both structs statfs and statvfs:
20258         f_basetype, f_type, f_fsid.__val, f_namemax, f_namelen.
20259
20260 2002-06-01  Jim Meyering  <meyering@lucent.com>
20261
20262         * m4/d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename macro:
20263         s/D_TYPE_IN_DIRENT/HAVE_STRUCT_DIRENT_D_TYPE/.
20264
20265 2002-05-28  Jim Meyering  <meyering@lucent.com>
20266
20267         * m4/readdir.m4 (jm_FUNC_READDIR): Undefine `mkdir', not `rmdir'.
20268         Reported by Volker Borchert.
20269
20270 2002-05-27  Jim Meyering  <meyering@lucent.com>
20271
20272         Fix a problem seen only on nonconforming systems whereby ls.c's
20273         use of localtime, and then of gettimeofday would cause trouble:
20274         the localtime call used to initialize rpl_gettimeofday's save
20275         mechanism would clobber ls's current local time information so
20276         that in any long listing the first file would always be listed
20277         with date 1970-01-01.  Analysis by Volker Borchert.
20278
20279         * lib/gettimeofday.c (localtime): Undefine.
20280         (rpl_localtime): New function.
20281
20282 2002-05-27  Jim Meyering  <meyering@lucent.com>
20283
20284         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Also replace
20285         localtime.
20286
20287         * m4/readdir.m4 (jm_FUNC_READDIR): Undefine `rmdir' so we don't try to
20288         use the replacement function; it wouldn't resolve at link time.
20289         Reported by Volker Borchert.
20290
20291 2002-05-22  Jim Meyering  <meyering@lucent.com>
20292
20293         * lib/Makefile.am (libfetish_a_SOURCES): Add file-type.c and
20294         file-type.h.
20295         * lib/file-type.h: New file.
20296         * lib/file-type.c (file_type): New file/function.  Extracted from
20297         diffutils.
20298
20299 2002-04-30  Jim Meyering  <meyering@lucent.com>
20300
20301         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_STAT.
20302
20303 2002-04-29  Paul Eggert  <eggert@twinsun.com>
20304
20305         * m4/prereq.m4 (jm_PREREQ_SIG2STR): Remove; all callers changed.
20306
20307 2002-04-29  Paul Eggert  <eggert@twinsun.com>
20308
20309         * m4/prereq.m4 (jm_PREREQ_HARD_LOCALE): Check for stdlib.h.
20310         Do not check for alloca.h (no longer used) or stdbool.h (was never
20311         used?).  Add AM_C_PROTOTYPES since hard-locale.h uses it.
20312
20313 2002-04-29  Paul Eggert  <eggert@twinsun.com>
20314
20315         * lib/hard-locale.c: Upgrade to version used in GNU Diffutils 2.8.1.
20316
20317 2002-04-29  Jim Meyering  <meyering@lucent.com>
20318
20319         * m4/jm-macros.m4 (jm_MACROS): Remove use of AC_FUNC_STRNLEN.
20320         * m4/prereq.m4: Add jm_PREREQ_STRNLEN.
20321         Use AC_FUNC_STRNLEN here instead.
20322
20323         * m4/jm-macros.m4: Don't AC_REQUIRE([AC_PROG_CC_STDC]).
20324         With autoconf-2.53a, it's part of AC_PROG_CC.
20325
20326 2002-04-28  Paul Eggert  <eggert@twinsun.com>
20327
20328         * m4/jm-macros.m4 (jm_MACROS): Add AC_REPLACE_FUNCS(sig2str).
20329         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_SIG2STR.
20330
20331 2002-04-28  Paul Eggert  <eggert@twinsun.com>
20332
20333         * lib/sig2str.h, lib/sig2str.c: New files.
20334         * lib/Makefile.am (libfetish_a_SOURCES): Add sig2str.h.
20335
20336 2002-04-28  Paul Eggert  <eggert@twinsun.com>
20337
20338         * lib/sig2str.h (SIGNUM_BOUND): Do not use WTERMSIG, to avoid
20339         depending on <sys/wait.h> and WTERMSIG.  Default to 64 instead
20340         of 127, since 64 is the largest conceivable number for ancient
20341         nonstandard hosts.
20342         * lib/sig2str.c: Do not include <sys/wait.h>; no longer needed.
20343
20344 2002-04-28  Jim Meyering  <meyering@lucent.com>
20345
20346         * lib/sig2str.c (WTERMSIG): Remove definition (unused).
20347
20348 2002-04-24  Jim Meyering  <meyering@lucent.com>
20349
20350         * m4/prereq.m4 (jm_PREREQ_HARD_LOCALE): New macro.
20351         (jm_PREREQ): Use it.
20352
20353         * m4/getloadavg.m4: Check for these headers: locale.h unistd.h
20354         mach/mach.h fcntl.h.
20355         Check for this function: setlocale.
20356
20357 2002-04-24  Jim Meyering  <meyering@lucent.com>
20358
20359         * lib/gettext.h: New file, from Gettext.
20360         * lib/Makefile.am (INCLUDES): Remove -I../intl.
20361         (libfetish_a_SOURCES): Add gettext.h.
20362
20363 2002-04-16  Jim Meyering  <meyering@lucent.com>
20364
20365         * m4/prereq.m4 (jm_PREREQ_READUTMP): Also check for these members:
20366         ut_pid, ut_id, ut_exit.
20367
20368 2002-04-16  Jim Meyering  <meyering@lucent.com>
20369
20370         * lib/readutmp.h (UT_TYPE): Remove definition (now in who.c).
20371         (HAVE_STRUCT_XTMP_UT_EXIT, HAVE_STRUCT_XTMP_UT_ID): Define.
20372         (HAVE_STRUCT_XTMP_UT_PID, HAVE_STRUCT_XTMP_UT_TYPE): Define.
20373
20374 2002-04-12  Jim Meyering  <meyering@lucent.com>
20375
20376         * m4/ls-mntd-fs.m4 (checking for getmntinfo function...): Remove
20377         now-bogus check for f_type in sys/mount.h.  Instead, just test for the
20378         existence of the getmntinfo function.  Needed for Darwin 5.3.
20379
20380         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Also detect when dirfd is a macro.
20381         This is necessary at least on Darwin 5.3.
20382
20383         * m4/jm-macros.m4: Don't AC_REPLACE(strnlen), now that we use
20384         AC_FUNC_STRNLEN.  Otherwise, we'd end up putting two copies of
20385         strnlen.o in the library, and that makes some versions of ranlib
20386         object.
20387
20388 2002-04-12  Jim Meyering  <meyering@lucent.com>
20389
20390         * lib/dirfd.h (dirfd): Elide prototype if dirfd is a macro.
20391
20392 2002-04-09  Jim Meyering  <meyering@lucent.com>
20393
20394         * m4/malloc.m4: (jm_FUNC_MALLOC): Change the `checking ...' message
20395         to be more precise.  Rather than saying we're checking whether the
20396         function `works', say what we're testing.
20397         * m4/realloc.m4 (jm_FUNC_REALLOC): Likewise.
20398         Reported by Bruno Haible.
20399
20400 2002-03-10  Jim Meyering  <meyering@lucent.com>
20401
20402         * lib/makepath.c (make_path): Remove a comma from a diagnostic.
20403         Suggestion from Santiago Vila.
20404
20405 2002-03-08  Jim Meyering  <meyering@lucent.com>
20406
20407         * lib/rename.c: Mention that this wrapper is needed also on
20408         mips-dec-ultrix4.4 systems.
20409
20410 2002-03-02  Jim Meyering  <meyering@lucent.com>
20411
20412         * lib/gettime.c (gettime): Test HAVE_CLOCK_GETTIME,
20413         not HAVE_CLOCK_SETTIME.
20414
20415 2002-02-27  Paul Eggert  <eggert@twinsun.com>
20416
20417         * m4/jm-macros.m4 (jm_MACROS): Do not replace stime; no longer used.
20418         Check for clock_settime.
20419
20420 2002-02-27  Paul Eggert  <eggert@twinsun.com>
20421
20422         * lib/nanosleep.h: Rename to....
20423         * lib/timespec.h: New name for nanosleep.h.  All uses changed.
20424
20425         * lib/gettime.c: New file.
20426         * lib/settime.c: New file.
20427         * lib/stime.c: Remove.
20428
20429         * lib/Makefile.am (libfetish_a_SOURCES): Add gettime.c, settime.c,
20430         timespec.h.  Remove nanosleep.h.
20431
20432 2002-02-25  Paul Eggert  <eggert@twinsun.com>
20433
20434         * m4/acl.m4: New file.
20435         * m4/jm-macros.m4 (jm_MACROS): Require AC_FUNC_ACL.
20436         Do not check for acl or sys/acl.h, as AC_FUNC_ACL does that now.
20437
20438 2002-02-25  Paul Eggert  <eggert@twinsun.com>
20439
20440         * lib/acl.c, lib/acl.h: New files.
20441         * lib/Makefile.am (libfetish_a_SOURCES): Add acl.h, acl.c.
20442
20443 2002-02-24  Jim Meyering  <meyering@lucent.com>
20444
20445         * lib/strnlen.c (strnlen): Define-away/undef so that an inconsistent
20446         prototype in string.h (on at least AIX4.3.2.0 w/gcc-2.95.3) doesn't
20447         cause trouble.  Reported by Nelson Beebe.
20448
20449 2002-02-23  Paul Eggert  <eggert@twinsun.com>
20450
20451         * lib/path-concat.c (xpath_concat): Reorder code to pacify
20452         compilers that don't know that xalloc_die never returns.
20453
20454 2002-02-20  Jim Meyering  <meyering@lucent.com>
20455
20456         * lib/getdate.c: Regenerate using bison-1.33.
20457
20458 2002-02-17  Jim Meyering  <meyering@lucent.com>
20459
20460         * config/config.guess (main): Don't use `head -1'; it's no longer
20461         portable. Use `sed 1q' instead.
20462
20463 2002-02-16  gettextize  <bug-gnu-gettext@gnu.org>
20464
20465         * m4/codeset.m4: Upgrade to gettext-0.11.
20466         * m4/gettext.m4: Upgrade to gettext-0.11.
20467         * m4/glibc21.m4: Upgrade to gettext-0.11.
20468         * m4/iconv.m4: Upgrade to gettext-0.11.
20469         * m4/isc-posix.m4: Upgrade to gettext-0.11.
20470         * m4/lcmessage.m4: Upgrade to gettext-0.11.
20471         * m4/lib-ld.m4: New file, from gettext-0.11.
20472         * m4/lib-link.m4: New file, from gettext-0.11.
20473         * m4/lib-prefix.m4: New file, from gettext-0.11.
20474         * m4/progtest.m4: Upgrade to gettext-0.11.
20475
20476 2002-02-15  Paul Eggert  <eggert@twinsun.com>
20477
20478         * m4/prereq.m4 (jm_PREREQ_POSIXVER): New macro.
20479         (jm_PREREQ): Use it.
20480
20481 2002-02-15  Paul Eggert  <eggert@twinsun.com>
20482
20483         * lib/posixver.c, lib/posixver.h: New files.
20484         * lib/Makefile.am (libfetish_a_SOURCES): Add them.
20485
20486 2002-02-02  Paul Eggert  <eggert@twinsun.com>
20487             Bruno Haible  <bruno@clisp.org>
20488
20489         * lib/unicodeio.h (print_unicode_char): Add exit_on_error argument.
20490         (fwrite_success_callback): New declaration.
20491         * lib/unicodeio.c (unicode_to_mb): New function, extracted from
20492         print_unicode_char. Call failure callback instead of error.
20493         (fwrite_success_callback): New function.
20494         (exit_failure_callback): New function.
20495         (fallback_failure_callback): New function.
20496         (print_unicode_char): Call unicode_to_mb.
20497
20498 2002-01-26  Jim Meyering  <meyering@lucent.com>
20499
20500         * m4/jm-macros.m4 (jm_MACROS): Require autoconf-2.52g.
20501         * m4/strnlen.m4: Remove file, now that it's part of autoconf.
20502
20503 2002-01-26  Jim Meyering  <meyering@lucent.com>
20504
20505         * lib/Makefile.am (getdate$U.o): Depend on unlocked-io.h.
20506
20507 2002-01-22  Paul Eggert  <eggert@twinsun.com>
20508
20509         * m4/jm-macros.m4 (jm_MACROS): Require AC_FUNC_FSEEKO.
20510
20511 2002-01-22  Jim Meyering  <meyering@lucent.com>
20512
20513         * lib/Makefile.am (Makefile): Don't depend on $(BUILT_SOURCES).
20514         Otherwise, some versions of automake would omit the rule that makes
20515         Makefile from Makefile.in.
20516
20517 2002-01-21  Paul Eggert  <eggert@twinsun.com>
20518
20519         * lib/xmemcoll.h, lib/xmemcoll.c: New files.
20520         * lib/Makefile.am (libfetish_a_SOURCES): Add them.
20521         * lib/memcoll.c: Include errno.h, and declare errno if not defined.
20522         (memcoll): Set errno to zero if there is no error.
20523
20524         * lib/quotearg.c (quotearg_buffer_restyled):
20525         Fix bug with quoting buffers containing NUL when backslashing escapes.
20526         This bug was exposed by the other changes in this patch.
20527         (quotearg_n_options): New arg ARGSIZE.
20528         All callers changed.
20529         (quoting_options_from_style): New function.
20530         (quotearg_n_style): Use it.
20531         (quotearg_n_style_mem): New function.
20532
20533         * lib/quotearg.h (quotearg_n_style_mem): New function.
20534
20535 2002-01-19  Jim Meyering  <meyering@lucent.com>
20536
20537         * m4/jm-macros.m4 (jm_MACROS): Use AC_FUNC_STRNLEN.
20538         Remove useless quotes: DF_PROG="df".
20539         * m4/strnlen.m4: New file.
20540
20541 2002-01-16  Paul Eggert  <eggert@twinsun.com>
20542
20543         * lib/backupfile.c (ISDIGIT): Comment fix.
20544         * lib/getdate.y (ISDIGIT): Likewise.
20545         * lib/posixtm.c (ISDIGIT, year): Likewise.
20546         * lib/strverscmp.c (ISDIGIT): Likewise.
20547         * lib/userspec.c (ISDIGIT): Likewise.
20548
20549 2002-01-16  Jim Meyering  <meyering@lucent.com>
20550
20551         * lib/getdate.y: Add three semicolons, each just before a closing
20552         brace. Bison (as of version 1.31) no longer papers over that mistake.
20553
20554 2002-01-05  Jim Meyering  <meyering@lucent.com>
20555
20556         * lib/version-etc.c (version_etc_copyright): Update copyright year.
20557
20558 2001-12-19  Paul Eggert  <eggert@twinsun.com>
20559
20560         * lib/closeout.c (close_stdout_status): If ferror (stdout), do
20561         not silently exit merely because the output buffer happens to
20562         have nothing pending.
20563
20564 2001-12-18  Paul Eggert  <eggert@twinsun.com>
20565
20566         See the big note in ../ChangeLog.
20567         * lib/human.c (suffixes): Prefer K to k for 1024.
20568         (generate_suffix_backwards): New function.
20569         (human_readable_inexact): Use it.
20570         * lib/xstrtol.c (__xstrtol): If there is no number but there
20571         is a valid suffix, assume 1.  "MB" now means decimal, "MiB" binary.
20572         Accept 'K' as well as 'k'.
20573
20574 2001-12-15  Jim Meyering  <meyering@lucent.com>
20575
20576         * lib/regex.h (__restrict_arr): Update from libc.
20577
20578         * lib/mountlist.h (ME_REMOTE): Recognize file systems of type smbfs
20579         as `remote' if the name starts with `//'.  Suggested by Michael Stone.
20580         (STREQ): Define.
20581
20582 2001-12-14  Jim Meyering  <meyering@lucent.com>
20583
20584         * m4/jm-macros.m4 (jm_MACROS): Check for iswspace.
20585         Suggestion from Bruno Haible.
20586
20587 2001-12-10  Jim Meyering  <meyering@lucent.com>
20588
20589         * lib/linebuffer.c: Remove explicit declarations of xmalloc and
20590         xrealloc, Instead, include "xalloc.h".
20591         (initbuffer): Don't cast xmalloc return value to char*.
20592         (readline): Reword comment.
20593         Don't cast xrealloc return value to char*
20594         Return NULL, not 0.
20595
20596 2001-12-09  Jim Meyering  <meyering@lucent.com>
20597
20598         * lib/modechange.c (mode_compile): Add cast to avoid pedantic warning
20599         about `signed and unsigned type in conditional expression'.
20600         * lib/posixtm.c (posix_time_parse): Likewise.
20601
20602         * lib/xreadlink.c (xreadlink): Add cast to avoid a pedantic warning.
20603
20604         * lib/readtokens.c (readtoken): Declare an index to be of type unsigned
20605         to avoid a pedantic warning.
20606
20607         * lib/getstr.c: Don't include assert.h.
20608         (getstr): Remove warning-evoking assertions.
20609         Return -1 if offset parameter is out of bounds.
20610         Change the type of a local from int to size_t.
20611
20612         * lib/strftime.c (my_strftime_localtime_r): Include this function
20613         definition in the `#if ! HAVE_TM_GMTOFF' block.
20614
20615         * lib/xgethostname.c: Remove declarations of xmalloc and xrealloc.
20616         Include xalloc.h instead.
20617
20618 2001-12-02  Jim Meyering  <meyering@lucent.com>
20619
20620         * lib/tempname.c: Don't declare getenv, thus reverting the change of
20621         2001-11-18.  It's no longer necessary, now that stdlib.h is always
20622         included.
20623
20624         * lib/regex.c [!__BOUNDED_POINTERS__]: Define away __bounded,
20625         __unbounded, and __ptrvalue.  Reported by Uwe H. Steinfeld.
20626
20627 2001-11-30  Akim Demaille  <akim@epita.fr>
20628
20629         * lib/xstrdup.c: Include xalloc.h, so that xstrdup is declared
20630         before being defined.
20631
20632 2001-11-27  Paul Eggert  <eggert@twinsun.com>
20633
20634         * lib/quotearg.h (quotearg_n, quotearg_n_style):
20635         First arg is int, not unsigned.
20636         * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
20637         (SIZE_MAX, UINT_MAX): New macros.
20638         (quotearg_n_options): Abort if N is negative.
20639         Avoid overflow check on hosts where size_t is 64 bits and int
20640         is 32 bits, as overflow is impossible there.
20641         Fix off-by-one typo that caused unnecessary reallocation.
20642
20643 2001-11-27  Jim Meyering  <meyering@lucent.com>
20644
20645         * lib/tempname.c: Merge with version from libc.
20646         * lib/regex.c: Likewise.
20647
20648         * lib/tempname.c: Include stdlib.h unconditionally.  On some old
20649         systems for which STDC_HEADERS is 0, it was not included, resulting in
20650         a warning about an integer-to-pointer conversion problem with getenv.
20651         Reported by Volker Borchert.
20652
20653 2001-11-26  Jim Meyering  <meyering@lucent.com>
20654
20655         * lib/gtod.h: Remove file.
20656         * lib/Makefile.am (libfetish_a_SOURCES): Remove gtod.h.
20657         * lib/gettimeofday.c: Don't include gtod.h.
20658         (GTOD_init): Remove function.
20659         (rpl_gettimeofday): Do its job here instead, rather than aborting.
20660         Suggestion from Volker Borchert.
20661
20662 2001-11-23  Jim Meyering  <meyering@lucent.com>
20663
20664         * lib/hash.h (struct hash_table): Don't define here.  Merely declare
20665         it.
20666         * lib/hash.c (struct hash_table): Define it here instead.
20667
20668 2001-11-22  Jim Meyering  <meyering@lucent.com>
20669
20670         * lib/hash.h: Bracket contents of file with #ifndef HASH_H_ ... #endif.
20671
20672 2001-11-20  Jim Meyering  <meyering@lucent.com>
20673
20674         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Update comment to reflect that
20675         SunOS 4.1.4 and Solaris 2.5.1 lose, too.
20676
20677 2001-11-19  Jim Meyering  <meyering@lucent.com>
20678
20679         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Don't bother with a temporary
20680         directory.  Use "conftestXXXXXX" as the template.
20681         Suggestion from Paul Eggert.
20682
20683         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Close each descriptor
20684         immediately, so the test doesn't mistakenly hit the max-open-files
20685         limit.
20686
20687 2001-11-18  Paul Eggert  <eggert@twinsun.com>
20688
20689         * lib/tempname.c (TMP_MAX): Remove; no longer needed.
20690         (TEMPORARIES): New macro.
20691         (__gen_tempname): Use TEMPORARIES rather than TMP_MAX.  This
20692         removes an artificial limitation (e.g. HP-UX 10.20, where
20693         TMP_MAX is 17576).
20694
20695 2001-11-18  Jim Meyering  <meyering@lucent.com>
20696
20697         * m4/prereq.m4 (jm_PREREQ_TEMPNAME): Check for declaration of getenv.
20698
20699 2001-11-18  Jim Meyering  <meyering@lucent.com>
20700
20701         * lib/tempname.c [!HAVE_DECL_GETENV]: Declare getenv to avoid warning
20702         on SunOS 4.
20703
20704         * lib/Makefile.am (Makefile): Depend on $(BUILT_SOURCES), so those
20705         files will be created before anything else.
20706
20707 2001-11-17  Paul Eggert  <eggert@twinsun.com>
20708
20709         * m4/jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): Do not define
20710         WINSIZE_IN_PTEM if <termios.h> defines struct winsize.
20711
20712 2001-11-17  Jim Meyering  <meyering@lucent.com>
20713
20714         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): New file and macro.
20715         Prompted by a report from Bob Proulx.
20716
20717         * m4/jm-macros.m4 (jm_MACROS): Don't test for mkstemp here.
20718         Instead, require UTILS_FUNC_MKSTEMP.
20719
20720 2001-11-17  Jim Meyering  <meyering@lucent.com>
20721
20722         * m4/jm-macros.m4 (jm_MACROS): Remove code to set POW_LIBM.
20723         Now, that's done as part of AC_FUNC_STRTOD.
20724
20725 2001-11-17  Jim Meyering  <meyering@lucent.com>
20726
20727         * lib/modechange.c (mode_adjust): Fix error introduced on 1999-04-26
20728         that made e.g., `chmod a=,o=w,g=o F' cause F to be group readable
20729         rather than group writable.  Patch by Juan F. Codagnone.
20730
20731         * lib/readtokens.c: Remove explicit declarations of xmalloc and
20732         xrealloc, Instead, include "xalloc.h".
20733
20734         * lib/mountlist.c: Include unlocked-io.h after all system headers.
20735         Remove explicit declarations of xmalloc, xrealloc,
20736         and xstrdup.  Instead, include "xalloc.h".
20737
20738         * lib/argmatch.c, closeout.c, error.c, exclude.c: Include
20739         unlocked-io.h.
20740         * lib/fatal.c, getdate.y, getpass.c, getstr.c, getusershell.c:
20741         Likewise.
20742         * lib/mountlist.c, posixtm.c, readtokens.c, readutmp.c: Likewise.
20743
20744         * lib/regex.c, sha.c, version-etc.c, yesno.c: Likewise.
20745         Reported by Padraig Brady.
20746
20747         * lib/mkstemp.c: #undef mkstemp.
20748         Include config.h.
20749         (rpl_mkstemp): Rename from mkstemp.
20750         Protoize.
20751
20752 2001-11-16  Jim Meyering  <meyering@lucent.com>
20753
20754         * lib/physmem.c [HAVE_SYS_PSTAT_H]: Include <sys/pstat.h>.
20755         (physmem_total) [HAVE_PSTAT_GETSTATIC]: If sysconf couldn't be used to
20756         determine the amount of total physical memory, use pstat_getstatic.
20757         HPUX-11 doesn't define _SC_PHYS_PAGES.
20758         (physmem_available) [HAVE_PSTAT_GETSTATIC && HAVE_PSTAT_GETDYNAMIC]:
20759         If sysconf couldn't be used to determine the amount of available
20760         physical memory, use both pstat_getstatic and pstat_getdynamic.
20761         Based on a patch from Bob Proulx.
20762
20763 2001-11-10  Jim Meyering  <meyering@lucent.com>
20764
20765         * m4/prereq.m4 (jm_PREREQ_PHYSMEM): New function.
20766         (jm_PREREQ): Use it.
20767
20768 2001-11-09  Jim Meyering  <meyering@lucent.com>
20769
20770         * m4/jm-macros.m4: Require autoconf-2.52f.
20771         (AC_FUNC_ERROR_AT_LINE, AC_FUNC_OBSTACK, AC_FUNC_STRTOD):
20772         Use these AC_-prefixed names, not the AM_-prefixed ones.
20773
20774         * m4/afs.m4 (jm_AFS): Quote the body.  Patch by Akim Demaille.
20775
20776 2001-11-05  Jim Meyering  <meyering@lucent.com>
20777
20778         * lib/xstat.in (slash_aware_lstat): Correct a misleading comment.
20779
20780 2001-11-04  Jim Meyering  <meyering@lucent.com>
20781
20782         * m4/fpending.m4: Remove unused cruft that saved, set, and restored
20783         $DEFS.
20784
20785 2001-11-03  Jim Meyering  <meyering@lucent.com>
20786
20787         * m4/jm-glibc-io.m4n (jm_FUNC_GLIBC_UNLOCKED_IO): Quote first arg
20788         of AC_DEFUN.
20789
20790         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Rework so dirfd.c doesn't have to
20791         know the name of the variable in the macro definition.
20792
20793 2001-11-03  Jim Meyering  <meyering@lucent.com>
20794
20795         * lib/argmatch.h (ARGMATCH_TO_ARGUMENT): Remove casts of first two args
20796         in argmatch_to_argument call.
20797
20798         * lib/dirfd.c (dirfd): Reflect the fact that DIR_TO_FD now takes an
20799         argument.
20800
20801         * lib/hash.c (hash_clear): Fix a bug that could lead to an infloop or
20802         e.g., a fault due to an attempt to free a NULL pointer.
20803
20804 2001-11-01  Jim Meyering  <meyering@lucent.com>
20805
20806         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): New macro.
20807         * m4/jm-macros.m4 (jm_MACROS): Require UTILS_FUNC_DIRFD.
20808
20809 2001-11-01  Jim Meyering  <meyering@lucent.com>
20810
20811         * lib/dirfd.c, lib/dirfd.h: New files.
20812         * lib/Makefile.am (libfetish_a_SOURCES): Add dirfd.h.
20813
20814         * lib/hash.c (hash_print) [TESTING]: Clean up.
20815
20816 2001-10-22  Paul Eggert  <eggert@twinsun.com>
20817
20818         * lib/hard-locale.c (alloca): Define to __builtin_alloca if __GNUC__,
20819         to avoid a warning if -Wall.
20820
20821 2001-10-22  Jeff Bailey  <jbailey@outpost.dnsalias.org>
20822
20823         * README: New file
20824         * doc/*: Add COPYING, COPYING.LIB, COPYING.DOC, fdl.texi
20825         (per RMS's instructions, this is now the canonical source)
20826         * lgpl/, gpl/: New directories.
20827
20828 2001-10-21  Paul Eggert  <eggert@twinsun.com>
20829
20830         * lib/regex.c (uintptr_t): Remove macro and decl; it's config.h's job.
20831
20832 2001-10-21  Jim Meyering  <meyering@lucent.com>
20833
20834         * lib/obstack.c (_): Honor the setting of ENABLE_NLS.  Otherwise,
20835         this code would end up calling gettext even in packages built
20836         with --disable-nls.
20837         * lib/getopt.c (_): Likewise.
20838         * lib/regex.c (_): Likewise.
20839
20840 2001-10-20  Paul Eggert  <eggert@twinsun.com>
20841
20842         * m4/error.m4 (jm_PREREQ_ERROR):
20843         Do not invoke AC_CHECK_FUNCS with strerror_r, as
20844         AC_FUNC_STRERROR_R does that.
20845         Check for strerror declaration.
20846
20847         * m4/strerror_r.m4: Add copyright notice, as nontrivial m4 files
20848         are supposed to have them these days.
20849         (AC_FUNC_STRERROR_R): Always do char* test, so that it gets cached.
20850         Merge changes from latest Autoconf CVS.
20851         Rename ac_cv_func_strerror_r_works to ac_cv_func_strerror_r_char_p,
20852         and rename HAVE_WORKING_STRERROR_R to STRERROR_R_CHAR_P, since
20853         POSIX decided to standardize on the int flavor of strerror_r.
20854
20855 2001-10-20  Paul Eggert  <eggert@twinsun.com>
20856
20857         * lib/error.c (strerror_r): Do not declare unless !_LIBC.
20858         Do not check for HAVE_DECL_STRERROR_R missing unless STRERROR_R_CHAR_P.
20859         Use strerror_r that is only a macro, even if it is not a function.
20860         (strerror): Check for HAVE_DECL_STRERROR before declaring.
20861         (private_strerror): Use prototypes, not old-style function definition.
20862         (print_errno_message): New function.
20863         Support the POSIX 'int'-flavored strerror_r, as well as the traditional
20864         char*-flavored one.
20865         (error_tail, error, error_at_line): Use it.
20866
20867 2001-10-11  Jim Meyering  <meyering@lucent.com>
20868
20869         * lib/argmatch.c (argmatch_invalid): Use quotearg_n_style (0, ...
20870         and quote_n (1, ... to avoid clobbering a buffer.
20871
20872 2001-10-05  Jim Meyering  <meyering@lucent.com>
20873
20874         * lib/Makefile.am: (libfetish_a_SOURCES): Add hash-pjw.c and
20875         hash-pjw.h.
20876         * lib/hash-pjw.c: New file (factored out of fileutils' remove.c).
20877         * lib/hash-pjw.h: New file.
20878
20879 2001-09-30  Jim Meyering  <meyering@lucent.com>
20880
20881         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): See if
20882         `struct fsstat' has the `f_fstypename' member.
20883         Use that to define FS_TYPE, which is now used to make
20884         the getfsstat link test tighter.
20885
20886 2001-09-30  Jim Meyering  <meyering@lucent.com>
20887
20888         * lib/mountlist.c [MOUNTED_GETFSSTAT]:
20889         Include <sys/ucred.h>, for Apple Darwin.
20890         Include sys/mount.h and sys/fs_types.h only if available.
20891         (FS_TYPE): Define.
20892         (read_filesystem_list): Use FS_TYPE.
20893
20894 2001-09-29  Paul Eggert  <eggert@twinsun.com>
20895
20896         * lib/exclude.c (excluded_filename): 0 -> false, since it's
20897         a boolean context.
20898
20899 2001-09-29  Jim Meyering  <meyering@lucent.com>
20900
20901         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS)
20902         [one-argument getmntent function]): Include stdio.h before mntent.h.
20903         SunOS 4.1.x needs it for the declaration of `FILE'.
20904         Patch by Volker Borchert.
20905
20906         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS)
20907         Check for these headers: sys/param.h sys/ucred.h sys/mount.h
20908         sys/fs_types.h, and make the link-test for getfsstat guard #include
20909         directives with appropriate #if HAVE_*_H tests so that we can
20910         detect getfsstat on Apple Darwin1.3.7 systems.
20911         Reported by Nelson Beebe.
20912         Fix harmless typo in cache variable name: s/getsstat/getfsstat/.
20913
20914 2001-09-28  Paul Eggert  <eggert@twinsun.com>
20915
20916         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
20917         #defines strtoimax.  Also treat the other strto* functions
20918         like strtoimax.
20919
20920         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
20921         Check for strtoul and strtoumax,
20922         as those declarations are made even in the signed case.
20923         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX):
20924         Likewise, for strtol and strtoimax.
20925
20926 2001-09-28  Paul Eggert  <eggert@twinsun.com>
20927
20928         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
20929         #defines strtoimax.  Also treat the other strto* functions
20930         like strtoimax.
20931
20932         * lib/xstrtol.c (strtol): Do not declare if HAVE_DECL_STRTOL.
20933         (strtoul): Do not declare if HAVE_DECL_STRTOUL.
20934         (strtoimax, strtoumax): Do not declare if already defined as a macro.
20935
20936 2001-09-26  Jim Meyering  <meyering@lucent.com>
20937
20938         Most macros in unlocked-io.h had the wrong number of arguments.
20939         * lib/gen-uio: New script.
20940         (USE_UNLOCKED_IO): Define to 1 if not already defined.
20941         * lib/unlocked-io.hin: Remove file.
20942         * lib/Makefile.am (unlocked-io.h): Rewrite to use a separate script,
20943         rather than trying to embed it here.
20944         (EXTRA_DIST): Add gen-uio.  Remove unlocked-io.hin
20945         Reported by Padraig Brady.
20946
20947 2001-09-25  Volker Borchert  <bt@teknon.de>
20948
20949         * lib/gettimeofday.c (rpl_gettimeofday): Declare local variable
20950         `result'.
20951
20952 2001-09-24  Jim Meyering  <meyering@lucent.com>
20953
20954         * m4/gettext.m4: Use the version from gettext-0.10.40, not CVS.
20955
20956 2001-09-23  Jim Meyering  <meyering@lucent.com>
20957
20958         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add a compile-test
20959         instead of the mere test for existence of mntent.h.  The latter
20960         would get a false-positive on AIX 3.4 systems.
20961         In the outer getmntent if-block, don't die if neither of the getmntent
20962         tests succeeds.  Instead, just fall through and continue with the
20963         remaining tests.
20964
20965 2001-09-23  Jim Meyering  <meyering@lucent.com>
20966
20967         * lib/mountlist.c: Remove useless parentheses in #if directives.
20968         (MOUNTED) [!defined MOUNTED]: Define to _PATH_MOUNTED, for when
20969         the deprecated MOUNTED symbol is no longer defined in mntent.h.
20970
20971 2001-09-22  Jim Meyering  <meyering@lucent.com>
20972
20973         * m4/gettext.m4: New file.  From gettext.
20974         * m4/lcmessage.m4: Sync with gettext -- this changes only comments.
20975         * m4/progtest.m4: Likewise
20976         * m4/isc-posix.m4: Decrement serial number to sync with gettext.
20977         * m4/glibc21.m4: Likewise.
20978
20979         * m4/libintl.m4: Remove.  No longer used.
20980
20981 2001-09-22  Jim Meyering  <meyering@lucent.com>
20982
20983         * lib/localcharset.c: Update from latest gettext.
20984         * lib/config.charset: Likewise.
20985
20986 2001-09-20  Jim Meyering  <meyering@lucent.com>
20987
20988         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX): Check for declaration of
20989         strtoimax.
20990         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check for declaration of
20991         strtoumax.
20992
20993 2001-09-20  Jim Meyering  <meyering@lucent.com>
20994
20995         * lib/xstrtol.c (strtoimax): Guard declaration with
20996         `#if !HAVE_DECL_STRTOIMAX', rather than just `#ifndef strtoimax'.
20997         The latter fails because some systems (at least rs6000-ibm-aix4.3.3.0)
20998         have their own, conflicting declaration of strtoimax in sys/inttypes.h.
20999         (strtoumax): Likewise, for completeness (it wasn't necessary).
21000
21001 2001-09-17  Paul Eggert  <eggert@twinsun.com>
21002
21003         * lib/strtoimax.c (HAVE_LONG_LONG):
21004         Redefine to HAVE_UNSIGNED_LONG_LONG if unsigned.
21005         (strtoimax): Use sizeof (long), not sizeof strtol (ptr, endptr, base),
21006         to work around bug in IBM C compiler.
21007
21008 2001-09-17  Jim Meyering  <meyering@lucent.com>
21009
21010         * m4/chown.m4, fstypename.m4, getgroups.m4, gettimeofday.m4,
21011         * m4/jm-mktime.m4, lstat.m4, malloc.m4, memcmp.m4, mkdir-slash.m4,
21012         * m4/nanosleep.m4, putenv.m4, readdir.m4, realloc.m4, rename.m4,
21013         * m4/st_dm_mode.m4, stat.m4, strerror_r.m4, timespec.m4, utimbuf.m4,
21014         * m4/utimes.m4: Use AC_DEFINE rather than AC_DEFINE_UNQUOTED,
21015         whenever the right hand side need not be expanded by the shell.
21016
21017 2001-09-16  Paul Eggert  <eggert@twinsun.com>
21018
21019         * m4/fnmatch.m4 (jm_FUNC_FNMATCH): Remove test for GNU C
21020         library.  It's not correct, as some older glibcs are buggy.
21021         fnmatch wasn't fixed until glibc 2.2.
21022
21023         Use AC_DEFINE, not AC_DEFINE_UNQUOTED, as there's no
21024         special shell magic here.
21025
21026 2001-09-16  Jim Meyering  <meyering@lucent.com>
21027
21028         * m4/mkdir-slash.m4 (UTILS_FUNC_MKDIR_TRAILING_SLASH): New file/macro.
21029         * m4/jm-macros.m4: Require it.
21030
21031 2001-09-16  Jim Meyering  <meyering@lucent.com>
21032
21033         * lib/mkdir.c: New file.
21034
21035 2001-09-15  Jim Meyering  <meyering@lucent.com>
21036
21037         * m4/jm-macros.m4: Check for help2man.
21038
21039 2001-09-11  Jim Meyering  <meyering@lucent.com>
21040
21041         * m4/host-os.m4 (UTILS_HOST_OS): New file/macro.
21042         The body, by Paul Eggert, was moved here from configure.in.
21043         * m4/jm-macros.m4: Require UTILS_HOST_OS.
21044
21045 2001-09-04  Paul Eggert  <eggert@twinsun.com>
21046
21047         * m4/prereq.m4 (jm_PREREQ_XREADLINK): New macro.
21048         (jm_PREREQ): Use it.
21049
21050 2001-09-04  Paul Eggert  <eggert@twinsun.com>
21051
21052         * lib/xreadlink.c (xreadlink): Omit size_t* arg.  All uses changed.
21053         Use ssize_t, not int, to store result of readlink.
21054         Check for ssize_t overflow as well as size_t overflow,
21055         as POSIX says the result of readlink is implementation-defined
21056         when ssize_t overflows.
21057         Remove unnecessary cast to char*.
21058         Use free+malloc instead of realloc, as the storage doesn't need
21059         to be preserved and it's clearer and can be more efficient that way.
21060         (SIZE_MAX, SSIZE_MAX): New macros, if <limits.h> doesn't declare.
21061         * lib/xreadlink.h (xreadlink): Update prototype.
21062
21063 2001-09-04  Paul Eggert  <eggert@twinsun.com>
21064
21065         * lib/xgetcwd.c: Revert some of the previous change; intead,
21066         fix the HAVE_GETCWD_NULL code to behave more like the
21067         !HAVE_GETCWD_NULL code used to.
21068
21069         Include "xalloc.h".
21070         (xgetcwd): Do not return NULL when memory is exhausted; instead,
21071         invoke xalloc_die.
21072
21073 2001-09-03  Paul Eggert  <eggert@twinsun.com>
21074
21075         * m4/prereq.m4 (jm_PREREQ_XGETCWD): Check for limits.h and
21076         sys/param.h, as pathmax.h includes them.
21077
21078 2001-09-03  Paul Eggert  <eggert@twinsun.com>
21079
21080         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_XGETCWD.
21081         (jm_PREREQ_XGETCWD): New macro.
21082
21083         * m4/getcwd.m4: New file.
21084
21085 2001-09-03  Paul Eggert  <eggert@twinsun.com>
21086
21087         * lib/xgetcwd.c: Fix the !HAVE_GETCWD_NULL code to behave more
21088         like the HAVE_GETCWD_NULL code.
21089         Include pathmax.h if not HAVE_GETCWD.
21090         Do not include xalloc.h.
21091         (INITIAL_BUFFER_SIZE): New symbol.
21092         Do not use xmalloc / xrealloc, since the caller is responsible for
21093         handling errors.  Preserve errno around `free' during failure.
21094         Do not overrun buffer when using getwd.
21095
21096 2001-09-03  Paul Eggert  <eggert@twinsun.com>
21097
21098         * lib/xgetcwd.c (xgetcwd): Use HAVE_GETCWD_NULL, not (defined
21099         __GLIBC__ && __GLIBC__ >= 2), to decide whether to use
21100         getcwd (NULL, 0).
21101
21102 2001-09-03  Paul Eggert  <eggert@twinsun.com>
21103
21104         * lib/exclude.c (fnmatch_no_wildcards): Fix confusion between
21105         usage of FNM_CASEFOLD and FNM_LEADING_DIR.  The bug was
21106         spotted by Jim Meyering.
21107
21108 2001-09-03  Jim Meyering  <meyering@lucent.com>
21109
21110         * lib/xreadlink.c (xreadlink): Preserve errno around `free' during
21111         failure.
21112
21113 2001-09-02  Jim Meyering  <meyering@lucent.com>
21114
21115         * lib/error.c: Update from GNU libc.
21116
21117 2001-09-01  Jim Meyering  <meyering@lucent.com>
21118
21119         * m4/jm-macros.m4 (jm_MACROS): Check for canonicalize_file_name.
21120         Used by df.
21121
21122 2001-09-01  Jim Meyering  <meyering@lucent.com>
21123
21124         * lib/xreadlink.c: New file.
21125         * lib/xreadlink.h: New file.
21126         * lib/Makefile.am (libfetish_a_SOURCES): Add xreadlink.c and
21127         xreadlink.h.
21128
21129         * lib/regex.c (uintptr_t) [!_LIBC]: Define to private_uintptr_t, so it
21130         doesn't conflict with sparc Solaris 7's definition in
21131         /usr/include/sys/int_types.h.
21132
21133         * lib/exclude.c: Use `""', not `<>' to #include non-system header
21134         files.
21135         (fnmatch_no_wildcards): Rewrite not to use function names, strcasecmp
21136         and strncasecmp as r-values.  Unixware didn't have declarations.
21137
21138 2001-08-31  Paul Eggert  <eggert@twinsun.com>
21139
21140         * lib/xstrtol.h: Add copyright notice.
21141         (_DECLARE_XSTRTOL): Improve quality of diagnostic for
21142         LONGINT_INVALID_SUFFIX_CHAR.
21143
21144 2001-08-31  Paul Eggert  <eggert@twinsun.com>
21145
21146         * lib/xstrtol.c (strtoimax): New decl.
21147
21148 2001-08-31  Paul Eggert  <eggert@twinsun.com>
21149
21150         * lib/xgetcwd.c: Don't include pathmax.h.
21151         Include stdlib.h and unistd.h if available.
21152         Include xalloc.h.
21153         (xmalloc, xstrdup, free): Remove decls.
21154         (xgetcwd): Don't assume sizes fit in unsigned.
21155         Check for overflow when computing sizes.
21156         Simplify reallocation code.
21157
21158 2001-08-31  Paul Eggert  <eggert@twinsun.com>
21159
21160         * lib/savedir.c (savedir): Remove size parameter, as POSIX says that
21161         a directory's st_size can have an arbitrary value, so the old
21162         usage could waste an arbitrary amount of memory.  All uses
21163         changed.
21164         * lib/savedir.h: Update prototype.
21165
21166 2001-08-31  Paul Eggert  <eggert@twinsun.com>
21167
21168         * lib/Makefile.am (libfetish_a_SOURCES): Remove strtoxmax.c.
21169
21170         * lib/strtoimax.c: Renamed from strtoxmax.c, removing the
21171         old strtoimax.c.
21172
21173         Also, make the following further changes to make this file's
21174         configuration more similar to that of strtol.c:
21175         (UNSIGNED): Renamed from STRTOUXMAX_UNSIGNED.  All uses changed.
21176         (strtoumax, uintmax_t, strtoull, strtol): Remove.
21177         (intmax_t, strtoimax, strtol, strtoll): New macros, if UNSIGNED.
21178         (strtoimax): Renamed from strtoumax.  All uses of unsigned values
21179         changed to signed values.
21180
21181         And make the following changes as well:
21182         Fix copyright notice, as 1999 was missing.
21183         (verify): New macro.
21184         (strtoimax): Check sizes at compile-time, not run-time.
21185         Prefer strtol to strtoll if both work.
21186         (main): Remove; it was not that useful and was a pain to maintain.
21187
21188         * lib/strtoumax.c: Include strtoimax.c, not strtouxmax.c.
21189
21190 2001-08-31  Jim Meyering  <meyering@lucent.com>
21191
21192         * lib/xgetcwd.c (xgetcwd): Reorganize to avoid some duplication.
21193         Use an initial, malloc'd, buffer of length 128 rather than
21194         a statically allocated one of length 1024.
21195
21196 2001-08-30  Paul Eggert  <eggert@twinsun.com>
21197
21198         Simplify code, partly by assuming autoconf 2.52 semantics.
21199
21200         * m4/Makefile.am (EXTRA_DIST): Remove uintmax_t.m4.
21201
21202         * m4/inttypes.m4 (AC_PREREQ): Bump to 2.52.
21203         (jm_AC_HEADER_INTTYPES_H): Remove; now done by autoconf in 2.52.
21204         All uses removed.
21205         (jm_AC_TYPE_INTMAX_T, jm_AC_TYPE_UINTMAX_T):
21206         Move AC_REQUIRE to next-to-top level, to avoid confusion.
21207         Use 2.52's AC_CHECK_TYPE instead of merely looking for the header.
21208         * m4/prereq.m4 (jm_PREREQ_HUMAN): Don't require
21209         jm_AC_HEADER_INTTYPES_H.
21210         * m4/jm-macros.m4 (jm_MACROS): Likewise.
21211
21212         * m4/uintmax_t.m4: Remove, as it duplicates inttypes.m4.
21213
21214         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
21215         Quote first arg of AC_DEFUN.
21216         Require jm_AC_TYPE_UINTMAX_T and jm_AC_TYPE_UNSIGNED_LONG_LONG
21217         since they are needed to parse the include file even if we need
21218         only xstrtoimax.  Simplify logic behind the args to AC_REPLACE.
21219         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Likewise,
21220         but with opposite signedness.
21221
21222 2001-08-30  Paul Eggert  <eggert@twinsun.com>
21223
21224         Merge 'exclude' changes from tar 1.13.22.
21225         This fixes one or two unlikely storage allocation overflow bugs,
21226         but doesn't change user-visible behavior otherwise.
21227
21228 2001-08-30  Paul Eggert  <eggert@twinsun.com>
21229
21230         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_EXCLUDE.
21231         (jm_PREREQ_EXCLUDE): New macro.
21232
21233 2001-08-30  Paul Eggert  <eggert@twinsun.com>
21234
21235         * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
21236         tm to be declared.
21237
21238 2001-08-30  Paul Eggert  <eggert@twinsun.com>
21239
21240         * lib/hash.c: Remove '2001' from copyright notice.
21241
21242 2001-08-30  Paul Eggert  <eggert@twinsun.com>
21243
21244         * lib/full-write.h: New file.
21245         * lib/Makefile.am (libfetish_a_SOURCES): Add full-write.h.
21246         * lib/full-write.c: Correct credits, as cccp.c no longer
21247         exists and anyway it was so heavily changed from the old cccp
21248         code as to be unrecognizable.  Include full-write.h.
21249         (full_write) Return size_t, with short writes meaning failure.
21250         All callers changed.  This fixes a bug with large buffers
21251         on 64-bit hosts.
21252         * lib/utime.c: Include full-write.h.
21253
21254 2001-08-30  Paul Eggert  <eggert@twinsun.com>
21255
21256         * lib/exclude.c (bool): Declare, perhaps by including stdbool.h.
21257         (<sys/types.h>): Include only if HAVE_SYS_TYPES_H.
21258         (<stdlib.h>, <string.h>, <strings.h>, <inttypes.h>, <stdint.h>):
21259         Include if available.
21260         (<xalloc.h>): Include
21261         (SIZE_MAX): Define if <stdint.h> or <inttypes.h> doesn't.
21262         (verify): New macro.  Use it to verify that EXCLUDE macros do not
21263         collide with FNM macros.
21264         (struct patopts): New struct.
21265         (struct exclude): Use it, as exclude patterns now come with options.
21266         (new_exclude): Support above changes.
21267         (new_exclude, add_exclude_file):
21268         Initial size must now be a power of two to simplify overflow checking.
21269         (free_exclude, fnmatch_no_wildcards): New function.
21270         (excluded_filename): No longer requires options arg, as the options
21271         are determined by add_exclude.  Now returns bool, not int.
21272         (excluded_filename, add_exclude):
21273         Add support for the fancy new exclusion options.
21274         (add_exclude, add_exclude_file): Now takes int options arg.
21275         Check for arithmetic overflow when computing sizes.
21276         (add_exclude_file): xrealloc might modify errno, so don't
21277         realloc until after errno might be used.
21278
21279         * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE,EXCLUDE_WILDCARDS):
21280         New macros.
21281         (free_exclude): New decl.
21282         (add_exclude, add_exclude_file): Now takes int options arg.
21283         (excluded_filename): No longer requires options arg, as the options
21284         are determined by add_exclude.  Now returns bool, not int.
21285
21286 2001-08-30  Paul Eggert  <eggert@twinsun.com>
21287
21288         * lib/alloca.c (alloca): Arg is of type size_t, not unsigned.
21289
21290 2001-08-27  Jim Meyering  <meyering@lucent.com>
21291
21292         * lib/Makefile.am (libfetish_a_SOURCES): Add strtoxmax.c
21293
21294         * lib/version-etc.c (N_): Remove definition.
21295         Revert most of last change.
21296         Instead, simply don't mark the `Copyright...' string for translation.
21297         Based on advice from Paul Eggert.
21298
21299         * lib/strtoxmax.c: Tweak comment.
21300
21301 2001-08-26  Jim Meyering  <meyering@lucent.com>
21302
21303         * m4/jm-macros.m4: Require jm_AC_PREREQ_XSTRTOIMAX.
21304
21305         * m4/xstrtoimax.m4: New file.
21306         * m4/xstrtoumax.m4: Add comments explaining why we
21307         AC_REPLACE_FUNCS(strtol).
21308
21309 2001-08-26  Jim Meyering  <meyering@lucent.com>
21310
21311         * lib/version-etc.c (version_etc_copyright_fmt): Replace literal year
21312         of copyright with `%s' so translators don't get an untranslated
21313         message in 2002.
21314         (COPYRIGHT_YEAR): Define.
21315         (version_etc): Use fprintf rather than fputs.
21316         Suggestion from Ulrich Drepper.
21317
21318         * lib/Makefile.am (libfetish_a_SOURCES): Add xstrtoimax.c.
21319
21320         * lib/strtoll.c: New file, from GNU libc.
21321         * lib/xstrtoimax.c: New file.
21322
21323         * lib/xstrtol.h: Add xstrtoimax.
21324         * lib/strtoumax.c: New file.  Simply include "strtoumax.c".
21325         * lib/strtoimax.c: New file.  Likewise, but first define
21326         STRTOUXMAX_SIGNED.
21327
21328         * lib/strtoumax.c: Factor to work both for unsigned and signed types,
21329         ...
21330         * lib/strtoxmax.c: ... then renamed to this.
21331
21332 2001-08-18  Paul Eggert  <eggert@twinsun.com>
21333
21334         * m4/inttypes.m4: Add AC_PREREQ(2.13).
21335         (jm_AC_HEADER_INTTYPES_H): Test for intmax_t, too.
21336         (jm_AC_TYPE_INTMAX_T): New macro.
21337         (jm_AC_TYPE_UINTMAX_T): Moved here from uintmax_t.m4.
21338
21339         * m4/longlong.m4 (jm_AC_TYPE_LONG_LONG): New macro.
21340
21341         * m4/longlong.m4: Renamed from ulonglong.m4.
21342         * m4/inttypes.m4: Renamed from inttypes_h.m4.
21343         * m4/uintmax_t.m4: Removed.
21344
21345 2001-08-13  Paul Eggert  <eggert@twinsun.com>
21346
21347         * lib/Makefile.am (unlocked-io.h): Do not append "_unlocked" twice.
21348         Port to Solaris 8, where 'sed' requires a space after the 'r'
21349         command, and where sh dislikes "$/".  Clean up the spacing a bit.
21350         Redirect output to $tmp just once.
21351
21352 2001-08-12  Paul Eggert  <eggert@sic.twinsun.com>
21353
21354         * lib/addext.c (<errno.h>): Include.
21355         (errno): Declare if not defined.
21356         (addext): Work correctly when pathconf returns -1 and leaves
21357         errno alone because there is no limit.  Also, work even if
21358         pathconf returns a value greater than SIZE_MAX.
21359
21360 2001-08-12  Jim Meyering  <meyering@lucent.com>
21361
21362         * m4/afs.m4, assert.m4, bison.m4, check-decl.m4, chown.m4, d-ino.m4,
21363         d-type.m4, dos.m4, error.m4, fnmatch.m4, fpending.m4, fstypename.m4,
21364         fsusage.m4, ftruncate.m4, getgroups.m4, glibc.m4, gnu-source.m4,
21365         group-member.m4, jm-glibc-io.m4, jm-macros.m4, jm-mktime.m4,
21366         jm-winsz1.m4, jm-winsz2.m4, lchown.m4, lib-check.m4, libintl.m4,
21367         link-follow.m4, ls-mntd-fs.m4, lstat.m4, malloc.m4, mbrtowc.m4,
21368         mbstate_t.m4, mbswidth.m4, memcmp.m4, nanosleep.m4, perl.m4,
21369         prereq.m4, putenv.m4, readdir.m4, realloc.m4, regex.m4, rename.m4,
21370         rmdir-errno.m4, search-libs.m4, st_dm_mode.m4, st_mtim.m4, stat.m4,
21371         strftime.m4, timespec.m4, unlink-busy.m4, uptime.m4, utimbuf.m4,
21372         utime.m4, utimes.m4, xstrtoumax.m4:
21373         Quote the first argument in each use of AC_DEFUN.
21374
21375 2001-08-12  Jim Meyering  <meyering@lucent.com>
21376
21377         * lib/xgetcwd.c (xgetcwd) [defined __GLIBC__ && __GLIBC__ >= 2]:
21378         Simply `return getcwd (NULL, 0);'.
21379         [! (defined __GLIBC__ && __GLIBC__ >= 2)]:
21380         Use 1300 as initial value for length, not PATH_MAX.
21381
21382         * lib/pathmax.h: Clean up cpp syntax.
21383
21384 2001-08-12  Jim Meyering  <meyering@lucent.com>
21385
21386         * lib/gettimeofday.c: New file.
21387         * lib/gtod.h: New file.
21388         * lib/Makefile.am (libfetish_a_SOURCES): Add gtod.h.
21389
21390 2001-08-05  Jim Meyering  <meyering@lucent.com>
21391
21392         * m4/jm-macros.m4: Require autoconf-2.52.
21393
21394 2001-08-04  Jim Meyering  <meyering@lucent.com>
21395
21396         * lib/error.h (__attribute__): Remove `|| __STRICT_ANSI__' from #if
21397         stmt, to get in sync with glibc.
21398
21399 2001-08-03  Paul Eggert  <eggert@twinsun.com>
21400
21401         The following changes are from gettext 0.10.39 as maintained by
21402         Bruno Haible.
21403
21404         * lib/mbswidth.h (MBSW_REJECT_UNPRINTABLE, MBSW_REJECT_INVALID):
21405         Renamed from MBSW_ACCEPT_UNPRINTABLE and MBSW_ACCEPT_INVALID
21406         with inverted sense.  All uses changed.
21407
21408         * lib/mbswidth.c: Don't include <limits.h>.
21409         Include <stdlib.h> and <string.h> unconditionally.
21410         (iswcntrl, mbsinit, ISCNTRL): New macros.
21411         (mbsnwidth): Use K&R style function declarations.
21412         Don't bother checking for MB_LEN_MAX == 1, since the compiler
21413         can optimize it when MB_CUR_MAX == 1.
21414         The width of control characters is zero, not 1.
21415
21416 2001-08-03  Paul Eggert  <eggert@twinsun.com>
21417
21418         The following changes are from gettext 0.10.39 as maintained by
21419         Bruno Haible, except that getline.m4 continues to use AC_LIBOBJ.
21420
21421         * m4/codeset.m4: Upgrade to serial AM1.
21422         (AM_LANGINFO_CODESET): Renamed from jm_LANGINFO_CODESET;
21423         all uses changed.  Quote first arg of AC_DEFUN.
21424         (am_cv_langinfo_codeset): Renamed from jm_cv_langinfo_codeset.
21425
21426         * m4/iconv.m4: Upgrade to serial AM2.
21427         (AM_ICONV): Renamed from jm_ICONV; all uses changed.
21428         Add --with-libconv-prefix.
21429         Quote first arg of AC_DEFUN.  Add description for ICONV_CONST.
21430         (am_cv_func_iconv): Renamed from jm_cv_func_iconv.
21431         (am_cv_lib_iconv): Renamed from jm_cv_lib_iconv.
21432         (am_cv_proto_iconv): Renamed from jm_cv_proto_iconv.
21433         * m4/jm-macros.m4 (jm_MACROS): Reflect s/jm_/AM_/ renamings.
21434
21435         * m4/c-bs-a.m4 (AC_C_BACKSLASH_A): Quote first arg of AC_DEFUN.
21436         * m4/getline.m4 (AM_FUNC_GETLINE): Likewise.
21437         * m4/glibc21.m4 (jm_GLIBC21): Likewise.
21438         * m4/inttypes_h.m4 (jm_AC_HEADER_INTTYPES_H): Likewise.
21439         * m4/isc-posix.m4 (AC_ISC_POSIX): Likewise.
21440         * m4/lcmessage.m4 (AM_LC_MESSAGES): Likewise.
21441         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): Likewise.
21442         * m4/uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Likewise.
21443         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Likewise.
21444
21445         * m4/getline.m4 (AM_FUNC_GETLINE): Don't bother checking for
21446         string.h any more.
21447
21448         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): If not found, print "no",
21449         not the default value.
21450
21451         2001-06-25  Bruno Haible  <haible@clisp.cons.org>
21452         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Don't require AM_C_PROTOTYPES.
21453         Also check for mbsinit.  Needed for SCO 3.2v5.0.2.
21454         Also include <string.h>; this is where AIX 3.2.5 declares wcwidth.
21455         Also check for iswcntrl, used for wcwidth fallback.
21456         Use AC_TRY_COMPILE to emulate AC_CHECK_DECLS, for portability
21457         to Autoconf 2.13.
21458
21459 2001-08-03  Jim Meyering  <meyering@lucent.com>
21460
21461         * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): Use `#include', not `@%:@include',
21462         as it was in the original.  Reported by Paul Eggert.
21463
21464 2001-07-16  Jim Meyering  <meyering@lucent.com>
21465
21466         * m4/gettimeofday.m4: New file.
21467         Prompted by a report from Bernhard Baehr.
21468
21469 2001-07-15  Jim Meyering  <meyering@lucent.com>
21470
21471         * m4/Makefile.am.in (Makefile.am): Remove most of the unlocked-io.h
21472         stuff. Now it's in ../Makefile.cfg.
21473
21474 2001-07-15  Jim Meyering  <meyering@lucent.com>
21475
21476         * lib/Makefile.am (EXTRA_DIST): Add unlocked-io.hin.
21477         (BUILT_SOURCES): Add unlocked-io.h.
21478         (io_functions): Define.
21479         (unlocked-io.h): New rule.
21480         (DISTCLEANFILES): Add unlocked-io.h.
21481         (all-local): Depend on unlocked-io.h, to ensure it is created.
21482
21483         * lib/unlocked-io.hin: New file
21484
21485         * lib/regex.c: Update from glibc.
21486
21487 2001-07-05  Jim Meyering  <meyering@lucent.com>
21488
21489         * lib/Makefile.am (noinst_HEADERS): Remove definition, per new automake
21490         recommendation.
21491         (libfetish_a_SOURCES): Put all .h files here instead.
21492         Remove a thus-exposed (better checks in automake) duplicate and
21493         two unnecessary .h files.
21494
21495 2001-07-04  Jim Meyering  <meyering@lucent.com>
21496
21497         * m4/Makefile.am.in (glibc-io.struct): New target.  Rework the code
21498         that generates jm-glibc-io.m4 so that it doesn't trigger any make
21499         distcheck failure.
21500
21501 2001-07-02  Jim Meyering  <meyering@lucent.com>
21502
21503         The following changes were prompted by suggestions from Bruno Haible.
21504
21505         * m4/jm-glibc-io.m4n: New file, the template from which jm-glibc-io.m4
21506         is now generated.
21507         * m4/Makefile.am.in (Makefile.am): Include jm-glibc-io.m4n in emitted
21508         definition of EXTRA_DIST.
21509         (Makefile.am): Emit the dependency, `all-local: jm-glibc-io.m4' to
21510         ensure that the generated file is created/updated whenever the list
21511         of $(unlocked_functions) is changed.
21512         (jm-glibc-io.m4): New rule.
21513         (unlocked-io.h): New rule -- currently unused.
21514
21515 2001-06-24  Jim Meyering  <meyering@lucent.com>
21516
21517         * m4/regex.m4 (jm_INCLUDED_REGEX): Use a quadrigraph to represent an
21518         unmatched right bracket, rather than kludging it with an extra,
21519         falsely-matching quote in a comment.  Patch by Akim Demaille.
21520
21521 2001-06-11  Jim Meyering  <meyering@lucent.com>
21522
21523         * lib/regex.c: Update from GNU libc.
21524
21525 2001-05-27  Jim Meyering  <meyering@lucent.com>
21526
21527         * m4/prereq.m4 (jm_PREREQ_READUTMP): Check for ut_type in struct utmpx.
21528         Check for ut_type in struct utmp.
21529
21530 2001-05-27  Jim Meyering  <meyering@lucent.com>
21531
21532         * lib/readutmp.h (UT_TYPE): Define.
21533
21534 2001-05-24  Jim Meyering  <meyering@lucent.com>
21535
21536         * lib/argmatch.c: Include "quote.h".
21537         (argmatch_invalid): Remove explicit `' quotes.  Instead, use the
21538         quote function.  Reported by Göran Uddeborg.
21539
21540 2001-05-22  Jim Meyering  <meyering@lucent.com>
21541
21542         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't use AC_LIBOBJ(strftime),
21543         now that we use the package-supplied version unconditionally.
21544         (jm_FUNC_STRFTIME): Don't replace strftime, for the same reason.
21545
21546 2001-05-21  Jim Meyering  <meyering@lucent.com>
21547
21548         * m4/regex.m4: Change a couple backticks to single quotes to avoid
21549         shell syntax errors.
21550
21551 2001-05-21  Alexandre Duret-Lutz  <duret_g@epita.fr>
21552
21553         * m4/dos.m4 (jm_AC_DOS): Check for _WIN32, __WIN32__, and __MSDOS__.
21554
21555 2001-05-20  Paul Eggert  <eggert@twinsun.com>
21556
21557         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME):
21558         Don't bother to check library strftime, since
21559         we'll be using our own my_strftime function anyway.
21560         Define my_strftime instead of strftime.
21561
21562 2001-05-20  Alexandre Duret-Lutz  <duret_g@epita.fr>
21563
21564         * lib/dirname.c (dir_name): Compute append_dot using path, not newpath
21565         which is not yet declared.
21566
21567 2001-05-15  Jim Meyering  <meyering@lucent.com>
21568
21569         * m4/regex.m4: Use proper quoting so brackets appear in the test
21570         program.
21571         Reported by, and with help from, Bruno Haible.
21572
21573 2001-05-13  Jim Meyering  <meyering@lucent.com>
21574
21575         * m4/jm-macros.m4 (major_t, minor_t): Define to unsigned int if
21576         undefined.
21577
21578 2001-05-11  Paul Eggert  <eggert@twinsun.com>
21579
21580         dirname code cleanup.  base_name now behaves more compatibly
21581         with POSIX basename when given file names that have trailing
21582         slashes, and similarly for dir_name.  Add new primitives
21583         base_len and dir_len.  Put the directory-name-related decls
21584         into dirname.h.
21585
21586         * lib/addext.c (ISSLASH, base_name): Remove; now in dirname.h.
21587         * lib/backupfile.c (base_name): Likewise.
21588         * lib/basename.c (FILESYSTEM_PREFIX_LEN, PARAMS, ISSLASH): Likewise.
21589         * lib/dirname.c (FILESYSTEM_PREFIX_LEN, ISSLASH): Likewise.
21590         * lib/makepath.c (strip_trailing_slashes): Likewise.
21591         * lib/path-concat.c (DIRECTORY_SEPARATOR, FILESYSTEM_PREFIX_LEN,
21592         ISSLASH): Likewise.
21593         * lib/rename.c (strip_trailing_slashes): Likewise.
21594         * lib/same.c (base_name): Likewise.
21595         * lib/stripslash.c (ISSLASH): Likewise.
21596
21597         * lib/addext.c: Include <dirname.h> after size_t is defined.
21598         * lib/backupfile.c: Likewise.
21599
21600         * lib/addext.c (addext): Use base_len to trim redundant
21601         trailing slashes instead of doing it ourselves.
21602         But do not trim the last slash if it is not redundant.
21603
21604         * lib/backupfile.c (find_backup_file_name,
21605         max_backup_version): Use base_len instead of rolling it ourselves.
21606         Handle the case of "" and (on DOS) "C:" correctly.
21607
21608         * lib/basename.c: Do not include <stdio.h>, <assert.h>; no longer
21609         needed. Include <string.h>, <dirname.h>.
21610         (base_name): Allow file names ending in slashes, other than names
21611         that are all slashes.  In this case, return the basename followed
21612         by the slashes.  This is more general, and can be used in places
21613         where the original base_name purposely had an assertion failure.
21614         (base_len): New function.
21615
21616         * lib/dirname.c: Include <string.h> instead of <stdlib.h>.
21617         Do not include <assert.h>; no longer needed.
21618         Include xalloc.h.
21619         (memrchr): Remove decl.
21620         (dir_name_r): Remove.
21621         (dir_len): Renamed from dirlen.  All callers changed.
21622         Rewrite in terms of base_name, for simplicity and consistency.
21623         (dir_name): Never return NULL.  All callers changed.
21624         Do not include <stdlib.h> in test program; no longer needed.
21625         return 0; is fine for test program.
21626
21627         * lib/dirname.h (DIRECTORY_SEPARATOR, ISSLASH, FILESYSTEM_PREFIX_LEN):
21628         New macros.
21629         (base_name, base_len, dir_len, strip_trailing_slashes): New decls.
21630
21631         * lib/path-concat.c (path_concat): Use base_len to compute
21632         base length, not strlen; this means we cannot rely on memcpy
21633         to null-terminate.
21634
21635         * lib/same.c (STREQ): Remove.
21636         (same_name): Handle the case where the basename ends in trailing '/'.
21637
21638         * lib/stripslash.c (strip_trailing_slashes): Return nonzero if
21639         a slash was stripped.  Do not strip the last slash after a
21640         file system prefix.
21641
21642 2001-05-11  Paul Eggert  <eggert@twinsun.com>
21643
21644         * lib/Makefile.am (libfetish_a_SOURCES):
21645         Add strftime.c, since we now compile it on all hosts.
21646
21647         * lib/strftime.c (my_strftime):
21648         Define to nstrftime if emacs, but only if my_strftime is not defined.
21649         (extra_args, extra_args_spec, extra_args_spec_iso): Rename from
21650         ut_argument, ut_argument_spec, ut_argument_spec_iso, respectively.
21651         Add one more extra argument: a nanoseconds value.
21652         All uses changed.
21653         (ns): New macro.
21654         (my_strftime function): Add %N format.
21655         (emacs_strftimeu): Renamed from emacs_strftime,
21656         with extra ut argument.
21657
21658 2001-05-09  Paul Eggert  <eggert@twinsun.com>
21659
21660         * m4/jm-macros.m4 (jm_MACROS): Do not check for fseeko; no longer used.
21661
21662 2001-04-21  Jim Meyering  <meyering@lucent.com>
21663
21664         * m4/rmdir-errno.m4: Write to a new file, so that a restrictive umask
21665         doesn't interfere.
21666
21667 2001-04-21  Alexandre Duret-Lutz  <duret_g@epita.fr>
21668
21669         * m4/ftruncate.m4: Check for chsize.
21670         Link with ftruncate.o unconditionally if ftruncate is missing.
21671         This was required when cross-compiling to i586-mingw32msvc.
21672
21673 2001-04-08  Jim Meyering  <meyering@lucent.com>
21674
21675         * lib/getdate.y (get_date): Set tm_isdst to -1 to ensure that it is
21676         recomputed; that's necessary when the offset spans a DST transition.
21677         Patch by David J. MacKenzie.  Reported by Hon-Yin Kok.
21678
21679 2001-04-02  Jim Meyering  <meyering@lucent.com>
21680
21681         * lib/regex.h, regex.c: Update from GNU libc.
21682
21683 2001-03-24  Jim Meyering  <meyering@lucent.com>
21684
21685         * m4/jm-macros.m4: Require autoconf-2.49d.
21686
21687 2001-03-20  Bruno Haible  <haible@clisp.cons.org>
21688
21689         * m4/iconv.m4 (jm_ICONV): Recommend GNU libiconv.
21690
21691 2001-03-19  Paul Eggert  <eggert@twinsun.com>
21692
21693         * lib/version-etc.c (version_etc_copyright): Update to 2001.
21694
21695 2001-03-17  Jim Meyering  <meyering@lucent.com>
21696
21697         * m4/memcmp.m4 (jm_AC_FUNC_MEMCMP): Remove my copy of AC_FUNC_MEMCMP,
21698         now that the version in autoconf is equivalent.
21699         (jm_FUNC_MEMCMP): Adjust to use AC_FUNC_MEMCMP.
21700
21701         * m4/error.m4 (jm_PREREQ_ERROR): Invoke AC_FUNC_STRERROR_R.
21702         Suggestion from Akim Demaille.
21703
21704         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_TEMPNAME.
21705         (jm_PREREQ_TEMPNAME): New function.
21706
21707 2001-03-16  Paul Eggert  <eggert@twinsun.com>
21708
21709         * lib/tempname.c (uint64_t): Define to uintmax_t if
21710         not defined, and if UINT64_MAX is not defined.
21711         Required at least for Vax Ultrix4.3, which doesn't define uint64_t.
21712         Reported by John David Anglin.
21713
21714 2001-03-15  Bruno Haible  <haible@clisp.cons.org>
21715
21716         * lib/localcharset.c (locale_charset): Allow wildcard syntax. Also
21717         resolve alias if codeset is empty.
21718         * lib/config.charset (BeOS): Use wildcard syntax.
21719
21720 2001-03-13  Jim Meyering  <meyering@lucent.com>
21721
21722         * lib/path-concat.c (path_concat)
21723         [FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]: Don't insert a backslash when
21724         concatenating e.g., `C:' and `foo'.
21725         From Bruno Haible.
21726
21727 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
21728
21729         * lib/localcharset.c (locale_charset): Don't use
21730         setlocale(LC_CTYPE,NULL). Don't return NULL.
21731         * lib/unicodeio.c (print_unicode_char): Simplify accordingly.
21732
21733 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
21734
21735         * lib/config.charset: Update for FreeBSD 4.2 and OSF/1 5.1. Add
21736         support for DOS/DJGPP.
21737
21738 2001-03-01  Paul Eggert  <eggert@twinsun.com>
21739
21740         * m4/jm-macros.m4 (jm_MACROS): Use mkstemp replacement if the system
21741         lacks mkstemp.  Compile our own tempname.c if we compile our own
21742         mkstemp.c, as mkstemp relies on tempname.
21743
21744 2001-03-01  Jim Meyering  <meyering@lucent.com>
21745
21746         * m4/dos.m4 (jm_AC_DOS): Remove extra backslashes, now that
21747         AH_VERBATIM really does output its argument verbatim.
21748
21749 2001-02-28  Paul Eggert  <eggert@twinsun.com>
21750
21751         * lib/Makefile.am (libfetish_a_SOURCES):
21752         Add dup-safer.c, fopen-safer.c.
21753         (noinst_HEADERS): Add stdio-safer.h, unistd-safer.h.
21754
21755         * lib/dup-safer.c, lib/fopen-safer.c, lib/stdio-safer.h:
21756         * lib/unistd-safer.h: New files.
21757
21758 2001-02-25  Paul Eggert  <eggert@twinsun.com>
21759
21760         The mkstemp replacement is taken from glibc 2.2.2, with some
21761         portability fixes for use outside glibc, as follows:
21762
21763         * lib/tempname.c (struct_stat64): New macro.
21764         (direxists, __gen_tempname): Use it.
21765         This avoids a portability problem with Solaris 8.
21766
21767         * lib/tempname.c (<config.h>): Include if HAVE_CONFIG_H.
21768         (<stddef.h>, <stdint.h>, <string.h>):
21769         Include only if STDC_HEADERS || _LIBC.
21770         (<fcntl.h>): Include only if HAVE_FCNTL_H || _LIBC.
21771         (<unistd.h>): Include only if HAVE_UNISTD_H || _LIBC.
21772         (<sys/time.h>): Include only if HAVE_SYS_TIME_H || _LIBC.
21773         (__set_errno): Define this macro if <errno.h> doesn't.
21774         (P_tmpdir, TMP_MAX, __GT_FILE, __GT_BIGFILE, __GT_DIR, __GT_NOCREATE):
21775         Define these macros if <stdio.h> doesn't.
21776         (S_ISDIR, S_IRUSR, S_IWUSR, S_IXUSR):
21777         Define these macros if <sys/stat.h>
21778         doesn't.  Ignore <sys/stat.h> S_ISDIR if STAT_MACROS_BROKEN.
21779         (stat64, __getpid, __gettimeofday, __mkdir, __open, __open64, lxstat64,
21780         __xstat64): Define if not _LIBC.
21781         (__secure_getenv): Define if ! (HAVE___SECURE_GETENV || _LIBC).
21782         (__gen_tempname): Invoke gettimeofday only if
21783         HAVE_GETTIMEOFDAY || _LIBC;
21784         otherwise, fall back on plain "time".
21785         Use macros like S_IRUSR | S_IWUSR rather than octal values like 0600.
21786
21787         * lib/mkstemp.c (__GT_FILE): Define to zero if not defined.
21788
21789         * lib/mkstemp.c, lib/tempname.c: New files, taken from glibc 2.2.2.
21790
21791 2001-02-18  Paul Eggert  <eggert@twinsun.com>
21792
21793         * m4/jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for sys/resource.h.
21794
21795 2001-02-17  Paul Eggert  <eggert@twinsun.com>
21796
21797         * m4/mbrtowc.m4: New file, defining jm_FUNC_MBRTOWC.
21798         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH):
21799         Use jm_FUNC_MBRTOWC, not AC_CHECK_FUNCS(mbrtowc).
21800         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Likewise.
21801
21802 2001-02-17  Paul Eggert  <eggert@twinsun.com>
21803
21804         * lib/mbswidth.c, quotearg.c (mbrtowc, mbsinit):
21805         Remove workaround macros for hosts that have mbrtowc but not
21806         mbstate_t, as we now insist on proper declarations for both
21807         before using mbrtowc.
21808
21809 2001-02-17  Jim Meyering  <meyering@lucent.com>
21810
21811         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Don't check for
21812         getmntent via AC_CHECK_FUNCS, since that would get a `no' and disrupt
21813         further attempts by AC_FUNC_GETMNTENT to check with e.g., -lgen on
21814         UnixWare 7.1.1.
21815
21816         * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): Adapt to use AC_CACHE_CHECK etc.,
21817         rather than AC_CACHE_VAL.
21818
21819 2001-02-17  Jim Meyering  <meyering@lucent.com>
21820
21821         * lib/strtoul.c: Sync from GNU libc.  Use double quotes, not <...>
21822         around included file name.
21823
21824         * lib/strnlen.c (__strnlen): Merge in a change from GNU libc.
21825
21826         * lib/strftime.c: Update from GNU libc (the only changes were to
21827         comments).
21828
21829 2001-02-17  Jim Meyering  <meyering@lucent.com>
21830
21831         * lib/regex.c: Update from libc.
21832
21833 2001-02-17  Bruno Haible  <haible@clisp.cons.org>
21834
21835         * lib/mbswidth.h (mbswidth): Also define as macro, to avoid prototype
21836         clash.
21837
21838 2001-02-16  Paul Eggert  <eggert@twinsun.com>
21839
21840         * lib/alloca.c (malloc): Undef before defining, since stdlib.h
21841         may have defined it.  Needed for Encore Umax-3.0.9.16b systems.
21842         Reported by Mark Hounschell via Paul Eggert.
21843
21844 2001-02-07  Jim Meyering  <meyering@lucent.com>
21845
21846         * m4/regex.m4 (jm_INCLUDED_REGEX): Add a test for the latest bug.
21847
21848 2001-02-05  Jim Meyering  <meyering@lucent.com>
21849
21850         * m4/jm-macros.m4: Require autoconf-2.14d (not yet released), because
21851         it includes the patch required for `large file' support with at least
21852         HP-UX's 10.20 /bin/cc.
21853
21854 2001-02-03  Jim Meyering  <meyering@lucent.com>
21855
21856         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Restore prior use of
21857         AS_IF, now that it works once again (mysteriously).
21858         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise.
21859
21860 2001-01-30  Jim Meyering  <meyering@lucent.com>
21861
21862         Don't use filenames that are 8.3-equivalent to "conftest" on DOS.
21863         * m4/chown.m4: Rename conftestchown to conftest.chown.
21864         * m4/rename.m4: s/conftestdir/conftest.d1/ and
21865         s/conftestdir2/conftest.d2/.
21866         * m4/utimes.m4: s/conftestdata/conftest.data/
21867         Inspired by Pavel Roskin's change in autoconf.
21868
21869 2001-01-30  Bruno Haible  <haible@clisp.cons.org>
21870
21871         * lib/config.charset: Update for FreeBSD 4.2.
21872
21873 2001-01-27  Jim Meyering  <meyering@lucent.com>
21874
21875         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Open-code what was
21876         a use of AS_IF.
21877         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise.
21878
21879 2001-01-26  Jim Meyering  <meyering@lucent.com>
21880
21881         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for stddef.h, now that
21882         quotearg.c includes it.
21883
21884 2001-01-26  Jim Meyering  <meyering@lucent.com>
21885
21886         * lib/quotearg.c: Include stddef.h.
21887         * lib/quote.c: Include stddef.h.
21888         Reported by Axel Kittenberger.
21889
21890         * lib/xmalloc.c [HAVE_DONE_WORKING_MALLOC_CHECK]: Enclose error-evoking
21891         line in double quotes so that it evokes a better diagnostic.
21892         [HAVE_DONE_WORKING_REALLOC_CHECK]: Likewise.
21893         Reported by Axel Kittenberger.
21894
21895 2001-01-24  Stefan Monnier  <monnier@cs.yale.edu>
21896
21897         * regex.c (mutually_exclusive_p): Don't blindly handle `charset_not'
21898         as if it was a `charset'.
21899
21900 2001-01-21  Bruno Haible  <haible@clisp.cons.org>
21901
21902         * m4/iconv.m4 (jm_ICONV): Also check whether the iconv declaration
21903         has const.
21904
21905 2001-01-21  Bruno Haible  <haible@clisp.cons.org>
21906
21907         * lib/unicodeio.c (print_unicode_char): Cast the second iconv() arg,
21908         to avoid a warning.  Add back 'const' to inptr.
21909
21910 2001-01-20  Jim Meyering  <meyering@lucent.com>
21911
21912         Be sure that headers are checked before used in code compiled
21913         for the type checks.
21914         * m4/jm-macros.m4 (jm_MACROS): Remove all header checks.
21915         In place of that, invoke jm_CHECK_ALL_TYPES.
21916         (jm_CHECK_ALL_HEADERS): New functions with the above checks.
21917         (jm_CHECK_ALL_TYPES): Require jm_CHECK_ALL_HEADERS.
21918         Alan Iwi reported a build failure on an f300-fujitsu-uxpv4.1_ES;
21919         The check for ssize_t was mistakenly run before the test for unistd.h.
21920
21921         The configure-time check for stdbool.h was missing.
21922         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_HASH.
21923         (jm_PREREQ_HASH): New function.
21924
21925 2001-01-17  Jim Meyering  <meyering@lucent.com>
21926
21927         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use AS_IF, not AS_IFELSE,
21928         for autoconf-2.49c.
21929         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Likewise.
21930
21931 2001-01-16  Jim Meyering  <meyering@lucent.com>
21932
21933         * lib/basename.c: Include <stdio.h>, needed by assert on SunOS 4.
21934         From Bruno Haible.
21935
21936 2001-01-14  Jim Meyering  <meyering@lucent.com>
21937
21938         * m4/rename.m4: Use temporary directories named conftestdir{,2}, not
21939         foo and bar.  Create conftestdir/ in the script, not in the C code.
21940         Remove directories in the script, not in the C code.
21941         Remove conftestdir{,2} before trying to create the directory.
21942         Make the entire configure script fail if the mkdir fails.
21943
21944 2001-01-14  Jim Meyering  <meyering@lucent.com>
21945
21946         * lib/rename.c: New file.  From Volker Borchert.
21947         Include stdlib.h, string.h or strings.h, and xalloc.h.
21948         Use strip_trailing_slashes rather than open-coding it.
21949
21950 2001-01-03  Paul Eggert  <eggert@twinsun.com>
21951
21952         * lib/strftime.c: Sync with glibc time/strftime.c 1.81.
21953
21954 2001-01-03  Jim Meyering  <meyering@lucent.com>
21955
21956         * lib/unicodeio.c (print_unicode_char): Remove `const' from declaration
21957         of local `inptr' to avoid warning with some system declarations of
21958         iconv.
21959
21960 2001-01-02  Volker Borchert  <bt@teknon.de>
21961
21962         * m4/rename.m4: New file.
21963         * m4/jm-macros.m4 (jm_MACROS): Require vb_FUNC_RENAME.
21964
21965 2001-01-01  Jim Meyering  <meyering@lucent.com>
21966
21967         * m4/prereq.m4 (jm_PREREQ_READUTMP): Include utmp.h (if available),
21968         even on systems with utmpx.h.  It's necessary for the declaration of
21969         utmp's ut_user member.  Reported by Andreas Jaeger.
21970
21971         * m4/check-decl.m4 (jm_CHECK_DECLS): Include grp.h and pwd.h if
21972         available. They are required for the declarations of getgrgid and
21973         getpwuid resp.
21974         (_jm_DECL_HEADERS): Check for grp.h and pwd.h.
21975         Reported by Andreas Jaeger.
21976
21977 2001-01-01  Alexandre Duret-Lutz  <duret_g@epita.fr>
21978
21979         * m4/libintl.m4 (AM_GNU_GETTEXT): Define MKINSTALLDIRS by
21980         expanding the value of $ac_aux_dir, as in AM_MISSING_HAS_RUN,
21981         so `make install' also works in VPATH builds.
21982
21983 2000-12-31  Alexandre Duret-Lutz  <duret_g@epita.fr>
21984
21985         * m4/libintl.m4 (AM_WITH_NLS): When using AC_CONFIG_AUX_DIR,
21986         prepend $(top_srcdir) to the value of MKINSTALLDIRS so that it
21987         can be used in subdirectories.
21988
21989 2000-12-29  Paul Eggert  <eggert@twinsun.com>
21990
21991         * lib/modechange.c: Do not assume that mode_t uses the
21992         traditional octal encoding.  E.g. "chmod 1 FOO" should set
21993         the other-execute bit of FOO even if S_IXOTH != 1.
21994
21995         (SUID, SGID, SVTX, RUSR, WUSR, XUSR, RGRP, WGRP, XGRP, ROTH,
21996         WOTH, XOTH, ALLM): New macros.
21997         (S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR,
21998          S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH):
21999         Use them.
22000         (S_ISGID): Fix typo; it was defaulting to the same value as S_ISUID.
22001         (S_IRWXU, S_IRWXG, S_IRWXO): Specify defaults in terms of the above.
22002         (mode_compile):
22003         No need to use uintmax_t; unsigned long is long enough.
22004         Don't bother to get suffix since we don't use it.
22005
22006 2000-12-26  Jim Meyering  <meyering@lucent.com>
22007
22008         * m4/dos.m4 (jm_AC_DOS): Rewrite (though it's still a stub) to work
22009         better with autoheader.
22010
22011 2000-12-24  Jim Meyering  <meyering@lucent.com>
22012
22013         * lib/hash.c (is_prime): Return explicit boolean values.
22014         (hash_get_first): Return NULL to appease Irix5.6's 89.
22015         Reported by Nelson Beebe.
22016
22017 2000-12-19  Bruno Haible  <haible@clisp.cons.org>
22018
22019         * lib/localcharset.c (locale_charset): Add support for Win32.
22020
22021 2000-12-18  Paul Eggert  <eggert@twinsun.com>
22022
22023         * lib/physmem.h, lib/physmem.c: New files.
22024
22025         * lib/Makefile.am (libfetish_a_SOURCES): Add physmem.c.
22026         (noinst_HEADERS): Add physmem.h.
22027
22028         * lib/xstrtol.c (__xstrtol): Add undocumented suffixes 'g' and
22029         't' for compatibility with Solaris 8 sort.
22030
22031 2000-12-18  Bruno Haible  <haible@clisp.cons.org>
22032
22033         * lib/config.charset: Add support for BeOS.
22034
22035 2000-12-17  Jim Meyering  <meyering@lucent.com>
22036
22037         * m4/dos.m4 (jm_AC_DOS): New file and macro.
22038         * m4/jm-macros.m4 (jm_MACROS): Require jm_AC_DOS.
22039
22040 2000-12-16  Jim Meyering  <meyering@lucent.com>
22041
22042         This bug had a serious impact on chown: `chown N:M FILE' (for integer
22043         N and M) would have treated it like `chown N:N FILE'.
22044
22045         * lib/userspec.c (parse_user_spec): Fix typo: s/u/g/.
22046
22047 2000-12-16  Jim Meyering  <meyering@lucent.com>
22048
22049         * lib/getusershell.c [!SHELLS_FILE && __DJGPP__]: Define
22050         SHELLS_FILE to a file name that's useful on djgpp systems.
22051         Include stdlib.h.
22052         (ADDITIONAL_DEFAULT_SHELLS): Define.
22053         (default_shells): Prepend ADDITIONAL_DEFAULT_SHELLS.
22054         Based mostly on a patch from Prashant TR.
22055
22056 2000-12-16  Bruno Haible  <haible@clisp.cons.org>
22057
22058         * lib/config.charset: Add ISO-8859-3, BIG5HKSCS, GB18030, JOHAB,
22059         VISCII, CP874, CP949, CP950, CP1250, CP1253, CP1254, CP1255, CP1256,
22060         CP1257 to the list of canonical encodings. Rename EUC-CN to GB2312.
22061
22062 2000-12-08  Andreas Schwab  <schwab@suse.de>
22063
22064         * lib/mbswidth.c (mbsnwidth): Don't loop endlessly when called with an
22065         invalid mulitbyte sequence and with the MBSW_ACCEPT_INVALID flag set.
22066
22067 2000-12-07  Jim Meyering  <meyering@lucent.com>
22068
22069         * lib/stripslash.c (ISSLASH): Define.
22070         (strip_trailing_slashes): Use ISSLASH rather than comparing against
22071         `/'.
22072         From Prashant TR.
22073
22074         * lib/dirname.c (FILESYSTEM_PREFIX_LEN): Define.
22075         (dir_name_r): Declare this function as static.
22076         [BACKSLASH_IS_PATH_SEPARATOR]: Fix a bug that'd
22077         manifest itself on a name containing a mix of slashes and
22078         backslashes.
22079         Make this function work with names starting with a DOS-style
22080         drive letter and colon prefix.
22081         (dir_name): Append `.' if necessary.
22082         Based mostly on patches from Prashant TR and Eli Zaretskii.
22083
22084         * lib/dirname.h (dir_name_r): Remove prototype.
22085
22086 2000-12-06  Paul Eggert  <eggert@twinsun.com>
22087
22088         * m4/off_t-format.m4: Remove this file.
22089         * m4/jm-macros.m4 (jm_MACROS): Remove jm_SYS_OFF_T_PRINTF_FORMAT.
22090
22091 2000-12-06  Jim Meyering  <meyering@lucent.com>
22092
22093         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): If we need the
22094         replacement strtoull, we may well need the replacement strtoul, too.
22095         Check for declarations of strtoul and strtoull.
22096         Check for strtol.  Mainly as a cue to cause automake to include
22097         strtol.c -- that file is included by each of strtoul.c and strtoull.c.
22098         Check for limits.h -- strtol.c needs it.
22099
22100 2000-12-05  Jim Meyering  <meyering@lucent.com>
22101
22102         * lib/dirname.c (dir_name_r): Add `const' in a few local declarations.
22103
22104 2000-12-04  Jim Meyering  <meyering@lucent.com>
22105
22106         * lib/path-concat.c: [!HAVE_DECL_MALLOC]: Declare malloc.
22107         Also include memory.h, stdlib.h, unistd.h if appropriate.
22108         Reported by Andreas Jaeger (conflicting declaration of malloc).
22109
22110 2000-12-02  Jim Meyering  <meyering@lucent.com>
22111
22112         * m4/off_t-format.m4 (OFF_T_PRINTF_FORMAT_STRING): New file/macro.
22113         * m4/jm-macros.m4 (jm_MACROS): require it.
22114
22115 2000-12-02  Jim Meyering  <meyering@lucent.com>
22116
22117         * lib/closeout.h: Make idempotent, to avoid some obscure warnings.
22118
22119 2000-12-01  Paul Eggert  <eggert@twinsun.com>
22120
22121         * lib/memrchr.c: Include <config.h> before any system include file.
22122
22123 2000-11-30  Jim Meyering  <meyering@lucent.com>
22124
22125         * m4/jm-macros.m4 (jm_MACROS): Check for stdint.h.
22126
22127 2000-11-30  Jim Meyering  <meyering@lucent.com>
22128
22129         * m4/getloadavg.m4: s/ifval/m4_ifval/ to accommodate new autoconf.
22130
22131 2000-11-29  Paul Eggert  <eggert@twinsun.com>
22132
22133         * lib/dirname.c (dir_name_r): Fix typo: int -> size_t.
22134
22135 2000-11-26  Jim Meyering  <meyering@lucent.com>
22136
22137         * lib/memcoll.c: Include sys/types.h.  From Werner Almesberger.
22138
22139 2000-11-22  Paul Eggert  <eggert@twinsun.com>
22140
22141         * lib/strftime.c (my_strftime): Do not invoke mbrlen with a
22142         size of (size_t) -1; it's not portable.
22143
22144 2000-11-17  Jim Meyering  <meyering@lucent.com>
22145
22146         * lib/strstr.c: Update from GNU libc.
22147
22148 2000-11-17  Akim Demaille  <akim@epita.fr>
22149
22150         * lib/obstack.h: Formatting changes.
22151         (obstack_grow, obstack_grow0): Don't cast WHERE at all: that would
22152         prevent type checking.
22153         (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
22154         cast the value to (void *): assigning a `foo *' to a `void *'
22155         variable is valid.
22156         (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
22157
22158 2000-11-16  Jim Meyering  <meyering@lucent.com>
22159
22160         * lib/strverscmp.c: Incorporate weak-alias-related changes from glibc.
22161
22162 2000-11-11  Jim Meyering  <meyering@lucent.com>
22163
22164         * lib/error.c: Add a couple #includes, merging from GNU libc version.
22165
22166 2000-11-10  Jim Meyering  <meyering@lucent.com>
22167
22168         * lib/obstack.h: Update from GNU libc.
22169         * lib/obstack.c: Likewise.
22170
22171 2000-11-08  Bruno Haible  <haible@clisp.cons.org>
22172
22173         * m4/jm-macros.m4 (jm_MACROS): Add test for wcrtomb.
22174
22175 2000-11-06  Paul Eggert  <eggert@twinsun.com>
22176
22177         * lib/getusershell.c (setusershell): Use rewind rather than
22178         fseek/fseeko, to avoid configuration hassles with fseeko.
22179         Don't bother opening SHELLS_FILE if shellstream is NULL;
22180         it's not necessary.
22181
22182 2000-11-05  Jim Meyering  <meyering@lucent.com>
22183
22184         * lib/makepath.h (make_dir): Declare.
22185         * lib/makepath.c (make_dir): Remove `static' attribute.
22186         Tweak a comment.
22187
22188 2000-11-04  Jim Meyering  <meyering@lucent.com>
22189
22190         * m4/regex.m4: Use the `m4_' prefix on `syscmd' and `m4_sysval'.
22191
22192 2000-11-04  Alexandre Duret-Lutz  <duret_g@epita.fr>
22193
22194         * lib/hash.c (hash_get_next): Fix a thinko:  when ENTRY is the
22195         last one in a bucket, advance to the next bucket.
22196
22197 2000-11-02  Vesselin Atanasov  <vesselin@bgnet.bg>
22198
22199         * lib/fnmatch.c: Do not comment out all the code if we are using
22200         the GNU C library, because in some cases we are replacing buggy
22201         code in the GNU C library itself.
22202
22203 2000-10-30  Stefan Monnier  <monnier@cs.yale.edu>
22204
22205         * regex.c (re_iswctype, re_wctype_to_bit): Fix braino.
22206         (regex_compile): Catch bogus \(\1\).
22207
22208 2000-10-30  Paul Eggert  <eggert@twinsun.com>
22209
22210         * lib/fnmatch.c (FOLD): Do not assume that characters are unsigned.
22211         (fnmatch): Fix some FNM_FILE_NAME and FNM_LEADING_DIR bugs,
22212         e.g. fnmatch("d*/*1", "d/s/1", FNM_FILE_NAME) incorrectly yielded zero.
22213
22214 2000-10-30  Paul Eggert  <eggert@twinsun.com>
22215
22216         * lib/error.h, getline.h, modechange.h:
22217         Remove "2000" from Copyright line, as the file hasn't been
22218         changed this year other than in the copyright notice.
22219
22220         * lib/xalloc.h: Add "2000" to Copyright line, as this file
22221         was changed this year.
22222
22223 2000-10-29  Jim Meyering  <meyering@lucent.com>
22224
22225         * m4/fsusage.m4: s/AC_SHELL_IFELSE/AS_IFELSE/ to match autoconf
22226         renaming.
22227         * m4/ls-mntd-fs.m4: Likewise
22228
22229 2000-10-29  Jim Meyering  <meyering@lucent.com>
22230
22231         * lib/xstat.in: Fix grammar in comment.
22232
22233 2000-10-29  Greg Louis  <glouis@dynamicro.on.ca>
22234
22235         * lib/regex.h (__restrict_arr): Move definition out of #ifndef block.
22236         Required because egcs-2.91.66 (aka 1.1.2) defines __restrict, but
22237         doesn't define __restrict_arr.
22238
22239 2000-10-28  Jim Meyering  <meyering@lucent.com>
22240
22241         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_MEMCHR.
22242         (jm_PREREQ_MEMCHR): New function.
22243
22244 2000-10-28  Jim Meyering  <meyering@lucent.com>
22245
22246         * lib/memchr.c: Update from libc.
22247         Adjust for portability:
22248         [HAVE_STDLIB_H]: Include stdlib.h.
22249         [HAVE_BP_SYM_H || _LIBC]: Guard inclusion of bp-sym.h.
22250         Undef __memchr, too.
22251         [!weak_alias]: Define __memchr to memchr.
22252
22253         * lib/regex.c: Update from libc.
22254         * lib/regex.h: Likewise.
22255         * lib/getopt1.c: Likewise.
22256         * lib/memcmp.c: Likewise.
22257
22258         * lib/getusershell.c (setusershell) [HAVE_FSEEKO]: Use fseeko.
22259         Avoid using fseek, when possible -- it's broken by design.
22260         Patch by Ulrich Drepper.
22261
22262 2000-10-27  Stefan Monnier  <monnier@cs.yale.edu>
22263
22264         * regex.c (POP_FAILURE_REG_OR_COUNT, re_match_2_internal)
22265         (re_match_2_internal, re_match_2_internal, re_match_2_internal):
22266         Giving in to popular pressure to shut up the compiler with casts.
22267
22268 2000-10-26  Jim Meyering  <meyering@lucent.com>
22269
22270         * lib/strftime.c: Update from libc.
22271
22272 2000-10-25  Stefan Monnier  <monnier@cs.yale.edu>
22273
22274         * regex.c: More `unsigned char' -> `re_char' changes.
22275         Also change several `int' into `re_wchar_t'.
22276         (PATTERN_STACK_EMPTY, PUSH_PATTERN_OP, POP_PATTERN_OP): Remove.
22277         (PUSH_FAILURE_POINTER): Don't cast any more.
22278         (POP_FAILURE_REG_OR_COUNT): Remove the cast that strips `const'.
22279         We want GCC to complain, since this piece of code makes
22280         re_match non-reentrant, which *should* be fixed.
22281         (GET_BUFFER_SPACE): Use size_t rather than unsigned long.
22282         (EXTEND_BUFFER): Use RETALLOC.
22283         (SET_LIST_BIT): Don't cast.
22284         (re_wchar_t): New type.
22285         (re_iswctype, re_wctype_to_bit): Make it crystal clear to GCC
22286         that those two functions will always properly return.
22287         (IMMEDIATE_QUIT_CHECK): Cast to void.
22288         (analyse_first): Use recursion rather than an explicit stack.
22289         (re_compile_fastmap): Can't fail anymore.
22290         (re_search_2): Don't check re_compile_fastmap for failure.
22291         (PUSH_NUMBER): Renamed from PUSH_FAILURE_COUNT.
22292         Now also sets the new value (passed in a new argument).
22293         (re_match_2_internal): Use it.
22294         Also, use a new var `reg' of type size_t when looping through regs
22295         rather than reuse the inappropriate `mcnt'.
22296
22297 2000-10-25  Jim Meyering  <meyering@lucent.com>
22298
22299         * lib/obstack.c: Update from libc.
22300
22301 2000-10-24  Kenichi Handa  <handa@etl.go.jp>
22302
22303         * regex.c (regex_compile): Change the way of handling a range from
22304         a char less than 256 to a char not less than 256.
22305
22306 2000-10-24  Andrew Innes  <andrewi@gnu.org>
22307
22308         * regex.c (IMMEDIATE_QUIT_CHECK): New macro, which does QUIT on
22309         NT-Emacs only.
22310         (re_match_2_internal): Use IMMEDIATE_QUIT_CHECK instead of QUIT,
22311         so that re_search functions only quit when callers expect them to.
22312
22313 2000-10-23  Jim Meyering  <meyering@lucent.com>
22314
22315         * lib/hard-locale.c (hard_locale): Revert last change -- it was simply
22316         wrong.  That set_locale call must not have any side effects.
22317         From Paul Eggert.
22318
22319 2000-10-22  Jim Meyering  <meyering@lucent.com>
22320
22321         * lib/md5.c (md5_process_block) [OP]: Use `rol', not CYCLIC.
22322         [CYCLIC]: Remove now-unused definition.
22323
22324         * lib/save-cwd.c (O_DIRECTORY): Define, if needed.
22325         (save_cwd) [HAVE_FCHDIR]: Use O_DIRECTORY when opening ".".
22326         Suggestion from Ulrich Drepper.
22327
22328 2000-10-21  Jim Meyering  <meyering@lucent.com>
22329
22330         * m4/check-decl.m4 (jm_CHECK_DECLS): Also check for memrchr.
22331         * m4/prereq.m4 (jm_PREREQ_DIRNAME): New macro.
22332         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memrchr.
22333
22334 2000-10-21  Jim Meyering  <meyering@lucent.com>
22335
22336         * lib/dirname.c (memrchr): Declare if necessary.
22337         (dir_name): Remove the restriction that there be no
22338         trailing slashes.  Now, this code skips past them, effectively
22339         ignoring them.
22340         [TEST_DIRNAME] (main): New unit tests.
22341
22342         * lib/memrchr.c: New file from GNU libc.
22343         Undef __memrchr, too.
22344         [!weak_alias]: Define __memrchr to memrchr.
22345         Guard weak_alias use with `#ifdef weak_alias'.
22346
22347 2000-10-21  Jim Meyering  <meyering@lucent.com>
22348
22349         * lib/dirname.c (dir_name_r): New function, factored out of dir_name.
22350         (dir_name): Use dir_name_r.
22351         * lib/dirname.h (dir_name_r): Declare it.
22352
22353 2000-10-17  Jim Meyering  <meyering@lucent.com>
22354
22355         * lib/quote.h (PARAMS): Define and use.
22356         Reported by Akim Demaille.
22357
22358         * lib/getopt.c: Update from libc.
22359
22360 2000-10-16  Jim Meyering  <meyering@lucent.com>
22361
22362         * lib/hard-locale.c (hard_locale): Use "", not 0 as 2nd arg to
22363         setlocale.
22364         From Jan Fedak.
22365
22366 2000-10-15  Stefan Monnier  <monnier@cs.yale.edu>
22367
22368         * regex.c (WIDE_CHAR_SUPPORT): Define if _LIBC as well.
22369
22370 2000-09-25  Jim Meyering  <meyering@lucent.com>
22371
22372         * lib/md5.h (rol): Define (from GnuPG).
22373
22374         * lib/sha.c: Give credit (GnuPG) where due.
22375         (M): Use rol rather than open-coding it.
22376         Add a FIXME comment.
22377
22378 2000-09-21  Jim Meyering  <meyering@lucent.com>
22379
22380         * lib/userspec.c (parse_user_spec): Remove debugging printf I'd added.
22381         Reported by Michael Stone.
22382
22383 2000-09-20  Jim Meyering  <meyering@lucent.com>
22384
22385         * lib/Makefile.am (libfetish_a_SOURCES): Add sha.c.
22386         (noinst_HEADERS): Add sha.h.
22387         Based on code from Scott G. Miller and from GnuPG.
22388
22389 2000-09-18  Jim Meyering  <meyering@lucent.com>
22390
22391         * m4/getloadavg.m4 (AC_FUNC_GETLOADAVG): Restore the initial value of
22392         LIBS. Otherwise, everyone ends up linking with -lelf for some
22393         configurations.
22394         Reported by Mike Stone.
22395
22396 2000-09-15  Jim Meyering  <meyering@lucent.com>
22397
22398         * lib/regex.c: Update from libc.
22399
22400 2000-09-10  Jim Meyering  <meyering@lucent.com>
22401
22402         * lib/getopt.c (_getopt_internal): Update from glibc.
22403
22404 2000-09-09  Jim Meyering  <meyering@lucent.com>
22405
22406         * lib/quotearg.c: Rename ISASCII to IN_CTYPE_DOMAIN, so people don't
22407         think it should be used as a general replacement for isascii.
22408         * lib/fnmatch.c: Likewise.
22409         * lib/mbswidth.c: Likewise
22410         * lib/regex.c: Likewise.
22411
22412         Don't use atoi.
22413         * lib/userspec.c: Include sys/param.h and limits.h.
22414         Include xstrtol.h.
22415         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
22416         (UID_T_MAX, GID_T_MAX, MAXUID, MAXGID): Define.
22417         (parse_user_spec): Use xstrtoul, not atoi when converting numeric
22418         UID, GID.  Check range.
22419
22420 2000-09-06  Jim Meyering  <meyering@lucent.com>
22421
22422         * lib/getopt.c (_getopt_internal): Update from glibc.
22423
22424 2000-08-30  Jim Meyering  <meyering@lucent.com>
22425
22426         * lib/strftime.c: Merge in changes from GNU libc.
22427
22428 2000-08-26  Jim Meyering  <meyering@lucent.com>
22429
22430         * m4/jm-macros.m4: Use jm_FUNC_FPENDING.
22431         * m4/fpending.m4: New file.
22432
22433 2000-08-26  Jim Meyering  <meyering@lucent.com>
22434
22435         * lib/closeout.c: Include "__fpending.h".
22436         (close_stdout_status): Return right away if there's nothing to flush.
22437
22438         * lib/Makefile.am (noinst_HEADERS): Add __fpending.h.
22439         * lib/__fpending.c: New file.
22440         * lib/__fpending.h: New file.
22441
22442 2000-08-20  Jim Meyering  <meyering@lucent.com>
22443
22444         * m4/check-decl.m4: Include utmp.h `#if HAVE_UTMP_H', rather than
22445         `#if !HAVE_UTMPX_H'.  The latter would lose on systems with neither
22446         utmp.h nor utmpx.h.  Reported by Eli Zaretskii.
22447
22448 2000-08-11  J. David Anglin  <dave@hiauly1.hia.nrc.ca>
22449
22450         Improve fileutils installation on systems where running
22451         programs (like install) can't be unlinked.
22452         * m4/unlink-busy.m4 (jm_FUNC_UNLINK_BUSY_TEXT): New file/macro.
22453         * m4/jm-macros.m4: Use jm_FUNC_UNLINK_BUSY_TEXT.
22454
22455 2000-08-07  Paul Eggert  <eggert@twinsun.com>
22456
22457         Standardize on "memory exhausted" instead of "Memory exhausted"
22458         or "virtual memory exhausted".
22459         * lib/obstack.c (print_and_abort): Use "memory exhausted", not
22460         "virtual memory exhausted".
22461         * lib/same.c (same_name): Invoke xalloc_die instead of printing
22462         our own message.
22463         * lib/userspec.c (parse_user_spec): Likewise.
22464         * lib/bumpalloc.h: comment fix
22465         * lib/same.c, userspec.c: Include xalloc.h.
22466
22467         * lib/xalloc.h (xalloc_msg_memory_exhausted): Now char const[],
22468         not char *const and pointing to a constant array.
22469         * lib/xmalloc.c (xalloc_msg_memory_exhausted): Likewise.
22470         (xrealloc): Comment fix.
22471
22472         * lib/userspec.c (parse_user_spec):
22473         Don't translate a message until just before returning,
22474         to avoid unnecessary translation.
22475
22476 2000-08-07  Jim Meyering  <meyering@lucent.com>
22477
22478         * lib/addext.c, argmatch.c, argmatch.h, backupfile.h, bumpalloc.h,
22479         chown.c, diacrit.h, dirname.h, dup2.c, exclude.h, fileblocks.c,
22480         fnmatch.c, fnmatch.h, fsusage.c, fsusage.h, getdate.h,
22481         getgroups.c, gethostname.c, getopt.h, group-member.c,
22482         hard-locale.c, hash.h, isdir.c, lchown.c, linebuffer.c,
22483         linebuffer.h, long-options.h, malloc.c, md5.c, md5.h, memchr.c,
22484         memcmp.c, memcoll.c, memset.c, mktime.c, modechange.h, obstack.h,
22485         pathmax.h, realloc.c, rmdir.c, safe-read.c, save-cwd.c, stime.c,
22486         stpcpy.c, strcasecmp.c, strcspn.c, strdup.c, stripslash.c,
22487         strstr.c, strtod.c, strtol.c, strtoul.c, strtoull.c, strtoumax.c,
22488         utime.c, version-etc.h, xalloc.h, xstrdup.c, xstrtoumax.c,
22489         yesno.c: Back out Copyright date changes for each file with no change
22490         this year.  This eases coordination with other programs using the same
22491         source code modules.  From Paul Eggert.
22492
22493 2000-08-06  Paul Eggert  <eggert@twinsun.com>
22494
22495         * m4/mbstate_t.m4 (AC_MBSTATE_T): Define mbstate_t to be int,
22496         not char, for compatibility with glibc 2.1.3 strftime.c.
22497
22498 2000-08-03  Greg McGary  <greg@mcgary.org>
22499
22500         * lib/regex.c (SET_HIGH_BOUND, MOVE_BUFFER_POINTER,
22501         ELSE_EXTEND_BUFFER_HIGH_BOUND): New macros.
22502         (EXTEND_BUFFER): Use them.
22503
22504 2000-08-01  Jim Meyering  <meyering@lucent.com>
22505
22506         * lib/dirname.c (ISSLASH): Define.
22507         (BACKSLASH_IS_PATH_SEPARATOR): Define.
22508         (dir_name) [BACKSLASH_IS_PATH_SEPARATOR]: Handle the case in which
22509         both `\' and `/' may be use as path separators.
22510         Based on a patch from Prashant TR.
22511
22512 2000-07-31  Paul Eggert  <eggert@twinsun.com>
22513
22514         * lib/quotearg.c (quotearg_n_options): Don't make the initial
22515         slot vector a constant, since it might get modified.
22516
22517 2000-07-31  Jim Meyering  <meyering@lucent.com>
22518
22519         * lib/xmalloc.c: Use `virtual memory exhausted', not
22520         `Memory exhausted'.
22521         * lib/obstack.c (print_and_abort): Likewise.
22522
22523 2000-07-30  Paul Eggert  <eggert@twinsun.com>
22524
22525         * lib/quotearg.c (quotearg_n_options): Preallocate a slot 0
22526         buffer, so that the caller can always quote one small
22527         component of a "memory exhausted" message in slot 0.
22528         From a suggestion by Jim Meyering.
22529
22530 2000-07-30  Jim Meyering  <meyering@lucent.com>
22531
22532         * lib/makepath.c (make_path): Quote the other instance, too.
22533
22534         * lib/quotearg.c (N_STATIC_SLOTVECS): Define.
22535         (STATIC_BUF_SIZE): Define.
22536         (quotearg_n_options): Use only statically allocated storage when
22537         N < N_STATIC_SLOTVECS and the length of the quoted result is smaller
22538         than STATIC_BUF_SIZE.
22539
22540 2000-07-29  Jim Meyering  <meyering@lucent.com>
22541
22542         * lib/diacrit.c (diacrit_diac): Use __MSDOS__ in favor of MSDOS.
22543         * lib/dirname.c (dir_name): Likewise.
22544
22545         * lib/basename.c (base_name): Use ISSLASH rather than comparing against
22546         `/'.
22547
22548         * lib/dirname.c (dir_name) [MSDOS]: Declare `lim' to be const.
22549         (dir_name): Assert that there are no trailing slashes.
22550
22551 2000-07-29  Bruno Haible  <haible@clisp.cons.org>
22552
22553         * lib/mbswidth.h (mbswidth): Add a flags argument.
22554         (mbswidth): New declaration.
22555         (MBSW_ACCEPT_INVALID, MBSW_ACCEPT_UNPRINTABLE): New macros.
22556         * lib/mbswidth.c (mbswidth): Add a flags argument.
22557         (mbsnwidth): New function.
22558
22559 2000-07-24  Jim Meyering  <meyering@lucent.com>
22560
22561         * lib/mbswidth.c: Remove useless #else.  From Bruno Haible.
22562
22563 2000-07-23  Paul Eggert  <eggert@twinsun.com>
22564
22565         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Check for wcwidth declaration.
22566
22567 2000-07-23  Paul Eggert  <eggert@twinsun.com>
22568
22569         * lib/quotearg.c: Streamline by invoking multibyte code only if needed.
22570         <wchar.h>: Include only if HAVE_MBRTOWC && 1 < MB_LEN_MAX.
22571         (MB_CUR_MAX): Redefine to 1 if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX).
22572         (quotearg_buffer_restyled): If a unibyte locale, don't bother to
22573         invoke multibyte primitives.
22574
22575 2000-07-23  Paul Eggert  <eggert@twinsun.com>
22576
22577         * lib/quotearg.c:
22578         Include <wchar.h> even if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX),
22579         so that mbstate_t is always defined.
22580
22581         Do not inspect MB_LEN_MAX, since it's incorrectly defined to
22582         be 1 in at least one GCC installation, and this configuration
22583         error is likely to be common.  Ignoring MB_LEN_MAX hurts
22584         performance on hosts that have mbrtowc but have only unibyte
22585         locales, but I assume these hosts are rare.
22586
22587 2000-07-23  Paul Eggert  <eggert@twinsun.com>
22588
22589         * lib/mbswidth.c (_XOPEN_SOURCE):
22590         Don't define; this causes problems on Solaris 7.
22591         (wcwidth) [!HAVE_DECL_WCWIDTH]: Declare.
22592
22593 2000-07-23  Jim Meyering  <meyering@lucent.com>
22594
22595         * m4/check-decl.m4 (jm_CHECK_DECLS): Check for declarations of these,
22596         too: getgrgid, getpwuid, getuid.
22597
22598 2000-07-23  Jim Meyering  <meyering@lucent.com>
22599
22600         * lib/basename.c (base_name): Add an assertion.
22601
22602 2000-07-23  Bruno Haible  <haible@clisp.cons.org>
22603
22604         * lib/quotearg.c: When the system forces us to redefine mbstate_t,
22605         shadow its mbsinit function.
22606
22607 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
22608
22609         * lib/mbswidth.h: New file.
22610         * lib/mbswidth.c: New file.
22611         * lib/Makefile.am (libfetish_a_SOURCES): Add mbswidth.c.
22612         (noinst_HEADERS): Add mbswidth.h.
22613
22614 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
22615
22616         * lib/config.charset: Add support for FreeBSD. Improve support for
22617         HP-UX and IRIX 6.
22618
22619 2000-07-16  Bruno Haible  <haible@clisp.cons.org>
22620
22621         * m4/mbswidth.m4: New file.
22622         * m4/prereq.m4 (jm_PREREQ): Call jm_PREREQ_MBSWIDTH.
22623
22624 2000-07-15  Jim Meyering  <meyering@lucent.com>
22625
22626         * lib/makepath.c: Include quote.h.
22627         (make_path): Convert "`%s'" in format strings to "%s", and wrap each
22628         corresponding argument in a `quote (...)' call.
22629         Give better diagnostics.
22630
22631         * lib/Makefile.am (libfetish_a_SOURCES): Add quote.c.
22632         (noinst_HEADERS): Add quote.h.
22633
22634         * lib/quote.c (quote, quote_n): New file.  Two functions taken verbatim
22635         from tar's src/misc.c.
22636         * lib/quote.h: New file.  Prototypes for same.
22637
22638 2000-07-14  Paul Eggert  <eggert@twinsun.com>
22639
22640         From a suggestion by Bruno Haible.
22641         * lib/quotearg.c (mbrtowc): Do not use HAVE_WCHAR_H in the definition.
22642         Use defined mbstate_t, not HAVE_MBSTATE_T_OBJECT,
22643         to decide whether to define the BeOS workaround macro;
22644         this adjusts to the change to AC_MBSTATE_T.
22645
22646 2000-07-14  Jim Meyering  <meyering@lucent.com>
22647
22648         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Require
22649         jm_AC_TYPE_UINTMAX_T.
22650
22651 2000-07-13  Paul Eggert  <eggert@twinsun.com>
22652
22653         * lib/quotearg.h (enum quoting style): New enum clocale_quoting_style.
22654
22655         * lib/quotearg.c (quoting_style_args, quoting_style_vals,
22656         quotearg_buffer_restyled): Add support for
22657         clocale_quoting_style.  Undo previous change to
22658         locale_quoting_style behavior, and undo the "{LEFT QUOTATION MARK}"
22659         and "{RIGHT QUOTATION MARK}" msgids.
22660
22661 2000-07-10  Paul Eggert  <eggert@twinsun.com>
22662
22663         From a suggestion by Bruno Haible.
22664         * m4/mbstate_t.m4 (AC_MBSTATE_T):
22665         Renamed from AC_MBSTATE_T_OBJECT.  All uses changed.
22666         Change from a two-part test, which defines both HAVE_MBSTATE_T_OBJECT
22667         and mbstate_t, to a single-part test that simply defines mbstate_t.
22668         * m4/prereq.m4 (jm_PREREQ_QUOTEARG):
22669         s/AC_MBSTATE_T_OBJECT/AC_MBSTATE_T/.
22670
22671 2000-07-10  Jim Meyering  <meyering@lucent.com>
22672
22673         * m4/strerror_r.m4: Mirror the correction made in autoconf.
22674
22675         * m4/gnu-source.m4: Output to confdefs.h directly.
22676         Suggestion from Akim Demaille.
22677
22678 2000-07-09  Paul Eggert  <eggert@twinsun.com>
22679
22680         The old behavior of quoting `like this' doesn't look good with
22681         newer, ISO-style fonts.  See:
22682         http://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html
22683
22684         Instead, quote "like this" by default.  Let the translator
22685         tailor the locale-specific quoting behavior by providing
22686         translations for {LEFT QUOTATION MARK} and {RIGHT QUOTATION MARK}.
22687
22688         * lib/quotearg.c (N_): New macro.
22689         (gettext_default): New function.
22690         (quotearg_buffer_restyled): Use
22691         gettext_default ("{LEFT QUOTATION MARK}", "\"") for left quote, and
22692         gettext_default ("{RIGHT QUOTATION MARK}", "\"") for right quote.
22693
22694 2000-07-09  Jim Meyering  <meyering@lucent.com>
22695
22696         * m4/jm-macros.m4 (jm_MACROS): Add a test to see if -lm is required
22697         to link seq.  If so, set SEQ_LIBM to -lm.  From Bruno Haible.
22698
22699         * m4/gnu-source.m4 (AC__GNU_SOURCE): New file/macro.
22700         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require it.
22701
22702 2000-07-09  Jim Meyering  <meyering@lucent.com>
22703
22704         * lib/Most files: Update copyright dates to include 2000.
22705
22706 2000-07-08  Jim Meyering  <meyering@lucent.com>
22707
22708         * lib/xgethostname.c (ENAMETOOLONG): Define to an unlikely value
22709         if not defined.
22710         (xgethostname): Remove now-unnecessary #ifdef.
22711         Move declaration of `err' into loop where it's used.
22712
22713 2000-07-05  Paul Eggert  <eggert@twinsun.com>
22714         and Bruno Haible  <haible@clisp.cons.org>
22715
22716         * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Test for mbstate_t
22717         only if the test for an object-type mbstate_t fails.  This
22718         prevents us from mistakenly reporting that mbstate_t is a
22719         system object type after we "#define mbstate_t int" to work
22720         around its lack.
22721
22722 2000-07-05  Paul Eggert  <eggert@twinsun.com>
22723         and Bruno Haible  <haible@clisp.cons.org>
22724
22725         * lib/quotearg.c (mbrtowc): Declare returned type, since BeOS doesn't.
22726
22727 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
22728
22729         * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Pass a reasonably large buffer
22730         to strerror_r.
22731         Include <ctype.h> for use of isalpha.
22732
22733 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
22734
22735         * lib/xgethostname.c (xgethostname): Protect against the SunOS 5.5 bug
22736         by allocating a larger buffer. Test the gethostname return value for
22737         being >= 0, not == 0, for BeOS.  Don't exhaust memory if gethostname
22738         returns an error and ENAMETOOLONG isn't defined.
22739
22740 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
22741
22742         * lib/quotearg.c (struct quoting_options): Simplify quote_these_too
22743         dimension.
22744
22745 2000-07-04  Jim Meyering  <meyering@lucent.com>
22746
22747         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use plain old `echo' instead
22748         of the deprecated AC_CHECKING.
22749
22750 2000-07-04  Jim Meyering  <meyering@lucent.com>
22751
22752         * lib/strndup.c: [!HAVE_DECL_STRNLEN]: Declare strnlen.
22753         Reported by Bruno Haible.
22754
22755 2000-07-04  Jim Meyering  <meyering@lucent.com>
22756
22757         * lib/quotearg.c: Make inclusion of <wchar.h> independent of whether
22758         HAVE_MBRTOWC is set.  Required at least for irix-5.6, which
22759         lacks mbrtowc.
22760
22761 2000-07-03  Paul Eggert  <eggert@twinsun.com>
22762
22763         * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Port to autoconf 2.13.
22764         Add AC_CHECK_HEADERS(stdlib.h), since we use HAVE_STDLIB_H.
22765
22766 2000-07-03  Paul Eggert  <eggert@twinsun.com>
22767         and Bruno Haible  <haible@clisp.cons.org>
22768
22769         * lib/quotearg.c (mbrtowc):
22770         Assign to *pwc, and return 1 only if result is nonzero.
22771         (iswprint): Use ISPRINT when substituting our own mbrtowc.
22772
22773 2000-07-03  Jim Meyering  <meyering@lucent.com>
22774
22775         * m4/check-decl.m4 (AC_CHECK_DECLS): Add strnlen.
22776
22777 2000-07-03  Jim Meyering  <meyering@lucent.com>
22778
22779         * lib/readutmp.h: [HAVE_UTMPX_H]: Include <utmp.h> if HAVE_UTMP_H.
22780         This is necessary to get a definition of e.g., UTMP_FILE on
22781         HP-UX 10.20.
22782         From Bob Proulx.
22783
22784 2000-07-02  Jim Meyering  <meyering@lucent.com>
22785
22786         * m4/mbstate_t.m4: Also define mbstate_t, if necessary.
22787
22788         * m4/chown.m4: Replace each use of AC_SUBST(LIBOBJS)/LIBOBJS=... with
22789         AC_LIBOBJ(function_name).
22790         * m4/chown.m4: Likewise.
22791         * m4/fnmatch.m4: Likewise.
22792         * m4/ftruncate.m4: Likewise.
22793         * m4/getgroups.m4: Likewise.
22794         * m4/getline.m4: Likewise.
22795         * m4/group-member.m4: Likewise.
22796         * m4/jm-macros.m4: Likewise.
22797         * m4/lstat.m4: Likewise.
22798         * m4/malloc.m4: Likewise.
22799         * m4/memcmp.m4: Likewise.
22800         * m4/nanosleep.m4: Likewise.
22801         * m4/putenv.m4: Likewise.
22802         * m4/realloc.m4: Likewise.
22803         * m4/regex.m4: Likewise.
22804         * m4/stat.m4: Likewise.
22805         * m4/strftime.m4: Likewise.
22806
22807 2000-07-02  Jim Meyering  <meyering@lucent.com>
22808
22809         * lib/quotearg.c (mbstate_t): Don't define here.
22810
22811 2000-07-02  Jim Meyering  <meyering@lucent.com>
22812
22813         * lib/nanosleep.c (SIGCONT): Define if not already defined.
22814
22815 2000-07-01  Jim Meyering  <meyering@lucent.com>
22816
22817         * m4/uptime.m4: Put double quotes around use of $cross_compiling.
22818
22819 2000-07-01  Jim Meyering  <meyering@lucent.com>
22820
22821         * m4/ls-mntd-fs.m4: Remove a `FIXME' comment and fix the associated
22822         problem.
22823
22824 2000-07-01  Bruno Haible  <haible@clisp.cons.org>
22825
22826         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Rename BeOS specific
22827         macro from MOUNTED_NEXT_DEV to MOUNTED_FS_STAT_DEV.
22828
22829 2000-07-01  Bruno Haible  <haible@clisp.cons.org>
22830
22831         * lib/mountlist.c: Use MOUNTED_FS_STAT_DEV instead of MOUNTED_NEXT_DEV,
22832         per change in ../m4/ls-mntd-fs.m4.
22833         (read_filesystem_list): Ignore symbolic links.
22834
22835 2000-06-29  Jim Meyering  <meyering@lucent.com>
22836
22837         * lib/same.c: Include <string.h> or <strings.h>, as appropriate,
22838         for declaration of strcmp.
22839
22840         * lib/long-options.c: Include <stdlib.h>, for declaration of exit.
22841
22842         * lib/mountlist.c (fsp_to_string) [HAVE_F_FSTYPENAME_IN_STATFS]:
22843         Avoid warning by casting result to `char *' to remove `const'.
22844
22845 2000-06-28  Jim Meyering  <meyering@lucent.com>
22846
22847         * m4/mbstate_t.m4: Use stdlib.h, not stdio.h.  The latter is not
22848         included by quotearg.c, for which we perform this test.  From
22849         Bruno Haible.
22850
22851 2000-06-27  Bruno Haible  <haible@clisp.cons.org>
22852
22853         * m4/check-decl.m4 (_jm_DECL_HEADERS): Check for utmp.h as well.
22854         * m4/prereq.m4 (jm_PREREQ_READUTMP): Likewise. If either <utmp.h> or
22855         <utmpx.h> exists, put readutmp.o into LIBOBJS.
22856
22857 2000-06-27  Bruno Haible  <haible@clisp.cons.org>
22858
22859         * lib/Makefile.am (libfetish_a_SOURCES): Remove readutmp.c.
22860
22861 2000-06-26  Paul Eggert  <eggert@twinsun.com>
22862
22863         savedir now sets errno on failure and invokes xmalloc to get memory.
22864         Fix a couple of other minor bugs while we're at it.
22865
22866         * lib/savedir.c (<unistd.h>): Do not include; there's no need.
22867         (NAMLEN): Remove macro.
22868         (malloc, realloc): Remove decls.
22869         (stpcpy): Likewise.
22870         ("xalloc.h"): Include.
22871         (NAME_SIZE_DEFAULT): New macro.
22872         (savedir): Use xmalloc / xrealloc to allocate memory.
22873         Use NAME_SIZE_DEFAULT if name_size is negative or overflows to zero.
22874         Skip "" directory entries.
22875         Use strlen to calculate directory entry length, since the old method
22876         is rarely used these days and isn't worth supporting.
22877         Don't use a pointer after freeing it.
22878         Check for integer overflow when calculating allocation size.
22879         Use memcpy to copy entries, instead of stpcpy.
22880         Set errno properly when returning NULL.
22881         Check for readdir error.
22882
22883 2000-06-26  Jim Meyering  <meyering@lucent.com>
22884
22885         * lib/posixtm.c [HAVE_STDLIB_H]: Include stdlib.h, for decl of abort.
22886
22887 2000-06-25  Jim Meyering  <meyering@lucent.com>
22888
22889         * m4/mbstate_t.m4: Include stdio.h before wchar.h to work around
22890         Linux header bug when _XOPEN_SOURCE is defined to 500.
22891
22892 2000-06-25  Bruno Haible  <haible@clisp.cons.org>
22893
22894         * lib/unicodeio.c (print_unicode_char): Work around ansi2knr
22895         deficiency.
22896
22897 2000-06-25  Bruno Haible  <haible@clisp.cons.org>
22898
22899         * lib/getusershell.c (xmalloc, xrealloc): Remove functions.
22900         Include xalloc.h.
22901         Don't include <stdlib.h>.  Don't declare malloc, realloc.
22902
22903 2000-06-24  Jim Meyering  <meyering@lucent.com>
22904
22905         * m4/strerror_r.m4: Revive this file -- to try out an experimental
22906         version of AC_FUNC_STRERROR_R that may work even on BeOS, a system
22907         for which strerror does return char*, but which lacks a conveniently
22908         accessible declaration of the function.  If the compile-test says
22909         strerror_r doesn't work, then resort to a `run'-test that works on
22910         BeOS and segfaults on DEC Unix.
22911
22912 2000-06-24  Jim Meyering  <meyering@lucent.com>
22913
22914         * lib/error.c [!HAVE_DECL_STRERROR_R]: Declare strerror_r.
22915
22916 2000-06-23  Paul Eggert  <eggert@twinsun.com>
22917
22918         * m4/mbstate_t.m4: New file, defining AC_MBSTATE_T_OBJECT.
22919         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Use it.  Add check for iswprint.
22920
22921 2000-06-23  Paul Eggert  <eggert@twinsun.com>
22922
22923         * lib/quotearg.c: Include <wctype.h> after <wchar.h>, for Solaris 2.5.
22924         (mbrtowc, mbstate_t): Define substitutes if
22925         HAVE_MBRTOWC && HAVE_WCHAR_H && !HAVE_MBSTATE_T_OBJECT.
22926         (iswprint): Define to 1 if !defined iswprint && !HAVE_ISWPRINT,
22927         not if ! (HAVE_MBRTOWC && HAVE_WCHAR_H).
22928
22929 2000-06-23  Jim Meyering  <meyering@lucent.com>
22930
22931         * m4/afs.m4: Add missing AC_MSG_RESULT.
22932         Reported by Bruno Haible.
22933
22934         * m4/fsusage.m4: s/AC_MSG_CHECKING/AC_CHECKING/.
22935         Suggestion from Bruno Haible.
22936
22937 2000-06-23  Jim Meyering  <meyering@lucent.com>
22938
22939         * lib/getpass.c: New file, from Bruno Haible.  Required for BeOS.
22940
22941 2000-06-21  Jim Meyering  <meyering@lucent.com>
22942
22943         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add getpass.
22944
22945 2000-06-21  Jim Meyering  <meyering@lucent.com>
22946
22947         * lib/Makefile.am (libfetish_a_SOURCES): Add getstr.c.
22948         (noinst_HEADERS): Add getstr.h.
22949
22950         * lib/getline.c (getstr): Move into a separate file.
22951         * lib/getstr.c (getstr): New file, extracted from getline.c, with
22952         the following changes: new parameter, delim2; both delim[12]
22953         parameters have type `int', not `char'.  The latter would lose
22954         with 8-bit delimiters.
22955         * lib/getstr.h: New file.
22956
22957 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
22958
22959         * lib/xgetcwd.c (xgetcwd): If the required pathname length is smaller
22960         than 1024, return a memory chunk of least possible size, instead
22961         of size PATH_MAX + 2. In the loop, increment the size proportionally.
22962         Use free/xmalloc instead of xrealloc to avoid copying for very long
22963         paths.
22964
22965 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
22966
22967         * lib/path-concat.c (path_concat): Don't access dir[-1] if dir is
22968         the empty string.
22969
22970 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
22971
22972         * lib/canon-host.c (canon_host): Use malloc and memcpy to copy an
22973         address, not strdup.  Include <stdlib.h> and don't declare free().
22974
22975 2000-06-19  Jim Meyering  <meyering@lucent.com>
22976
22977         * lib/getloadavg.c [HAVE_NLIST_H] (NLIST_STRUCT): Define.
22978
22979 2000-06-18  Jim Meyering  <meyering@lucent.com>
22980
22981         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Remove mkdir.
22982
22983         * m4/link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): Change the
22984         `checking whether...' message to be consistent with that of the
22985         lstat test.
22986
22987 2000-06-18  Jim Meyering  <meyering@lucent.com>
22988
22989         * lib/mkdir.c: Remove file, due mainly to copyright incompatibility.
22990         Besides, these days every porting target provides a mkdir function.
22991
22992         * lib/strnlen.c: Include memory.h, string.h, and/or strings.h as
22993         needed. (this snippet comes from src/system.h).
22994
22995 2000-06-16  Bruno Haible  <haible@clisp.cons.org>
22996
22997         * m4/glibc21.m4 (jm_GLIBC21): Define GLIBC21 for Makefiles, not for C.
22998
22999 2000-06-15  Paul Eggert  <eggert@twinsun.com>
23000
23001         * lib/human.c (adjust_value): New function.
23002         (human_readable_inexact): Apply rounding style even when
23003         printing approximate values.
23004
23005 2000-06-14  Paul Eggert  <eggert@twinsun.com>
23006
23007         * lib/human.c (human_readable_inexact): Allow an input block
23008         size that is not a multiple of the output block size, and vice versa.
23009         Reported by Piergiorgio Sartor.
23010
23011 2000-06-14  Paul Eggert  <eggert@twinsun.com>
23012
23013         * lib/getdate.y (get_date): Apply relative times after time
23014         zone indicator, not before.  Reported by Todd A. Jacobs.
23015
23016 2000-06-13  Jim Meyering  <meyering@lucent.com>
23017
23018         * lib/Makefile.am (all-local): Depend on lstat.c and stat.c.
23019
23020         * lib/xstat.in [!HAVE_DECL_FREE]: Declare free in lstat.c.
23021
23022 2000-06-12  Paul Eggert  <eggert@twinsun.com>
23023
23024         * lib/xstat.in: Include <stdlib.h> in lstat, to declare "free".
23025
23026 2000-06-12  Jim Meyering  <meyering@lucent.com>
23027
23028         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Replace with
23029         AC_FUNC_GETLOADAVG from autoconf, and tweak the latter to accept an
23030         optional argument.
23031         * m4/jm-macros.m4: s/AM_FUNC_GETLOADAVG/AC_FUNC_GETLOADAVG/, and supply
23032         the optional argument, `lib'.
23033
23034 2000-06-08  Jim Meyering  <meyering@lucent.com>
23035
23036         * m4/largefile.m4: Remove file (now that it's part of autoconf).
23037
23038 2000-06-04  Paul Eggert  <eggert@twinsun.com>
23039
23040         Rewrite largefile configuration so that we don't need to run
23041         getconf and don't need AC_CANONICAL_HOST.  [I'm leaving the use of
23042         AC_CANONICAL_HOST in configure.in -- jmm]
23043
23044         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS,
23045         AC_SYS_LARGEFILE_SPACE_APPEND): Remove.
23046         (AC_SYS_LARGEFILE_TEST_INCLUDES): New macro.
23047         (AC_SYS_LARGEFILE_MACRO_VALUE): Change arguments from
23048         CODE-TO-SET-DEFAULT to VALUE, INCLUDES, FUNCTION-BODY.
23049         All uses changed.
23050         Instead of inspecting the output of getconf, try to compile the
23051         test program without and with the macro definition.
23052         (AC_SYS_LARGEFILE): Do not require AC_CANONICAL_HOST or check
23053         for getconf.  Instead, check for the needed flags by compiling
23054         test programs.
23055
23056 2000-06-04  Paul Eggert  <eggert@twinsun.com>
23057
23058         * lib/strnlen.c: Include <config.h> if HAVE_CONFIG_H.
23059
23060 2000-06-04  Jim Meyering  <meyering@lucent.com>
23061
23062         * lib/getugroups.c (getugroups): Cast -1 to gid_t, for systems like
23063         SunOS 4.1.4 for which gid_t is an unsigned type.
23064
23065 2000-06-03  Jim Meyering  <meyering@lucent.com>
23066
23067         * m4/prereq.m4 (jm_PREREQ_HUMAN): Use []-quoted list in AC_CHECK_DECLS,
23068         now that autoconf requires that.
23069
23070         * m4/jm-glibc-io.m4: Add a kludge to make autoheader emit the required
23071         #undefs.  E.g., #undef HAVE_DECL_FERROR_UNLOCKED.
23072         Use []-quoted list in AC_CHECK_DECLS, now that autoconf requires that.
23073
23074 2000-06-03  Jim Meyering  <meyering@lucent.com>
23075
23076         * lib/strnlen.c [!HAVE_DECL_MEMCHR]: Declare memchr.
23077
23078 2000-06-03  Bruno Haible  <haible@clisp.cons.org>
23079
23080         * m4/glibc21.m4: New file.
23081         * m4/jm-macros.m4 (jm_MACROS): Call jm_GLIBC21.
23082
23083 2000-06-03  Bruno Haible  <haible@clisp.cons.org>
23084
23085         * lib/Makefile.am (install-exec-local): On systems with glibc-2.1 or
23086         newer, don't install charset.alias.
23087         * lib/config.charset: Change the Linux/glibc rules so they become empty
23088         on glibc-2.1 or newer.
23089
23090 2000-06-02  Jim Meyering  <meyering@lucent.com>
23091
23092         * lib/mountlist.c: Back out last change.  Instead, do this...
23093         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Set the
23094         me_dummy member using the same `ignore'-testing code.
23095         * lib/mountlist.h (ME_DUMMY): Add `autofs' to the list of ignored
23096         fs_type strings.
23097         From Mark D. Roth.
23098
23099 2000-05-29  Jim Meyering  <meyering@lucent.com>
23100
23101         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Ignore
23102         mounts with the `ignore' attribute.  Based on a patch from
23103         Mark D. Roth.
23104
23105 2000-05-28  Jim Meyering  <meyering@lucent.com>
23106
23107         * m4/jm-macros.m4 (AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK): Rename from
23108         jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
23109         * m4/stat.m4: Likewise.
23110         * m4/lstat.m4: Likewise.
23111         * m4/lstat-slash.m4: Remove file (absorbed into autoconf).
23112
23113         * m4/jm-macros.m4 (AC_FUNC_STRERROR_R): Rename from jm_FUNC_STRERROR_R.
23114         * m4/strerror_r.m4: Remove file (absorbed into autoconf).
23115
23116 2000-05-26  Jim Meyering  <meyering@lucent.com>
23117
23118         * m4/uptime.m4: Use `$cross_compiling', not `$ac_cv_prog_cc_cross'.
23119
23120 2000-05-24  Jim Meyering  <meyering@lucent.com>
23121
23122         * m4/prereq.m4: Use []-quoted list in AC_CHECK_MEMBERS, now that
23123         autoconf requires that.
23124         * m4/lib-check.m4: Likewise.
23125         * m4/jm-macros.m4: Likewise.
23126         * m4/strftime.m4: Likewise.
23127
23128         * m4/check-decl.m4 (jm_CHECK_DECLS): Use []-quoted list in
23129         AC_CHECK_DECLS, now that autoconf requires that.
23130
23131 2000-05-22  Jim Meyering  <meyering@lucent.com>
23132
23133         * m4/stat.m4: Require jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
23134         * m4/lstat.m4: Likewise.
23135
23136 2000-05-22  Jim Meyering  <meyering@lucent.com>
23137
23138         * lib/makepath.c: Remove old, now-unnecessary `#ifdef __MSDOS__' block.
23139
23140 2000-05-20  Jim Meyering  <meyering@lucent.com>
23141
23142         * m4/prereq.m4 (jm_PREREQ_HUMAN): New macro.
23143         (jm_PREREQ): Use it.
23144
23145 2000-05-18  Jim Meyering  <meyering@lucent.com>
23146
23147         * lib/hash.c (hash_rehash): Fix a nasty bug: copy the free entry list
23148         back, too, since it may have been modified by allocate_entry.
23149         (hash_delete): Rewrite to use neither the assignment operator
23150         nor the comma operator in an if-expression.
23151
23152 2000-05-15  Paul Eggert  <eggert@twinsun.com>
23153
23154         * lib/closeout.c:
23155         <sys/stat.h>, <sys/types.h>, <unistd.h>, (STDOUT_FILENO):
23156         Remove; no longer needed.
23157         "quotearg.h": Add include.
23158         (file_name): Do not bother to explicitly initialize to NULL; it's less
23159         efficient on some hosts.
23160         (close_stdout_status): Remove test as to whether stdout was already
23161         closed; it breaks for the case "echo x | sort >&-".
23162         Quote file name colons.
23163         Do not assume that _("write error") lacks format strings.
23164
23165 2000-05-15  Jim Meyering  <meyering@lucent.com>
23166
23167         * lib/version-etc.c (version_etc_copyright): Update the copyright
23168         string used in all --version output.
23169
23170 2000-05-14  Jim Meyering  <meyering@lucent.com>
23171
23172         * lib/closeout.c (close_stdout_set_file_name): New function.
23173         (close_stdout_status): Use new file-scoped global.
23174         Return right away if fstat says the stdout file descriptor is invalid.
23175         * lib/closeout.h (close_stdout_set_file_name): Declare.
23176
23177 2000-05-10  Jim Meyering  <meyering@lucent.com>
23178
23179         * lib/closeout.c [default_exit_status]: New file-scoped variable.
23180         (close_stdout_set_status): New function.
23181         * lib/closeout.h (close_stdout_set_status): Declare.
23182
23183 2000-05-09  Jim Meyering  <meyering@lucent.com>
23184
23185         * m4/gettext.m4: Rename this...
23186         * m4/libintl.m4: ...to this.
23187
23188 2000-05-08  Jim Meyering  <meyering@lucent.com>
23189
23190         * lib/long-options.c: Don't include closeout.h.
23191         (parse_long_options): Don't call close_stdout for --version.
23192
23193 2000-05-06  Paul Eggert  <eggert@twinsun.com>
23194
23195         * m4/largefile.m4 (AC_SYS_LARGEFILE): Define _XOPEN_SOURCE to
23196         be 500, instead of _GNU_SOURCE to be 1, to work around glibc
23197         2.1.3 bug.  This avoids a clash when files like regex.c define
23198         _GNU_SOURCE.
23199
23200 2000-05-06  Jim Meyering  <meyering@lucent.com>
23201
23202         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add atexit.
23203         (AC_REPLACE_FUNCS): Add strnlen.
23204
23205         * m4/rmdir-errno.m4 (fetish_FUNC_RMDIR_NOTEMPTY): New macro and file.
23206         * m4/jm-macros.m4: Require fetish_FUNC_RMDIR_NOTEMPTY.
23207
23208         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Save and restore LIBS around
23209         AC_SEARCH_LIBS call for nanosleep.
23210         (LIB_NANOSLEEP): Set and AC_SUBST.
23211
23212 2000-05-06  Jim Meyering  <meyering@lucent.com>
23213
23214         * lib/strnlen.c: Undefine __strnlen and strnlen.
23215         [!weak_alias]: Define __strnlen to strnlen.
23216
23217         * lib/atexit.c: New file, from libiberty.
23218
23219 2000-05-06  Jim Meyering  <meyering@lucent.com>
23220
23221         * lib/closeout.c (close_stdout_status): Also check for errors on the
23222         stderr stream.
23223
23224 2000-05-05  Jim Meyering  <meyering@lucent.com>
23225
23226         * m4/jm-macros.m4 (jm_MACROS): Save and restore LIBS around
23227         AC_SEARCH_LIBS call for clock_gettime.
23228         (LIB_CLOCK_GETTIME): Set and AC_SUBST.
23229
23230         * m4/search-libs.m4: Update from autoconf.
23231
23232         su doesn't work on Solaris 2.6.
23233         * m4/lib-check.m4: When checking for struct spwd.sp_pwdp, also include
23234         <shadow.h>.  Reported by Dragos Harabor.
23235
23236 2000-05-05  Bruno Haible  <haible@clisp.cons.org>
23237
23238         * lib/localcharset.c (get_charset_aliases): Use malloc, realloc and
23239         memcpy instead of xmalloc, xrealloc, path_concat.
23240         (locale_charset): Treat empty environment variables as absent.
23241         (DIRECTORY_SEPARATOR, ISSLASH): New macros.
23242
23243 2000-05-04  Jim Meyering  <meyering@lucent.com>
23244
23245         * lib/getopt.c: Update from glibc.
23246         * lib/obstack.c: Likewise.
23247         * lib/obstack.h: Likewise.
23248         * lib/regex.c: Likewise.  NB: K&R compiler support is dropped for this
23249         file
23250
23251         * lib/regex.h: Likewise.
23252         * lib/strndup.c: Likewise.
23253         * lib/strnlen.c: New file, from glibc.
23254
23255 2000-05-03  Jim Meyering  <meyering@lucent.com>
23256
23257         * m4/check-decl.m4 (AC_CHECK_DECLS): Add strndup.
23258
23259 2000-05-02  Paul Eggert  <eggert@twinsun.com>
23260
23261         * m4/largefile.m4 (AC_SYS_LARGEFILE): Define _GNU_SOURCE if
23262         this is needed to make ftello visible (e.g. glibc 2.1.3).  Use
23263         compile-time test, rather than inspecting host and OS, to
23264         decide whether to define _LARGEFILE_SOURCE.
23265
23266 2000-05-01  Jim Meyering  <meyering@lucent.com>
23267
23268         * m4/fsusage.m4: Use AC_MSG_CHECKING instead of obsolete AC_CHECKING.
23269
23270         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add BeOS support.
23271         Based on a patch from Bruno Haible.
23272
23273 2000-05-01  Jim Meyering  <meyering@lucent.com>
23274
23275         * lib/full-write.c (full_write): Remove `FIXME' part of comment.
23276
23277 2000-04-29  Jim Meyering  <meyering@lucent.com>
23278
23279         * lib/path-concat.c: Declare strdup only if it's not defined.
23280         * lib/canon-host.c: Likewise.
23281
23282 2000-04-28  Jim Meyering  <meyering@lucent.com>
23283
23284         * lib/rpmatch.c [HAVE_LIMITS_H]: Include limits.h before regex.h to
23285         avoid redefinition warning on some systems (HPUX).  Otherwise, regex.h
23286         is included first, then limits.h is included by locale.h by libintl.h.
23287         From John David Anglin.
23288
23289 2000-04-25  Jim Meyering  <meyering@lucent.com>
23290
23291         * lib/makepath.c (S_IRWXUGO): Define.
23292         (make_path): Always perform explicit chmod if MODE specifies any
23293         of the `special' permission bits.  Prompted by a bug report against
23294         install from Mate Wierdl and Joost van Baal.
23295
23296 2000-04-18  Jim Meyering  <meyering@lucent.com>
23297
23298         * m4/prereq.m4 (jm_PREREQ_GETPAGESIZE): New macro.
23299         (jm_PREREQ): Use it.
23300
23301 2000-04-18  Jim Meyering  <meyering@lucent.com>
23302
23303         * lib/README: New file.
23304
23305         * lib/getpagesize.h [!getpagesize && HAVE_OS_H && B_PAGE_SIZE]: Define
23306         getpagesize.  For BeOS.  Based on a patch from Bruno Haible.
23307
23308 2000-04-17  Jim Meyering  <meyering@lucent.com>
23309
23310         Get it right :-)
23311         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Emit the
23312         actual #define via AH_VERBATIM.  Don't need separate AC_DEFINE.
23313         Suggestion from Akim Demaille.
23314
23315 2000-04-17  Jim Meyering  <meyering@lucent.com>
23316
23317         * lib/strftime.c (my_strftime) [strftime]: Declare strftime here, since
23318         the definition of it to rpl_strftime also defined-away the system's
23319         declaration.
23320
23321 2000-04-15  Jim Meyering  <meyering@lucent.com>
23322
23323         Use `C' to denote so-called `contiguous' files, the same way
23324         that tar does.
23325         * lib/filemode.c (S_ISCTG) [!S_ISCTG && S_IFCTG]: Define.
23326         (ftypelet): Use S_ISCTG.
23327         From Michael Deutschmann.
23328
23329 2000-04-14  Jim Meyering  <meyering@lucent.com>
23330
23331         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use the one-arg
23332         form of AC_DEFINE.  Otherwise, the #ifndef in AH_VERBATIM gets
23333         clobbered.
23334
23335 2000-04-14  Jim Meyering  <meyering@lucent.com>
23336
23337         * lib/strftime.c (my_strftime) [#ifdef strftime]: Declare strftime.
23338
23339 2000-04-13  Jim Meyering  <meyering@lucent.com>
23340
23341         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use new
23342         AH_VERBATIM to insert required #ifndef into config.h.in.
23343         Suggestion from Akim Demaille.
23344
23345 2000-04-12  Jim Meyering  <meyering@lucent.com>
23346
23347         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Use AC_CHECK_HEADERS, not
23348         `AC_CHECK_HEADER' to check for locale.h.  Thanks to a report from
23349         Christian Krackowizer.
23350
23351         More code moved from ../configure.in into (jm_CHECK_ALL_TYPES).
23352         * m4/jm-macros.m4 (_GNU_SOURCE): Define.
23353         (AC_SYS_LARGEFILE): Require.
23354         (AM_C_PROTOTYPES): Require.
23355
23356 2000-04-08  Jim Meyering  <meyering@lucent.com>
23357
23358         * lib/Makefile.am (charset.alias): Use t-$@, not $@-t so the DOS 8.3
23359         names don't conflict.  Reported by Eli Zaretskii.
23360
23361 2000-04-07  Jim Meyering  <meyering@lucent.com>
23362
23363         * lib/putenv.c: Move inclusion of errno.h so it follows that of
23364         sys/types.h, to work around system header problems on AIX 3.2.5.
23365         From Bruno Haible.
23366
23367 2000-04-07  Bruno Haible  <haible@clisp.cons.org>
23368
23369         * lib/unicodeio.c (print_unicode_char): Avoid triggering Solaris iconv
23370         bug.  Deal with the different error behavior of Irix iconv.
23371
23372 2000-04-05  Paul Eggert  <eggert@twinsun.com>
23373
23374         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Don't use -n32 on
23375         IRIX if the installer said otherwise.
23376
23377 2000-04-05  Jim Meyering  <meyering@lucent.com>
23378
23379         Portability tweaks required for ultrix4.3.
23380         * m4/check-decl.m4 [!HAVE_UTMPX_H] (headers): Include <utmp.h>.
23381         (jm_CHECK_DECLS): Add getutent to the list of functions.
23382         (_jm_DECL_HEADERS): Add utmpx.h.
23383         From John David Anglin.
23384
23385         * m4/strftime.m4: Back out the 2000-04-02 change.
23386         Instead of that change, simply undefine putenv in the test program.
23387
23388 2000-04-05  Jim Meyering  <meyering@lucent.com>
23389
23390         Portability tweaks required for ultrix4.3.
23391         * lib/readutmp.h [HAVE_UTMPX_H && !HAVE_DECL_GETUTENT]: Declare
23392         getutent.
23393         * lib/readutmp.c: Include sys/types.h before sys/stat.h.
23394         * lib/canon-host.c: Declare strdup.
23395         * lib/path-concat.c: Likewise.
23396         From John David Anglin.
23397
23398 2000-04-04  Jim Meyering  <meyering@lucent.com>
23399
23400         Be more DOS 8.3-friendly.
23401         * lib/ref-add.sin: Renamed from ref-add.sed.in.
23402         * lib/ref-del.sin: Renamed from ref-del.sed.in.
23403         * lib/Makefile.am: Reflect renaming.
23404         Reported by Eli Zaretskii.
23405
23406         Use a temporary file name that won't clash with `charset.alias'
23407         in the DOS 8.3 name space.
23408         * lib/Makefile.am (charset_tmp): Define.
23409         (install-exec-local): Use $(charset_tmp) instead of $(charset_alias)-t.
23410         (uninstall-local): Likewise.
23411         Reported by Eli Zaretskii.
23412
23413 2000-04-03  Jim Meyering  <meyering@lucent.com>
23414
23415         * m4/gettext.m4: Fix typo in comment.
23416
23417         * m4/codeset.m4 (AC_CHECK_HEADERS): Add langinfo.h (moved here from
23418         textutils/configure.in).  Suggestion from Paul Eggert.
23419         (AC_CHECK_FUNCS): Add nl_langinfo.  (also from textutils/configure.in)
23420
23421 2000-04-02  Paul Eggert  <eggert@twinsun.com>
23422
23423         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME): Set TZ environment
23424         variable in the shell rather than using putenv, which isn't
23425         portable.  This avoids the configure-time inter-test dependency
23426         on the potentially-renamed putenv function.
23427
23428 2000-03-30  Paul Eggert  <eggert@twinsun.com>
23429
23430         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Include <sys/stat.h>
23431         before checking struct stat.st_blksize, so that
23432         HAVE_STRUCT_STAT_ST_BLKSIZE is defined correctly.
23433
23434 2000-03-29  Paul Eggert  <eggert@twinsun.com>
23435
23436         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Check for strftime,
23437         since strftime.c uses HAVE_STRFTIME to decide whether to use
23438         the underlying strftime.
23439
23440 2000-03-29  Paul Eggert  <eggert@twinsun.com>
23441
23442         * lib/time/strftime.c (my_strftime): Make sure we call the system
23443         strftime, not ourselves, when invoking the underlying strftime.
23444
23445 2000-03-24  Jim Meyering  <meyering@lucent.com>
23446
23447         * lib/Makefile.am (EXTRA_DIST): Add ref-add.sed.in and ref-del.sed.in.
23448         (charset_alias): Define.
23449         (install-exec-local): Factor out common code.
23450         (uninstall-local): Split lines longer than 80.
23451         (ref-add.sed, ref-del.sed): Remove rules... (do the following instead)
23452         (SUFFIXES): Define.
23453         (.sed.in.sed): New rule.  Don't redirect directly to $@.
23454         (CLEANFILES): Add ref-add.sed and ref-del.sed.
23455
23456 2000-03-19  Bruno Haible  <haible@clisp.cons.org>
23457
23458         * lib/config.charset: Output a line containing "Packages using this
23459         file".
23460         * lib/ref-add.sed.in, lib/ref-del.sed.in: New files.
23461         * lib/Makefile.am (install-exec-local, uninstall-local, ref-add.sed,
23462         ref-del.sed): New rules.
23463
23464 2000-03-17  Jim Meyering  <meyering@lucent.com>
23465
23466         * lib/unicodeio.c (<string.h>): Include only #if HAVE_STRING_H.
23467         Otherwise, include <strings.h>
23468
23469 2000-03-17  Bruno Haible  <haible@clisp.cons.org>
23470
23471         * lib/unicodeio.c (utf8_wctomb): New function.
23472         (print_unicode_char): Pass the Unicode character to iconv in UTF-8
23473         format instead of in UCS-4 with platform dependent endianness.
23474
23475 2000-03-10  Jim Meyering  <meyering@lucent.com>
23476
23477         * m4/lib-check.m4: Look for getspnam in -lgen, too.
23478         From Marco Franzen.
23479
23480 2000-03-07  Paul Eggert  <eggert@twinsun.com>
23481
23482         * lib/savedir.c (savedir): Work even if directory size is
23483         negative; this can happen with some screwy NFS configurations.
23484
23485 2000-03-06  Jim Meyering  <meyering@lucent.com>
23486
23487         * lib/localcharset.c (get_charset_aliases): Don't try to free file_name
23488         if it's NULL (because we ran out of memory).  From Bruno Haible.
23489
23490 2000-03-05  Jim Meyering  <meyering@lucent.com>
23491
23492         * lib/localcharset.c ("path-concat.h"): Include.
23493         (get_charset_aliases): Use path_concat instead of ANSI string
23494         concatenation.
23495
23496         * lib/unicodeio.h (PARAMS): Define.
23497         Use it to guard prototype.
23498
23499 2000-03-04  Jim Meyering  <meyering@lucent.com>
23500
23501         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require AC_C_VOLATILE,
23502         for lib/localcharset.c.
23503
23504 2000-03-04  Jim Meyering  <meyering@lucent.com>
23505
23506         * lib/Makefile.am (install-exec-local): Create $(libdir) before
23507         installing into it.
23508         (uninstall-local): Uncomment this rule so `make distcheck' works
23509         once again.
23510
23511         * lib/unicodeio.c (<errno.h>): Include it.
23512         (errno): Declare if not defined.
23513
23514         * lib/localcharset.c: Add Bruno's comment justifying use of volatile.
23515
23516         * lib/config.charset: New version, incorporating remarks from a linux
23517         i18n mailing list.  From Bruno Haible.
23518
23519 2000-03-04  Bruno Haible  <haible@clisp.cons.org>
23520
23521         * m4/codeset.m4: New file.
23522         * m4/iconv.m4: New file.
23523         * m4/jm-macros.m4 (jm_MACROS): Call jm_LANGINFO_CODESET and jm_ICONV.
23524
23525 2000-03-03  Jim Meyering  <meyering@lucent.com>
23526
23527         * m4/regex.m4: Make sure re_compile_pattern accepts patterns like `{1'.
23528
23529 2000-03-02  Jim Meyering  <meyering@lucent.com>
23530
23531         * m4/timespec.m4: Require AC_HEADER_TIME before the cache check so
23532         the messages come out on separate lines.
23533
23534         * m4/jm-glibc-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO): Use AC_CHECK_DECLS,
23535         rather than jm_CHECK_DECLARATIONS.
23536         * m4/decl.m4: Remove now-unused file.
23537
23538         * m4/check-decl.m4 (AC_CHECK_DECLS): Add getlogin, ttyname, and
23539         geteuid.
23540
23541 2000-03-02  Jim Meyering  <meyering@lucent.com>
23542
23543         * lib/Makefile.am (EXTRA_DIST): Add config.charset.
23544
23545 2000-03-01  Jim Meyering  <meyering@lucent.com>
23546
23547         * lib/localcharset.c: Guard some #includes with `#if HAVE_...'.
23548         * lib/unicodeio.c: Likewise.
23549
23550 2000-03-01  Bruno Haible  <haible@clisp.cons.org>
23551
23552         * lib/config.charset: New file.
23553         * lib/localcharset.c: New file.
23554         * lib/unicodeio.h, lib/unicodeio.c: New files.
23555         * lib/Makefile.am (DEFS): Add -DLIBDIR=...
23556         (libfetish_a_SOURCES): Add localcharset.c and unicodeio.c.
23557         (noinst_HEADERS): Add unicodeio.h.
23558         (all-local, install-exec-local, charset.alias): New targets.
23559
23560 2000-02-28  Paul Eggert  <eggert@twinsun.com>
23561
23562         * lib/quotearg.c (ALERT_CHAR): New macro.
23563         (quotearg_buffer_restyled): Use it.
23564
23565 2000-02-27  Jim Meyering  <meyering@lucent.com>
23566
23567         * m4/check-decl.m4: Add getenv to the list.
23568
23569 2000-02-27  Jim Meyering  <meyering@lucent.com>
23570
23571         * lib/strtoumax.c: Fix typo in decl of strtoul: s/long long/long/.
23572         Guard declaration of strtoull also with `&& HAVE_UNSIGNED_LONG_LONG'.
23573
23574         * lib/backupfile.c: Guard inclusion of stdlib.h with
23575         `#if HAVE_STDLIB_H', not `#if STDC_HEADERS'.
23576         Declare malloc if needed.
23577
23578         * lib/backupfile.c: Use `#if !HAVE_DECL...' instead of
23579         `#ifndef HAVE_DECL..'
23580         now that autoconf always defines the HAVE_DECL_ symbols.
23581         * lib/human.c: Likewise.
23582         * lib/same.c: Likewise.
23583         * lib/strtoumax.c: Likewise.
23584
23585         * lib/backupfile.c: Arrange for cpp to fail if the configure-time
23586         declaration check was not run.
23587         * lib/hash.c: Likewise.
23588         * lib/human.c: Likewise.
23589         * lib/same.c: Likewise.
23590         * lib/strtoumax.c: Likewise.
23591
23592         * lib/userspec.c (parse_user_spec): If there is no `:' but there is a
23593         `.', then first look up the entire `.'-containing string as a login
23594         name.
23595
23596 2000-02-23  Jim Meyering  <meyering@lucent.com>
23597
23598         * m4/check-decl.m4: Now that we have the new AC_CHECK_DECLS, use it
23599         in place of my hack.
23600
23601 2000-02-18  Paul Eggert  <eggert@twinsun.com>
23602
23603         * lib/getdate.y: Handle two-digit years with leading zeros correctly.
23604         (textint): New typedef.
23605         (parser_control): Member year changed from int to textint.
23606         All uses changed.
23607         (YYSTYPE): Removed; replaced by %union with int and textint members.
23608         (tDAY, tDAY_UNIT, tDAYZONE, tHOUR_UNIT, tID, tLOCAL_ZONE, tMERIDIAN,
23609         tMINUTE_UNIT, tMONTH, tMONTH_UNIT tSEC_UNIT, tSNUMBER, tUNUMBER,
23610         tYEAR_UNIT, tZONE, o_merid): Now of type <intval>.
23611         (tSNUMBER, tUNUMBER): Now of type <textintval>.
23612         (date, number, to_year): Use width of number in digits, not its value,
23613         to determine whether it's a 2-digit year, or a 2-digit time.
23614         (yylex): Store number of digits of numeric tokens.
23615         Reported by John Kendall.
23616
23617         (parser_control): Changed from struct parser_control to typedef (for
23618         consistency).  All uses changed.
23619
23620         (tID): Removed; not used.
23621         (yylex): Return '?' for unknown identifiers, rather than (unused) tID.
23622
23623 2000-02-14  Paul Eggert  <eggert@twinsun.com>
23624
23625         * lib/getpagesize.h (getpagesize): Port to VMS for Alpha;
23626         adapted from changes to grep getpagesize.h by Martin P.J. Zinser.
23627
23628 2000-02-12  Jim Meyering  <meyering@lucent.com>
23629
23630         * lib/userspec.c (ISDIGIT): Define it.
23631         (isdigit): Remove definition.
23632         (is_number): Use ISDIGIT, not isdigit.
23633         <libintl.h>: Include.
23634         (_ and N_): Define.
23635         (parse_user_spec): Mark translatable strings.
23636
23637 2000-02-10  Jim Meyering  <meyering@lucent.com>
23638
23639         With these changes, nanosleep.[ch] are finally enough like the other
23640         lib/* replacement files to compile on a few more losing systems.
23641
23642         * lib/nanosleep.h: Don't include config.h.
23643         Remove prototype from declaration of nanosleep.
23644         (PARAMS): Remove now-unneeded definition.
23645         * lib/nanosleep.c: #undef nanosleep.
23646         (rpl_nanosleep): Rename from nanosleep.
23647
23648 2000-02-10  Jim Meyering  <meyering@lucent.com>
23649
23650         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Rename replacement function from
23651         gnu_nanosleep to rpl_nanosleep.
23652
23653 2000-02-09  Jim Meyering  <meyering@lucent.com>
23654
23655         * m4/lib-check.m4 (jm_LIB_CHECK): Fix typo: check for sp_pwdp in
23656         struct spwd, rather than in struct passwd.  Reported by Gaël Quéri.
23657
23658 2000-02-08  Akim Demaille  <akim@epita.fr>
23659
23660         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Quote square brackets with
23661         `[' and `]' and remove uses of `changequote'.
23662         (AC_SYS_LARGEFILE_MACRO_VALUE): Likewise.
23663         (AC_SYS_LARGEFILE): Likewise.
23664         * m4/gettext.m4 (AM_GNU_GETTEXT): Likewise.
23665         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME): Remove now-unnecessary use
23666         of changequote.
23667         * m4/regex.m4 (jm_INCLUDED_REGEX): Likewise.
23668         * m4/readdir.m4 (jm_FUNC_READDIR): Likewise
23669         * m4/memcmp.m4 (jm_AC_FUNC_MEMCMP): Likewise, and add `int' for main.
23670         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Likewise.
23671
23672 2000-02-05  Jim Meyering  <meyering@lucent.com>
23673
23674         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require most macros.
23675         Remove explicit use of AC_HEADER_TIME.  It is required by
23676         jm_CHECK_TYPE_STRUCT_TIMESPEC.  Using AC_HEADER_TIME and
23677         `AC_REQUIRE'ing jm_CHECK_TYPE_STRUCT_TIMESPEC provoked a but
23678         in autoconf whereby the expansion of the latter ended up preceding
23679         the expansion of its prerequisite, AC_HEADER_TIME.
23680         Reported by Volker Borchert.
23681
23682 2000-02-03  Jim Meyering  <meyering@lucent.com>
23683
23684         * m4/prereq.m4 (jm_PREREQ_READUTMP): Check for utmpxname.
23685
23686 2000-02-03  Jim Meyering  <meyering@lucent.com>
23687
23688         * lib/readutmp.c (read_utmp): Guard with `#ifdef UTMP_NAME_FUNCTION',
23689         rather than with `#if HAVE_UTMPNAME'.
23690
23691 2000-02-02  Jim Meyering  <meyering@lucent.com>
23692
23693         * m4/prereq.m4 (jm_PREREQ_ADDEXT): Fix typo that resulted in no
23694         definition of HAVE_PATHCONF: s/AC_CHECK_FUNC/AC_CHECK_FUNCS/.
23695         Reported by Eli Zaretskii.
23696
23697 2000-02-01  Jim Meyering  <meyering@lucent.com>
23698
23699         * lib/readutmp.h (UT_USER): Add parens.  From Andreas Schwab.
23700
23701 2000-01-31  Jim Meyering  <meyering@lucent.com>
23702
23703         * m4/check-decl.m4 (jm_CHECK_DECLS): Add nanosleep to the list of
23704         functions.  Add the time.h and sys/time.h headers along with the
23705         AC_REQUIRE'ment of AC_HEADER_TIME.
23706
23707 2000-01-31  Jim Meyering  <meyering@lucent.com>
23708
23709         * lib/nanosleep.h (nanosleep): Guard declaration with
23710         `#if ! HAVE_DECL_NANOSLEEP'.
23711         Without this, OFS gets a redeclaration error for rpl_nanosleep, due to
23712         the declaration in that vendor's sys/timers.h.
23713         Reported by Christian Krackowizer.
23714
23715         * lib/quotearg.c (ISASCII): Add #undef and move definition to follow
23716         inclusion of wctype.h to work around Solaris 2.6 namespace pollution.
23717         (ISPRINT): Likewise.
23718         Reported by Tom Tromey.
23719
23720 2000-01-30  Jim Meyering  <meyering@lucent.com>
23721
23722         * m4/lib-check.m4: Clean up some kludgy old shadow password tests.
23723
23724         * m4/prereq.m4 (utmp_includes): Define.
23725         Check for ut_user and ut_name members in both struct utmpx
23726         and struct utmp.
23727
23728 2000-01-30  Jim Meyering  <meyering@lucent.com>
23729
23730         * lib/readutmp.c (extract_trimmed_name): Use UT_USER instead of
23731         hard-coding uses of ->ut_name.  The latter doesn't work with new Linux
23732         header files where only utmpx.ut_user is declared.
23733
23734         * lib/readutmp.h (UT_USER): Define.
23735
23736 2000-01-29  Jim Meyering  <meyering@lucent.com>
23737
23738         * m4/lib-check.m4: New file containing library-related checks from
23739         fileutils and sh-utils (textutils had none).
23740
23741 2000-01-28  Jim Meyering  <meyering@lucent.com>
23742
23743         * m4/perl.m4: Change format of warning message to look more like that
23744         from the missing script.  Suggestion from François Pinard.
23745
23746 2000-01-25  Jim Meyering  <meyering@lucent.com>
23747
23748         * m4/timespec.m4: Require AC_HEADER_TIME, and include sys/time.h as
23749         well as time.h in the compile check.
23750         * m4/nanosleep.m4: Require AC_HEADER_TIME rather than simply using it.
23751         Fix typo in cross-compiling case: s/yes/no/.
23752
23753 2000-01-23  Jim Meyering  <meyering@lucent.com>
23754
23755         * m4/jm-macros.m4: Move df-related tests here from
23756         fileutils/configure.in
23757
23758         * m4/ls-mntd-fs.m4: s/list_mounted_fs/ac_list_mounted_fs/
23759         (jm_LIST_MOUNTED_FILESYSTEMS): Take two parameters.
23760
23761         * m4/fsusage.m4: New file.  Extracted from fileutils/configure.in.
23762         s/space/ac_fsusage_space/.
23763         (jm_FILE_SYSTEM_USAGE): Take two parameters.
23764
23765         * m4/ftruncate.m4: New file (derived from part of
23766         fileutils/configure.in).
23767         * m4/jm-macros.m4 (jm_FUNC_FTRUNCATE): AC_REQUIRE it.
23768         (jm_CHECK_ALL_TYPES): Require AC_HEADER_MAJOR and AC_HEADER_DIRENT.
23769
23770         * m4/jm-macros.m4 (OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, MAN):
23771         AC_SUBST these here, rather than just in sh-util/configure.in, so
23772         that the now-shared-by-fileutils-and-textutils lib/Makefile.am are
23773         all the same.
23774         (AM_FUNC_OBSTACK): Add (from fileutils/configure.in).
23775         (AC_CHECK_FUNCS): Merge all checks from fileutils, textutils, sh-utils.
23776         (AM_FUNC_STRTOD): Added (from textutils', sh-utils' configure.in).
23777         (AC_SUBST(POW_LIBM)): Likewise.
23778         (AC_SUBST(DF_PROG)): Moved from fileutils/configure.in.
23779
23780 2000-01-23  Jim Meyering  <meyering@lucent.com>
23781
23782         * lib/Makefile.am (libfetish_a_SOURCES): Remove explicit mention of
23783         obstack.c.
23784
23785 2000-01-22  Jim Meyering  <meyering@lucent.com>
23786
23787         * m4/jm-macros.m4: Call AC_PROG_CC_STDC just before AC_C_CONST.
23788
23789         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Add wctype.h.
23790
23791         * m4/jm-macros.m4 (AC_CHECK_HEADERS): Add checks from fileutils'
23792         configure.in
23793         (AC_CHECK_HEADERS): Likewise for sh-utils.
23794         (AC_CHECK_HEADERS): Likewise for textutils.
23795         Merge the three lists of headers.
23796
23797         * m4/prereq.m4 (jm_PREREQ_ADDEXT): New macro.  Parts moved here
23798         from fileutils' configure.in.
23799
23800         * m4/decl.m4: Remove kludgy `test -z $ac_...AC_CHECK_HEADERS(...)'
23801         code. Moved tests into their own function (_jm_DECL_HEADERS) in
23802         check-decl.m4.
23803
23804         * m4/check-decl.m4: Use #if rather than #ifdef.
23805         Add HAVE_DECL_STRTOUL and HAVE_DECL_STRTOULL.
23806         (jm_CHECK_DECLARATIONS): Add strtoul strtoull.
23807         (_jm_DECL_HEADERS): Define new function.
23808         (jm_CHECK_DECLARATIONS): Require it.
23809
23810 2000-01-22  Jim Meyering  <meyering@lucent.com>
23811
23812         * lib/strtoumax.c: [! HAVE_DECL_STRTOUL]: Declare strtoul.
23813         [! HAVE_DECL_STRTOULL]: Declare strtoull.
23814         Required for some AIX systems.  Reported by Christian Krackowizer.
23815         [TESTING] (main): New function.
23816
23817         1997-10-17  Eli Zaretskii  <eliz@is.elta.co.il>
23818         * lib/dirname.c (dir_name): Support for DOS-style file names with drive
23819         letters.
23820
23821         * lib/quotearg.c [HAVE_WCTYPE_H]: Include <wctype.h> for decl of
23822         iswprint.
23823
23824         * lib/strverscmp.c (ISDIGIT): Define.
23825         (strverscmp): Use ISDIGIT, not isdigit.
23826
23827 2000-01-19  Jim Meyering  <meyering@lucent.com>
23828
23829         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Include <sys/time.h>, too.
23830         Use AC_HEADER_TIME.  Volker Borchert reported that OpenBSD-2.3/sparc
23831         defines `struct timespec' in <sys/time.h>
23832
23833         * m4/c-bs-a.m4: Remove uses of changequote altogether.
23834         Thanks to Akim for explaining.
23835
23836 2000-01-17  Paul Eggert  <eggert@twinsun.com>
23837
23838         * lib/nanosleep.c (nanosleep):
23839         Don't use SA_INTERRUPT to decide whether to call sigaction, as
23840         POSIX.1 doesn't require SA_INTERRUPT and some systems
23841         (e.g. Solaris 7) don't define it.  Use SA_NOCLDSTOP instead;
23842         it's been part of POSIX.1 since day 1 (in 1988).
23843
23844 2000-01-17  Jim Meyering  <meyering@lucent.com>
23845
23846         * lib/interlock: Remove unused file.  Reported by François Pinard.
23847
23848 2000-01-16  Paul Eggert  <eggert@twinsun.com>
23849
23850         * lib/quotearg.c (quotearg_buffer_restyled): Do not quote
23851         alert, backslash, formfeed, and vertical tab unnecessarily in
23852         shell quoting style.
23853
23854 2000-01-16  Jim Meyering  <meyering@lucent.com>
23855
23856         * m4/jm-macros.m4: Require jm_FUNC_GROUP_MEMBER, jm_FUNC_PUTENV,
23857         AM_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, jm_FUNC_MKTIME,
23858         jm_FUNC_GETGROUPS AC_FUNC_VPRINTF, AC_FUNC_ALLOCA,
23859         AM_FUNC_GETLOADAVG, and jm_SYS_PROC_UPTIME.
23860
23861 2000-01-16  Jim Meyering  <meyering@lucent.com>
23862
23863         * m4/c-bs-a.m4: Use `changequote(<<,>>)', rather than `changequote(, )'
23864         because the latter didn't work.
23865
23866 2000-01-15  Jim Meyering  <meyering@lucent.com>
23867
23868         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add gethostname and getusershell.
23869         (AC_REPLACE_FUNCS): Add memcpy and memset.
23870         Add these, too: stime strcspn stpcpy strstr strtol strtoul.
23871         Add strpbrk.
23872         Add these: euidaccess memcmp mkdir rmdir rpmatch strndup strverscmp.
23873
23874 2000-01-12  Jim Meyering  <meyering@lucent.com>
23875
23876         * m4/prereq.m4 (jm_PREREQ_CANON_HOST): New macro.
23877         (jm_PREREQ): Use it.
23878         (jm_PREREQ_READUTMP): New macro.
23879         (jm_PREREQ): Use it.
23880
23881 2000-01-11  Paul Eggert  <eggert@twinsun.com>
23882
23883         Quote multibyte characters correctly.
23884         * m4/c-bs-a.m4: New file.
23885         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): New macro.
23886         (jm_PREREQ): Use it.
23887
23888 2000-01-11  Paul Eggert  <eggert@twinsun.com>
23889
23890         * m4/uintmax_t.m4: Port to autoconf 2.13.
23891
23892 2000-01-08  Jim Meyering  <meyering@ascend.com>
23893
23894         * m4/strerror_r.m4 (jm_FUNC_STRERROR_R): New file/macro.
23895         * m4/jm-macros.m4 (jm_FUNC_STRERROR_R): Require it.
23896
23897 2000-01-04  Jim Meyering  <meyering@ascend.com>
23898
23899         * m4/d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename from
23900         jm_STRUCT_DIRENT_D_TYPE.
23901         * m4/d-ino.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_INO): Rename from
23902         jm_STRUCT_DIRENT_D_INO.
23903         * m4/utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Rename from
23904         jm_STRUCT_UTIMBUF.
23905         * m4/jm-macros.m4: Reflect s/jm_STRUCT_/jm_CHECK_TYPE_STRUCT_/
23906         renamings.
23907         * m4/utime.m4: Likewise.
23908
23909         * m4/timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): New file, macro.
23910         * m4/jm-macros.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): Require it.
23911
23912 2000-01-03  Paul Eggert  <eggert@twinsun.com>
23913
23914         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Search for nanosleep in -lrt
23915         (for Solaris 7) and in -lposix4 (for Solaris 2.5.1).
23916
23917 2000-01-02  Jim Meyering  <meyering@ascend.com>
23918
23919         * m4/search-libs.m4: Escape `$' in $3 of dnl comment.  I no longer
23920         remember if this is necessary.
23921
23922 1999-12-26  Jim Meyering  <meyering@ascend.com>
23923
23924         * m4/jm-macros.m4: Use it here.
23925         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): New file/macro.
23926
23927 1999-12-23  Jim Meyering  <meyering@ascend.com>
23928
23929         * m4/jm-macros.m4: Check for clock_gettime (moved from
23930         fileutils/configure.in)
23931         Check for gettimeofday.
23932
23933 1999-12-20  Jim Meyering  <meyering@ascend.com>
23934
23935         * m4/strftime.m4: Remove kludge, now that I'm using the fixed
23936         autoconf-2.14a-1999-12-20.
23937
23938 1999-12-19  Jim Meyering  <meyering@ascend.com>
23939
23940         * m4/lstat-slash.m4: New file.
23941         * m4/jm-macros.m4: Use the new macro:
23942         jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
23943
23944 1999-12-07  Jim Meyering  <meyering@ascend.com>
23945
23946         * m4/perl.m4: Require that File::Compare be available, too.
23947         Too many systems seem to lack it.
23948
23949         * m4/strftime.m4: Add checks for most of the cpp macros tested in
23950         GNU's strftime.c.  Prompted by a patch from Paul Eggert.
23951
23952 1999-11-18  Paul Eggert  <eggert@twinsun.com>
23953
23954         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around a
23955         problem with the QNX 4.25 shell, which doesn't propagate exit
23956         status of failed commands inside shell assignments.
23957
23958 1999-11-17  Jim Meyering  <meyering@ascend.com>
23959
23960         * m4/gettext.m4: Use new AC_CONFIG_LINKS in place of AC_LINK_FILES.
23961
23962 1999-11-07  Jim Meyering  <meyering@ascend.com>
23963
23964         * m4/getloadavg.m4: Add `, 1, [FIXME]' to each use of AC_DEFINE.
23965
23966 1999-11-06  Jim Meyering  <meyering@ascend.com>
23967
23968         * m4/link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): New file/macro.
23969         * m4/jm-macros.m4 (jm_MACROS): Use it here.
23970
23971 1999-11-05  Jim Meyering  <meyering@ascend.com>
23972
23973         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Move some tests from
23974         configure.in of textutils, fileutils, and sh-utils into this one
23975         (shared between those packages) file.
23976         Use `AC_CHECK_MEMBERS((struct stat.st_blksize))' instead of deprecated
23977         AC_STRUCT_ST_BLKSIZE.
23978
23979 1999-11-03  Jim Meyering  <meyering@ascend.com>
23980
23981         * m4/ssize_t.m4: Remove file.  No longer needed since the new version
23982         of AC_CHECK_TYPE checks includes unistd.h.
23983         * m4/jm-macros.m4: Use straight `AC_CHECK_TYPE(ssize_t, int)'.
23984         Suggestion from Akim Demaille.
23985
23986 1999-10-30  Jim Meyering  <meyering@ascend.com>
23987
23988         * m4/uintmax_t.m4: Require 2.14a.  Remove backslash before backtick in
23989         m4-quoted string.
23990         * m4/ls-mntd-fs.m4: Likewise.
23991         * m4/jm-macros.m4: Likewise.  Also, use AC_TYPE_SSIZE_T instead
23992         * m4/jm-winsz1.m4: Likewise.
23993
23994         * m4/const.m4: Remove file, since the fix made it into the experimental
23995         version of autoconf.
23996         * m4/mktime.m4: Likewise.
23997
23998         * m4/check-type.m4: Remove file, now that the latest version of
23999         AC_CHECK_TYPE takes a third arg to specify additional #includes.
24000
24001         * m4/ssize_t.m4: New file, requires experimental version of autoconf.
24002         * m4/jm-macros.m4: Use new AC_TYPE_SSIZE_T instead of my hacked
24003         AC_CHECK_TYPE.
24004
24005 1999-10-04  Jim Meyering  <meyering@ascend.com>
24006
24007         * m4/jm-macros.m4: Don't require autoconf-2.14.1.
24008
24009 1999-09-22  Paul Eggert  <eggert@twinsun.com>
24010
24011         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around GCC
24012         2.95.1 bug with HP-UX 10.20.
24013
24014 1999-09-17  Jim Meyering  <meyering@ascend.com>
24015
24016         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add strdup.
24017         Paul Nevai reported a link failure on a NeXT CUBE with NeXTSTEP 3.3
24018         due to missing strdup (against sh-utils-2.0).
24019
24020 1999-08-29  Jim Meyering  <meyering@ascend.com>
24021
24022         * m4/jm-macros.m4: Require jm_BISON.
24023         * m4/bison.m4: New file.
24024
24025 1999-08-17  Paul Eggert  <eggert@twinsun.com>
24026
24027         * m4/largefile.m4 (AC_SYS_LARGEFILE): Fix typo: missing comma
24028         in value for _FILE_OFFSET_BITS, which broke ports to HP-UX 10.20.
24029
24030 1999-08-05  Jim Meyering  <meyering@ascend.com>
24031
24032         * m4/getline.m4: Rename test file from conftestdata to conftest.data
24033         to avoid conflicts with `conftest' on 8+3 filesystems.
24034         Suggestion from Eli Zaretskii.
24035
24036 1999-08-04  Jim Meyering  <meyering@ascend.com>
24037
24038         * m4/jm-macros.m4: Move a 4-line block of code from the configure.in of
24039         fileutils and sh-utils (textutils's getline test was inadequate).
24040         (AM_FUNC_GETLINE): Run this test.
24041         (AC_CHECK_FUNCS): Check for getdelim.
24042         Reported by Bob Proulx.
24043
24044 1999-08-02  Jim Meyering  <meyering@ascend.com>
24045
24046         * m4/jm-macros.m4: Add a comment.
24047
24048 1999-08-01  Paul Eggert  <eggert@twinsun.com>
24049
24050         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check whether
24051         <inttypes.h> defines strtoumax as a macro (and not as a
24052         function).
24053
24054 1999-08-01  Paul Eggert  <eggert@twinsun.com>
24055
24056         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Make sure
24057         that we can shift, multiply and divide unsigned long long
24058         values; Ultrix cc can't do it.
24059
24060 1999-08-01  Paul Eggert  <eggert@twinsun.com>
24061
24062         * m4/mktime.m4: New file, which is a preview of what should appear
24063         in the next public autoconf release.
24064
24065 1999-08-01  Paul Eggert  <eggert@twinsun.com>
24066
24067         * m4/lfs.m4: Remove this file.
24068         * m4/largefile.m4: New file.  It contains the old contents of
24069         lfs.m4, except that all names with prefix AC_LFS have been
24070         changed to use the prefix AC_SYS_LARGEFILE instead, to be
24071         compatible with future autoconf versions.  Also, some minor m4
24072         quoting problems have been fixed.
24073
24074 1999-08-01  Paul Eggert  <eggert@twinsun.com>
24075
24076         * m4/gettext.m4 (AM_WITH_NLS): Remove unnecessary lines.
24077         Fix typo: $nls_cv_header_intl was misspelled as $nsl_cv_header_intl.
24078         (AM_GNU_GETTEXT): Fix problem with brackets and m4 quoting,
24079         and simplify the shell code.
24080
24081 1999-08-01  Jim Meyering  <meyering@ascend.com>
24082
24083         * m4/mktime.m4 (AC_FUNC_MKTIME): Undefine to avoid syntax errors from
24084         m4.
24085
24086 1999-07-20  Jim Meyering  <meyering@ascend.com>
24087
24088         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memmove.
24089
24090 1999-07-15  Jim Meyering  <meyering@ascend.com>
24091
24092         * m4/jm-macros.m4 (AC_CHECK_FUNCS): Check for getpagesize.
24093
24094 1999-05-22  Jim Meyering  <meyering@ascend.com>
24095
24096         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memchr.
24097
24098 1999-05-20  Jim Meyering  <meyering@ascend.com>
24099
24100         * m4/search-libs.m4 [AC_SEARCH_LIBS]: Quote name in undefine.
24101         Add a colon after each `then' in case $4 is empty.
24102
24103 1999-05-16  Jim Meyering  <meyering@ascend.com>
24104
24105         * m4/search-libs.m4: New file to override autoconf's AC_SEARCH_LIBS.
24106
24107 1999-05-10  Jim Meyering  <meyering@ascend.com>
24108
24109         * m4/jm-mktime.m4: Reflect renaming: AM_FUNC_MKTIME -> AC_FUNC_MKTIME.
24110
24111         * m4/jm-macros.m4: Require 2.14.1, since we use newly-renamed
24112         AC_FUNC_MKTIME.
24113
24114 1999-05-10  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
24115
24116         * m4/jm-mktime.m4, putenv.m4: Fix typos in config.h comments.
24117
24118 1999-05-04  Paul Eggert  <eggert@twinsun.com>
24119
24120         * m4/lfs.m4 (AC_LFS): -n32, -o32, and -n64 should be in CFLAGS,
24121         not CPPFLAGS, so that linking works correctly in IRIX.
24122
24123 1999-04-30  Paul Eggert  <eggert@twinsun.com>
24124
24125         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add dup2.
24126
24127 1999-04-20  Paul Eggert  <eggert@twinsun.com>
24128
24129         * m4/uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Move unsigned long
24130         long check into new jm_AC_TYPE_UNSIGNED_LONG_LONG macro.
24131         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require
24132         jm_AC_TYPE_UNSIGNED_LONG_LONG.
24133         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): New file/macro.
24134
24135         * m4/lfs.m4: Port to AIX and HP-UX.  Support cross-compilation.
24136
24137 1999-04-20  Jim Meyering  <meyering@ascend.com>
24138
24139         * m4/xstrtoumax.m4: Require jm_AC_TYPE_UNSIGNED_LONG_LONG.
24140         AC_REPLACE xstroull if necessary.  From Paul Eggert.
24141         (AC_CHECK_FUNCS): Remove strtoull, strtoumax, strtouq.
24142
24143 1999-04-18  Jim Meyering  <meyering@ascend.com>
24144
24145         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): New file/macro.
24146         * m4/jm-macros.m4: Use it.
24147
24148 1999-04-06  Jim Meyering  <meyering@ascend.com>
24149
24150         * m4/strftime.m4: Remove test for %f.
24151
24152 1999-03-29  Jim Meyering  <meyering@ascend.com>
24153
24154         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): New macro, contains the
24155         superset of the AC_TYPE_* checks in the textutils, fileutils,
24156         and sh-utils, plus AC_TYPE_PID_T.  Paul Eggert suggested adding
24157         AC_TYPE_PID_T.
24158
24159 1999-03-28  Jim Meyering  <meyering@ascend.com>
24160
24161         * m4/jm-macros.m4: Define GNU_PACKAGE here.
24162         Be sure to AC_SUBST it, once again, so that @GNU_PACKAGE@ is
24163         replaced e.g., in the *.sh files of the sh-utils.
24164
24165 1999-03-20  Jim Meyering  <meyering@ascend.com>
24166
24167         * m4/jm-macros.m4: s/jm_WITH_REGEX/jm_INCLUDED_REGEX/.
24168         * m4/regex.m4 (jm_INCLUDED_REGEX): Rename from jm_WITH_REGEX.
24169         Don't depend on AM_GLIBC.  Suggestions from Alain Magloire.
24170
24171 1999-03-19  Jim Meyering  <meyering@ascend.com>
24172
24173         * m4/jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): New macro.
24174
24175 1999-03-12  Jim Meyering  <meyering@ascend.com>
24176
24177         * m4/jm-macros.m4: Use AC_FUNC_SETVBUF_REVERSED.
24178
24179 1999-03-07  Jim Meyering  <meyering@ascend.com>
24180
24181         * m4/jm-glibc-io.m4: Use only those *_unlocked macros that are
24182         declared.
24183
24184 1999-02-17  Jim Meyering  <meyering@ascend.com>
24185
24186         * m4/gettext.m4 (AM_GNU_GETTEXT): Do `changequote' around use of
24187         brackets in macro definition.  From Eli Zaretskii and Alain Magloire.
24188
24189 1999-02-07  Jim Meyering  <meyering@ascend.com>
24190
24191         * m4/group-member.m4: New file -- extracted from sh-utils'
24192         configure.in.
24193
24194         1999-02-05  Eli Zaretskii  <eliz@is.elta.co.il>
24195         * m4/gettext.m4: Support DOS-style d:/foo/bar absolute file names.
24196
24197 1999-02-06  Jim Meyering  <meyering@ascend.com>
24198
24199         * m4/chown.m4: Use `AC_SUBST(LIBOBJS)' since we set LIBOBJS.
24200         * m4/fnmatch.m4: Likewise.
24201         * m4/getgroups.m4: Likewise.
24202         * m4/lstat.m4: Likewise.
24203         * m4/malloc.m4: Likewise.
24204         * m4/putenv.m4: Likewise.
24205         * m4/realloc.m4: Likewise.
24206         * m4/regex.m4: Likewise.
24207         * m4/stat.m4: Likewise.
24208         * m4/strftime.m4: Likewise.
24209         Suggestion from Alain Magloire.
24210
24211         * m4/chown.m4: Use `.$ac_objext', not `.o'.
24212         * m4/fnmatch.m4: Likewise.
24213         * m4/getgroups.m4: Likewise.
24214         * m4/getline.m4: Likewise.
24215         * m4/lstat.m4: Likewise.
24216         * m4/malloc.m4: Likewise.
24217         * m4/memcmp.m4: Likewise.
24218         * m4/putenv.m4: Likewise.
24219         * m4/realloc.m4: Likewise.
24220         * m4/regex.m4: Likewise.
24221         * m4/stat.m4: Likewise.
24222         * m4/strftime.m4: Likewise.
24223         Suggestion from Alain Magloire.
24224
24225         * m4/jm-macros.m4: Actually invoke jm_WITH_REGEX now that it requires
24226         an argument.
24227
24228         * m4/regex.m4: Add a run-time Test for proper operation of
24229         re_compile_pattern.
24230
24231 1999-01-31  Jim Meyering  <meyering@ascend.com>
24232
24233         * m4/getloadavg.m4: Check for locale.h and the function, setlocale.
24234
24235 1999-01-30  Jim Meyering  <meyering@ascend.com>
24236
24237         * m4/check-type.m4: Use 3-arg form of AC_DEFINE.
24238
24239         * m4/jm-mktime.m4: Make this a wrapper around the official
24240         AM_FUNC_MKTIME rather than my private copy, now that the official one
24241         is up to date.
24242         * m4/mktime.m4: Remove file.
24243
24244         * m4/getloadavg.m4: Use 3-arg form of AC_DEFINE.
24245         * m4/uptime.m4: Likewise.
24246         * m4/uintmax_t.m4: Likewise.
24247
24248 1999-01-28  Jim Meyering  <meyering@ascend.com>
24249
24250         * m4/jm-macros.m4: Use jm_AFS.
24251         * m4/afs.m4: New file (from fileutils' configure.in).
24252
24253         * m4/assert.m4: Use the 3-argument forms of AC_DEFINE* macros.
24254         * m4/chown.m4: Likewise.
24255         * m4/d-ino.m4: Likewise.
24256         * m4/d-type.m4: Likewise.
24257         * m4/fnmatch.m4: Likewise.
24258         * m4/getgroups.m4: Likewise.
24259         * m4/gettext.m4: Likewise.
24260         * m4/jm-mktime.m4: Likewise.
24261         * m4/jm-winsz2.m4: Likewise.
24262         * m4/lcmessage.m4: Likewise.
24263         * m4/ls-mntd-fs.m4: Likewise.
24264         * m4/malloc.m4: Likewise.
24265         * m4/memcmp.m4: Likewise.
24266         * m4/putenv.m4: Likewise.
24267         * m4/realloc.m4: Likewise.
24268         * m4/st_mtim.m4: Likewise.
24269         * m4/strftime.m4: Likewise.
24270
24271 1999-01-16  Jim Meyering  <meyering@ascend.com>
24272
24273         * m4/jm-macros.m4 (ARGMATCH_DIE): Define.
24274         (ARGMATCH_DIE_DECL): Define.
24275
24276 1999-01-12  Jim Meyering  <meyering@ascend.com>
24277
24278         * m4/Makefile.am.in: Rewrite to avoid using fmt.
24279         Reported by Lars Hecking.
24280
24281 1999-01-10  Jim Meyering  <meyering@ascend.com>
24282
24283         * m4/fstypename.m4: Use the new 3-arg form of AC_DEFINE instead of my
24284         gross kludge.
24285         * m4/inttypes_h.m4: Likewise.
24286         * m4/lstat.m4: Likewise.
24287         * m4/malloc.m4: Likewise.
24288         * m4/readdir.m4: Likewise.
24289         * m4/realloc.m4: Likewise.
24290         * m4/st_dm_mode.m4: Likewise.
24291         * m4/stat.m4: Likewise.
24292         * m4/utimbuf.m4: Likewise.
24293         * m4/utimes.m4: Likewise.
24294
24295         * m4/check-decl.m4: Use the new 3-arg form of AC_DEFINE instead of the
24296         AC_CHECK_FUNCS hack.  Now, it's still a hack, but at least the
24297         comments in config.h.in are meaningful.
24298
24299         * m4/jm-macros.m4: Require autoconf-2.13 here.
24300
24301         * m4/regex.m4: By default, don't use the included regex.c on systems
24302         with glibc 2.  Suggestion from Uli Drepper.
24303
24304 1999-01-02  Jim Meyering  <meyering@ascend.com>
24305
24306         * m4/jm-macros.m4: Replace strcasecmp and strncasecmp.
24307
24308 1998-12-18  Jim Meyering  <meyering@ascend.com>
24309
24310         * m4/Makefile.am.in (Makefile.am): Simplify rule.
24311         Based on a suggestion from Lars Hecking.
24312
24313 1998-11-16  Paul Eggert  <eggert@twinsun.com>
24314
24315         * m4/lfs.m4 (AC_LFS): Add support for HP-UX 10.20 and HP-UX 11.
24316
24317 1998-11-16  Jim Meyering  <meyering@ascend.com>
24318
24319         * m4/lfs.m4: Double-quote the `uname...` expression.
24320
24321 1998-11-14  Jim Meyering  <meyering@ascend.com>
24322
24323         * m4/lstat.m4: Correct comment.  POSIX does not permit it to succeed.
24324         * m4/stat.m4: Likewise.
24325
24326 1998-11-03  Jim Meyering  <meyering@ascend.com>
24327
24328         * m4/stat.m4: Rewrite to set HAVE_STAT_EMPTY_STRING_BUG.
24329         * m4/lstat.m4: Rewrite to set HAVE_LSTAT_EMPTY_STRING_BUG.
24330
24331 1998-10-18  Jim Meyering  <meyering@ascend.com>
24332
24333         * m4/check-decl.m4 (jm_CHECK_DECL_LOCALTIME_R): Remove macro.
24334
24335 1998-10-17  Jim Meyering  <meyering@ascend.com>
24336
24337         * m4/decl.m4 (jm_CHECK_DECLARATION): Don't hard-code which headers to
24338         include, though we still hard-code the `require'-like AC_CHECK_HEADERS
24339         calls for those previously hard-coded headers.  Instead, take a new
24340         parameter.
24341         (jm_CHECK_DECLARATIONS): Reflect interface change.
24342         * m4/check-decl.m4 (jm_CHECK_DECLS): Likewise.
24343         (jm_CHECK_DECL_LOCALTIME_R): New macro.
24344
24345         * m4/mktime.m4: Test for spring-forward gap before long-running test.
24346
24347 1998-10-14  Jim Meyering  <meyering@ascend.com>
24348
24349         * m4/mktime.m4: Use the more portable "TZ=PST8PDT,M4.1.0,M10.5.0"
24350         instead of "TZ=America/Vancouver".  From Paul Eggert.
24351
24352 1998-10-11  Jim Meyering  <meyering@ascend.com>
24353
24354         * m4/mktime.m4 (jm_AM_FUNC_MKTIME): New file and macro.
24355         This adds a test for a recently added compatibility fix for mktime.c.
24356         * m4/jm-mktime.m4: Require jm_AM_FUNC_MKTIME, not AM_FUNC_MKTIME.
24357
24358 1998-09-27  Jim Meyering  <meyering@ascend.com>
24359
24360         * m4/jm-macros.m4 (jm_MACROS): Require jm_FUNC_FNMATCH.
24361
24362         * m4/fnmatch.m4 (jm_FUNC_FNMATCH): New file/macro.  Extracted from
24363         ../configure.in, including a change from Gordon Matzigkeit to allow
24364         cross-compiling for the Hurd.
24365
24366         * m4/glibc.m4: New file/macro to test for the GNU C Library
24367         versions 1 and 2.  From Gordon Matzigkeit.
24368         Indent.
24369
24370 1998-09-21  Jim Meyering  <meyering@ascend.com>
24371
24372         * m4/chown.m4: Declare locals: before, after.  From Andries Brouwer.
24373
24374 1998-08-18  Paul Eggert  <eggert@twinsun.com>
24375
24376         Port nanosecond-resolution times to UnixWare 2.1.2 and
24377         pedantic Solaris 2.6.
24378
24379         * m4/st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC): Renamed from
24380         AC_STRUCT_ST_MTIM.
24381         * m4/st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC):
24382         Generate name of ns member, instead of just 1 or undef.
24383         Allow for UnixWare 2.1.2 and Solaris 2.6 if in pedantic mode.
24384
24385 1998-08-15  Jim Meyering  <meyering@ascend.com>
24386
24387         * m4/ssize_t.m4 (jm_TYPE_SSIZE_T): Remove file.
24388         * m4/check-type.m4: New file.  Replacement for AC_CHECK_TYPE.
24389         * m4/jm-macros.m4: Use the new AC_CHECK_TYPE(ssize_t, int)
24390         instead of jm_TYPE_SSIZE_T.
24391
24392 1998-08-12  Jim Meyering  <meyering@ascend.com>
24393
24394         * m4/st_dm_mode.m4: New file.  From Johan Danielsson.
24395
24396 1998-08-02  Jim Meyering  <meyering@ascend.com>
24397
24398         * m4/st_mtim.m4: Use hack to avoid having to put #undef HAVE_ST_MTIM
24399         in acconfig.h manually.
24400
24401 1998-07-31  Paul Eggert  <eggert@twinsun.com>
24402
24403         * m4/st_mtim.m4: New file.
24404
24405 1998-07-28  Jim Meyering  <meyering@ascend.com>
24406
24407         * m4/utimes.m4: Undef stat.
24408
24409 1998-07-25  Jim Meyering  <meyering@ascend.com>
24410
24411         * m4/utime.m4 (jm_FUNC_UTIME): New file and macro.
24412         * m4/utimes.m4 (jm_FUNC_UTIMES_NULL): New file and macro.
24413
24414 1998-07-09  Manfred Hollstein  <manfred@s-direktnet.de>
24415
24416         * m4/chown.m4 (jm_FUNC_CHOWN): Add a check to verify that the
24417         uid and gid actually remain unchanged.
24418
24419 1998-07-07  Jim Meyering  <meyering@ascend.com>
24420
24421         * m4/jm-glibc-io.m4: Remove fclose_unlocked.
24422
24423 1998-07-04  Jim Meyering  <meyering@ascend.com>
24424
24425         * m4/regex.m4: Use syscmd, ifelse, and sysval.  Mainly as an exercise
24426         to prove that this macro can be used in packages without regex.c.
24427
24428 1998-07-04  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
24429
24430         * m4/gettext.m4 (AM_WITH_NLS): Remove intl/libintl.h if <libintl.h>
24431         is to be used.
24432
24433 1998-07-03  Jim Meyering  <meyering@ascend.com>
24434
24435         * m4/gettext.m4: Add -lintl if it's found to be necessary.
24436
24437         * m4/gettext.m4: New file -- from gettext-0.10.35.
24438         * m4/lcmessage.m4: Likewise.
24439         * m4/progtest.m4: Likewise.
24440
24441         * m4/regex.m4 (jm_WITH_REGEX): New file and macro.
24442         * m4/jm-macros.m4: Require the new macro.
24443
24444 1998-06-29  Jim Meyering  <meyering@ascend.com>
24445
24446         * m4/fstypename.m4: Include sys/param.h.  NetBSD 1.3.1 requires this
24447         for the definition of NGROUPS (used in a system header included
24448         by sys/mount.h).
24449
24450 1998-06-28  Jim Meyering  <meyering@ascend.com>
24451
24452         * m4/ls-mntd-fs.m4: New file.
24453         * m4/fstypename.m4: New file.
24454
24455         * m4/jm-macros.m4: Require the new macro.
24456         * m4/jm-glibc-io.m4: New file.
24457
24458 1998-05-19  Jim Meyering  <meyering@ascend.com>
24459
24460         * m4/jm-macros.m4: Add jm_FUNC_LCHOWN.
24461         * m4/lchown.m4: New file.
24462
24463         * m4/Makefile.am.in: New file.
24464         * m4/Makefile.am (Makefile.am): Depend on Makefile.am.in.
24465
24466 1998-05-14  Jim Meyering  <meyering@ascend.com>
24467
24468         * m4/Makefile.am (EXTRA_DIST): Add them.
24469         * m4/jm-macros.m4: New file.
24470         * m4/utimbuf.m4: New file.
24471
24472 1998-05-12  Jim Meyering  <meyering@ascend.com>
24473
24474         * m4/Makefile.am (EXTRA_DIST): Add isc-posix.m4.
24475
24476 1998-05-11  Jim Meyering  <meyering@ascend.com>
24477
24478         * m4/isc-posix.m4: New file.
24479
24480 1998-05-10  Jim Meyering  <meyering@ascend.com>
24481
24482         * m4/jm-mktime.m4: Use AM_FUNC_MKTIME, now that it's up to date.
24483
24484 1998-05-09  Jim Meyering  <meyering@ascend.com>
24485
24486         * m4/Makefile.am (EXTRA_DIST): Add ssize_t.m4.
24487         (EXTRA_DIST): Remove mktime.m4, now that the new version is included
24488         with automake.
24489
24490         * m4/ssize_t.m4: New file.
24491         * m4/mktime.m4: Remove file -- the new automake has this now.
24492
24493 1998-04-26  Jim Meyering  <meyering@ascend.com>
24494
24495         * m4/assert.m4: New file.
24496         * m4/Makefile.am (EXTRA_DIST): Add assert.m4.
24497
24498 1998-04-05  Jim Meyering  <meyering@ascend.com>
24499
24500         * m4/prereq.m4 (jm_PREREQ_REGEX): New macro.
24501         (jm_PREREQ): Use it here.
24502
24503 1998-03-23  Jim Meyering  <meyering@eng.ascend.com>
24504
24505         * m4/inttypes_h.m4: Kludges so I don't have to add HAVE_INTTYPES_H
24506         in acconfig.h.
24507
24508 1998-03-15  Jim Meyering  <meyering@eng.ascend.com>
24509
24510         * m4/prereq.m4: New file.
24511         * m4/error.m4: New file.
24512         * m4/Makefile.am (EXTRA_DIST): Add error.m4 and prereq.m4.
24513
24514 1998-02-07  Jim Meyering  <meyering@eng.ascend.com>
24515
24516         * m4/getline.m4: Don't set am_cv_func_working_getline before the
24517         cache-check for the same variable -- that defeated the purpose of
24518         the test; the test program was never run.  This was a problem only
24519         on systems with losing getline functions -- HP-UX 10.20 is one.
24520         Reported by Bjorn Helgaas.
24521
24522 1998-02-06  Jim Meyering  <meyering@eng.ascend.com>
24523
24524         * m4/Makefile.am (EXTRA_DIST): Add perl.m4.
24525
24526 1998-01-10  Jim Meyering  <meyering@na-net.ornl.gov>
24527
24528         * m4/Makefile.am (EXTRA_DIST): Add const.m4.
24529
24530         * m4/const.m4: New file.  Use an initializer in this declaration
24531         typedef int charset[2]; const charset x;
24532         Reported by Bob Glickstein.
24533
24534 1997-12-21  Jim Meyering  <meyering@na-net.ornl.gov>
24535
24536         * m4/chown.m4: Fix reversed types on -1 args to chown.
24537         From Kaveh Ghazi.
24538
24539 1997-12-14  Jim Meyering  <meyering@na-net.ornl.gov>
24540
24541         * m4/check-decl.m4: s/DECLARATION_/DECL_/g.
24542         Add lseek and memchr.
24543
24544         * m4/decl.m4: s/HAVE_DECLARATION_/HAVE_DECL_/g.
24545         T.E.Dickey <dickey@clark.net> said that some older preprocessors
24546         have a 20-character limit on names.
24547
24548 1997-11-30  Jim Meyering  <meyering@na-net.ornl.gov>
24549
24550         * m4/inttypes_h.m4: New file.
24551         * m4/uintmax_t.m4: New file.
24552         * m4/Makefile.am (EXTRA_DIST): Add inttypes_h.m4 and uintmax_t.m4.
24553
24554 Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006
24555   Free Software Foundation, Inc.
24556 Copying and distribution of this file, with or without modification,
24557 are permitted provided the copyright notice and this notice are preserved.