8aa538bbbf137062609e1747152b491effd51441
[gnulib.git] / ChangeLog
1 2006-12-30  Paul Eggert  <eggert@cs.ucla.edu>
2
3         * gnulib-tool (SORT): Remove, since we no longer assume GNU sort.
4         Rewrite so as not to assume GNU sort.  Also, don't assume
5         the C locale, and avoid an "eval" that could cause trouble.
6
7         * lib/getpagesize.h (getpagesize) [defined __amigaos4__]:
8         Define.  Trivial patch from Henning Nielsen Lund, originally
9         sent to bug-grep@gnu.org today.
10
11 2006-12-29  Paul Eggert  <eggert@cs.ucla.edu>
12
13         * lib/acl.h: Include sys/types.h and sys/stat.h, for mode_t and
14         struct stat.  Problem reported by Henning Nielsen Lund.
15         * lib/acl.c: Include acl.h first, to check interface.  Don't
16         bother to include sys/types.h and sys/stat.h again.
17
18 2006-12-28  Paul Eggert  <eggert@cs.ucla.edu>
19
20         Import the following change from libc; problem reported by
21         Sven Verdoolaege.
22
23         2005-10-13  Ulrich Drepper  <drepper@redhat.com>
24
25         [BZ #1373]
26         * lib/argp.h: Remove __NTH for __argp_usage inline function.
27
28 2006-12-28  Jim Meyering  <jim@meyering.net>
29
30         * build-aux/announce-gen: Do not assume that the package
31         builds any of tar.gz, tar.bz2, and .xdelta files.
32         Suggestion from Simon Josefsson.
33
34 2006-12-28  Simon Josefsson  <simon@josefsson.org>
35
36         * modules/announce-gen: New file.
37
38 2006-12-27  Paul Eggert  <eggert@cs.ucla.edu>
39
40         * lib/mbchar.h: Just include <wctype.h>; the wctype module
41         handles its gotchas now.
42         * lib/mbswidth.c: Likewise.
43         * lib/wcwidth.h: Likewise.
44         * m4/mbchar.m4 (gl_MBCHAR): Don't bother checking for wctype.h
45         and iswcntrl; the wctype module does this stuff now.
46         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
47         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
48         * modules/mbchar (Depends-on): Add wctype.
49         * modules/mbswidth (Depends-on): Likewise.
50         * modules/wcwidth (Depends-on): Likewise.
51
52 2006-12-27  Eric Blake  <ebb9@byu.net>
53
54         * lib/fnmatch.c: Reinstate inclusion of <wchar.h>, since this
55         module uses more than what <wctype.h> is required to provide.
56
57 2006-12-26  Eric Blake  <ebb9@byu.net>
58
59         * gnulib-tool (sed_extract_prog): Avoid space-tab.
60
61 2006-12-26  Eric Blake  <ebb9@byu.net>
62
63         * modules/absolute-header: New module.
64         * modules/fcntl (Depends-on): Depend on it.
65         * modules/inttypes (Depends-on): Likewise.
66         * modules/stdint (Depends-on): Likewise.
67         * modules/sys_stat (Depends-on): Likewise.
68         * modules/wctype (Depends-on): Likewise.
69         * MODULES.html.sh (Support for building libraries and
70         executables): Document it.
71
72 2006-12-25  Paul Eggert  <eggert@cs.ucla.edu>
73
74         * gnulib-tool (SED): Remove, undoing previous change.
75         The problem was that it broke coreutils on Solaris, because
76         "sed --posix" leaked into a makefile.
77         (sed): New alias, if 'alias' and GNU sed.
78
79 2006-12-24  Jim Meyering  <jim@meyering.net>
80
81         Work around an fchownat bug in glibc-2.4:
82         http://lists.ubuntu.com/archives/ubuntu-users/2006-September/093218.html
83         This bug would cause "chown -RP ... DIR" to follow symlinks in DIR,
84         in spite of the -P option.
85         * m4/openat.m4 (gl_FUNC_FCHOWNAT, gl_FUNC_FCHOWNAT_DEREF_BUG):
86         New macros.
87         (gl_PREREQ_OPENAT): Require gl_FUNC_FCHOWNAT.
88         * modules/openat (Files): Add lib/fchownat.c.
89         * lib/openat.c (fchownat): Don't define here.  Move to...
90         * lib/fchownat.c: ...this new file.
91
92 2006-12-23  Paul Eggert  <eggert@cs.ucla.edu>
93
94         Fix bug reported by Bruno Haible in
95         <http://lists.gnu.org/archive/html/bug-gnulib/2006-12/msg00228.html>
96         where quotearg.c didn't compile on Mac OS X 10.2 because it
97         lacks <wchar.h> and wint_t.
98         * lib/wctype_.h (__wctype_wint_t): New type.
99         Include <stdio.h>, <time.h>, <wchar.h> only if HAVE_WINT_T.
100         (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit, iswgraph):
101         (iswlower, iswprint, iswpunct, iswspace, iswupper, ixwxdigit):
102         Arg is now of type __wctype_wint_t, not wint_t.
103         * m4/wctype.m4 (gl_WCTYPE_H): Require gt_TYPE_WINT_T, and
104         substitute HAVE_WINT_T.
105         * modules/wctype (Files): Add m4/wint_t.m4.
106         (wctype.h): Substitute HAVE_WINT_T.
107
108 2006-12-23  Bruno Haible  <bruno@clisp.org>
109
110         * lib/safe-read.h [C++]: Wrap declarations in extern "C".
111
112 2006-12-23  Bruno Haible  <bruno@clisp.org>
113
114         * lib/canonicalize-lgpl.c (__realpath): Test HAVE_READLINK instead of
115         S_ISLNK.
116         Needed because gnulib's sys/stat.h replacement defines S_ISLNK on
117         mingw.
118
119 2006-12-22  Bruno Haible  <bruno@clisp.org>
120
121         * lib/copy-file.c: Include acl.h.
122         (copy_file_preserving) [USE_ACL]: Use copy_acl instead of chmod.
123         Close the file descriptors only after being done with copy_acl.
124         * modules/copy-file (Depends-on): Add acl.
125
126 2006-12-22  Bruno Haible  <bruno@clisp.org>
127
128         * gnulib-tool (SED): New variable.
129         Use $SED instead of sed everywhere.
130
131 2006-12-22  Bruno Haible  <bruno@clisp.org>
132
133         * modules/no-c++: New file.
134         * m4/no-c++.m4: New file.
135         * MODULES.html.sh (Support for building libraries and executables):
136         Add no-c++.
137
138 2006-12-22  Paul Eggert  <eggert@cs.ucla.edu>
139
140         * m4/mktime.m4 (AC_FUNC_MKTIME): Sync from Autoconf.
141         Include <limits.h>, and use its INT_MAX to rewrite the
142         j loop so that it does not overflow 'int'.  Problem reported by
143         Ralf Wildenhues in
144         <http://lists.gnu.org/archive/html/bug-gnulib/2006-12/msg00084.html>.
145         Play it safe by shifting left by 1 rather than multiplying by 2,
146         as GCC is less likely to optimize this away when the value
147         is signed (when it assumes overflow leads to undefined behavior).
148         Also, don't assume time_t uses two's complement.
149
150 2006-12-21  Paul Eggert  <eggert@cs.ucla.edu>
151
152         * MODULES.html.sh: New module wctype.
153         * lib/wctype_.h, m4/wctype.m4, modules/wctype: New files.
154         * lib/fnmatch.c: Don't bother to include <wchar.h> before
155         <wctype.h>, since the new wctype module should fix this.
156         * lib/quotearg.c: Include <wctype.h> unconditionally, since
157         the wctype module should arrange for it.
158         * lib/regex_internal.h: Likewise.
159         * m4/quotearg.m4 (gl_QUOTEARG): Don't check for wctype.h or iswprint,
160         since the wctype module should handle this now.
161         * m4/regex.m4 (gl_PREREQ_REGEX): Don't check for wctype.h.
162         * modules/fnmatch (Depends-on): Add wctype.
163         * modules/quotearg (Depends-on): Likewise.
164         * modules/regex (Depends-on): Likewise.
165
166 2006-12-19  Bruno Haible  <bruno@clisp.org>
167
168         * lib/strdup.h [C++]: Wrap definitions in extern "C".
169         Suggested by Lorenzo Bettini <bettini@dsi.unifi.it>.
170
171 2006-12-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
172
173         * modules/savewd (Depends-on): Fix dependency on fcntl.
174
175 2006-12-18  Paul Eggert  <eggert@cs.ucla.edu>
176
177         * m4/stdint.m4 (gl_STDINT_H): Set STDINT_H to empty if stdint.h
178         conforms to C99, rather than relying on the user's environment
179         setting of STDINT_H.
180
181 2006-12-18  Paul Eggert  <eggert@cs.ucla.edu>
182         and Eric Blake  <ebb9@byu.net>
183
184         * lib/dirname.h (DOUBLE_SLASH_IS_DISTINCT_ROOT): Default to 0, not 1.
185         This is more consistent with the other defines here.
186         * m4/double-slash-root.m4 (gl_DOUBLE_SLASH_ROOT):
187         Port to z/OS.  Problem reported by Paul Gilmartin.
188         Change local vars to use gl_ prefix rather than ac_.
189         Don't define DOUBLE_SLASH_IS_DISTINCT_ROOT to 0, for consistency
190         with other defines.
191         * modules/double-slash-root: New module.
192         * modules/dirname (Files): Remove m4/double-slash-root.m4.
193         (Depends-on): Add double-slash-root.
194         * MODULES.html.sh (File system functions): Mention new module.
195
196 2006-12-14  Paul Eggert  <eggert@cs.ucla.edu>
197
198         * lib/yesno.c [!ENABLE_NLS]: Don't include getline.h.
199         (yesno) [!ENABLE_NLS]: Don't invoke getline or rpmatch.
200         This is for the benefit of gzip, which doesn't do i18n.
201
202 2006-12-12  Jim Meyering  <jim@meyering.net>
203
204         * m4/acl.m4 (gl_ACL_GET_FILE): Fix logic error.
205         Reported by Andreas Schwab <schwab@suse.de>.
206
207 2006-12-12  Bruno Haible  <bruno@clisp.org>
208
209         Merge these changes.
210         2006-09-05  Bruno Haible  <bruno@clisp.org>
211         * lib/iconvme.c (iconv_string): No need to save and restore errno when
212         iconv_alloc succeeded.
213         (iconv_alloc): Don't assume that malloc() or realloc(), when failing,
214         sets errno to ENOMEM. (malloc on GNU/kFreeBSD doesn't.) No need to
215         test for " && dest " at the end - dest is always != NULL there. Call
216         iconv with 4xNULL arguments initially, to reset the state. Call iconv
217         with 2xNULL arguments, also to flush the state storage. Handle the
218         IRIX iconv behaviour. Realloc the final result, to throw away unused
219         memory.
220
221 2006-12-11  Paul Eggert  <eggert@cs.ucla.edu>
222
223         * m4/openat.m4 (gl_FUNC_OPENAT): Don't compile mkdirat
224         and fchmodat unconditionally, since glibc 2.4 has them.
225         Problem reported by Arkadiusz Miskiewicz.
226
227 2006-12-10  Bruno Haible  <bruno@clisp.org>
228
229         * gnulib-tool (func_import): Show the include files only for those
230         modules that are copied and specified.
231         Reported by Karl Berry.
232
233 2006-12-08  Jim Meyering  <jim@meyering.net>
234
235         * build-aux/announce-gen ($VERSION): Don't use of $Revision...$.
236         Instead, use Emacs' time-stamp write hook.  Note that the time is UTC.
237
238         * build-aux/announce-gen: Add two new options, both optional:
239         --bootstrap-tools=TOOL_LIST
240               a comma-separated list of tools, e.g.,
241               autoconf,automake,bison,gnulib
242         --gnulib-snapshot-date=DATE
243               if gnulib is in the bootstrap tool list,
244               then report this as the snapshot date.
245               If not specified, use the current date/time.
246               If you specify a date here, be sure it's UTC.
247
248 2006-12-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
249
250         * tests/test-argp-2.sh: Fix test to match actual output.
251         (func_compare): Fix sed script to be portable.
252
253 2006-12-05  Paul Eggert  <eggert@cs.ucla.edu>
254
255         * lib/utimens.c (futimens) [HAVE_BUGGY_NFS_TIME_STAMPS]: Add a
256         workaround for this case.  It is not autoconfigured now; offhand
257         it's hard to see how to autoconfigure it.
258
259 2006-12-03  Paul Eggert  <eggert@cs.ucla.edu>
260
261         * lib/mkdir-p.c (make_dir_parents): Fix race condition when making
262         a directory that is about to be chowned.  Such a directory's
263         initial file permissions should permit the owner only and this
264         should not be changed until after the chown, since the group and
265         other bits would be incorrect if they granted permission before
266         the chown.
267
268         Fix porting problem for iswctype reported by Georg Schwarz in:
269         http://lists.gnu.org/archive/html/bug-coreutils/2006-12/msg00017.html
270         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Require HAVE_ISWCTYPE, too.
271         * lib/regex_internal.h (RE_ENABLE_I18N): Likewise.
272         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for iswctype, too.
273         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
274
275 2006-12-03  Jim Meyering  <jim@meyering.net>
276
277         * lib/fts.c (fts_load): Don't set sp->fts_dev here, since
278         p->fts_statp may not yet be defined.
279         (fts_read): Instead, set it in the caller, once p->fts_statp is
280         sure to be defined, and corresponds to a top-level directory.
281         This bug made du -x fail.  Here's the coreutils test case:
282         http://git.sv.gnu.org/gitweb/?p=coreutils.git;a=commit;h=ba45154d8e9f
283         Reported by Mike Frysinger.
284
285 2006-12-01  Jim Meyering  <jim@meyering.net>
286
287         * modules/savewd (Depends-on): Add fcntl_h to avoid self-test
288         build failure due to missing definition of HAVE_WORKING_O_NOFOLLOW.
289         Reported by Simon Josefsson.
290
291 2006-11-30  Jim Meyering  <jim@meyering.net>
292
293         * m4/warning.m4: Use the all-permissive copyright notice
294         recommended by RMS (rather than LGPL).
295         * m4/vararrays.m4: Likewise.
296         * m4/flexmember.m4: Likewise.
297
298 2006-11-29  Bruno Haible  <bruno@clisp.org>
299
300         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
301         noinst_LIBRARIES. Augment noinst_LIBRARIES and noinst_LTLIBRARIES
302         using +=.
303         Reported by Simon Josefsson <simon@josefsson.org>.
304
305 2006-11-28  James Youngman <jay@gnu.org>
306
307         * README: Advise users that they might find the bug-gnulib@gnu.org
308         and autotools-announce@gnu.org mailing lists useful.
309
310 2006-11-28  Bruno Haible  <bruno@clisp.org>
311
312         * m4/ptrdiff_max.m4: Remove file.
313
314 2006-11-21  Bruno Haible  <bruno@clisp.org>
315
316         * m4/eoverflow.m4 (gl_EOVERFLOW): Use AC_COMPUTE_INT instead of
317         _AC_COMPUTE_INT.
318         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
319         * m4/ptrdiff_max.m4 (gl_PTRDIFF_MAX): Use AC_COMPUTE_INT instead of
320         _AC_COMPUTE_INT.
321         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
322         * m4/size_max.m4 (gl_SIZE_MAX): Use AC_COMPUTE_INT instead of
323         _AC_COMPUTE_INT.
324         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
325
326 2006-11-28  Jim Meyering  <jim@meyering.net>
327
328         * lib/regcomp.c (parse_branch): Rename local, exp->expr, to avoid
329         warning from "gcc -Wshadow" about shadowing the builtin.
330
331 2006-11-27  Bruno Haible  <bruno@clisp.org>
332
333         * m4/stdint.m4 (gl_STDINT_BITSIZEOF): Use AC_COMPUTE_INT instead of
334         _AC_COMPUTE_INT.
335         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
336
337 2006-11-27  Bruno Haible  <bruno@clisp.org>
338             Paul Eggert  <eggert@cs.ucla.edu>
339
340         * lib/regex.h (__restrict_arr): Redo logic of #if, for clarity.
341
342 2006-11-26  Bruno Haible  <bruno@clisp.org>
343
344         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
345         noinst_LTLIBRARIES.
346
347 2006-11-27  Paul Eggert  <eggert@cs.ucla.edu>
348             Bruno Haible  <bruno@clisp.org>
349
350         * lib/gettext.h (_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS): Define to 0
351         if compiling with "gcc -ansi".
352
353 2006-11-26  Paul Eggert  <eggert@cs.ucla.edu>
354
355         Fix some incompatibilities with gcc -ansi -pedantic.
356         * lib/regex.h (__restrict_arr): Don't use the [restrict] syntax
357         if compiling pedantically with GCC, unless it's C99 or later.
358         Don't trust sys/cdefs.h's definition of __restrict_arr, either, as
359         it mishandles gcc -ansi -pedantic as well.
360         * lib/regex_internal.h (re_token_t): Don't use enum bitfields
361         if gcc -pedantic.
362         * lib/regexec.c (check_node_accept_bytes): Don't use auto
363         initializers for struct if -pedantic, unless it's C99 or later.
364
365 2006-11-25  Nix  <nix@esperi.org.uk>  (tiny change)
366
367         * m4/fcntl_h.m4 (gl_FCNTL_H): Test the atime, not the mtime.
368         Don't close an fd more than once. Identical atimes indicate
369         success, not failure.
370
371 2006-11-22  Robinson Mittmann <bob@hoplon.com>  (tiny change)
372
373         * lib/sincosl.c (kernel_sinl): Fix typo in threshold.
374
375 2006-11-23  Jim Meyering  <jim@meyering.net>
376
377         * build-aux/announce-gen: New file.  From coreutils.
378
379 2006-11-22  Jim Meyering  <jim@meyering.net>
380
381         Work around a compile-time error from the HP-UX 11.00 /bin/cc.
382         * lib/fts.c (enum Fts_stat): Give this previously-anon enum a name.
383         (fts_read): Use a temporary to narrow the overused st_size member
384         before using it in a switch statement.  Reported by Matthew Woehlke.
385
386         * m4/clock_time.m4 (gl_CLOCK_TIME): Quote AC_SUBST argument.
387         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Likewise.
388
389 2006-11-20  Bruno Haible  <bruno@clisp.org>
390
391         * gettext.m4 (AM_GNU_GETTEXT): Revert 2005-07-28 patch: Use
392         changequote instead of pairs of brackets.
393         Reported by Andreas Schwab <schwab@suse.de>.
394
395 2006-11-21  Jim Meyering  <jim@meyering.net>
396
397         * lib/fts.c (fts_safe_changedir): Move a declaration "up",
398         so as to remain compatible with older compilers.
399         Patch from Michael Deutschmann.
400
401 2006-11-20  Paul Eggert  <eggert@cs.ucla.edu>
402
403         * MODULES.html.sh (File system functions): Add openat.
404
405         * lib/openat.h (rpl_fstatat): New macro, if
406         [HAVE_OPENAT && ! LSTAT_FOLLOWS_SLASHED_SYMLINK.
407         (fstatat): Define to rpl_fstatat under the same conditions,
408         unless COMPILING_FSTATAT.
409         * m4/openat.m4 (gl_FUNC_OPENAT): Compile fstatat.c too, if fstatat
410         seems to have the bug.
411         * lib/fstatat.c: New file.
412         * modules/openat (Files): Add it.
413
414 2006-11-20  Bruno Haible  <bruno@clisp.org>
415
416         * Makefile: New file.
417
418 2006-11-20  Jim Meyering  <jim@meyering.net>
419
420         The beginnings of syntax-related checks for gnulib.
421         * lib/Makefile: New file.
422         * lib/t-idcache: New script.  Ensure that the two halves of
423         idcache.c stay in sync.
424
425         * lib/idcache.c: Adjust comments in user- and group- portions to
426         be more accurate, and to be consistent with one another.
427
428 2006-11-20  Jim Meyering  <jim@meyering.net>
429
430         * lib/idcache.c: Restore most of the 2006-11-06 patch, so as to
431         continue using the flexible array member (thus, this module performs
432         half as many malloc calls), with the addition that...
433         (getgroup, getuser): Consistently record a non-match via an empty
434         "name" string, and map an empty string match to a NULL return value.
435         * modules/idcache (Depends-on): Re-add flexmember.
436
437         * lib/idcache.c (getuser): Remove all uses of the register keyword.
438         (getuidbyname, getgroup, getgidbyname): Likewise.
439
440         Use cleaner syntax: NULL rather than 0.
441         * lib/idcache.c (getuidbyname, getgidbyname): Return NULL, not 0.
442
443 2006-11-20  Paul Eggert  <eggert@cs.ucla.edu>
444
445         * lib/idcache.c: Undo most recent patch, dated 2006-11-06.
446         It mishandled the case where the group was missing.
447         Problem reported by Greg Schafer.
448         * modules/idcache: Likewise.
449
450 2006-11-18  Jim Meyering  <jim@meyering.net>
451
452         * check-module (%exempt_header): Add exception for some
453         conditionally-included headers.
454
455         * modules/i-ring (Depends-on): Add verify.
456         (License): Change to LGPL.
457
458 2006-11-16  Paul Eggert  <eggert@cs.ucla.edu>
459
460         * modules/getaddinfo (Depends-on): Remove inttostr; add snprintf.
461         * lib/getaddrinfo.c: Include snprintf.h rather than intprops.h
462         and inttostr.h.  Use snprintf rather than uinttostr, so that
463         LGPLed code doesn't depend on GPLed.
464
465 2006-11-17  Paul Eggert  <eggert@cs.ucla.edu>
466
467         * modules/inline (License): Change from GPL to LGPL.
468
469 2006-11-17  Jim Meyering  <jim@meyering.net>
470
471         * modules/d-type (License): Switch to LGPL.
472
473 2006-11-15  Bruno Haible  <bruno@clisp.org>
474
475         * m4/alloca.m4 (gl_FUNC_ALLOCA): Fix the AC_CACHE_CHECK message.
476
477 2006-11-15  Eric Blake  <ebb9@byu.net>
478
479         * m4/allocsa.m4 (gl_ALLOCSA): Don't invoke macro already picked up by
480         the module dependency.
481
482 2006-11-15  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
483             Bruno Haible  <bruno@clisp.org>
484
485         * gnulib-tool (func_create_testdir): Add license consistency check.
486
487 2006-11-15  Eric Blake  <ebb9@byu.net>
488
489         * m4/alloca.m4 (gl_FUNC_ALLOCA): Use AC_CACHE_CHECK to avoid a
490         random "(cached)" in configure output.
491
492 2006-11-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
493
494         * m4/inttypes.m4 (gl_INTTYPES_H): Use AC_CACHE_CHECK so that the
495         test for conforming inttypes.h is both announced and cached.
496
497         * MODULES.html.sh (seen_modules, seen_files): New variables.
498         (func_module): Rewrite to use a few less gnulib-tool and sed
499         invocations.  Avoid a couple of quadratic algorithms for ...
500         (missed_modules, missed_files): ... these, with ...
501         (func_append, func_tmpdir): ... these new functions, from
502         gnulib-tool.  Analogously, install traps for cleanup.
503
504         * tests/test-gc.c (main): Remove unused variables.
505         * tests/test-read-file.c: Include stdlib.h, for 'free'.
506
507 2006-11-14  Paul Eggert  <eggert@cs.ucla.edu>
508
509         * modules/inttostr (License): Change to LGPL.
510
511 2006-11-14  Eric Blake  <ebb9@byu.net>
512
513         * modules/tempname (License): Change to LGPL.
514
515 2006-11-14  Eric Blake  <ebb9@byu.net>
516
517         * doc/functions.texi (Function Portability): *printf functions on
518         Cygwin now understand all POSIX size specifiers.
519
520 2006-11-14  Bruno Haible  <bruno@clisp.org>
521
522         * modules/c-ctype (License): Change to LGPL.
523
524 2006-11-12  Bruno Haible  <bruno@clisp.org>
525
526         * m4/lib-link.m4 (AC_LIB_LINKFLAGS, AC_LIB_HAVE_LINKFLAGS,
527         AC_LIB_LINKFLAGS_BODY): Also set a LIB${NAME}_PREFIX variable. Needed
528         for GNOME libraries, for which the include files are installed in
529         subdirectories of $prefix/include.
530
531 2006-11-12  Bruno Haible  <bruno@clisp.org>
532
533         * m4/lib-link.m4: Require at least autoconf-2.54.
534         (AC_LIB_LINKFLAGS_BODY) [autoconf < 2.61]: Turn dots into the library
535         name to underscores for the --with option.
536
537 2006-11-13  Bruno Haible  <bruno@clisp.org>
538
539         * gnulib-tool (func_create_testdir): Set gl_source_base correctly in
540         the tests directory.
541         Reported by Ralf Wildenhues.
542
543 2006-11-13  Bruno Haible  <bruno@clisp.org>
544
545         * gnulib-tool (func_emit_initmacro_start): Also override AC_LIBSOURCES.
546         (func_emit_initmacro_end): Undo the override here.
547         (func_emit_initmacro_done): Emit a definition for gl_LIBSOURCES.
548         Works around the famous automake error in coreutils.
549
550 2006-11-13  Eric Blake  <ebb9@byu.net>
551
552         * lib/gl_anytree_oset.h (gl_tree_search_atleast): Return the
553         element, not its node.
554
555 2006-11-12  Bruno Haible  <bruno@clisp.org>
556
557         * gnulib-tool (func_emit_lib_Makefile_am): Replace occurrences of
558         '$(top_srcdir)/build-aux/', taking into account the real auxdir.
559
560 2006-11-12  Bruno Haible  <bruno@clisp.org>
561
562         * gnulib-tool: New option --local-symlink.
563         (func_usage): Document it.
564         (lsymbolic): New variable.
565         (func_import, func_create_testdir): If --symlink was not specified,
566         test whether --local-symlink was specified and the file comes from
567         the local_gnulib_dir.
568
569 2006-11-12  Bruno Haible  <bruno@clisp.org>
570
571         * gnulib-tool (func_ln): New function.
572         (func_ln_if_changed, func_create_testdir): Use it instead of "ln -s".
573
574 2006-11-12  Bruno Haible  <bruno@clisp.org>
575
576         Finish support for source files in subdirectories.
577         * gnulib-tool (func_emit_lib_Makefile_am): If some of the source files
578         are in subdirectories, set uses_subdirs and add 'subdir-objects' to
579         AUTOMAKE_OPTIONS.
580         (func_import, func_create_testdir): Invoke AM_PROG_CC_C_O in this case.
581
582 2006-11-12  Bruno Haible  <bruno@clisp.org>
583
584         * gnulib-tool (func_get_automake_snippet): Synthesize also an
585         EXTRA_lib_SOURCES augmentation.
586         (func_emit_lib_Makefile_am): Initialize EXTRA_lib..._SOURCES to empty.
587
588 2006-11-12  Jim Meyering  <jim@meyering.net>
589
590         Make fts (in FTS_CWDFD mode) more efficient by caching a few open
591         file descriptors.  This also averts a failure on systems with
592         native openat support when a traversed directory lacks "x" access.
593         * lib/fts_.h: Include "i-ring.h"
594         (struct FTS) [fts_fd_ring]: New member.
595         * lib/fts.c (RESTORE_INITIAL_CWD): Also call fd_ring_clear.
596         (FCHDIR): Add parentheses.
597         (fd_ring_check, fd_ring_print) [!FTS_DEBUG]: Define away.
598         (cwd_advance_fd): Add a 3rd parameter.  Adjust all callers.
599         When descending, rather than simply closing the previous
600         fts_cwd_fd value, push that file descriptor onto the ring.
601         (same_fd, fd_ring_print, fd_ring_check) [FTS_DEBUG]: New functions.
602         (fts_open): Initialize the new fd_ring member.
603         (fts_close): Clear the ring.
604         (fts_safe_changedir): When possible, use our new fd_ring to skip
605         the diropen and fstat and dev/ino comparison that would normally
606         accompany a virtual `chdir ("..")'.
607
608         * modules/fts (Depends-on): Add i-ring.
609         * modules/i-ring: New module.
610         * lib/i-ring.c, lib/i-ring.h, lib/i-ring-test.c: New files.
611         * m4/i-ring.m4: New file.
612
613 2006-11-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
614
615         * gnulib-tool (func_create_testdir): Fix replacement of
616         `build-aux' in configure.ac.  Run autotools in gltests
617         subdirectory.
618         (func_create_testdir, func_create_megatestdir, test): There is
619         no need for '--force' in most autotool invocations in a new
620         tree.  Actually fail the whole test if any of the tools, or the
621         configure or make stages fail.
622
623         Sync from Automake.
624         * build-aux/gnupload: Revert last change.  Add pointer to upload
625         instructions of the GNU Maintenance Instructions.
626         Suggestion by Karl Berry.
627
628 2006-11-10  Jim Meyering  <jim@meyering.net>
629
630         * lib/fts.c [FTS_DEBUG]: Don't try to print a pointer via %s.
631
632 2006-11-09  Paul Eggert  <eggert@cs.ucla.edu>
633
634         * lib/gettext.h (dgettext, dcgettext, ngettext) [! ENABLE_NLS]:
635         (dngettext, dcngettext, bindtextdomain) [! ENABLE_NLS]:
636         (bind_textdomain_codeset) [! ENABLE_NLS]:
637         Evaluate all the arguments.  That way, callers get compatible behavior
638         if the arguments have side effects.  Also, it avoids some GCC
639         diagnostics in some cases; Joel E. Denny reported problems when Bison
640         was configured with --enable-gcc-warnigs.
641
642 2006-11-10  Jim Meyering  <jim@meyering.net>
643
644         * m4/inline.m4 (gl_INLINE): Check with the compiler, not cpp, so that
645         relevant options in CFLAGS (like -O, -fno-inline) are taken into
646         account.
647
648 2006-11-10  Jim Meyering  <jim@meyering.net>
649
650         * modules/inline: New file/module.
651         * modules/xalloc (Files): Remove m4/inline.m4.
652         (Depends-on): Add inline, instead.
653         * modules/oset: Likewise.
654         * modules/list: Likewise.
655
656 2006-11-09  Paul Eggert  <eggert@cs.ucla.edu>
657
658         * lib/stdint_.h (uintmax_t): Fix typo: int64_t -> uint64_t.
659         Problem reported by Matthew Woehlke.
660
661 2006-11-09  Bruno Haible  <bruno@clisp.org>
662
663         * lib/tempname.c (gen_tempname): Remove variant that invokes
664         __gen_tempname.
665         * m4/tempname.m4 (gl_FUNC_GEN_TEMPNAME): Don't test for
666         __gen_tempname.
667
668 2006-11-08  Bruno Haible  <bruno@clisp.org>
669
670         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Set ac_cv_type_long_long_int
671         to 'yes' instead of 'cross-compiling'.
672
673 2006-11-08  Paul Eggert  <eggert@cs.ucla.edu>
674
675         * lib/quotearg.h (quotearg_free): New decl.
676         * lib/quotearg.c (quotearg_free): New function.
677         (slot0, nslots, slotvec0, slotvec):
678         Now file-scope so that quotearg_free can get at them.
679
680 2006-11-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
681
682         Sync from Automake.
683         * build-aux/gnupload: Add missing 'gnu' to example URL.
684         Report by Karl Berry.
685
686 2006-11-08  Bruno Haible  <bruno@clisp.org>
687
688         * m4/inline.m4 (gl_INLINE): Also test __NO_INLINE__.
689         Suggested by Paul Eggert.
690
691 2006-11-08  Jim Meyering  <jim@meyering.net>
692
693         * lib/fts.c [!_LGPL_PACKAGE]: Don't include fcntl--.h twice.
694         It's already included if !_LIBC.
695         (fts_safe_changedir): Add a comment.
696
697 2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
698
699         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Detect bug in
700         Tandem NonStop Kernel (OSS) cc -O circa 2004, reported by
701         Matthew Woehlke.
702
703         * lib/xalloc.h (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): Move
704         definitions up, to avoid colliding with change below.
705         (static_inline) [HAVE_INLINE]: New macro.
706         (xnmalloc, xnrealloc, x2nrealloc, xcharalloc):
707         Provide extern decls when !HAVE_INLINE.  Do not define unless
708         static_inline is defined, either by us or by xmalloc.c.  Use
709         static_inline rather than static inline.
710         (XCALLOC): Optimize sizeof(T) = 1 case.
711         * lib/xmalloc.c (static_inline) [!HAVE_INLINE]: New macro.
712
713 2006-11-07  Bruno Haible  <bruno@clisp.org>
714
715         * lib/xalloc.h (XNMALLOC): Restore optimization of sizeof(T) = 1 case.
716         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Require gl_INLINE instead of
717         AC_C_INLINE.
718         * modules/xalloc (Files): Add m4/inline.m4.
719
720 2006-11-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
721
722         * README: Fix typo.
723         * doc/gnulib.texi (Miscellaneous Notes): Likewise, rename...
724         (Miscellanous Notes): ...from this.
725
726 2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
727
728         * m4/flexmember.m4 (AC_C_FLEXIBLE_ARRAY_MEMBER):
729         Mention that offsetof should be used instead of sizeof.
730         From Bruno Haible.
731
732 2006-11-07  Bruno Haible  <bruno@clisp.org>
733
734         * lib/w32spawn.h (prepare_spawn): Use XNMALLOC instead of xmalloc.
735
736 2006-11-06  Paul Eggert  <eggert@cs.ucla.edu>
737
738         Simplify xmalloc expressions. Add overflow check in xmalloc arguments.
739         * lib/gl_anyavltree_list2.h (create_subtree_with_contents):
740         (gl_tree_create, gl_tree_add_first, gl_tree_add_last):
741         (gl_tree_add_before, gl_tree_add_after):
742         Use XMALLOC instead of xmalloc, and XCALLOC instead of xzalloc.
743         * lib/gl_anyhash_list2.h (hash_resize): Likewise.
744         * lib/gl_anylinked_list2.h (gl_linked_create_empty, gl_linked_create):
745         (gl_linked_add_first, gl_linked_add_last, gl_linked_add_before):
746         (gl_linked_add_after, gl_linked_add_at): Likewise.
747         * lib/gl_anyrbtree_list2.h (create_subtree_with_contents):
748         (gl_tree_create, gl_tree_add_first, gl_tree_add_last):
749         (gl_tree_add_before, gl_tree_add_after): Likewise.
750         * lib/gl_anytree_list2.h (gl_tree_create_empty): Likewise.
751         * lib/gl_anytree_oset.h (gl_tree_create_empty): Likewise.
752         * lib/gl_anytreehash_list1.h (add_to_bucket): Likewise.
753
754 2006-11-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
755
756         * lib/gl_oset.h: Use C comment style, not C++ comment style.
757
758 2006-11-06  Bruno Haible  <bruno@clisp.org>
759
760         * m4/inline.m4: New file.
761         * m4/gl_list.m4 (gl_LIST): Require gl_INLINE.
762         * modules/list (Files): Add m4/inline.m4.
763         * modules/oset (Files): Likewise.
764
765 2006-11-06  Paul Eggert  <eggert@cs.ucla.edu>
766
767         * lib/idcache.c: Include <stddef.h>, for offsetof.
768         (struct userid.name): Change from char * to a flexible array member.
769         All uses changed.
770         * modules/idcache (Depends-on): Add flexmember.
771
772         * MODULES.html.sh (Core language properties): New module flexmember.
773         * modules/flexmember, m4/flexmember.m4: New files.
774
775         * lib/xalloc.h (xnmalloc, xnrealloc, x2nrealloc): Now static
776         inline functions that are identical with the old xnmalloc_inline,
777         xnrealloc_inline, x2nrealloc_inline of lib/xmalloc.c.  This is so
778         that we can avoid some unnecessary integer multiplications and
779         divisions in the common case where the element size is known at
780         compile time.
781         (XNMALLOC) [HAVE_INLINE]: Remove special case, which is no longer
782         needed.
783         (xnboundedmalloc): Remove.
784         (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): Use lower-case letters for
785         arguments, for consistency with rest of this header.
786         (xcharalloc): Rewrite using XNMALLOC.
787         * lib/xmalloc.c (xnmalloc_inline, xnmalloc, xnrealloc_inline):
788         (xnrealloc, x2nrealloc_inline, x2nrealloc): Remove.  The *_inline
789         versions have been moved to lib/xalloc.h and renamed to be the
790         non-*_inline versions.
791         (xmalloc, xrealloc): Implement without reference to the xnmalloc
792         and xnrealloc functions, since those functions are now inline and
793         now call us.
794         (x2realloc): Invoke x2realloc, not x2realloc_inline, to accommodate
795         renaming described above.
796         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Remove AC_C_INLINE since
797         xmalloc.c no longer uses inline directly.  gl_PREREQ_XALLOC now
798         captures the dependency in AC_C_INLINE.
799
800         New module canonicalize-lgpl, proposed by Charles Wilson in
801         <http://lists.gnu.org/archive/html/bug-gnulib/2006-11/msg00020.html>
802         with a few small changes afterwards.
803         * MODULES.html.sh (File system functions): New module
804         canonicalize-lgpl.
805         * lib/canonicalize.h: Add comments for canonicalize_filename_mode
806         and canonicalize_file_name.
807         * lib/canonicalize-lgpl.c, m4/canonicalize-lgpl.m4:
808         * modules/canonicalize-lgpl: New files.
809
810 2006-11-05  Bruno Haible  <bruno@clisp.org>
811
812         * gnulib-tool (func_import, func_create_testdir): Create directories
813         also for files in subdirectories of lib/.
814
815 2006-11-05  Bruno Haible  <bruno@clisp.org>
816
817         * lib/gl_array_list.c (gl_array_iterator_next): Make pointer decrement
818         ANSI C compliant.
819
820 2006-11-03  Bruno Haible  <bruno@clisp.org>
821
822         Simplify xmalloc expressions. Add overflow check in xmalloc arguments.
823         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Require AC_C_INLINE.
824         * lib/xalloc.h (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): New macros.
825         (xnboundedmalloc): New inline function.
826         * lib/classpath.c (new_classpath): Use XNMALLOC instead of xmalloc.
827         * lib/clean-temp.c (create_temp_dir): Use XNMALLOC, XMALLOC instead of
828         xmalloc.
829         * lib/concatpath.c (concatenated_pathname): Use XNMALLOC instead of
830         xmalloc.
831         * lib/fatal-signal.c (at_fatal_signal): Use XNMALLOC instead of xmalloc.
832         * lib/findprog.c (find_in_path): Use XNMALLOC instead of xmalloc.
833         * lib/gl_array_list.c (gl_array_create_empty): Use XMALLOC instead of
834         xmalloc.
835         (gl_array_create): Use XNMALLOC, XMALLOC instead of xmalloc.
836         * lib/gl_array_oset.c (gl_array_create_empty): Use XNMALLOC instead of
837         xmalloc.
838         * lib/gl_avltree_oset.c (gl_tree_add_first, gl_tree_add_before,
839         gl_tree_add_after): Use XMALLOC instead of xmalloc.
840         * lib/gl_carray_list.c (gl_carray_create_empty): Use XMALLOC instead of
841         xmalloc.
842         (gl_carray_create): Use XNMALLOC, XMALLOC instead of xmalloc.
843         * lib/gl_rbtree_oset.c (gl_tree_add_first, gl_tree_add_before,
844         gl_tree_add_after): Use XMALLOC instead of xmalloc.
845         * lib/gl_sublist.c (gl_sublist_create): Use XMALLOC instead of xmalloc.
846         * lib/pagealign_alloc.c (new_memnode): Use XMALLOC instead of xmalloc.
847         * lib/sh-quote.c (shell_quote_argv): Use XNMALLOC instead of xmalloc.
848         * lib/xvasprintf.c (xstrcat): Use XNMALLOC instead of xmalloc.
849
850 2006-11-03  Bruno Haible  <bruno@clisp.org>
851
852         * lib/c-ctype.h [C++]: Define functions without name mangling.
853         * lib/fwriteerror.h [C++]: Likewise.
854         * lib/gcd.h [C++]: Likewise.
855         * lib/linebreak.h [C++]: Likewise.
856
857 2006-11-03  Paul Eggert  <eggert@cs.ucla.edu>
858
859         * lib/canonicalize.h: (canonicalize_mode_t, CAN_EXISTING):
860         (CAN_ALL_BUT_LAST, CAN_MISSING, canonicalize_filename_mode):
861         Define only if PROVIDE_CANONICALIZE_FILENAME_MODE is defined.
862         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME):
863         Check for functions and headers just once.
864         Check for declaration of canonicalize_file_name.
865         Define PROVIDE_CANONICALIZE_FILENAME_MODE.
866
867 2006-11-02  Charles Wilson  <cygwin@cwilson.fastmail.fm>
868
869         * gnulib-tool (func_import): Fix typo in actioncmd.
870
871 2006-11-02  Bruno Haible  <bruno@clisp.org>
872
873         * gnulib-tool (func_get_automake_snippet): Interpret a backslash-
874         newline sequence in the Makefile.am snippet as a space, like "make"
875         does.
876         Reported by Roger Persson <perrog@gmail.com>.
877
878 2006-11-01  Bruno Haible  <bruno@clisp.org>
879
880         * m4/strcase.m4 (gl_FUNC_STRNCASECMP): Check whether strncasecmp is
881         already declared in <string.h>.
882         * lib/strcase.h (strncasecmp): Don't declare it if yes.
883
884 2006-11-01  Bruno Haible  <bruno@clisp.org>
885
886         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Don't define strcasecmp here.
887         * lib/strcase.h: Include <string.h>.
888         (strcasecmp): Define to rpl_strcasecmp here.
889
890 2006-11-01  Bruno Haible  <bruno@clisp.org>
891
892         * lib/printf-parse.c (PRINTF_PARSE): Cast malloc/realloc results.
893
894 2006-11-01  Eric Blake  <ebb9@byu.net>
895
896         * lib/mkstemp-safer.c (mkstemp_safer): Allow C++ compilation.
897
898         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Allow C++ configuration.
899
900 2006-10-29  Bruno Haible  <bruno@clisp.org>
901
902         Make it compile in C++ mode.
903         * lib/full-write.c (full_rw): Add a cast.
904
905 2006-11-01  Bruno Haible  <bruno@clisp.org>
906
907         * gnulib-tool (func_get_automake_snippet): Change sed_combine_lines to
908         be POSIX compliant.
909         Reported by Roger Persson <perrog@gmail.com>.
910
911 2006-11-01  Eric Blake  <ebb9@byu.net>
912
913         * lib/getopt_.h: Fix comments.
914
915 2006-10-31  Eric Blake  <ebb9@byu.net>
916
917         * modules/tmpdir (Depends-on): Add sys_stat.
918         * modules/mkdtemp (Depends-on): Add tempname, drop unistd.
919         * lib/mkdtemp.c (gen_tempname): Remove; tempname covers this.
920         * lib/tmpdir.c (S_ISDIR): Simplify, thanks to sys_stat.
921         * m4/mkdtemp.m4 (gl_PREREQ_MKDTEMP): Simplify, thanks to
922         tempname.
923
924 2006-10-31  Paul Eggert  <eggert@cs.ucla.edu>
925
926         Avoid some C++ diagnostics reported by Bruno Haible.
927         * lib/quotearg.c (clone_quoting_options): Use xmemdup rather than
928         xmalloc.
929         (quotearg_alloc): Use xcharalloc rather than xmalloc.
930         (struct slotvec): Move to top level.
931         (quotearg_n_options): Rewrite to avoid xmalloc.
932         * lib/xalloc.h (xcharalloc): New function.
933         * (xrealloc, xnrealloc, x2realloc, x2nrealloc, xmemdup):
934         [defined __cplusplus]: Add function template that provides result
935         type propagation.  This part of the change is from Bruno Haible.
936
937 2006-10-29  Bruno Haible  <bruno@clisp.org>
938
939         Make it compile in C++ mode.
940         * lib/striconv.c (mem_cd_iconv): Cast malloc/realloc result.
941         * lib/strnlen1.c (strnlen1): Cast memchr result.
942         * lib/mbchar.h (mb_copy): Rename arguments to 'new_mbc', 'old_mbc'.
943         * lib/clean-temp.c (string_equals, string_hash): Add casts.
944         (create_temp_dir): Rename local variable 'template'.
945         (compile_csharp_using_sscli): Add cast.
946         * lib/fatal-signal.c (at_fatal_signal): Cast xmalloc result.
947         * lib/findprog.c (find_in_path): Likewise.
948         * lib/linebreak.c (mbs_width_linebreaks): Cast malloc result.
949         * lib/wait-process.c (register_slave_subprocess): Likewise.
950
951 2006-10-22  Bruno Haible  <bruno@clisp.org>
952
953         * modules/tsearch: New file.
954         * lib/tsearch.h: New file.
955         * lib/tsearch.c: New file, from glibc-2.5 with small modifications.
956         * m4/tsearch.m4: New file.
957         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add tsearch.
958
959 2006-10-29  Eric Blake  <ebb9@byu.net>
960
961         * lib/arcfour.c: Assume config.h.
962         * lib/arctwo.c: Likewise.
963         * lib/base64.c: Likewise.
964         * lib/check-version.c: Likewise.
965         * lib/crc.c: Likewise.
966         * lib/des.c: Likewise.
967         * lib/gc-gnulib.c: Likewise.
968         * lib/gc-libgcrypt.c: Likewise.
969         * lib/gc-pbkdf2-sha1.c: Likewise.
970         * lib/getaddrinfo.c: Likewise.
971         * lib/getdelim.c: Likewise.
972         * lib/getline.c: Likewise.
973         * lib/hmac-md5.c: Likewise.
974         * lib/hmac-sha1.c: Likewise.
975         * lib/iconvme.c: Likewise.
976         * lib/md2.c: Likewise.
977         * lib/md4.c: Likewise.
978         * lib/memxor.c: Likewise.
979         * lib/read-file.c: Likewise.
980         * lib/readline.c: Likewise.
981         * lib/rijndael-alg-fst.c: Likewise.
982         * lib/rijndael-api-fst.c: Likewise.
983         * lib/xgetdomainname.c: Likewise.
984
985 2006-10-28  Eric Blake  <ebb9@byu.net>
986
987         * lib/xstrndup.c: Assume config.h.
988
989 2006-10-27  Paul Eggert  <eggert@cs.ucla.edu>
990
991         Move stat.h-substitute stuff from lib/stat-macros.h to lib/stat_.h.
992         stat-macros.h is now for our own macros, whereas stat_h is for
993         macros in the <sys/stat.h> name space.
994         * lib/stat-macros.h: Remove copyright notice, as this file is now tiny.
995         (STAT_MACROS_H): Remove.
996         (S_IFMT, S_ISBLK, S_ISCHR, S_ISDIR, S_ISFIFO, S_ISLNK, S_ISNAM):
997         (S_ISMPB, S_ISMPC, S_ISNWK, S_ISREG, S_ISSOCK, S_ISDOOR, S_ISPORT):
998         (S_TYPEISMQ, S_TYPEISTMO, S_TYPEISSEM, S_TYPEISSHM, S_ISCTG, S_ISOFD):
999         (S_ISOFL, S_ISWHT, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IRGRP):
1000         (S_IROTH, S_IWUSR, S_IWGRP, S_IWOTH, S_IXUSR, S_IXGRP, S_IXOTH):
1001         (S_IRWXU, S_IRWXG, S_IRWXO, S_IXUGO, S_IRWXUGO):
1002         Move these macros to ...
1003         * lib/stat_.h: here.  Don't include stat-macros.h.
1004         * lib/canonicalize.c: Don't include stat-macros.h.
1005         * lib/chown.c: Likewise.
1006         * lib/euidaccess.c: Likewise.
1007         * lib/file-type.c: Likewise.
1008         * lib/filemode.c: Likewise.
1009         * lib/glob.c: Likewise.
1010         * lib/isapipe.c: Likewise.
1011         * lib/lchown.c: Likewise.
1012         * lib/lstat.c: Likewise.
1013         * lib/mkdir-p.c: Likewise.
1014         * lib/rmdir.c: Likewise.
1015         * m4/lchown.m4 (gl_FUNC_LCHOWN): Don't require gl_STAT_MACROS.
1016         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Don't check for io.h
1017         unless mkdir isn't declared, to speed up 'configure'.
1018         Always create sys/stat.h, since it's unlikely any real sys/stat.h
1019         would define all the S_* symbols.
1020         * modules/canonicalize (Depends-on):
1021         Depend on sys_stat, not stat-macros.
1022         * modules/chown: Likewise.
1023         * modules/euidaccess: Likewise.
1024         * modules/filemode: Likewise.
1025         * modules/file-type: Likewise.
1026         * modules/glob: Likewise.
1027         * modules/isapipe: Likewise.
1028         * modules/lchown: Likewise.
1029         * modules/lstat: Likewise.
1030         * modules/mkancesdirs: Likewise.
1031         * modules/rmdir: Likewise.
1032         * modules/mkdir-p (Depends-on): Also depend on sys_stat.
1033         * modules/modechange: Likewise.
1034         * modules/stat-macros (Files): Remove m4/stat-macros.m4.
1035         (configure.ac): Remove gl_STAT_MACROS.
1036         * modules/sys_stat (Depends-on): Remove stat-macros.
1037
1038 2006-10-27  Bruno Haible  <bruno@clisp.org>
1039
1040         * m4/signed.m4: Remove file.
1041         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_ARGS_: Remove bh_C_SIGNED
1042         invocation.
1043         * modules/vasnprintf (Files): Remove m4/signed.m4.
1044
1045 2006-10-27  Bruno Haible  <bruno@clisp.org>
1046
1047         Update to GNU gettext 0.16.
1048         * modules/gettext (Files): Add m4/intl.m4, m4/intldir.m4. Remove
1049         m4/inttypes-h.m4, m4/signed.m4.
1050         * m4/gettext.m4: Update to GNU gettext 0.16.
1051         * m4/intl.m4: New file, from GNU gettext.
1052         * m4/intldir.m4: New file, from GNU gettext.
1053         * config/srclist.txt: Update
1054
1055 2006-10-27  Eric Blake  <ebb9@byu.net>
1056
1057         * MODULES.html.sh: Document tempname.
1058         * modules/mkstemp (Depends-on): Add tempname, and drop transitive
1059         dependencies.
1060         (Files): Move lib/tempname.c...
1061         * modules/tempname: ...to this new module.
1062         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Remove tempname checks.
1063         (gl_PREREQ_TEMPNAME): Move...
1064         * m4/tempname.m4: ...to this new file.
1065         * lib/mkstemp.c (includes) [!_LIBC]: Use tempname.h.
1066         * modules/sys_stat (Depends-on): Add stat-macros.
1067         * lib/stat_.h (includes): Pick up stat macros.
1068         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Replace <sys/stat.h>
1069         if stat macros are broken.
1070         * lib/tempname.c (includes): No need to include "stat-macros.h".
1071         (__gen_tempname) [!_LIBC]: Expose as gen_tempname.
1072         (direxists, __path_search) [!_LIBC]: Don't compile these in
1073         gnulib; the tmpdir module covers that.
1074         * lib/tempname.h: New file.
1075
1076 2006-10-26  Paul Eggert  <eggert@cs.ucla.edu>
1077
1078         * COPYING: Explain how gnulib-tool converts licence headers.
1079         Almost all wording by Eric Blake.
1080
1081 2006-10-25  Paul Eggert  <eggert@cs.ucla.edu>
1082
1083         * lib/mbchar.h (is_basic_table): Make read-only.
1084         * lib/mbchar.c (is_basic_table): Likewise.
1085         Reported by John Darrington.
1086
1087 2006-10-25  Bruno Haible  <bruno@clisp.org>
1088
1089         * lib/progname.h (set_program_name): Undefine before defining.
1090
1091 2006-10-25  Bruno Haible  <bruno@clisp.org>
1092
1093         * lib/gettext.h (_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS): Define to
1094         false for non-gcc C++ compilers.
1095         Reported by Nelson H. F. Beebe <beebe@math.utah.edu>.
1096
1097 2006-10-24  Bruno Haible  <bruno@clisp.org>
1098
1099         * lib/striconv.c (mem_cd_iconv, str_cd_iconv): Treat all non-GNU
1100         iconv implementations like Irix iconv.
1101
1102 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
1103
1104         * modules/vararrays: New file.
1105         * m4/vararrays.m4: New file, taken from diffutils.
1106         * MODULES.html.sh: New module vararrays.
1107
1108 2006-10-24  Karl Berry  <karl@gnu.org>
1109
1110         * doc/gnulib-intro.texi: --- instead of --; non-naive naive.
1111         Don't call GNU Unix.
1112
1113 2006-10-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1114
1115         * users.txt: Add Libtool.
1116
1117         Sync from Libtool:
1118
1119         2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
1120
1121         * lib/argz.c: Remove check for HAVE_CONFIG_H, to conform
1122         to gnulib's policy of including config.h unconditionally.
1123
1124 2006-10-24  Bruno Haible  <bruno@clisp.org>
1125
1126         * modules/wcwidth (Files): Add m4/wint_t.m4.
1127         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Require gt_TYPE_WINT_T.
1128         * lib/wcwidth.h (iswprint): Use 'int' if 'wint_t' is not defined.
1129
1130 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
1131
1132         * lib/getdate.y (yyerror): Make the arguments pointer-to-const,
1133         to pacify GCC with some -W flags enabled.  Problem reported by
1134         Bruno Haible.
1135
1136 2006-10-24  Jim Meyering  <jim@meyering.net>
1137
1138         * MODULES.html.sh: Remove uinttostr.  It's not a module.
1139         Reported by Karl Berry.
1140
1141 2006-10-23  Bruno Haible  <bruno@clisp.org>
1142
1143         * lib/fts.c (fts_build): Move variable declaration, for C89 compliance.
1144
1145 2006-10-24  Bruno Haible  <bruno@clisp.org>
1146
1147         * lib/gl_list.h: Use C comment style, not C++ comment style.
1148
1149 2006-10-23  Eric Blake  <ebb9@byu.net>
1150
1151         * lib/getaddrinfo.c (includes): Add missing include.
1152
1153 2006-10-23  Bruno Haible  <bruno@clisp.org>
1154             Paul Eggert  <eggert@cs.ucla.edu>
1155
1156         Ability to rename obstack_free.
1157         * lib/obstack.h (__obstack_free): New macro. Declare instead of
1158         obstack_free.
1159         (obstack_free): Invoke the __obstack_free macro.
1160         * lib/obstack.c (obstack_free): Use __obstack_free macro.
1161
1162 2006-10-23  Bruno Haible  <bruno@clisp.org>
1163             Paul Eggert  <eggert@cs.ucla.edu>
1164
1165         * lib/argp.h (argp_parse, __argp_parse): Comment out the identifiers
1166         __argc, __argv from the declaration. (They are defined as macros on
1167         mingw.)
1168
1169 2006-10-22  Bruno Haible  <bruno@clisp.org>
1170
1171         * doc/gnulib-intro.texi: New file.
1172         * doc/gnulib.texi: Include it.
1173
1174 2006-10-21  Bruno Haible  <bruno@clisp.org>
1175
1176         * doc/gnulib.texi: Split the chapter "Gnulib" into 3 chapters
1177         "Introduction", "Miscellanous Notes", "Particular Modules".
1178
1179 2006-10-21  Bruno Haible  <bruno@clisp.org>
1180
1181         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
1182         Change mostlyclean-local rule to avoid sh syntax error from bash
1183         versions 2.00..2.05 when $(MOSTLYCLEANDIRS) is empty.
1184
1185 2006-10-23  Jim Meyering  <jim@meyering.net>
1186
1187         * lib/getaddrinfo.c (getnameinfo): Use new lightweight uinttostr,
1188         in place of snprintf.
1189
1190         * modules/inttostr (Files): Add lib/uinttostr.c.
1191         * lib/uinttostr.c (inttostr): New file/function.
1192         * lib/inttostr.h (uinttostr): Declare.
1193         * m4/inttostr.m4: Add AC_LIBOBJ([uinttostr]).
1194         * MODULES.html.sh (Numeric conversion functions <stdlib.h>):
1195         Add uinttostr.
1196         * modules/getaddrinfo (Depends-on): Remove snprintf.  Add inttostr.
1197
1198 2006-10-21  Paul Eggert  <eggert@cs.ucla.edu>
1199
1200         * lib/canonicalize.c (ELOOP): Define if not already defined.
1201         Problem reported by Bruno Haible in
1202         <http://lists.gnu.org/archive/html/bug-gnulib/2006-10/msg00282.html>.
1203
1204 2006-10-21  Paul Eggert  <eggert@cs.ucla.edu>
1205
1206         * lib/stdint_.h [defined _AIX]: Don't include <sys/types.h>.
1207         Problem reported by Perry Smith and Ville Laurikari.
1208
1209         * lib/getndelim2.c (SSIZE_MAX): Use same defn that getdelim.c
1210         uses.
1211
1212 2006-10-19  Bruno Haible  <bruno@clisp.org>
1213
1214         * lib/getndelim2.c (SSIZE_MAX): Provide fallback definition. Needed
1215         for mingw.
1216
1217 2006-10-19  Bruno Haible  <bruno@clisp.org>
1218
1219         * lib/openat-priv.h (EOPNOTSUPP): Provide fallback definition.
1220         Needed for mingw.
1221
1222 2006-10-19  Bruno Haible  <bruno@clisp.org>
1223
1224         * m4/size_max.m4 (gl_SIZE_MAX): Cache the result.
1225
1226 2006-10-19  Bruno Haible  <bruno@clisp.org>
1227
1228         * m4/allocsa.m4 (gl_ALLOCSA): Invoke gl_FUNC_ALLOCA, don't AC_REQUIRE
1229         it.
1230
1231 2006-10-19  Bruno Haible  <bruno@clisp.org>
1232
1233         * m4/alloca.m4 (gl_FUNC_ALLOCA): Cache the result of the AC_EGREP_CPP
1234         invocation.
1235
1236 2006-10-19  Bruno Haible  <bruno@clisp.org>
1237
1238         * gnulib-tool (func_create_testdir): Don't include ftruncate and
1239         mountlist by default.
1240
1241 2006-10-16  Bruno Haible  <bruno@clisp.org>
1242
1243         * lib/c-strstr.c: Include c-strstr.h.
1244
1245 2006-10-18  Charles Wilson  <cygwin@cwilson.fastmail.fm>
1246
1247         * gnulib-tool: Don't clobber $sourcebase when $local_gnulib_dir ends
1248         in a slash.
1249
1250 2006-10-18  Bruno Haible  <bruno@clisp.org>
1251
1252         * lib/lock.h [C++]: Wrap definitions in extern "C".
1253
1254 2006-10-18  Bruno Haible  <bruno@clisp.org>
1255
1256         * gnulib-tool (func_emit_initmacro_end): Remove duplicates from the
1257         gl_LIBOBJS list.
1258
1259 2006-10-18  Bruno Haible  <bruno@clisp.org>
1260
1261         * lib/findprog.c (find_in_path): Avoid "gcc -Wwrite-strings" warning.
1262
1263 2006-10-19  Paul Eggert  <eggert@cs.ucla.edu>
1264
1265         * lib/xstrtol.h: Include gettext.h.
1266         (_STRTOL_ERROR): Wrap English-language formats inside gettext.
1267         Problem reported by Eric Blake.
1268         * modules/xstrtol (Depends-on): Add gettext-h.
1269
1270 2006-10-19  Paul Eggert  <eggert@cs.ucla.edu>  (tiny change)
1271
1272         * lib/strftime.c (advance): New macro.
1273         (add): Use it to avoid adding 0 to a FILE *.  FILE can be an
1274         incomplete type, so you can't add 0 to it.  Problem and patch
1275         reported by Eelco Dolstra for dietlibc.
1276
1277 2006-10-18  Jim Meyering  <jim@meyering.net>
1278
1279         * lib/readutmp.c (desirable_utmp_entry): Use "bool" as the
1280         type for a local, and rename it: s/up/user_proc/.
1281
1282 2006-10-18  Sergey Poznyakoff  <gray@gnu.org.ua>
1283
1284         * lib/readutmp.c (desirable_utmp_entry): Implement new flag:
1285         READ_UTMP_USER_PROCESS.
1286         * lib/readutmp.h (READ_UTMP_USER_PROCESS): New flag
1287
1288 2006-10-17  Paul Eggert  <eggert@cs.ucla.edu>
1289
1290         * lib/localcharset.c: Do not check HAVE_SETLOCALE.
1291         * m4/localcharset.m4 (gl_LOCALCHARSET): Don't check for setlocale.
1292
1293 2006-10-17  Eric Blake  <ebb9@byu.net>
1294
1295         * lib/sigprocmask.c (sigprocmask): Fix typo.
1296
1297         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Fix typo.
1298
1299         * modules/clean-temp (Makefile.am): Don't add to make output...
1300         (configure.ac): ...instead define SIGNAL_SAFE_LIST inside
1301         config.h.
1302
1303 2006-10-17  Bruno Haible  <bruno@clisp.org>
1304
1305         * lib/gettext.h (gettext, ngettext, pgettext, npgettext): Define
1306         differently if DEFAULT_TEXT_DOMAIN is set.
1307
1308 2006-10-16  Bruno Haible  <bruno@clisp.org>
1309
1310         * lib/clean-temp.c: Include fwriteerror.h.
1311
1312 2006-10-16  Bruno Haible  <bruno@clisp.org>
1313
1314         * getndelim2.m4 (gl_GETNDELIM2): Remove 2003-10-23 hack.
1315
1316 2006-10-16  Bruno Haible  <bruno@clisp.org>
1317
1318         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Also test for sigset_t.
1319         * lib/sigprocmask.h: Include <sys/types.h>.
1320         (sigset_t): Use the system's definition if present.
1321
1322 2006-10-17  Eric Blake  <ebb9@byu.net>
1323
1324         * lib/xvasprintf.c (includes): Assume config.h.
1325         * lib/xasprintf.c (includes): Likewise.
1326
1327 2006-10-16  Paul Eggert  <eggert@cs.ucla.edu>
1328
1329         * lib/fsusage.c (PROPAGATE_ALL_ONES): Don't assume uintmax_t is
1330         at least as wide as intmax_t.
1331
1332 2006-10-16  Alexandre Duret-Lutz  <adl@gnu.org>
1333
1334         (Imported from Automake.)
1335         * build-aux/gnupload: Update to version 1.1 of directive file.
1336
1337 2006-10-16  Eric Blake  <ebb9@byu.net>
1338
1339         * modules/configmake (Makefile.am): Add pkglibexecdir support, to
1340         match Automake 1.10a.
1341
1342 2006-10-14  Bruno Haible  <bruno@clisp.org>
1343
1344         * modules/sigprocmask: New file.
1345         * lib/sigprocmask.h: New file.
1346         * lib/sigprocmask.c: New file.
1347         * m4/signalblocking.m4 (gl_SIGNALBLOCKING): Renamed from
1348         gt_SIGNALBLOCKING. When not defining HAVE_POSIX_SIGNALBLOCKING,
1349         request sigprocmask.o.
1350         (gl_PREREQ_SIGPROCMASK): New macro.
1351         * modules/fatal-signal (Files): Remove m4/signalblocking.m4.
1352         (Depends-on): Add sigprocmask.
1353         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Don't require
1354         gt_SIGNALBLOCKING. Test for 'raise' only once.
1355         * lib/fatal-signal.c: Include sigprocmask.h.
1356         (fatal_signal_set, init_fatal_signal_set, block_fatal_signals,
1357         unblock_fatal_signals): Define always.
1358         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
1359         sigprocmask.
1360
1361 2006-10-14  Paul Eggert  <eggert@cs.ucla.edu>
1362
1363         Sync from Automake.
1364         * build-aux/install-sh (posix_mkdir): Reject FreeBSD 6.1 mkdir -p -m,
1365         which incorrectly sets the mode of an existing destination
1366         directory.  In some cases the unpatched install-sh could do the
1367         equivalent of "chmod 777 /" or "chmod 0 /" on a buggy FreeBSD
1368         system.  We hope this is rare in practice, but it's clearly worth
1369         fixing.  Problem reported by Alex Unleashed in
1370         <http://lists.gnu.org/archive/html/bug-autoconf/2006-10/msg00012.html>.
1371         Also, don't bother to check for -m bugs unless we're using -m;
1372         suggested by Stepan Kasal.
1373
1374 2006-10-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1375
1376         Sync from Automake.
1377         * build-aux/depcomp (gcc3): Put dependency extraction flags before the
1378         `-c' flag, so they appear at the same position as in %FASTDEP%
1379         mode in depend2.am.  Fixes build failure for FreeBSD's c89,
1380         which ignores unknown options only after the first non-option.
1381         Bug report against M4 by Nelson H. F. Beebe.
1382
1383 2006-10-13  Jim Meyering  <jim@meyering.net>
1384
1385         Fix a bug in yesterday's change.
1386         * lib/fts.c (fts_open): When using FTS_XDEV|FTS_NOSTAT,
1387         p->fts_statp->st_dev would be used uninitialized.
1388         Ensures that we always call fts_stat on the very first entry.
1389         Miklos Szeredi reported that find -xdev stopped working.
1390
1391 2006-10-12  Bruno Haible  <bruno@clisp.org>
1392
1393         * gnulib-tool (func_get_automake_snippet): Append an automatically
1394         computed EXTRA_DIST augmentation.
1395         * modules/acl (Makefile.am): Remove EXTRA_DIST augmentation.
1396         * modules/alloca-opt (Makefile.am): Likewise.
1397         * modules/allocsa (Makefile.am): Likewise.
1398         * modules/arcfour (Makefile.am): Likewise.
1399         * modules/arctwo (Makefile.am): Likewise.
1400         * modules/argmatch (Makefile.am): Likewise.
1401         * modules/argz (Makefile.am): Likewise.
1402         * modules/atexit (Makefile.am): Likewise.
1403         * modules/backupfile (Makefile.am): Likewise.
1404         * modules/byteswap (Makefile.am): Likewise.
1405         * modules/c-strtod (Makefile.am): Likewise.
1406         * modules/c-strtold (Makefile.am): Likewise.
1407         * modules/calloc (Makefile.am): Likewise.
1408         * modules/canon-host (Makefile.am): Likewise.
1409         * modules/canonicalize (Makefile.am): Likewise.
1410         * modules/chdir-long (Makefile.am): Likewise.
1411         * modules/chdir-safer (Makefile.am): Likewise.
1412         * modules/check-version (Makefile.am): Likewise.
1413         * modules/chown (Makefile.am): Likewise.
1414         * modules/cloexec (Makefile.am): Likewise.
1415         * modules/close-stream (Makefile.am): Likewise.
1416         * modules/closeout (Makefile.am): Likewise.
1417         * modules/crc (Makefile.am): Likewise.
1418         * modules/csharpexec (Makefile.am): Likewise.
1419         * modules/cycle-check (Makefile.am): Likewise.
1420         * modules/des (Makefile.am): Likewise.
1421         * modules/dev-ino (Makefile.am): Likewise.
1422         * modules/dirfd (Makefile.am): Likewise.
1423         * modules/dirname (Makefile.am): Likewise.
1424         * modules/dup2 (Makefile.am): Likewise.
1425         * modules/eealloc (Makefile.am): Likewise.
1426         * modules/error (Makefile.am): Likewise.
1427         * modules/euidaccess (Makefile.am): Likewise.
1428         * modules/exclude (Makefile.am): Likewise.
1429         * modules/exitfail (Makefile.am): Likewise.
1430         * modules/fcntl-safer (Makefile.am): Likewise.
1431         * modules/fcntl (Makefile.am): Likewise.
1432         * modules/file-type (Makefile.am): Likewise.
1433         * modules/fileblocks (Makefile.am): Likewise.
1434         * modules/filemode (Makefile.am): Likewise.
1435         * modules/filenamecat (Makefile.am): Likewise.
1436         * modules/fnmatch (Makefile.am): Likewise.
1437         * modules/fopen-safer (Makefile.am): Likewise.
1438         * modules/fpending (Makefile.am): Likewise.
1439         * modules/fprintftime (Makefile.am): Likewise.
1440         * modules/free (Makefile.am): Likewise.
1441         * modules/fsusage (Makefile.am): Likewise.
1442         * modules/ftruncate (Makefile.am): Likewise.
1443         * modules/fts (Makefile.am): Likewise.
1444         * modules/gc-arcfour (Makefile.am): Likewise.
1445         * modules/gc-des (Makefile.am): Likewise.
1446         * modules/gc-hmac-md5 (Makefile.am): Likewise.
1447         * modules/gc-hmac-sha1 (Makefile.am): Likewise.
1448         * modules/gc-md4 (Makefile.am): Likewise.
1449         * modules/gc-pbkdf2-sha1 (Makefile.am): Likewise.
1450         * modules/gc-sha1 (Makefile.am): Likewise.
1451         * modules/gc (Makefile.am): Likewise.
1452         * modules/getaddrinfo (Makefile.am): Likewise.
1453         * modules/getcwd (Makefile.am): Likewise.
1454         * modules/getdelim (Makefile.am): Likewise.
1455         * modules/getdomainname (Makefile.am): Likewise.
1456         * modules/getgroups (Makefile.am): Likewise.
1457         * modules/gethostname (Makefile.am): Likewise.
1458         * modules/gethrxtime (Makefile.am): Likewise.
1459         * modules/getline (Makefile.am): Likewise.
1460         * modules/getloadavg (Makefile.am): Likewise.
1461         * modules/getlogin_r (Makefile.am): Likewise.
1462         * modules/getndelim2 (Makefile.am): Likewise.
1463         * modules/getopt (Makefile.am): Likewise.
1464         * modules/getpagesize (Makefile.am): Likewise.
1465         * modules/getpass-gnu (Makefile.am): Likewise.
1466         * modules/getpass (Makefile.am): Likewise.
1467         * modules/getsubopt (Makefile.am): Likewise.
1468         * modules/gettime (Makefile.am): Likewise.
1469         * modules/gettimeofday (Makefile.am): Likewise.
1470         * modules/getugroups (Makefile.am): Likewise.
1471         * modules/getusershell (Makefile.am): Likewise.
1472         * modules/glob (Makefile.am): Likewise.
1473         * modules/group-member (Makefile.am): Likewise.
1474         * modules/hard-locale (Makefile.am): Likewise.
1475         * modules/hash (Makefile.am): Likewise.
1476         * modules/hmac-md5 (Makefile.am): Likewise.
1477         * modules/hmac-sha1 (Makefile.am): Likewise.
1478         * modules/human (Makefile.am): Likewise.
1479         * modules/idcache (Makefile.am): Likewise.
1480         * modules/imaxabs (Makefile.am): Likewise.
1481         * modules/imaxdiv (Makefile.am): Likewise.
1482         * modules/inet_ntop (Makefile.am): Likewise.
1483         * modules/inet_pton (Makefile.am): Likewise.
1484         * modules/intprops (Makefile.am): Likewise.
1485         * modules/inttostr (Makefile.am): Likewise.
1486         * modules/inttypes (Makefile.am): Likewise.
1487         * modules/isapipe (Makefile.am): Likewise.
1488         * modules/javaversion (Makefile.am): Likewise.
1489         * modules/lchmod (Makefile.am): Likewise.
1490         * modules/lchown (Makefile.am): Likewise.
1491         * modules/localcharset (Makefile.am): Likewise.
1492         * modules/long-options (Makefile.am): Likewise.
1493         * modules/lstat (Makefile.am): Likewise.
1494         * modules/malloc (Makefile.am): Likewise.
1495         * modules/mathl (Makefile.am): Likewise.
1496         * modules/mbchar (Makefile.am): Likewise.
1497         * modules/md2 (Makefile.am): Likewise.
1498         * modules/md4 (Makefile.am): Likewise.
1499         * modules/md5 (Makefile.am): Likewise.
1500         * modules/memcasecmp (Makefile.am): Likewise.
1501         * modules/memchr (Makefile.am): Likewise.
1502         * modules/memcmp (Makefile.am): Likewise.
1503         * modules/memcoll (Makefile.am): Likewise.
1504         * modules/memcpy (Makefile.am): Likewise.
1505         * modules/memmem (Makefile.am): Likewise.
1506         * modules/memmove (Makefile.am): Likewise.
1507         * modules/mempcpy (Makefile.am): Likewise.
1508         * modules/memrchr (Makefile.am): Likewise.
1509         * modules/memset (Makefile.am): Likewise.
1510         * modules/memxor (Makefile.am): Likewise.
1511         * modules/mkancesdirs (Makefile.am): Likewise.
1512         * modules/mkdir-p (Makefile.am): Likewise.
1513         * modules/mkdir (Makefile.am): Likewise.
1514         * modules/mkdtemp (Makefile.am): Likewise.
1515         * modules/mkstemp (Makefile.am): Likewise.
1516         * modules/mktime (Makefile.am): Likewise.
1517         * modules/modechange (Makefile.am): Likewise.
1518         * modules/mountlist (Makefile.am): Likewise.
1519         * modules/nanosleep (Makefile.am): Likewise.
1520         * modules/obstack (Makefile.am): Likewise.
1521         * modules/openat (Makefile.am): Likewise.
1522         * modules/pagealign_alloc (Makefile.am): Likewise.
1523         * modules/pathmax (Makefile.am): Likewise.
1524         * modules/physmem (Makefile.am): Likewise.
1525         * modules/poll (Makefile.am): Likewise.
1526         * modules/posixtm (Makefile.am): Likewise.
1527         * modules/posixver (Makefile.am): Likewise.
1528         * modules/putenv (Makefile.am): Likewise.
1529         * modules/quote (Makefile.am): Likewise.
1530         * modules/quotearg (Makefile.am): Likewise.
1531         * modules/raise (Makefile.am): Likewise.
1532         * modules/read-file (Makefile.am): Likewise.
1533         * modules/readline (Makefile.am): Likewise.
1534         * modules/readlink (Makefile.am): Likewise.
1535         * modules/readtokens (Makefile.am): Likewise.
1536         * modules/readutmp (Makefile.am): Likewise.
1537         * modules/realloc (Makefile.am): Likewise.
1538         * modules/regex (Makefile.am): Likewise.
1539         * modules/rename-dest-slash (Makefile.am): Likewise.
1540         * modules/rename (Makefile.am): Likewise.
1541         * modules/rijndael (Makefile.am): Likewise.
1542         * modules/rmdir (Makefile.am): Likewise.
1543         * modules/rpmatch (Makefile.am): Likewise.
1544         * modules/safe-read (Makefile.am): Likewise.
1545         * modules/safe-write (Makefile.am): Likewise.
1546         * modules/same-inode (Makefile.am): Likewise.
1547         * modules/same (Makefile.am): Likewise.
1548         * modules/save-cwd (Makefile.am): Likewise.
1549         * modules/savedir (Makefile.am): Likewise.
1550         * modules/setenv (Makefile.am): Likewise.
1551         * modules/settime (Makefile.am): Likewise.
1552         * modules/sha1 (Makefile.am): Likewise.
1553         * modules/sig2str (Makefile.am): Likewise.
1554         * modules/snprintf (Makefile.am): Likewise.
1555         * modules/stat-macros (Makefile.am): Likewise.
1556         * modules/stat-time (Makefile.am): Likewise.
1557         * modules/stdbool (Makefile.am): Likewise.
1558         * modules/stdint (Makefile.am): Likewise.
1559         * modules/stdlib-safer (Makefile.am): Likewise.
1560         * modules/stpcpy (Makefile.am): Likewise.
1561         * modules/stpncpy (Makefile.am): Likewise.
1562         * modules/strcase (Makefile.am): Likewise.
1563         * modules/strcasestr (Makefile.am): Likewise.
1564         * modules/strchrnul (Makefile.am): Likewise.
1565         * modules/strcspn (Makefile.am): Likewise.
1566         * modules/strdup (Makefile.am): Likewise.
1567         * modules/strerror (Makefile.am): Likewise.
1568         * modules/strftime (Makefile.am): Likewise.
1569         * modules/strndup (Makefile.am): Likewise.
1570         * modules/strnlen (Makefile.am): Likewise.
1571         * modules/strpbrk (Makefile.am): Likewise.
1572         * modules/strsep (Makefile.am): Likewise.
1573         * modules/strstr (Makefile.am): Likewise.
1574         * modules/strtod (Makefile.am): Likewise.
1575         * modules/strtoimax (Makefile.am): Likewise.
1576         * modules/strtok_r (Makefile.am): Likewise.
1577         * modules/strtol (Makefile.am): Likewise.
1578         * modules/strtoll (Makefile.am): Likewise.
1579         * modules/strtoul (Makefile.am): Likewise.
1580         * modules/strtoull (Makefile.am): Likewise.
1581         * modules/strtoumax (Makefile.am): Likewise.
1582         * modules/strverscmp (Makefile.am): Likewise.
1583         * modules/sys_socket (Makefile.am): Likewise.
1584         * modules/sys_stat (Makefile.am): Likewise.
1585         * modules/sysexits (Makefile.am): Likewise.
1586         * modules/time_r (Makefile.am): Likewise.
1587         * modules/timegm (Makefile.am): Likewise.
1588         * modules/timespec (Makefile.am): Likewise.
1589         * modules/tmpfile-safer (Makefile.am): Likewise.
1590         * modules/trim (Makefile.am): Likewise.
1591         * modules/unistd-safer (Makefile.am): Likewise.
1592         * modules/unlinkdir (Makefile.am): Likewise.
1593         * modules/unlocked-io (Makefile.am): Likewise.
1594         * modules/userspec (Makefile.am): Likewise.
1595         * modules/utime (Makefile.am): Likewise.
1596         * modules/utimecmp (Makefile.am): Likewise.
1597         * modules/utimens (Makefile.am): Likewise.
1598         * modules/vasnprintf (Makefile.am): Likewise.
1599         * modules/vasprintf (Makefile.am): Likewise.
1600         * modules/vsnprintf (Makefile.am): Likewise.
1601         * modules/xalloc (Makefile.am): Likewise.
1602         * modules/xgetcwd (Makefile.am): Likewise.
1603         * modules/xnanosleep (Makefile.am): Likewise.
1604         * modules/xreadlink (Makefile.am): Likewise.
1605         * modules/xstrtod (Makefile.am): Likewise.
1606         * modules/xstrtol (Makefile.am): Likewise.
1607         * modules/xstrtold (Makefile.am): Likewise.
1608         * modules/yesno (Makefile.am): Likewise.
1609         * modules/getdate (Makefile.am): Don't add getdate.h to EXTRA_DIST.
1610
1611 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
1612
1613         * modules/error (Makefile.am): Distribute files through
1614         EXTRA_DIST, not lib_SOURCES.
1615
1616 2006-10-12  Eric Blake  <ebb9@byu.net>
1617
1618         * modules/error (Makefile.am): Distribute files in /lib.
1619         * modules/obstack (Makefile.am): Likewise.
1620
1621 2006-10-12  Bruno Haible  <bruno@clisp.org>
1622
1623         * modules/acl (Makefile.am): Distribute all files in lib/ through
1624         EXTRA_DIST.
1625         * modules/arcfour (Makefile.am): Likewise.
1626         * modules/arctwo (Makefile.am): Likewise.
1627         * modules/argmatch (Makefile.am): Likewise.
1628         * modules/argz (Makefile.am): Likewise.
1629         * modules/atexit (Makefile.am): Likewise.
1630         * modules/backupfile (Makefile.am): Likewise.
1631         * modules/c-strtod (Makefile.am): Likewise.
1632         * modules/c-strtold (Makefile.am): Likewise.
1633         * modules/calloc (Makefile.am): Likewise.
1634         * modules/canon-host (Makefile.am): Likewise.
1635         * modules/canonicalize (Makefile.am): Likewise.
1636         * modules/chdir-long (Makefile.am): Likewise.
1637         * modules/chdir-safer (Makefile.am): Likewise.
1638         * modules/check-version (Makefile.am): Likewise.
1639         * modules/chown (Makefile.am): Likewise.
1640         * modules/cloexec (Makefile.am): Likewise.
1641         * modules/close-stream (Makefile.am): Likewise.
1642         * modules/closeout (Makefile.am): Likewise.
1643         * modules/crc (Makefile.am): Likewise.
1644         * modules/cycle-check (Makefile.am): Likewise.
1645         * modules/des (Makefile.am): Likewise.
1646         * modules/dirfd (Makefile.am): Likewise.
1647         * modules/dirname (Makefile.am): Likewise.
1648         * modules/dup2 (Makefile.am): Likewise.
1649         * modules/euidaccess (Makefile.am): Likewise.
1650         * modules/exclude (Makefile.am): Likewise.
1651         * modules/exitfail (Makefile.am): Likewise.
1652         * modules/fcntl-safer (Makefile.am): Likewise.
1653         * modules/file-type (Makefile.am): Likewise.
1654         * modules/fileblocks (Makefile.am): Likewise.
1655         * modules/filemode (Makefile.am): Likewise.
1656         * modules/filenamecat (Makefile.am): Likewise.
1657         * modules/fnmatch (Makefile.am): Likewise.
1658         * modules/fopen-safer (Makefile.am): Likewise.
1659         * modules/fpending (Makefile.am): Likewise.
1660         * modules/fprintftime (Makefile.am): Likewise.
1661         * modules/free (Makefile.am): Likewise.
1662         * modules/fsusage (Makefile.am): Likewise.
1663         * modules/ftruncate (Makefile.am): Likewise.
1664         * modules/fts (Makefile.am): Likewise.
1665         * modules/gc (Makefile.am): Likewise.
1666         * modules/gc-pbkdf2-sha1 (Makefile.am): Likewise.
1667         * modules/getaddrinfo (Makefile.am): Likewise.
1668         * modules/getcwd (Makefile.am): Likewise.
1669         * modules/getdelim (Makefile.am): Likewise.
1670         * modules/getdomainname (Makefile.am): Likewise.
1671         * modules/getgroups (Makefile.am): Likewise.
1672         * modules/gethostname (Makefile.am): Likewise.
1673         * modules/gethrxtime (Makefile.am): Likewise.
1674         * modules/getline (Makefile.am): Likewise.
1675         * modules/getloadavg (Makefile.am): Likewise.
1676         * modules/getlogin_r (Makefile.am): Likewise.
1677         * modules/getopt (Makefile.am): Likewise.
1678         * modules/getpass (Makefile.am): Likewise.
1679         * modules/getpass-gnu (Makefile.am): Likewise.
1680         * modules/getsubopt (Makefile.am): Likewise.
1681         * modules/gettime (Makefile.am): Likewise.
1682         * modules/gettimeofday (Makefile.am): Likewise.
1683         * modules/getugroups (Makefile.am): Likewise.
1684         * modules/getusershell (Makefile.am): Likewise.
1685         * modules/glob (Makefile.am): Likewise.
1686         * modules/group-member (Makefile.am): Likewise.
1687         * modules/hard-locale (Makefile.am): Likewise.
1688         * modules/hash (Makefile.am): Likewise.
1689         * modules/hmac-md5 (Makefile.am): Likewise.
1690         * modules/hmac-sha1 (Makefile.am): Likewise.
1691         * modules/human (Makefile.am): Likewise.
1692         * modules/idcache (Makefile.am): Likewise.
1693         * modules/imaxabs (Makefile.am): Likewise.
1694         * modules/imaxdiv (Makefile.am): Likewise.
1695         * modules/inet_ntop (Makefile.am): Likewise.
1696         * modules/inet_pton (Makefile.am): Likewise.
1697         * modules/inttostr (Makefile.am): Likewise.
1698         * modules/isapipe (Makefile.am): Likewise.
1699         * modules/lchown (Makefile.am): Likewise.
1700         * modules/long-options (Makefile.am): Likewise.
1701         * modules/lstat (Makefile.am): Likewise.
1702         * modules/malloc (Makefile.am): Likewise.
1703         * modules/mathl (Makefile.am): Likewise.
1704         * modules/mbchar (Makefile.am): Likewise.
1705         * modules/md2 (Makefile.am): Likewise.
1706         * modules/md4 (Makefile.am): Likewise.
1707         * modules/md5 (Makefile.am): Likewise.
1708         * modules/memcasecmp (Makefile.am): Likewise.
1709         * modules/memchr (Makefile.am): Likewise.
1710         * modules/memcmp (Makefile.am): Likewise.
1711         * modules/memcoll (Makefile.am): Likewise.
1712         * modules/memcpy (Makefile.am): Likewise.
1713         * modules/memmem (Makefile.am): Likewise.
1714         * modules/memmove (Makefile.am): Likewise.
1715         * modules/mempcpy (Makefile.am): Likewise.
1716         * modules/memrchr (Makefile.am): Likewise.
1717         * modules/memset (Makefile.am): Likewise.
1718         * modules/memxor (Makefile.am): Likewise.
1719         * modules/mkancesdirs (Makefile.am): Likewise.
1720         * modules/mkdir (Makefile.am): Likewise.
1721         * modules/mkdir-p (Makefile.am): Likewise.
1722         * modules/mkdtemp (Makefile.am): Likewise.
1723         * modules/mkstemp (Makefile.am): Likewise.
1724         * modules/mktime (Makefile.am): Likewise.
1725         * modules/modechange (Makefile.am): Likewise.
1726         * modules/mountlist (Makefile.am): Likewise.
1727         * modules/nanosleep (Makefile.am): Likewise.
1728         * modules/openat (Makefile.am): Likewise.
1729         * modules/pagealign_alloc (Makefile.am): Likewise.
1730         * modules/physmem (Makefile.am): Likewise.
1731         * modules/poll (Makefile.am): Likewise.
1732         * modules/posixtm (Makefile.am): Likewise.
1733         * modules/posixver (Makefile.am): Likewise.
1734         * modules/putenv (Makefile.am): Likewise.
1735         * modules/quote (Makefile.am): Likewise.
1736         * modules/quotearg (Makefile.am): Likewise.
1737         * modules/raise (Makefile.am): Likewise.
1738         * modules/read-file (Makefile.am): Likewise.
1739         * modules/readline (Makefile.am): Likewise.
1740         * modules/readlink (Makefile.am): Likewise.
1741         * modules/readtokens (Makefile.am): Likewise.
1742         * modules/readutmp (Makefile.am): Likewise.
1743         * modules/realloc (Makefile.am): Likewise.
1744         * modules/regex (Makefile.am): Likewise.
1745         * modules/rename (Makefile.am): Likewise.
1746         * modules/rename-dest-slash (Makefile.am): Likewise.
1747         * modules/rijndael (Makefile.am): Likewise.
1748         * modules/rmdir (Makefile.am): Likewise.
1749         * modules/rpmatch (Makefile.am): Likewise.
1750         * modules/safe-read (Makefile.am): Likewise.
1751         * modules/safe-write (Makefile.am): Likewise.
1752         * modules/same (Makefile.am): Likewise.
1753         * modules/save-cwd (Makefile.am): Likewise.
1754         * modules/savedir (Makefile.am): Likewise.
1755         * modules/setenv (Makefile.am): Likewise.
1756         * modules/settime (Makefile.am): Likewise.
1757         * modules/sha1 (Makefile.am): Likewise.
1758         * modules/sig2str (Makefile.am): Likewise.
1759         * modules/snprintf (Makefile.am): Likewise.
1760         * modules/stdlib-safer (Makefile.am): Likewise.
1761         * modules/stpcpy (Makefile.am): Likewise.
1762         * modules/stpncpy (Makefile.am): Likewise.
1763         * modules/strcase (Makefile.am): Likewise.
1764         * modules/strcasestr (Makefile.am): Likewise.
1765         * modules/strchrnul (Makefile.am): Likewise.
1766         * modules/strcspn (Makefile.am): Likewise.
1767         * modules/strdup (Makefile.am): Likewise.
1768         * modules/strerror (Makefile.am): Likewise.
1769         * modules/strftime (Makefile.am): Likewise.
1770         * modules/strndup (Makefile.am): Likewise.
1771         * modules/strnlen (Makefile.am): Likewise.
1772         * modules/strpbrk (Makefile.am): Likewise.
1773         * modules/strsep (Makefile.am): Likewise.
1774         * modules/strstr (Makefile.am): Likewise.
1775         * modules/strtod (Makefile.am): Likewise.
1776         * modules/strtoimax (Makefile.am): Likewise.
1777         * modules/strtok_r (Makefile.am): Likewise.
1778         * modules/strtol (Makefile.am): Likewise.
1779         * modules/strtoll (Makefile.am): Likewise.
1780         * modules/strtoul (Makefile.am): Likewise.
1781         * modules/strtoull (Makefile.am): Likewise.
1782         * modules/strtoumax (Makefile.am): Likewise.
1783         * modules/strverscmp (Makefile.am): Likewise.
1784         * modules/time_r (Makefile.am): Likewise.
1785         * modules/timegm (Makefile.am): Likewise.
1786         * modules/tmpfile-safer (Makefile.am): Likewise.
1787         * modules/unistd-safer (Makefile.am): Likewise.
1788         * modules/unlinkdir (Makefile.am): Likewise.
1789         * modules/userspec (Makefile.am): Likewise.
1790         * modules/utime (Makefile.am): Likewise.
1791         * modules/utimecmp (Makefile.am): Likewise.
1792         * modules/utimens (Makefile.am): Likewise.
1793         * modules/vasnprintf (Makefile.am): Likewise.
1794         * modules/vasprintf (Makefile.am): Likewise.
1795         * modules/vsnprintf (Makefile.am): Likewise.
1796         * modules/xalloc (Makefile.am): Likewise.
1797         * modules/xgetcwd (Makefile.am): Likewise.
1798         * modules/xnanosleep (Makefile.am): Likewise.
1799         * modules/xreadlink (Makefile.am): Likewise.
1800         * modules/xstrtod (Makefile.am): Likewise.
1801         * modules/xstrtol (Makefile.am): Likewise.
1802         * modules/xstrtold (Makefile.am): Likewise.
1803         * modules/yesno (Makefile.am): Likewise.
1804
1805 2006-10-12  Jim Meyering  <jim@meyering.net>
1806
1807         * m4/getloadavg.m4: Revert the change below.
1808
1809         * m4/getloadavg.m4 (gl_GETLOADAVG): Test for the existence of
1810         lib/getloadavg.c using "ls -L", not "test -f".  The latter would
1811         fail with a symlink, which is what coreutils' ./bootstrap now
1812         creates by default.
1813
1814 2006-10-12  Bruno Haible  <bruno@clisp.org>
1815
1816         * lib/inttypes_.h (_LONG_LONG_FORMAT_PREFIX): Don't define for MSVC or
1817         mingw.
1818         (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX, _SCNu64_PREFIX): Handle
1819         MSVC and mingw explicitly.
1820
1821 2006-10-11  Simon Josefsson  <jas@extundo.com>
1822             Bruno Haible  <bruno@clisp.org>
1823
1824         Add support for multiple gnulib-tool invocations in the scope of a
1825         single configure.ac file.
1826         * gnulib-tool (func_emit_lib_Makefile_am): In the _LIBADD variable,
1827         use a private [LT]LIBOBJS variant. Define a _DEPENDENCIES variable
1828         with the same contents as the _LIBADD variable.
1829         (func_emit_initmacro_start, func_emit_initmacro_end,
1830         func_emit_initmacro_done): New functions.
1831         (func_import, func_create_testdir): Invoke them. Allow the identifiers
1832         gl_LIBOBJS and gl_LTLIBOBJS.
1833
1834 2006-10-11  Bruno Haible  <bruno@clisp.org>
1835
1836         * gnulib-tool (GETTEXTPATH, AUTOHEADER, AUTOPOINT): New variables.
1837         (func_create_testdir): Don't create po/Makefile.am, don't invoke
1838         autoreconf. Instead, invoke autopoint explicitly but move back the
1839         *.m4 files from gnulib.
1840
1841 2006-10-11  Bruno Haible  <bruno@clisp.org>
1842
1843         * gnulib-tool (func_usage): Make module names after --create-testdir
1844         optional.
1845         (func_create_testdir): If no module was specified, use nearly all
1846         modules.
1847
1848 2006-10-12  Jim Meyering  <jim@meyering.net>
1849
1850         Big performance improvement for fts-based tools that use FTS_NOSTAT.
1851         Avoid spurious inode-mismatch problems on non-POSIX file systems.
1852         Details: http://article.gmane.org/gmane.comp.lib.gnulib.bugs/7416
1853         * lib/fts_.h (FTS_DEFER_STAT): Define new flag.
1854         (FTS_OPTIONMASK): Extend the mask to reflect this addition.
1855         * lib/fts.c (DT_IS_KNOWN, DT_MUST_BE): Define.
1856         (FTS_NO_STAT_REQUIRED, FTS_STAT_REQUIRED): Define.
1857         (fts_set_stat_required): New function.
1858         (fts_open): Defer the calls to fts_stat, if possible or requested.
1859         Move the code that maps a command-line fts_info value FTS_DOT to FTS_D
1860         into fts_stat itself.
1861         (fts_read): Perform any required (deferred) fts_stat call.
1862         (fts_build): Likewise, for the directory we're about to open and read.
1863         In the readdir loop, carefully decide whether each entry will require
1864         an eventual call to fts_stat, using dirent.d_type info if available.
1865         (fts_stat): Move the test for whether to honor FTS_COMFOLLOW on
1866         a command line argument into this function.  Update all callers.
1867         Map a return value of FTS_DOT to FTS_D for a command line argument.
1868         * modules/fts (Depends-on): Add d-type.  Alphabetize.
1869         Thanks to Miklos Szeredi for his tenacity and for the initial
1870         bug report about "find" failing on a FUSE-based file system.
1871
1872         * lib/fts.c (fts_open): Use consistent indentation.
1873
1874 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
1875
1876         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Renamed from
1877         gl_USE_SYSTEM_EXTENSIONS, to fix a coreutils bootstrap failure
1878         reported by Jim Meyering.  All uses of cache variables renamed
1879         to match Autoconf's.
1880         (gl_USE_SYSTEM_EXTENSIONS): New macro, which simply requires
1881         the other one.
1882
1883         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH):
1884         Fix misspelling in diagnostic.
1885
1886 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
1887
1888         * lib/mkdir-p.c (HAVE_FCHMOD): Define to false if not already
1889         defined.  Problem reported by Matthew Woehlke.
1890
1891         * lib/inttypes_.h (_LONG_LONG_FORMAT_PREFIX): New macro.
1892         Add support for Tandem NonStop R series.
1893         (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX, _SCNu64_PREFIX):
1894         Use new macro.
1895
1896         * lib/rename-dest-slash.c: Include stdbool.h but not string.h.
1897         (has_trailing_slash): Omit size arg; all callers changed.
1898         Omit 'inline', since it doesn't help performance and we'd
1899         need to configure it.
1900         Don't count //, ///, etc. as having a trailing slash.
1901         As a side effect, this removes a C99ism reported by Matthew Woehlke.
1902         (rpl_rename_dest_slash): On failure, use rename's errno rather
1903         than (in some cases) an incorrect or junk errno.
1904         Simplify code by removing need to compute length; this does
1905         cause it to make two passes instead of one over the file name,
1906         but it's worth it.
1907
1908         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Undo previous
1909         change, since Autoconf's version may no longer be appropriate now
1910         that we are using CVS Autoconf's version.  Add support for Tandem.
1911
1912 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
1913             Bruno Haible  <bruno@clisp.org>
1914
1915         * lib/allocsa.h (sa_alignment_longlong, sa_alignment_max): Test
1916         HAVE_LONG_LONG_INT instead of HAVE_LONG_LONG.
1917         * m4/allocsa.m4 (gl_ALLOCSA): Invoke AC_TYPE_LONG_LONG_INT instead of
1918         gl_AC_TYPE_LONG_LONG.
1919
1920         * lib/printf-args.h (arg_type, argument): Test HAVE_LONG_LONG_INT
1921         instead of HAVE_LONG_LONG.
1922         * lib/printf-args.c (printf_fetchargs): Likewise.
1923         * lib/printf-parse.c (PRINTF_PARSE): Likewise.
1924         * lib/vasnprintf.c (VASNPRINTF): Likewise.
1925         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_ARGS, gl_PREREQ_PRINTF_PARSE,
1926         gl_PREREQ_VASNPRINTF): Invoke AC_TYPE_LONG_LONG_INT instead of
1927         gl_AC_TYPE_LONG_LONG.
1928
1929 2006-10-11  Bruno Haible  <bruno@clisp.org>
1930
1931         * m4/longlong.m4: Add comments.
1932         * m4/ulonglong.m4: Likewise.
1933
1934 2006-10-10  Bruno Haible  <bruno@clisp.org>
1935
1936         Make it possible to #define stpcpy, strdup to aliases.
1937         * lib/stpcpy.c (stpcpy) [!_LIBC]: Don't undefine.
1938         * lib/strdup.c (strdup) [!_LIBC]: Don't undefine.
1939
1940 2006-10-10  Bruno Haible  <bruno@clisp.org>
1941
1942         Make it possible to #define gcd to an alias.
1943         * lib/gcd.c: Include config.h.
1944
1945 2006-10-10  Bruno Haible  <bruno@clisp.org>
1946
1947         Make it possible to #define c_isascii to an alias.
1948         * lib/c-ctype.h: Don't define the macros if NO_C_CTYPE_MACROS is
1949         defined. Undefine the macros before defining them, to avoid gcc
1950         warnings.
1951         * lib/c-ctype.c: Include config.h. Don't undefine the macros; instead,
1952         define NO_C_CTYPE_MACROS early.
1953
1954 2006-10-10  Bruno Haible  <bruno@clisp.org>
1955
1956         Make it possible to #define set_program_name to an alias.
1957         * lib/progname.c: Don't undefine set_program_name; instead, undefine
1958         ENABLE_RELOCATABLE early.
1959
1960 2006-10-10  Paul Eggert  <eggert@cs.ucla.edu>
1961
1962         Port to Tandem NSK OSS, which has 64-bit signed int but at most
1963         32-bit unsigned int.  Problem reported by Matthew Woehlke in:
1964         http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00062.html
1965         More generally, don't assume that 64-bit signed int is available
1966         if unsigned int is, and vice versa.
1967         * lib/inttypes_.h (_PRIu64_PREFIX, _SCNu64_PREFIX): Depend on
1968         unsigned symbols, not on their signed counterparts.
1969         * lib/stdint_.h (uint64_t, uint_least64_t, uint_fast64_t, uintmax_t):
1970         (UINT64_MAX, UINT_LEAST64_MAX, UINT_FAST64_MAX, UINTMAX_MAX):
1971         (UINT64_C, UINTMAX_C):
1972         Likewise.
1973         * lib/strtoimax.c (strtoll): Depend on signed symbols, not their
1974         unsigned counterparts.
1975         (Have_long_long, Unsigned): New macros.
1976         (Int): Renamed from INT.
1977         (strtoimax): Use the new macros.
1978         * m4/stdint.m4 (gl_STDINT_H): Require AC_TYPE_UNSIGNED_LONG_LONG_INT
1979         and substitute HAVE_UNSIGNED_LONG_LONG_INT.
1980         * modules/inttypes (inttypes.h): Substitute
1981         HAVE_UNSIGNED_LONG_LONG_INT.
1982         * modules/stdint (stdint.h): Likewise.
1983         (Files): Add m4/ulonglong.m4.
1984
1985 2006-10-10  Bruno Haible  <bruno@clisp.org>
1986
1987         Fix a gcc -Wshadow warning.
1988         * lib/gl_anyhash_list2.h (hash_resize): Rename local variable 'index'
1989         to 'bucket'.
1990         * lib/gl_anylinked_list2.h (gl_linked_search_from_to,
1991         gl_linked_indexof_from_to): Likewise.
1992         * lib/gl_linkedhash_list.c (add_to_bucket, remove_from_bucket):
1993         Likewise.
1994         * lib/gl_anytreehash_list1.h (add_to_bucket, remove_from_bucket):
1995         Likewise.
1996         * lib/gl_anytreehash_list2.h (gl_tree_search_from_to): Likewise.
1997         Reported by Eric Blake.
1998
1999 2006-10-09  Paul Eggert  <eggert@cs.ucla.edu>
2000
2001         * lib/filemode.h [HAVE_DECL_STRMODE]: Include unistd.h too,
2002         for NetBSD.  Problem reported by Bruno Haible.
2003
2004 2006-10-09  Jim Meyering  <jim@meyering.net>
2005
2006         * lib/lchown.c: Include <sys/stat.h> before "stat-macros.h".
2007         Patch from Bruno Haible.
2008
2009 2006-10-09  Jim Meyering  <jim@meyering.net>
2010
2011         * lib/fts-cycle.c (leave_dir): When "leaving" a top level directory due
2012         to FTS_SKIP, don't copy the parent's uninitialized dev/ino values.
2013         Trigger with e.g., mkdir d && valgrind ./chmod u+rwx d d
2014
2015 2006-10-08  Paul Eggert  <eggert@cs.ucla.edu>
2016
2017         Don't include <config.h> twice; this doesn't work in some cases,
2018         e.g., when config.h has "#define intmax_t long long int" and
2019         we include <config.h>, <inttypes.h>, <config.h> in that order.
2020         Problem reported by Matthew Woehlke in:
2021         http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00073.html
2022         * lib/fprintftime.c: Don't include config.h or fprintftime.h.
2023         * lib/fts-cycle.c: Don't include config.h.
2024         * lib/strftime.c: Include fprintftime.h if FPRINTFTIME is defined.
2025         * lib/xstrtoimax.c: Remove copyright notice since it's short tnow.
2026         Don't include config.h or xstrtol.h.  Define STRTOL_T_MINIMUM
2027         and STRTOL_T_MAXIMUM unconditionally, since we now assume gnulib
2028         inttypes.h.
2029         * lib/xstrtoumax.c: Likewise.
2030         * lib/xstrtol.c: Include config.h and xstrtol.h after defining
2031         __strtol and the like, so that this module is more like its siblings.
2032         (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM) [! defined STRTOL_T_MINIMUM]:
2033         Remove; no longer needed now that we assume gnulib inttypes.h.
2034
2035 2006-10-08  Bruno Haible  <bruno@clisp.org>
2036
2037         * doc/gnulib-tool.texi: Emphasize the drawbacks of the --symlink
2038         option.
2039
2040 2006-10-07  Jim Meyering  <jim@meyering.net>
2041
2042         * modules/inttypes (inttypes.h): Revert what seems to have been
2043         an inadvertent part of today's change: use "|", not "/" in the
2044         substitution for the "/"-containing string, $(ABSOLUTE_INTTYPES_H).
2045
2046 2006-10-07  Bruno Haible  <bruno@clisp.org>
2047
2048         * modules/sublist: New file.
2049
2050 2006-10-07  Bruno Haible  <bruno@clisp.org>
2051
2052         * modules/alloca-opt (alloca.h): Add a "DO NOT EDIT" comment.
2053         * modules/argz (argz.h): Likewise.
2054         * modules/arpa_inet (arpa/inet.h): Likewise.
2055         * modules/byteswap (byteswap.h): Likewise.
2056         * modules/configmake (configmake.h): Likewise.
2057         * modules/fcntl (fcntl.h): Likewise.
2058         * modules/fnmatch (fnmatch.h): Likewise.
2059         * modules/getopt (getopt.h): Likewise.
2060         * modules/glob (glob.h): Likewise.
2061         * modules/inttypes (inttypes.h): Likewise.
2062         * modules/netinet_in (netinet/in.h): Likewise.
2063         * modules/poll (poll.h): Likewise.
2064         * modules/stdbool (stdbool.h): Likewise.
2065         * modules/stdint (stdint.h): Likewise.
2066         * modules/sys_select (sys/select.h): Likewise.
2067         * modules/sys_socket (sys/socket.h): Likewise.
2068         * modules/sys_stat (sys/stat.h): Likewise.
2069         * modules/sysexits (sysexits.h): Likewise.
2070         * modules/unistd (unistd.h): Likewise.
2071         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
2072         Add a "DO NOT EDIT" comment to the generated file.
2073         (func_import): Likewise for gnulib-comp.m4.
2074
2075 2006-10-07  Bruno Haible  <bruno@clisp.org>
2076
2077         * lib/gl_sublist.h: New file.
2078         * lib/gl_sublist.c: New file.
2079
2080 2006-10-06  Paul Eggert  <eggert@cs.ucla.edu>
2081
2082         * lib/mkancesdirs.c (mkancesdirs): Pass to MAKE_DIR both the full file
2083         name (relative to the original working directory) and the file
2084         name component (relative to the temporary working directory).  All
2085         callers changed.
2086         * lib/mkancesdirs.h (mkancesdirs): Adjust prototype to match.
2087         * lib/mkdir-p.c (make_dir_parents): Likewise.
2088         * lib/mkdir-p.h (make_dir_parents): Likewise.
2089
2090 2006-10-06  Eric Blake  <ebb9@byu.net>
2091
2092         Define several macros for use by the clean-temp module.
2093         * m4/close-stream.m4 (gl_CLOSE_STREAM): Define GNULIB_CLOSE_STREAM.
2094         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Define GNULIB_FCNTL_SAFER.
2095         * m4/stdio-safer.m4 (gl_FOPEN_SAFER): Define GNULIB_FOPEN_SAFER.
2096
2097         * lib/clean-temp.h (close_stream_temp): New declaration.
2098         * lib/clean-temp.c (includes): Pull in headers according to what
2099         other modules are in use.
2100         (close_stream_temp) [GNULIB_CLOSE_STREAM]: New function.
2101
2102 2006-10-06  Bruno Haible  <bruno@clisp.org>
2103
2104         * lib/javacomp.c (write_temp_file): Use fopen_temp, fwriteerror_temp
2105         instead of fopen, fwriteerror.
2106
2107 2006-10-06  Bruno Haible  <bruno@clisp.org>
2108
2109         * lib/clean-temp.h (cleanup_temp_file, cleanup_temp_subdir,
2110         cleanup_temp_dir_contents, cleanup_temp_dir): Change return type to
2111         int.
2112         * lib/clean-temp.c (do_unlink, do_rmdir, cleanup_temp_file,
2113         cleanup_temp_subdir, cleanup_temp_dir_contents, cleanup_temp_dir):
2114         Return an error indicator.
2115         Suggested by Eric Blake.
2116
2117 2006-10-06  Bruno Haible  <bruno@clisp.org>
2118
2119         * lib/clean-temp.c (PATH_MAX): Provide a fallback for GNU Hurd.
2120         Reported by Eric Blake.
2121
2122 2006-10-06  Bruno Haible  <bruno@clisp.org>
2123
2124         * modules/closeout (Description): Mention stderr too.
2125
2126 2006-10-06  Bruno Haible  <bruno@clisp.org>
2127         and Paul Eggert  <eggert@cs.ucla.edu>
2128
2129         * lib/closeout.c (close_stdout): Also close stderr.
2130         * lib/closeout.h: Update comment.
2131
2132 2006-10-05  Paul Eggert  <eggert@cs.ucla.edu>
2133
2134         Fix some Darwin-7.9.0 porting problems reported by Bruno Haible in
2135         <http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00063.html>.
2136         * lib/dirchownmod.c: Include lchown.h.
2137         * lib/lchown.c: Don't include files that lchown.h now includes.
2138         Don't declare chown, since lchown.h now does that.
2139         * lib/lchown.h: Include errno.h, sys/types.h, unistd.h.
2140         (lchown): Define to rpl_chown if lchown is declared but
2141         does not exist.  Declare using a prototype if lchown is not
2142         declared.  Add a copyright notice.
2143         * lib/mkstemp.h: Include <unistd.h>.
2144         * lib/openat.c: Include lchown.h.
2145
2146         * lib/fcntl_.h (O_NOFOLLOW): Don't depend on O_NOFOLLOW_IS_INEFFECTIVE;
2147         we now test for that separately.
2148         * lib/fts.c (fts_safe_changedir): Inspect HAVE_WORKING_O_NOFOLLOW
2149         rather than O_NOFOLLOW, when testing whether it's possible to
2150         avoid a race condition reliably.
2151         * lib/savewd.c (savewd_chdir): Likewise.
2152
2153         Remove macros that are no longer needed now that stdint.h is
2154         reliable.
2155         * lib/fsusage.c (UINTMAX_MAX): Remove.
2156         * lib/human.c (SIZE_MAX, UINTMAX_MAX): Remove.
2157         * lib/utimecmp.c (SIZE_MAX): Remove.
2158
2159         * m4/lchown.m4 (gl_FUNC_LCHOWN): Check whether lchown is declared.
2160
2161         * m4/fcntl_h.m4 (gl_FCNTL_H): Define HAVE_WORKING_O_NOFOLLOW instead
2162         of O_NOFOLLOW_IS_INEFFECTIVE.  Define HAVE_WORKING_O_NOATIME if
2163         O_NOATIME works.
2164
2165 2006-10-05  Bruno Haible  <bruno@clisp.org>
2166
2167         * lib/gl_list.h (gl_sortedlist_search_from_to,
2168         gl_sortedlist_indexof_from_to): New declarations.
2169         (gl_list_implementation): New fields sortedlist_search_from_to,
2170         sortedlist_indexof_from_to.
2171         (gl_sortedlist_search_from_to, gl_sortedlist_indexof_from_to): New
2172         inline functions.
2173         * lib/gl_list.c (gl_sortedlist_search_from_to,
2174         gl_sortedlist_indexof_from_to): New functions.
2175         * lib/gl_array_list.c (gl_array_sortedlist_indexof_from_to): New
2176         function.
2177         (gl_array_sortedlist_indexof, gl_array_sortedlist_search): Use it.
2178         (gl_array_sortedlist_search_from_to): New function.
2179         (gl_array_list_implementation): Update.
2180         * lib/gl_carray_list.c (gl_carray_sortedlist_indexof_from_to): New
2181         function.
2182         (gl_carray_sortedlist_indexof, gl_carray_sortedlist_search): Use it.
2183         (gl_carray_sortedlist_search_from_to): New function.
2184         (gl_carray_list_implementation): Update.
2185         * lib/gl_anylinked_list2.h (gl_linked_sortedlist_search_from_to,
2186         gl_linked_sortedlist_indexof_from_to): New functions.
2187         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
2188         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
2189         * lib/gl_anytree_list2.h (gl_tree_sortedlist_search_from_to,
2190         gl_tree_sortedlist_indexof_from_to): New functions.
2191         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
2192         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
2193         Update.
2194         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
2195         * lib/gl_rbtreehash_list.c (gl_avltreehash_list_implementation):
2196         Update.
2197
2198 2006-10-05  Bruno Haible  <bruno@clisp.org>
2199
2200         * lib/gl_list.h (gl_list_search_from, gl_list_search_from_to,
2201         gl_list_indexof_from, gl_list_indexof_from_to): New declarations.
2202         (struct gl_list_implementation): Add fields search_from_to,
2203         indexof_from_to. Remove fields search, indexof.
2204         (gl_list_search): Use the search_from_to method.
2205         (gl_list_search_from, gl_list_search_from_to): New functions.
2206         (gl_list_indexof): Use the indexof_from_to method.
2207         (gl_list_indexof_from, gl_list_indexof_from_to): New functions.
2208         * lib/gl_list.c (gl_list_search): Use the search_from_to method.
2209         (gl_list_search_from, gl_list_search_from_to): New functions.
2210         (gl_list_indexof): Use the indexof_from_to method.
2211         (gl_list_indexof_from, gl_list_indexof_from_to): New functions.
2212         * lib/gl_array_list.c (gl_array_indexof_from_to): Renamed from
2213         gl_array_indexof. Add start_index, end_index arguments.
2214         (gl_array_search_from_to): Renamed from gl_array_search. Add
2215         start_index, end_index arguments.
2216         (gl_array_remove, gl_array_list_implementation): Update.
2217         * lib/gl_carray_list.c (gl_carray_indexof_from_to): Renamed from
2218         gl_carray_indexof. Add start_index, end_index arguments.
2219         (gl_carray_search_from_to): Renamed from gl_carray_search. Add
2220         start_index, end_index arguments.
2221         (gl_carray_remove, gl_carray_list_implementation): Update.
2222         * lib/gl_anylinked_list2.h (gl_linked_search_from_to): Renamed from
2223         gl_linked_search. Add start_index, end_index arguments.
2224         (gl_linked_indexof_from_to): Renamed from gl_linked_indexof. Add
2225         start_index, end_index arguments.
2226         (gl_linked_remove): Update.
2227         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
2228         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
2229         * lib/gl_anytree_list1.h (iterstack_item_t): Change type of 'rightp'
2230         field to 'size_t'.
2231         * lib/gl_anytree_list2.h (gl_tree_search_from_to): Renamed from
2232         gl_tree_search. Add start_index, end_index arguments.
2233         (gl_tree_indexof_from_to): Renamed from gl_tree_indexof. Add
2234         start_index, end_index arguments.
2235         (gl_tree_remove): Update.
2236         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
2237         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
2238         * lib/gl_anytreehash_list1.h (compare_position_threshold): New
2239         function.
2240         * lib/gl_anytreehash_list2.h (gl_tree_search_from_to): Renamed from
2241         gl_tree_search. Add start_index, end_index arguments.
2242         (gl_tree_indexof_from_to): Renamed from gl_tree_indexof. Add
2243         start_index, end_index arguments.
2244         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
2245         Update.
2246         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Update.
2247
2248 2006-10-05  Bruno Haible  <bruno@clisp.org>
2249
2250         * modules/fwriteerror (configure.ac): Define GNULIB_FWRITEERROR.
2251
2252         * lib/clean-temp.h (open_temp, fopen_temp, close_temp, fclose_temp,
2253         fwriteerror_temp): New declarations.
2254         * lib/clean-temp.c (uintptr_t): Provide fallback definition.
2255         (descriptors): New variable.
2256         (cleanup): First, close the descriptors.
2257         (register_fd, unregister_fd, open_temp, fopen_temp, close_temp,
2258         fclose_temp, fwriteerror_temp): New functions.
2259
2260 2006-10-04  Jim Meyering  <jim@meyering.net>
2261
2262         * lib/fts.c (fts_open): Tiny comment change.
2263
2264 2006-10-04  Bruno Haible  <bruno@clisp.org>
2265
2266         Make it possible to invoke AC_GNU_SOURCE after gl_LOCK_EARLY.
2267         * m4/lock.m4 (gl_LOCK_EARLY_BODY): New macro, extracted code from
2268         gl_LOCK_BODY.
2269         (gl_LOCK_EARLY): Require gl_LOCK_EARLY_BODY, not gl_LOCK_BODY.
2270         (gl_LOCK_BODY): Remove settings of CPPFLAGS, now done in
2271         gl_LOCK_EARLY_BODY.
2272         (gl_LOCK): Require gl_LOCK_BODY.
2273
2274 2006-10-04  Bruno Haible  <bruno@clisp.org>
2275
2276         * lib/gl_oset.h (gl_setelement_threshold_fn): New type.
2277         (gl_oset_search_atleast): New declaration.
2278         (struct gl_oset_implementation): Add field 'search_atleast'.
2279         (gl_oset_search_atleast): New inline function.
2280         * lib/gl_oset.c (gl_oset_search_atleast): New function.
2281         * lib/gl_array_oset.c (gl_array_search_atleast): New function.
2282         (gl_array_oset_implementation): Update.
2283         * lib/gl_anytree_oset.h (gl_tree_search_atleast): New function.
2284         * lib/gl_avltree_oset.c (gl_avltree_oset_implementation): Update.
2285         * lib/gl_rbtree_oset.c (gl_rbtree_oset_implementation): Update.
2286
2287 2006-10-04  Bruno Haible  <bruno@clisp.org>
2288
2289         * lib/fatal-signal.c (fatal_signals) [WOE32]: Add the SIGBREAK signal.
2290
2291 2006-10-03  Bruno Haible  <bruno@clisp.org>
2292
2293         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Renamed
2294         from gl_avltreehash_list_implementation.
2295
2296 2006-10-03  Bruno Haible  <bruno@clisp.org>
2297
2298         * lib/gl_oset.c (gl_oset_add): Fix return type.
2299
2300 2006-10-02  Paolo Bonzini  <bonzini@gnu.org>  (tiny change)
2301
2302         * lib/quotearg.c (mbstate_t) [!HAVE_MBRTOWC]: #define to int.
2303
2304 2006-10-02  Eric Blake  <ebb9@byu.net>
2305
2306         * modules/strnlen (Depends-on): Add extensions.
2307
2308 2006-10-02  Eric Blake  <ebb9@byu.net>
2309
2310         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Use autoconf's
2311         definition in 2.60+.
2312
2313 2006-10-02  Dmitry V. Levin  <ldv@altlinux.org>
2314
2315         * lib/fts.c (fts_close, fts_build, fts_palloc): Remove redundant
2316         checks.
2317
2318 2006-10-02  Bruno Haible  <bruno@clisp.org>
2319
2320         * gnulib-tool (func_emit_lib_Makefile_am): Don't add no-dependencies
2321         to the AUTOMAKE_OPTIONS.
2322         Reported by Jim Meyering.
2323
2324 2006-09-29  Paul Eggert  <eggert@cs.ucla.edu>
2325
2326         Work around bug in Solaris 10 /proc file system:
2327         /proc/self/fd/NNN/.. isn't the parent directory of
2328         the directory whose file descriptor is NNN.  This needs to
2329         be worked around at run time, not compile time, since a
2330         program might be built on Solaris 8, where things work, and
2331         run on Solaris 10.
2332         * lib/openat-priv.h (BUILD_PROC_NAME): Remove.  All callers changed
2333         to use the following interface instead:
2334         (OPENAT_BUFFER_SIZE): New macro.
2335         (openat_proc_name): New function.
2336         * lib/at-func.c (AT_FUNC_NAME): Adjust to above changes.
2337         * lib/openat.c (openat_permissive, openat_needs_fchdir, fdopendir):
2338         Likewise.
2339         * lib/openat-proc.c: New file.
2340         * modules/openat (Files): Add lib/openat-proc.c.
2341         (Depends-on): Add same-inode, stdbool.
2342         * m4/openat.m4 (gl_FUNC_OPENAT): Add AC_LIBOBJ(openat-proc).
2343
2344 2006-09-29  Bruno Haible  <bruno@clisp.org>
2345
2346         * lib/fwriteerror.h (fwriteerror_no_ebadf): New declaration.
2347         * lib/(do_fwriteerror): Renamed from fwriteerror. Add ignore_ebadf
2348         argument. Set stdout_closed before testing for ferror, not after.
2349         (fwriteerror, fwriteerror_no_ebadf): New functions.
2350
2351 2006-09-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2352
2353         * m4/intmax.m4 (gt_TYPE_INTMAX_T): Avoid unused variables warning.
2354
2355 2006-09-28  Paolo Bonzini  <bonzini@gnu.org>
2356
2357         * lib/poll.c (rpl_poll) [__APPLE__]: Use FIONREAD instead of MSG_PEEK.
2358         * m4/poll.m4: Look for sys/ioctl.h and sys/filio.h.
2359
2360 2006-09-28  Jim Meyering  <jim@meyering.net>
2361
2362         * lib/mkdir-p.c: Include "dirchownmod.h", not "dirchownmod.c".
2363         Include <unistd.h>.
2364
2365 2006-09-28  Bruno Haible  <bruno@clisp.org>
2366
2367         * modules/avltreehash-list (Depends-on): Add stdint, remove size_max.
2368         * modules/linkedhash-list (Depends-on): Likewise.
2369         * modules/rbtreehash-list (Depends-on): Likewise.
2370
2371 2006-09-28  Bruno Haible  <bruno@clisp.org>
2372
2373         * lib/strndup.h: Simplify the redefinition of strndup.
2374         (_GL_CONCAT, _GL_XCONCAT, __STRNDUP_ID): Remove macros.
2375         * m4/strndup.m4 (gl_FUNC_STRNDUP): Don't define __STRNDUP_PREFIX.
2376
2377 2006-09-28  Bruno Haible  <bruno@clisp.org>
2378
2379         * lib/gl_avltreehash_list.c: Include <stdint.h> instead of size_max.h.
2380         * lib/gl_linkedhash_list.c: Likewise.
2381         * lib/gl_rbtreehash_list.c: Likewise.
2382
2383 2006-09-27  Paul Eggert  <eggert@cs.ucla.edu>
2384
2385         * lib/canon-host.c (canon_host_r): Work around bug in Darwin 7.9.0
2386         getaddrinfo.
2387
2388         * lib/__fpending.h: Don't include <stdio_ext.h> unless
2389         HAVE_DECL___FPENDING.  This avoids a bug with lsbcc, where
2390         it causes <stdio_ext.h> to cause a compile-time error.
2391         Problem reported by Nelson H. F. Beebe.
2392         * lib/getpass.c: Likewise, except for HAVE_DECL___FSETLOCKING instead
2393         of HAVE_DECL___PENDING.
2394
2395         * m4/fpending.m4 (gl_FUNC_FPENDING): Check for stdio_ext at most once.
2396         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for __fsetlocking's
2397         declaration.
2398
2399 2006-09-27  Jim Meyering  <jim@meyering.net>
2400
2401         This file could end up with a definition for a function
2402         named __strndup, rather than rpl_strndup on a system with
2403         incomplete weak_alias support.
2404         * lib/strndup.c (strndup): Rename from __strndup.
2405         Remove #defines that used to map __strndup to strndup.
2406         Don't use K&R prototypes.
2407         Remove LIBC-related code, since this file is not sync'd with glibc.
2408         * lib/strndup.h: Revamp, accordingly.
2409         * m4/strndup.m4: Modernize.
2410
2411 2006-09-26  Paul Eggert  <eggert@cs.ucla.edu>
2412
2413         * modules/savewd (Depends-on): Add 'raise'.
2414         * lib/savewd.c: Include <signal.h>, for 'raise'.
2415
2416 2006-09-26  Jim Meyering  <jim@meyering.net>
2417
2418         * m4/acl.m4 (AC_FUNC_ACL): Disable ACL support altogether
2419         when we detect Darwin 8.7.0's acl_get_file bug.
2420         Rearrange to perform the new (below) run-test while $LIBS
2421         contains any acl-related library.  Set USE_ACL at the end.
2422         (gl_ACL_GET_FILE): New function.
2423
2424 2006-09-26  Eric Blake  <ebb9@byu.net>
2425
2426         * lib/verror.c: Include <config.h> unconditionally.
2427
2428 2006-09-25  Paul Eggert  <eggert@cs.ucla.edu>
2429
2430         * modules/clock-time (Maintainer): Add self.
2431         * modules/getlogin_r (Depends-on): Add extensions.
2432
2433 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2434
2435         * modules/clock-time: New module.
2436         * modules/nanosleep (Depends-on): Add clock-time.
2437         * modules/gethrxtime (Depends-on): Likewise.
2438         * modules/gettime (Depends-on): Likewise.
2439         * modules/settime (Depends-on): Likewise.
2440
2441         * modules/fts-lgpl: Depend on openat.
2442         * modules/mkancesdirs: Depend on savewd.
2443         * modules/mkdir-p: Likewise.
2444
2445 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2446
2447         * m4/host-os.m4 (gl_HOST_OS): Require AC_CANONICAL_HOST.
2448
2449         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Rename cache variable from
2450         `gl_have_arbitrary_file_name_length_limit' to
2451         `gl_cv_have_arbitrary_file_name_length_limit', so that caching
2452         actually works between configure runs.
2453
2454 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2455             Bruno Haible  <bruno@clisp.org>
2456
2457         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Include <string.h>.
2458
2459 2006-09-25  Jim Meyering  <jim@meyering.net>
2460
2461         * m4/fcntl_h.m4 (gl_FCNTL_H): Fix typo in test for failed open.
2462         This typo caused coreutils/tests/dd/misc to fail on Darwin 8.7.0.
2463
2464 2006-09-25  Eric Blake  <ebb9@byu.net>
2465
2466         * gnulib-tool (func_import, func_create_testdir): Fix typos in
2467         exec's in 2006-09-18 patch when shuffling fds.
2468
2469 2006-09-25  Bruno Haible  <bruno@clisp.org>
2470
2471         * m4/getloadavg.m4 (gl_GETLOADAVG): Fix directory in error message.
2472         Reported by Jim Meyering.
2473
2474 2006-09-24  Jim Meyering  <jim@meyering.net>
2475
2476         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Don't use '>' to
2477         compare a pointer against a literal "0".  That caused failures with
2478         at least HP-UX's hpcc.
2479
2480 2006-09-22  Simon Josefsson  <jas@extundo.com>
2481
2482         * modules/gc-sha1:
2483         * modules/gc-md4:
2484         * modules/gc-hmac-sha1:
2485         * modules/gc-hmac-md5:
2486         * modules/gc-des:
2487         * modules/gc-arcfour: Distribute more files.
2488
2489 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2490
2491         * lib/gl_anylinked_list2.h [lint] (gl_linked_iterator)
2492         (gl_linked_iterator_from_to): Initialize struct completely.
2493         * lib/gl_anytree_list2.h [lint] (gl_tree_iterator): Likewise.
2494         (gl_tree_iterator_from_to): Likewise
2495         * lib/gl_anytree_oset.h [lint] (gl_tree_iterator): Likewise.
2496         * lib/gl_array_list.c [lint] (gl_array_iterator)
2497         (gl_array_iterator_from_to): Likewise.
2498         * lib/gl_array_oset.c [lint] (gl_array_iterator): Likewise.
2499         * lib/gl_carray_list.c [lint] (gl_carray_iterator)
2500         (gl_carray_iterator_from_to): Likewise.
2501
2502         * lib/gc-gnulib.c [GC_USE_HMAC_SHA1]: include hmac.h for hmac_sha1.
2503         * lib/md4.c (md4_process_block): Remove unused variable.
2504         * lib/rijndael-api-fst.c (rijndaelBlockDecrypt): GCC suggests
2505         parentheses for clarity.
2506
2507 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2508
2509         * modules/bison-i18n (Depends-on): Add gettext.
2510
2511 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2512
2513         * m4/fsusage.m4 (gl_STATFS_TRUNCATES): Avoid unused variable.
2514         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): Likewise.
2515         * m4/jm-winsz1.m4 (gl_HEADER_TIOCGWINSZ_IN_TERMIOS_H): Likewise;
2516         also add missing comma that caused broken test.
2517         * m4/link-follow.m4 (gl_AC_FUNC_LINK_FOLLOWS_SYMLINK): Include
2518         stdlib.h, for `abort'.
2519         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Avoid unused
2520         variables.
2521         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Check for and
2522         include unistd.h if present, for `rmdir'.
2523         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): Avoid unused
2524         variables.
2525         * m4/putenv.m4 (gl_FUNC_PUTENV): Rewrite using AC_RUN_IFELSE, and
2526         in the process include standard headers for prototypes.
2527         * m4/readutmp.m4 (gl_READUTMP): Require AC_GNU_SOURCE, so utmpxname
2528         gets declared on GNU/Linux.
2529         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Check for and include
2530         unistd.h, for `rmdir'.
2531         * m4/time_r.m4 (gl_TIME_R): Avoid unused variables.
2532
2533         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Avoid expression that is
2534         always true.
2535         * m4/strndup.m4 (gl_FUNC_STRNDUP): include stdlib.h, for `free'.
2536
2537         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Avoid gcc -Wall warnings.
2538
2539 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2540
2541         * gnulib-tool (func_version): Create output all at once.  This
2542         may help avoid triggering unnecessary SIGPIPEs, and at any
2543         rate it doesn't hurt.
2544
2545 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2546             Bruno Haible  <bruno@clisp.org>
2547
2548         * m4/lock.m4 (gl_LOCK_BODY): Avoid unused variables warning.
2549         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
2550         * m4/signed.m4 (bh_C_SIGNED): Likewise.
2551
2552         * m4/vasprintf.m4 (gl_PREREQ_VASPRINTF_H): New macro.
2553         (gl_FUNC_VASPRINTF): Invoke it.
2554
2555 2006-09-22  Bruno Haible  <bruno@clisp.org>
2556
2557         * m4/getloadavg.m4 (gl_GETLOADAVG): Expect the directory of
2558         getloadavg.c as first argument.
2559
2560 2006-09-22  Bruno Haible  <bruno@clisp.org>
2561
2562         * gnulib-tool (func_import, func_create_testdir): Set gl_source_base
2563         at the beginning of the gl_INIT macro.
2564         * modules/getloadavg (configure.ac): Pass $gl_source_base to
2565         gl_GETLOADAVG.
2566
2567 2006-09-22  Bruno Haible  <bruno@clisp.org>
2568
2569         * gnulib-tool (func_create_megatestdir): Don't include the config-h
2570         module.
2571         Suggested by Ralf Wildenhues.
2572
2573 2006-09-20  Paul Eggert  <eggert@cs.ucla.edu>
2574
2575         Import this patch from libc:
2576
2577         2006-09-06  Jakub Jelinek  <jakub@redhat.com>
2578
2579         * lib/regex_internal.c (re_string_reconstruct): Handle
2580         offset < pstr->valid_raw_len && pstr->offsets_needed case.
2581         Ensure no bytes read before raw_mbs array.  Pass a saved copy of
2582         pstr->valid_len - 1 rather than pstr->valid_raw_len - 1 to
2583         re_string_context_at.
2584
2585         * m4/regex.m4 (gl_REGEX): Check for locale.h, since the test
2586         now requires it.
2587         (gl_PREREQ_REGEX): Don't check for locale.h any more, since
2588         gl_REGEX now does it for us.
2589         (gl_REGEX): Add test taken from
2590         http://sourceware.org/ml/libc-hacker/2006-09/msg00008.html.
2591
2592         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Require AC_SYS_LARGEFILE.
2593         Check that large offsets work.  Modernize Autoconf usages.
2594         Prefer "yes" to mean a good thing rather than a bad.
2595         Don't put "#define mkstemp" in config.h, as this might interfere
2596         with standard system headers that "#define mkstemp mkstemp64".
2597
2598         * modules/mkstemp (Depends-on): Add extensions, so that
2599         mkstemp is visible on some platforms.
2600         (Makefile.am): Add mkstemp.h to EXTRA_DIST.
2601         (Include): Change to "mkstemp.h" from <stdlib.h>.
2602         (Files): Add mkstemp.h.
2603
2604         * lib/mkstemp.h: New file, since some standard headers
2605         #define mkstemp.
2606         * lib/mkstemp.c: Revamp to put the !_LIBC code together.
2607         Include "mkstemp.h".
2608         Make the _LIBC code resemble glibc original more,
2609         e.g., use K&R style.
2610         * lib/mkstemp-safer.c: Include "mkstemp.h" instead of <stdlib.h>.
2611         (mkstemp): Remove, since mkstemp.h does this for us.
2612         * lib/stdlib--.h: Include mkstemp.h.
2613
2614         Import this patch from libc:
2615
2616         2006-04-07  Ulrich Drepper  <drepper@redhat.com>
2617
2618         * lib/tempname.c (__gen_tempname): Change attempts_min
2619         into a macro.  Use preprocessor to decide how to initialize
2620         attempts [Coverity CID 67].
2621
2622 2006-09-20  Bruno Haible  <bruno@clisp.org>
2623
2624         * lib/mkdtemp.c: Import from libc.
2625         2006-04-07  Ulrich Drepper  <drepper@redhat.com>
2626                 * sysdeps/posix/tempname.c (__gen_tempname): Change
2627                 attempts_min into a macro.  Use preprocessor to decide how to
2628                 initialize attempts [Coverity CID 67].
2629         2001-11-27  Paul Eggert  <eggert@twinsun.com>
2630                 * sysdeps/posix/tempname.c (__gen_tempname): Try at least
2631                 ATTEMPTS_MIN or TMP_MAX times, whichever is greater.
2632
2633 2006-09-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2634
2635         * gnulib-tool (func_exit): New function, to allow to pass the
2636         exit status portably through the trap.  Use everywhere.
2637         (--help, --version): Signal a write error.
2638         (trap): catch SIGPIPE, for write errors.
2639         Exit at the end of the trap, with the correct exit status.
2640
2641 2006-09-19  Karl Berry  <karl@gnu.org>
2642
2643         * doc/gnulib.texi: note about the license texinfo files.
2644
2645 2006-09-19  Eric Blake  <ebb9@byu.net>
2646
2647         * gnulib-tool: Avoid space-tab.
2648
2649 2006-09-18  Paul Eggert  <eggert@cs.ucla.edu>
2650
2651         * lib/getaddrinfo.c (getaddrinfo) [defined HAVE_IPV6]: Fix typo
2652         that prevented coreutils 6.1 from building.  Problem reported
2653         by Petter Reinholdtsen.
2654
2655 2006-09-18  Paul Eggert  <eggert@cs.ucla.edu>
2656
2657         * gnulib-tool (avoidlist): Fix typo that broke options like
2658         --avoid=lock that are used by coreutils bootstrap.
2659
2660 2006-09-18  Mark D. Baushke  <mdb@gnu.org>
2661
2662         * m4/inttypes.m4 (gl_INTTYPES_H): Quote "test" args
2663         more systematically.
2664
2665 2006-09-18  Jim Meyering  <jim@meyering.net>
2666
2667         * lib/savewd.c (savewd_restore): Don't shadow: s/status/child_status/.
2668
2669 2006-09-18  Bruno Haible  <bruno@clisp.org>
2670
2671         * modules/inttypes (Files): Remove m4/inttypes-h.m4.
2672
2673 2006-09-18  Bruno Haible  <bruno@clisp.org>
2674
2675         * m4/inttypes-h.m4 (gl_HEADER_INTTYPES_H): Remove macro.
2676         * m4/inttypes-pri.m4: Require autoconf >= 2.52.
2677         (gt_INTTYPES_PRI): Invoke AC_CHECK_HEADERS on inttypes.h. Test
2678         ac_cv_header_inttypes_h instead of gl_cv_header_inttypes_h.
2679         * m4/gettext.m4: Require autoconf >= 2.52.
2680         (gt_INTL_SUBDIR_CORE): Invoke AC_CHECK_HEADERS on inttypes.h.
2681         * m4/inttypes.m4 (gl_INTTYPES_H): Test ac_cv_header_inttypes_h instead
2682         of gl_cv_header_inttypes_h.
2683
2684 2006-09-18  Bruno Haible  <bruno@clisp.org>
2685
2686         * lib/javaversion.c: Include configmake.h.
2687
2688 2006-09-18  Bruno Haible  <bruno@clisp.org>
2689
2690         * gnulib-tool (func_import, func_create_testdir): Use exec tricks to
2691         avoid that the while loops be executed in a subshell.
2692
2693 2006-09-18  Bruno Haible  <bruno@clisp.org>
2694
2695         * MODULES.html.sh (func_module): Break long lines.
2696         Suggested by Bruce Korb <bkorb@gnu.org>.
2697
2698 2006-09-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2699
2700         Speed up by a factor of 1.12.
2701         * gnulib-tool (nl): New variable.
2702         (func_import): Rewrite include directive extraction to only read each
2703         directive once.
2704
2705 2006-09-17  Bruno Haible  <bruno@clisp.org>
2706
2707         * modules/javaversion (Makefile.am): Remove DEFS setting.
2708         (Depends-on): Add configmake, for PKGDATADIR definition.
2709
2710 2006-09-17  Bruno Haible  <bruno@clisp.org>
2711
2712         * gnulib-tool (func_create_testdir): Rewrite all files at once.
2713
2714 2006-09-17  Bruno Haible  <bruno@clisp.org>
2715
2716         * gnulib-tool (func_append): New function, stolen from libtool.m4.
2717         (func_modules_transitive_closure, func_modules_add_dummy,
2718         func_modules_to_filelist, func_import, func_create_testdir,
2719         func_create_megatestdir, ...): Use it wherever possible.
2720         Suggested by Ralf Wildenhues.
2721
2722 2006-09-16  Karl Berry  <karl@gnu.org>
2723
2724         * doc/fdl.texi (ADDENDUM): switch to @heading from @appendixsubsec,
2725         to avoid sectioning errors.
2726         * doc/lgpl.texi, gpl.texi (Copying): downcase @unnumbered title.
2727         [ifinfo]: blank line after @center-ed titles.
2728         * doc/lgpl.texi (Library Copying): Rename main node to GNU LGPL.
2729         Spell FSF address consistently with others.
2730         (These changes approved by rms.)
2731
2732 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2733
2734         Speed up by a factor of 1.61.
2735         * gnulib-tool (func_modules_transitive_closure): Rewrite to not check
2736         already checked module names again.
2737
2738 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2739
2740         Speed up by a factor of 1.13.
2741         * gnulib-tool (func_import): Rewrite all old_files at once; likewise
2742         for new_files, and the input to func_add_or_update.
2743
2744 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2745
2746         * gnulib-tool (func_all_modules, func_modules_to_filelist, func_import,
2747         func_create_testdir, ...): Change 'sort | uniq' to 'sort -u'.
2748
2749 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
2750
2751         * modules/mkancesdirs (Depends-on): Add fcntl.
2752         * modules/savewd: New file.
2753         * MODULES.html.sh (File system functions): Add savewd.
2754
2755         * modules/configmake (Makefile.am): Add support for the
2756         Automake-supplied PKGLIBDIR, PKGINCLUDEDIR, PKGDATADIR.
2757
2758 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
2759
2760         * m4/savewd.m4: New file.
2761
2762 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
2763
2764         * lib/dirchownmod.c: Don't include fcntl.h; no longer needed.
2765         (dirchownmod): New arg FD.  All callers changed.
2766         Use FD rather than opening the directory ourself, as opening is
2767         now the caller's responsibility.
2768         * lib/dirchownmod.h: Likewise.
2769         * lib/mkancesdirs.c: Include <sys/types.h>, for portability to older
2770         hosts that require <sys/types.h> before <sys/stat.h>.  Include
2771         fcntl.h, savewd.h, and unistd.h, not dirname.h and stat-macros.h.
2772         (test_dir): Remove.
2773         (mkancesdirs): Return length of prefix of FILE that has already
2774         been made, or -2 if there is a child doing the work.  Redo
2775         algorithm so that it is O(N) rather than O(N**2).  Optimize away
2776         ".", and treat ".." specially since it might stray back into
2777         already-created areas.  Use a subprocess if necessary.  New arg
2778         WD; all users changed.  MAKE_DIR function should now return 1
2779         if it creates a directory that is not readable.  Return -2 if
2780         a child process is spun off.
2781         * lib/mkancesdirs.h: Include <stddef.h>, for ptrdiff_t.
2782         Adjust signature to match code.
2783         * lib/mkdir-p.c: Include dirname.h, for IS_ABSOLUTE_FILE_NAME.
2784         (make_dir_parents): Use a subprocess if necessary.  New arg WD;
2785         all users changed.
2786         * lib/savewd.c, lib/savewd.h: New files.
2787
2788 2006-09-15  Jim Meyering  <jim@meyering.net>
2789
2790         * modules/rename-dest-slash: New module.
2791         * MODULES.html.sh (posix_compat): Add it here.
2792
2793         * modules/rename: Reflect vb_FUNC_RENAME -> gl_FUNC_RENAME change.
2794
2795 2006-09-15  Jim Meyering  <jim@meyering.net>
2796
2797         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH): New
2798         file.
2799
2800         * m4/rename.m4 (gl_FUNC_RENAME): Rename from vb_FUNC_RENAME.
2801
2802 2006-09-15  Jim Meyering  <jim@meyering.net>
2803
2804         * lib/rename-dest-slash.c (has_trailing_slash): Use
2805         FILE_SYSTEM_PREFIX_LEN, for non-POSIX systems.
2806         (rpl_rename_dest_slash): Perform the cheaper trailing slash
2807         test before testing whether SRC is a directory.
2808         Suggestions from Bruno Haible.
2809
2810         Avoid a warning about an unused variable.
2811         * lib/regex_internal.c (re_dfa_add_node): Move declaration of "type"
2812         into the #ifdef block where it's used.
2813
2814         * lib/rename-dest-slash.c: New file.
2815
2816 2006-09-14  Bruno Haible  <bruno@clisp.org>
2817
2818         * lib/allocsa.c: Include <config.h> unconditionally.
2819         * lib/asnprintf.c: Likewise.
2820         * lib/asprintf.c: Likewise.
2821         * lib/c-strcasecmp.c: Likewise.
2822         * lib/c-strcasestr.c: Likewise.
2823         * lib/c-strncasecmp.c: Likewise.
2824         * lib/c-strstr.c: Likewise.
2825         * lib/classpath.c: Likewise.
2826         * lib/clean-temp.c: Likewise.
2827         * lib/concatpath.c: Likewise.
2828         * lib/copy-file.c: Likewise.
2829         * lib/csharpcomp.c: Likewise.
2830         * lib/csharpexec.c: Likewise.
2831         * lib/execute.c: Likewise.
2832         * lib/fatal-signal.c: Likewise.
2833         * lib/findprog.c: Likewise.
2834         * lib/fwriteerror.c: Likewise.
2835         * lib/gl_array_list.c: Likewise.
2836         * lib/gl_array_oset.c: Likewise.
2837         * lib/gl_avltree_list.c: Likewise.
2838         * lib/gl_avltree_oset.c: Likewise.
2839         * lib/gl_avltreehash_list.c: Likewise.
2840         * lib/gl_carray_list.c: Likewise.
2841         * lib/gl_linked_list.c: Likewise.
2842         * lib/gl_linkedhash_list.c: Likewise.
2843         * lib/gl_list.c: Likewise.
2844         * lib/gl_oset.c: Likewise.
2845         * lib/gl_rbtree_list.c: Likewise.
2846         * lib/gl_rbtree_oset.c: Likewise.
2847         * lib/gl_rbtreehash_list.c: Likewise.
2848         * lib/imaxabs.c: Likewise.
2849         * lib/imaxdiv.c: Likewise.
2850         * lib/javacomp.c: Likewise.
2851         * lib/javaexec.c: Likewise.
2852         * lib/javaversion.c: Likewise.
2853         * lib/linebreak.c: Likewise.
2854         * lib/localcharset.c: Likewise.
2855         * lib/lock.c: Likewise.
2856         * lib/mbchar.c: Likewise.
2857         * lib/mbswidth.c: Likewise.
2858         * lib/mkdtemp.c: Likewise.
2859         * lib/pipe.c: Likewise.
2860         * lib/printf-args.c: Likewise.
2861         * lib/printf-parse.c: Likewise.
2862         * lib/progname.c: Likewise.
2863         * lib/progreloc.c: Likewise.
2864         * lib/readlink.c: Likewise.
2865         * lib/sh-quote.c: Likewise.
2866         * lib/stpcpy.c: Likewise.
2867         * lib/stpncpy.c: Likewise.
2868         * lib/strcasecmp.c: Likewise.
2869         * lib/strcasestr.c: Likewise.
2870         * lib/strcspn.c: Likewise.
2871         * lib/striconv.c: Likewise.
2872         * lib/strncasecmp.c: Likewise.
2873         * lib/strnlen1.c: Likewise.
2874         * lib/strstr.c: Likewise.
2875         * lib/strtok_r.c: Likewise.
2876         * lib/tls.c: Likewise.
2877         * lib/tmpdir.c: Likewise.
2878         * lib/unicodeio.c: Likewise.
2879         * lib/unsetenv.c: Likewise.
2880         * lib/vasnprintf.c: Likewise.
2881         * lib/vasprintf.c: Likewise.
2882         * lib/wait-process.c: Likewise.
2883         * lib/xallocsa.c: Likewise.
2884         * lib/xsetenv.c: Likewise.
2885         * lib/xstriconv.c: Likewise.
2886
2887 2006-09-13  Simon Josefsson  <jas@extundo.com>
2888
2889         * m4/getdate.m4: Don't AC_LIBOBJ([getdate]), automake takes care of
2890         that internally, suggested by Ralf Wildenhues
2891         <Ralf.Wildenhues@gmx.de>.
2892
2893 2006-09-13  Simon Josefsson  <jas@extundo.com>
2894
2895         * gnulib-tool (func_emit_lib_Makefile_am): Use $(LIBOBJS), not
2896         @LIBOBJS@.
2897         Suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
2898
2899 2006-09-13  Paul Eggert  <eggert@cs.ucla.edu>
2900
2901         * lib/_fpending.c: Include <config.h> unconditionally, since we no
2902         longer worry about uses that don't define HAVE_CONFIG_H.
2903         * lib/acl.c, lib/alloca.c, lib/argmatch.c, lib/atexit.c:
2904         * lib/backupfile.c, lib/basename.c, lib/c-stack.c, lib/c-strtod.c:
2905         * lib/calloc.c,lib/ canon-host.c, lib/canonicalize.c, lib/chdir-long.c:
2906         * lib/chdir-safer.c, lib/chown.c, lib/cloexec.c, lib/close-stream.c:
2907         * lib/closeout.c, lib/creat-safer.c, lib/cycle-check.c, lib/diacrit.c:
2908         * lib/dirchownmod.c, lib/dirfd.c, lib/dirname.c, lib/dup-safer.c:
2909         * lib/dup2.c, lib/error.c, lib/euidaccess.c, lib/exclude.c:
2910         * lib/exitfail.c, lib/fchmodat.c, lib/fchown-stub.c, lib/fd-safer.c:
2911         * lib/file-type.c, lib/fileblocks.c, lib/filemode.c, lib/filenamecat.c:
2912         * lib/fnmatch.c, lib/fopen-safer.c, lib/fprintftime.c, lib/free.c:
2913         * lib/fsusage.c, lib/ftruncate.c, lib/fts-cycle.c, lib/fts.c:
2914         * lib/full-write.c, lib/gai_strerror.c, lib/getcwd.c, lib/getdate.y:
2915         * lib/getdomainname.c, lib/getgroups.c, lib/gethostname.c:
2916         * lib/gethrxtime.c, lib/getloadavg.c, lib/getlogin_r.c:
2917         * lib/getndelim2.c, lib/getnline.c, lib/getopt.c, lib/getopt1.c:
2918         * lib/getpass.c, lib/gettime.c, lib/gettimeofday.c, lib/getugroups.c:
2919         * lib/getusershell.c, lib/glob.c, lib/group-member.c:
2920         * lib/hard-locale.c, lib/hash-pjw.c, lib/hash.c, lib/human.c:
2921         * lib/idcache.c, lib/inet_ntop.c, lib/inet_pton.c, lib/inttostr.c:
2922         * lib/isdir.c, lib/lchown.c, lib/linebuffer.c, lib/long-options.c:
2923         * lib/lstat.c, lib/malloc.c, lib/md5.c, lib/memcasecmp.c, lib/memchr.c:
2924         * lib/memcmp.c, lib/memcoll.c, lib/memcpy.c, lib/memmove.c:
2925         * lib/memrchr.c, lib/mkancesdirs.c, lib/mkdir-p.c, lib/mkdir.c:
2926         * lib/mkdirat.c, lib/mkstemp-safer.c, lib/mkstemp.c, lib/modechange.c:
2927         * lib/mountlist.c, lib/nanosleep.c, lib/obstack.c, lib/open-safer.c:
2928         * lib/openat-die.c, lib/openat.c, lib/pagealign_alloc.c, lib/physmem.c:
2929         * lib/pipe-safer.c, lib/posixtm.c, lib/posixver.c, lib/putenv.c:
2930         * lib/quote.c, lib/quotearg.c, lib/raise.c, lib/readtokens.c:
2931         * lib/readtokens0.c, lib/readutmp.c, lib/realloc.c, lib/regex.c:
2932         * lib/rename.c, lib/rmdir.c, lib/rpmatch.c, lib/safe-read.c:
2933         * lib/same.c, lib/save-cwd.c, lib/savedir.c, lib/setenv.c:
2934         * lib/settime.c, lib/sha1.c, lib/sig2str.c, lib/snprintf.c:
2935         * lib/strdup.c, lib/strerror.c, lib/strftime.c, lib/stripslash.c:
2936         * lib/strndup.c, lib/strnlen.c, lib/strpbrk.c, lib/strtod.c:
2937         * lib/strtoimax.c, lib/strtol.c, lib/strverscmp.c, lib/tempname.c:
2938         * lib/time_r.c, lib/timegm.c, lib/tmpfile-safer.c, lib/unlinkdir.c:
2939         * lib/userspec.c, lib/utime.c, lib/utimecmp.c, lib/utimens.c:
2940         * lib/version-etc-fsf.c, lib/version-etc.c, lib/xalloc-die.c:
2941         * lib/xgetcwd.c, lib/xgethostname.c, lib/xmalloc.c, lib/xmemcoll.c:
2942         * lib/xnanosleep.c, lib/xreadlink.c, lib/xstrtod.c, lib/xstrtoimax.c:
2943         * lib/xstrtol.c, lib/xstrtoumax.c, lib/yesno.c:
2944         Likewise.
2945
2946 2006-09-13  Eric Blake  <ebb9@byu.net>
2947
2948         * lib/getopt.c: Fix typo in last commit.
2949
2950 2006-09-12  Sergey Poznyakoff  <gray@gnu.org.ua>
2951
2952         * lib/argp-help.c (argp_doc): Make sure NULL is not passed to
2953         dgettext.
2954
2955 2006-09-12  Jim Meyering  <jim@meyering.net>
2956
2957         * lib/nanosleep.c: Include <sys/types.h> before sys/select.h, to avoid
2958         compilation failure (due to use of pid_t in latter) on NetBSD 1.6.
2959         Reported by Nelson H. F. Beebe.
2960
2961 2006-09-10  Sergey Poznyakoff  <gray@gnu.org.ua>
2962
2963         * lib/argp-parse.c (__argp_parse) [!_LIBC]: Make sure
2964         program_invocation_name and program_invocation_short_name are
2965         initialized.
2966         * lib/argp-namefrob.h: Move declarations of program_invocation_name
2967         and program_invocation_short_name to argp.h, so they are visible
2968         to user programs.
2969         * lib/argp.h: Likewise
2970
2971 2006-09-10  Bruno Haible  <bruno@clisp.org>
2972
2973         * modules/mkdtemp (Files): Remove m4/ulonglong.m4, m4/stdint_h.m4,
2974         m4/inttypes_h.m4, m4/uintmax_t.m4.
2975
2976 2006-09-10  Bruno Haible  <bruno@clisp.org>
2977
2978         * m4/mkdtemp.m4 (gl_PREREQ_MKDTEMP): Don't require
2979         gl_AC_TYPE_UINTMAX_T.
2980
2981 2006-09-10  Bruno Haible  <bruno@clisp.org>
2982
2983         * lib/mkdtemp.c: Include <stdint.h> always. Don't include <inttypes.h>.
2984
2985 2006-09-09  Sergey Poznyakoff  <gray@gnu.org.ua>
2986
2987         * lib/argp.h (struct argp): Document the N_("..") "\v" N_("..")
2988         convention.  Text proposed by Bruno Haible.
2989         (struct argp_option): Document the use of N_() wrappers.
2990
2991         * lib/argp-help.c (argp_doc): Split the untranslated doc string on
2992         '\v', and translate the two parts separately, instead of feeding
2993         the whole string to gettext.  This allows to exclude
2994         '\v' from the strings visible to the translator by writing doc
2995         strings as N_("..") "\v" N_("..").
2996
2997 2006-09-09  Paul Eggert  <eggert@cs.ucla.edu>
2998
2999         * config/srclist.txt: Undo latest change; the bug was fixed.
3000
3001 2006-09-09  Bruno Haible  <bruno@clisp.org>
3002
3003         * gnulib-tool (func_emit_lib_Makefile_am): Eliminate lib_LDFLAGS
3004         assignments if building a library without libtool.
3005         (func_emit_tests_Makefile_am): Likewise. Handle lib_* variables as
3006         in func_emit_lib_Makefile_am.
3007         (func_import): When building a static library libfoo.a, arrange to
3008         define variables LIBFOO_LIBDEPS and LIBFOO_LTLIBDEPS.
3009         (func_create_testdir): Likewise.
3010         * modules/gc (configure.ac, Makefile.am): If building statically,
3011         augment gl_libdeps and gl_ltlibdeps instead of lib_LDFLAGS.
3012         * modules/iconvme (configure.ac, Makefile.am): Likewise.
3013         * modules/striconv (configure.ac, Makefile.am): Likewise.
3014         Based on a suggestion by Ralf Wildenhues.
3015
3016 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
3017
3018         * m4/mktime.m4 (AC_FUNC_MKTIME): Sync from Autoconf.
3019         Check for unistd.h too, since Autoconf doesn't assume POSIX.
3020         Also:
3021
3022         2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
3023         Add year_2050_test to catch glibc bug 2821
3024         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
3025
3026         2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
3027         Prefer #ifdef to #if.
3028
3029         2006-04-02  Paul Eggert  <eggert@cs.ucla.edu>
3030         Return from 'main' instead of calling 'exit'.
3031
3032 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
3033
3034         * lib/mktime.c (guess_time_tm): Fix bug where mktime
3035         returned the maximum time_t value rather than (time_t) -1.
3036         Problem originally reported by William Bardwell
3037         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
3038
3039         * lib/isapipe.h (HAVE_FIFO_PIPES) [!defined HAVE_FIFO_PIPES]:
3040         Moved to here ...
3041         * lib/isapipe.c (HAVE_FIFO_PIPES) [!defined HAVE_FIFO_PIPES]:
3042         ... from here.
3043
3044 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
3045
3046         * config/srclist.txt: Temporarily comment out mktime.c until glibc bug
3047         2821 is fixed.
3048
3049 2006-09-08  Jim Meyering  <jim@meyering.net>
3050
3051         Don't make generated files read-only.  That would bother too many
3052         people.  However, do retain the ability to work when targets are
3053         read-only: remove the destination and temporary files before writing
3054         them (when generated via sed or echo), or by using the -f option for
3055         both cp and mv commands.  Suggestion to use -f from Paul Eggert.
3056         * modules/alloca-opt, modules/argz, modules/arpa_inet:
3057         * modules/byteswap, modules/configmake, modules/fcntl:
3058         * modules/fnmatch, modules/getopt, modules/glob, modules/inttypes:
3059         * modules/localcharset, modules/netinet_in, modules/poll:
3060         * modules/stdbool, modules/stdint, modules/sys_select:
3061         * modules/sys_socket, modules/sys_stat, modules/sysexits:
3062
3063 2006-09-08  Jim Meyering  <jim@meyering.net>
3064
3065         Avoid new build failure on FreeBSD 6.0.
3066         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Include
3067         <sys/param.h> when testing whether getmntinfo uses statvfs.  Patch by
3068         Pavel Tsekov, in <http://savannah.gnu.org/bugs/?17643>.
3069
3070 2006-09-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3071
3072         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Don't use plain echo.
3073
3074 2006-09-07  Jim Meyering  <jim@meyering.net>
3075
3076         Fix global typo in last change: use chmod u-w, not chmod u-x.
3077         Spotted by Paul Eggert and Bruce Korb.
3078         * modules/alloca-opt, modules/argz, modules/arpa_inet:
3079         * modules/byteswap, modules/configmake, modules/fcntl:
3080         * modules/fnmatch, modules/getopt, modules/glob, modules/inttypes:
3081         * modules/localcharset, modules/netinet_in, modules/poll:
3082         * modules/stdbool, modules/stdint, modules/sys_select:
3083         * modules/sys_socket, modules/sys_stat, modules/sysexits:
3084
3085 2006-09-06  Jim Meyering  <jim@meyering.net>
3086
3087         Make generated files be read-only.
3088         * modules/alloca-opt (Makefile.am): Work also when $@ is read-only.
3089         Ensure that each generated file is now read-only.
3090         * modules/argz: Likewise.
3091         * modules/arpa_inet: Likewise.
3092         * modules/byteswap: Likewise.
3093         * modules/configmake: Likewise.
3094         * modules/fcntl: Likewise.
3095         * modules/fnmatch: Likewise.
3096         * modules/getopt: Likewise.
3097         * modules/glob: Likewise.
3098         * modules/inttypes: Likewise.
3099         * modules/netinet_in: Likewise.
3100         * modules/poll: Likewise.
3101         * modules/stdbool: Likewise.
3102         * modules/stdint: Likewise.
3103         * modules/sys_select: Likewise.
3104         * modules/sys_socket: Likewise.
3105         * modules/sys_stat: Likewise.
3106         * modules/sysexits: Likewise.
3107         * modules/localcharset: Same as above, but continue using temporary
3108         file named "t-$@" (why different?) rather than the "$@-t" used
3109         everywhere else.
3110
3111         * modules/sysexits (Makefile.am): Replace literal occurrences
3112         of "sysexit.h" more readable, and more consistent, "$@".
3113
3114 2006-09-06  Bruno Haible  <bruno@clisp.org>
3115
3116         * modules/striconv: New file.
3117         * modules/xstriconv: New file.
3118         * MODULES.html.sh (Internationalization functions): Add striconv,
3119         xstriconv.
3120
3121 2006-09-06  Bruno Haible  <bruno@clisp.org>
3122
3123         * modules/gc (Makefile.am): Augment lib_LDFLAGS, not lib_LIBADD.
3124         * modules/iconvme (Makefile.am): Likewise. Also handle the case of
3125         not using libtool correctly.
3126
3127 2006-09-06  Bruno Haible  <bruno@clisp.org>
3128
3129         * lib/striconv.h: New file.
3130         * lib/striconv.c: New file, merging iconvme.c with GNU gettext's
3131         iconvstring.c.
3132         * lib/xstriconv.h: New file.
3133         * lib/xstriconv.c: New file.
3134
3135 2006-09-06  Bruno Haible  <bruno@clisp.org>
3136
3137         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
3138         lib_..._LDFLAGS.
3139
3140 2006-09-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3141
3142         * lib/argz_.h: Sync from Libtool.
3143
3144         2006-09-04  George Bosilca <bosilca@cs.utk.edu>
3145                 and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3146
3147         * lib/libltdl/argz_.h: It's __cplusplus, not _cplusplus.
3148
3149 2006-09-05  Davide Angelocola  <davide.angelocola@tiscali.it>
3150
3151         * modules/trim: New file.
3152
3153 2006-09-05  Davide Angelocola  <davide.angelocola@tiscali.it>
3154
3155         * lib/trim.h: New file.
3156         * lib/trim.c: New file.
3157
3158 2006-09-05  Bruno Haible  <bruno@clisp.org>
3159
3160         * MODULES.html.sh (String handling): Add trim.
3161
3162 2006-09-04  Karl Berry  <karl@gnu.org>
3163
3164         * config/srclist.txt (signed.m4, gettext.m4): changes not propagated
3165         until next release.
3166
3167 2006-09-03  Bruno Haible  <bruno@clisp.org>
3168
3169         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Locate mingw shared libraries
3170         correctly.
3171
3172 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
3173
3174         * m4/getloadavg.m4 (gl_GETLOADAVG): Use CONFIGURING_GETLOADAVG,
3175         not gl_GETLOADAVG.  Omit unneeded semicolons.
3176         Problems reported by Ralf Wildenhues in
3177         <http://lists.gnu.org/archive/html/bug-gnulib/2006-09/msg00000.html>.
3178         (gl_PREREQ_GETLOADAVG): Use AC_DEFUN, not m4_define.  Put
3179         at the end, which is the usual gnulib style.
3180
3181         * m4/fstypename.m4 (gl_FSTYPENAME): Use AC_CHECK_MEMBERS instead
3182         of doing all the work ourselves.
3183         * m4/fsusage.m4 (gl_PREREQ_FSUSAGE_EXTRA): Don't check for
3184         sys/statvfs.h since the code doesn't use HAVE_SYS_STATVFS_H.
3185
3186 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
3187
3188         * lib/getloadavg.c: Use CONFIGURING_GETLOADAVG, not gl_GETLOADAVG.
3189         Problem reported by Ralf Wildenhues in
3190         <http://lists.gnu.org/archive/html/bug-gnulib/2006-09/msg00000.html>.
3191
3192         * lib/mountlist.c: All uses of HAVE_F_FSTYPENAME_IN_STATFS replaced by
3193         HAVE_STRUCT_STATFS_F_FSTYPENAME.
3194
3195 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
3196
3197         * gnulib-tool (func_emit_lib_Makefile_am): Fix typos in
3198         yesterday's patch by changing test -n to test -z.
3199
3200 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
3201
3202         * modules/getloadavg (Files): Add m4/getloadavg.m4.
3203         (configure.ac): AC_FUNC_GETLOADAVG -> gl_GETLOADAVG, as
3204         the former is now obsolescent.
3205
3206         * modules/chdir-long (Depends-on): Add fcntl.
3207
3208 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
3209
3210         * m4/fnmatch.m4: Add comment that Autoconf AC_FUNC_FNMATCH is
3211         obsolescent, and programs should use gnulib instead.
3212         * m4/getloadavg.m4: New file, with contents taken from Autoconf
3213         but with prefixes changed.
3214
3215 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
3216
3217         * lib/getloadavg.c [defined gl_GETLOADAVG]: Don't include config.h
3218         or stdbool.h, because they might not exist while configuring.
3219
3220         * lib/chdir-long.c: Include <fcntl.h>, for O_DIRECTORY.
3221         Don't include unistd.h or limits.h; not needed, since chdir-long.h
3222         does that for us.
3223         (O_DIRECTORY): Remove.
3224
3225 2006-08-31  Eric Blake  <ebb9@byu.net>
3226
3227         * gnulib-tool: Don't let emacs change spaces to TAB.
3228
3229 2006-08-31  Bruno Haible  <bruno@clisp.org>
3230
3231         * gnulib-tool: When calling func_import more than once, do it in a
3232         subshell.
3233         Reported by Eric Blake <ebb9@byu.net>.
3234
3235 2006-08-31  Bruno Haible  <bruno@clisp.org>
3236
3237         * gnulib-tool (nl): Remove variable.
3238         (sed_transform_lib_file): Use more robust test for config-h module.
3239         (func_import): Fix typo in 2006-08-25 patch.
3240
3241 2006-08-31  Bruno Haible  <bruno@clisp.org>
3242
3243         * gnulib-tool (func_emit_lib_Makefile_am): When --makefile-name was
3244         specified, augment Makefile.am variables instead of assigning them.
3245
3246 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
3247
3248         Work around a bug in both the Linux and SunOS 64-bit kernels:
3249         nanosleep mishandles sleeps for longer than 2**31 seconds.
3250         Problem reported by Frank v Waveren in
3251         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00298.html>.
3252         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Require gl_CLOCK_TIME.
3253         Check for nanosleep bug.
3254         (LIB_NANOSLEEP): Append clock_gettime library if needed.
3255
3256 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
3257
3258         Work around a bug in both the Linux and SunOS 64-bit kernels:
3259         nanosleep mishandles sleeps for longer than 2**31 seconds.
3260         Problem reported by Frank v Waveren in
3261         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00298.html>.
3262         * lib/nanosleep.c (BILLION): New constant.
3263         (getnow) [HAVE_BUG_BIG_NANOSLEEP]: New functions.
3264         (rpl_nanosleep) [HAVE_BUG_BIG_NANOSLEEP]: Completely new
3265         implementation.
3266
3267 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
3268
3269         * modules/nanosleep (Depends-on): Add gettime.
3270
3271 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
3272         and Simon Josefsson  <jas@extundo.com>
3273         and Oskar Liljeblad  <oskar@osk.mine.nu>
3274
3275         * MODULES.html.sh (Support for building documentation): Add gpl, lgpl.
3276         * gnulib-tool (func_import): New license type 'unmodifiable license
3277         text'.
3278         * modules/fdl: Use it.  Longer description.
3279         * module/gpl, module/lgpl: New files.
3280
3281 2006-08-30  Jim Meyering  <jim@meyering.net>
3282
3283         * lib/isapipe.c (isapipe): Rename local s/fd/fd_pair/ to avoid
3284         shadowing the parameter.
3285
3286 2006-08-29  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3287
3288         Sync from Libtool:
3289
3290         2006-08-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3291
3292         * lib/libltdl/argz.c: Use `#ifdef HAVE_CONFIG_H', to facilitate code
3293         sharing with gnulib.  Report by Eric Blake.
3294
3295 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
3296
3297         * modules/isapipe: New file.
3298         * MODULES.html.sh (File descriptor based Input/Output): Add isapipe.
3299
3300 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
3301
3302         * modules/configmake (Makefile.am): Add a comment, and omit
3303         the CONFIGMAKE_ prefix from generated macro names.  Suggested
3304         by Bruno Haible.
3305
3306 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
3307
3308         * m4/isapipe.m4: New file.
3309
3310 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
3311
3312         * lib/isapipe.c, lib/isapipe.h: New files.
3313
3314 2006-08-29  Jim Meyering  <jim@meyering.net>
3315
3316         * modules/configmake (Makefile.am): Make configmake.h depend on
3317         Makefile.  Otherwise, a stale configmake.h could hang around.
3318
3319 2006-08-29  Eric Blake  <ebb9@byu.net>
3320
3321         * lib/error.c (error_at_line, print_errno_message): Match libc, after
3322         resolution of upstream bug 3044.
3323
3324 2006-08-29  Bruno Haible  <bruno@clisp.org>
3325
3326         * modules/localcharset (Depends-on): Add configmake.
3327         (Makefile.am): Remove setting of LIBDIR through DEFS.
3328
3329 2006-08-29  Bruno Haible  <bruno@clisp.org>
3330
3331         * lib/localcharset.c: Include configmake.h in order to get LIBDIR
3332         defined.
3333
3334 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
3335
3336         * modules/fcntl: New file.
3337         * modules/chdir-safer (Depends-on): Add fcntl.
3338         * modules/fts: Likewise.
3339         * modules/mkdir-p: Likewise.
3340
3341         * modules/stdint (Makefile.am): Do not substitute ABSOLUTE_INTTYPES_H.
3342         This undoes the most recent change, since we're now addressing the
3343         problem in a different way.
3344
3345         * gnulib-tool (emit_lib_Makefile_am): Don't put $makefile_name
3346         into output, since the output might be called Makefile.am even
3347         if $makefile_name is something different.
3348         (func_import): Use $makefile_am rather than
3349         ${makefile_name-Makefile.am}, to fix a bug where makefile_name was
3350         empty.
3351
3352         * modules/inttypes (Files): Add m4/inttypes-h.m4.
3353
3354 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
3355
3356         * m4/inttypes.m4 (gl_INTTYPES_H): Move ABSOLUTE_INTTYPES_H code here...
3357         * m4/stdint.m4 (gl_STDINT_H): ... from here.  This undoes the most
3358         recent change to stdint.m4, since we're now addressing the problem in a
3359         different way.
3360
3361 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
3362
3363         * m4/fcntl_h.m4: New file.
3364
3365 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
3366
3367         * lib/fcntl_.h: New file.
3368         * lib/chdir-safer.c (O_DIRECTORY, O_NOFOLLOW): Remove, now that we have
3369         the fcntl module.
3370         * lib/dirchownmod.c: Likewise.
3371         * lib/fts.c: Likewise.
3372
3373         * lib/inttypes_.h [defined _GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H]:
3374         Include @ABSOLUTE_INTTYPES_H@ if available, but do nothing else.
3375         * lib/stdint_.h (_GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H): Define
3376         just before including <inttypes.h>, to avoid circular inclusion.
3377
3378 2006-08-28  Jim Meyering  <jim@meyering.net>
3379
3380         * doc/visibility.texi: Actually read and correct the grammar of the
3381         sentence affected by yesterday's change.
3382
3383 2006-08-28  Eric Blake  <ebb9@byu.net>
3384
3385         * modules/inttypes (Makefile.am): Fix sed error when inttypes.h
3386         needs wrapper.
3387
3388 2006-08-28  Eric Blake  <ebb9@byu.net>
3389
3390         * m4/inttypes.m4 (gl_INTTYPES_H): Fix missing #endif.
3391
3392 2006-08-28  Eric Blake  <ebb9@byu.net>
3393
3394         * m4/codeset.m4 (AM_LANGINFO_CODESET): Avoid compiler warning.
3395
3396 2006-08-28  Bruno Haible  <bruno@clisp.org>
3397
3398         * modules/c-strstr: New file, from GNU gettext.
3399         * MODULES.html.sh (String handling): Add c-strstr.
3400
3401 2006-08-28  Bruno Haible  <bruno@clisp.org>
3402
3403         * m4/inttypes.m4 (gl_INTTYPES_H): Don't test for the existence of SCNX*
3404         macros.
3405         Reported by Eric Blake.
3406
3407 2006-08-28  Bruno Haible  <bruno@clisp.org>
3408
3409         * lib/vasnprintf.c (EOVERFLOW): Remove definition.
3410         (VASNPRINTF): Return a string of length > INT_MAX without failing.
3411         * lib/vasprintf.c: Include errno.h, limits.h.
3412         (EOVERFLOW): New fallback definition.
3413         (vasprintf): Test here whether the string length is > INT_MAX.
3414         * lib/vsnprintf.c: Include errno.h, limits.h.
3415         (EOVERFLOW): New fallback definition.
3416         (vsnprintf): Fix bug when generated string was too long for the buffer.
3417         Test here whether the string length is > INT_MAX.
3418
3419 2006-08-28  Bruno Haible  <bruno@clisp.org>
3420
3421         * lib/inttypes_.h (SCNX*): Remove definitions.
3422         Reported by Eric Blake.
3423
3424 2006-08-28  Bruno Haible  <bruno@clisp.org>
3425
3426         * lib/c-strstr.h: New file, from GNU gettext.
3427         * lib/c-strstr.c: New file, from GNU gettext.
3428
3429 2006-08-28  Bruno Haible  <bruno@clisp.org>
3430
3431         * gnulib-tool: Reorder some statements.
3432
3433 2006-08-28  Bruno Haible  <bruno@clisp.org>
3434
3435         * gnulib-tool: New option --makefile-name.
3436         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am): Use
3437         $makefile_name.
3438         (func_import): Write $makefile_name to the cache file, and read it from
3439         there unless explicitly specified. Use $makefile_name as file name
3440         instead of Makefile.am. Adjust the recommendations accordingly.
3441
3442 2006-08-28  Bruno Haible  <bruno@clisp.org>
3443
3444         * gnulib-tool (func_verify_module): Check against misapplying patch.
3445
3446 2006-08-28  Bruno Haible  <bruno@clisp.org>
3447
3448         * gnulib-tool (func_relativize, func_relconcat): New functions.
3449         Give an error if --local-dir is given with --update.
3450         Remove trailing slashes from $local_gnulib_dir.
3451         (func_import): Store the relativized $local_gnulib_dir in
3452         gnulib-cache.m4, and read it from there if not specified explicitly.
3453
3454 2006-08-28  Bruno Haible  <bruno@clisp.org>
3455
3456         * gnulib-tool (func_get_tests_module): Don't assume that $gnulib_dir
3457         is the current directory. Respect also $local_gnulib_dir.
3458
3459 2006-08-28  Bruno Haible  <bruno@clisp.org>
3460             Simon Josefsson  <jas@extundo.com>
3461
3462         BeOS portability.
3463         * lib/getaddrinfo.c (PF_INET, PF_UNSPEC): New macros.
3464
3465 2006-08-27  Jim Meyering  <jim@meyering.net>
3466
3467         * doc/visibility.texi: Remove duplicate word: "pointer".
3468
3469 2006-08-26  Bruno Haible  <bruno@clisp.org>
3470
3471         * modules/inttypes (Files): Add lib/inttypes_.h, remove lib/inttypes.h.
3472         Add m4/inttypes.m4, remove m4/_inttypes_h.m4 and m4/include_next.m4.
3473         (Makefile.am): Create inttypes.h from inttypes_.h.
3474         * modules/stdint (Makefile.am): Substitute also ABSOLUTE_INTTYPES_H.
3475
3476         * modules/imaxabs: New file.
3477
3478         * modules/imaxdiv: New file.
3479
3480 2006-08-26  Bruno Haible  <bruno@clisp.org>
3481
3482         * m4/inttypes.m4: New file.
3483         * m4/_inttypes_h.m4: Remove file.
3484         * m4/inttypes-pri.m4 (gt_INTTYPES_PRI): Also AC_SUBST
3485         PRI_MACROS_BROKEN.
3486         * m4/stdint.m4 (gl_STDINT_H): Define also ABSOLUTE_INTTYPES_H.
3487
3488         * m4/imaxabs.m4: New file.
3489
3490         * m4/imaxdiv.m4: New file.
3491
3492 2006-08-26  Bruno Haible  <bruno@clisp.org>
3493
3494         * lib/inttypes_.h: New file.
3495         * lib/inttypes.h: Remove file.
3496         * lib/stdint_.h: Include <inttypes.h> through its absolute filename.
3497
3498         * lib/imaxabs.c: New file.
3499
3500         * lib/imaxdiv.c: New file.
3501
3502 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
3503
3504         New config-h module, so that "make" output needn't be cluttered
3505         by -DHAVE_CONFIG_H.
3506         * MODULES.html.sh (Support for building libraries and executables):
3507         Add config-h.
3508         * modules/config-h: New file.
3509         * gnulib-tool (nl, sed_transform_lib_file): New vars.
3510         (func_import): Turn "#ifdef HAVE_CONFIG_H" to "#if 1" if
3511         the config-h module is used.
3512
3513         New configmake module, so that "make" output needn't be cluttered
3514         by fluff like '-DLIBDIR=\"/usr/local/lib\"'.
3515         * MODULES.html.sh (Support for building libraries and executables):
3516         Add configmake.
3517         * modules/configmake: New file.
3518
3519 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
3520
3521         * m4/config-h.m4: New file.
3522
3523 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
3524
3525         * config/srclist.txt: Add elisp-comp.
3526
3527 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
3528
3529         * MODULES.html.sh (Support for building libraries and executables):
3530         Add elisp-comp.
3531         * build-aux/elisp-comp: New file.
3532         * modules/elisp-comp: New file.
3533
3534 2006-08-24  Bruno Haible  <bruno@clisp.org>
3535
3536         * gnulib-tool (func_create_testdir): Use non-default values of
3537         sourcebase and m4base.
3538
3539 2006-08-24  Bruno Haible  <bruno@clisp.org>
3540
3541         * MODULES.html.sh (Compatibility checks for POSIX:2001 functions: Fix
3542         HTML structure.
3543
3544 2006-08-23  Paul Eggert  <eggert@cs.ucla.edu>
3545
3546         * modules/openat (Depends-on): Add lchown.
3547
3548 2006-08-23  Bruno Haible  <bruno@clisp.org>
3549
3550         * gnulib-tool (func_import, func_create_testdir): Emit an invocation
3551         of gl_LOCK_EARLY instead of gl_LOCK.
3552
3553 2006-08-23  Bruno Haible  <bruno@clisp.org>
3554
3555         * m4/lock.m4 (gl_LOCK_BODY): Change the default value of gl_use_threads
3556         on OSF/1 to no.
3557         Reported by Stephen Cartwright <sgcartwr@ucalgary.ca>.
3558
3559 2006-08-23  Bruno Haible  <bruno@clisp.org>
3560
3561         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Don't consider BeOS statvfs
3562         as unusable.
3563
3564         * m4/lock.m4 (gl_LOCK_EARLY): Renamed from gl_LOCK.
3565         (gl_LOCK_BODY): Remove gl_PREREQ_LOCK invocation.
3566         (gl_LOCK): New macro.
3567
3568 2006-08-22  Simon Josefsson  <jas@extundo.com>
3569
3570         * modules/gc-md5 (Makefile.am): Need to add md5.h, after changes
3571         to md5 module.
3572
3573 2006-08-22  Simon Josefsson  <jas@extundo.com>
3574
3575         * MODULES.html.sh: Add "Support for maintaining and release
3576         projects".
3577
3578         * build-aux/gnupload: New file, from coreutils.
3579
3580 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
3581
3582         Avoid the need for AC_LIBSOURCES in m4 macros.
3583         * modules/arcfour (EXTRA_DIST): Add arcfour.h.
3584         * modules/arctwo (EXTRA_DIST): Add arctwo.h.
3585         * modules/check-version (EXTRA_DIST): Add check-version.h.
3586         * modules/crc (EXTRA_DIST): Add crc.h.
3587         * modules/des (EXTRA_DIST): Add des.h.
3588         * modules/gc (EXTRA_DIST): Add gc.h.
3589         * modules/getdelim (EXTRA_DIST): Add getdelim.h.
3590         * modules/getline (EXTRA_DIST): Add getline.h.
3591         * modules/getlogin_r (EXTRA_DIST): Add getlogin_r.h.
3592         * modules/hmac-md5 (EXTRA_DIST): Add hmac.h.
3593         * modules/hmac-sha1 (EXTRA_DIST): Add hmac.h.
3594         * modules/md2 (EXTRA_DIST): Add md2.h.
3595         * modules/md4 (EXTRA_DIST): Add md4.h.
3596         * modules/pagealign_alloc (EXTRA_DIST): Add pagealign_alloc.h.
3597         * modules/read-file (EXTRA_DIST): Add read-file.h.
3598         * modules/readline (EXTRA_DIST): Add readline.h.
3599         * modules/rijndael (EXTRA_DIST): Add rijndael-alg-fst.h,
3600         rijndael-api-fst.h.
3601
3602 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
3603
3604         * m4/rijndael.m4 (gl_ARCFOUR):
3605         * m4/arctwo.m4 (gl_ARCTWO):
3606         * m4/check-version.m4 (gl_CHECK_VERSION):
3607         * m4/crc.m4 (gl_CRC):
3608         * m4/des.m4 (gl_DES):
3609         * m4/gc-pbkdf2-sha1.m4 (gl_GC_PBKDF2_SHA1):
3610         * m4/gc.m4 (gl_GC):
3611         * m4/getdelim.m4 (gl_FUNC_GETDELIM):
3612         * m4/getline.m4 (gl_FUNC_GETLINE):
3613         * m4/getlogin_r.m4 (gl_GETLOGIN_R_SUBSTITUTE):
3614         * m4/hmac-md5.m4 (gl_HMAC_MD5):
3615         * m4/hmac-sha1.m4 (gl_HMAC_SHA1):
3616         * m4/md2.m4 (gl_MD2):
3617         * m4/md4.m4 (gl_MD4):
3618         * m4/pagealign_alloc.m4 (gl_PAGEALIGN_ALLOC):
3619         * m4/read-file.m4 (gl_FUNC_READ_FILE):
3620         * m4/readline.m4 (gl_FUNC_READLINE):
3621         * m4/rijndael.m4 (gl_RIJNDAEL):
3622         Don't use AC_LIBSOURCES; instead, rely on the files in ../modules/
3623         to get the necessary .h files and whatnot.
3624
3625 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
3626
3627         * config/srclist.txt: Remove gnupload, since coreutils now syncs from
3628         gnulib rather than the other way around.
3629         * config/srclistvars.sh (COREUTILS): Remove.
3630
3631 2006-08-22  Jim Meyering  <jim@meyering.net>
3632
3633         * modules/mkdir-p (Makefile.am): Fix typo: s/lib+SOURCES/lib_SOURCES/.
3634
3635         * modules/getpass-gnu (Makefile.am): Add getpass.h to EXTRA_DIST.
3636
3637 2006-08-22  Eric Blake  <ebb9@byu.net>
3638
3639         * modules/regexprops-generic: New file.
3640         * MODULES.html.sh (Support for building documentation): List it.
3641
3642 2006-08-22  Eric Blake  <ebb9@byu.net>
3643
3644         * m4/stdint_h.m4 (gl_AC_HEADER_STDINT_H): Avoid compiler warning.
3645         * m4/inttypes_h.m4 (gl_AC_HEADER_INTTYPES_H): Likewise.
3646         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Likewise.
3647         * m4/intmax_t.m4 (gt_AC_TYPE_INTMAX_T): Likewise.
3648
3649 2006-08-22  Bruno Haible  <bruno@clisp.org>
3650
3651         * gnulib-tool (func_emit_lib_Makefile_am): Don't treat lib_LIBRARIES
3652         and lib_LTLIBRARIES like the other lib_* variables.
3653
3654 2006-08-22  Bruno Haible  <bruno@clisp.org>
3655
3656         * build-aux/x-to-1.in: New file, from GNU gettext.
3657
3658 2006-08-22  Bruno Haible  <bruno@clisp.org>
3659
3660         * m4/readutmp.m4 (gl_READUTMP): Compile readutmp.c only if <utmp.h> or
3661         <utmpx.h> exists.
3662
3663 2006-08-22  Bruno Haible  <bruno@clisp.org>
3664
3665         * lib/readutmp.h: Skip most definitions if neither <utmp.h> nor
3666         <utmpx.h> exists.
3667
3668 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
3669
3670         BeOS portability.
3671         * lib/dirchownmod.c (dirchownmod): Don't use fchmod if it doesn't
3672         exist.
3673         Problem reported by Bruno Haible.
3674
3675 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
3676
3677         Avoid the need for AC_LIBSOURCES in m4 macros.
3678         * modules/acl (EXTRA_DIST): Add acl.h.
3679         * modules/argmatch (Files): Add m4/argmatch.m4.
3680         (configure.ac): Add gl_ARGMATCH.
3681         (EXTRA_DIST): Renamed from lib_SOURCES, for
3682         consistency with the other modules.  Remove argmatch.c.
3683         * modules/backupfile (EXTRA_DIST): Add backupfile.h.
3684         * modules/c-strtod (EXTRA_DIST): Add c-strtod.h.
3685         * modules/c-strtold (EXTRA_DIST): Add c-strtod.c, c-strtod.h.
3686         * modules/canonhost (EXTRA_DIST): Add c-canonhost.h.
3687         * modules/canonicalize (EXTRA_DIST): Add canonicalize.h.
3688         * modules/chdir-long (EXTRA_DIST): Add chdir-long.h.
3689         * modules/chdir-safer (EXTRA_DIST): Add chdir-safer.h.
3690         * modules/cloexec (EXTRA_DIST): Add cloexec.h.
3691         * modules/close-stream (EXTRA_DIST): Add close-stream.h.
3692         * modules/closeout (EXTRA_DIST): Add closeout.h.
3693         * modules/cycle-check (EXTRA_DIST): Add cycle-check.h.
3694         * modules/dev-ino (EXTRA_DIST): Add dev-ino.h.
3695         * modules/dirfd (EXTRA_DIST): Add dirfd.h.
3696         * modules/dirname (EXTRA_DIST): Renamed from lib_SOURCES.  Add
3697         dirname.h; remove basename.c and stripslash.c.
3698         * modules/exclude (EXTRA_DIST): Add exclude.h.
3699         * modules/exitfail (EXTRA_DIST): Add exitfail.h.
3700         * modules/fcntl-safer (EXTRA_DIST): Add fcntl-safer.h fcntl--.h.
3701         * modules/file-type (EXTRA_DIST): Add file-type.h.
3702         * modules/filemode (EXTRA_DIST): Add filemode.h.
3703         * modules/filenamecat (EXTRA_DIST): Add filenamecat.h.
3704         * modules/fopen-safer (EXTRA_DIST): Add stdio-safer.h stdio--.h.
3705         * modules/fpending (EXTRA_DIST): Add __fpending.h.
3706         * modules/fprintftime (EXTRA_DIST): Add fprintftime.h.
3707         * modules/fsusage (EXTRA_DIST): Add fsusage.h.
3708         * modules/fts (EXTRA_DIST): Add fts_.h fts-cycle.c.
3709         * modules/getcwd (EXTRA_DIST): Add getcwd.h.
3710         * modules/getdate (EXTRA_DIST): Add getdate.c.
3711         * modules/gethrxtime (EXTRA_DIST): Add gethrxtime.h xtime.h.
3712         * modules/getpagesize (EXTRA_DIST): Add getpagesize.h.
3713         * modules/getpass (EXTRA_DIST): Add getpass.h.
3714         * modules/glob (EXTRA_DIST): Add glob_.h glob-libc.h.
3715         * modules/group-member (EXTRA_DIST): Add group-member.h.
3716         * modules/hard-locale (EXTRA_DIST): Add hard-locale.h.
3717         * modules/hash (EXTRA_DIST): Add hash.h.
3718         * modules/human (EXTRA_DIST): Add human.h.
3719         * modules/inttypes (EXTRA_DIST): Add inttypes.h.
3720         * modules/lchmod (EXTRA_DIST): Add lchmod.h.
3721         * modules/lchown (EXTRA_DIST): Add lchown.h.
3722         * modules/long-options (EXTRA_DIST): Add long-options.h.
3723         * modules/lstat (EXTRA_DIST): Add lstat.h.
3724         * modules/md5 (EXTRA_DIST): Add memcasecmp.h.
3725         * modules/memcoll (EXTRA_DIST): Add memcoll.h.
3726         * modules/mempcpy (EXTRA_DIST): Add mempcpy.h.
3727         * modules/memrchr (EXTRA_DIST): Add memrchr.h.
3728         * modules/memxor (EXTRA_DIST): Add memxor.h.
3729         * modules/mkancesdirs (EXTRA_DIST): Add mkancesdirs.h.
3730         * modules/mkdir-p (EXTRA_DIST): Add modechange.h.
3731         * modules/mountlist (EXTRA_DIST): Add mountlist.h.
3732         * modules/openat (EXTRA_DIST): Add at-func.c openat.h openat-priv.h.
3733         * modules/pathmax (EXTRA_DIST): Add pathmax.h.
3734         * modules/physmem (EXTRA_DIST): Add physmem.h.
3735         * modules/posixtm (EXTRA_DIST): Add posixtm.h.
3736         * modules/posixver (EXTRA_DIST): Add posixver.h.
3737         * modules/quote (EXTRA_DIST): Add quote.h.
3738         * modules/quotearg (EXTRA_DIST): Add quotearg.h.
3739         * modules/readtokens (EXTRA_DIST): Add readtokens.h.
3740         * modules/readutmp (EXTRA_DIST): Add readutmp.h.
3741         * modules/regex (EXTRA_DIST): Add regcomp.c regex.h regex_internal.c
3742         regex_internal.h regexec.c.
3743         * modules/safe-read (EXTRA_DIST): Add safe-read.h.
3744         * modules/safe-write (EXTRA_DIST): Add safe-write.h.
3745         * modules/same (EXTRA_DIST): Add same.h.
3746         * modules/same-inode (EXTRA_DIST): Add same-inode.h.
3747         * modules/save-cwd (EXTRA_DIST): Add save-cwd.h.
3748         * modules/savedir (EXTRA_DIST): Add savedir.h.
3749         * modules/sha1 (EXTRA_DIST): Add sha1.h.
3750         * modules/sig2str (EXTRA_DIST): Add sig2str.h.
3751         * modules/stat-macros (EXTRA_DIST): Add stat-macros.h.
3752         * modules/stat-time (EXTRA_DIST): Add stat-time.h.
3753         * modules/stdlib-safer (EXTRA_DIST): Add stdlib-safer.h stdlib--.h.
3754         * modules/strdup (EXTRA_DIST): Add strdup.h.
3755         * modules/strftime (EXTRA_DIST): Add strftime.h.
3756         * modules/strndup (EXTRA_DIST): Add strndup.h.
3757         * modules/strnlen (EXTRA_DIST): Add strnlen.h.
3758         * modules/strverscmp (EXTRA_DIST): Add strverscmp.h.
3759         * modules/time_r (EXTRA_DIST): Add time_r.h.
3760         * modules/timespec (EXTRA_DIST): Add timespec.h.
3761         * modules/tmpfile-safer (EXTRA_DIST): Add stdio-safer.h stdio--.h.
3762         * modules/unistd-safer (EXTRA_DIST): Add unistd-safer.h unistd--.h.
3763         * modules/unlinkdir (EXTRA_DIST): Add unlinkdir.h.
3764         * modules/unlocked-io (EXTRA_DIST): Add unlocked-io.h.
3765         * modules/userspec (EXTRA_DIST): Add userspec.h.
3766         * modules/utimecmp (EXTRA_DIST): Add utimecmp.h.
3767         * modules/utimens (EXTRA_DIST): Add utimens.h.
3768         * modules/xalloc (EXTRA_DIST): Add xalloc.h.
3769         * modules/xgetcwd (EXTRA_DIST): Add xgetcwd.h.
3770         * modules/xnanosleep (EXTRA_DIST): Add xnanosleep.h.
3771         * modules/xreadlink (EXTRA_DIST): Add xreadlink.h.
3772         * modules/xstrtod (EXTRA_DIST): Add xstrtod.h.
3773         * modules/xstrtol (EXTRA_DIST): Add xstrtol.h.
3774         * modules/xstrtold (EXTRA_DIST): Add xstrtod.c xstrtod.h.
3775         * modules/yesno (EXTRA_DIST): Add yesno.h.
3776
3777 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
3778
3779         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Check for fchmod.
3780
3781         * m4/argmatch.m4: New file, from coreutils with AC_LIBSOURCES removed.
3782         * m4/dev-ino.m4, same-inode.m4: Remove.
3783
3784         * m4/_inttypes_h.m4 (gl_INTTYPES_H):
3785         * m4/acl.m4 (AC_FUNC_ACL):
3786         * m4/backupfile.m4 (gl_BACKUPFILE):
3787         * m4/c-strtod.m4 (gl_C99_STRTOLD):
3788         * m4/canon-host.m4 (gl_CANON_HOST):
3789         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME):
3790         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG):
3791         * m4/chdir-safer.m4 (gl_CHDIR_SAFER):
3792         * m4/cloexec.m4 (gl_CLOEXEC):
3793         * m4/close-stream.m4 (gl_CLOSE_STREAM):
3794         * m4/closeout.m4 (gl_CLOSEOUT):
3795         * m4/dirfd.m4 (gl_FUNC_DIRFD):
3796         * m4/dirname.m4 (gl_DIRNAME):
3797         * m4/exclude.m4 (gl_EXCLUDE):
3798         * m4/exitfail.m4 (gl_EXITFAIL):
3799         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER):
3800         * m4/file-type.m4 (gl_FILE_TYPE):
3801         * m4/filemode.m4 (gl_FILEMODE):
3802         * m4/filenamecat.m4 (gl_FILE_NAME_CONCAT):
3803         * m4/fpending.m4 (gl_FUNC_FPENDING):
3804         * m4/fprintftime.m4 (gl_FPRINTFTIME):
3805         * m4/fts.m4 (gl_FUNC_FTS):
3806         * m4/getcwd.m4 (gl_FUNC_GETCWD_NULL):
3807         * m4/getdate.m4 (gl_GETDATE):
3808         * m4/gethrxtime.m4 (gl_GETHRXTIME):
3809         * m4/getpagesize.m4 (gl_GETPAGESIZE):
3810         * m4/getpass.m4 (gl_FUNC_GETPASS):
3811         * m4/gettime.m4 (gl_GETTIME):
3812         * m4/getugroups.m4 (gl_GETUGROUPS):
3813         * m4/glob.m4 (gl_GLOB_SUBSTITUTE):
3814         * m4/group-member.m4 (gl_FUNC_GROUP_MEMBER):
3815         * m4/hard-locale.m4 (gl_HARD_LOCALE):
3816         * m4/hash.m4 (gl_HASH):
3817         * m4/idcache.m4 (gl_IDCACHE):
3818         * m4/lchmod.m4 (gl_FUNC_LCHMOD):
3819         * m4/lchown.m4 (gl_FUNC_LCHOWN):
3820         * m4/long-options.m4 (gl_LONG_OPTIONS):
3821         * m4/lstat.m4 (gl_FUNC_LSTAT):
3822         * m4/md5.m4 (gl_MD5):
3823         * m4/memcasecmp.m4 (gl_MEMCASECMP):
3824         * m4/memcoll.m4 (gl_MEMCOLL):
3825         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY):
3826         * m4/memrchr.m4 (gl_FUNC_MEMRCHR):
3827         * m4/memxor.m4 (gl_MEMXOR):
3828         * m4/mkancesdirs.m4 (gl_MKANCESDIRS):
3829         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS):
3830         * m4/modechange.m4 (gl_MODECHANGE):
3831         * m4/mountlist.m4 (gl_MOUNTLIST):
3832         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
3833         * m4/openat.m4 (gl_FUNC_OPENAT):
3834         * m4/pathmax.m4 (gl_PATHMAX):
3835         * m4/physmem.m4 (gl_PHYSMEM):
3836         * m4/posixtm.m4 (gl_POSIXTM):
3837         * m4/posixver.m4 (gl_POSIXVER):
3838         * m4/quote.m4 (gl_QUOTE):
3839         * m4/quotearg.m4 (gl_QUOTEARG):
3840         * m4/readtokens.m4 (gl_READTOKENS):
3841         * m4/readutmp.m4 (gl_READUTMP):
3842         * m4/regex.m4 (gl_REGEX):
3843         * m4/safe-read.m4 (gl_SAFE_READ):
3844         * m4/safe-write.m4 (gl_SAFE_WRITE):
3845         * m4/same.m4 (gl_SAME):
3846         * m4/save-cwd.m4 (gl_SAVE_CWD):
3847         * m4/savedir.m4 (gl_SAVEDIR):
3848         * m4/settime.m4 (gl_SETTIME):
3849         * m4/sha1.m4 (gl_SHA1):
3850         * m4/sig2str.m4 (gl_FUNC_SIG2STR):
3851         * m4/stat-macros.m4 (gl_STAT_MACROS):
3852         * m4/stat-time.m4 (gl_STAT_TIME):
3853         * m4/stdio-safer.m4 (gl_FOPEN_SAFER):
3854         * m4/stdlib-safer.m4 (gl_STDLIB_SAFER):
3855         * m4/strdup.m4 (gl_FUNC_STRDUP):
3856         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME):
3857         * m4/strndup.m4 (gl_FUNC_STRNDUP):
3858         * m4/strnlen.m4 (gl_FUNC_STRNLEN):
3859         * m4/strverscmp.m4 (gl_FUNC_STRVERSCMP):
3860         * m4/time_r.m4 (gl_TIME_R):
3861         * m4/timespec.m4 (gl_TIMESPEC):
3862         * m4/unistd-safer.m4 (gl_UNISTD_SAFER):
3863         * m4/unlinkdir.m4 (gl_UNLINKDIR):
3864         * m4/unlocked-io.m4 (gl_FUNC_GLIBC_UNLOCKED_IO):
3865         * m4/userspec.m4 (gl_USERSPEC):
3866         * m4/utimecmp.m4 (gl_UTIMECMP):
3867         * m4/utimens.m4 (gl_UTIMENS):
3868         * m4/xalloc.m4 (gl_XALLOC):
3869         * m4/xgetcwd.m4 (gl_XGETCWD):
3870         * m4/xnanosleep.m4 (gl_XNANOSLEEP):
3871         * m4/xreadlink.m4 (gl_XREADLINK):
3872         * m4/xstrtod.m4 (gl_XSTRTOD):
3873         * m4/yesno.m4 (gl_YESNO):
3874         Don't use AC_LIBSOURCES; instead, rely on the files in ../modules/
3875         to get the necessary .h files and whatnot.
3876
3877 2006-08-21  Mark D. Baushke  <mdb@gnu.org>
3878             Bruno Haible  <bruno@clisp.org>
3879
3880         * gnulib-tool (func_verify_module): Work around Sun's non-POSIX 1003.2
3881         /bin/sh understanding of '!' conditional negation.
3882
3883 2006-08-21  Jim Meyering  <jim@meyering.net>
3884
3885         * modules/openat (Depends-on): Really alphabetize.
3886
3887         * modules/acl (Depends-on): Add error and quote.
3888
3889         * check-module (find_included_lib_files): Add at-func.c to the
3890         ok-to-include-more-than-once white list.
3891
3892         * modules/openat (Depends-on): Add lstat.  Alphabetize.
3893
3894 2006-08-21  Bruno Haible  <bruno@clisp.org>
3895
3896         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
3897         Emit a pkgdata_DATA variable only if some snippets add contents to it.
3898         Reported by Martin Lambers <marlam@marlam.de>.
3899
3900 2006-08-21  Bruno Haible  <bruno@clisp.org>
3901
3902         * gnulib-tool (func_emit_lib_Makefile_am): If the snippets already
3903         specify an installation location, don't emit a noinst_LIBRARIES or
3904         noinst_LTLIBRARIES assignment.
3905
3906 2006-08-21  Bruno Haible  <bruno@clisp.org>
3907
3908         BeOS portability.
3909         * modules/mbchar (Include): Don't test HAVE_WCTYPE_H any more, since
3910         BeOS has mbrtowc() but no <wctype.h>.
3911
3912 2006-08-21  Bruno Haible  <bruno@clisp.org>
3913
3914         BeOS portability.
3915         * m4/mbchar.m4 (gl_MBCHAR): Compile mbchar.c also if <wctype.h> doesn't
3916         exist.
3917
3918 2006-08-21  Bruno Haible  <bruno@clisp.org>
3919
3920         BeOS portability.
3921         * lib/mbchar.h: Include <wctype.h> only if it exists.
3922
3923 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
3924
3925         Remove files that are no longer needed by their respective modules.
3926         * m4/obstack.m4: Remove.
3927         * m4/strerror_r.m4: Remove.
3928         * m4/uint32_t.m4: Remove.
3929         * m4/uintptr_t.m4: Remove.
3930         * m4/ullong_max.m4: Remove.
3931         * m4/xstrtoimax.m4: Remove.
3932         * m4/xstrtoumax.m4: Remove.
3933
3934         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Do not require
3935         gl_AC_TYPE_UINTMAX_T, gl_STRUCT_DEV_INO, or gl_SAME_INODE, since gnulib
3936         dependencies now capture this.
3937
3938         * m4/cycle-check.m4 (gl_CYCLE_CHECK):
3939         Do not use AC_LIBSOURCES, since gnulib modules now do this.
3940         * m4/fsusage.m4 (gl_FSUSAGE): Likewise.
3941         * m4/human.m4 (gl_HUMAN): Likewise.
3942         * m4/inttostr.m4 (gl_INTTOSTR): Likewise.
3943         * m4/xstrtol.m4 (gl_XSTRTOL): Likewise.
3944
3945         * m4/filemode.m4 (gl_FILEMODE): Require AC_STRUCT_ST_DM_MODE.
3946
3947         * m4/filemode.m4 (gl_PREREQ_FSUSAGE_EXTRA): Do not require
3948         gl_AC_TYPE_INTMAX_T or gl_AC_TYPE_UINTMAX_T, since we now require
3949         stdint.
3950         * m4/human.m4 (gl_HUMAN): Likewise.
3951         * m4/inttostr.m4 (gl_PREREQ_INTTOSTR): Likewise.
3952         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Likewise.
3953         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Likewise.
3954         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Likewise.
3955         * m4/xstrtol (gl_XSTRTOL): Likewise.
3956
3957         * m4/gethrxtime.m4 (gl_XTIME): gl_AC_TYPE_LONG_LONG ->
3958         AC_TYPE_LONG_LONG_INT.
3959         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Likewise.
3960         * m4/strtoll.m4 (gl_FUNC_STRTOLL): Likewise.
3961         * m4/strtoull.m4 (gl_FUNC_STRTOULL): Likewise, for unsigned long.
3962         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Likewise.
3963
3964         * m4/human.m4 (gl_HUMAN): Do not require AM_STDBOOL_H since we depend
3965         on stdbool.
3966
3967         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL_H, gl_PREREQ_XSTRTOL): Remove.
3968         (gl_PREREQ_XSTRTOUL): Remove.
3969
3970         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Check for hasmntopt.
3971
3972         * m4/posixver.m4: Fix comment since head -1 now works even in POSIX
3973         mode.
3974
3975 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
3976
3977         Add and change modules to make it easier for coreutils to use
3978         gnulib-tool.
3979         * modules/backupfile (Files): Remove m4/d-ino.m4.
3980         (Depends-on): Add d-ino.
3981         * modules/cycle-check (Depends-on): Add stdint.
3982         (lib_SOURCES): Add cycle-check.h.
3983         * modules/d-ino: New module.
3984         * modules/d-type: New module.
3985         * modules/error (Files): Remove m4/strerror_r.m4.
3986         * modules/filemode (Files): Add m4/st_dm_mode.m4.
3987         * modules/fsuage (Files): Remove m4/ulonglong.m4, m4/stdint_h.m4,
3988         m4/inttypes_h.m4, m4/uintmax_t.m4.
3989         (Depends-on): Add stdint.
3990         (lib_SOURCES): Add fsusage.h.
3991         * modules/getcwd (Files): Remove d-ino.m4.
3992         (Depends-on): Add d-ino.
3993         * modules/getndelim2 (Depends-on): Add stdint.
3994         * modules/glob (Files): Remove m4/d-type.m4.
3995         (Depends-on): Add d-type.
3996         * modules/host-os: New module.
3997         * modules/human (Files):  Remove m4/ulonglong.m4, m4/stdint_h.m4,
3998         m4/inttypes_h.m4, m4/uintmax_t.m4.
3999         * Depends-on: Add stdint.
4000         (lib_SOURCES): Add human.h.
4001         * modules/inttostr (Files): Remove m4/intmax_t.m4,
4002         m4/inttostr.m4, m4/inttypes_h.m4, m4/longlong.m4, m4/stdint_h.m4,
4003         m4/uintmax_t.m4, m4/ulonglong.m4.
4004         (Depends-on): Add stdint.
4005         (EXTRA_DIST): Add inttostr.h.
4006         * modules/lchmod: New module.
4007         * modules/link-follow: New module.
4008         * modules/mkdir-p (Files): Remove lib/lchmod.h, m4/lchmod.m4.
4009         (Depends-on): Add lchmod.
4010         * modules/mkstemp (Files): Remove m4/ulonglong.m4,
4011         m4/stdint_h.m4, m4/inttypes_h.m4, m4/uintmax_t.m4.
4012         (Depends-on): Add stdint.
4013         * modules/obstack (Files): Remove m4/inttypes_h.m4, m4/obstack.m4,
4014         m4/stdint_h.m4, m4/uintmax_t.m4, m4/ulonglong.m4.
4015         (Depends-on): Add stdint.
4016         (configure.ac): Change gl_OBSTACK to AC_FUNC_OBSTACK.
4017         * modules/perl: New module.
4018         * modules/regex (Depends-on): Add stdint.
4019         * modules/rmdir-errno: New module.
4020         * modules/strtoimax (Files): Remove m4/stdint_h.m4, m4/inttypes_h.m4,
4021         m4/intmax_t.m4.
4022         (Depends-on): Add stdint.
4023         * modules/strtoumax (Files): Remove m4/stdint_h.m4, m4/inttypes_h.m4,
4024         m4/uintmax_t.m4.
4025         (Depends-on): Add stdint.
4026         * modules/unlink-busy: New module.
4027         * modules/utimecmp (Depends-on): Add stdint.
4028         * modules/uptime: New module.
4029         * modules/winsz-ioctl: New module.
4030         * modules/winsz-termios: New module.
4031         * modules/xnanosleep (Depends-on): Add nanosleep.
4032         * modules/ullong_max: Remove.
4033         * modules/xstrtoimax (Files): Remove m4/xstrtoimax.m4.
4034         (configure.ac): Remove gl_XSTRTOIMAX; no action needed now.
4035         * modules/xstrtol (Files): Remove m4/ulonglong.m4, m4/longlong.m4,
4036         m4/stdint_h.m4, m4/inttypes_h.m4, m4/uintmax_t.m4, m4/intmax_t.m4.
4037         (Depends-on): Add inttypes.
4038         (lib_SOURCES): Add xstrtol.h.
4039         * modules/xstrtoumax (Files): Remove m4/xstrtoumax.m4.
4040         (configure.ac): Remove gl_XSTRTOUMAX; no action needed now.
4041         * MODULES.html.sh: Move 'assert' into the assert section.
4042         Move 'dummy' into the linking section.
4043         Remove ullong_max.
4044         Add section for compatibility checks for POSIX:2001 functions,
4045         and put d-ino, d-type, link-follow, rmdir-errno, unlink-busy,
4046         winsz-ioctl, and winsz-termios into it.
4047         Add lchmod.
4048         Add top-level Misc section and put host-os, perl, and uptime
4049         into it.
4050
4051 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
4052
4053         * lib/cycle-check.h: Include <stdint.h> unconditionally, since we
4054         now assume the stdint module.  Do not include inttypes.h.
4055         * lib/fsusage.h: Likewise.
4056         * lib/getndelim2.c: Likewise.
4057         * lib/human.h: Likewise.
4058         * lib/inttostr.h: Likewise.
4059         * lib/obstack.c: Likewise.
4060         * lib/regex_internal.h: Likewise.
4061         * lib/tempname.c: Likewise.
4062         * lib/utimecmp.c: Likewise.
4063         * lib/xstrtol.h: Likewise.
4064
4065         * lib/stat_.h: Fix typo: HAVE_FUNC_LSTAT -> HAVE_LSTAT.
4066
4067         * lib/strtoimax.c: Adjust to macro name changes in Autoconf,
4068         e.g., HAVE_LONG_LONG -> HAVE_LONG_LONG_INT.
4069         * lib/xtime.h: Likewise.
4070
4071 2006-08-19  Paul Eggert  <eggert@cs.ucla.edu>
4072
4073         * modules/openat (Files): Add lib/fchmodat.c.
4074         Fixes problem reported by Jay Youngman.
4075
4076 2006-08-19  Paul Eggert  <eggert@cs.ucla.edu>
4077
4078         * lib/fchmodat.c: New file, from coreutils.  This was inadvertently
4079         omitted in the 2006-08-17 update.  Problem reported by Jay Youngman.
4080
4081 2006-08-18  Paul Eggert  <eggert@cs.ucla.edu>
4082             Bruno Haible  <bruno@clisp.org>
4083
4084         * m4/bison-i18n.m4 (BISON_I18N): Also handle the case where yacc exists
4085         and is a script that invokes bison. Tighten the code. Add comments.
4086
4087 2006-08-18  Jim Meyering  <jim@meyering.net>
4088
4089         * m4/gethrxtime.m4 (gl_PREREQ_GETHRXTIME): Also check for
4090         CLOCK_REALTIME, since gethrxtime may revert to using clock_gettime via
4091         gettime.c.  Gabor Z. Papp reported that gethrxtime-using programs
4092         failed to link due to unresolved clock_gettime on a linux-2.4.x system.
4093
4094 2006-08-18  Bruno Haible  <bruno@clisp.org>
4095
4096         * modules/bison-i18n: New file.
4097         * MODULES.html.sh (Internationalization functions): Add it.
4098
4099 2006-08-18  Bruno Haible  <bruno@clisp.org>
4100
4101         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Also check for
4102         sys/statvfs.h. When getmntinfo was found, check its declaration and
4103         set either MOUNTED_GETMNTINFO or MOUNTED_GETMNTINFO2 depending on it.
4104
4105 2006-08-18  Bruno Haible  <bruno@clisp.org>
4106
4107         * m4/bison-i18n.m4: New file, from bison.
4108
4109 2006-08-18  Bruno Haible  <bruno@clisp.org>
4110
4111         * lib/mountlist.c [MOUNTED_GETMNTINFO2]: Include sys/statvfs.h.
4112         (ME_DUMMY): Treat "kernfs" as a dummy.
4113         (read_file_system_list) [MOUNTED_GETMNTINFO2]: Implement.
4114
4115 2006-08-17  Paul Eggert  <eggert@cs.ucla.edu>
4116
4117         Update from coreutils.
4118
4119         2006-08-15  Jim Meyering  <jim@meyering.net>
4120
4121         * m4/openat.m4 (gl_FUNC_OPENAT): Add at-func.c via AC_LIBSOURCES.
4122
4123         2006-01-17  Jim Meyering  <jim@meyering.net>
4124
4125         * m4/fts.m4 (gl_FUNC_FTS_CORE): Depend on gl_FUNC_OPENAT.
4126
4127         2006-01-11  Jim Meyering  <jim@meyering.net>
4128
4129         * m4/openat.m4 (gl_FUNC_OPENAT): Require and compile fchmodat.c.
4130         Check for the lchmod function.
4131
4132 2006-08-17  Paul Eggert  <eggert@cs.ucla.edu>
4133
4134         Update from coreutils.
4135
4136         * lib/__fpending.h: Add copyright notice.
4137         * lib/fprintftime.h: Likewise.
4138         * lib/savedir.c: Use (C) in copyright notice.
4139         * lib/savedir.h: Likewise.
4140
4141         2006-08-15  Jim Meyering  <jim@meyering.net>
4142
4143         * lib/at-func.c: New file, with the logic of all emulated at-functions.
4144         * lib/openat-priv.h: Include <errno.h> and define ENOSYS,
4145         in support of the EXPECTED_ERRNO macro.
4146         * lib/openat.c (fstatat, unlinkat, fchownat): Remove function
4147         definitions.  Instead, define the appropriate symbols and include
4148         "at-func.c".
4149         * lib/mkdirat.c (mkdirat): Likewise.
4150         * lib/fchmodat.c (fchmodat): Likewise.
4151         (ENOSYS): Remove definition.
4152         * lib/openat.c: Don't include <errno.h>, now that "openat-priv.h" does
4153         it.  Don't include "unistd--.h" -- it wasn't ever used.
4154
4155         2006-01-17  Jim Meyering  <jim@meyering.net>
4156
4157         Rewrite fts.c not to change the current working directory,
4158         by using openat, fstatat, fdopendir, etc..
4159
4160         * lib/fts.c [! _LIBC]: Include "openat.h" and "unistd--.h".
4161         (HAVE_OPENAT_SUPPORT): Define.
4162         [_LIBC] (fchdir): Don't undef or define; no longer used.
4163         (FCHDIR): Define in terms of cwd_advance_fd rather than fchdir.
4164         Now, this `function' always succeeds, and consumes its file descriptor
4165         parameter -- so callers must not close such FDs.  Update callers.
4166         (diropen_fd, opendirat, cwd_advance_fd): New functions.
4167         (diropen): Add parameter, SP.  Adjust all callers.
4168         Implement using diropen_fd, rather than open.
4169         (fts_open): Initialize new member, fts_cwd_fd.
4170         Remove fts_rft-setting code.
4171         (fts_close): Close fts_cwd_fd, if necessary.
4172         (__opendir2): Define in terms of opendir or opendirat,
4173         depending on whether the FST_NOCHDIR flag is set.
4174         (fts_build): Since fts_safe_changedir consumes its FD, and since
4175         this code must do `closedir(dirp)', dup the dirfd(dirp) argument,
4176         and close the dup'd file descriptor upon failure.
4177         (fts_stat): Use fstatat(...AT_SYMLINK_NOFOLLOW) in place of lstat.
4178         (fts_safe_changedir): Tweak semantics to reflect that this function
4179         now calls cwd_advance_fd and hence consumes its FD argument.
4180         * lib/fts_.h [struct FTS] (fts_cwd_fd): New member.
4181         [struct FTS] (fts_rft): Remove now-unused member.
4182         [struct FTS] (fts_cycle.state): Improve comment.
4183
4184         * lib/openat.c (openat_needs_fchdir): New function.
4185         * lib/openat.h (openat_needs_fchdir): Declare it.
4186
4187 2006-08-16  Paul Eggert  <eggert@cs.ucla.edu>
4188
4189         * lib/memcoll.c (memcoll): Set errno = 0 in the shortcut case, too.
4190         Problem and fix reported by Pádraig Brady in
4191         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00099.html>.
4192
4193 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
4194
4195         * modules/cycle-check (configure.ac): Add gl_CYCLE_CHECK.
4196
4197 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
4198
4199         * lib/memcoll.c (memcoll): Optimize for the common case where the
4200         arguments are bytewise equal.
4201
4202 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
4203
4204         * doc/regexprops-generic.texi: Add a copyright notice.
4205
4206 2006-08-15  Bruno Haible  <bruno@clisp.org>
4207
4208         * modules/tmpdir (License): Change to LGPL.
4209
4210 2006-08-15  Bruno Haible  <bruno@clisp.org>
4211
4212         * gnulib-tool (func_all_modules, func_verify_module): COPYING is not a
4213         module.
4214
4215 2006-08-14  Simon Josefsson  <jas@extundo.com>
4216
4217         * config/srclist.txt: Add gnupload.
4218
4219 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
4220
4221         Change copyright notice from LGPL 2 to GPL 2, since that's the
4222         standard form used in the gnulib repository.
4223         * tests/test-lock.c: Likewise.
4224         * tests/test-stdint.c: Likewise.
4225         * tests/test-tls.c: Likewise.
4226
4227         * users.txt: Add bison, diffutils, libprelude, prelude-lml,
4228         prelude-manager.  User shorter URLs for GNU projects, without '?'.
4229         Add copyright notice.
4230
4231         * check-module: Add copyright notice.  Output a copyright
4232         notice if "--version" is specified.
4233         * modules/COPYING: New file.
4234         * tests/test-getaddrinfo.c: Add copyright notice.
4235         * tests/test-verify.c: Likewise.
4236
4237 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
4238
4239         Change copyright notice from LGPL 2 to GPL 2, since that's the
4240         standard form used in the gnulib repository.
4241         * lib/lock.c: LGPL -> GPL.
4242         * lib/lock.h: Likewise.
4243         * lib/strnlen1.c: Likewise.
4244         * lib/strnlen1.h: Likewise.
4245         * lib/tls.c: Likewise.
4246         * lib/tls.h: Likewise.
4247         * lib/tmpdir.c: Likewise.
4248
4249         * lib/TODO: Remove; this belongs only in coreutils.
4250
4251 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
4252
4253         Add copyright notices to long-enough files that lack them, since
4254         otherwise the files aren't clearly free.  Use the same notice that
4255         getdate.texi already uses.
4256         * doc/alloca-opt.texi: Add copyright notice.
4257         * doc/alloca.texi: Likewise.
4258         * doc/ctime.texi: Likewise.
4259         * doc/functions.texi: Likewise.
4260         * doc/gcd.texi: Likewise.
4261         * doc/gnulib-tool.texi: Likewise.
4262         * doc/inet_ntoa.texi: Likewise.
4263         * doc/visibility.texi: Likewise.
4264
4265         * doc/getdate.texi: Update FDL version from 1.1 to 1.2.
4266         * doc/quote.texi: Add copyright notice.
4267
4268         * doc/solaris-versions: Add SunOS 5.10, SunOS 1.x, SunOS 4.0, SunOS
4269         4.0.x, SunOS 4.1.1.1, SunOS 4.1.1_U1, SunOS 4.1.3B.  SunOS 4.1.3
4270         was Solaris 1.1A.  Remove space before B in Solaris 1.1.1B.
4271         Mention SunOS 5.11.  Mention that everything before SunOS 5.7
4272         is now obsolete, and give a pointer to the Sun list.
4273         Add copyright notice.
4274
4275 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
4276
4277         * config/srclistvars.sh: Add copyright notice.
4278
4279 2006-08-14  Eric Blake  <ebb9@byu.net>
4280
4281         Import the following change from libc:
4282
4283         2006-08-12  Ulrich Drepper  <drepper@redhat.com>
4284
4285         Upstream bug 2997.
4286         * lib/misc/error.c: Add space between program name and message if file
4287         name is missing.
4288
4289 2006-08-12  Karl Berry  <karl@gnu.org>
4290
4291         * config/srclist.txt (ssize_t.m4, sig_atomic_t.m4, signalblocking.m4):
4292         remove, these originate in gnulib now.
4293
4294 2006-08-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4295
4296         * doc/Makefile (standards.info standards.html standards.dvi):
4297         Also depend on make-stds.texi.
4298
4299 2006-08-11  Paul Eggert  <eggert@cs.ucla.edu>
4300
4301         * lib/pipe-safer.c (pipe_safer): Fix misspelling: HAVE_FUNC_PIPE ->
4302         HAVE_PIPE.  Fix a file descriptor leak when fd_safer fails.
4303
4304         * lib/regex_internal.c (re_string_skip_chars): Don't assume WEOF fits
4305         in wchar_t.  Problem reported by Eric Blake.
4306
4307         * lib/snprintf.c (snprintf): memcpy LEN bytes, not SIZE - 1, when
4308         LEN is smaller than SIZE.  Suggested by Bruno Haible.
4309         Also, help the compiler to keep LEN in a register.
4310
4311 2006-08-11  Eric Blake  <ebb9@byu.net>
4312
4313         * users.txt: Sort.  Add tar.
4314
4315 2006-08-11  Bruno Haible  <bruno@clisp.org>
4316
4317         * users.txt: New file.
4318
4319 2006-08-11  Bruno Haible  <bruno@clisp.org>
4320
4321         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Include <stdio.h> and <time.h>
4322         before <wchar.h>. Needed for OSF/1 and BSD/OS.
4323
4324 2006-08-10  Paul Eggert  <eggert@cs.ucla.edu>
4325
4326         * modules/snprintf (Depends-on): Remove minmax.
4327         (Maintainer): Add self and Bruno.
4328
4329 2006-08-10  Paul Eggert  <eggert@cs.ucla.edu>
4330
4331         * lib/.cppi-disable: Add snprintf.h, socket_.h.
4332         * lib/snprintf.c: Include <errno.h> and <limits.h>.
4333         (EOVERFLOW): Define if the system does not.
4334         Do not include "minmax.h"; it wasn't used.
4335         (snprintf): Don't assume size_t promotes to an unsigned type.
4336         Fix bug when generated string was too long for the buffer: the
4337         buffer's contents are supposed to be the initial prefix of the
4338         output.  Don't assume vasnprintf returns EOVERFLOW if the size
4339         exceeds INT_MAX; do the check ourselves.
4340
4341         Import the following changes from libc:
4342
4343         2006-06-02  Jakub Jelinek  <jakub@redhat.com>
4344
4345         * lib/posix/regex_internal.c (re_string_skip_chars): If no character
4346         has been converted at all, set *last_wc to WEOF.  If mbrtowc failed,
4347         set wc to the byte which couldn't be converted.
4348         (re_string_reconstruct): Don't clear valid_raw_len before calling
4349         re_string_skip_chars.  If wc is WEOF after re_string_skip_chars, set
4350         tip_context using re_string_context_at.
4351
4352         2006-05-02  Ulrich Drepper  <drepper@redhat.com>
4353
4354         * lib/posix/regex.h: g++ still cannot handled [restrict].
4355
4356         2006-04-21  Ulrich Drepper  <drepper@redhat.com>
4357
4358         * lib/posix/regex.h: Remove special handling for VMS.
4359
4360 2006-08-10  Jim Meyering  <jim@meyering.net>
4361
4362         * modules/same-inode: New module.
4363         * modules/dev-ino: New module.
4364         * modules/cycle-check: Depend on these modules, rather than simply
4365         including their .h files.
4366         (Makefile.am): Don't list cycle-check.[ch] here, now that they're
4367         required via m4/cycle-check.m4.
4368         * modules/same: Depend on new same-inode module, rather than
4369         including same-inode.h.
4370         * modules/chdir-safer: New file.
4371
4372         * modules/chown (Depends-on): Add stat-macros.
4373
4374 2006-08-10  Jim Meyering  <jim@meyering.net>
4375
4376         * m4/cycle-check.m4: New file.
4377         Require gl_STRUCT_DEV_INO and gl_SAME_INODE.
4378         * m4/dev-ino.m4, m4/same-inode.m4: New files.
4379
4380 2006-08-10  Eric Blake  <ebb9@byu.net>
4381
4382         * modules/verror (Depends-on): Remove bogus gl_VERROR that snuck
4383         in from original proposal.
4384
4385 2006-08-10  Eric Blake  <ebb9@byu.net>
4386         and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4387
4388         * gnulib-tool (func_import): Detect unexpanded macros in gnulib
4389         namespace.
4390
4391 2006-08-10  Bruno Haible  <bruno@clisp.org>
4392
4393         * gnulib-tool (func_create_testdir): Detect unexpanded macros here
4394         as well.
4395
4396 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
4397
4398         Sync from coreutils.
4399
4400         2006-07-19  Mike Frysinger  <vapier@gentoo.org>
4401
4402         * lib/mountlist.c [ME_REMOTE]: Filter out cifs.
4403         Reported by Toralf Förster in <http://bugs.gentoo.org/141012>.
4404
4405 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
4406
4407         * modules/restrict: Remove; no longer needed now that we assume
4408         Autoconf 2.59 or later.
4409         * MODULES.html.sh: Remove 'restrict'.
4410         * modules/argp (Depends-on): Remove 'restrict'.
4411         * modules/base64 (Depends-on): Likewise.
4412         * modules/gc (Depends-on): Likewise.
4413         * modules/getaddrinfo (Depends-on): Likewise.
4414         * modules/glob (Depends-on): Likewise.
4415         * modules/inet_ntop (Depends-on): Likewise.
4416         * modules/inet_pton (Depends-on): Likewise.
4417         * modules/memxor (Depends-on): Likewise.
4418         * modules/regex (Depends-on): Likewise.
4419         * modules/strtok_r (Depends-on): Likewise.
4420         * modules/time_r (Depends-on): Likewise.
4421
4422 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
4423
4424         * m4/argp.m4 (gl_ARGP): Require AC_C_RESTRICT.
4425         * m4/gc.m4 (gl_PREREQ_GC): Likewise.
4426         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
4427         * m4/inet_ntop.m4 (gl_PREREQ_INET_NTOP): Likewise.
4428         * m4/inet_pton.m4 (gl_PREREQ_INET_PTON): Likewise.
4429         * m4/memxor.m4 (gl_MEMXOR): Likewise.
4430         * m4/restrict.m4: Remove; no longer needed.  All remaining uses of
4431         gl_C_RESTRICT replaced by AC_C_RESTRICT.
4432
4433         Merge from coreutils.
4434         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_C_RESTRICT, not
4435         gl_C_RESTRICT, now that we assume Autoconf 2.59 or later.
4436         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
4437         * m4/time_r.m4 (gl_TIME_R): Likewise.
4438
4439 2006-08-09  Karl Berry  <karl@gnu.org>
4440
4441         * config/srclist.txt: no more gettext-tools, per Bruno.
4442
4443 2006-08-08  Eric Blake  <ebb9@byu.net>
4444
4445         * modules/verror: New module.
4446         * MODULES.html.sh: Document it.
4447
4448 2006-08-08  Eric Blake  <ebb9@byu.net>
4449
4450         * lib/verror.h, lib/verror.c: New files.
4451
4452 2006-08-08  Eric Blake  <ebb9@byu.net>
4453
4454         * lib/verror.c (verror_at_line): Work around glibc bug 2997, so that
4455         verror_at_line output complies with GNU Coding Standards even when
4456         file is NULL.
4457
4458 2006-08-07  Bruno Haible  <bruno@clisp.org>
4459
4460         * lib/allocsa.h (sa_alignof) [_AIX]: Also consider 'long long' in newer
4461         versions of AIX.
4462         Reported by Ralf Wildenhues.
4463
4464 2006-08-07  Bruno Haible  <bruno@clisp.org>
4465
4466         * gnulib-tool (func_create_testdir): Wrap the set of autoconf snippets
4467         in an AC_DEFUN. Needed so that the autoconf snippets can use
4468         AC_REQUIRE.
4469
4470 2006-08-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4471
4472         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
4473         Initialize pkgdata_DATA.
4474         * modules/javaversion (Makefile.am): Add to pkgdata_DATA, rather than
4475         overriding it.
4476
4477 2006-08-06  Eric Blake  <ebb9@byu.net>
4478
4479         * lib/error.h: Fold in some upstream changes from glibc.
4480         * lib/error.c: Likewise.
4481
4482 2006-08-04  Bruno Haible  <bruno@clisp.org>
4483
4484         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
4485         Make the mostlyclean-local rule depend on mostlyclean-generic.
4486         Reported by Jim Meyering. Solution suggested by Ralf Wildenhues.
4487
4488 2006-07-31  Bruno Haible  <bruno@clisp.org>
4489
4490         * m4/localcharset.m4 (gl_LOCALCHARSET): Remove tests for <stddef.h>,
4491         <stdlib.h>, <string.h>.
4492
4493 2006-07-30  Bruno Haible  <bruno@clisp.org>
4494
4495         * modules/readlink (License): Change to LGPL.
4496
4497 2006-07-30  Bruno Haible  <bruno@clisp.org>
4498
4499         * modules/javaversion (Makefile.am): Distribute javaversion.java and
4500         javaversion.class. Also install javaversion.class in $(pkgdatadir) and
4501         set PKGDATADIR to point to it.
4502
4503 2006-07-30  Bruno Haible  <bruno@clisp.org>
4504
4505         * modules/csharpexec (configure.ac): Comment out macro invocation.
4506         * modules/javaexec (configure.ac): Likewise.
4507         * modules/javacomp-script (configure.ac): Likewise.
4508
4509         * modules/csharpcomp-script (configure.ac): Use AC_REQUIRE.
4510
4511 2006-07-30  Bruno Haible  <bruno@clisp.org>
4512
4513         * modules/clean-temp (Depends-on): Add linkedhash-list, remove
4514         linked-list.
4515
4516 2006-07-30  Bruno Haible  <bruno@clisp.org>
4517
4518         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Assume <string.h> exists.
4519
4520 2006-07-30  Bruno Haible  <bruno@clisp.org>
4521
4522         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
4523         Initialize MOSTLYCLEANFILES to core and *.stackdump, so that core dumps
4524         get removed.
4525
4526 2006-07-29  Bruno Haible  <bruno@clisp.org>
4527
4528         Make it possible for gnulib-tool to work with locally modified or
4529         augmented gnulib repositories.
4530         * gnulib-tool (func_usage): Document --local-dir option.
4531         (local_gnulib_dir): New variable.
4532         Handle --local-dir option.
4533         (func_lookup_file): New function.
4534         (func_all_modules, func_verify_module): Look also in $local_gnulib_dir.
4535         (func_get_description, func_get_filelist, func_get_description,
4536         func_get_filelist, func_get_dependencies, func_get_autoconf_snippet,
4537         func_get_automake_snippet, func_get_include_directive,
4538         func_get_license, func_get_maintainer): Use func_lookup_file.
4539         (func_import, func_create_testdir): Use func_lookup_file.
4540
4541 2006-07-29  Bruno Haible  <bruno@clisp.org>
4542
4543         * modules/setenv (Depends-on): Add unistd.
4544
4545 2006-07-29  Bruno Haible  <bruno@clisp.org>
4546
4547         * lib/setenv.c: Undo unintended modification done on 2006-02-27.
4548
4549 2006-07-29  Bruno Haible  <bruno@clisp.org>
4550
4551         * lib/localcharset.c: Assume <stddef.h>, <stdlib.h>, <string.h> exist.
4552
4553 2006-07-29  Bruno Haible  <bruno@clisp.org>
4554
4555         * gnulib-tool (import, update): If there is no Makefile.am, look at
4556         aclocal.m4, instead of bailing out.
4557
4558 2006-07-29  Bruno Haible  <bruno@clisp.org>
4559
4560         * gnulib-tool (func_usage): Revert most of the 2006-07-15 change.
4561         Categorize the options by when they are useful.
4562
4563 2006-07-29  Bruno Haible  <bruno@clisp.org>
4564
4565         * gnulib-tool (func_usage): Document option --no-libtool.
4566         Handle option --no-libtool.
4567         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am): Update
4568         for changed semantics of $libtool variable.
4569         (func_import): Likewise. If libtool is not used, show this through
4570         an option --no-libtool.
4571         (func_create_testdir): Update.
4572
4573 2006-07-29  Bruno Haible  <bruno@clisp.org>
4574
4575         * gnulib-tool (func_import): Extend error message about missing
4576         --doc-base.
4577
4578 2006-07-29  Bruno Haible  <bruno@clisp.org>
4579
4580         * gnulib-tool (func_import): Don't create the $docbase directory if
4581         there is no file to store there.
4582
4583 2006-07-29  Bruno Haible  <bruno@clisp.org>
4584
4585         * gnulib-tool (autoconf_minversion): If a --dir option is given and
4586         relevant, look for configure.ac there, not in the current directory.
4587         Also use a simple search for AC_PREREQ, not "autoconf --trace".
4588
4589 2006-07-29  Bruno Haible  <bruno@clisp.org>
4590
4591         * gnulib-tool (SORT): New variable.
4592         (func_usage): Undocument --assume-autoconf option.
4593         Remove --assume-autoconf option handling.
4594         (autoconf_minversion): Determine from the contents of configure.ac.
4595         (func_import): Remove autoconf_minversion handling.
4596         Suggested by Eric Blake.
4597
4598 2006-07-29  Bruno Haible  <bruno@clisp.org>
4599
4600         * doc/gnulib-tool.texi (gl_LIBTOOL): Mention --no-libtool option.
4601
4602 2006-07-29  Bruno Haible  <bruno@clisp.org>
4603
4604         * config/srclist.txt (*setenv.[ch]): Remove rules.
4605
4606 2006-07-28  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
4607
4608         * m4/inet_pton.m4, inet_ntop.m4: Check for netinet/in.h too.
4609
4610 2006-07-28  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
4611
4612         * lib/inet_ntop.h, inet_pton.h: Need to include netinet/in.h before
4613         arpa/inet.h.
4614
4615 2006-07-28  Simon Josefsson  <jas@extundo.com>
4616
4617         * modules/inet_ntop (Depends-on): Depend on arpa_inet.
4618         * modules/inet_pton (Depends-on): Likewise.
4619
4620 2006-07-28  Simon Josefsson  <jas@extundo.com>
4621
4622         * m4/netinet_in_h.m4: New file.
4623
4624 2006-07-28  Simon Josefsson  <jas@extundo.com>
4625
4626         * lib/inet_ntop.h, inet_pton.h: No need to guard netinet/in.h
4627         #include's.
4628
4629 2006-07-28  Simon Josefsson  <jas@extundo.com>
4630
4631         * lib/inet_ntop.h, inet_pton.h: No need to guard arpa/inet.h
4632         #include's.
4633
4634 2006-07-28  Paul Eggert  <eggert@cs.ucla.edu>
4635
4636         * lib/modechange.c (mode_compile): Numeric modes now affect setuid and
4637         setgid on directories only if they set these bits.
4638         * lib/modechange.h: Remove obsolete comment about masks.
4639
4640 2006-07-28  Eric Blake  <ebb9@byu.net>
4641
4642         * lib/regex_internal.h (struct re_dfa_t) [!_LIBC]: Avoid invalid C89
4643         macro expansion.
4644
4645 2006-07-28  Bruno Haible  <bruno@clisp.org>
4646
4647         * lib/inet_ntop.h, inet_pton.h: Use #if HAVE* instead of #ifdef HAVE*.
4648
4649 2006-07-28  Bruno Haible  <bruno@clisp.org>
4650
4651         * m4/mbchar.m4 (gl_MBCHAR): Also test for iswcntrl.
4652
4653 2006-07-28  Bruno Haible  <bruno@clisp.org>
4654
4655         * lib/mbchar.h (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit,
4656         iswgraph, iswlower, iswprint, iswpunct, iswspace, iswupper, iswxdigit):
4657         Define fallbacks.
4658         Avoids link error on FreeBSD 4.x.
4659         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
4660
4661         * lib/wcwidth.h (iswprint): Assume an ASCII compatible wide character
4662         encoding.
4663         * lib/mbswidth.c (iswcntrl): Likewise.
4664
4665 2006-07-27  Bruno Haible  <bruno@clisp.org>
4666
4667         * m4/stdint.m4 (gl_STDINT_H): Define __STDC_CONSTANT_MACROS during the
4668         test.
4669
4670 2006-07-27  Bruno Haible  <bruno@clisp.org>
4671
4672         * lib/stdint_.h (INT*_C, UINT*_C) [C++]: Define these if
4673         __STDC_CONSTANT_MACROS is defined, not if __STDC_LIMIT_MACROS is
4674         defined.
4675
4676 2006-07-26  Eric Blake  <ebb9@byu.net>
4677
4678         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Check for missing pipe.
4679
4680 2006-07-26  Eric Blake  <ebb9@byu.net>
4681
4682         * lib/mkstemp-safer.c [! HAVE_MKSTEMP]: Add prototype for platforms
4683         like mingw that lack mkstemp.
4684         * lib/pipe-safer.c (pipe_safer) [!HAVE_FUNC_PIPE]: Provide fallback to
4685         avoid compilation warning on mingw.
4686
4687 2006-07-26  Bruno Haible  <bruno@clisp.org>
4688
4689         * m4/stdint.m4 (gl_STDINT_H): Also verify the existence of the macros
4690         INT*_MIN, INT_LEAST*_MAX, INT_LEAST*_MIN, UINT_LEAST*_MAX,
4691         INT_FAST*_MIN, INTPTR_MIN.
4692
4693 2006-07-25  Bruno Haible  <bruno@clisp.org>
4694
4695         * modules/version-etc (Depends-on): Add stdarg.
4696
4697 2006-07-25  Bruno Haible  <bruno@clisp.org>
4698
4699         * m4/stdint.m4 (gl_INTEGER_TYPE_SUFFIX): Avoid 'eval' in front of
4700         complex commands.
4701
4702 2006-07-25  Bruno Haible  <bruno@clisp.org>
4703
4704         * lib/version-etc.c (version_etc_va): Use va_copy, assumed to be
4705         defined in <stdarg.h> or config.h.
4706
4707 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
4708
4709         * m4/stdio-safer.m4 (gl_FOPEN_SAFER, gl_TMPFILE_SAFER): New macros.
4710         (gl_STDIO_SAFER): Remove.
4711
4712 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
4713
4714         * MODULES.html.sh (File stream based Input/Output):
4715         Add fopen-safer, tmpfile-safer; remove stdio-safer.
4716         * modules/getusershell (Depends-on): Change stdio-safer to fopen-safer.
4717         * modules/fopen-safer, modules/tmpfile-safer: New files.
4718         * modules/stdio-safer: Remove.
4719
4720 2006-07-24  Bruno Haible  <bruno@clisp.org>
4721
4722         * modules/tmpdir: New file.
4723         * MODULES.html.sh (File system functions): Add it.
4724
4725 2006-07-24  Bruno Haible  <bruno@clisp.org>
4726
4727         * modules/javacomp (Depends-on): Add unistd, javaversion, binary-io,
4728         getline, pathname, fwriteerror, clean-temp, xvasprintf, strstr.
4729
4730 2006-07-24  Bruno Haible  <bruno@clisp.org>
4731
4732         * modules/clean-temp: New file.
4733
4734 2006-07-24  Bruno Haible  <bruno@clisp.org>
4735
4736         * m4/tmpdir.m4: New file, from GNU gettext.
4737
4738 2006-07-24  Bruno Haible  <bruno@clisp.org>
4739
4740         * lib/tmpdir.h: New file, from GNU gettext.
4741         * lib/tmpdir.c: New file, from GNU gettext.
4742
4743 2006-07-24  Bruno Haible  <bruno@clisp.org>
4744
4745         * lib/clean-temp.h: New file, from GNU gettext.
4746         * lib/clean-temp.c: New file, from GNU gettext.
4747
4748 2006-07-23  Eric Blake  <ebb9@byu.net>
4749
4750         * modules/stdio-safer (Files): Add tmpfile-safer.c.
4751         (Depends-on): Add binary-io.
4752
4753 2006-07-23  Eric Blake  <ebb9@byu.net>
4754
4755         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Add tmpfile-safer.c.
4756
4757 2006-07-23  Eric Blake  <ebb9@byu.net>
4758
4759         * lib/tmpfile-safer.c: New file.
4760         * lib/stdio-safer.h (fopen_safer): Add prototype.
4761         * lib/stdio--.h (tmpfile): Make safer.
4762
4763 2006-07-23  Bruno Haible  <bruno@clisp.org>
4764
4765         * lib/gl_anylinked_list2.h (ASYNCSAFE): New macro.
4766         (gl_linked_add_first, gl_linked_add_last, gl_linked_add_before,
4767         gl_linked_add_after, gl_linked_add_at, gl_linked_remove_node,
4768         gl_linked_remove_at): Use it.
4769
4770 2006-07-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
4771         and Simon Josefsson <jas@extundo.com>
4772
4773         * lib/getaddrinfo.h (AI_PASSIVE): Make sure it is defined.
4774
4775         * lib/getaddrinfo.c (getaddrinfo): Support AI_PASSIVE.
4776
4777 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
4778
4779         * modules/close-stream: New file.
4780         * modules/closeout (Description): Make it clear that it exits
4781         with a diagnostic on error.
4782         (Depends-on): Add close-stream.  Remove fpending, stdbool.
4783         * MODULES.html.sh (File stream based Input/Output): Add close-stream.
4784
4785 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
4786
4787         * m4/close-stream.m4: New file.
4788
4789 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
4790
4791         * lib/close-stream.c, lib/close-stream.h: New files.
4792
4793 2006-07-22  Bruno Haible  <bruno@clisp.org>
4794
4795         Merge from GNU gettext 0.15.
4796
4797         2006-05-01  Bruno Haible  <bruno@clisp.org>
4798
4799                 * build-aux/javacomp.sh.in: Update for changed javacomp.m4.
4800
4801         2006-07-22  Bruno Haible  <bruno@clisp.org>
4802
4803                 * modules/javaversion: New file.
4804                 * MODULES.html.sh (Java): Add javaversion.
4805
4806         2006-03-12  Bruno Haible  <bruno@clisp.org>
4807
4808                 * build-aux/javaexec.sh.in: Update for changed javaexec.m4.
4809
4810         2005-12-04  Bruno Haible  <bruno@clisp.org>
4811
4812                 * build-aux/csharpexec.sh.in: Add support for 'clix' launcher
4813                 (untested).
4814
4815         2006-06-21  Bruno Haible  <bruno@clisp.org>
4816
4817                 Avoid warnings from recent versions of mcs.
4818                 * build-aux/csharpcomp.sh.in (options_mcs): Don't use options
4819                 -o, -L, -r any more. Use options documented since mcs-1.0
4820                 instead. Similarly for -g.
4821
4822         2005-12-04  Bruno Haible  <bruno@clisp.org>
4823
4824                 * build-aux/csharpcomp.sh.in: Suffix for resources is
4825                 .resources, not .resource.
4826
4827         2005-07-09  Bruno Haible  <bruno@clisp.org>
4828
4829                 * build-aux/csharpcomp.sh.in (options_csc): For -l option,
4830                 add a .dll suffix.
4831                 Reported by Mark Junker <mjscod@gmx.de>.
4832
4833         2006-07-22  Bruno Haible  <bruno@clisp.org>
4834
4835                 * modules/gettext: Upgrade to gettext-0.15.
4836                 (Files): Remove m4/isc-posix.m4. Add m4/lock.m4,
4837                 m4/visibility.m4.
4838                 Replace m4/inttypes.m4 with m4/inttypes-h.m4.
4839
4840 2006-07-22  Bruno Haible  <bruno@clisp.org>
4841
4842         Merge from GNU gettext 0.15.
4843
4844         2006-03-25  Bruno Haible  <bruno@clisp.org>
4845
4846                 * lib-link.m4 (AC_LIB_LINKFLAGS_FROM_LIBS): New macro.
4847
4848         2006-07-21  Bruno Haible  <bruno@clisp.org>
4849
4850                 * javacomp.m4 (gt_JAVACOMP): Convert target_version "null" to
4851                 "1.1".
4852
4853         2006-05-09  Bruno Haible  <bruno@clisp.org>
4854
4855                 * javacomp.m4 (gt_JAVACOMP): On Cygwin, set
4856                 CLASSPATH_SEPARATOR to a semicolon. Use CLASSPATH_SEPARATOR
4857                 for the conftestver execution.
4858
4859         2006-05-01  Bruno Haible  <bruno@clisp.org>
4860
4861                 * javacomp.m4 (gt_JAVACOMP): Accept a source-version and an
4862                 optional target-version argument. Verify that the compiler
4863                 groks source of the specified source-version, or add -source
4864                 option as necessary. Verify that the compiler produces
4865                 bytecode in the specified target-version, or add -target and
4866                 -source options as necessary. Make the result of the test
4867                 available as variable CONF_JAVAC. Also log error output in
4868                 config.log.
4869
4870         2006-03-11  Bruno Haible  <bruno@clisp.org>
4871
4872                 * javacomp.m4 (gt_JAVACOMP): Treat gcj-4.x like gcj-3.x.
4873
4874         2006-05-09  Bruno Haible  <bruno@clisp.org>
4875
4876                 * javaexec.m4 (gt_JAVAEXEC): On Cygwin, set
4877                 CLASSPATH_SEPARATOR to a semicolon.
4878
4879         2006-03-12  Bruno Haible  <bruno@clisp.org>
4880
4881                 * javaexec.m4 (gt_JAVAEXEC): Make the result of the test
4882                 available as variable CONF_JAVA, for subsequent autoconf
4883                 tests. Also log error output in config.log.
4884
4885         2006-07-19  Bruno Haible  <bruno@clisp.org>
4886
4887                 * getline.m4 (AM_FUNC_GETLINE): When cross-compiling, assume
4888                 that getline works on glibc2 systems. Needed to avoid trouble
4889                 in relocatable.c.
4890                 Reported by Nils Magnus Larsgard <nmlarsgaard@atmel.no>.
4891
4892         2005-12-04  Bruno Haible  <bruno@clisp.org>
4893
4894                 * csharpexec.m4 (gt_CSHARPEXEC): Add support for 'clix'
4895                 launcher (untested).
4896
4897         2005-12-04  Bruno Haible  <bruno@clisp.org>
4898
4899                 * csharpcomp.m4 (gt_CSHARPCOMP): Also set CSHARPCOMPFLAGS.
4900
4901         2006-07-22  Bruno Haible  <bruno@clisp.org>
4902
4903                 * gettext.m4: Update from GNU gettext-0.15.
4904                 * nls.m4: Likewise.
4905                 * po.m4: Likewise.
4906                 * inttypes-pri.m4: Likewise.
4907                 * inttypes-h.m4: Renamed from inttypes.m4.
4908                 (gl_HEADER_INTTYPES_H): Renamed from gt_HEADER_INTTYPES_H.
4909
4910 2006-07-22  Bruno Haible  <bruno@clisp.org>
4911
4912         Merge from GNU gettext 0.15.
4913
4914         2005-07-05  Bruno Haible  <bruno@clisp.org>
4915
4916                 * printf-args.c (printf_fetchargs): Work around broken
4917                 definition of wint_t on mingw.
4918
4919         2005-02-12  Bruno Haible  <bruno@clisp.org>
4920
4921                 * xallocsa.h: Add extern "C" for C++.
4922
4923         2006-05-17  Bruno Haible  <bruno@clisp.org>
4924
4925                 Cygwin portability.
4926                 * progreloc.c (WIN32_NATIVE): Renamed from WIN32.
4927
4928         2006-04-30  Bruno Haible  <bruno@clisp.org>
4929
4930                 * progreloc.c: Include <mach-o/dyld.h> if available.
4931                 (find_executable): Use _NSGetExecutablePath when possible.
4932
4933         2006-05-06  Charles Wilson  <cygwin@cwilson.fastmail.fm>
4934
4935                 * progreloc.c (maybe_executable) [CYGWIN]: Use the access()
4936                 function.
4937
4938         2005-12-29  Bruno Haible  <bruno@clisp.org>
4939
4940                 * progreloc.c (set_program_name_and_installdir): Fix
4941                 compilation error.
4942
4943         2005-12-04  Bruno Haible  <bruno@clisp.org>
4944
4945                 Cygwin portability.
4946                 * progreloc.c: Include <windows.h> also on Cygwin.
4947                 (find_executable): Add support for Cygwin.
4948                 (set_program_name_and_installdir): Handle also platforms with
4949                 nonempty EXEEXT.
4950
4951         2006-07-11  Bruno Haible  <bruno@clisp.org>
4952
4953                 * javacomp.c: Fix a comment.
4954                 Reported by Jim Meyering.
4955
4956         2006-04-30  Bruno Haible  <bruno@clisp.org>
4957
4958                 * javacomp.h (compile_java_class): Add source_version,
4959                 target_version arguments.
4960                 * javacomp.c: Rewritten to choose only a compiler that
4961                 respects the specified source_version and target_version.
4962
4963         2006-06-27  Bruno Haible  <bruno@clisp.org>
4964
4965                 Assume correct S_ISDIR macro.
4966                 * mkdtemp.c: Remove test of STAT_MACROS_BROKEN.
4967
4968         2006-07-22  Bruno Haible  <bruno@clisp.org>
4969
4970                 * javaversion.h: New file, from GNU gettext.
4971                 * javaversion.c: New file, from GNU gettext.
4972                 * javaversion.java: New file, from GNU gettext.
4973                 * javaversion.class: New file, from GNU gettext.
4974
4975         2006-05-17  Bruno Haible  <bruno@clisp.org>
4976
4977                 Cygwin portability.
4978                 * javaexec.c (execute_java_class): Test for jview program
4979                 also on Cygwin.
4980
4981         2006-04-09  Bruno Haible  <bruno@clisp.org>
4982
4983                 * fatal-signal.c: Don't include string.h.
4984                 (at_fatal_signal): Use a copying loop instead of memcpy.
4985
4986         2005-12-04  Bruno Haible  <bruno@clisp.org>
4987
4988                 * csharpexec.c: Add support for 'clix' launcher (untested).
4989                 (execute_csharp_using_sscli): New function.
4990                 (execute_csharp_program): Call it.
4991
4992         2006-06-21  Bruno Haible  <bruno@clisp.org>
4993
4994                 Avoid warnings from recent versions of mcs.
4995                 * csharpcomp.c (compile_csharp_using_mono): Don't use options
4996                 -o, -L, -r any more. Use options documented since mcs-1.0
4997                 instead. Similarly for -g.
4998
4999         2005-07-09  Bruno Haible  <bruno@clisp.org>
5000
5001                 * csharpcomp.c (compile_csharp_using_sscli): For -l option,
5002                 add a .dll suffix.
5003                 Reported by Mark Junker <mjscod@gmx.de>.
5004
5005         2006-06-17  Bruno Haible  <bruno@clisp.org>
5006
5007                 * config.charset: Update for NetBSD 3.0.
5008
5009         2006-05-17  Bruno Haible  <bruno@clisp.org>
5010
5011                 Cygwin portability.
5012                 * localcharset.c (WIN32_NATIVE): Renamed from WIN32.
5013
5014         2006-05-16  Bruno Haible  <bruno@clisp.org>
5015
5016                 * localcharset.c [CYGWIN]: Include <windows.h>.
5017                 (get_charset_aliases): For Cygwin, return the same CPxxx
5018                 aliases list as under WIN32.
5019                 (locale_charset) [CYGWIN]: Try to retrieve the encoding from
5020                 the environment variables. Fall back to GetACP().
5021
5022         2006-04-05  Bruno Haible  <bruno@clisp.org>
5023
5024                 * config.charset: Update Juan Manuel Guerrero's address.
5025
5026         2005-02-12  Bruno Haible  <bruno@clisp.org>
5027
5028                 * allocsa.h: Add extern "C" for C++.
5029
5030         2005-02-10  Bruno Haible  <bruno@clisp.org>
5031
5032                 * allocsa.h (sa_alignof): Define differently with AIX xlc, to
5033                 avoid a bug of this compiler on AIX 3.2.5 dealing with enums.
5034
5035         2006-07-22  Bruno Haible  <bruno@clisp.org>
5036
5037                 * gettext.h: Update to GNU gettext-0.15.
5038
5039 2006-07-22  Bruno Haible  <bruno@clisp.org>
5040
5041         * config/srclist.txt: Resync printf-args.c, vasnprintf.c,
5042         localcharset.c, mkdtemp.c, config.rpath, lib-ld.m4, lib-link.m4,
5043         lib-prefix.m4, longdouble.m4, ssize_t.m4.
5044
5045 2006-07-21  Eric Blake  <ebb9@byu.net>
5046
5047         * modules/stdlib-safer: New file.
5048         * MODULES.html.sh (File stream based Input/Output): Add
5049         stdlib-safer.
5050
5051 2006-07-21  Eric Blake  <ebb9@byu.net>
5052
5053         * lib/stdlib-safer.h: New file from coreutils, required by
5054         stdlib--.h.
5055
5056 2006-07-20  Paul Eggert  <eggert@cs.ucla.edu>
5057
5058         * gnulib-tool (func_usage): Document --assume-autoconf='latest-stable'.
5059
5060 2006-07-20  Bruno Haible  <bruno@clisp.org>
5061
5062         * gnulib-tool: Recognize new option --assume-autoconf.
5063         (autoconf_minversion): New variable.
5064         (func_get_filelist): Use it to decide whether to add onceonly_2_57.m4.
5065
5066 2006-07-20  Bruno Haible  <bruno@clisp.org>
5067
5068         * MODULES.html.sh (func_all_modules): Add a missing func_begin_table.
5069
5070 2006-07-19  Derek R. Price  <derek@ximbiot.com>
5071
5072         * lib/getaddrinfo.h: Don't define unimplemented AI_* flags.
5073         Reindent and repaginate.
5074
5075 2006-07-19  Derek Price  <derek@ximbiot.com>
5076
5077         * doc/gnulib.texi (Libtool and Windows):  Eliminate passive voice.
5078         Correct grammar.
5079
5080 2006-07-17  Bruno Haible  <bruno@clisp.org>
5081
5082         * modules/list: New file.
5083         * modules/array-list: New file.
5084         * modules/carray-list, modules/carray-list-tests: New files.
5085         * modules/linked-list, modules/linked-list-tests: New files.
5086         * modules/avltree-list, modules/avltree-list-tests: New files.
5087         * modules/rbtree-list, modules/rbtree-list-tests: New files.
5088         * modules/linkedhash-list, modules/linkedhash-list-tests: New files.
5089         * modules/avltreehash-list, modules/avltreehash-list-tests: New files.
5090         * modules/rbtreehash-list, modules/rbtreehash-list-tests: New files.
5091         * modules/oset: New file.
5092         * modules/array-oset: New file.
5093         * modules/avltree-oset, modules/avltree-oset-tests: New files.
5094         * modules/rbtree-oset, modules/rbtree-oset-tests: New files.
5095         * tests/test-carray_list.c: New file.
5096         * tests/test-linked_list.c: New file.
5097         * tests/test-avltree_list.c: New file.
5098         * tests/test-rbtree_list.c: New file.
5099         * tests/test-linkedhash_list.c: New file.
5100         * tests/test-avltreehash_list.c: New file.
5101         * tests/test-rbtreehash_list.c: New file.
5102         * tests/test-avltree_oset.c: New file.
5103         * tests/test-rbtree_oset.c: New file.
5104         * MODULES.html.sh (Container data structures): New section.
5105
5106 2006-07-17  Bruno Haible  <bruno@clisp.org>
5107
5108         * m4/gl_list.m4: New file.
5109
5110 2006-07-17  Bruno Haible  <bruno@clisp.org>
5111
5112         * lib/gl_list.h: New file.
5113         * lib/gl_list.c: New file.
5114         * lib/gl_array_list.h: New file.
5115         * lib/gl_array_list.c: New file.
5116         * lib/gl_carray_list.h: New file.
5117         * lib/gl_carray_list.c: New file.
5118         * lib/gl_linked_list.h: New file.
5119         * lib/gl_linked_list.c: New file.
5120         * lib/gl_anylinked_list1.h: New file.
5121         * lib/gl_anylinked_list2.h: New file.
5122         * lib/gl_avltree_list.h: New file.
5123         * lib/gl_avltree_list.c: New file.
5124         * lib/gl_anyavltree_list1.h: New file.
5125         * lib/gl_anyavltree_list2.h: New file.
5126         * lib/gl_rbtree_list.h: New file.
5127         * lib/gl_rbtree_list.c: New file.
5128         * lib/gl_anyrbtree_list1.h: New file.
5129         * lib/gl_anyrbtree_list2.h: New file.
5130         * lib/gl_anytree_list1.h: New file.
5131         * lib/gl_anytree_list2.h: New file.
5132         * lib/gl_linkedhash_list.h: New file.
5133         * lib/gl_linkedhash_list.c: New file.
5134         * lib/gl_anyhash_list1.h: New file.
5135         * lib/gl_anyhash_list2.h: New file.
5136         * lib/gl_avltreehash_list.h: New file.
5137         * lib/gl_avltreehash_list.c: New file.
5138         * lib/gl_rbtreehash_list.h: New file.
5139         * lib/gl_rbtreehash_list.c: New file.
5140         * lib/gl_anytreehash_list1.h: New file.
5141         * lib/gl_anytreehash_list2.h: New file.
5142
5143         * lib/gl_oset.h: New file.
5144         * lib/gl_oset.c: New file.
5145         * lib/gl_array_oset.h: New file.
5146         * lib/gl_array_oset.c: New file.
5147         * lib/gl_avltree_oset.h: New file.
5148         * lib/gl_avltree_oset.c: New file.
5149         * lib/gl_rbtree_oset.h: New file.
5150         * lib/gl_rbtree_oset.c: New file.
5151         * lib/gl_anytree_oset.h: New file.
5152
5153 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
5154
5155         * m4/mkancesdirs.m4: New file.
5156         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Mention dirchownmod.c,
5157         dirchownmod.h.  Don't require AC_FUNC_ALLOCA, gl_AFS, gl_CHDIR_SAFER;
5158         no longer needed.  Require gl_FUNC_LCHOWN, since dirchownmod.c needs
5159         it.
5160
5161 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
5162
5163         * lib/dirchownmod.c, lib/dirchownmod.h, lib/mkancesdirs.c:
5164         * lib/mkancesdirs.h: New files.
5165         * lib/mkdir-p.c: Don't include alloca.h, stdio.h, sys/types.h,
5166         unistd.h, string.h, chdir-safer.h, dirname.h, lchmod.h, lchown.h,
5167         save-cwd.h.  Instead, include dirchownmod.h and mkancesdirs.h.
5168         (make_dir_parents): New args MAKE_ANCESTOR, OPTIONS, ANNOUNCE,
5169         MODE_BITS.  Remove options VERBOSE_FMT_STRING, CWD_ERRNO.  All
5170         callers changed.  Revamp internals significantly, by not
5171         attempting to create directories that are temporarily more
5172         permissive than the final results.  Do not attempt to use
5173         save_cwd/restore_cwd; it isn't worth it for mkdir and install.
5174         This removes some race conditions, fixes some bugs, and simplifies
5175         things.  Use new dirchownmod function to do owner and mode changes.
5176         * lib/mkdir-p.h: Likewise.
5177         * lib/modechange.c (octal_to_mode): New function.
5178         (struct mode_change): New member mentioned.
5179         (make_node_op_equals): New arg mentioned.  All callers changed.
5180         (mode_compile): Keep track of which mode bits the user has explicitly
5181         mentioned.
5182         (mode_adjust): New arg DIR, so that we implement the X op correctly.
5183         New arg PMODE_BITS, to keep track of which mode bits the user
5184         mentioned; it treats S_ISUID and S_ISGID speciall.
5185         All callers changed.
5186         * lib/modechange.h: Likewise.
5187
5188 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
5189
5190         * MODULES.html.sh: Add mkancestors.
5191         * modules/mkancesdirs: New module.
5192         * modules/mkdir-p (Files): Remove lib/chdir-safer.c, lib/chdir-safer.h,
5193         lib/same-inode.h, m4/afs.m4, m4/chdir-safer.m4.
5194         The chdir-safer and afs files are now orphans; I'll remove them
5195         unless someone speaks up.
5196         Add lib/dirchownmod.c, lib/dirchownmod.h.
5197         (Depends-on): Remove alloca, chown, save-cwd, dirname.
5198         Add lchown, mkancesdirs.
5199         (Maintainer): Add self.
5200
5201 2006-07-15  Karl Berry  <karl@gnu.org>
5202
5203         * gnulib-tool: help message wording/arrangement.
5204
5205 2006-07-14  Simon Josefsson  <jas@extundo.com>
5206
5207         * doc/gnulib.texi (Libtool and Windows): New section.
5208
5209 2006-07-12  Simon Josefsson  <jas@extundo.com>
5210
5211         * modules/gendocs (License): Fix license, approved by Karl.
5212
5213 2006-07-12  Eric Blake  <ebb9@byu.net>
5214
5215         * MODULES.html.sh: Add gendocs.
5216
5217 2006-07-11  Eric Blake  <ebb9@byu.net>
5218
5219         * modules/fdl: New module, to install doc/fdl.texi.
5220         * MODULES.html.sh: Add new section for documentation modules.
5221         * gnulib-tool: Avoid space-tab.
5222         (--doc-base): New option, to manage files from doc.
5223
5224 2006-07-11  Eric Blake  <ebb9@byu.net>
5225
5226         * m4/absolute-header.m4: Fix comments to match recent change.
5227
5228 2006-07-11  Eric Blake  <ebb9@byu.net>
5229
5230         * gnulib-tool: List --doc-base before --tests-base.
5231
5232 2006-07-11  Derek R. Price  <derek@ximbiot.com>
5233
5234         * lib/glob.c: s/NAMLEN/_D_EXACT_NAMLEN/.
5235
5236 2006-07-11  Bruno Haible  <bruno@clisp.org>
5237
5238         * README: Mention where to put documentation.
5239
5240 2006-07-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5241
5242         * doc/functions.texi, gnulib-tool.texi, gnulib.texi: Fix some typos.
5243
5244 2006-07-10  Paul Eggert  <eggert@cs.ucla.edu>
5245
5246         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Like today's change
5247         to stdint.m4.
5248
5249 2006-07-10  Paul Eggert  <eggert@cs.ucla.edu>
5250
5251         * m4/stdint.m4 (gl_STDINT_H): Like yesterday's change to
5252         absolute-header.m4.  Also, set ABSOLUTE_STDINT_H to a string
5253         "no/such/file/stdint.h" when there is no such file, so that
5254         the resulting C code can be parsed by dodgy compilers.
5255         Problems reported by Bob Proulx.
5256
5257 2006-07-10  Derek R. Price  <derek@ximbiot.com>
5258
5259         * lib/backupfile.c, dirfd.h, fts.c, getcwd.c, glob.c, glob_.h:
5260         Ignore the obsolescent !HAVE_DIRENT_H case.  Consolidate NAMLEN
5261         macros into the GNU _D_EXACT_NAMLEN.
5262         * lib/savedir.c:  Likewise.
5263         (savedirstream): Use _D_EXACT_NAMLEN in preference to strlen.
5264
5265 2006-07-10  Derek R. Price  <derek@ximbiot.com>
5266         and Paul Eggert  <eggert@cs.ucla.edu>
5267
5268         * m4/backupfile.m4, d-ino.m4, d-type.m4, dirfd.m4, fts.m4, getcwd.m4:
5269         * m4/savedir.m4:
5270         Ignore the obsolescent !HAVE_DIRENT_H case.  Consolidate NAMLEN
5271         macros into the GNU _D_EXACT_NAMLEN.
5272
5273 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
5274
5275         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Use "" rather than <>
5276         around the absolute name, to work around a problem with the HP-UX
5277         11.23 native C compiler, reported by Bob Proulx.
5278
5279 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
5280
5281         * doc/maintain.texi, make-stds.texi: Sync from
5282         <http://savannah.gnu.org/projects/gnustandards>.
5283
5284 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
5285
5286         * build-aux/depcomp, build-aux/install-sh: Sync from Automake.
5287
5288 2006-07-09  Jim Meyering  <jim@meyering.net>
5289
5290         * m4/glob.m4: Remove a doubled word in a comment.
5291
5292 2006-07-09  Jim Meyering  <jim@meyering.net>
5293
5294         * lib/argp-pv.c: Remove a doubled word in a comment.
5295         * lib/check-version.c (check_version): Likewise.
5296         * lib/javacomp.c (compile_java_class): Likewise.
5297
5298 2006-07-08  Paul Eggert  <eggert@cs.ucla.edu>
5299
5300         * gnulib-tool (func_get_filelist): Don't echo m4/onceonly_2_57.m4,
5301         for the benefit of people using Autoconf 2.60.  If you want to
5302         support older Autoconf versions you can copy m4/onceonly_2_57.m4
5303         (or m4/onceonly.m4, if pre-2.57) manually.
5304
5305 2006-07-08  Jim Meyering  <jim@meyering.net>
5306
5307         * m4/link-follow.m4: Remove one of two adjacent "whether"s in a
5308         comment.
5309         * m4/getopt.m4: Remove one of two adjacent "your"s in a comment.
5310         * m4/regex.m4 (gl_REGEX): Remove one of two adjacent "the"s in a
5311         comment.
5312
5313 2006-07-08  Jim Meyering  <jim@meyering.net>
5314
5315         * lib/getndelim2.h (getndelim2): Remove doubled "after" in comment.
5316
5317 2006-07-07  Simon Josefsson  <jas@extundo.com>
5318
5319         * tests/test-crc.c: Change expected crc value, the test vector
5320         were probably computed using the old broken crc.c?
5321
5322 2006-07-06  Simon Josefsson  <jas@extundo.com>
5323
5324         * modules/sys_socket (Files): Add m4/sockpfaf.m4 (this module is
5325         now the canonical place for the M4 file).
5326
5327         * modules/getaddrinfo (Files): Remove m4/sockpfaf.m4, we get it
5328         from the sys_socket dependency now.
5329
5330         * modules/inet_pton (Files): Ditto.
5331
5332         * modules/inet_ntop (Files): Ditto.
5333
5334 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
5335
5336         * modules/getusershell (configure.ac): Use gl_FUNC_GETUSERSHELL,
5337         not gl_PREREQ_GETUSERSHELL.
5338
5339 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5340
5341         * m4/_inttypes_h.m4 (gl_INTTYPES_H): Use AC_CHECK_DECLS_ONCE
5342         with only one argument, for Autoconf 2.60.
5343         * m4/fileblocks.m4 (gl_PREREQ_FILEBLOCKS): AC_CHECK_DECLS_ONCE may
5344         expand to nothing, so add a shell command to avoid syntax error.
5345         * m4/getpass.m4 (gl_PREREQ_GETPASS): Likewise.
5346
5347 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5348
5349         * lib/strtod.c (strtod): cast the argument of tolower to unsigned char.
5350
5351 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
5352
5353         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Don't check for getenv decl;
5354         no longer needed.  Check for isblank decl.
5355         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Don't check for getenv decl.
5356         * m4/regex.m4 (gl_PREREQ_REGEX): Dheck for isblank decl instead
5357         of existence.
5358
5359 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
5360
5361         * lib/getloadavg.c: Use __VMS, not VMS.
5362         * lib/getopt.c: Likewise.
5363         * lib/getpagesize.h: Likewise.
5364         * lib/glob.c: Remove most VMS cruft; it hasn't been tested for a while
5365         and probably does not work.
5366
5367 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
5368
5369         * lib/.cppi-disable: Add wcwidth.
5370         * lib/fnmatch.c (ISBLANK): Remove.  All uses changed to isblank.
5371         (isblank) [! (defined isblank || HAVE_DECL_ISBLANK)]: New macro.
5372         (ISGRAPH): Remove.  All uses changed to isgraph.
5373         (FOLD) [!defined _LIBC]: Remove special case.
5374         * lib/getdate.y (lookup_word): Remove no-longer-needed call to islower.
5375         * lib/regex_internal.h (isblank): Depend on HAVE_DECL_ISBLANK, not
5376         HAVE_ISBLANK.
5377         * lib/strftime.c (TOLOWER, TOUPPER) [!defined _LIBC]: Remove special
5378         case.
5379
5380 2006-07-06  Jim Hyslop  <jhyslop@dreampossible.ca>  (tiny change)
5381
5382         * lib/getaddrinfo.c: Changes to compile under MSVC6: changed
5383         '#if WIN32_NATIVE' to '#ifdef' & moved WSAAPI macro inside
5384         brackets.  Other minor changes to suppress some compiler
5385         warnings.
5386
5387 2006-07-06  Derek R. Price  <derek@ximbiot.com>
5388         and Paul Eggert  <eggert@cs.ucla.edu>
5389
5390         * m4/backupfile.m4 (gl_BACKUPFILE): Check for dirent.h, instead
5391         of invoking obsolescent AC_HEADER_DIRENT macro.
5392         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Likewise.
5393         * m4/d-type.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Likewise.
5394         * m4/dirfd.m4 (gl_FUNC_DIRFD): Likewise.
5395         * m4/fts.m4 (gl_FUNC_FTS_CORE): Likewise.
5396         * m4/getcwd.m4 (gl_PREREQ_GETCWD): Likewise.
5397         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
5398         * m4/savedir.m4 (gl_SAVEDIR): Likewise.
5399         * m4/readdir.m4: Remove; no longer needed.
5400
5401 2006-07-06  Derek R. Price  <derek@ximbiot.com>
5402         and Paul Eggert  <eggert@cs.ucla.edu>
5403
5404         * lib/backupfile.c [HAVE_DIRENT_H && ! HAVE_NDIR_H]:
5405         Don't worry about this obsolete case any more.
5406         (HAVE_DIR): Remove.  All uses removed; we now assume you can read
5407         directories.
5408         * lib/dirfd.h [HAVE_DIRENT_H && ! HAVE_NDIR_H]: Don't
5409         worry about this obsolete case any more.
5410         * lib/fts.c: Likewise.
5411         * lib/getcwd.c: Likewise.
5412         * lib/glob.h: Likewise.
5413         * lib/savedir.c: Likewise.
5414
5415 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
5416
5417         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Use AC_CHECK_DECLS_ONCE
5418         rather than AC_CHECK_DECLS for strtoimax and strtoumax.
5419         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Remove; no longer
5420         needed.
5421         All uses removed.
5422         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
5423         * m4/strtoul.m4 (gl_PREREQ_STRTOUL): Likewise.
5424         * m4/exclude.m4 (gl_EXCLUDE): Don't check for isascii; no longer
5425         needed.
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/strtoul.m4 (gl_PREREQ_STRTOUL): Likewise.
5432         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
5433         * m4/exclude.m4 (gl_EXCLUDE): Don't require AC_C_INLINE; no longer
5434         needed.
5435
5436 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
5437
5438         * lib/memcasecmp.c: Include <limits.h>.
5439         (memcasecmp): Don't assume UCHAR_MAX <= INT_MAX.
5440         * lib/strtod.c (strtod): Don't assume isspace works on negative chars.
5441         Don't assume isdigit succeeds only on '0' through '9'.
5442
5443 2006-07-05  Eric Blake  <ebb9@byu.net>
5444
5445         * modules/getaddrinfo (Depends-on): Add snprintf.
5446
5447 2006-07-05  Eric Blake  <ebb9@byu.net>
5448
5449         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Use gl_HEADER_SYS_SOCKET
5450         to avoid 'header present but could not be compiled' on cygwin.
5451
5452 2006-07-05  Eric Blake  <ebb9@byu.net>
5453
5454         * lib/getaddrinfo.h (NI_NUMERICHOST, NI_NUMERICSERV): Define if
5455         missing from netdb.h.
5456         * lib/getaddrinfo.c (includes): Include inet_ntop and snprintf.
5457
5458 2006-07-05  Derek R. Price  <derek@ximbiot.com>
5459
5460         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Don't require AC_HEADER_STDC;
5461         no longer needed.
5462         * m4/exclude.m4 (gl_EXCLUDE): Likewise.
5463         * m4/getdate.m4 (gl_GETDATE): Likewise.
5464         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Likewise.
5465         * m4/memcasecmp.m4 (gl_MEMCASECMP): Likewise.
5466         * m4/strtod.m4 (gl_FUNC_STRTOD): Likewise.
5467         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
5468         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
5469
5470 2006-07-05  Derek R. Price  <derek@ximbiot.com>
5471
5472         * lib/exclude.c (IN_CTYPE_DOMAIN, is_space): Remove; no longer needed.
5473         All uses of is_space replaced by isspace.
5474         * lib/exit.h: Don't talk about STDC_HEADERS.
5475         * lib/fnmatch.c (ISASCII): Remove; no longer needed.  All uses removed.
5476         (ISPRINT, ISDIGIT, ISALNUM, ISALPHA, ISCNTRL, ISLOWER, ISPUNCT):
5477         (ISSPACE, ISUPPER, ISXDIGIT): Remove; no longer needed.  All uses
5478         replaced by isprint etc.
5479         * lib/getdate.y (IN_CTYPE_DOMAIN, ISSPACE, ISALPHA, ISLOWER): Likewise.
5480         * lib/getusershell.c (IN_CTYPE_DOMAIN, ISSPACE): Likewise.
5481         * lib/memcasecmp.c (IN_CTYPE_DOMAIN, ISLOWER, TOUPPER): Likewise.
5482         * lib/strtod.c (IN_CTYPE_DOMAIN, ISSPACE, ISDIGIT, TOLOWER): Likewise.
5483         * lib/strtol.c (IN_CTYPE_DOMAIN): Likewise.
5484         * lib/xstrtol.c (IN_CTYPE_DOMAIN, ISSPACE): Likewise.
5485
5486 2006-07-05  Bruno Haible  <bruno@clisp.org>
5487
5488         * m4/strndup.m4 (gl_FUNC_STRNDUP): When cross-compiling, check whether
5489         the function exists, before testing against AIX.
5490         Reported by Martin Lambers <marlam@marlam.de>.
5491
5492 2006-07-04  Paul Eggert  <eggert@cs.ucla.edu>
5493
5494         * modules/cycle-check (lib_SOURCES): Add same-inode.h.
5495         From Mark D. Baushke.
5496
5497 2006-07-04  Paul Eggert  <eggert@cs.ucla.edu>
5498
5499         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Prepend three slashes
5500         to the absolute name, not just one, to bypass Sun C 5.8's
5501         "warning: #include of /usr/include/... may be non-portable".
5502
5503 2006-07-04  Eric Blake  <ebb9@byu.net>
5504
5505         * modules/dirname-tests: New test module.
5506         * tests/test-dirname.c: New file, replacing dirname.c
5507         TEST_DIRNAME section that was recently deleted.
5508
5509 2006-07-04  Bruno Haible  <bruno@clisp.org>
5510
5511         Assume ANSI C header files and <ctype.h> functions.
5512         * lib/mbswidth.c (IN_CTYPE_DOMAIN, ISPRINT, ISCNTRL): Remove macros.
5513         (mbsnwidth): Use isprint, iscntrl instead.
5514
5515 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
5516
5517         Merge from coreutils.
5518         * MODULES.html.sh: Add xstrtold.
5519         * modules/xstrtold: New file.
5520         * modules/cycle-check (Files): Add lib/same-inode.h.
5521         * modules/dirname (Files): Add m4/double-slash-root.m4.
5522         * modules/getcwd (Files): Add m4/getcwd-abort-bug.m4.
5523         * modules/mkdir-p (Files): Add lib/same-inode.h.
5524         * modules/same (Files): Add lib/same-inode.h.
5525
5526 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
5527
5528         * m4/absolute-header.m4: Renamed from full-header-path.m4.
5529         This is to keep the terminology clean; POSIX talks about
5530         "absolute pathnames", not "full pathnames", but the GNU
5531         Coding Standards say to use "path" for something else;
5532         so use "absolute" to keep both sides happy.
5533         (gl_ABSOLUTE_HEADER): Renamed from gl_FULL_HEADER_PATH.
5534         Set gl_absolute_header, not gl_full_header_path.
5535         Set gl_cv_absolute_<header>, not gl_full_path_<header>.
5536         Define ABSOLUTE_<HEADER>, not FULL_PATH_<HEADER>.
5537         All uses changed.
5538
5539         Merge from coreutils.
5540
5541         2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
5542
5543         * m4/c-strtod.m4 (gl_C_STRTOLD): Add c-strtod.c to LIBSOURCES.
5544         Require gl_USE_SYSTEM_EXTENSIONS, not gl_C_STRTOD, since we don't
5545         want to require the building of c-strtod.o.
5546         * m4/lib-check.m4 (cu_LIB_CHECK): Remove SEQ_LIBM, since seq no longer
5547         needs -lm directly.
5548         * m4/xstrtod.m4 (gl_XSTRTOLD): New macro.
5549
5550         2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
5551
5552         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Prefer binutils's
5553         --as-needed option if available.  Problem reported by Albert Chin in
5554         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00114.html>.
5555         However, use -Wl,--as-needed, not bare --as-needed, since HP-UX 11.11
5556         cc merely issues a bunch of annoying warnings for --as-needed
5557         (this problem was reported by Bob Proulx).  Also, try linking with
5558         -lm to detect a bug in binutils 2.16 (this problem was reported
5559         by Ralf Wildenhues).
5560
5561         2006-06-18  Jim Meyering  <jim@meyering.net>
5562
5563         Test for a bug that causes glibc's getcwd to suffer a failed assertion.
5564         * m4/getcwd-abort-bug.m4 (gl_FUNC_GETCWD_ABORT_BUG): New file and
5565         macro.
5566         * m4/getcwd.m4 (gl_FUNC_GETCWD): If we detect support for getcwd_null,
5567         also check for glibc-2.4's abort-inducing bug.
5568
5569         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Fix typo.
5570         Low-probability clean-up should be to use rmdir to get rid of
5571         the just-created directory, not unlink.
5572
5573         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): If ftruncate is missing, make
5574         configure fail, and request a bug report to inform us about it.
5575         Add a comment that, barring reports to the contrary, in 2007 we'll
5576         assume ftruncate is universally available.
5577
5578         2006-04-17  Paul Eggert  <eggert@cs.ucla.edu>
5579
5580         * m4/filemode.m4 (gl_FILEMODE): Check for strmode declaration.
5581
5582         2006-03-12  Jim Meyering  <jim@meyering.net>
5583
5584         * m4/chdir-safer.m4 (gl_CHDIR_SAFER): Add same-inode.h to the list.
5585         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Likewise.
5586         * m4/same.m4 (gl_SAME): Likewise.
5587         * m4/root-dev-ino.m4 (gl_ROOT_DEV_INO): Likewise.
5588
5589         2006-03-11  Eric Blake  <ebb9@byu.net>
5590
5591         * m4/double-slash-root.m4: New file, provides gl_DOUBLE_SLASH_ROOT.
5592         * m4/dirname.m4 (gl_DIRNAME): Use gl_DOUBLE_SLASH_ROOT.
5593         * m4/dos.m4 (FILE_SYSTEM_PREFIX_LEN): Move from here to dirname.h.
5594         (FILE_SYSTEM_DRIVE_PREFIX_CAN_BE_RELATIVE): New define.
5595
5596 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
5597
5598         * lib/stdint_.h: Include <sys/types.h> after @FULL_PATH_STDINT_H@, for
5599         MacOS X 10.4.6.  Don't mention <sys/int_types.h>.  Problems
5600         reported by Mark D. Baushke, one in
5601         <http://lists.gnu.org/archive/html/bug-gnulib/2006-07/msg00015.html>.
5602
5603         Merge from coreutils.
5604
5605         * lib/.cppi-disable: Add stdint_.h.
5606         * lib/.cvsignore: Add stdint.h.
5607
5608         2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
5609
5610         * lib/xstrtod.c (XSTRTOD, DOUBLE): New macros, so that we can support
5611         both double and long double versions.
5612         (XSTRTOD): Renamed from xstrtod.  Use DOUBLE internally.
5613         * lib/xstrtold.c: New file.
5614         * lib/xstrtod.h (xstrtold): New decl.
5615
5616         2006-05-22  Paul Eggert  <eggert@cs.ucla.edu>
5617
5618         * lib/filemode.c (setst): Remove.
5619         (strmode): Rewrite to avoid setst.  This makes the code shorter,
5620         (arguably) clearer, and the generated code is a bit smaller on my
5621         Debian GNU/Linux stable x86 host.
5622
5623         2006-04-17  Paul Eggert  <eggert@cs.ucla.edu>
5624
5625         * lib/filemode.c: Include "filemode.h" first, to test the interface.
5626         Assume that filemode.h includes sys/types.h and sys/stat.h.
5627         (HAVE_ST_DM_MODE): New macro, moved here from ls.c.
5628         (ftypelet): Reorder to put common cases first, for efficiency.
5629         Add 'P', 'w'.  Remove 'M', since it's now the caller's responsibility
5630         to do 'M'.
5631         (strmode): Renamed from mode_string, and now stores 12 bytes instead
5632         of 10, for compatibility with FreeBSD.  All callers changed.
5633         (filemodestring): Now stores 12 bytes instead of 10, and sets file
5634         types that can't be deduced solely from st_mode.  First arg is now a
5635         const pointer.
5636         * lib/filemode.h (HAVE_DECL_STRMODE): Include <string.h> for strmode.
5637         (strmode): Renamed from mode_string.
5638         (filemodestring): New decl.
5639         * lib/stat-macros.h: Don't undef S_ISDOOR, since it's never buggy.
5640         (S_ISDOOR): Don't bother with S_IFDOOR, since that code is never
5641         needed.
5642         (S_ISPORT, S_ISWHT): New macros, if not already defined.
5643
5644         2006-04-12  Paul Eggert  <eggert@cs.ucla.edu>
5645
5646         * lib/fsusage.c: Don't include <inttypes.h> or <stdint.h>, since
5647         fsusage.h now does that.  Include fsusage.h first, to test interface.
5648         Prefer statvfs if it works, since it's blessed by POSIX.  Attempt
5649         at most one method (the old code could have generated decls that
5650         didn't conform to C89, not that this was ever exercised).
5651         * lib/fsusage.h: Include <inttypes.h> and <stdint.h> if they exist.
5652
5653         2006-03-19  Jim Meyering  <jim@meyering.net>
5654
5655         Work even in a chroot where d_ino values for entries in "/"
5656         don't match the stat.st_ino values for the same names.
5657         * lib/getcwd.c (__getcwd): When no d_ino value matches the target inode
5658         number, iterate through all entries again, using lstat instead.
5659         Reported by Kenshi Muto in http://bugs.debian.org/355810, and by
5660         Zouhir Hafidi in https://bugzilla.redhat.com/bugzilla/190656.
5661
5662         * lib/getcwd.c (__getcwd): Clarify a comment.
5663         Use memcpy in place of a call to strcpy.
5664
5665         2006-03-12  Jim Meyering  <jim@meyering.net>
5666
5667         * lib/fts-cycle.c (leave_dir): If cycle-check's saved dev-ino pair
5668         matches that of the current directory (which we're about to chdir ".."
5669         out of), then save the dev-ino of the parent, instead.
5670
5671         * lib/same-inode.h (SAME_INODE): New file/macro.
5672         * lib/chdir-safer.c (SAME_INODE): Remove definition.
5673         Include "same-inode.h", instead.
5674         * lib/same.c: Likewise.
5675         * lib/cycle-check.h: Include "same-inode.h".
5676         (CYCLE_CHECK_REFLECT_CHDIR_UP): Define.
5677         * lib/cycle-check.c (SAME_INODE): Remove definition.
5678         * lib/root-dev-ino.h: Include "same-inode.h".
5679
5680         2006-03-11  Eric Blake  <ebb9@byu.net>
5681
5682         * lib/same.c (same_name): s/base_name/last_component/
5683         * lib/backupfile.c (check_extension, numbered_backup): Likewise.
5684         * lib/filenamecat.c (file_name_concat): Likewise.
5685
5686         2006-03-11  Eric Blake  <ebb9@byu.net>,
5687                     Paul Eggert  <eggert@cs.ucla.edu>
5688
5689         * lib/dirname.h (FILE_SYSTEM_PREFIX_LEN): Move here from dos.m4.
5690         [FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]: Don't treat 1: as a
5691         drive prefix.
5692         (IS_ABSOLUTE_FILE_NAME): Treat all drive letters as absolute on
5693         platforms like cygwin with FILE_SYSTEM_DRIVE_PREFIX_IS_ABSOLUTE.
5694         (last_component): New method.
5695         * lib/dirname.c (dir_len): Determine when drive letters need a
5696         subsequent slash.  Preserve // when it is special.
5697         (dir_name): Don't append dot when drive letter is absolute.
5698         [TEST_DIRNAME]: Move into a full-blown gnulib test.
5699         * lib/basename.c (base_name): New semantics - malloc the result.
5700         Preserve // when it is special.  Preserve relative files that look
5701         like drive letters.
5702         (base_len): Preserve // when it is special.
5703         (last_component): New method, similar to old base_name semantics.
5704         * lib/stripslash.c (strip_trailing_slashes): Use last_component, not
5705         base_name.  Strip redundant slashes from ///.
5706
5707 2006-07-03  Jim Meyering  <jim@meyering.net>
5708
5709         * lib/cycle-check.h (CYCLE_CHECK_REFLECT_CHDIR_UP): Abort if this
5710         macro is used before the first cycle_check call.
5711
5712 2006-07-03  Eric Blake  <ebb9@byu.net>
5713
5714         * modules/dirname (Depends-on): Add xstrndup.
5715
5716 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
5717
5718         * m4/stdint.m4 (gl_STDINT_H): Use more-mnemonic identifiers for
5719         test cases, so that config.log is a bit easier to follow.
5720
5721 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
5722
5723         * lib/stdint_.h (intmax_t, uintmax_t): Prefer long to long long if
5724         both are 64 bits, since this seems to be the tradition, and this
5725         prevents gcc -Wformat from warning about usages with PRIuMAX.  If
5726         we ever run into a host that prefers long long to long in this
5727         case, we'll need another configure-time test.  Problem reported by
5728         Jim Meyering.
5729
5730 2006-07-02  Eric Blake  <ebb9@byu.net>
5731
5732         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Simplify by using AC_CHECK_DECLS.
5733
5734 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
5735
5736         * modules/inttypes (Depends-on): No longer depends on stdint.
5737         * modules/stdint (Description): Say more about assumptions.
5738         Say that the fast types might differ.  Say macros are used.
5739         (Files): Remove m4/size_max.m4, m4/wchar_t.m4.  Add m4/longlong.m4.
5740         (Makefile.am): Revise list of substituted symbols to match
5741         new stdint.m4.
5742         * modules/stdint-tests (Files): Add m4/wchar_t.m4, m4/wint_t.m4.
5743         (configure.ac): Add gt_TYPE_WCHAR_T, gt_TYPE_WINT_T.
5744         * tests/test-stdint.c (verify_same_types)
5745         [! (__GNUC__ >= 2 && DO_PEDANTIC)]: Put in a decl, so that
5746         the code conforms to C99/C89.
5747         Test for WCHAR_MIN and WCHAR_MAX only if HAVE_WCHAR_T.
5748         Test for WINT_MIN and WINT_MAX only if HAVE_WINT_T.
5749
5750 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
5751
5752         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Backport from Autoconf 2.60,
5753         but fix a bug, by requiring at least 64 bits.
5754         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Likewise.
5755         * m4/longlong.m4 (gl_AC_TYPE_LONG_LONG): Now just call
5756         AC_TYPE_LONG_LONG_INT.  This macro is obsolete and will go soon.
5757         * m4/ulonglong.m4 (gl_AC_TYPE_UNSIGNED_LONG_LONG) Likewise.
5758
5759         * m4/stdint.m4 (gl_STDINT_H): Rewrite to accommodate stdint_.h
5760         changes.  Make 2.59 a prerequisite.  Check and substitute for
5761         HAVE_LONG_LONG_INT.  Rely on Autoconf to check for stdint.h and
5762         inttypes.h.  Do not use special include files; just use the
5763         defaults.  Check for sys/inttypes.h and sys/bitypes.h in the usual
5764         way now.  Remove no-longer-needed tests for HAVE_LONG_64BIT,
5765         HAVE_LONG_LONG_64BIT, int8_t, int16_t, int32_t, int64_t, uint8_t,
5766         uint16_t, uint32_t uint64_t, int_least8_t, int_least16_t,
5767         int_least32_t, int_least64_t, uint_least8_t, uint_least16_t,
5768         uint_least32_t, uint_least64_t, int_fast8_t, int_fast16_t,
5769         int_fast32_t, int_fast64_t, uint_fast8_t uint_fast16_t,
5770         uint_fast32_t, uint_fast64_t, intptr_t, uintptr_t, intmax_t,
5771         uintmax_t, INT8_MIN, INT8_MAX, UINT8_MAX, INT16_MIN, INT16_MAX,
5772         UINT16_MAX, INT32_MIN, INT32_MAX, UINT32_MAX, INT64_MIN,
5773         INT64_MAX, UINT64_MAX, INT_LEAST8_MIN, INT_LEAST8_MAX,
5774         UINT_LEAST8_MAX, INT_LEAST16_MIN, INT_LEAST16_MAX,
5775         UINT_LEAST16_MAX, INT_LEAST32_MIN, INT_LEAST32_MAX,
5776         UINT_LEAST32_MAX, INT_LEAST64_MIN, INT_LEAST64_MAX,
5777         UINT_LEAST64_MAX, INT_FAST8_MIN, INT_FAST8_MAX, UINT_FAST8_MAX,
5778         INT_FAST16_MIN, INT_FAST16_MAX, UINT_FAST16_MAX, INT_FAST32_MIN,
5779         INT_FAST32_MAX, UINT_FAST32_MAX, INT_FAST64_MIN, INT_FAST64_MAX,
5780         UINT_FAST64_MAX, INTPTR_MIN, INTPTR_MAX, UINTPTR_MAX, INTMAX_MIN,
5781         INTMAX_MAX, UINTMAX_MAX, PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN,
5782         SIG_ATOMIC_MAX, SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN,
5783         WINT_MAX.  Check for C99 conformance more strictly, by detecting
5784         bugs in glibc 2.4, Solaris 10, and OpenBSD 3.9.  On the other hand do
5785         not check for things that C99 does not require, e.g., int8_t.  If
5786         a test isn't needed unless <stdint.h> isn't working, and is
5787         unlikely to be needed for any other reason, then don't do it
5788         unless <stdint.h> isn't working.  Do not check for ptrdiff_t or
5789         size_t, since we assume C89 freestanding at least.  Do not check
5790         for sig_atomic_t, wchar_t, or wint_t, since the code now does
5791         the right thing even if the types are not defined.  Instead use:
5792         (gl_STDINT_TYPE_PROPERTIES): New macro.
5793         (gl_HEADER_STDINT_H, gl_HEADER_INTTYPES_H): Remove.  Don't bother
5794         testing whether <sys/types.h> clashes, as Autoconf does this for
5795         us now.  All uses removed.
5796         (gl_STDINT_CHECK_TYPES, gl_STDINT_MISSING_BOUND):
5797         (gl_STDINT_MISSING_BOUNDS, gl_STDINT_MISSING_BOUNDS2):
5798         (gl_CHECK_TYPE_SAME):
5799         Remove; no longer needed.
5800         (gl_STDINT_BITSIZEOF): Don't bother to check whether the type
5801         exists, since we'll return 0 anyway in that case.
5802         (gl_INTEGER_TYPE_SUFFIX, gl_STDINT_INCLUDES): New macros.
5803
5804 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
5805
5806         * lib/stdint_.h (_GL_STDINT_H): Renamed from _STDINT_H, to avoid
5807         possible collision with system files.
5808         (<stdio.h>, <time.h>, <wchar.h>) [defined __cplusplus && ! defined
5809         __STDC_CONSTANT_MACROS)]: Do not include, since we don't need
5810         WCHAR_MIN and WCHAR_MAX in this case.
5811         (<stddef.h>): Do not include; no longer needed.
5812         (<sys/types.h>): Include if @HAVE_SYS_TYPES_H@, not if
5813         (defined(__OpenBSD__) || defined(__bsdi__) || defined(__sgi)).
5814         (<sys/inttypes.h>): Include if @HAVE_SYS_INTTYPES_H@ &&
5815         !@HAVE_INTTYPES_H@, not if (defined(__FreeBSD__)
5816         && (__FreeBSD__ >= 3) && (__FreeBSD__ <= 4)).
5817         (__STDINT_H__) [@HAVE_STDINT_H@ && defined __sgi && ! defined
5818         __c99]: Define, to work around IRIX <stdint.h> incompatibility.
5819         (@FULL_PATH_STDINT_H@) [!(defined(__sgi) && @HAVE_INTTYPES_H@ &&
5820         !defined(__c99))]: Include in this case too, since it's harmless
5821         now.
5822         (<inttypes.h>) [@HAVE_INTTYPES_H@]: Include, since it's no longer
5823         dangerous to do so.
5824         (@FULL_PATH_INTTYPES_H@) [(defined(__hpux) || defined(_AIX)) &&
5825         @HAVE_INTTYPES_H@]: Do not include, since we now include <inttypes.h>.
5826         (_STDINT_MIN, _STDINT_MAX): New macros.
5827         (int8_t, uint8_t, int16_t, uint16_t, int32_t, uint32_t, int64_t):
5828         (uint64_t, int_least8_t, uint_least8_t, int_least16_t):
5829         (uint_least16_t, int_least32_t, uint_least32_t, int_least64_t):
5830         (uint_least64_t, int_fast8_t, uint_fast8_t, int_fast16_t):
5831         (uint_fast16_t, int_fast32_t, uint_fast32_t, int_fast64_t):
5832         (uint_fast64_t, intptr_t, uintptr_t, intmax_t, uintmax_t): Now
5833         macros, not typedefs; this simplifies things quite a bit.
5834         Use long int for all types narrower than int64_t.
5835         (intmax_t, uintmax_t, INTMAX_C, UINTMAX_C):
5836         Define in terms of long long int or int64_t or long int,
5837         not int64_t or int32_t.  This saves some compile-time testing.
5838         (INT8_MIN, INT8_MAX, UINT8_MAX, INT16_MIN, INT16_MAX, UINT16_MAX):
5839         (INT32_MIN, INT32_MAX, UINT32_MAX, INT64_MIN, INT64_MAX):
5840         (UINT64_MAX, INT_LEAST8_MIN, INT_LEAST8_MAX, UINT_LEAST8_MAX):
5841         (INT_LEAST16_MIN, INT_LEAST16_MAX, UINT_LEAST16_MAX):
5842         (INT_LEAST32_MIN, INT_LEAST32_MAX, UINT_LEAST32_MAX):
5843         (INT_LEAST64_MIN, INT_LEAST64_MAX, UINT_LEAST64_MAX, INT_FAST8_MIN):
5844         (INT_FAST8_MAX, UINT_FAST8_MAX, INT_FAST16_MIN, INT_FAST16_MAX):
5845         (UINT_FAST16_MAX, INT_FAST32_MIN, INT_FAST32_MAX, UINT_FAST32_MAX):
5846         (INT_FAST64_MIN, INT_FAST64_MAX, UINT_FAST64_MAX, INTPTR_MIN):
5847         (INTPTR_MAX, UINTPTR_MAX, INTMAX_MIN, INTMAX_MAX, UINTMAX_MAX):
5848         (PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX):
5849         (SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN, WINT_MAX):
5850         undef any previous version and define our own version, for
5851         simplicity and consistency with the new macros for types.
5852         (PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX):
5853         (SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN, WINT_MAX):
5854         Simplify definitions by using _STDINT_MIN and _STDINT_MAX
5855         where appropriate.  Rely on new symbols @PTRDIFF_T_SUFFIX@,
5856         @SIG_ATOMIC_T_SUFFIX@, @SIZE_T_SUFFIX@, @WCHAR_T_SUFFIX@,
5857         @WINT_T_SUFFIX@ to keep things simple here.
5858         (UINT8_C, UINT16_C, UINT32_C, INT64_C, UINT64_C):
5859         Simplify by assuming typical 8/16/32/64 host, since we're
5860         already doing that elsewhere anyway.
5861         Use (LONG_MAX >> 31 >> 31 == 1) rather than @HAVE_LONG_64BIT@,
5862         and assume long long int is 64 bits if available.  This
5863         speeds up 'configure'.
5864
5865 2006-07-01  Eric Blake  <ebb9@byu.net>
5866
5867         * m4/stdarg.m4 (gl_STDARG_H): Use proper AH_VERBATIM.
5868         Reported by Andreas Buening.
5869
5870 2006-07-01  Eric Blake  <ebb9@byu.net>
5871
5872         * m4/stdarg.m4 (gl_STDARG_H): Properly parenthesize gl_va_copy.
5873
5874 2006-06-30  Jim Hyslop  <jhyslop@dreampossible.ca>  (tiny change)
5875
5876         * lib/getaddrinfo.c: fixed typo
5877
5878 2006-06-29  Jim Meyering  <jim@meyering.net>
5879
5880         * modules/strftime (Maintainer): Add my name, since with the
5881         FPRINTFTIME changes strftime.c has forked from glibc.
5882
5883 2006-06-29  Eric Blake  <ebb9@byu.net>
5884
5885         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Use AC_C_INLINE.
5886
5887 2006-06-29  Eric Blake  <ebb9@byu.net>
5888
5889         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): New file.
5890
5891 2006-06-29  Eric Blake  <ebb9@byu.net>
5892
5893         * lib/stat_.h: New file.
5894
5895 2006-06-29  Eric Blake  <ebb9@byu.net>
5896
5897         * lib/stat_.h (rpl_mkdir): Declare inline, to avoid warnings about
5898         unused static function.
5899
5900 2006-06-29  Eric Blake  <ebb9@byu.net>
5901
5902         * doc/functions.texi (Function Portability): Document missing lstat
5903         on mingw.
5904
5905 2006-06-29  Eric Blake  <ebb9@byu.net>
5906
5907         * MODULES.html.sh: Add sys_stat.
5908         * modules/sys_stat: New module.
5909         * modules/mkstemp (Depends-on): Add sys_stat.
5910
5911 2006-06-29  Derek R. Price  <derek@ximbiot.com>
5912
5913         * m4/strftime.m4: Don't call AC_FUNC_STRFTIME.
5914
5915 2006-06-29  Derek R. Price  <derek@ximbiot.com>
5916
5917         * m4/c-bs-a.m4: Removed.
5918
5919 2006-06-29  Derek R. Price  <derek@ximbiot.com>
5920
5921         * lib/strftime.c: Assume strftime() exists.
5922
5923 2006-06-29  Derek Price  <derek@ximbiot.com>
5924
5925         * modules/c-bs-a: Removed - \a is C89.
5926         * MODULES.html.sh: Remove c-bs-a.
5927
5928 2006-06-29  Bruno Haible  <bruno@clisp.org>
5929
5930         * modules/wcwidth (License): Change to LGPL.
5931
5932 2006-06-28  Simon Josefsson  <jas@extundo.com>
5933
5934         * tests/test-getaddrinfo.c: Test getnameinfo too.  Call WSAStartup
5935         on _WIN32.
5936
5937         * modules/getaddrinfo (Depends-on): Add inet_ntop, needed by
5938         getnameinfo.
5939
5940 2006-06-28  Simon Josefsson  <jas@extundo.com>
5941
5942         * m4/getaddrinfo.m4: Look for getnameinfo prototypes too.
5943
5944 2006-06-28  Simon Josefsson  <jas@extundo.com>
5945
5946         * lib/getaddrinfo.c: Try to load ws2_32.dll on Windows, to find the
5947         functions there.  It will succeed on Windows XP, but on Windows
5948         2000 and (presumably) earlier, it will fail, and use the internal
5949         re-implementation.
5950         (use_win32_p): New function.
5951         (getaddrinfo): Use strtoul on servname, to support numeric ports.
5952         Support AI_NUMERICSERV to disable getservbyname.
5953         (getnameinfo): New function, only supports
5954         NI_NUMERICHOST|NI_NUMERICSERV for now.
5955
5956         * lib/getaddrinfo.h: Test and check for AI_* flags separately, MinGW
5957         only have some of them.  Add AI_NUMERICSERV.  Add prototype for
5958         getnameinfo.
5959
5960 2006-06-28  Eric Blake  <ebb9@byu.net>
5961
5962         * modules/wcwidth: New file.
5963         * modules/mbchar (Depends-on): Add wcwidth.
5964         * modules/mbswidth (Depends-on): Add wcwidth.
5965         * MODULES.html.sh: Add wcwidth.
5966
5967 2006-06-28  Eric Blake  <ebb9@byu.net>
5968
5969         * m4/mbswidth.m4 (gl_MBSDWIDTH): Move wcwidth from here...
5970         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): ...to this new file.
5971
5972 2006-06-28  Eric Blake  <ebb9@byu.net>
5973
5974         * lib/xvasprintf.h: Fix comments.
5975
5976 2006-06-28  Eric Blake  <ebb9@byu.net>
5977
5978         * lib/mbchar.h (wcwidth): Include wcwidth.h.
5979         * lib/mbswidth.c (wcwidth): Move from here...
5980         * lib/wcwidth.h: ...to this new file.
5981
5982 2006-06-28  Derek R. Price  <derek@ximbiot.com>
5983
5984         * m4/savedir.m4: Remove AC_FUNC_CLOSEDIR_VOID requirement.
5985
5986         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Don't require AC_C_CONST, since
5987         it's obsolete.
5988         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME): Likewise.
5989
5990 2006-06-28  Derek R. Price  <derek@ximbiot.com>
5991
5992         * lib/savedir.c (CLOSEDIR): Remove.  All uses changed to closedir.
5993         Autoconf 2.60 says this stuff was obsolete.
5994
5995 2006-06-28  Bruno Haible  <bruno@clisp.org>
5996
5997         * modules/wcwidth (Files): Add m4/wchar_t.m4.
5998
5999 2006-06-28  Bruno Haible  <bruno@clisp.org>
6000
6001         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Also require AC_C_INLINE and
6002         gt_TYPE_WCHAR_T.
6003
6004 2006-06-28  Bruno Haible  <bruno@clisp.org>
6005
6006         * lib/wcwidth.h: Declare nothing if !HAVE_WCHAR_T. Provide a fallback
6007         declaration for wcwidth.
6008         * lib/mbswidth.c: Restore the includes of <wchar.h> and <wctypes.h>.
6009
6010 2006-06-28  Bruno Haible  <bruno@clisp.org>
6011
6012         * lib/mkdtemp.c [MINGW]: Include <io.h>.
6013         (mkdir): Define using _mkdir.
6014
6015 2006-06-28  Bruno Haible  <bruno@clisp.org>
6016
6017         * lib/getaddrinfo.h: Fix POSIX URL.
6018         * lib/getaddrinfo.c (WIN32_NATIVE): New macro. Use it instead of
6019         _WIN32.
6020         (use_win32_p): Make static.
6021         (getaddrinfo): Reject service name if it is empty or does not consist
6022         solely of decimal digits, or if its value is > 65535.
6023         (getnameinfo): Remove useless casts.
6024
6025 2006-06-27  Simon Josefsson  <jas@extundo.com>
6026
6027         * modules/sys_select: New file, suggested by Bruno Haible, Paul
6028         Eggert and Martin Lambers.
6029
6030 2006-06-27  Simon Josefsson  <jas@extundo.com>
6031
6032         * m4/sys_select_h.m4: New file, suggested by Bruno Haible, Paul
6033         Eggert and Martin Lambers.
6034
6035 2006-06-27  Bruno Haible  <bruno@clisp.org>
6036
6037         * m4/stdint.m4 (gl_STDINT_BITSIZEOF): For nonexistent types, set the
6038         result to 0, not to empty.
6039         Reported by Martin Neitzel <neitzel@sco.gaertner.de>.
6040
6041 2006-06-27  Bruno Haible  <bruno@clisp.org>
6042
6043         * lib/stdint_.h (intmax_t, uintmax_t): Undefine before typedef.
6044
6045 2006-06-26  Simon Josefsson  <jas@extundo.com>
6046
6047         * m4/inet_ntop.m4: Don't check for sys/types.h, we assume it is
6048         present.
6049
6050 2006-06-26  Paul Eggert  <eggert@cs.ucla.edu>
6051
6052         * lib/base64.c (B64): Use _ as the formal parameter, not x, to avoid
6053         bug in IBM C V6 for AIX.  Problem reported by Larry Jones in
6054         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00181.html>.
6055
6056 2006-06-26  Mark D. Baushke  <mdb@gnu.org>
6057
6058         * m4/stdint.m4 (gl_STDINT_H): Treat BSD/OS like OpenBSD.
6059
6060 2006-06-26  Bruno Haible  <bruno@clisp.org>
6061
6062         * modules/stdint (Makefile.am): Also substitute HAVE_WCHAR_H.
6063
6064 2006-06-26  Bruno Haible  <bruno@clisp.org>
6065
6066         * m4/stdint.m4 (gl_STDINT_H): Test also for <wchar.h>.
6067
6068 2006-06-26  Bruno Haible  <bruno@clisp.org>
6069
6070         * m4/stdint.m4 (gl_STDINT_H): Don't include <stdint.h> when using the
6071         SGI C compiler in pre-C99 mode.
6072         Suggested by Mark D. Baushke and Larry Jones.
6073
6074 2006-06-26  Bruno Haible  <bruno@clisp.org>
6075
6076         * lib/stdint_.h: Include <wchar.h> if necessary for WCHAR_MIN or
6077         WCHAR_MAX.
6078         Reported by Mark D. Baushke and Larry Jones.
6079
6080 2006-06-26  Bruno Haible  <bruno@clisp.org>
6081
6082         * lib/stdint_.h: Don't include <stdint.h> when using the SGI C compiler
6083         in pre-C99 mode.
6084         Suggested by Mark D. Baushke and Larry Jones.
6085
6086 2006-06-23  Simon Josefsson  <jas@extundo.com>
6087             Bruno Haible  <bruno@clisp.org>
6088
6089         * gnulib-tool (func_emit_lib_Makefile_am): Define MOSTLYCLEANDIRS.
6090         Emit mostlyclean-local rule.
6091         (func_emit_tests_Makefile_am): Likewise.
6092         * modules/sys_socket (Makefile.am): Use MOSTLYCLEANDIRS.
6093
6094 2006-06-23  Mark D. Baushke  <mdb@gnu.org>
6095
6096         * lib/stdint_.h: Treat BSD/OS like OpenBSD.
6097
6098 2006-06-23  Bruno Haible  <bruno@clisp.org>
6099
6100         * tests/test-stdint.c: Update to match ISO C 99 Technical
6101         Corrigendum 1.
6102
6103 2006-06-23  Bruno Haible  <bruno@clisp.org>
6104
6105         * m4/stdint.m4 (gl_STDINT_H): Treat IRIX like OpenBSD.
6106
6107 2006-06-23  Bruno Haible  <bruno@clisp.org>
6108
6109         * lib/stdint_.h: Treat IRIX like OpenBSD.
6110
6111 2006-06-23  Bruno Haible  <bruno@clisp.org>
6112
6113         * lib/stdint_.h (UINT8_C, UINT16_C, UINT32_C): Define according to
6114         ISO C 99 Technical Corrigendum 1.
6115
6116 2006-06-22  Simon Josefsson  <jas@extundo.com>
6117
6118         * m4/sockpfaf.m4: Include winsock2.h too, to make it work under
6119         MinGW.
6120
6121 2006-06-22  Paul Eggert  <eggert@cs.ucla.edu>
6122
6123         * lib/glob.c (collated_compare): Remove 'const' uses that weren't
6124         needed.  Some compiler complained about some of them.  Problem reported
6125         by Larry Jones in
6126         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00172.html>.
6127
6128 2006-06-21  Simon Josefsson  <jas@extundo.com>
6129
6130         * tests/test-getaddrinfo.c: New file.
6131
6132         * modules/getaddrinfo-tests: New file.
6133
6134         * MODULES.html.sh: Add inet_pton.
6135
6136         * modules/inet_pton: New file.
6137
6138 2006-06-21  Simon Josefsson  <jas@extundo.com>
6139
6140         * m4/getaddrinfo.m4: Don't define WINVER.  Look for gethostbyname in
6141         -lws2_32 too.  Fixes getaddrinfo on Windows 2000, with the price
6142         of using the (limited) gnulib implementation on Windows XP.
6143
6144         * m4/inet_pton.m4: New file.
6145
6146 2006-06-21  Simon Josefsson  <jas@extundo.com>
6147
6148         * lib/getaddrinfo.c (getaddrinfo): Set ai_family in the return
6149         variable.
6150
6151         * lib/socket_.h: Don't define WINVER.
6152
6153         * lib/inet_pton.h, inet_pton.c: New file, taken from glibc but
6154         slightly modified to work in gnulib.
6155
6156 2006-06-21  Simon Josefsson  <jas@extundo.com>
6157
6158         * doc/gnulib.texi (Windows sockets): Add.
6159
6160 2006-06-21  Paul Eggert  <eggert@cs.ucla.edu>
6161
6162         * lib/read-file.c (fread_file): Start with buffer allocation of
6163         0 bytes rather than 1 byte; this simplifies the code.
6164         Don't invoke feof; it's not needed.  Refactor to avoid duplicate
6165         code to free buffer and save/restore errno.
6166         (internal_read_file): Remove unused local.
6167
6168 2006-06-20  Paul Eggert  <eggert@cs.ucla.edu>
6169
6170         * lib/openat.c (openat): Use ?:, not if, to work around GCC bug 4210
6171         <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=4210>.
6172         Problem reported by Denis Excoffier in
6173         <http://lists.gnu.org/archive/html/bug-tar/2006-06/msg00023.html>.
6174
6175 2006-06-19  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
6176
6177         * modules/sys_socket, modules/socklen: Include sys/types since
6178         FreeBSD 4.x's sys/socket.h needs it.
6179
6180 2006-06-19  Simon Josefsson  <jas@extundo.com>
6181
6182         * lib/inet_ntop.c: Always build inet_ntop4, since inet_ntop6 calls it.
6183
6184 2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
6185
6186         * lib/alloca_.h (alloca) [defined alloca]: Don't define or declare.
6187
6188 2006-06-19  Bruno Haible  <bruno@clisp.org>
6189
6190         * m4/stdint.m4 (gl_STDINT_H): Enclose the values of FULL_PATH_STDINT_H
6191         and FULL_PATH_INTTYPES_H in angle brackets.
6192         Reported by Mark D. Baushke <mdb@gnu.org>.
6193
6194 2006-06-17  Eric Blake  <ebb9@byu.net>
6195
6196         * m4/rmdir-errno.m4 (gl_FUNC_FMDIR_NOTEMPTY): Assume errno.h declares
6197         errno.
6198
6199 2006-06-17  Bruno Haible  <bruno@clisp.org>
6200
6201         * m4/stdint.m4 (gl_STDINT_H) [FreeBSD >= 5]: Don't include
6202         <sys/inttypes.h>.
6203
6204 2006-06-17  Bruno Haible  <bruno@clisp.org>
6205
6206         * m4/setenv.m4 (gl_PREREQ_SETENV, gl_PREREQ_UNSETENV): Remove test
6207         whether errno is declared. Assume <errno.h> declares errno.
6208
6209 2006-06-17  Bruno Haible  <bruno@clisp.org>
6210
6211         * lib/stdint_.h [FreeBSD >= 5]: Don't include <sys/inttypes.h>.
6212
6213 2006-06-17  Bruno Haible  <bruno@clisp.org>
6214
6215         * lib/stdint_.h (_UINT8_T, _UINT32_T, _UINT64_T): New macros. Fixes a
6216         problem on Solaris 2.5.1.
6217
6218 2006-06-16  Eric Blake  <ebb9@byu.net>
6219
6220         * lib/unsetenv.c [!defined errno]: Assume errno.h declares errno.
6221         * lib/unicodeio.c [!defined errno]: Likewise.
6222         * lib/strtol.c [!defined errno]: Likewise.
6223         * lib/strtod.c [!defined errno]: Likewise.
6224
6225 2006-06-15  Eric Blake  <ebb9@byu.net>
6226
6227         * m4/ssize_t.m4 (gt_TYPE_SSIZE_T): Work in spite of -Werror.
6228
6229 2006-06-15  Eric Blake  <ebb9@byu.net>
6230
6231         * config/srclist.txt (ssize_t.m4): Lose sync.
6232
6233 2006-06-15  Bruno Haible  <bruno@clisp.org>
6234
6235         * modules/stdint (Files): Include m4/full-header-path.m4,
6236         m4/size_max.m4, m4/wchar_t.m4.
6237         (Makefile.am): Many more substitutions.
6238         * modules/stdint-tests: New file.
6239         * tests/test-stdint.c: New file.
6240
6241 2006-06-15  Bruno Haible  <bruno@clisp.org>
6242
6243         * m4/stdint.m4 (gl_STDINT_H): Rewritten to produce a complete stdint.h.
6244         (gl_HEADER_STDINT_H, gl_HEADER_INTTYPES_H, gl_STDINT_CHECK_TYPES,
6245         gl_STDINT_MISSING_BOUND, gl_STDINT_MISSING_BOUNDS,
6246         gl_STDINT_MISSING_BOUNDS2, gl_STDINT_BITSIZEOF, gl_CHECK_TYPES_SIGNED,
6247         gl_CHECK_TYPE_SAME): New macros.
6248
6249 2006-06-15  Bruno Haible  <bruno@clisp.org>
6250
6251         * m4/size_max.m4 (gl_SIZE_MAX): Make it work also when cross-compiling.
6252
6253 2006-06-15  Bruno Haible  <bruno@clisp.org>
6254
6255         * lib/stdint_.h: Rewritten to be fully auto-configured.
6256         Fixes bug on HP-UX/IA64.
6257
6258 2006-06-11  Paul Eggert  <eggert@cs.ucla.edu>
6259
6260         * lib/getdate.y (__attribute__): Don't define if already defined.
6261         Problem reported by Larry Jones.
6262         * lib/utimens.c (__attribute__): Likewise.
6263
6264 2006-06-04  Paul Eggert  <eggert@cs.ucla.edu>
6265
6266         * lib/regexec.c (group_nodes_into_DFAstates): Fix a buffer overrun
6267         reported by Andreas Schwab.
6268
6269 2006-05-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6270             Bruno Haible  <bruno@clisp.org>
6271
6272         * m4/strndup.m4 (gl_FUNC_STRNDUP): Replace the AC_REPLACE_FUNCS with a
6273         check for the declaration of strnlen and a run test that exposes the
6274         AIX 5.1 strnlen bug.  In the failure case, #define strndup to
6275         rpl_strndup.
6276
6277 2006-05-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6278             Bruno Haible  <bruno@clisp.org>
6279
6280         * lib/strndup.c (strndup) [!_LIBC]: Don't undefine macro definition.
6281
6282 2006-05-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6283
6284         * m4/c-strtod.m4 (gl_C99_STRTOLD): Use a link test rather than a
6285         compile test, for Tru64 4.0D.
6286
6287 2006-05-28  Karl Berry  <karl@gnu.org>
6288
6289         * config/srclist.txt (printf-args.c): lose sync.
6290
6291 2006-05-26  Martin Lambers  <marlam@marlam.de>
6292
6293         * lib/getpass.c: Updates the test for the native W32 API, and adds
6294         missing includes, thus fixing compilation warnings.
6295
6296 2006-05-25  Sergey Poznyakoff  <gray@gnu.org.ua>
6297
6298         * lib/exclude.c (exclude_fnmatch): New function.
6299         (excluded_file_name): Call exclude_fnmatch.
6300         * lib/exclude.h (excluded_file_name): New prototype
6301
6302 2006-05-25  Paul Eggert  <eggert@cs.ucla.edu>
6303
6304         * lib/tempname.c (small_open, large_open): New macros.
6305         (__open, __open64) [!_LIBC]: Remove.
6306         (__gen_tempname): Use small_open and large_open instead of __open
6307         and __open64.  This fixes a portability bug on HP-UX 11.11i
6308         reported by Simon Wing-Tang in
6309         <http://lists.gnu.org/archive/html/bug-coreutils/2006-05/msg00114.html>.
6310
6311 2006-05-24  Bruno Haible  <bruno@clisp.org>
6312
6313         * lib/printf-args.c (printf_fetchargs): Turn NULL pointers for
6314         TYPE_STRING and TYPE_WIDE_STRING into a non-NULL replacement.
6315         Reported by Thorsten Maerz <torte@netztorte.de> via
6316         Aaron Stone <aaron@serendipity.cx>.
6317
6318 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
6319
6320         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Rename cache variables to use
6321         gl_ rather than jm_.  Link, don't run, so that cross-compiles are
6322         allowed.  Check that resulting type is arithmetic.  Move AC_REQUIRE
6323         and AC_CHECK_HEADERS_ONCE outside of AC_CACHE_CHECK, since they're
6324         not really conditional on the cache.
6325         (gl_PREREQ_NANOSLEEP): Check for sys/select.h.
6326
6327 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
6328
6329         * lib/nanosleep.c [HAVE_SYS_SELECT_H]: Include <sys/select.h>.
6330         Use the usual Autoconf way to include <time.h> and/or sys/time.h.
6331         (my_usleep): Don't mishandle maximum value.
6332
6333 2006-05-19  Jim Meyering  <jim@meyering.net>
6334
6335         * lib/getugroups.c: Correct an outdated comment.  From Bruno Haible.
6336
6337 2006-05-17  Bruno Haible  <bruno@clisp.org>
6338
6339         Cygwin portability.
6340         * lib/classpath.c (PATH_SEPARATOR) [CYGWIN]: Define as ':'.
6341
6342 2006-05-17  Bruno Haible  <bruno@clisp.org>
6343
6344         * lib/stdint_.h: Fix recognition of Cygwin.
6345
6346 2006-05-15  Bruno Haible  <bruno@clisp.org>
6347
6348         * build-aux/config.rpath: Improve support for Sun C 5.9 on Linux, based
6349         on libtool patch by Ralf Wildenhues.
6350
6351 2006-05-14  Paul Eggert  <eggert@cs.ucla.edu>
6352
6353         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Fix overly-picky
6354         test for C99 conformance; (bool) 0.5 is an integer constant
6355         expression, but (bool) -0.5 is not.  Problem reported by Fedor
6356         Sergeev in <http://forum.sun.com/jive/thread.jspa?threadID=96202>.
6357
6358 2006-05-11  Simon Josefsson  <jas@extundo.com>
6359
6360         * m4/xvasprintf.m4: Fix obvious typo.
6361
6362 2006-05-11  Jim Meyering  <jim@meyering.net>
6363
6364         * lib/sha1.c (sha1_buffer): Correct comment: s/MD5/SHA1/.  From
6365         James Lemley.
6366
6367 2006-05-10  Simon Josefsson  <jas@extundo.com>
6368
6369         * lib/md4.c: Typo fix, update copyright years.
6370         (K1, K2): Don't use L because it turn computations into 64-bit on
6371         64-bit platforms.
6372
6373 2006-05-10  Paul Eggert  <eggert@cs.ucla.edu>
6374
6375         * lib/crc.c (crc32_update): Remove unnecessary L suffix.
6376         * lib/md4.c (rol): Cast right-shift arg to uint32_t to prevent
6377         unwanted sign propagation, e.g., on hosts with 64-bit int.
6378         There still are some problems with reeelly weird theoretical hosts
6379         (e.g., 33-bit int) but it's not worth worrying about now.
6380         * lib/sha1.c (rol): Likewise.
6381         (K1, K2, K3, K4): Remove unnecessary L suffix.
6382
6383 2006-05-10  Bruno Haible  <bruno@clisp.org>
6384
6385         * lib/des.c: Cast to avoid warnings.
6386
6387 2006-05-09  Bruno Haible  <bruno@clisp.org>
6388
6389         * modules/xvasprintf (Files): Add m4/xvasprintf.m4.
6390         (Depends-on): Depend also on xsize, stdarg.
6391         (configure.ac): Add gl_XVASPRINTF.
6392
6393 2006-05-09  Bruno Haible  <bruno@clisp.org>
6394
6395         * m4/xvasprintf.m4: New file.
6396
6397 2006-05-09  Bruno Haible  <bruno@clisp.org>
6398
6399         * lib/xvasprintf.c: Include limits.h, string.h, xsize.h.
6400         (EOVERFLOW): Define fallback value.
6401         (xstrcat): New function.
6402         (xvasprintf): Recognize the special case of a string concatenation.
6403
6404 2006-05-08  Eric Blake  <ebb9@byu.net>
6405
6406         * gnulib-tool (func_version): Base copyright year on CVS date.
6407         (func_emit_copyright_notice): New function.
6408         (func_emit_lib_Makefile_am): Use it.
6409         (func_emit_tests_Makefile_am): Likewise.
6410         (func_import): Likewise.
6411
6412 2006-05-08  Bruno Haible  <bruno@clisp.org>
6413
6414         * modules/stdarg: New file.
6415         * MODULES.html.sh (func_all_modules): Add section for <stdarg.h>.
6416
6417 2006-05-08  Bruno Haible  <bruno@clisp.org>
6418
6419         * m4/stdarg.m4: New file, from GNU gettext.
6420
6421 2006-05-08  Bruno Haible  <bruno@clisp.org>
6422
6423         * config/srclist.txt (build-aux/config.rpath): different from latest
6424         release.
6425
6426 2006-05-08  Bruno Haible  <bruno@clisp.org>
6427
6428         * build-aux/config.rpath: Add support for Sun C 5.9 on Linux.
6429
6430 2006-05-05  Jim Meyering  <jim@meyering.net>
6431
6432         * m4/warning.m4: New file, derived from bison's file by the same name.
6433
6434 2006-05-03  Bruno Haible  <bruno@clisp.org>
6435
6436         * lib/stdint_.h: Shorter URL.
6437         * lib/inttypes.h: Likewise.
6438
6439 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
6440
6441         * modules/inttypes (Maintainer): Change from Derek Price to 'all'.
6442
6443 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
6444
6445         * lib/verify.h: Document the internals better.  Most of this change
6446         was written by Bruno Haible.
6447
6448 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
6449
6450         * doc/verify.texi: New file, partly based on a proposal by
6451         Bruno Haible.
6452
6453 2006-05-02  Bruno Haible  <bruno@clisp.org>
6454
6455         * m4/full-header-path.m4 (gl_FULL_HEADER_PATH): Move the include_next
6456         test from here...
6457         * m4/_inttypes_h.m4 (gl_INTTYPES_H): ... to here.
6458
6459 2006-04-29  Bruno Haible  <bruno@clisp.org>
6460
6461         * lib/gcd.c: Use WORD_T and GCD instead of unsigned long and gcd.
6462         Suggested by Oskar Liljeblad <oskar@osk.mine.nu>.
6463
6464 2006-04-29  Bruno Haible  <bruno@clisp.org>
6465
6466         * gnulib-tool: Make --update option actually work.
6467
6468 2006-04-29  Bruno Haible  <bruno@clisp.org>
6469
6470         * doc/gcd.texi: New file.
6471         * doc/gnulib.texi: Include it.
6472
6473 2006-04-25  Paul Eggert  <eggert@cs.ucla.edu>
6474
6475         * lib/getdate.y (get_date): When adding relative date, start with the
6476         initial time, not with the result of the first mktime call.
6477
6478 2006-04-25  Bruno Haible  <bruno@clisp.org>
6479
6480         * gnulib-tool (func_import): Output the include directives in three
6481         blocks, sorted separately.
6482         Reported by Ben Pfaff <blp@cs.stanford.edu>.
6483
6484 2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
6485
6486         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Use prototype
6487         to define main with arguments, for C++.  Reported by Eric Blake.
6488         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC):
6489         Prefer 'int main ()' to 'int main (void)', for C++.
6490         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Likewise.
6491         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Specify a return type
6492         for 'main', for C99 and C++.
6493
6494 2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
6495
6496         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Use return, not exit.
6497         Don't assume that exit status -1 is valid.
6498         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
6499         * m4/putenv.m4 (gl_FUNC_PUTENV): Likewise.
6500         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Likewise.
6501         * m4/readdir.m4 (GL_FUNC_READDIR): Include <stdlib.h>.
6502         * m4/rename.m4 (vb_FUNC_RENAME): Likewise.
6503         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Use AC_RUN_IFELSE,
6504         not AC_TRY_RUN.  Use return, not exit.  Don't assume that
6505         functions can be used without declaring them, or that you can
6506         exit with status -1.
6507         * m4/utimes-null.m4 (gl_FUNC_UTIMES_NULL): Likewise.
6508
6509 2006-04-24  Karl Berry  <karl@gnu.org>
6510
6511         * config/srclist.txt (longdouble.m4): sync lost.
6512
6513 2006-04-24  Eric Blake  <ebb9@byu.net>
6514
6515         * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Avoid unused variable warning.
6516
6517 2006-04-24  Bruno Haible  <bruno@clisp.org>
6518
6519         * m4/poll.m4 (gl_FUNC_POLL): When cross-compiling, reject also the
6520         poll() implementation in AIX.
6521         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
6522
6523 2006-04-24  Bruno Haible  <bruno@clisp.org>
6524
6525         * m4/poll.m4 (gl_FUNC_POLL): Rearrange code, so that POLL_H gets
6526         assigned exactly once.
6527
6528 2006-04-23  Claudio Fontana  <claudio@gnu.org>
6529             Bruno Haible  <bruno@clisp.org>
6530
6531         * modules/gettext (Makefile.am): Add a -I flag for <libintl.h>.
6532         * gnulib-tool (func_emit_lib_Makefile_am): Emit empty default value
6533         for AM_CPPFLAGS.
6534
6535 2006-04-23  Bruno Haible  <bruno@clisp.org>
6536
6537         * modules/copy-file: Depend on unistd.
6538         * modules/execute: Likewise.
6539         * modules/fatal-signal: Likewise.
6540         * modules/findprog: Likewise.
6541         * modules/mkdtemp : Likewise.
6542         * modules/pipe: Likewise.
6543         * modules/wait-process: Likewise.
6544
6545 2006-04-23  Bruno Haible  <bruno@clisp.org>
6546
6547         * lib/fwriteerror.c (fwriteerror): Call fclose also when an error
6548         condition was already detected.
6549         Reported by Ben Pfaff <blp@cs.stanford.edu>.
6550
6551 2006-04-23  Bruno Haible  <bruno@clisp.org>
6552
6553         * lib/copy-file.c: Include <unistd.h> unconditionally.
6554         * lib/execute.c: Likewise.
6555         * lib/fatal-signal.c: Likewise.
6556         * lib/findprog.c: Likewise.
6557         * lib/mkdtemp.c: Likewise.
6558         * lib/pipe.h: Likewise.
6559         * lib/pipe.c: Likewise.
6560         * lib/wait-process.h: Likewise.
6561
6562 2006-04-23  Bruno Haible  <bruno@clisp.org>
6563
6564         * gnulib-tool (func_usage): Fix --import description. Document
6565         --update.
6566         (func_import): Create temporary file in a temporary directory, if
6567         --dry-run is specified. Silence errors from 'grep' when there are no
6568         m4 files in $m4dir.
6569         (func_create_testdir): Silence errors from 'grep' when there are no
6570         m4 files in $m4dir.
6571         Reported by Karl Berry <karl@freefriends.org>.
6572
6573 2006-04-20  Bruno Haible  <bruno@clisp.org>
6574
6575         * m4/argp.m4 (gl_ARGP): Don't call AC_CHECK_DECLS_ONCE with more than
6576         one argument, so that the code will be portable to Autoconf 2.60.
6577         * m4/getlogin_r.m4 (gl_PREREQ_GETLOGIN_R): Likewise.
6578         * m4/getpass.m4 (gl_PREREQ_GETPASS): Likewise.
6579         * m4/unlocked-io.m4 (gl_FUNC_GLIBC_UNLOCKED_IO): Likewise.
6580
6581 2006-04-19  Derek Price  <derek@ximbiot.com>
6582             Eric Blake  <ebb9@byu.net>
6583
6584         * m4/full-header-path.m4 (gl_FULL_HEADER_PATH): Use </full/path.h>
6585         rather than "/full/path.h".  Update comment to match.  Shorten &
6586         generalize m4_translit call via AS_TR_CPP.
6587
6588 2006-04-19  Derek Price  <derek@ximbiot.com>
6589             Eric Blake  <ebb9@byu.net>
6590
6591         * lib/inttypes.h: Correct grammar in comment.
6592
6593 2006-04-18  Derek Price  <derek@ximbiot.com>
6594             Paul Eggert  <eggert@cs.ucla.edu>
6595
6596         * modules/inttypes: New file.
6597         * modules/strtoimax, modules/strtoumax: Depend on inttypes.
6598
6599 2006-04-18  Derek Price  <derek@ximbiot.com>
6600             Paul Eggert  <eggert@cs.ucla.edu>
6601
6602         * m4/_inttypes_h.m4, m4/full-header-path.m4, m4/include_next.m4:
6603         New files.
6604
6605 2006-04-18  Derek Price  <derek@ximbiot.com>
6606             Paul Eggert  <eggert@cs.ucla.edu>
6607
6608         * lib/inttypes.h: New file.
6609         * lib/strtoimax.c: Assume <inttypes.h>.
6610
6611 2006-04-15  Paul Eggert  <eggert@cs.ucla.edu>
6612
6613         * lib/utimens.c (futimens): glibc futimesat messes up if /proc
6614         isn't mounted.  Problem reported by Kir Kolyshkin.
6615
6616 2006-04-13  Paul Eggert  <eggert@cs.ucla.edu>
6617
6618         * lib/regcomp.c (init_dfa): Don't use wchar_t or wctype_t if
6619         RE_ENABLE_I18N is not defined.  Problem reported by Mark D. Baushke via
6620         Derek R. Price.
6621         * lib/regex.h (RE_DUP_MAX): Update comment to match current
6622         implementation.
6623
6624 2006-04-12  Eric Blake  <ebb9@byu.net>
6625
6626         * modules/time_r (Makefile.am): Remove lib_SOURCES line, as this
6627         is now done automatically by the corresponding Autoconf macro.
6628
6629 2006-04-11  Paul Eggert  <eggert@cs.ucla.edu>
6630
6631         * m4/time_r.m4 (gl_TIME_R): Add AC_LIBSOURCES for time_r.c and
6632         time_r.h.
6633
6634 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
6635
6636         Merge regex changes from libc, removing some of our
6637         POSIX-conformance changes that were rejected and redoing them in a
6638         less-intrusive way.
6639
6640         * lib/regcomp.c (re_compile_internal, init_dfa):
6641         Length arg is now size_t, not Idx.  All uses changed.
6642         (peek_token): Forward decl now says internal_function.
6643         (__re_error_msgid, __re_error_msgid_idx):
6644         Now static rather than extern with attribute_hidden.
6645         (re_compile_pattern) [!defined _LIBC]: Use K&R-style defn.
6646         For some reason libc prefers K&R style defns for external functions.
6647         (regerror) [!defined _LIBC]: Likewise.
6648         (re_set_syntax, re_compile_fastmap, regcomp, regfree, re_comp):
6649         (seek_collating_symbol_entry, lookup_collation_sequence_value):
6650         (build_range_exp, build_collating_symbol):
6651         Use K&R-style defn.
6652         (re_compile_fastmap): Use '\0' to memset, not 0.
6653         (utf8_sb_map): Make the calculations more obvious.
6654         (init_dfa, parse_bracket_exp, build_charclass_op):
6655         Call calloc and cast result, as glibc does.
6656         (init_word_char, fetch_token, peek_token, peek_token_bracket):
6657         (build_range_exp, build_collating_symbol):
6658         Now internal functions.
6659
6660         * lib/regex.c [!defined _LIBC]: Allow compiling with C++ compilers.
6661
6662         * lib/regex.h (__USE_GNU_REGEX): New macro.  Don't depend on
6663         _REGEX_SOURCE any more; depend on _GNU_SOURCE instead.
6664         Don't depend on VMS; depend on __VMS instead, for POSIX
6665         namespace cleanness.
6666         (regoff_t): Define to ssize_t, not long int.
6667
6668         Remove the REG_ macros named below.  Instead, make the old names
6669         (e.g., RE_BACKSLASH_ESCAPE_IN_LISTS) visible only if
6670         __USE_GNU_REGEX.
6671         (REG_BACKSLASH_ESCAPE_IN_LISTS):
6672         (REG_BK_PLUS_QM, REG_CHAR_CLASSES, REG_CONTEXT_INDEP_ANCHORS):
6673         (REG_CONTEXT_INDEP_OPS, REG_CONTEXT_INVALID_OPS):
6674         (REG_DOT_NEWLINE, REG_DOT_NOT_NULL, REG_HAT_LISTS_NOT_NEWLINE):
6675         (REG_INTERVALS, REG_LIMITED_OPS, REG_NEWLINE_ALT):
6676         (REG_NO_BK_BRACES, REG_NO_BK_PARENS, REG_NO_BK_REFS):
6677         (REG_NO_BK_VBAR, REG_NO_EMPTY_RANGES):
6678         (REG_UNMATCHED_RIGHT_PAREN_ORD, REG_NO_POSIX_BACKTRACKING):
6679         (REG_NO_GNU_OPS, REG_DEBUG, REG_INVALID_INTERVAL_ORD):
6680         (REG_IGNORE_CASE, REG_CARET_ANCHORS_HERE):
6681         (REG_CONTEXT_INVALID_DUP, REG_NO_SUB, REG_SYNTAX_EMACS):
6682         (REG_SYNTAX_AWK, REG_SYNTAX_GNU_AWK, REG_SYNTAX_POSIX_AWK):
6683         (REG_SYNTAX_GREP, REG_SYNTAX_EGREP, REG_SYNTAX_POSIX_EGREP):
6684         (REG_SYNTAX_ED, REG_SYNTAX_SED, _REG_SYNTAX_POSIX_COMMON):
6685         (REG_SYNTAX_POSIX_BASIC, REG_SYNTAX_POSIX_MINIMAL_BASIC):
6686         (REG_SYNTAX_POSIX_EXTENDED, REG_SYNTAX_POSIX_MINIMAL_EXTENDED):
6687         (REG_DUP_MAX, REG_UNALLOCATED, REG_REALLOCATE, REG_FIXED):
6688         (REG_NREGS):
6689         Remove.  All uses replaced by the old RE_* names.
6690         (RE_BACKSLASH_ESCAPE_IN_LISTS):
6691         (RE_BK_PLUS_QM, RE_CHAR_CLASSES, RE_CONTEXT_INDEP_ANCHORS):
6692         (RE_CONTEXT_INDEP_OPS, RE_CONTEXT_INVALID_OPS):
6693         (RE_DOT_NEWLINE, RE_DOT_NOT_NULL, RE_HAT_LISTS_NOT_NEWLINE):
6694         (RE_INTERVALS, RE_LIMITED_OPS, RE_NEWLINE_ALT):
6695         (RE_NO_BK_BRACES, RE_NO_BK_PARENS, RE_NO_BK_REFS):
6696         (RE_NO_BK_VBAR, RE_NO_EMPTY_RANGES):
6697         (RE_UNMATCHED_RIGHT_PAREN_ORD, RE_NO_POSIX_BACKTRACKING):
6698         (RE_NO_GNU_OPS, RE_DEBUG, RE_INVALID_INTERVAL_ORD):
6699         (RE_IGNORE_CASE, RE_CARET_ANCHORS_HERE):
6700         (RE_CONTEXT_INVALID_DUP, RE_NO_SUB):
6701         Don't bother having these macros be independent of each others'
6702         values, since they no longer exist in the POSIX name space.
6703
6704         Rename the following member names back to their old names,
6705         unless !__USE_GNU_REGEX.  All uses changed back.
6706         (buffer): Renamed from re_buffer.
6707         (allocated): Renamed from re_allocated.
6708         (used): Renamed from re_used.
6709         (syntax): Renamed from re_syntax.
6710         (fastmap): Renamed from re_fastmap.
6711         (translate): Renamed from re_translate.
6712         (can_be_null): Renamed from re_can_be_null.
6713         (regs_allocated): Renamed from re_regs_allocated.
6714         (fastmap_accurate): Renamed from re_fastmap_accurate.
6715         (no_sub): Renamed from re_no_sub.
6716         (not_bol): Renamed from re_not_bol.
6717         (not_eol): Renamed from re_not_eol.
6718         (newline_anchor): Renamed from re_newline_anchor.
6719         (num_regs): Renamed from rm_num_regs.
6720         (start): Renamed from rm_start.
6721         (end): Renamed from rm_end.
6722
6723         (free_state): Move up a bit.
6724
6725         * lib/regex_internal.h (inline) [__GNUC__ < 3 && defined _LIBC]:
6726         #define to be empty.
6727         (ASCII_CHARS): New macro, replacing all uses of 0x80 and/or SBC_MAX / 2
6728         when that is what is intended.
6729         (SBC_MAX): Define to UCHAR_MAX + 1, not 256.
6730         (__re_error_msgid, __re_error_msgid_idx): Remove decls; not needed.
6731         (MAX): New macro.
6732         (re_xmalloc, re_calloc, re_xrealloc, re_x2realloc): Remove.
6733         All uses changed back to re_malloc, etc.  It's now the caller's
6734         responsibility to check for overflow; all callers changed.
6735         (re_alloc_oversized, re_x2alloc_oversized, re_xnmalloc, re_xnrealloc):
6736         (re_x2nrealloc): Remove.
6737         (free_state): Remove decl.
6738
6739         * lib/regexc.c (regexec, re_match, re_search, re_match_2, re_search_2):
6740         (re_set_registers, re_exec):
6741         Use K&R-style defn.
6742
6743         2006-01-31  Roland McGrath  <roland@redhat.com>
6744
6745         * lib/regcomp.c (calc_eclosure_iter): Remove dead variables.
6746         Reported by Mike Frysinger <vapier@gentoo.org>.
6747
6748         2006-01-15  Andreas Jaeger  <aj@suse.de>
6749
6750         [BZ #1950]
6751         * lib/regex_internal.c (re_string_reconstruct): Adjust for
6752         build_wcs_upper_buffer change.
6753         (build_wcs_upper_buffer): Change return type.
6754
6755         2005-12-10  Ulrich Drepper  <drepper@redhat.com>
6756
6757         * lib/regex_internal.h: Include <stdint.h> if available.
6758
6759         2005-12-06  Paolo Bonzini  <bonzini@gnu.org>
6760
6761         * lib/regex_internal.h (SIZE_MAX): Provide a default definition.
6762
6763         2005-10-14  Ulrich Drepper  <drepper@redhat.com>
6764
6765         * lib/regcomp.c: Adjust for changed secondary hash function.
6766
6767         2005-09-30  Ulrich Drepper  <drepper@redhat.com>
6768
6769         * lib/regex.h: Pretty printing.
6770         Clean up namespace a bit.
6771
6772         2005-09-30  Jakub Jelinek  <jakub@redhat.com>
6773
6774         * lib/regexec.c (update_cur_sifted_state, check_arrival,
6775         check_arrival_add_next_nodes): Avoid using uninitialized variable.
6776
6777         2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
6778                     Ulrich Drepper  <drepper@redhat.com>
6779
6780         [BZ #1302]
6781         * lib/regex_internal.h (bitset_t): Renamed from bitset.  All uses
6782         changed.
6783         (bitset_word_t): Renamed from bitset_word.  All uses changed.
6784
6785         2005-09-22  Ulrich Drepper  <drepper@redhat.com>
6786
6787         [BZ #281]
6788         * lib/regex.h: Define RE_TRANSLATE_TYPE as unsigned char *.
6789         * lib/regcomp.c: Remove unnecessary uses of
6790         unsigned RE_TRANSLATE_TYPE.
6791         * lib/regex_internal.h: Likewise.
6792         * lib/regex_internal.c: Likewise.
6793         * lib/regexec.c: Likewise.
6794         Based on a patch by Stepan Kasal <kasal@ucw.cz>.
6795
6796         2005-09-07  Ulrich Drepper  <drepper@redhat.com>
6797
6798         * lib/regexec.c (find_recover_state): Remove unnecessary
6799         initialization.
6800         (transit_state_bkref): Make DFA a const pointer.
6801         (get_subexp): Likewise.
6802         (check_arrival): Likewise.
6803         (update_cur_sifted_state): Likewise.
6804         (re_search_internal): Likewise.
6805         (prune_impossible_nodes): Likewise.
6806         (acquire_init_state_context): Likewise.
6807         (proceed_next_node): Likewise.
6808         (set_regs): Likewise.
6809         (free_fail_stack_return): Likewise.
6810         (check_arrival_expand_ecl): Mark DFA parameter as const.
6811         (check_arrival_expand_ecl_sub): Likewise.
6812         (check_subexp_limits): Likewise.
6813         (sub_epsilon_src_nodes):  Likewise.
6814         (add_epsilon_src_nodes):  Likewise.
6815         (merge_state_array): Likewise.
6816         (update_regs): Likewise.
6817         (build_trtable): Likewise.
6818         (sift_states_backward): Mark MCTX parameter as const.
6819         (build_sifted_states): Likewise.
6820         (update_cur_sifted_state): Likewise.
6821         (sift_states_mkref): Likewise.
6822         (check_arrival_expand_ecl): Mark eclosure as const.
6823         (check_dst_limits_calc_pos_1): Likewise.
6824         * lib/regex_internal.h (re_match_context_t): Make dfa a const
6825         pointer.
6826
6827         2005-09-06  Ulrich Drepper  <drepper@redhat.com>
6828
6829         * lib/regexec.c (merge_state_with_log): Define dfa as const pointer.
6830         (transit_state_sb): Likewise.
6831         (transit_state_mb): Likewise.
6832         (sift_states_iter_mb): Likewise.
6833         (check_arrival_add_next_nodes): Likewise.
6834         (check_node_accept_bytes): Change first parameter to pointer-to-const.
6835         [_LIBC] (re_search_2_stub): Use mempcpy.
6836
6837         * lib/regex_internal.c (re_string_reconstruct): Avoid calling
6838         mbrtowc for very simple UTF-8 case.
6839
6840         * lib/regex_internal.c (re_acquire_state): Make DFA pointer arg
6841         a pointer-to-const.
6842         (re_acquire_state_context): Likewise.
6843         * lib/regex_internal.h: Adjust prototypes.
6844
6845         * lib/regex.c: Prevent using C++ compilers.
6846
6847         * lib/regex_internal.c (re_acquire_state): Minor code rearrangement.
6848         (re_acquire_state_context): Likewise.
6849
6850 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
6851
6852         * modules/regex (Depends-on): Add ssize_t.
6853
6854 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
6855
6856         * m4/regex.m4 (gl_REGEX): Check for new glibc interface to
6857         translation table.
6858
6859 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
6860
6861         * doc/gnulib-tool.texi (Modified imports): pathname -> file name.
6862
6863 2006-03-29  Mark D. Baushke  <mdb@gnu.org>
6864             Bruno Haible  <bruno@clisp.org>
6865
6866         * lib/stdint_.h: On OpenBSD, don't redefine types already included in
6867         <sys/types.h> and <inttypes.h>.
6868
6869 2006-03-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6870
6871         * m4/argz.m4 (gl_FUNC_ARGZ): If we define `error_t', also define
6872         `__error_t_defined', so argp.h will not typedef the former.
6873
6874 2006-03-25  Paul Eggert  <eggert@cs.ucla.edu>
6875
6876         * m4/regex.m4 (gl_REGEX): Don't insist on REG_SYNTAX_POSIX_EGREP,
6877         REG_SYNTAX_EMACS, and REG_IGNORE_CASE.  Settle for the traditional
6878         glibc names.  Even if glibc is changed to conform to POSIX, the
6879         traditional names will be available anyway, since regex depends on
6880         the extensions module.  Also, fix a longstanding typo in the
6881         implementation of Spencer ERE test #75 from grep 2.3.  Problems
6882         reported by Emanuele Giaquinta.  Also, change sense of cached
6883         variable, so that the message makes sense.
6884
6885 2006-03-24  Simon Josefsson  <jas@extundo.com>
6886
6887         * lib/base64.c: Fix problems reported by Eric Blake <ebb9@byu.net>,
6888         including some doc fixes.
6889         (base64_encode_alloc): Fix +1 bug on allocation failures.
6890
6891 2006-03-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6892
6893         * lib/base64.c (base64_encode): Do not read past end of array with
6894         unsanitized input on systems with CHAR_BIT > 8.
6895
6896 2006-03-24  Eric Blake  <ebb9@byu.net>
6897
6898         * lib/time_r.c (copy_string_result): Remove, as it is no longer used.
6899
6900 2006-03-22  Karl Berry  <karl@gnu.org>
6901
6902         * config/srclist.txt (*setenv.[ch]): get from coreutils.
6903         * config/srclistvars.sh (COREUTILS): new var.
6904
6905 2006-03-17  Jim Meyering  <jim@meyering.net>
6906
6907         * m4/regex.m4 (gl_REGEX): Fix typo in last change:
6908         s/_REGEX_WIDE_OFFSETS/_REGEX_LARGE_OFFSETS/.
6909
6910 2006-03-16  Paul Eggert  <eggert@cs.ucla.edu>
6911
6912         * m4/regex.m4 (gl_REGEX): Don't check for off_t, since the code
6913         no longer needs it.  Instead, check that regoff_t is as least
6914         as wide as ptrdiff_t.
6915
6916         Don't define _REGEX_WIDE_OFFSETS unless using the included regex,
6917         so that our regex.h stays compatible with the installed regex.
6918         This is helpful for installers who configure --without-included-regex.
6919         Problem reported by Emanuele Giaquinta.
6920
6921 2006-03-16  Paul Eggert  <eggert@cs.ucla.edu>
6922
6923         * lib/regex.h (regoff_t) [defined _REGEX_LARGE_OFFSETS]:
6924         Typedef to long int, not to off_, as POSIX will likely change
6925         in that direction.
6926
6927 2006-03-15  Eric Blake  <ebb9@byu.net>
6928
6929         * m4/dirfd.m4 (gl_FUNC_DIRFD): Use AC_REQUIRE for AC_HEADER_DIRENT.
6930
6931 2006-03-13  Sergey Poznyakoff  <gray@gnu.org.ua>
6932
6933         * lib/argp-help.c (validate_uparams): Fix typo
6934         * lib/argp-parse.c (argp_default_options): Consistently begin help
6935         messages with a lowercase letter.
6936
6937 2006-03-11  Paul Eggert  <eggert@cs.ucla.edu>
6938
6939         * lib/time_r.h (asctime_r, ctime_r): Remove.  These functions can
6940         overrun buffers and shouldn't be used (much as gets shouldn't be
6941         used).
6942         * lib/time_r.c (asctime_r, ctime_r): Likewise.
6943
6944 2006-03-08  Simon Josefsson  <jas@extundo.com>
6945
6946         * m4/gc-random.m4: Permit 'no' as variable values and fix warnings,
6947         suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
6948
6949 2006-03-08  Simon Josefsson  <jas@extundo.com>
6950
6951         * m4/gc-random.m4: Call AC_CANONICAL_HOST and use $host_os instead of
6952         $target, suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
6953
6954 2006-03-08  Simon Josefsson  <jas@extundo.com>
6955
6956         * lib/gc-gnulib.c (randomize): Don't open files called 'no', they
6957         signal that configure disabled the device.
6958
6959 2006-03-08  Simon Josefsson  <jas@extundo.com>
6960
6961         * build-aux/maint.mk: Fix refresh-po, to handle no translated
6962         languages.
6963
6964 2006-03-07  Simon Josefsson  <jas@extundo.com>
6965
6966         * modules/getopt (Depends-on): Add unistd.
6967
6968         * modules/unistd: New file.
6969
6970 2006-03-07  Simon Josefsson  <jas@extundo.com>
6971
6972         * modules/gc-random: New file.
6973
6974 2006-03-07  Simon Josefsson  <jas@extundo.com>
6975
6976         * m4/unistd_h.m4: New file.
6977
6978 2006-03-07  Simon Josefsson  <jas@extundo.com>
6979
6980         * m4/readline.m4 (gl_FUNC_READLINE): Rewrite the cached part of the
6981         test to be side-effect free by storing the result in the cache
6982         variable gl_cv_lib_readline, and moving the assignment of
6983         LIBREADLINE and LTLIBREADLINE outside the COMMANDS-TO-SET-IT.
6984         From Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
6985
6986 2006-03-07  Simon Josefsson  <jas@extundo.com>
6987
6988         * m4/gc-random.m4: New file, mostly from gc.m4.  Warn instead of
6989         error on missing devices (the functions will return an error).
6990
6991         * m4/gc.m4: Move random stuff to gc-random.m4
6992
6993 2006-03-07  Simon Josefsson  <jas@extundo.com>
6994
6995         * lib/unistd_.h: New file.
6996
6997 2006-03-07  Simon Josefsson  <jas@extundo.com>
6998
6999         * lib/gc-libgcrypt.c, gc-gnulib.c: Use GC_USE_RANDOM.
7000
7001 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
7002
7003         * m4/unistd_h.m4 (gl_HEADER_UNISTD): Rename, to match modules file.
7004         Problem reported by Juan Manuel Guerrero.
7005
7006 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
7007
7008         * lib/c-stack.c: Include unistd.h unconditionally, since we now assume
7009         the unistd module.
7010         * lib/getlogin_r.c: Likewise.
7011         * lib/getlogin_r.h: Likewise.
7012         * lib/glob.c: Likewise.
7013         * lib/pagealign_alloc.c: Likewise.
7014         * lib/unistd_.h: Remove; no longer needed.
7015
7016 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
7017
7018         * MODULES.html.sh (Support for systems lacking POSIX:2001):
7019         Add unistd.
7020         * modules/c-stack (Depends-on): Add unistd.
7021         * modules/getlogin_r: Likewise.
7022         * modules/glob: Likewise.
7023         * modules/pagealign_alloc: Likewise.
7024         * modules/unistd (Files): Remove lib/unistd_.h.
7025         (EXTRA_DIST): Remove.
7026         (unistd.h): Create using 'echo' rather than 'cp', so that we don't
7027         need unistd_.h.
7028         (MOSTLYCLEANFILES): Remove unistd.h-t.
7029
7030 2006-03-03  Simon Josefsson  <jas@extundo.com>
7031
7032         * build-aux/maint.mk: Add several syntax checks from CoreUtils.
7033
7034 2006-03-03  Simon Josefsson  <jas@extundo.com>
7035
7036         * build-aux/maint.mk: Add refresh-po rule, based on ideas from
7037         libidn and bison.
7038
7039 2006-03-03  Simon Josefsson  <jas@extundo.com>
7040
7041         * build-aux/maint.mk: Add indent target.
7042
7043 2006-03-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de> (tiny change)
7044
7045         * m4/poll.m4 (gl_FUNC_POLL): If we deem poll(2) unacceptable, use
7046         our replacement poll.h in any case, to avoid a differing
7047         declaration from a system header.  Seen on AIX.
7048
7049 2006-03-01  Simon Josefsson  <jas@extundo.com>
7050
7051         * lib/readline.c: Fix typo, tiny patch from Stepan Kasal
7052         <kasal@ucw.cz>.
7053
7054 2006-03-01  Paul Eggert  <eggert@cs.ucla.edu>
7055
7056         * modules/gettime (Depends-on): Add extensions module.
7057         * modules/nanosleep (Depends-on): Likewise.
7058         * modules/settime (Depends-on): Likewise.
7059
7060 2006-03-01  Paul Eggert  <eggert@cs.ucla.edu>
7061
7062         * m4/clock_time.m4 (gl_CLOCK_TIME): Require gl_USE_SYSTEM_EXTENSIONS,
7063         not merely AC_GNU_SOURCE, for the benefit of Solaris 10 when compiled
7064         pedantically.
7065         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
7066         * m4/timespec.m4 (gl_TIMESPEC): Likewise.
7067
7068         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Use "=" with "test",
7069         not "==".  Reported by Ralf Wildenhues.
7070
7071 2006-03-01  Karl Berry  <karl@gnu.org>
7072
7073         * doc/Copyright/request-*: new files, synced from gnuorg.
7074
7075 2006-03-01  Karl Berry  <karl@gnu.org>
7076
7077         * config/srclist.txt (Copyright/*): new entries.
7078
7079 2006-02-28  Simon Josefsson  <jas@extundo.com>
7080
7081         * lib/getopt.c: Protect #include of unistd.h, for MSVS.
7082
7083 2006-02-27  Simon Josefsson  <jas@extundo.com>
7084
7085         * lib/base64.h: Indent #define's.  From Jim Meyering
7086         <jim@meyering.net>.
7087
7088 2006-02-27  Jim Meyering  <jim@meyering.net>
7089
7090         Revert the change of 2006-02-24, so these files can continue
7091         to be sync'd from gettext.
7092         * lib/mkdtemp.c, setenv.c, unsetenv.c: *Un*-normalize inclusion
7093         of `config.h'.
7094
7095 2006-02-26  Paul Eggert  <eggert@cs.ucla.edu>
7096
7097         * modules/intprops: New file.
7098         * MODULES.html.sh (Numeric conversion functions <stdlib.h>):
7099         Add intprops.
7100         * modules/getloadavg (Files): Remove lib/intprops.h.
7101         (Depends-on): Add intprops.
7102         * modules/human: Likewise.
7103         * modules/inttostr: Likewise.
7104         * modules/openat: Likewise.
7105         * modules/sig2str: Likewise.
7106         * modules/userspec: Likewise.
7107         * modules/utimecmp: Likewise.
7108         * modules/xnanosleep: Likewise.
7109         * modules/xstrtol: Likewise.
7110
7111 2006-02-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny changes)
7112
7113         * modules/xstrtod: Omit xstrtod.h, xstrtod.c; they're in LIB_SOURCES.
7114         * modules/lock-tests (TESTS): Use $(EXEEXT).
7115         * modules/tls-tests: Likewise.
7116         * modules/argp-tests: Likewise.
7117         (check_PROGRAMS): New var, replacing...
7118         (noinst_PROGRAMS, test_argp_SOURCES): Remove.
7119
7120 2006-02-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7121
7122         * lib/mkdtemp.c, lib/setenv.c, lib/unsetenv.c: Normalize inclusion of
7123         `config.h'.
7124
7125 2006-02-24  Paul Eggert  <eggert@cs.ucla.edu>
7126
7127         * lib/glob.c: Say "invalid" rather than "illegal" in comments.
7128
7129 2006-02-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7130
7131         Sync from coreutils.
7132         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Require gl_FUNC_LCHMOD and
7133         gl_CHDIR_SAFER.
7134
7135 2006-02-22  Jim Meyering  <jim@meyering.net>
7136
7137         Sync from coreutils.
7138         * m4/chdir-safer.m4: New file.
7139
7140 2006-02-20  Paul Eggert  <eggert@cs.ucla.edu>
7141
7142         * lib/getcwd.c (AT_FDCWD): Work around a bug in Solaris 9 and 10, where
7143         AT_FDCWD exceeds INT_MAX.
7144         * lib/openat.h (AT_FDCWD): Likewise.
7145
7146 2006-02-17  Eric Blake  <address@hidden>
7147
7148         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Fix caching error.
7149
7150 2006-02-16  Simon Josefsson  <jas@extundo.com>
7151
7152         * modules/getaddrinfo (Depends-on): Add sys_socket.
7153
7154 2006-02-15  Simon Josefsson  <jas@extundo.com>
7155
7156         * build-aux/maint.mk: Add dsyntax-check rule.
7157
7158 2006-02-15  Eric Blake  <ebb9@byu.net>
7159
7160         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Don't attempt using
7161         winsock2.h or ws2tcpip.h when sys/socket.h is present. Fixes
7162         'present but cannot compile' warnings on cygwin.
7163         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Use gl_HEADER_SYS_SOCKET.  Don't
7164         use ws2tcpip.h if sys/socket.h works.
7165         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Use gl_HEADER_SYS_SOCKET.
7166         (gl_GETADDRINFO): Don't use ws2tcpip.h when sys/socket.h is present.
7167
7168 2006-02-14  Simon Josefsson  <jas@extundo.com>
7169
7170         * modules/maintainer-makefile (Files): Rename.
7171
7172         * build-aux/GNUmakefile: Rename Makefile.maint to maint.mk
7173         and (the local) Makefile.cfg to maint-cfg.mk.
7174
7175         * build-aux/Makefile.maint, build-aux/maint.mk: Renamed the former
7176         to the latter.
7177
7178         * modules/maintainer-makefile: New module.
7179
7180         * build-aux/Makefile.maint: New file, from GNU CoreUtils, although
7181         severaly stripped to make it possible to build it up from scratch
7182         with reliable tests.
7183
7184         * build-aux/GNUmakefile: New file, from GNU CoreUtils with some
7185         fixes to permit overriding the default actions when configure and
7186         makefile are not available.
7187
7188 2006-02-14  Paul Eggert  <eggert@cs.ucla.edu>
7189
7190         Sync from coreutils.
7191         * modules/lstat (Depends-on): Don't depend on xalloc.
7192         (License): Change from GPL to LGPL, since this is now simply a
7193         replacement for a libc function.
7194
7195 2006-02-14  Jim Meyering  <jim@meyering.net>
7196
7197         Sync from coreutils.
7198
7199         Eliminate the unwelcome (albeit unlikely) possibility of xmalloc
7200         failure on deficient systems, and simplify gnulib lgpl dependencies.
7201         * lib/lstat.c (rpl_lstat): Rewrite to use stat() in place of the
7202         xmalloc/lstat combination.  Based on a patch from Bruno Haible.
7203
7204         * lib/xalloc-die.c: Remove unused definition of N_.
7205
7206 2006-02-14  Jim Meyering  <jim@meyering.net>
7207
7208         Sync from coreutils.
7209         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Invoke
7210         AC_CHECK_FUNCS(getmntent) unconditionally so that tests of
7211         $ac_cv_func_getmntent (e.g., in gl_LIST_MOUNTED_FILE_SYSTEMS) need not
7212         double-quote uses of that variable, to accommodate the rare case in
7213         which getmntent is available in none of the libraries checked.  This
7214         happens at least on FreeBSD 5.0.
7215
7216 2006-02-13  Simon Josefsson  <jas@extundo.com>
7217
7218         * gnulib-tool (Usage): Fix --import, from
7219         karl@freefriends.org (Karl Berry).
7220
7221 2006-02-13  Sergey Poznyakoff  <gray@gnu.org.ua>
7222
7223         * lib/argp-fmtstream.c: Restore another bugfix lost on 2005-12-12
7224
7225 2006-02-07  Sergey Poznyakoff  <gray@gnu.org.ua>
7226
7227         * lib/argp-namefrob.h: Restore changes accidentally lost during the
7228         "autoupdate" on 2005-12-12.
7229
7230 2006-02-07  Paul Eggert  <eggert@cs.ucla.edu>
7231
7232         * modules/closeout (Depends-on): Remove atexit.
7233
7234 2006-02-07  Paul Eggert  <eggert@cs.ucla.edu>
7235
7236         * lib/closeout.c (close_stdout): Don't assume 'bool' converts nonzero
7237         ints to 0 or 1, as this isn't true for the stdbool.h substitute.
7238
7239 2006-02-05  Paul Eggert  <eggert@cs.ucla.edu>
7240
7241         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Don't #define
7242         __EXTENSIONS__ if this causes compilation to fail.  Problem
7243         reported by Nelson H. F. Beebe with Solaris 10 and Sun C 5.7
7244         c89 -D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED.
7245
7246 2006-01-27  Paul Eggert  <eggert@cs.ucla.edu>
7247
7248         * lib/fnmatch.c (L_): Renamed from L, to work around a bug in
7249         Mac OS X 10.3.9 with GCC 3 reported by Claudio Fontana in
7250         <http://lists.gnu.org/archive/html/bug-gnulib/2006-01/msg00074.html>.
7251         All uses changed.
7252
7253 2006-01-26  Simon Josefsson  <jas@extundo.com>
7254
7255         * lib/socket_.h: Set WINVER to 0x0501, to make sure getaddrinfo
7256         prototype is visible on mingw32.
7257
7258         * lib/getaddrinfo.h: Define EAI_ADDRFAMILY and EAI_SYSTEM if not set,
7259         for mingw32.
7260
7261         * lib/gai_strerror.c, getaddrinfo.h: Protect netdb.h #include (for
7262         mingw32).
7263
7264 2006-01-26  Paul Eggert  <eggert@cs.ucla.edu>
7265
7266         * lib/fts.c (diropen): Open with O_NOCTTY | O_NONBLOCK too.  Don't
7267         attempt to open for write; this always fails, at least on POSIX
7268         hosts.  This reinstates the 2006-01-09 change, which was
7269         inadvertently removed.
7270
7271 2006-01-26  Bruno Haible  <bruno@clisp.org>
7272
7273         * gnulib-tool (func_import): Use "trap 'exit $?' instead of "trap :".
7274         Reported by Paul Eggert.
7275
7276 2006-01-26  Bruno Haible  <bruno@clisp.org>
7277             Paul Eggert  <eggert@cs.ucla.edu>
7278
7279         * lib/stdbool_.h (_Bool)
7280         [(! (defined __cplusplus || defined __BEOS__)
7281           && !defined __GNUC__
7282           && !(defined __HP_cc || defined __xlc__
7283                || (defined __SUNPRO_C && (__SUNPRO_C < 0x550 || __STDC__ == 1))
7284                || defined __sgi))]:
7285         #define to signed char in these cases too; this simplifies
7286         the code (so that we don't have to worry about HP-UX, AIX, SunPRO,
7287         etc., separately) and makes it more conservative.
7288
7289 2006-01-25  Simon Josefsson  <jas@extundo.com>
7290
7291         * m4/getaddrinfo.m4: Look for getaddrinfo inside ws2tcip.h and
7292         -lws2_32.  Protect sys/socket.h and netdb.h #include's.  Include
7293         ws2tcpip.h with WINVER=0x0501.  All for mingw32.
7294
7295 2006-01-25  Sergey Poznyakoff  <gray@gnu.org.ua>
7296
7297         * lib/argp-namefrob.h: Bugfix. Remove stray #
7298
7299 2006-01-25  Paul Eggert  <eggert@cs.ucla.edu>
7300
7301         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check for xlc bug if __GCC__ too,
7302         so that we test the test.
7303         Check for yet another HP-UX cc bug involving *bool |= bool.
7304
7305 2006-01-25  Karl Berry  <karl@gnu.org>
7306
7307         * config/srclist.txt (vasnprintf.c): sync lost.
7308
7309 2006-01-25  Jim Meyering  <jim@meyering.net>
7310
7311         Sync from the stable (b5) branch of coreutils:
7312
7313         * lib/fts.c (fts_children): Don't let close() clobber errno from
7314         failed fchdir().
7315
7316         * lib/fts.c (fts_stat): When following a symlink-to-directory,
7317         don't necessarily interpret stat-fails+lstat-succeeds as indicating
7318         a dangling symlink.  That can also happen at least for ELOOP.
7319         The fix: return FTS_SLNONE only when the stat errno is ENOENT.
7320         FYI, this bug predates the inclusion of fts.c in coreutils.
7321
7322         * lib/fts.c (fts_open): Put new maxarglen declaration and uses
7323         in their own block, so pre-c99 compilers don't object.
7324
7325         Avoid the double-free (first in fts_read, second in fts_close) that
7326         would occur when an `active' directory is made inaccessible (e.g.,
7327         via chmod a-x) during a traversal.
7328         * lib/fts.c (fts_read): After a failed fchdir, update sp->fts_cur
7329         before returning.  Reproduce this failure by
7330         mkdir -p a/b; cd a; chmod a-x . b
7331         Reported by Stavros Passas.
7332
7333 2006-01-25  Jim Meyering  <jim@meyering.net>
7334
7335         * lib/fileblocks.c: Remove more useless parentheses.
7336         * lib/readutmp.h: Likewise.
7337
7338 2006-01-25  Bruno Haible  <bruno@clisp.org>
7339
7340         * lib/stdbool_.h (_Bool) [IRIX cc]: Define as 'signed char', to avoid
7341         warnings.
7342         Reported by Paul Eggert.
7343
7344 2006-01-25  Bruno Haible  <bruno@clisp.org>
7345
7346         * gnulib-tool (func_import): Use "trap :" instead of "trap -" to get
7347         rid of a trap command. For Solaris sh.
7348         Reported by Mark D. Baushke <mdb@gnu.org>.
7349
7350 2006-01-24  Simon Josefsson  <jas@extundo.com>
7351
7352         * lib/socket_.h (SHUT_WR, SHUT_RDWR): Don't hardcode, suggested by
7353         Bruno.
7354
7355 2006-01-24  Karl Berry  <karl@gnu.org>
7356
7357         * config/srclist.txt (argp-namefrob.h): sync lost.
7358
7359 2006-01-24  Jim Meyering  <jim@meyering.net>
7360
7361         * modules/openat (Files): Add lib/intprops.h.
7362         From Mark D. Baushke.
7363
7364 2006-01-24  Jim Meyering  <jim@meyering.net>
7365
7366         * m4/openat.m4 (gl_FUNC_OPENAT): Add AC_LIBSOURCES([intprops.h]).
7367         Reported by Mark D. Baushke.
7368
7369 2006-01-24  Jim Meyering  <jim@meyering.net>
7370
7371         * lib/socket_.h: Remove useless parentheses in uses of cpp `defined'.
7372
7373 2006-01-24  Bruno Haible  <bruno@clisp.org>
7374
7375         * modules/strnlen (Maintainer): Change from glibc to all.
7376
7377 2006-01-24  Bruno Haible  <bruno@clisp.org>
7378
7379         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check for IBM and HP-UX bugs.
7380         Patch by Paul Eggert.
7381
7382 2006-01-24  Bruno Haible  <bruno@clisp.org>
7383
7384         * lib/stdbool_.h (_Bool) [__cplusplus]: Don't define if the compiler
7385         already has it.
7386         Report and patch by Albert Chin-A-Young  <china@thewrittenword.com> on
7387         2005-11-26.
7388
7389         * lib/stdbool_.h (_Bool) [HP-UX cc, AIX cc,xlc]: Define as
7390         'signed char' to avoid problems with the built-in _Bool type.
7391         Reported by Paul Eggert on 2005-11-26.
7392
7393 2006-01-24  Bruno Haible  <bruno@clisp.org>
7394
7395         * gnulib-tool (func_import): Avoid constructing complicated sed
7396         expressions inside backquote.
7397         Report and solution by Mark D. Baushke <mdb@gnu.org>.
7398
7399 2006-01-23  Ulrich Drepper  <drepper@redhat.com>
7400
7401         These changes imported from libc.
7402         * lib/getopt.c: Use __fxprintf instead of inline stream orientation
7403         test and two separate function calls.
7404         * lib/strndup.c (__strndup): Add libc_hidden_def.
7405
7406 2006-01-23  Simon Josefsson  <jas@extundo.com>
7407
7408         * modules/lock-tests: Use check_PROGRAMS instead of noinst_PROGRAMS.
7409         Remove the test_*_SOURCES variable: automake infers it by default.
7410         * modules/tls-tests: Likewise.
7411
7412 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
7413
7414         Work around porting bugs reported by Dieter in
7415         <http://lists.gnu.org/archive/html/bug-bison/2006-01/msg00049.html>.
7416         * lib/getopt.c (_NOPROTO): Remove; no longer needed.
7417         Include <stdlib.h> and <unistd.h> in all environments; it's safe now.
7418         Include "getopt.h" first, to check interface.
7419         (getenv): Declare only if defined HAVE_DECL_GETENV &&
7420         !HAVE_DECL_GETENV.
7421         * lib/strndup.c [!_LIBC]: Include "strndup.h" to get prototype.
7422         (__strndup): Revert to K&R-style function dfns, the glibc style.
7423         * lib/strnlen.c: Don't claim it's taken from glibc; it's not.
7424         (strnlen, __strnlen): Remove #defines and #undefs; not needed.
7425         Include strnlen.h first, to get prototype properly.
7426         (strnlen): Renamed from __strnlen.
7427         Remove weak alias.
7428
7429 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
7430
7431         * m4/getopt.m4 (gl_PREREQ_GETOPT): Check for getenv decl.
7432
7433 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
7434
7435         * config/srclist.txt: Adjust to reflect glibc reorganization.
7436         This affects only comments.
7437
7438 2006-01-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
7439
7440          * gnulib-tool, build-aux/csharpcomp.sh.in: Do not pass `-q' to mktemp.
7441          Reported by Bruce Korb <bkorb@gnu.org>.
7442
7443 2006-01-22  Paul Eggert  <eggert@cs.ucla.edu>
7444
7445         * lib/quotearg.c (quotearg_buffer_restyled): Add "default: break;"
7446         to pacify gcc -Wswitch-default.
7447
7448 2006-01-22  Bruno Haible  <bruno@clisp.org>
7449
7450         * lib/vasnprintf.c (VASNPRINTF): In the computation of the size of the
7451         temporary buffer for sprintf, take into account the precision also
7452         for 'd', 'i', 'u', 'o', 'x', 'X'.
7453
7454 2006-01-21  Sergey Poznyakoff  <gray@gnu.org.ua>
7455
7456         * modules/argp-tests: New module
7457         * tests/test-argp.c: New file
7458         * tests/test-argp-2.sh: New file
7459
7460 2006-01-21  Sergey Poznyakoff  <gray@gnu.org.ua>
7461
7462         * lib/argp-help.c (usage_long_opt): Do not print DOC options.
7463         (__argp_base_name): Removed
7464         * lib/argp-namefrob.h (__argp_basename): Removed definition. Was a
7465         typo.
7466         (__argp_base_name): Provide macro definition or extern declaration
7467         depending on the configuration
7468
7469 2006-01-20  Simon Josefsson  <jas@extundo.com>
7470
7471         * modules/inet_ntop (Depends-on): Depend on sys_socket.
7472
7473 2006-01-20  Simon Josefsson  <jas@extundo.com>
7474
7475         * lib/inet_ntop.h: Unconditionally include sys/socket.h.
7476
7477 2006-01-20  Paul Eggert  <eggert@cs.ucla.edu>
7478
7479         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Use -Wl,-z,ignore
7480         rather than -Xlinker -z -Xlinker ignore, as it's more portable.
7481         Suggested by Bruno Haible.
7482
7483 2006-01-20  Karl Berry  <karl@gnu.org>
7484
7485         * config/srclist.txt (argp-fmtstream.h, localcharset.c): comment out
7486         until changes propagate, I guess.
7487
7488 2006-01-19  Simon Josefsson  <jas@extundo.com>
7489
7490         * m4/socklen.m4: Look in ws2tcpip.h too, for mingw32.
7491
7492 2006-01-19  Simon Josefsson  <jas@extundo.com>
7493
7494         * lib/socket_.h: Map SHUT_RD, SHUT_WR, SHUT_RDWR correctly.
7495
7496 2006-01-19  Simon Josefsson  <jas@extundo.com>
7497
7498         * gnulib-tool: Set check_PROGRAMS.
7499
7500         * modules/arcfour-tests, modules/arctwo-tests, modules/crc-tests,
7501         modules/des-tests, modules/gc-arcfour-tests,
7502         modules/gc-arctwo-tests, modules/gc-des-tests,
7503         modules/gc-hmac-md5-tests, modules/gc-hmac-sha1-tests,
7504         modules/gc-md2-tests, modules/gc-md4-tests, modules/gc-md5-tests,
7505         modules/gc-pbkdf2-sha1-tests, modules/gc-rijndael-tests,
7506         modules/gc-sha1-tests, modules/gc-tests, modules/hmac-md5-tests,
7507         modules/hmac-sha1-tests, modules/md2-tests, modules/md4-tests,
7508         modules/md5-tests, modules/readline, modules/rijndael-tests: Use
7509         check_PROGRAMS instead of noinst_PROGRAMS to be able to remove
7510         test_*_SOURCES.
7511
7512 2006-01-18  Simon Josefsson  <jas@extundo.com>
7513
7514         * modules/socklen (Depends-on): Depend on sys_socket.
7515
7516 2006-01-18  Simon Josefsson  <jas@extundo.com>
7517
7518         * modules/arcfour-tests, modules/arctwo-tests, modules/crc-tests,
7519         modules/des-tests, modules/gc-arcfour-tests,
7520         modules/gc-arctwo-tests, modules/gc-des-tests,
7521         modules/gc-hmac-md5-tests, modules/gc-hmac-sha1-tests,
7522         modules/gc-md2-tests, modules/gc-md4-tests, modules/gc-md5-tests,
7523         modules/gc-pbkdf2-sha1-tests, modules/gc-rijndael-tests,
7524         modules/gc-sha1-tests, modules/gc-tests, modules/hmac-md5-tests,
7525         modules/hmac-sha1-tests, modules/md2-tests, modules/md4-tests,
7526         modules/md5-tests, modules/readline, modules/rijndael-tests: Add
7527         $(EXEEXT) to automake TESTS variable, for mingw32.
7528
7529 2006-01-17  Simon Josefsson  <jas@extundo.com>
7530
7531         * modules/socklen (Include): Need sys/socket.h.
7532
7533 2006-01-17  Bruno Haible  <bruno@clisp.org>
7534
7535         * modules/ssize_t (Include): Add <sys/types.h>.
7536
7537 2006-01-16  Paul Eggert  <eggert@cs.ucla.edu>
7538
7539         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Don't use ldd, as
7540         it's not portable and it doesn't work with cross-compiles.
7541         Problem reported by Bruno Haible.  Fix missing-$ typo in
7542         'test "gl_cv_ignore_unused_libraries" ...' that prevented
7543         -zignore from being used with Sun's C compiler.
7544
7545 2006-01-12  Simon Josefsson  <jas@extundo.com>
7546
7547         * lib/base64.c: Fix warning, reported by Bruno Haible
7548         <bruno@clisp.org> and patch by Paul Eggert <eggert@CS.UCLA.EDU>.
7549
7550 2006-01-12  Bruno Haible  <bruno@clisp.org>
7551
7552         * modules/ldd: New file.
7553         * build-aux/ldd.sh.in: New file.
7554         * MODULES.html.sh (Support for building libraries and executables): Add
7555         ldd.
7556
7557 2006-01-12  Bruno Haible  <bruno@clisp.org>
7558
7559         * m4/ldd.m4: New file.
7560
7561 2006-01-12  Bruno Haible  <bruno@clisp.org>
7562
7563         * gnulib-tool (func_import, func_create_testdir): Don't go into an
7564         endless loop while replacing $auxdir with build-aux.
7565
7566 2006-01-11  Simon Josefsson  <jas@extundo.com>
7567
7568         * lib/stdint_.h (SIZE_MAX): Add missing (.
7569
7570 2006-01-11  Paul Eggert  <eggert@cs.ucla.edu>
7571
7572         Sync from coreutils.
7573         * lib/md5.c: Fix commentary typos.
7574         (alignof, UNALIGNED_P): No need for a GCC-specific version.
7575         * lib/md5.h (__attribute__): Remove; unused.
7576         * lib/sha1.c: Fix commentary to match md5 better.
7577         * lib/sha1.h (struct sha1_ctx): Use a word buffer, not a byte buffer,
7578         so that we don't need to worry about alignment.  All uses changed.
7579         This merges the 2005-10-28 md5 change into sha1.
7580
7581 2006-01-11  Jim Meyering  <jim@meyering.net>
7582
7583         Sync from coreutils.
7584         * lib/md5.c (OP): Fix spacing.
7585
7586 2006-01-11  Bruno Haible  <bruno@clisp.org>
7587
7588         Ensure automatic ordering between gl_LOCK and gl_ARGP.
7589         * m4/lock.m4 (gl_LOCK_BODY): Renamed from gl_LOCK.
7590         (gl_LOCK): New macro, requiring gl_LOCK_BODY.
7591
7592 2006-01-11  Bruno Haible  <bruno@clisp.org>
7593
7594         Ensure automatic ordering between gl_LOCK and gl_ARGP.
7595         * gnulib-tool (func_import, func_create_testdir): Put gl_LOCK into
7596         the "early" section as well.
7597
7598 2006-01-11  Bruno Haible  <bruno@clisp.org>
7599
7600         Avoid "ar: no archive members specified" error on MacOS X.
7601         * gnulib-tool (func_modules_add_dummy): New function.
7602         (func_import, func_create_testdir): Invoke it.
7603
7604 2006-01-11  Bruno Haible  <bruno@clisp.org>
7605
7606         * gnulib-tool (func_import, func_create_testdir): Replace build-aux
7607         with $auxdir in AC_CONFIG_FILES statements.
7608
7609 2006-01-11  Bruno Haible  <bruno@clisp.org>
7610
7611         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
7612         Initialize also noinst_HEADERS to empty.
7613
7614 2006-01-11  Bruno Haible  <bruno@clisp.org>
7615
7616         * gnulib-tool (AUTOMAKEPATH, AUTOCONF, ACLOCAL, AUTOMAKE): New
7617         variables.
7618         (func_create_megatestdir): Call aclocal, autoconf, automake here, not
7619         autoreconf.
7620
7621 2006-01-11  Bruno Haible  <bruno@clisp.org>
7622
7623         * gnulib-tool (AUTOCONF, ACLOCAL, AUTOMAKE, AUTORECONF): Make
7624         overridable by the user.
7625         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
7626
7627 2006-01-10  Simon Josefsson  <jas@extundo.com>
7628
7629         * modules/sys_socket: New file.
7630
7631 2006-01-10  Simon Josefsson  <jas@extundo.com>
7632
7633         * m4/sys_socket_h.m4: New file.
7634
7635 2006-01-10  Simon Josefsson  <jas@extundo.com>
7636
7637         * lib/socket_.h: New file.
7638
7639 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
7640
7641         * modules/readutmp (Maintainer): Add myself.
7642
7643 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
7644
7645         * m4/memcoll.m4 (gl_MEMCOLL): Don't require AC_FUNC_MEMCMP, undoing
7646         the 2002-12-31 change.  Problem and fix reported by Bruno Haible.
7647         People who are still concerned with buggy memcmp implementations
7648         can invoke gl_FUNC_MEMCMP themselves.
7649
7650 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
7651
7652         * lib/regex_internal.h (BITSET_WORD_BITS):
7653         Work around a bug in 64-bit PGC (before version 6.1-2), where the
7654         preprocessor mishandles large unsigned values as if they were signed.
7655         Problem reported by Claudio Fontana in
7656         <http://lists.gnu.org/archive/html/bug-gnulib/2005-12/msg00061.html>.
7657
7658 2006-01-10  Jim Meyering  <jim@meyering.net>
7659
7660         Avoid the double-free (first in fts_read, second in fts_close) that
7661         would occur when an `active' directory is made inaccessible (e.g.,
7662         via chmod a-x) during a traversal.
7663         * lib/fts.c (fts_read): After a failed fchdir, update sp->fts_cur
7664         before returning.  Reproduce this failure by
7665         mkdir -p a/b; cd a; chmod a-x . b
7666         Reported by Stavros Passas.
7667
7668         Sync from coreutils.
7669         * lib/sha1.c: Tweak grammar in a comment.
7670
7671 2006-01-10  Jim Meyering  <jim@meyering.net>
7672
7673         * m4/fpending.m4: Also include <stdio.h>, for Dragonfly.
7674         Patch by Joerg Sonnenberger.
7675
7676 2006-01-10  Bruno Haible  <bruno@clisp.org>
7677
7678         * modules/readutmp: Depend on module free.
7679         * modules/strtok_r: Depend on module restrict.
7680
7681 2006-01-10  Bruno Haible  <bruno@clisp.org>
7682
7683         * modules/gettext (configure.ac): Add an invocation of
7684         AM_GNU_GETTEXT_VERSION. Needed since autoreconf is used by gnulib-tool.
7685
7686 2006-01-10  Bruno Haible  <bruno@clisp.org>
7687
7688         * m4/localcharset.m4 (gl_LOCALCHARSET): Also test for getc_unlocked.
7689         Reported by Werner Lemberg <wl@gnu.org>.
7690
7691 2006-01-10  Bruno Haible  <bruno@clisp.org>
7692
7693         * lib/localcharset.c: Update from GNU gettext.
7694
7695 2006-01-10  Bruno Haible  <bruno@clisp.org>
7696
7697         * lib/argp.h (__const): Remove macro. Use const instead.
7698         * lib/argp-fmtstream.h (__const): Likewise.
7699         * lib/glob_.h (__const): Remove macro.
7700         * lib/glob-libc.h: Use const instead of __const.
7701
7702 2006-01-10  Bruno Haible  <bruno@clisp.org>
7703
7704         * gnulib-tool (func_emit_tests_Makefile_am): Emit an empty SUBDIR
7705         variable.
7706         Needed to avoid an automake error regarding the 'gettext' module.
7707
7708 2006-01-09  Simon Josefsson  <jas@extundo.com>
7709
7710         * modules/inet_ntop (Depends-on): Add restrict.
7711
7712 2006-01-09  Simon Josefsson  <jas@extundo.com>
7713
7714         * modules/gc-rijndael-tests (License): Put under LGPL.
7715
7716         * modules/gc-des-tests (License): Likewise.
7717
7718         * modules/gc-arcfour-tests (License): Likewise.
7719
7720         * modules/gc-arctwo-tests (License): Likewise.
7721
7722         * modules/gc-pbkdf2-sha1-tests (License): Likewise.
7723
7724         * modules/gc-hmac-sha1-tests (Files): Likewise.
7725
7726         * modules/gc-hmac-md5-tests (License): Likewise.
7727
7728         * modules/gc-sha1-tests (License): Likewise.
7729
7730         * modules/gc-md5-tests (License): Likewise.
7731
7732         * modules/gc-md4-tests (License): Likewise.
7733
7734         * modules/gc-md2-tests (License): Likewise.
7735
7736         * modules/gc-tests (License): Likewise.
7737
7738         * modules/des-tests (License): Likewise.
7739
7740         * modules/md4-tests (License): Likewise.
7741
7742         * modules/md2-tests (License): Likewise.
7743
7744 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
7745
7746         Sync from coreutils:
7747
7748         * MODULES.html.sh (build_lib): New section, with new lib-ignore module.
7749         * modules/lib-ignore: New file.
7750         * modules/mkdir-p (Files): Add chdir-safer.c, chdir-safer.h, lchmod.h,
7751         chdir-safer.m4, lchmod.m4.
7752         * modules/openat: Add mkdirat.c, openat-priv.h.
7753
7754 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
7755
7756         Sync from coreutils.
7757         * m4/lib-ignore.m4: New file.
7758         * m4/lchmod.m4: New file.
7759
7760 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
7761
7762         Sync from coreutils.
7763         * lib/chdir-long.c (cdb_free): Don't bother trying to open directory
7764         for write access: POSIX says that must fail.
7765         * lib/fts.c (diropen): Likewise.
7766         * lib/save-cwd.c (save_cwd): Likewise.
7767         * lib/chdir-long.c (cdb_free): Open with O_NOCTTY | O_NONBLOCK as
7768         well, for minor improvements on hosts that lack O_DIRECTORY.
7769         * lib/chown.c (rpl_chown) [CHOWN_MODIFIES_SYMLINK]:
7770         Don't try O_WRONLY unless O_RDONLY failed wth EACCES.
7771         Fall back on chown if open failed with EACCES.
7772
7773         * lib/gettime.c (gettime) [!defined OK_TO_USE_1S_CLOCK]:
7774         Report an error at compile-time if only a 1-second nominal clock
7775         resolution is found.
7776
7777         * lib/lchmod.h: New file.
7778         * lib/mkdir-p.c: Include lchmod.h, lchown.h.
7779         (make_dir_parents): Use lchown rather than chown, and
7780         lchmod rather than chmod.
7781
7782         * lib/mountlist.c (ME_DUMMY): "none" and "proc" file systems are
7783         dummies too.  Problem with "none" reported by Bob Proulx.  Problem with
7784         "proc" reported by n0dalus.
7785
7786         * lib/mountlist.c: Include <limits.h>.
7787         (dev_from_mount_options)
7788         [defined MOUNTED_GETMNTENT1 || defined MOUNTED_GETMNTENT2]:
7789         New function.  It no longer assumes "dev=" has the System V meaning
7790         on Linux (since it doesn't).  It also parses "dev=" more carefully.
7791         (read_file_system_list)
7792         [defined MOUNTED_GETMNTENT1 || defined MOUNTED_GETMNTENT2]: Use it.
7793         MOUNTED_GETMNTENT2 is new here; the code didn't used to look for
7794         dev= in that case.
7795
7796         * lib/posixtm.h (PDS_PRE_2000): New macro.
7797         * lib/posixtm.c (year): Arg is now syntax_bits rather than
7798         allow_century.  All usages changed.  Reject dates outside the range
7799         1969-1999 if PDS_PRE_2000 is used.
7800
7801 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
7802
7803         Sync from coreutils.
7804         * doc/getdate.texi (General date syntax): Invalid dates are rejected.
7805         (Time of day items): Mention the possibility of leap seconds.
7806         Problem reported by Dr. David Alan Gilbert.
7807
7808 2006-01-09  Jim Meyering  <jim@meyering.net>
7809
7810         Sync from coreutils.
7811
7812         * lib/version-etc.c (COPYRIGHT_YEAR): Update to 2006.
7813
7814         * lib/chdir-safer.h, lib/chdir-safer.c: New files.
7815
7816         * lib/modechange.c (mode_compile): Reject an invalid mode string
7817         that starts with an octal digit.  From Andreas Gruenbacher.
7818
7819         * lib/openat.c: Include "fcntl--.h" and "unistd--.h", to map open
7820         and dup to open_safer and dup_safer, respectively.
7821         (openat_permissive): Fix typo in comment.
7822
7823         * lib/openat.c: Don't include <stdlib.h>, <unistd.h>, <fcntl.h>,
7824         "gettext.h"; either no longer needed or are guaranteed by openat.h.
7825         (_): Remove; no longer needed.
7826         (openat): Renamed from rpl_openat; no need for rpl_openat
7827         since openat.h renames openat for us.
7828         Replace most of the body with a call to openat_permissive,
7829         to avoid duplicate code.
7830         Port to (probably hypothetical) environments were mode_t is
7831         wider than int.
7832         (openat_permissive): Require mode arg, so that we can check
7833         types better.  Put it just after flags.  Change cwd failure
7834         indicator from pointer-to-bool to pointer-to-errno-value.
7835         All callers changed.
7836         Invoke openat_save_fail and/or openat_restore_fail if
7837         cwd_errno is null, so that openat can call us.
7838         (openat_permissive, fdopendir, fstatat, unlinkat):
7839         Simplify errno handling to avoid some duplicate code,
7840         as it's OK to set errno on success.
7841         * lib/openat.h: Revamp code so that function macros depend on
7842         __OPENAT_PREFIX only, not also on AT_FDCWD.
7843         (openat_ro): Remove.  Caller changed to use openat_permissive.
7844         (openat_permissive): Now a macro, if not a function.
7845         (openat_restore_fail, openat_save_fail): Now always functions,
7846         since mkdirat needs them even if __OPENAT_PREFIX is defined.
7847
7848         * lib/openat-priv.h: New file, defining macros used by mkdirat.c
7849         and openat.c.
7850         * lib/mkdirat.c: Include openat-priv.h.
7851         Remove definitions of macros defined therein.
7852         * lib/openat.c: Likewise.
7853
7854         * lib/mkdirat.c (mkdirat): New file and function.
7855         * lib/openat.h (mkdirat): Declare.
7856
7857         * lib/openat.c (fdopendir): Don't change errno when returning non-NULL.
7858
7859         * lib/openat.h (openat_permissive): Declare.
7860         (openat_ro): Define.
7861
7862         * lib/openat.c (EXPECTED_ERRNO): New macro.
7863         (openat_permissive): New function -- used in remove.c rewrite.
7864         (all functions): Set errno just before returning, only if there
7865         was an actual failure.
7866         Use EXPECTED_ERRNO rather than comparing against only ENOTDIR.
7867
7868         Emulate openat-family functions using Linux's procfs, if possible.
7869         Idea and some code based on Ulrich Drepper's glibc changes.
7870
7871         * lib/openat.c: (BUILD_PROC_NAME): New macro.
7872         Include <stdio.h>, <string.h>, "alloca.h" and "intprops.h".
7873         (rpl_openat): Emulate by trying to open /proc/self/fd/%d/%s,
7874         before falling back on save_cwd and restore_cwd.
7875         (fdopendir, fstatat, unlinkat): Likewise.
7876
7877         * lib/openat.c (fstatat, unlinkat): Perform the syscall directly,
7878         skipping the save_cwd...restore_cwd overhead, if FILE is absolute.
7879
7880         * lib/openat.c (rpl_openat): Use the promoted type (int), not mode_t,
7881         as second argument to va_arg.  Otherwise, some versions of gcc
7882         warn that `if this code is reached, the program will abort'.
7883
7884 2006-01-09  Jim Meyering  <jim@meyering.net>
7885
7886         Sync from coreutils.
7887         * m4/openat.m4 (gl_FUNC_OPENAT): Require and compile mkdirat.c.
7888         Require openat-priv.h.
7889
7890 2006-01-09  Bruno Haible  <bruno@clisp.org>
7891
7892         * modules/strnlen (Include): Use strnlen.h.
7893
7894 2006-01-09  Bruno Haible  <bruno@clisp.org>
7895
7896         * m4/stdint.m4 (gl_STDINT_H): Also test for <sys/bitypes.h>.
7897
7898 2006-01-09  Bruno Haible  <bruno@clisp.org>
7899
7900         * lib/sysexit_.h (EX_OK): New macro.
7901         Suggested by Martin Lambers <marlam@marlam.de>.
7902
7903 2006-01-09  Bruno Haible  <bruno@clisp.org>
7904
7905         * lib/stdint_.h: On Linux libc4 and libc5, include <sys/bitypes.h> and
7906         don't define _STDINT_H_NEED_SIGNED_INT_TYPES.
7907
7908 2006-01-09  Bruno Haible  <bruno@clisp.org>
7909
7910         * lib/stdint_.h (SIZE_MAX): Write the value without involving negative
7911         numbers.
7912
7913 2006-01-09  Bruno Haible  <bruno@clisp.org>
7914
7915         * lib/javacomp.sh.in: Move to ../build-aux/javacomp.sh.in.
7916         * lib/javaexec.sh.in: Move to ../build-aux/javaexec.sh.in.
7917         * lib/csharpcomp.sh.in: Move to ../build-aux/csharpcomp.sh.in.
7918         * lib/csharpexec.sh.in: Move to ../build-aux/csharpexec.sh.in.
7919
7920 2006-01-09  Bruno Haible  <bruno@clisp.org>
7921
7922         * build-aux/javacomp.sh.in: New file, moved from lib/.
7923         * modules/javacomp-script (Files): Update.
7924         (configure.ac): Add AC_CONFIG_FILES invocation.
7925         (EXTRA_DIST): Remove variable.
7926
7927         * build-aux/javaexec.sh.in: New file, moved from lib/.
7928         * modules/javaexec (Files): Update.
7929         (configure.ac): Add AC_CONFIG_FILES invocation.
7930         (EXTRA_DIST): Remove javaexec.sh.in.
7931
7932         * build-aux/csharpcomp.sh.in: New file, moved from lib/.
7933         * modules/csharpcomp-script (Files): Update.
7934         (configure.ac): Add AC_CONFIG_FILES invocation.
7935         (EXTRA_DIST): Remove variable.
7936
7937         * build-aux/csharpexec.sh.in: New file, moved from lib/.
7938         * modules/csharpexec (Files): Update.
7939         (configure.ac): Add AC_CONFIG_FILES invocation.
7940         (EXTRA_DIST): Remove csharpexec.sh.in.
7941
7942 2006-01-09  Andreas Gruenbacher  <agruen@suse.de>
7943
7944         Sync from coreutils.
7945
7946         Add POSIX ACL support
7947         * lib/acl.h (copy_acl, set_acl): Add declarations.
7948         * lib/acl.c (acl_entries): Add fallback implementation for POSIX ACL
7949         systems other than Linux.
7950         (chmod_or_fchmod): New function: use fchmod when possible,
7951         and chmod otherwise.
7952         (file_has_acl): Add a POSIX ACL implementation, with a
7953         Linux-specific subcase.
7954         (copy_acl): Add: copy an acl and S_ISUID, S_ISGID, and
7955         S_ISVTX from one file to another.  Fall back to fchmod/chmod when
7956         acls are unsupported.
7957         (set_acl): Add: set a file's acl and S_ISUID, S_ISGID, and
7958         S_ISVTX to a defined value.  Fall back to fchmod/chmod when acls
7959         are unsupported.
7960
7961 2006-01-09  Andreas Gruenbacher  <agruen@suse.de>
7962
7963         Sync from coreutils.
7964         * m4/acl.m4 (AC_FUNC_ACL): Add POSIX ACL and Linux-specific acl tests.
7965
7966 2006-01-07  Bruno Haible  <bruno@clisp.org>
7967
7968         * gnulib-tool (func_import): Add an AC_PROG_RANLIB dependency to
7969         gl_EARLY.
7970
7971 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
7972
7973         * lib/strftime.c (tzname): Don't declare if it is already #defined.
7974         Problem reported for Mingw by Mark Junker.
7975
7976 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
7977
7978         * README: Gnulib normally doesn't generate a tarball.
7979
7980 2006-01-03  Paul Eggert  <eggert@cs.ucla.edu>
7981
7982         * lib/xtime.h (xtime_make, xtime_nonnegative_nsec, xtime_nsec): Use
7983         long int, not int, for nanosecond counts, so that people who are
7984         used to POSIX struct timespec won't be surprised.  Reported by Jim
7985         Meyering.
7986
7987 2005-12-28  Bruno Haible  <bruno@clisp.org>
7988
7989         * build-aux/config.rpath: Update from GNU gettext.
7990
7991 2005-12-16  Jim Meyering  <jim@meyering.net>
7992
7993         * modules/fprintftime: New module.
7994         * MODULES.html.sh (Date and time <time.h>): Add fprintftime.
7995
7996 2005-12-16  Jim Meyering  <jim@meyering.net>
7997
7998         * m4/fprintftime.m4: New file.
7999
8000 2005-12-16  Jim Meyering  <jim@meyering.net>
8001
8002         * lib/fprintftime.c, lib/fprintftime.h: New files.
8003
8004 2005-12-15  Simon Josefsson  <jas@extundo.com>
8005
8006         * modules/socklen (configure.ac): Fix M4 macro name, to align with
8007         new m4/socklen.m4.
8008
8009 2005-12-10  Sergey Poznyakoff  <gray@gnu.org.ua>
8010
8011         * m4/argp.m4: Define HAVE_DECL_PROGRAM_INVOCATION_NAME and
8012         HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME
8013
8014 2005-12-10  Sergey Poznyakoff  <gray@gnu.org.ua>
8015
8016         * lib/argp-fmtstream.c (__argp_fmtstream_update): Fix coredump
8017         * lib/argp-help.c (fill_in_uparams): Check if the constructed
8018         struct uparams is valid. Fall back to the default values if it is
8019         not.
8020
8021 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
8022
8023         * modules/argp (Files): Add argp-pin.c
8024         (Depends-on): dirname
8025         (lib_SOURCES): Add argp-pin.c
8026
8027 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
8028
8029         * m4/argp.m4:  Check if program_invocation_name and
8030         program_invocation_short_name are declared and define appropriate
8031         macros if they are not.
8032
8033 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
8034
8035         * lib/argp-help.c (__argp_base_name): New function
8036         (__argp_short_program_name): Rewrite using __argp_base_name
8037         * lib/argp-namefrob.h: Define program_invocation_name and
8038         program_invocation_short_name if requested
8039         (__argp_base_name): Add prototype
8040         * lib/argp-parse.c (argp_def): Use gettext wrappers
8041         (argp_default_parser): Use __argp_base_name
8042         * lib/argp-pin.c: New file. Defines program_invocation_name and
8043         program_invocation_short_name on systems that lack them.
8044
8045 2005-12-07  Paul Eggert  <eggert@cs.ucla.edu>
8046
8047         * m4/stat-time.m4 (gl_STAT_TIME): Add check for
8048         TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC, to fix IRIX 5.3
8049         porting problem reported by Georg Schwarz in
8050         <http://lists.gnu.org/archive/html/bug-coreutils/2005-12/msg00083.html>.
8051
8052 2005-12-07  Paul Eggert  <eggert@cs.ucla.edu>
8053
8054         * lib/stat-time.h (STATE_TIMESPEC, STAT_TIMESPEC_NS): Add check for
8055         TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC, to fix IRIX 5.3
8056         porting problem reported by Georg Schwarz in
8057         <http://lists.gnu.org/archive/html/bug-coreutils/2005-12/msg00083.html>.
8058
8059 2005-12-05  Bruno Haible  <bruno@clisp.org>
8060
8061         * lib/csharpcomp.sh.in (options_csc): For -l option, add a .dll suffix.
8062         * lib/csharpcomp.c (compile_csharp_using_sscli): Likewise.
8063         Reported by Mark Junker <mjscod@gmx.de>.
8064
8065 2005-12-02  Paul Eggert  <eggert@cs.ucla.edu>
8066
8067         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Renamed from gl_SOCKLEN_T.
8068         Use implementation from Albert Chin, with some
8069         comments/corrections by Stepan Kasal and myself.
8070
8071 2005-12-02  Bruno Haible  <bruno@clisp.org>
8072
8073         * gnulib-tool (func_import): Accept GPLed build tool modules when
8074         --lgpl is given.
8075         * modules/csharpcomp-script: New file.
8076         * modules/csharpcomp: Depend on it.
8077         * modules/javacomp-script: New file.
8078         * modules/javacomp: Depend on it.
8079         Suggested by Simon Josefsson.
8080
8081 2005-12-01  Paul Eggert  <eggert@cs.ucla.edu>
8082
8083         * m4/regex.m4 (gl_REGEX): Check whether off_t can be used in a switch
8084         statement, to work around an HP-UX 10.20 compiler bug reported by
8085         Peter O'Gorman.
8086
8087 2005-11-29  Paul Eggert  <eggert@cs.ucla.edu>
8088
8089         * modules/savedir (Depends-on): Add openat.
8090
8091 2005-11-29  Paul Eggert  <eggert@cs.ucla.edu>
8092
8093         * lib/stdint_.h (intmax_t) [defined intmax_t]: Do not declare.
8094         (uintmax_t) [defined uintmax_t]: Do not declare.
8095         (SIZE_MAX) [defined SIZE_MAX]: Do not define.
8096         This works around a problem if intmax_t.m4 and/or uintmax_t.m4
8097         and/or size_max.m4 are also used.  Problem reported by Mark D. Baushke.
8098         (SIZE_MAX): Define to ((size_t) -1), not (~(size_t)0), for the
8099         sake of portability to weird hosts that C allows (though we don't
8100         know of any practical examples).
8101
8102         * lib/savedir.h (fdsavedir): New decl.
8103         * lib/savedir.c (fdsavedir, savedirstream): New functions; the latter
8104         contains most of the former guts of savedir.
8105         (savedir): Use savedirstream.
8106         Include "openat.h".
8107
8108 2005-11-25  Paul Eggert  <eggert@cs.ucla.edu>
8109
8110         * modules/obstack (Files): Add m4/ulonglong.m4.
8111         Problem reported by Davide Angelocola.
8112
8113 2005-11-15  Paul Eggert  <eggert@cs.ucla.edu>
8114
8115         * lib/xstrtod.c: Don't bother with #pragma STDC FENV_ACCESS ON, as
8116         coreutils no longer futzes with rounding modes.
8117
8118 2005-11-14  Jim Meyering  <jim@meyering.net>
8119
8120         * lib/mkstemp-safer.c: Include <config.h>, required for possible
8121         replacement of mkstemp.
8122
8123 2005-11-10  Simon Josefsson  <jas@extundo.com>
8124
8125         * lib/readline.c: Remove EOL.
8126
8127 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
8128
8129         * modules/gethrxtime (Depends-on): Add gettime.
8130
8131 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
8132
8133         * m4/gethrxtime.m4 (gl_PREREQ_GETHRXTIME): Don't require AC_HEADER_TIME
8134         or gettimeofday; no longer needed.
8135
8136 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
8137
8138         * lib/gethrxtime.c: Include "timespec.h" rather than the sys/time /
8139         time business.
8140         (gethrxtime) [! (HAVE_NANOUPTIME
8141         || (defined CLOCK_MONOTONIC && HAVE_CLOCK_GETTIME)
8142         || HAVE_MICROUPTIME)]: Fall back on gettime rather than rolling
8143         our own approximation.
8144
8145 2005-11-08  Eric Blake  <ebb9@byu.net>
8146
8147         * lib/inet_ntop.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
8148
8149 2005-11-08  Eric Blake  <ebb9@byu.net>
8150
8151         * lib/getaddrinfo.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
8152
8153 2005-11-04  Bruno Haible  <bruno@clisp.org>
8154
8155         * gnulib-tool: Implement --update mode.
8156
8157 2005-10-30  Paul Eggert  <eggert@cs.ucla.edu>
8158
8159         Fix porting problem reported by Theodoros V. Kalamatianos.
8160         * lib/utimens.c (futimens) [HAVE_WORKING_UTIMES && HAVE_FUTIMES]:
8161         Don't assume that futimes failing means we must fail.
8162
8163 2005-10-30  Paul Eggert  <eggert@cs.ucla.edu>
8164
8165         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Revamp wording and local
8166         variables to suggest the intended function of the PATH_MAX check.
8167
8168 2005-10-30  Kean Johnston  <jkj@sco.com>
8169
8170         Trivial changes to support SCO systems.
8171         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Check for MAXPATHLEN as well
8172         as PATH_MAX.
8173         * m4/fpending.m4 (gl_FUNC_FPENDING): Correct check for SCO systems,
8174         where __ptr is null when no I/O is pending.
8175
8176 2005-10-29  Paul Eggert  <eggert@cs.ucla.edu>
8177
8178         * lib/getcwd.c (__getcwd): Don't assume that system calls after readdir
8179         leave errno alone.  Problem reported by Dmitry V. Levin.
8180
8181 2005-10-28  Simon Josefsson  <jas@extundo.com>
8182
8183         * tests/test-gc-md4.c, tests/test-gc-md5.c, tests/test-gc-sha1.c:
8184         Test more.
8185
8186         * tests/test-gc-md2.c, tests/test-md2.c: New files.
8187
8188         * modules/md2, modules/md2-tests: New files.
8189
8190 2005-10-28  Simon Josefsson  <jas@extundo.com>
8191
8192         * m4/inet_ntop.m4: More tests.
8193
8194         * m4/gc-md2.m4, md2.m4: New file.
8195
8196 2005-10-28  Simon Josefsson  <jas@extundo.com>
8197
8198         * lib/inet_ntop.h, inet_ntop.c: Make it work under mingw32: Add
8199         "restrict" keywords, as per POSIX.  Protect the function
8200         declaration around HAVE_DECL_INET_NTOP rather than HAVE_INET_NTOP.
8201         Don't use K&R prototypes.  Check the sprintf return values.
8202         Re-define EAFNOSUPPORT if not present.  Indent.
8203
8204         * lib/md5.h, md5.c: Simplify buffer handling visavi alignment,
8205         suggested by Bruno Haible <bruno@clisp.org>.
8206
8207         * lib/gc-gnulib.c, gc-libgcrypt.c: Check calloc return value.
8208
8209         * lib/gc.h: Add MD2 and RMD160 length defines.  Add prototypes.
8210
8211         * lib/gc-libgcrypt.c: Add MD2 (which is not available through
8212         libgcrypt).
8213
8214         * lib/gc-gnulib.c: Add MD2.  Implement gc_hash_* API.
8215
8216         * lib/md2.h, lib/md2.c: New files.
8217
8218 2005-10-28  Paul Eggert  <eggert@cs.ucla.edu>
8219
8220         * lib/savedir.c (savedir): Don't assume that xrealloc etc. leave
8221         errno alone.  Problem reported by Frederic Jolliton.
8222
8223 2005-10-27  Paul Eggert  <eggert@cs.ucla.edu>
8224
8225         * modules/verify (License): Change from GPL to LGPL.  This is a
8226         tiny module and there are apparently near-equivalents that are
8227         under the BSD license.
8228
8229 2005-10-24  Simon Josefsson  <jas@extundo.com>
8230
8231         * modules/sha1: Relicense to LGPL.
8232
8233 2005-10-24  Simon Josefsson  <jas@extundo.com>
8234
8235         * lib/md4.h: Shrink buffer size, now that we changed the type.
8236
8237 2005-10-23  Simon Josefsson  <jas@extundo.com>
8238
8239         * gnulib-tool (func_import): Fix --tests-base.
8240
8241 2005-10-22  Simon Josefsson  <jas@extundo.com>
8242
8243         * modules/arcfour (Depends-on): Need stdint.
8244
8245 2005-10-22  Simon Josefsson  <jas@extundo.com>
8246
8247         * m4/gc.m4: Don't be fooled by --disable-*random-device parameters,
8248         suggested by Bruno Haible <bruno@clisp.org>.  Fix error messages.
8249
8250 2005-10-22  Simon Josefsson  <jas@extundo.com>
8251
8252         * lib/md4.h, md4.c: Simplify buffer handling visavi alignment,
8253         suggested by Bruno Haible <bruno@clisp.org>.
8254
8255 2005-10-22  Simon Josefsson  <jas@extundo.com>
8256
8257         * lib/crc.h: Include stddef.h, for size_t.
8258
8259 2005-10-22  Simon Josefsson  <jas@extundo.com>
8260
8261         * lib/arcfour.h, arcfour.c: Use fixed size indices in the
8262         arcfour_context struct (simplify test vector testing in GNU
8263         Shishi).
8264
8265 2005-10-21  Simon Josefsson  <jas@extundo.com>
8266
8267         * modules/des, modules/des-tests: New files.
8268
8269         * modules/gc-des, modules/gc-des-tests: New files.
8270
8271         * tests/test-des.c, tests/test-gc-des.c: New file.
8272
8273 2005-10-21  Simon Josefsson  <jas@extundo.com>
8274
8275         * modules/arctwo, modules/arctwo-tests: New files.
8276
8277         * tests/test-arctwo.c: New file.
8278
8279         * modules/gc-arctwo, modules/gc-arctwo-tests: New files.
8280
8281         * tests/test-gc-arctwo.c: New file.
8282
8283 2005-10-21  Simon Josefsson  <jas@extundo.com>
8284
8285         * m4/gc.m4: Don't use libgcrypt if gcrypt.h isn't found, suggested by
8286         Bruno Haible <bruno@clisp.org>.
8287
8288         * m4/gc-des.m4: New file.
8289
8290 2005-10-21  Simon Josefsson  <jas@extundo.com>
8291
8292         * m4/arctwo.m4: New file.
8293
8294         * m4/gc-arctwo.m4: New file.
8295
8296 2005-10-21  Simon Josefsson  <jas@extundo.com>
8297
8298         * lib/rijndael-api-fst.c: Fix bugs in CBC mode for more than one
8299         block.
8300
8301 2005-10-21  Simon Josefsson  <jas@extundo.com>
8302
8303         * lib/hmac-md5.c (hmac_md5): Add comments, suggested by Bruno Haible
8304         <bruno@clisp.org>.
8305
8306         * lib/hmac-sha1.c (hmac_sha1): Likewise.
8307
8308         * lib/crc.c (crc32_update): Actually use crc parameter, suggested by
8309         Bruno Haible <bruno@clisp.org>.
8310
8311         * lib/crc.h: Include stdint.h directly, suggested by Bruno Haible
8312         <bruno@clisp.org>.
8313
8314 2005-10-21  Simon Josefsson  <jas@extundo.com>
8315
8316         * lib/gc-libgcrypt.c (gc_cipher_open): Handle ECB.
8317
8318 2005-10-21  Simon Josefsson  <jas@extundo.com>
8319
8320         * lib/gc-gnulib.c: Support ARCTWO in CBC mode.
8321
8322 2005-10-21  Simon Josefsson  <jas@extundo.com>
8323
8324         * lib/des.h, lib/des.c: New files.
8325
8326         * lib/gc-gnulib.c: Support DES.c
8327
8328 2005-10-21  Simon Josefsson  <jas@extundo.com>
8329
8330         * lib/arctwo.h, lib/arctwo.c: New files.
8331
8332         * lib/gc-gnulib.c: Support ARCTWO.
8333
8334 2005-10-21  Simon Josefsson  <jas@extundo.com>
8335
8336         * lib/arctwo.h (arctwo_setkey): Protect variable in CPP macro,
8337         suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
8338
8339 2005-10-21  Simon Josefsson  <jas@extundo.com>
8340
8341         * gnulib-tool (func_import, func_create_testdir): Define automake
8342         conditional GL_COND_LIBTOOL if libtool is used (to be used by modules
8343         Makefile.am snippet),
8344         suggested by Bruno Haible <bruno@clisp.org>.
8345
8346         * modules/gc (Makefile.am): Use it.
8347
8348 2005-10-21  Bruno Haible  <bruno@clisp.org>
8349
8350         * gnulib-tool (func_import, func_create_testdir): Add quoting to last
8351         patch.
8352
8353 2005-10-19  Simon Josefsson  <jas@extundo.com>
8354
8355         * tests/test-gc-rijndael.c: New file.
8356
8357         * modules/gc-rijndael, modules/gc-rijndael-test: New files.
8358
8359 2005-10-19  Simon Josefsson  <jas@extundo.com>
8360
8361         * tests/test-gc-md4.c, tests/test-gc-md5.c: Test gc_hash_buffer
8362         interface too.
8363
8364 2005-10-19  Simon Josefsson  <jas@extundo.com>
8365
8366         * tests/test-gc-arcfour.c: New file.
8367
8368         * modules/gc-arcfour, modules/gc-arcfour-tests: New files.
8369
8370 2005-10-19  Simon Josefsson  <jas@extundo.com>
8371
8372         * modules/gc-md4, modules/gc-md4-tests: New file.
8373
8374         * tests/test-gc-md4.c: New file.
8375
8376 2005-10-19  Simon Josefsson  <jas@extundo.com>
8377
8378         * m4/gc-md4.m4: New file.
8379
8380 2005-10-19  Simon Josefsson  <jas@extundo.com>
8381
8382         * m4/gc-hmac-md5.m4, gc-hmac-sha1.m4, gc-md4.m4,
8383         gc-md5.m4, gc-sha1.m4: Fix typo, suggested by Stepan Kasal
8384         <kasal@ucw.cz>.
8385
8386 2005-10-19  Simon Josefsson  <jas@extundo.com>
8387
8388         * m4/gc-arcfour.m4: New file.
8389
8390         * m4/gc-rijndael.m4: New file.
8391
8392 2005-10-19  Simon Josefsson  <jas@extundo.com>
8393
8394         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Support MD4.
8395
8396 2005-10-19  Simon Josefsson  <jas@extundo.com>
8397
8398         * lib/gc-gnulib.c: Support ARCFOUR.
8399
8400 2005-10-19  Simon Josefsson  <jas@extundo.com>
8401
8402         * lib/gc-gnulib.c: Implement gc_cipher_* API, currently only with AES
8403         support.
8404
8405         * lib/gc.h: Add ECB enum type.
8406
8407         * lib/hmac-md5.c, hmac-sha1.c: Include memxor.h.
8408
8409 2005-10-18  Simon Josefsson  <jas@extundo.com>
8410
8411         * tests/test-md5.c: New file.
8412
8413         * modules/md5-tests: New file.
8414
8415 2005-10-18  Simon Josefsson  <jas@extundo.com>
8416
8417         * tests/test-md4.c: New file.
8418
8419         * modules/md4, modules/md4-tests: New files.
8420
8421 2005-10-18  Simon Josefsson  <jas@extundo.com>
8422
8423         * m4/md4.m4: New file.
8424
8425 2005-10-18  Simon Josefsson  <jas@extundo.com>
8426
8427         * lib/md4.h, lib/md4.c: New files, based on md5.?.
8428
8429 2005-10-17  Stepan Kasal  <kasal@ucw.cz>
8430
8431         * gnulib-tool (func_create_testdir): Omit the second check whether
8432         BUILT_SOURCES in nonempty.
8433
8434 2005-10-17  Simon Josefsson  <jas@extundo.com>
8435
8436         * tests/test-rijndael.c: New file.
8437
8438 2005-10-17  Simon Josefsson  <jas@extundo.com>
8439
8440         * modules/sha1: Depend on stdint instead of md5.
8441
8442         * modules/md5: Depend on stdint, remove uint32_t.
8443
8444 2005-10-17  Simon Josefsson  <jas@extundo.com>
8445
8446         * modules/gc-sha1-tests: New file.
8447
8448         * tests/test-gc-sha1.c: New file.
8449
8450 2005-10-17  Simon Josefsson  <jas@extundo.com>
8451
8452         * m4/md5.m4: Remove call to uint32_t.m4.
8453
8454 2005-10-17  Simon Josefsson  <jas@extundo.com>
8455
8456         * lib/sha1.c: Use uint32_t instead of md5_uint32.t
8457
8458         * lib/sha1.h: Use stdint.h and uint32_t instead of md5_uint32 from
8459         md5.h.
8460
8461         * lib/md5.c: Use uin32_t.  Fix non-gcc UNALIGNED_P macro.
8462
8463         * lib/md5.h: Use stdint.h and uint32_t.  Doc fix.
8464
8465 2005-10-17  Simon Josefsson  <jas@extundo.com>
8466
8467         * lib/gc.h, gc-libgcrypt.c: Add more hash types/functions.
8468
8469 2005-10-17  Simon Josefsson  <jas@extundo.com>
8470
8471         * lib/gc.h, gc-libgcrypt.c: Add ciphers.
8472
8473 2005-10-17  Simon Josefsson  <jas@extundo.com>
8474
8475         * lib/gc-libgcrypt.c (gc_hmac_sha1): Fix assert.
8476
8477         * lib/gc.h (gc_nonce, gc_pseudo_random, gc_random): Add prototypes.
8478
8479 2005-10-17  Bruno Haible  <bruno@clisp.org>
8480
8481         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Change the return statement so
8482         that it can also be used in a test.
8483
8484 2005-10-16  Bruno Haible  <bruno@clisp.org>
8485
8486         * gnulib-tool (func_emit_tests_Makefile_am): Also define
8487         TESTS_ENVIRONMENT, so that individual tests can augment it.
8488
8489         * gnulib-tool (func_create_testdir): Use an intermediate target for
8490         building $(BUILT_SOURCES). Needed because BUILT_SOURCES can contain
8491         macros, like $(ALLOCA_H), which cannot be passed through the command
8492         line.
8493
8494 2005-10-15  Simon Josefsson  <jas@extundo.com>
8495
8496         * modules/rijndael-tests: New file.
8497
8498         * modules/rijndael: New file.
8499
8500 2005-10-15  Simon Josefsson  <jas@extundo.com>
8501
8502         * m4/rijndael.m4: New file.
8503
8504 2005-10-15  Simon Josefsson  <jas@extundo.com>
8505
8506         * lib/rijndael-api-fst.h, lib/rijndael-api-fst.c: New files.
8507
8508         * lib/rijndael-alg-fst.h, lib/rijndael-alg-fst.c: New files.
8509
8510 2005-10-14  Simon Josefsson  <jas@extundo.com>
8511
8512         * tests/test-arcfour.c: New file.
8513
8514         * modules/arcfour, modules/arcfour-tests: New files.
8515
8516 2005-10-14  Simon Josefsson  <jas@extundo.com>
8517
8518         * m4/arcfour.m4: New file.
8519
8520 2005-10-14  Simon Josefsson  <jas@extundo.com>
8521
8522         * lib/arcfour.h, lib/arcfour.c: New files.
8523
8524 2005-10-14  Roland McGrath  <roland@redhat.com>
8525
8526         Import from libc.  [BZ #1331]
8527         * lib/obstack.h [!__STDC__] (obstack_int_grow_fast): Fix misnamed
8528         macro argument.
8529         Reported by Matej Vela <vela@debian.org>.
8530
8531 2005-10-14  Paul Eggert  <eggert@cs.ucla.edu>
8532
8533         * lib/obstack.c [defined _LIBC && defined USE_IN_LIBIO]: Don't
8534         include <wchar.h>; no longer needed.
8535
8536 2005-10-14  Paul Eggert  <eggert@cs.ucla.edu>
8537
8538         * config/srclist.txt: Add glibc bug 321 for obstack.c, obstack.h.
8539
8540 2005-10-14  Jakub Jelinek  <jakub@redhat.com>
8541         and  Ulrich Drepper  <drepper@redhat.com>
8542
8543         Import from libc.
8544         * lib/obstack.c (print_and_abort) [defined _LIBC]: Use __fxprintf
8545         instead of inline stream orientation test and two separate
8546         function calls.  Pay no attention to USE_IN_LIBIO.
8547
8548 2005-10-13  Simon Josefsson  <jas@extundo.com>
8549
8550         * modules/gc-hmac-md5-tests: New file.
8551
8552         * tests/test-gc-hmac-sha1.c: New file.
8553
8554         * tests/test-gc.c (main): Remove MD5 and HMAC-MD5 tests.
8555
8556         * modules/gc-hmac-md5-tests: New file.
8557
8558         * tests/test-gc-md5.c: New file.
8559
8560         * modules/gc-md5-tests: New file.
8561
8562 2005-10-13  Simon Josefsson  <jas@extundo.com>
8563
8564         * lib/gc-pbkdf2-sha1.c (gc_pbkdf2_sha1): Optimize CEIL computation.
8565         Move memory allocation outside of loop.
8566
8567 2005-10-13  Paul Eggert  <eggert@cs.ucla.edu>
8568
8569         * lib/mkdir-p.c (make_dir_parents): Don't report an error if an
8570         intermediate directory is in a read-only file system.  Problem
8571         reported by Eric Blake.
8572
8573 2005-10-13  Oskar Liljeblad  <oskar@osk.mine.nu>
8574
8575         * modules/human (Depends-on): Depend on xstrtoumax, not xstrtol.
8576
8577 2005-10-12  Simon Josefsson  <jas@extundo.com>
8578
8579         * tests/test-hmac-sha1.c: New file.
8580
8581         * modules/hmac-sha1-tests: New file.
8582
8583         * modules/hmac-sha1: New file.
8584
8585 2005-10-12  Simon Josefsson  <jas@extundo.com>
8586
8587         * modules/gc-sha1: New file.
8588
8589 2005-10-12  Simon Josefsson  <jas@extundo.com>
8590
8591         * modules/gc-pbkdf2-sha1, modules/gc-pbkdf2-sha1-tests: New files.
8592
8593         * tests/test-gc-pbkdf2-sha1.c: New file.
8594
8595 2005-10-12  Simon Josefsson  <jas@extundo.com>
8596
8597         * modules/gc-md5, modules/gc-hmac-md5: New files.
8598
8599         * modules/gc (Files): Remove md5, memxor and hmac files.
8600
8601 2005-10-12  Simon Josefsson  <jas@extundo.com>
8602
8603         * m4/gc-pbkdf2-sha1.m4: New file.
8604
8605         * m4/gc-hmac-sha1.m4: New file.
8606
8607         * m4/gc-sha1: New file.
8608
8609         * m4/hmac-sha1.m4: New file.
8610
8611 2005-10-12  Simon Josefsson  <jas@extundo.com>
8612
8613         * m4/gc-md5.m4, m4/gc-hmac-md5.m4: New files.
8614
8615         * m4/gc.m4: Don't call gl_MD5, gl_MEMXOR or gl_HMAC_MD5.
8616
8617 2005-10-12  Simon Josefsson  <jas@extundo.com>
8618
8619         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Use Gc_rc for return types,
8620         suggested by Bruno Haible <bruno@clisp.org>.
8621
8622 2005-10-12  Simon Josefsson  <jas@extundo.com>
8623
8624         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Support SHA-1.
8625
8626 2005-10-12  Simon Josefsson  <jas@extundo.com>
8627
8628         * lib/gc-pbkdf2-sha1.c: New file.
8629
8630         * lib/gc.h: Add gc_pbkdf2_sha1 prototype.
8631
8632 2005-10-12  Simon Josefsson  <jas@extundo.com>
8633
8634         * lib/gc-libgcrypt.c (gc_hmac_sha1): New function.
8635
8636         * lib/gc-gnulib.c (gc_hmac_sha1): New function.
8637
8638 2005-10-12  Simon Josefsson  <jas@extundo.com>
8639
8640         * lib/gc-gnulib.c: Condition MD5 and HMAC-MD5 use on GC_USE_MD5 and
8641         GC_USE_HMAC_MD5, respectively.
8642
8643         * lib/gc-libgcrypt.c (gc_md5): Fix assert call.
8644         (gc_md5): Fix typo.
8645
8646         * lib/gc.h (gc_hash_buffer): Use gc_hash in prototype.
8647
8648         * lib/gc-libgcrypt.c (gc_hash_buffer): Ditto.
8649
8650         * lib/gc-gnulib.c (gc_hash_buffer): Ditto.
8651
8652 2005-10-12  Bruno Haible  <bruno@clisp.org>
8653
8654         * m4/stdbool.m4 (gl_STDBOOL_H): Define as an alias of AM_STDBOOL_H.
8655         Reported by Stepan Kasal <kasal@ucw.cz>.
8656
8657 2005-10-11  Simon Josefsson  <jas@extundo.com>
8658
8659         * tests/test-crc.c: New file.
8660
8661         * modules/crc, modules/crc-tests: New files.
8662
8663 2005-10-11  Simon Josefsson  <jas@extundo.com>
8664
8665         * m4/crc.m4: New file.
8666
8667 2005-10-11  Simon Josefsson  <jas@extundo.com>
8668
8669         * lib/gc.h: Add gc_hash and gc_hash_buffer.
8670
8671         * lib/gc-gnulib.c (gc_hash_buffer): Add.  Reorder #include's.
8672
8673         * lib/gc-libgcrypt.c (gc_hash_buffer): Add.
8674
8675 2005-10-11  Simon Josefsson  <jas@extundo.com>
8676
8677         * lib/crc.h, lib/crc.c: New files.
8678
8679         * lib/gc.h (gc_hash_buffer): Add doc.
8680
8681 2005-10-11  Bruno Haible  <bruno@clisp.org>
8682
8683         * modules/c-strcasestr: New file.
8684         * MODULES.html.sh (String handling <string.h>): Add c-strcasestr.
8685
8686 2005-10-11  Bruno Haible  <bruno@clisp.org>
8687
8688         * modules/c-strcase: New file.
8689         * MODULES.html.sh (String handling <string.h>): Add c-strcase.
8690
8691 2005-10-11  Bruno Haible  <bruno@clisp.org>
8692
8693         * lib/strcasecmp.c: Include limits.h.
8694         (strcasecmp): Avoid integer overflow on exotic platforms.
8695         * lib/strncasecmp.c: Include limits.h.
8696         (strncasecmp): Avoid integer overflow on exotic platforms.
8697         Reported by Paul Eggert.
8698
8699 2005-10-11  Bruno Haible  <bruno@clisp.org>
8700
8701         * lib/c-strcasestr.h: New file, from GNU gettext.
8702         * lib/c-strcasestr.c: New file, from GNU gettext.
8703
8704 2005-10-11  Bruno Haible  <bruno@clisp.org>
8705
8706         * lib/c-strcase.h: New file, from GNU gettext.
8707         * lib/c-strcasecmp.c: New file, from GNU gettext.
8708         * lib/c-strncasecmp.c: New file, from GNU gettext.
8709
8710 2005-10-10  Paul Eggert  <eggert@cs.ucla.edu>
8711
8712         * modules/mempcpy (License): GPL -> LGPL.
8713         * modules/strchrnul (License): Likewise.
8714         * modules/sysexits (License): Likewise.
8715
8716 2005-10-08  Simon Josefsson  <jas@extundo.com>
8717
8718         * config/srclist.txt: Bug 1423 is closed, but 1439 remains.
8719
8720 2005-10-07  Simon Josefsson  <jas@extundo.com>
8721
8722         * m4/memxor.m4: Remove gl_C_RESTRICT call.
8723
8724 2005-10-06  Simon Josefsson  <jas@extundo.com>
8725
8726         * tests/test-hmac-md5.c: New file.
8727
8728         * modules/hmac-md5-tests: New file.
8729
8730         * modules/hmac-md5: New file.
8731
8732 2005-10-06  Simon Josefsson  <jas@extundo.com>
8733
8734         * m4/hmac-md5.m4: New file.
8735
8736         * m4/memxor.m4: Require gl_C_RESTRICT.
8737
8738 2005-10-06  Simon Josefsson  <jas@extundo.com>
8739
8740         * lib/memxor.c (memxor): Avoid casts and warnings.
8741
8742 2005-10-06  Simon Josefsson  <jas@extundo.com>
8743
8744         * lib/hmac-md5.c: New file.
8745
8746         * lib/hmac.h: New file.
8747
8748 2005-10-06  Paul Eggert  <eggert@cs.ucla.edu>
8749
8750         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check that bool
8751         promotes to int, not unsigned int, to catch the AIX 5.3
8752         compiler bug.
8753
8754 2005-10-05  Simon Josefsson  <jas@extundo.com>
8755
8756         * modules/memxor: New file.
8757
8758         * modules/iconv (Files): Move config.rpath to havelib, it is used
8759         there.
8760
8761         * modules/havelib (Files): Add config.rpath.
8762
8763 2005-10-05  Simon Josefsson  <jas@extundo.com>
8764
8765         * m4/memxor.m4: New file.
8766
8767 2005-10-05  Simon Josefsson  <jas@extundo.com>
8768
8769         * lib/memxor.c (memxor): Fix compiler error.
8770
8771         * lib/md5.h (MD5_DIGEST_SIZE, MD5_BLOCK_SIZE): Add, see also
8772         <http://sourceware.org/bugzilla/show_bug.cgi?id=1423>.
8773
8774         * lib/memxor.h, lib/memxor.c: New files.
8775
8776         * lib/getaddrinfo.h: Don't protect sys/types.h with HAVE_SYS_TYPES_H,
8777         we assume all systems have it, suggested by Jim Meyering
8778         <jim@meyering.net>.  Remove HAVE_SYS_SOCKET_H test too, to see if
8779         any systems lack sys/socket.h; mingw32 is known to lack it, but we
8780         don't support it yet anyway.  Also remove HAVE_NETDB_H test, for
8781         same reasons.
8782
8783 2005-10-05  Simon Josefsson  <jas@extundo.com>
8784
8785         * config/srclist.txt: Add glibc bug 1423 for md5.h.
8786
8787 2005-10-05  Paul Eggert  <eggert@cs.ucla.edu>
8788
8789         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Don't check for
8790         sys/socket.h, netdb.h, sys/types.h; the checks areno longer
8791         needed, since the source code now assumes these .h files.
8792
8793 2005-10-05  Derek Price  <derek@ximbiot.com>
8794
8795         * lib/getdelim.c (SIZE_MAX): New macro, if not already defined.
8796
8797 2005-10-05  Bruno Haible  <bruno@clisp.org>
8798
8799         * modules/stdint (License): Change to LGPL.
8800
8801 2005-10-04  Simon Josefsson  <jas@extundo.com>
8802
8803         * lib/getaddrinfo.h: Move sys/types.h include first, reported by "Mark
8804         D. Baushke" <mdb@gnu.org>.
8805
8806 2005-10-04  Bruno Haible  <bruno@clisp.org>
8807
8808         * lib/verify.h (verify_true): Provide alternative definition for C++.
8809
8810 2005-10-03  Paul Eggert  <eggert@cs.ucla.edu>
8811
8812         * lib/getdelim.c: Include getdelim.h first.  Include <limits.h>.
8813         (SSIZE_MAX): New macro, if not already defined.
8814         (getdelim): Fix buffer overrun on 64-bit hosts with lines longer
8815         than 2 GiB.
8816
8817 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
8818
8819         Sync from coreutils.
8820         * m4/openat.m4 (gl_FUNC_OPENAT): Check for fdopendir.
8821         * m4/ullong_max.m4 (gl_ULLONG_MAX): Simplify so that it merely
8822         defines ULONG_MAX_LT_ULLONG_MAX.  Thomas M.Ott reports that
8823         ULLONG_MAX doesn't work with 2.7.2.1.
8824
8825 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
8826
8827         * modules/xreadlink (Makefile.am): Remove lib_SOURCES.
8828         From Ben Pfaff.
8829
8830         * modules/exclude (Depends-on): Depend on verify.
8831         * modules/strtoimax (Depends-on): Likewise.
8832         * modules/utimecmp (Depends-on): Likewise.
8833
8834 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
8835
8836         * lib/exclude.c: Include verify.h.
8837         (verify): Remove.  All callers changed to use verify.h's version.
8838         * lib/strtoimax.c: Likewise.
8839         * lib/utimecmp.c: Likewis.e
8840
8841         Sync from coreutils.
8842         * lib/.cppi-disable: Add getaddrinfo.h, getdelim.h, getline.h,
8843         getpass.c, mbchar.h, mbuiter.h, strcase.h, strnlen.h, strnlen1.h.
8844         * lib/.cvsignore: Add fts.h, search.h, t-fpending.
8845         * lib/settime.c (settime): Fix { typo in previous patch.  Also, don't
8846         bother returning ENOSYS if settimeofday or stime fails; just let
8847         them return whatever errno they want to return.
8848         * lib/utimens.c: Include unistd.h, for dup2.
8849         (futimens): Fix typo: HAVE_FUTIMESAT was misspelled in an #if.
8850         (futimens) [! HAVE_FUTIMESAT]: If !file, set errno before returning -1.
8851
8852 2005-10-02  Jim Meyering  <jim@meyering.net>
8853
8854         Sync from coreutils.
8855         * m4/utimes.m4 (gl_FUNC_UTIMES): Detect the version of utimes
8856         from glibc-2.2.5 that fails for read-only files.
8857
8858 2005-10-02  Jim Meyering  <jim@meyering.net>
8859
8860         Sync from coreutils.
8861         * lib/fts-cycle.c [HAVE_CONFIG_H]: Include <config.h>.
8862         * lib/openat-die.c: Use `#ifdef HAVE_CONFIG_H', not
8863         `#if HAVE_CONFIG_H'.
8864         * lib/openat.c (fdopendir): Do not define if HAVE_FDOPENDIR.
8865         Remove AT_FDCWD test.
8866         Do not consume the fd unless successful.
8867         * lib/openat.h (fdopendir): Do not define if HAVE_FDOPENDIR.
8868         * lib/settime.c (settime): Move the HAVE_STIME block `up' into an #elif
8869         block, so that we don't even try to compile it if settimeofday is
8870         available.  This works around a compilation failure on OSF1 V5.1,
8871         due to stime requiring a `long int*' while tv_sec is `int'.
8872
8873 2005-10-02  Alfred M. Szmidt  <ams@gnu.org>
8874
8875         Sync from coreutils.
8876         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Compare $gl_have_path...
8877         against `yes', rather than just testing for nonempty.
8878
8879 2005-10-01  Simon Josefsson  <jas@extundo.com>
8880
8881         * m4/getaddrinfo.m4: Include sys/types.h for sys/socket.h, on FreeBSD
8882         and Darwin.
8883
8884         * m4/getaddrinfo.m4: Use AC_GNU_SOURCE, GNU only declare getaddrinfo
8885         as an (POSIX) extension.  Check for sys/types.h, sys/socket.h, and
8886         netdb.h too, needed by getaddrinfo.h.  Check if getaddrinfo,
8887         freeaddrinfo and gai_strerror are declared by the POSIX headers.
8888         Check if struct addrinfo is declared.
8889
8890 2005-10-01  Simon Josefsson  <jas@extundo.com>
8891
8892         * lib/getaddrinfo.h: Protect #include's of sys/socket.h and netdb.h.
8893         Only define struct addrinfo if !HAVE_STRUCT_ADDRINFO.  Protect
8894         AI_* and EAI_* definitions.  Protect function declarations.
8895
8896 2005-10-01  Jim Meyering  <jim@meyering.net>
8897
8898         Sync from coreutils.
8899
8900         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Look for getservbyname in these
8901         libraries [inet nsl socket xnet].  Nelson Beebe reported that with
8902         native cc on Solaris 7, getaddrinfo.c requires -lsocket.
8903         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Check for gethostbyname
8904         in the inet and nsl libraries.  Required on Solaris 5.7.
8905
8906 2005-10-01  Jim Meyering  <jim@meyering.net>
8907
8908         Sync from coreutils.
8909         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Check for gethostbyname
8910         in the inet and nsl libraries.  Required on Solaris 5.7.
8911
8912 2005-10-01  Eric Blake  <ebb9@byu.net>  (tiny change)
8913
8914         * lib/getdelim.c (getdelim): Remove unused variables.
8915
8916 2005-09-29  Paul Eggert  <eggert@cs.ucla.edu>
8917
8918         * lib/xtime.h (XTIME_PRECISION): Now of type int, not long long int,
8919         so that the code works even with ancient cpp.  Portability problem
8920         with GCC 2.7.2.1 reported by Thomas M.Ott.
8921
8922 2005-09-27  Paul Eggert  <eggert@cs.ucla.edu>
8923
8924         * modules/regex (Depends-on): Add strcase.
8925
8926         * modules/gethostname (Licence): Change from GPL to LGPL, since
8927         gethostname.c is a trivial implementation of a standard library
8928         function.
8929         * modules/poll (License): Change from GPL to LGPL, since it's
8930         derived from LGPL code.
8931
8932 2005-09-27  Jim Meyering  <jim@meyering.net>
8933
8934         * lib/getcwd.c: Change #ifdef<TAB>HAVE_CONFIG_H to #ifdef
8935         HAVE_CONFIG_H.
8936
8937         * lib/intprops.h (signed_type_or_expr__): Define.
8938         (INT_STRLEN_BOUND) [__GNUC__]: Use a slightly tighter bound
8939         for unsigned types.
8940
8941 2005-09-26  Paul Eggert  <eggert@cs.ucla.edu>
8942
8943         * lib/verify.h (verify_expr): Remove, replacing with:
8944         (verify_true): New macro that returns true instead of void.
8945         (verify_type__): Remove.
8946         (verify): Use verify_true rather than verify_type__.
8947
8948 2005-09-26  Bruno Haible  <bruno@clisp.org>
8949
8950         * modules/mbchar (Include): Mention that HAVE_WCHAR_H && HAVE_WCTYPE_H
8951         is necessary.
8952         (lib_SOURCES): Remove mbchar.c.
8953         * modules/mbfile (Include): Mention that HAVE_MBRTOWC is necessary.
8954         (Files): Add m4/mbrtowc.m4.
8955         * modules/mbiter: Likewise.
8956         * modules/mbuiter: Likewise.
8957
8958 2005-09-26  Bruno Haible  <bruno@clisp.org>
8959
8960         * m4/mbchar.m4 (gl_MBCHAR): Check for wchar.h and wctype.h. Don't
8961         compile mbchar.c if they are not both present.
8962         * m4/mbfile.m4 (gl_MBFILE): Require gl_FUNC_MBRTOWC.
8963         * m4/mbiter.m4 (gl_MBITER): Likewise.
8964         * m4/strstr.m4 (gl_PREREQ_STRSTR): Use AC_REQUIRE.
8965         * m4/strcasestr.m4 (gl_PREREQ_STRCASESTR): Likewise.
8966         * m4/strcase.m4 (gl_PREREQ_STRCASECMP): Likewise.
8967
8968 2005-09-25  Jim Meyering  <jim@meyering.net>
8969
8970         * modules/inet_ntop (Depends-on): Add socklen, since inet_ntop.c
8971         also uses socklen_t.
8972
8973 2005-09-24  Paul Eggert  <eggert@cs.ucla.edu>
8974
8975         * lib/utimens.c (ENOSYS): Define if not already defined.
8976         (futimens): Support having a null PATH if the file descriptor
8977         is nonnegative.
8978
8979         * lib/regex_internal.h (__GNUC_PREREQ, always_inline, inline, pure):
8980         Remove.
8981         (__attribute): Define to empty unless GCC 3.1 or later.
8982         This works around a core dump on OpenBSD 3.4, which has GCC
8983         2.95.3, which dumps core when given __attribute__(()).  It also
8984         simplifies other tests, since we really don't want to bother with
8985         worrying about which ancient version of GCC supported what.
8986         Original problem reported by Yoann Vandoorselaere, with part of
8987         the fix suggested by Derek Price.
8988
8989 2005-09-24  Jim Meyering  <jim@meyering.net>
8990
8991         * lib/verify.h (verify_type__): Use `unsigned int' as the bitfield type
8992         so we can once again use a positive bitfield width of 1 -- now we
8993         don't have to explain why we were using a bitfield width of 2.
8994
8995 2005-09-23  Paul Eggert  <eggert@cs.ucla.edu>
8996
8997         * m4/regex.m4 (gl_REGEX): If replacing, define regcomp to rpl_regcomp,
8998         and similarly for the other external symbols.  Problem reported
8999         by James Gallager.
9000
9001         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Catch Sun Studio 10u1 on Linux
9002         bug reported by Jim Meyering.
9003
9004         * m4/utimens.m4 (gl_UTIMENS): Check for futimesat.
9005         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Undo previous change;
9006         not needed, since socklen is a prerequisite module.
9007
9008 2005-09-23  Paul Eggert  <eggert@cs.ucla.edu>
9009
9010         * lib/getaddrinfo.c [HAVE_NETINET_IN_H]: Include <netinet/in.h>.
9011         Problem reported by Eric Blake.
9012         (getaddrinfo): Initialize se so that it's not garbage.
9013         Redo internal storage allocation so that it doesn't make unportable
9014         assumptions about alignment.
9015         Fix a memory leak.
9016
9017         * lib/utimens.c (futimens): Use futimesat if available.
9018         Prefer it to futimes since it doesn't have the futimes bug.
9019
9020         * lib/verify.h (GL_CONCAT0, GL_CONCAT): Remove.
9021         (verify): Don't use the __LINE__ trick, as it doesn't work in general.
9022         Instead, declare a function that returns a pointer to an array,
9023         and use verify_type__ to declare the size of the array.
9024         Problem and germ of a solution reported by Bruno Haible.
9025         (verify_type__): Use 2, not 1, for bitfield size, to avoid
9026         a warning with Irix 6.5 cc.  Problem reported by Bruno Haible.
9027
9028 2005-09-23  Jim Meyering  <jim@meyering.net>
9029
9030         Sync from coreutils.
9031         Correct build failure (socklen_t not defined) on at least
9032         mips-sgi-irix6.5 and alphaev67-dec-osf5.1.
9033         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Require gl_SOCKLEN_T.
9034
9035 2005-09-23  Jim Meyering  <jim@meyering.net>
9036
9037         * modules/getaddrinfo (Depends-on): Add socklen.
9038
9039 2005-09-23  Bruno Haible  <bruno@clisp.org>
9040
9041         * tests/test-verify.c: New file.
9042
9043 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
9044
9045         Sync from coreutils.
9046
9047         * modules/argmatch (Depends-on): Add verify.
9048         * modules/getloadavg (Depends-on): Depend on fcntl-safer, not
9049         unistd-safer.
9050         * modules/save-cwd (Depends-on): Likewise.
9051
9052         * modules/openat (Files): Add lib/openat-die.c.
9053         (Depends-on): Remove error, exitfail.
9054         Add dirname.
9055
9056         * modules/verify: New file.
9057         * MODULES.html.sh (Diagnostics <assert.h>): New section,
9058         with "verify" module.
9059
9060 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
9061
9062         Sync from coreutils.
9063
9064         * m4/backupfile.m4, calloc.m4, chown.m4, cloexec.m4, dup2.m4:
9065         * m4/fileblocks.m4, free.m4, ftruncate.m4, getcwd.m4, getpagesize.m4:
9066         * m4/getugroups.m4, group-member.m4, idcache.m4, link-follow.m4:
9067         * m4/mkstemp.m4, mktime.m4, mountlist.m4, nanosleep.m4, pathmax.m4:
9068         * m4/physmem.m4, posixver.m4, putenv.m4, safe-read.m4, same.m4:
9069         * m4/save-cwd.m4, stdio-safer.m4, unistd-safer.m4, unlinkdir.m4:
9070         * m4/userspec.m4, xgetcwd.m4, xreadlink.m4:
9071         Don't bother checking for string.h, stdlib.h, unistd.h.
9072         * m4/fts.m4 (gl_FUNC_FTS_CORE): Don't require
9073         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK; that's now the lstat
9074         module's job.
9075         * m4/jm-macros.m4 (gl_MACROS): Likewise.
9076         * m4/prereq.m4 (gl_PREREQ): Add gl_FUNC_LSTAT.
9077
9078         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): New macro.
9079         (gl_GETDATE): Use it.
9080
9081         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Don't bother checking for unistd.h.
9082
9083 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
9084
9085         Sync from coreutils.
9086
9087         * lib/.cppi-disable: Add regcomp.c, regex_internal.c, regex_internal.h,
9088         stat-time.h.
9089         * lib/argmatch.h: Include verify.h
9090         (ARGMATCH_VERIFY): Use verify rather than rolling our own.
9091         (ARGMATCH_ASSERT): Remove; unused.
9092         * lib/canonicalize.c: Assume STDC_HEADERS.
9093         * lib/exclude.c: Include "strcase.h".
9094         * lib/regex_internal.h [!defined _LIBC]: Likewise.
9095         * lib/getusershell.c: Include stdio--.h rather than stdio.h
9096         and stdio-safer.h.
9097         (getusershell): Call fopen, not fopen_safer.
9098         * lib/save-cwd.c: Include fcntl--.h rather than fcntl.h.
9099         Do not include unistd-safer.h.
9100         (save_cwd): Don't call fd_safer; no longer needed
9101         now that we include fcntl--.h.
9102
9103         * lib/getdate.y (relative_time): New type.
9104         (RELATIVE_TIME_0): New constant.
9105         (parser_control): Use relative_time instead of doing it ourselves.
9106         (%union): Add new relative_time rel member.
9107         (tYEAR_UNIT, tMONTH_UNIT, tHOUR_UNIT, tMINUTE_UNIT, tSEC_UNIT):
9108         Now typeless.
9109         (relunit, relunit_snumber): Now of type rel.
9110         (zone, rel, relunit, get_date): Adjust to above changes.
9111
9112         * lib/getloadavg.c: Include fcntl--.h rather than fcntl.h.
9113         Do not include unistd-safer.h.
9114         (getloadavg): Don't call fd_safer; no longer needed
9115         now that we include fcntl--.h.
9116
9117         * lib/mkdir-p.c (ENOSYS): Define to EEXIST if not defined.
9118         (make_dir_parents): Treat ENOSYS like EEXIST.
9119
9120         Improve quality of diagnostics on restore_cwd failure.
9121         * lib/mkdir-p.h (make_dir): Remove.  All uses replaced by mkdir.
9122         (make_dir_parents): Last arg is now int * (for errno), not bool *.
9123         * lib/mkdir-p.c (make_dir, make_dir_parents): Likewise.
9124         Rewrite "mkdir -p" algorithm to avoid the need for "stat"
9125         each time through the loop.  Do not diagnose restore_cwd failure;
9126         that is the caller's job (and perhaps the caller does not care).
9127
9128         * lib/mkdir-p.c (CLEANUP_CWD, CLEANUP): Remove.
9129         (make_dir_parents): Revamp to avoid need for CLEANUP_CWD, CLEANUP.
9130         If the file already exists but is not a directory, don't bother
9131         to try to make its parents.
9132         Close potential file descriptor leak if we can't chdir("/") (!).
9133         Don't always return true if chdir($PWD) fails; return true only
9134         if the requested action was done successfully (except for the
9135         chdir($PWD)).
9136         Don't log final directory unless we actually made it.
9137         Refactor to avoid duplicate code to fix up permissions.
9138         Don't attempt to fix up parent permissions if chdir($PWD) fails.
9139
9140         * lib/strftime.c (my_strftime): Rewrite the previous change slightly,
9141         to make it a bit faster and (I hope) clearer.
9142         * lib/strftime.c (my_strftime): Add support for %:z, %::z, %:::z.
9143         Fix bug in formats like %2N.
9144
9145         * lib/verify.h: New file.
9146
9147 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
9148
9149         Sync from coreutils.
9150         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Check for netinet/in.h.
9151
9152 2005-09-22  Jim Meyering  <jim@meyering.net>
9153
9154         Sync from coreutils.
9155
9156         * m4/lstat.m4 (gl_FUNC_LSTAT):
9157         Use AC_LIBSOURCES to require lstat.c and lstat.h.
9158         Remove obsolete comment.
9159         * m4/xreadlink.m4: Use AC_LIBSOURCES and AC_LIBOBJ.
9160         * m4/xstrtod.m4: Likewise.
9161
9162         * m4/openat.m4 (gl_FUNC_OPENAT): Add openat-die.c.
9163
9164 2005-09-22  Jim Meyering  <jim@meyering.net>
9165
9166         Sync from coreutils.
9167
9168         * lib/backupfile.c: Use ARGMATCH_VERIFY, just in case.
9169
9170         * lib/posixtm.c (posixtime) [lint]: Initialize *all* of tm0, not just
9171         the .tm_year member, since otherwise gcc-4.0 would now warn about
9172         tm_zone, tm_gmtoff, tm_isdst, tm_yday, tm_wday.
9173
9174         * lib/quotearg.c (quotearg_n_options): Change code to be suboptimal, in
9175         order to avoid an unsuppressible warning from gcc on 64-bit systems.
9176
9177         * lib/getdate.y (get_date): Undo part of the 2005-04-04 change, so that
9178         the command "date -d'2005-03-27 +1 day'" succeeds once again, even
9179         when run in a time zone for which daylight savings time is in effect
9180         for the starting date.
9181
9182         * lib/mkdir-p.c (make_dir_parents): Don't let a failed chdir($PWD)
9183         stop us from restricting permissions of just-created absolute-named
9184         directories.
9185         * lib/mkdir-p.c (CLEANUP_CWD): Return *true*, not false when failing
9186         to restore initial working directory.
9187         * lib/mkdir-p.c (make_dir_parents): New parameter:
9188         different_working_dir, to tell caller if/when we change the working
9189         directory and are unable to return to the initial one.
9190         * lib/mkdir-p.h (make_dir_parents): Update prototype.
9191         * lib/mkdir-p.c (CLEANUP_CWD): Change one more `return 1' to
9192         `return false'.  This fixes a bug introduced on 2004-07-30.
9193
9194         * lib/openat.c (fdopendir): Be sure to close the supplied
9195         file descriptor before returning.  This makes our replacement
9196         implementation a little closer to Solaris's, where fdopendir
9197         ties the file descriptor to the returned DIR* pointer.
9198         * lib/openat.c (unlinkat): New function.
9199         * lib/openat.h (unlinkat): Add prototype.
9200         * lib/openat-die.c (openat_save_fail): Rename from openat_save_die.
9201         (openat_restore_fail): Rename from openat_restore_die.
9202         * lib/openat.c, openat.h: Reflect s/_die/_fail/ renaming.
9203
9204         Provide an alternative to exiting immediately upon save_cwd or
9205         restore_cwd failure.  Now, an application can arrange e.g.,
9206         to perform a longjump in that case.
9207         * lib/openat.c: Include dirname.h.
9208         Use IS_ABSOLUTE_FILE_NAME rather than testing for leading slash.
9209         (rpl_openat, fdopendir, fstatat): Call openat_save_die
9210         and openat_restore_die rather than calling error directly.
9211         Don't include "error.h" or "exitfail.h"; they're no longer needed.
9212
9213         * lib/openat-die.c (openat_save_die, openat_restore_die): New file.
9214         * lib/openat.h (openat_save_die, openat_restore_die): Declare and
9215         define.
9216
9217         * lib/strftime.c [FPRINTFTIME] (fprintftime): Provide a new interface:
9218         size_t fprintftime (FILE *fp, char const *fmt, struct tm const *tm,
9219                             int utc, int nanoseconds);
9220         Background:
9221         date should not have to allocate a megabyte of virtual memory to
9222         handle a format argument like +%1048575T.  When implemented with
9223         strftime, it must allocate such a buffer, use strftime to fill it
9224         in, print it, then free it.
9225         With fprintftime, it simply prints everything and exits.
9226         With no need for memory allocation, that's one fewer way to fail.
9227         * lib/strftime.c (my_strftime): Parse the colons of %:::z *after* the
9228         optional field width, not before, so we accept %9:z, not %:9z.
9229         (my_strftime): Be sure to use L_('x') for literals.
9230
9231         * lib/backupfile.c, lib/canon-host.c, lib/canonicalize.c, lib/chown.c:
9232         * lib/cloexec.c, lib/dup-safer.c, lib/dup2.c, lib/euidaccess.c:
9233         * lib/fd-safer.c, lib/fileblocks.c, lib/fopen-safer.c, lib/fsusage.c:
9234         * lib/ftruncate.c, lib/getcwd.c, lib/getcwd.h, lib/getloadavg.c:
9235         * lib/getopt_.h, lib/getpagesize.h, lib/getugroups.c:
9236         * lib/group-member.c, lib/human.h, lib/idcache.c, lib/mkdir-p.c:
9237         * lib/mountlist.c, lib/nanosleep.c, lib/pathmax.h, lib/physmem.c:
9238         * lib/posixver.c, lib/putenv.c, lib/raise.c, lib/safe-read.c:
9239         * lib/same.c, lib/save-cwd.c, lib/setenv.c, lib/settime.c:
9240         * lib/tempname.c, lib/unlinkdir.c, lib/unsetenv.c, lib/userspec.c:
9241         * lib/xgethostname.c, lib/xreadlink.c:
9242         Assume HAVE_UNISTD_H, i.e., include <unistd.h> unconditionally.
9243
9244         * lib/chown.c, lib/cloexec.c, lib/dup-safer.c, lib/dup2.c:
9245         * lib/fsusage.c, lib/getcwd.c, lib/getloadavg.c, lib/mountlist.c:
9246         * lib/openat.h, lib/save-cwd.c, lib/tempname.c:
9247         Assume HAVE_FCNTL_H (i.e., include <fcntl.h> unconditionally,
9248         and don't include <sys/file.h>).
9249
9250 2005-09-22  Eric Blake  <ebb9@byu.net>  (tiny change)
9251
9252         Sync from coreutils.
9253
9254         * lib/getloadavg.c (getloadavg) [__CYGWIN__]: Port to cygwin.
9255         [__linux__]: Allocate a big enough buffer for /proc/loadavg.
9256         [!LDAV_DONE]: Avoid unused variable warning.
9257
9258 2005-09-21  Bruno Haible  <bruno@clisp.org>
9259
9260         * lib/unicodeio.h (unicode_to_mb): New declaration.
9261
9262 2005-09-20  Derek Price  <derek@ximbiot.com>
9263
9264         * lib/getaddrinfo.c: Don't include <netdb.h> included from
9265         getaddrinfo.h.
9266
9267 2005-09-20  Bruno Haible  <bruno@clisp.org>
9268
9269         * gnulib-tool: Remove trailing slashes from the values specified for
9270         --source-base, --m4-base, --tests-base, --aux-dir.
9271         Suggested by Simon Josefsson <jas@extundo.com>.
9272
9273 2005-09-20  Bruno Haible  <bruno@clisp.org>
9274
9275         * gnulib-tool (func_all_modules, func_modules_transitive_closure,
9276         func_modules_to_filelist, func_import, func_create_testdir): Make all
9277         sorting results locale-independent, so that gnulib-cache.m4 doesn't
9278         change when gnulib-tool is invoked in a different locale.
9279
9280 2005-09-19  Simon Josefsson  <jas@extundo.com>
9281
9282         * m4/socklen.m4: Fix typo.
9283
9284 2005-09-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9285
9286         Use a consistent style for including <config.h>.
9287         * lib/__fpending.c, lib/acl.c, lib/argmatch.c, lib/argp-help.c,
9288         lib/argp-parse.c, lib/argp-pvh.c, lib/backupfile.c, lib/basename.c,
9289         lib/c-stack.c, lib/calloc.c, lib/check-version.c, lib/cloexec.c,
9290         lib/closeout.c, lib/copy-file.c, lib/creat-safer.c, lib/cycle-check.c,
9291         lib/dirfd.c, lib/dirname.c, lib/dup-safer.c, lib/dup2.c,
9292         lib/euidaccess.c, lib/exclude.c, lib/exitfail.c, lib/fatal-signal.c,
9293         lib/fd-safer.c, lib/file-type.c, lib/fileblocks.c, lib/filemode.c,
9294         lib/filenamecat.c, lib/findprog.c, lib/fnmatch.c, lib/fopen-safer.c,
9295         lib/free.c, lib/fsusage.c, lib/ftruncate.c, lib/full-write.c,
9296         lib/fwriteerror.c, lib/getaddrinfo.c, lib/getcwd.c, lib/getdelim.c,
9297         lib/getline.c, lib/getlogin_r.c, lib/getndelim2.c, lib/getnline.c,
9298         lib/getopt1.c, lib/getpass.c, lib/group-member.c, lib/hard-locale.c,
9299         lib/hash-pjw.c, lib/hash.c, lib/human.c, lib/idcache.c,
9300         lib/inet_ntop.c, lib/isdir.c, lib/long-options.c, lib/malloc.c,
9301         lib/memcasecmp.c, lib/memcmp.c, lib/memcoll.c, lib/memcpy.c,
9302         lib/memmove.c, lib/mkdir-p.c, lib/modechange.c, lib/mountlist.c,
9303         lib/open-safer.c, lib/physmem.c, lib/pipe-safer.c, lib/pipe.c,
9304         lib/poll.c, lib/posixver.c, lib/progname.c, lib/progreloc.c,
9305         lib/putenv.c, lib/quote.c, lib/quotearg.c, lib/readline.c,
9306         lib/readlink.c, lib/realloc.c, lib/regex.c, lib/rename.c, lib/rmdir.c,
9307         lib/rpmatch.c, lib/safe-read.c, lib/same.c, lib/save-cwd.c,
9308         lib/savedir.c, lib/sig2str.c, lib/strcspn.c, lib/strerror.c,
9309         lib/stripslash.c, lib/strncasecmp.c, lib/strndup.c, lib/strnlen.c,
9310         lib/strnlen1.c, lib/strsep.c, lib/strstr.c, lib/strtod.c,
9311         lib/strtoimax.c, lib/strtol.c, lib/strverscmp.c, lib/tempname.c,
9312         lib/time_r.c, lib/userspec.c, lib/utimecmp.c, lib/version-etc-fsf.c,
9313         lib/version-etc.c, lib/wait-process.c, lib/xalloc-die.c, lib/xgetcwd.c,
9314         lib/xmalloc.c, lib/xmemcoll.c, lib/xnanosleep.c, lib/xreadlink.c,
9315         lib/xsetenv.c, lib/xstrndup.c, lib/xstrtoimax.c, lib/xstrtol.c,
9316         lib/xstrtoumax.c, lib/yesno.c:
9317         Standardize inclusion of config.h.
9318         * lib/__fpending.h, lib/dirfd.h, lib/getdate.h, lib/human.h,
9319         lib/inttostr.h:  Removed inclusion of config.h from header files.
9320         * lib/inttostr.c:  Adjusted in-tree users.
9321         * lib/timespec.h: Remove superfluous warning to include config.h.
9322         * lib/atexit.c, lib/chdir-long.c, lib/chown.c, lib/fchown-stub.c,
9323         lib/getgroups.c, lib/gettimeofday.c, lib/lchown.c, lib/lstat.c,
9324         lib/mkdir.c, lib/mkstemp.c, lib/nanosleep.c, lib/openat.c, lib/raise.c,
9325         lib/readtokens0.c, lib/readutmp.c, lib/unlinkdir.c: Guard inclusion of
9326         config.h with HAVE_CONFIG_H.
9327
9328 2005-09-19  Jim Meyering  <jim@meyering.net>
9329
9330         * modules/pathmax (License): Change to LGPL.
9331
9332 2005-09-19  Derek Price  <derek@ximbiot.com>
9333
9334         * config/srclist.txt: glibc's glob.h is now in lib/glob-libc.h.
9335
9336 2005-09-19  Bruno Haible  <bruno@clisp.org>
9337
9338         * gnulib-tool (import): Provide default for --tests-base.
9339
9340 2005-09-19  Bruno Haible  <bruno@clisp.org>
9341
9342         * doc/quote.texi: New file, extracted from gnulib.texi.
9343         * doc/ctime.texi: New file, extracted from gnulib.texi.
9344         * doc/inet_ntoa.texi: New file, extracted from gnulib.texi.
9345         * doc/gnulib-tool.texi: New file, extracted from gnulib.texi.
9346         * doc/gnulib.texi: Include them.
9347
9348 2005-09-18  Bruno Haible  <bruno@clisp.org>
9349
9350         Portability fix.
9351         * gnulib-tool (func_readlink): New function.
9352         (func_ln_if_changed): Use it.
9353
9354 2005-09-18  Bruno Haible  <bruno@clisp.org>
9355
9356         * gnulib-tool: Support --with-tests also with --import.
9357         (func_emit_tests_Makefile_am): Use variables $m4base and $testsbase.
9358         (func_import): Use variables $testsbase and $inctests. Emit a
9359         gl_TESTS_BASE form into gnulib-cache.m4. Create $testsbase/Makefile.am.
9360         Remind the user to add AC_CONFIG_FILES($testsdir/Makefile) and
9361         SUBDIRS += $testsdir.
9362         (func_create_testdir): Update.
9363
9364 2005-09-18  Bruno Haible  <bruno@clisp.org>
9365
9366         * gnulib-tool: Revise --dry-run implementation. Use variable $doit
9367         instead of $dry_run.
9368         (func_cp_if_changed, func_mv_if_changed): Remove functions.
9369         (func_ln_if_changed): Don't handle dry-run here.
9370         (func_import): In dry-run mode, detect more precisely which actions
9371         would be performed, and don't use "...ing" verbs.
9372
9373 2005-09-18  Bruno Haible  <bruno@clisp.org>
9374
9375         * gnulib-tool (func_tmpdir): New function, taken from GNU gettextize.
9376         (func_import): Use join on two temporary files instead of three nested
9377         loops, in order to determine which files are new or old.
9378
9379 2005-09-18  Bruno Haible  <bruno@clisp.org>
9380
9381         * gnulib-tool (func_import): Comment out code that spits out the
9382         new files with --dry-run.
9383
9384 2005-09-18  Bruno Haible  <bruno@clisp.org>
9385
9386         * doc/gnulib.texi (Invoking gnulib-tool): 50% rewritten.
9387
9388 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
9389
9390         * lib/stat-time.h: New file.
9391         * lib/timespec.h (ST_TIME_CMP_NS, ST_TIME_CMP, ATIME_CMP, CTIME_CMP):
9392         (MTIME_CMP, TIMESPEC_NS): Remove.  Now done by stat-time.h,
9393         in a different way.
9394         (timespec_cmp): New function.
9395         * lib/utimecmp.c: Include stat-time.h.
9396         (SYSCALL_RESOLUTION): Depend on whether various struct stat
9397         members exist, not on the obsolescent ST_MTIM_NSEC.
9398         (utimecmp): Use the new stat-time functions rater than TIMESPEC_NS.
9399
9400 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
9401
9402         * config/srclist.txt: Remove glibc bug 1033 and uncomment mktime.c.
9403
9404 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
9405
9406         * MODULES.html.sh (File system functions): Add stat-time.
9407         * modules/stat-time: New file.
9408         * modules/timespec (Files): Remove m4/st_mtim.m4; this
9409         is now done in a different way, by the stat-time module.
9410         * modules/utimecmp (Depends-on): Add stat-time.
9411
9412 2005-09-15  Paul Eggert  <eggert@cs.ucla.edu>
9413
9414         * m4/st_mtim.m4: Remove.  Superseded by...
9415         * m4/stat-time.m4: New file.
9416         * m4/timespec.m4 (gl_TIMESPEC): Require AC_C_INLINE.
9417         Do not invoke AC_STRUCT_ST_MTIM_NSEC; no longer needed.
9418
9419 2005-09-15  Derek Price  <derek@ximbiot.com>
9420
9421         * m4/strstr.m4 (gl_FUNC_STRSTR): Don't define strstr here.
9422
9423 2005-09-15  Derek Price  <derek@ximbiot.com>
9424
9425         * lib/regex_internal.h: Blank `pure' for GNUC < 3.
9426         * lib/regex_internal.c: Ditto, using this...
9427         (__GNUC_PREREQ): ...new macro.
9428         * lib/regcomp.c, regexec.c: Blank `always_inline' for GNUC < 3.1
9429         using...
9430         (__GNUC_PREREQ): ...this new macro.
9431
9432         * lib/strstr.h: Include string.h. Define strstr as a macro here.
9433
9434 2005-09-15  Derek Price  <derek@ximbiot.com>
9435             Paul Eggert  <eggert@cs.ucla.edu>
9436
9437         * lib/regcomp.c, regexec.c, regex_internal.c: Back out previous
9438         changes, consolidating in...
9439         * lib/regex_internal.h: ...this file.
9440
9441 2005-09-13  Jim Meyering  <jim@meyering.net>
9442
9443         * lib/canon-host.c: Filter through gnu indent and reword comments
9444         slightly.
9445         * lib/canon-host.h (ch_strerror_r): Tweak cpp indentation and spacing.
9446
9447 2005-09-13  Derek Price  <derek@ximbiot.com>
9448
9449         * lib/canon-host.c (canon_host_r): Set *cherror on memory allocation
9450         failure.
9451         Reported by Jim Meyering  <jim@meyering.net>.
9452
9453 2005-09-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
9454
9455         * lib/base64.c: Typo.
9456         (base64_encode): Put b64str in initialized data section.
9457
9458 2005-09-12  Paul Eggert  <eggert@cs.ucla.edu>
9459
9460         Merge glibc and coreutils changes into gnulib, plus a few
9461         extra fixes.
9462         * lib/md5.c: Use #error rather than a string.
9463         (CYCLIC): New macro, from glibc source.  Use it instead of rol.
9464         * lib/md5.h (__GNUC_PREREQ, __THROW): Define if not defined already.
9465         (__attribute__): Define to empty for non recent-GCC.
9466         (__md5_buffer, __md5_finish_ctx, __md5_init_ctx, __md5_process_block):
9467         (__md5_process_bytes, __md5_read_ctx, __md5_stream):
9468         Renamed from their non-__ counterparts, with new macros replacing
9469         them if not _LIBC.  Add __THROW attribute.
9470         (rol): Remove.
9471         (struct md5_ctx): Align buffer if using GCC.
9472         * lib/sha1.h (struct sha1_ctx): Likewise.
9473         * lib/sha1.c (SWAP): Renamed from the NOTSWAP.  All uses changed.
9474         The old name was backwards.
9475         (NOTSWAP): Remove; not used.
9476         (rol): New macro, moved here from md5.h.
9477         (sha1_process_block): Remove a FIXME that doesn't make sense.
9478
9479 2005-09-12  Derek Price  <derek@ximbiot.com>
9480
9481         Return usable errors from canon-host.
9482         * lib/canon-host.h: New file.
9483         * lib/canon-host.c (canon_host): Wrap...
9484         (canon_host_r): ...this new function, which now relies exclusively on
9485         getaddrinfo.
9486         (ch_strerror): New function.
9487         (last_cherror): New global.
9488         * lib/getaddrinfo.c: Move include of getaddrinfo.h first to test
9489         interface.
9490         (getaddrinfo): Add AI_CANONNAME functionality.  Don't do arithmetic on
9491         void *.
9492         (freeaddrinfo): Free ai->ai_canonname when set.
9493
9494 2005-09-12  Derek Price  <derek@ximbiot.com>
9495
9496         Make canon-host require getaddrinfo.
9497         * m4/canon-host.m4 (gl_CANON_HOST): Remove most dependencies.
9498         AC_LIBSOURCE canon-host.h.  Call...
9499         (gl_PREREQ_CANON_HOST): ...this new function, which requires
9500         gl_GETADDRINFO.
9501         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Compile gai_strerror when needed.
9502
9503 2005-09-12  Derek Price  <derek@ximbiot.com>
9504
9505         * modules/canon-host: Add canon-host.h.  Depend on getaddrinfo.  Make
9506         LGPL.
9507         * modules/getaddrinfo: Add link to opengroup spec.  Depend on strdup.
9508
9509 2005-09-12  Derek Price  <derek@ximbiot.com>
9510
9511         * lib/gai_strerror.c: Include config.h when available.  Include
9512         getaddrinfo.h before other headers to test interface.
9513         Reported by Larry Jones <lawrence.jones@ugs.com>.
9514
9515 2005-09-12  Derek Price  <derek@ximbiot.com>
9516             Paul Eggert  <eggert@cs.ucla.edu>
9517
9518         * modules/glob (Files): Add glob-libc.h.
9519
9520 2005-09-12  Derek Price  <derek@ximbiot.com>
9521             Paul Eggert  <eggert@cs.ucla.edu>
9522
9523         * m4/glob.m4 (gl_GLOB_SUBSTITUTE): AC_LIBSOURCES for glob.c,
9524         glob_.h, glob-libc.h.
9525         (gl_PREREQ_GLOB): Remove _SYS_CDEFS_H hack; no longer needed.
9526
9527 2005-09-12  Derek Price  <derek@ximbiot.com>
9528             Paul Eggert  <eggert@cs.ucla.edu>
9529
9530         * lib/glob-libc.h: Renamed from glob_.h.  The new version is
9531         taken from libc's glob.h, except with '#ifdef __GLOB_GNULIB'
9532         protecting things that should be done only in gnulib contexts.
9533         * lib/glob_.h: New file, containing only the glob things needed for
9534         gnulib.
9535         (GLOB_PREFIX): Remove.  All uses changed to look for __GLOB_GNULIB.
9536         (__GLOB_CONCAT, __GLOB_XCONCAT, __GLOB_ID): Remove; no longer needed.
9537         (glob, globfree, glob_pattern_p): Now defined simply in terms of
9538         rpl_glob, rpl_globfree, rpl_glob_pattern_p.
9539         (__GLOB_GNULIB): New macro, to keep the glob.h changes clearer
9540         and to respect the namespace rules better.
9541
9542 2005-09-08  Simon Josefsson  <jas@extundo.com>
9543
9544         * modules/socklen: New file.
9545
9546 2005-09-08  Simon Josefsson  <jas@extundo.com>
9547
9548         * m4/socklen.m4: New file.
9549
9550 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
9551
9552         * modules/utimens (Files): Add m4/utimbuf.m4, since
9553         m4/utimens.m4 requires gl_CHECK_TYPE_STRUCT_UTIMBUF.
9554         Reported by Sergey Poznyakoff.
9555
9556 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
9557
9558         * lib/glob.c (glob, globfree, __glob_pattern_p): Use old-style function
9559         definitions, since that's the preferred style in glibc.
9560         Fix a minor spacing issue, and update copyright notice to match
9561         glibc's.
9562
9563 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
9564
9565         * config/srclist.txt: Remove glibc bug 1061; it's been fixed.
9566
9567 2005-09-06  Simon Josefsson  <jas@extundo.com>
9568
9569         * lib/getpass.c (getpass): Fix typo, test for HAVE_TCSETATTR and not
9570         TCSETATTR.  Reported by Derek Price <derek@ximbiot.com>.
9571
9572 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
9573
9574         * lib/regex_internal.h (bitset_not): Add parens to avoid gcc -Wall
9575         warning.
9576
9577 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
9578
9579         * config/srclist.txt: Add glibc bug 1302.
9580
9581 2005-09-05  Paul Eggert  <eggert@cs.ucla.edu>
9582
9583         Change bitset word type from unsigned int to unsigned long int,
9584         as this has better performance on typical 64-bit hosts.
9585         Port bitset code to hosts with unusual word sizes.
9586         * lib/regcomp.c (build_equiv_class, build_charclass, build_range_exp):
9587         (build_collating_symbol):
9588         Prefer bitset to re_bitset_ptr_t in prototypes, when the actual
9589         argument is a bitset.  This is merely a style issue, but it makes
9590         it clearer that an entire array is expected.
9591         (re_compile_fastmap_iter, init_dfa, init_word_char, optimize_subexps):
9592         * lib/regcomp.c (lower_subexp, parse_bracket_exp, built_charclass_op):
9593         Port to the case where bitset_word is not the same as unsigned int.
9594         * lib/regex_internal.h (bitset_set, bitset_clear, bitset_contain):
9595         (bitset_not, bitset_merge, bitset_set_all, bitset_mask):
9596         Likewise.
9597         * lib/regexec.c (check_dst_limits_calc_pos_1,
9598         check_subexp_matching_top):
9599         (build_trtable, group_nodes_into_DFAstates):
9600         Likewise.
9601         * lib/regcomp.c (re_compile_fastmap_iter, utf8_sb_map, optimize_utf8):
9602         Don't assume that SBC_MAX is a multiple of BITSET_WORD_BITS.
9603         * lib/regex_internal.h (bitset_set_all, bitset_not): Likewise.
9604         * lib/regexec.c (group_nodes_into_DFAstates): Likewise.
9605         * lib/regcomp.c (utf8_sb_map): Don't assume UINT_MAX == 0xffffffff.
9606         * lib/regcomp.c (optimize_subexps, lower_subexp):
9607         Work even if bitset_word has holes in its bitwise representation.
9608         * lib/regex_internal.h (BITSET_WORD_BITS): Likewise.
9609         * lib/regexec.c (check_dst_limits_calc_pos_1,
9610         check_subexp_matching_top):
9611         Likewise.
9612         * lib/regex_internal.c (re_string_reconstruct):
9613         Don't assume UCHAR_MAX == 255.
9614         * lib/regex_internal.h (bitset_set_all): Likewise.
9615         * lib/regex_internal.h (BITSET_WORD_BITS): Renamed from UINT_BITS.
9616         All uses changed.
9617         (BITSET_WORDS): Renamed from BITSET_UINTS.  All uses changed.
9618         (bitset_word): New type, replacing 'unsigned int' for bitset uses.
9619         All uses changed.
9620         (BITSET_WORD_MAX): New macro.
9621         (bitset_set, bitset_clear, bitset_contain, bitset_empty):
9622         (bitset_set_all, bitset_copy):  Now inline functions, not macros.
9623         (bitset_empty, bitset_copy):
9624         Prefer sizeof (bitset) to multiplying it out ourselves.
9625         (bitset_not_merge): Remove; unused.
9626         (bitset_contain): Return bool, not unsigned int with one bit on.
9627         All callers changed.
9628         * lib/regexec.c (build_trtable): Don't assume bitset has no stricter
9629         alignment than re_node_set; do this by defining a new internal
9630         type struct dests_alloc and using it to allocate memory.
9631
9632 2005-09-05  Bruno Haible  <bruno@clisp.org>
9633
9634         * gnulib-tool (func_import): Fix comparison in handling of symbolic
9635         links.
9636
9637 2005-09-04  Martin Lambers  <marlam@marlam.de>  (tiny change)
9638
9639         * modules/size_max (Makefile.am): Add size_max.h
9640
9641 2005-09-04  Derek Price  <derek@ximbiot.com>
9642
9643         * gnulib-tool (func_import): Fix reversed $symbolic logic.
9644
9645 2005-09-03  Simon Josefsson  <jas@extundo.com>
9646
9647         * gnulib-tool: Fix typo.
9648
9649 2005-09-03  Simon Josefsson  <jas@extundo.com>
9650
9651         * config/srclist.txt: Add glibc bug 1293.
9652
9653 2005-09-03  Derek Price  <derek@ximbiot.com>
9654
9655         * m4/getlogin_r (gl_GETLOGIN_R): Fix cut & paste error.
9656         From Larry Jones <lawrence.jones@ugs.com>.
9657
9658 2005-09-02  Simon Josefsson  <jas@extundo.com>
9659
9660         * modules/socklen: New file.
9661
9662 2005-09-02  Simon Josefsson  <jas@extundo.com>
9663
9664         * modules/havelib: New module.
9665
9666         * modules/gettext, modules/iconv, modules/lock, modules/readline:
9667         Use havelib.
9668
9669 2005-09-02  Paul Eggert  <eggert@cs.ucla.edu>
9670
9671         Check for arithmetic overflow when calculating sizes, to prevent
9672         some buffer-overflow issues.  These patches are conservative, in the
9673         sense that when I couldn't determine whether an overflow was possible,
9674         I inserted a run-time check.
9675         * lib/regex_internal.h (re_xmalloc, re_xrealloc, re_x2realloc): New
9676         macros.
9677         (SIZE_MAX) [!defined SIZE_MAX]: New macro.
9678         (re_alloc_oversized, re_x2alloc_oversized, re_xnmalloc):
9679         (re_xnrealloc, re_x2nrealloc): New inline functions.
9680         * lib/regcomp.c (init_dfa, analyze, build_range_exp,
9681         parse_bracket_exp):
9682         (build_equiv_class, build_charclass): Check for arithmetic overflow
9683         in size expression calculations.
9684         * lib/regex_internal.c (re_string_realloc_buffers):
9685         (build_wcs_upper_buffer, re_node_set_add_intersect):
9686         (re_node_set_init_union, re_node_set_insert, re_node_set_insert_last):
9687         (re_dfa_add_node, register_state): Likewise.
9688         * lib/regexec.c (re_search_stub, re_copy_regs, re_search_internal):
9689         (prune_impossible_nodes, push_fail_stack, set_regs, check_arrival):
9690         (build_trtable, extend_buffers, match_ctx_init, match_ctx_add_entry):
9691         (match_ctx_add_subtop, match_ctx_add_sublast): Likewise.
9692
9693 2005-09-02  Paul Eggert  <eggert@cs.ucla.edu>
9694
9695         * modules/inttostr (Files): Add m4/inttypes_h.m4, m4/stdint_h.m4,
9696         m4/ulonglong.m4.  Problem reported by Martin Lambers.
9697
9698 2005-09-02  Bruno Haible  <bruno@clisp.org>
9699
9700         Support for lib vs. lib64 distinction on biarch platforms.
9701         * m4/lib-prefix.m4 (AC_LIB_PREPARE_MULTILIB): New macro.
9702         (AC_LIB_PREFIX): Require it. Use $acl_libdirstem instead of 'lib'.
9703         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Likewise.
9704
9705 2005-09-02  Bruno Haible  <bruno@clisp.org>
9706
9707         * gnulib-tool (import): In the other first-use case, provide defaults
9708         as well.
9709
9710 2005-09-02  Bruno Haible  <bruno@clisp.org>
9711
9712         * config/srclist.txt: lib-link.m4 and lib-prefix.m4 currently have
9713         patches not yet found in the latest gettext release.
9714
9715 2005-09-01  Paul Eggert  <eggert@cs.ucla.edu>
9716
9717         * lib/glob.c (GET_LOGIN_NAME_MAX): Renamed from LOGIN_NAME_MAX,
9718         to avoid a collision with bits/local_lim.h in glibc.
9719         All uses changed.  Problem reported by Dmitry V. Levin in
9720         <http://sources.redhat.com/bugzilla/show_bug.cgi?id=1060>.
9721
9722         * lib/regex_internal.c (build_wcs_upper_buffer): Fix portability
9723         bugs in int versus size_t comparisons.
9724         (re_string_context_at): Fix bug where the code assumed that
9725         Idx is signed.
9726
9727         Use bool where appropriate.
9728         * lib/regcomp.c (re_set_fastmap): ICASE arg is bool, not int.
9729         All callers changed.
9730         (calc_eclosure_iter): Likewise, for ROOT arg.
9731         (parse_bracket_element): Likewise, for ACCEPT_HYPHEN arg.
9732         (build_charclass_op): Likewise, for NON_MATCH arg.
9733         * lib/regex_internal.c (re_string_allocate, re_string_construct):
9734         (re_string_construct_common): Likewise, for ICASE arg.
9735         * lib/regexec.c (re_search_2_stub, re_search_stub):
9736         Likewise, for RET_LEN arg.
9737         (check_matching): Likewise, for FL_LONGEST_MATCH arg.
9738         (set_regs): Likewise, for FL_BACKTRACK arg.
9739         * lib/regcomp.c (re_compile_fastmap_iter, optimize_utf8):
9740         (duplicate_node_closure, calc_inveclosure, calc_eclosure):
9741         (calc_eclosure_iter, parse_bracket_exp):
9742         Use bool for internal variables that are booleans.
9743         * lib/regexec.c (re_search_internal, check_matching,
9744         proceed_next_node):
9745         (set_regs, build_sifted_states, sift_states_bkref):
9746         (check_arrival_add_next_nodes, check_arrival_expand_ecl_sub):
9747         (expand_bkref_cache, build_trtable, group_nodes_into_DFAstates):
9748         (find_collation_sequence_value):
9749         Likewise.
9750         * lib/regex_internal.c (re_node_set_insert, re_node_set_insert_last):
9751         (re_node_set_compare):
9752         Return bool, not int. All callers changed.
9753         * lib/regexec.c (check_halt_node_context, check_dst_limits):
9754         (build_trtable, check_node_accept): Likewise.
9755         * lib/regex_internal.h: Include stdbool.h.
9756
9757         Fix bugs uncovered when converting to bool.
9758         * lib/regcomp.c (calc_eclosure_iter): Check for storage allocation
9759         failure instead of charging ahead blindly.
9760         * lib/regex_internal.c (register_state): Likewise.
9761         * lib/regexec.c (re_search_2_stub): Use simpler method than boolean
9762         for freeing internal storage.
9763         (group_nodes_into_DFA_states): Use unsigned int, not int, for
9764         bitset pieces used as boolean, to avoid undefined behavior
9765         on hosts that do int overflow checking.
9766
9767 2005-09-01  Paul Eggert  <eggert@cs.ucla.edu>
9768
9769         * config/srclist.txt: Add glibc bugs 1285-1287.
9770
9771 2005-09-01  Jim Meyering  <jim@meyering.net>
9772
9773         * m4/lchown.m4: Require gl_FUNC_CHOWN, for the definition of
9774         CHOWN_MODIFIES_SYMLINK, which is used by lchown.c.
9775         Require gl_STAT_MACROS, too.
9776
9777 2005-09-01  Bruno Haible  <bruno@clisp.org>
9778
9779         * gnulib-tool (import): In the first-use case, provide defaults.
9780
9781 2005-09-01  Bruno Haible  <bruno@clisp.org>
9782
9783         * gnulib-tool (func_import): Remove the .tmp files.
9784
9785 2005-09-01  Bruno Haible  <bruno@clisp.org>
9786
9787         * gnulib-tool (func_import): Fix handling of symbolic links.
9788
9789 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
9790
9791         On 64-bit hosts (where size_t is 64 bits and int is 32 bits), the
9792         old glibc regex code mishandles strings longer than 2**31 bytes.
9793         This patch fixes this when the regex code is used in gnulib
9794         (i.e., outside glibc).
9795
9796         This patch should not affect the use of the regex code inside
9797         glibc.  No doubt this problem also needs to be handled for glibc
9798         as well, but the result will be an incompatible change to the
9799         glibc ABI, and the old ABI will have to be supported too.  That
9800         can be the the subject for another patch.
9801
9802         * lib/regex.h (_REGEX_LARGE_OFFSETS): New feature-test macro,
9803         governing whether the rest of this patch is active.  By default,
9804         the macro is disabled and the patch has no effect.
9805         (regoff_t) [defined _REGEX_LARGE_OFFSETS]: Define to off_t, not int.
9806         (__re_idx_t, __re_size_t, __re_long_size_t): New types.
9807         (struct re_pattern_buffer, re_search, re_search_2, re_match):
9808         (re_match_2, re_set_registers): Use the new types.
9809         * lib/regex_internal.h (Idx, re_hashval_t): New types.
9810         (REG_MISSING, REG_ERROR, REG_VALID_INDEX, REG_VALID_NONZERO_INDEX):
9811         New macros.
9812         (re_node_set, re_charset_t, re_token_t, re_string_realloc_buffers):
9813         (re_string_context_at, bin_tree_t, re_dfastate_t):
9814         (struct re_state_table_entry, state_array_t, re_sub_match_last_t):
9815         (re_sub_match_top_t, re_match_context_t, re_sift_context_t):
9816         (struct re_fail_stack_ent_t, struct re_fail_stack_t, struct re_dfa_t):
9817         (re_string_char_size_at, re_string_wchar_at):
9818         (re_string_elem_size_at):
9819         Use the new types and macros to port to 64-bit hosts.
9820         Use unsigned types for internal values, so that the code
9821         mostly works even for arrays larger than SSIZE_MAX.
9822         * lib/regcomp.c (re_compile_internal, init_dfa, duplicate_node):
9823         (search_duplicated_node, calc_eclosure_iter, fetch_number):
9824         (parse_reg_exp, parse_branch, parse_expression, parse_sub_exp):
9825         (build_equiv_class, build_charclass, re_compile_fastmap_iter):
9826         (free_dfa_content, create_initial_state, optimize_utf8, analyze):
9827         (optimize_subexps, calc_first, link_nfa_nodes, duplicate_node_closure):
9828         (calc_inveclosure, parse_dup_op, build_range_exp):
9829         (build_collating_symbol, parse_bracket_exp, build_charclass_op):
9830         (fetch_number, create_token_tree, mark_opt_subexp):
9831         Likewise.
9832         * lib/regex_internal.c (re_string_construct_common,
9833         create_ci_newstate):
9834         (create_cd_newstate, re_string_allocate, re_string_construct):
9835         (re_string_realloc_buffers, build_wcs_upper_buffer):
9836         (re_string_skip_chars, build_upper_buffer, re_string_translate_buffer):
9837         (re_string_reconstruct, re_string_peek_byte_case):
9838         (re_string_fetch_byte_case, re_string_context_at):
9839         (re_node_set_alloc, re_node_set_init_1, re_node_set_init_2):
9840         (re_node_set_init_copy, re_node_set_add_intersect):
9841         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
9842         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
9843         (re_node_set_remove_at, re_dfa_add_node, calc_state_hash):
9844         (re_acquire_state, re_acquire_state_context, register_state):
9845         Likewise.
9846         * lib/regex.c (match_ctx_init, match_ctx_add_entry,
9847         search_cur_bkref_entry):
9848         (match_ctx_add_subtop, match_ctx_add_sublast, sift_ctx_init):
9849         (re_search_internal, re_search_2_stub, re_search_stub)
9850         (re_copy_regs, check_matching, check_halt_state_context, update_regs):
9851         (push_fail_stack, sift_states_iter_mb, build_sifted_states):
9852         (update_cur_sifted_state, check_dst_limits):
9853         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
9854         (check_subexp_limits, sift_states_bkref, merge_state_array):
9855         (check_subexp_matching_top, get_subexp, get_subexp_sub):
9856         (find_subexp_node, check_arrival, check_arrival_add_next_nodes):
9857         (check_arrival_expand_ecl, check_arrival_expand_ecl_sub):
9858         (expand_bkref_cache, check_node_accept_bytes):
9859         (group_nodes_into_DFAstates, check_node_accept, regexec, re_match):
9860         (re_search, re_match_2, re_search_2, prune_impossible_nodes):
9861         (acquire_init_state_context, check_halt_node_context):
9862         (proceed_next_node, pop_fail_stack, set_regs, free_fail_stack_return):
9863         (sift_states_backward, clean_state_log_if_needed):
9864         (sub_epsilon_src_nodes, add_epsilone_src_nodes, merge_state_with_log):
9865         (find_recover_state, transit_state_sb, transit_state_mb):
9866         (transit_state_bkref, build_trtable, match_ctx_clean):
9867         Likewise.
9868         * lib/regcomp.c (parse_dup_op): Add an extra test if Idx is unsigned,
9869         to work around an assumption that REG_MISSING is negative.
9870
9871         * lib/regcomp.c (re_comp) [defined _REGEX_RE_COMP || defined _LIBC]:
9872         (seek_collating_symbol_entry) [defined _LIBC]:
9873         (lookup_collation_sequence_value) [defined _LIBC]:
9874         (build_range_exp, build_collating_symbol) [defined _LIBC]:
9875         Use prototypes rather than old-style function definitions.
9876         * lib/regexec.c (re_exec) [defined _REGEX_RE_COMP || defined _LIBC]:
9877         (transit_state_sb) [0]:
9878         (find_collation_sequence_value) [defined _LIBC]: Likewise.
9879
9880         * lib/regexec.c (re_search_internal): Simplify update of rm_so and
9881         rm_eo.
9882
9883         * lib/regcomp.c (re_compile_fastmap_iter, init_dfa, init_word_char):
9884         (optimize_subexps, lower_subexp):
9885         Don't assume 1<<31 has defined behavior on hosts with 32-bit int,
9886         since the signed shift might overflow.  Use 1u<<31 instead.
9887         * lib/regex_internal.h (bitset_set, bitset_clear, bitset_contain):
9888         Likewise.
9889         * lib/regexec.c (check_dst_limits_calc_pos_1,
9890         check_subexp_matching_top): Likewise.
9891
9892         * lib/regcomp.c (optimize_subexps, lower_subexp):
9893         Use CHAR_BIT rather than 8, for clarity.
9894         * lib/regexec.c (check_dst_limits_calc_pos_1):
9895         (check_subexp_matching_top): Likewise.
9896         * lib/regcomp.c (init_dfa): Make table_size unsigned, so that we don't
9897         have to worry about portability issues when shifting it left.
9898         Remove no-longer-needed test for table_size > 0.
9899         * lib/regcomp.c (parse_sub_exp): Do not shift more bits than there are
9900         in a word, as the resulting behavior is undefined.
9901         * lib/regexec.c (check_dst_limits_calc_pos_1): Likewise;
9902         in one case, a <= should have been an <, and in another case the
9903         whole test was missing.
9904         * lib/regex_internal.h (BYTE_BITS): Remove.  All uses changed to
9905         the standard name CHAR_BIT.
9906         * lib/regexec.c (match_ctx_add_entry): Don't assume that ~0 == -1;
9907         this is not true on one's complement and signed-magnitude hosts.
9908
9909         * lib/regex_internal.h (re_sub_match_top_t): Remove unused member
9910         next_last_offset.
9911         (struct re_dfa_t): Remove unused member states_alloc.
9912         * lib/regcomp.c (init_dfa): Don't initialize unused members.
9913
9914 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
9915
9916         * m4/regex.m4 (gl_REGEX): Require AC_SYS_LARGEFILE, Define
9917         _REGEX_LARGE_OFFSETS).  Test for regoff_t/off_t bug in 64-bit
9918         and large-file glibc and in 32-bit large-file Solaris.
9919
9920 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
9921
9922         * lib/regex_internal.c (re_string_reconstruct): Don't assume buffer
9923         lengths fit in regoff_t; this isn't true if regoff_t is the same
9924         width as size_t.
9925         * lib/regex.c (re_search_internal): 5th arg is LAST_START
9926         (= START + RANGE) instead of RANGE.  This avoids overflow
9927         problems when regoff_t is the same width as size_t.
9928         All callers changed.
9929         (re_search_2_stub): Check for overflow when adding the
9930         sizes of the two strings.
9931         (re_search_stub): Check for overflow when adding START
9932         to RANGE; if it occurs, substitute the extreme value.
9933
9934 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
9935
9936         * config/srclist.txt: Add glibc bugs 1273, 1278-1282, 1284.
9937
9938 2005-08-31  Jim Meyering  <jim@meyering.net>
9939
9940         * lib/regcomp.c (search_duplicated_node): Make first pointer arg
9941         a pointer-to-const.
9942         * lib/regex_internal.c (create_ci_newstate, create_cd_newstate):
9943         (register_state): Likewise.
9944         * lib/regexec.c (search_cur_bkref_entry, check_dst_limits):
9945         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
9946         (group_nodes_into_DFAstates): Likewise.
9947
9948 2005-08-31  Jim Meyering  <jim@meyering.net>
9949
9950         * check-module: Add a FIXME comment.
9951
9952 2005-08-31  Eric Blake  <ebb9@byu.net>
9953
9954         * modules/unistd-safer (Files): Add unistd--.h.
9955         * modules/stdio-safer (Files): Add stdio--.h.
9956
9957 2005-08-31  Derek Price  <derek@ximbiot.com>
9958
9959         * lib/getdelim.c (getdelim): Return EOF on EOF.
9960         Reported by Larry Jones <lawrence.jones@ugs.com>.
9961
9962 2005-08-31  Bruno Haible  <bruno@clisp.org>
9963
9964         Avoid unnecessary diffs in the generated lib/Makefile.am.
9965         * gnulib-tool (func_emit_lib_Makefile_am): Don't write the cmd into
9966         the generated files.
9967         (func_import): Don't set cmd.
9968
9969 2005-08-31  Bruno Haible  <bruno@clisp.org>
9970
9971         * lib/strstr.c: Include <stddef.h>, for NULL.
9972         * lib/strcasestr.c: Likewise.
9973         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
9974
9975 2005-08-31  Bruno Haible  <bruno@clisp.org>
9976
9977         * gnulib-tool: New option --macro-prefix.
9978         (func_import): Use macro_prefix.
9979         (import): Handle option --macro-prefix.
9980
9981 2005-08-31  Bruno Haible  <bruno@clisp.org>
9982
9983         * gnulib-tool (import): Rename most ac_* variables to cached_*.
9984         Also use new variables cached_lgpl, cached_libtool.
9985
9986 2005-08-31  Bruno Haible  <bruno@clisp.org>
9987
9988         * gnulib-tool (func_import): Require AC_GNU_SOURCE etc. instead of
9989         always instantiating them.
9990
9991 2005-08-31  Bruno Haible  <bruno@clisp.org>
9992
9993         * gnulib-tool (func_import): Read the previous cached settings
9994         from gnulib-cache.m4 and gnulib-comp.m4. Remove files that were
9995         earlier added by gnulib but are now dropped. Warn when a gnulib file
9996         overwrites a non-gnulib file.
9997
9998 2005-08-31  Bruno Haible  <bruno@clisp.org>
9999
10000         * gnulib-tool (func_import): Generate two files gnulib-cache.m4 and
10001         gnulib-comp.m4 instead of a single gnulib.m4, to make it easy for
10002         projects that don't keep autogenerated files in CVS. Put into
10003         actioncmd only the specified modules, not the transitive closure.
10004
10005 2005-08-31  Bruno Haible  <bruno@clisp.org>
10006
10007         * gnulib-tool (func_import): Fix defaulting of $libname and $libtool.
10008         Create directories that shall be filled.
10009         (import): Don't look for gl_* macros in configure.ac. Recurse across
10010         all directories containing a gnulib-cache.m4 files, if meaningful.
10011
10012 2005-08-31  Bruno Haible  <bruno@clisp.org>
10013
10014         * gnulib-tool (func_import): Emit also a stub for gl_LIBTOOL.
10015         (import): Set seen_libtool when we see gl_LIBTOOL.
10016
10017 2005-08-31  Bruno Haible  <bruno@clisp.org>
10018
10019         * gnulib-tool (func_import): Also copy m4/gnulib-tool.m4. Omit
10020         declaration macro definitions from generated gnulib.m4.
10021
10022 2005-08-30  "Oskar Liljeblad"  <oskar@osk.mine.nu>
10023
10024         * lib/iconvme.h: Add prototype for iconv_alloc.
10025
10026 2005-08-29  Simon Josefsson  <jas@extundo.com>
10027
10028         * lib/iconvme.c: Fix errno.
10029
10030 2005-08-29  Bruno Haible  <bruno@clisp.org>
10031
10032         * gnulib-tool: Enclose all occurrences of $destdir in "...", so
10033         that it works when the directory contains spaces.
10034
10035 2005-08-29  Bruno Haible  <bruno@clisp.org>
10036
10037         * gnulib-tool (import): Avoid unnecessary spaces in $avoidlist.
10038
10039 2005-08-29  Bruno Haible  <bruno@clisp.org>
10040
10041         * gnulib-tool (func_import): Emit more comments into gnulib.m4.
10042         Emit more advice.
10043
10044 2005-08-29  Bruno Haible  <bruno@clisp.org>
10045         and Stepan Kasal  <kasal@ucw.cz>
10046
10047         * check-module: If more parameters are given, check each of them
10048         separately; add more exceptions, as noted by Jim Meyering.
10049         (check_module): New procedure.
10050         (%exempt_header): Now contains all exceptions.
10051
10052 2005-08-29  Ben Pfaff  <blp@cs.stanford.edu>
10053
10054         * modules/byteswap (Makefile.am): Fix rule to not assume GNU make.
10055
10056 2005-08-29  "Oskar Liljeblad"  <oskar@osk.mine.nu>
10057
10058         * lib/iconvme.c: Split iconv_string into iconv_alloc.
10059
10060 2005-08-28  Bruno Haible  <bruno@clisp.org>
10061
10062         * m4/gnulib-tool.m4: New file.
10063
10064 2005-08-27  Jim Meyering  <jim@meyering.net>
10065
10066         * modules/unistd-safer (Files): Add pipe-safer.c.
10067         * modules/fcntl-safer (Files): Add creat-safer.c.
10068
10069 2005-08-27  Jim Meyering  <jim@meyering.net>
10070
10071         * m4/stdlib-safer.m4: New file.  From coreutils.
10072         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Add stdio--.h.
10073         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Add creat-safer.c to the
10074         AC_LIBSOURCES list and arrange to compile it via AC_LIBOBJ.
10075         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Likewise, add pipe-safer.c.
10076         Add pipe-safer.c and unistd--.h to the AC_LIBSOURCES list.
10077
10078 2005-08-27  Jim Meyering  <jim@meyering.net>
10079
10080         * lib/fopen-safer.c: Merge minor changes from coreutils.
10081         * lib/dup-safer.c: Likewise.
10082         * lib/fd-safer.c: Likewise.
10083
10084         Merge from coreutils.
10085         * lib/stdio--.h: New file.
10086         * lib/stdlib--.h: New file.
10087         * lib/mkstemp-safer.c: New file.
10088
10089         GNU tar needs these.
10090         * lib/pipe-safer.c: New file.
10091         * lib/creat-safer.c: New file.
10092         * lib/fcntl--.h (creat): Define to creat_safer.
10093         * lib/fcntl-safer.h: Include <sys/types.h> and declare creat_safer.
10094         * lib/unistd--.h (pipe): Define to pipe_safer.
10095         * lib/unistd-safer.h: Declare pipe_safer.
10096
10097 2005-08-26  Simon Josefsson  <jas@extundo.com>
10098
10099         * lib/getpass.c: Use _WIN32 instead of WIN32, suggested by Bruno
10100         Haible <bruno@clisp.org>.
10101
10102 2005-08-26  Paul Eggert  <eggert@cs.ucla.edu>
10103
10104         * lib/regex_internal.h: Remove all references to
10105         RE_NO_INTERNAL_PROTOTYPES; no longer neeeded now that we assume C89
10106         or better.
10107         (bitset_not, bitset_merge, bitset_not_merge):
10108         (bitset_mask, re_string_allocate, re_string_construct):
10109         (re_string_reconstruct, re_string_destruct, re_string_elem_size_at):
10110         (re_string_char_size_at, re_string_wchar_at, re_string_peek_byte_case):
10111         (re_string_fetch_byte_case, re_node_set_alloc, re_node_set_init_1):
10112         (re_node_set_init_2, re_node_set_init_copy, re_node_set_add_intersect):
10113         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
10114         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
10115         (re_node_set_remove_at, re_dfa_add_node, re_acquire_state):
10116         (re_acquire_state_context):
10117         Remove unnecessary forward decls.
10118         (re_string_char_size_at, re_string_wchar_at, re_string_elem_size_at):
10119         Put __attribute at function definition,
10120         now that the function decl has been removed.
10121         * lib/regex_internal.c (re_string_peek_byte_case):
10122         (re_string_fetch_byte_case, re_node_set_compare, re_node_set_contains):
10123         Likewise.
10124
10125 2005-08-25  Stepan Kasal  <kasal@ucw.cz>
10126
10127         * m4/regex.m4: Add AC_PREREQ(2.50).
10128         (gl_REGEX): If --with-included-regex was given, skip the autodetection.
10129
10130 2005-08-25  Simon Josefsson  <jas@extundo.com>
10131
10132         * m4/getpass.m4: Check for termios.h, tcgetattr, tcsetattr, and
10133         __fsetlocking.
10134
10135 2005-08-25  Simon Josefsson  <jas@extundo.com>
10136
10137         * lib/getpass.c: Add WIN32 implementation.  Conditionalize use of
10138         termios.h, tcgetattr, tcsetattr and __fsetlocking.  Remove some
10139         GLIBC specific code.
10140
10141 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
10142
10143         Make regex safe for g++.  This fixes one real bug (an "err"
10144         that should have been "*err").  g++ problem reported by
10145         Sam Steingold.
10146         * lib/regex_internal.h (re_calloc): New macro, consistent with
10147         re_malloc etc.  All callers of calloc changed to use re_calloc.
10148         * lib/regex_internal.c (build_wcs_upper_buffer): Return reg_errcode_t,
10149         not int.  All callers changed.
10150         * lib/regcomp.c (re_compile_fastmap_iter): Don't use
10151         alloca (mb_cur_max); just use an array of size MB_LEN_MAX.
10152         * lib/regexec.c (push_fail_stack): Use re_realloc, not realloc.
10153         (find_recover_state): Change "err" to "*err"; this fixes what
10154         appears to be a real bug.
10155         (check_arrival_expand_ecl_sub): Be consistent about reg_errcode_t
10156         versus int.
10157
10158 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
10159
10160         * modules/regex (Depends-on): Add malloc, since the code
10161         assumes that !malloc(0) means failure.
10162
10163 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
10164
10165         * lib/regexec.c (set_regs): Don't alloca with an unbounded size.
10166
10167         alloca modernization/simplification for regex.
10168         * lib/regex.c: Remove portability cruft for alloca.  This no longer
10169         needs to be at the start of the file, and can be moved into
10170         regex_internal.h and simplified.
10171         * lib/regex_internal.h: Include <alloca.h>.
10172         (__libc_use_alloca) [!defined _LIBC]: New macro.
10173         * lib/regexec.c (build_trtable): Remove "#ifdef _LIBC", since the code
10174         now works outside glibc.
10175
10176 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
10177
10178         * config/srclist.txt: Add glibc bugs 1241, 1245.
10179
10180 2005-08-25  Jim Meyering  <jim@meyering.net>
10181
10182         * lib/open-safer.c: Include <config.h>.
10183         Otherwise, we'd lose LARGEFILE support in any file using
10184         e.g. "fcntl--.h"
10185
10186 2005-08-25  Bruno Haible  <bruno@clisp.org>
10187
10188         * m4/minmax.m4: Require autoconf 2.52.
10189         (gl_MINMAX_IN_HEADER): Add comments. Use m4_pushdef/m4_popdef instead
10190         of define/undefine. Use AS_TR_SH and AS_TR_CPP as more robust
10191         alternatives of translit over the alphabet.
10192         Based on a patch from Stepan Kasal <kasal@ucw.cz>.
10193
10194 2005-08-24  Simon Josefsson  <jas@extundo.com>
10195
10196         * tests/test-getpass.c: New file.
10197
10198 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
10199
10200         * m4/regex.m4 (gl_REGEX): Use POSIX-compliant spellings when testing
10201         for GNU regex features.
10202
10203 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
10204
10205         * lib/regcomp.c (regerror): 2nd arg is 'restrict', as per POSIX.
10206         * lib/regex.h (regerror): Likewise.
10207
10208         * lib/regex.c: Do not include <sys/types.h>, as POSIX no longer
10209         requires this.  (The code never needed it.)
10210
10211         * lib/regcomp.c, regex_internal.c, regex_internal.h, regexec.c:
10212         All uses of recently-renamed identifiers changed to use the new,
10213         POSIX-compliant names.  The code will build and run just fine
10214         without these changes, but it's better to eat our own dog food
10215         and use the standard-conforming names.
10216
10217         * lib/regex.h: Fix a multitude of POSIX name space violations.
10218         These changes have an effect only for programs that define
10219         _POSIX_C_SOURCE, _POSIX_SOURCE, or _XOPEN_SOURCE; they
10220         do not change anything for programs compiled in the normal way.
10221         Also, there is no effect on the ABI.
10222
10223         (_REGEX_SOURCE): New macro.
10224         Do not include <stddef.h> if _XOPEN_SOURCE and VMS are both
10225         defined and _GNU_SOURCE is not; this fixes a name space violation.
10226
10227         Rename the following macros to obey POSIX requirements.
10228         The old names are still visible as macros if _REGEX_SOURCE is defined.
10229         (REG_BACKSLASH_ESCAPE_IN_LISTS): renamed from
10230         RE_BACKSLASH_ESCAPE_IN_LISTS.
10231         (REG_BK_PLUS_QM): renamed from RE_BK_PLUS_QM.
10232         (REG_CHAR_CLASSES): renamed from RE_CHAR_CLASSES.
10233         (REG_CONTEXT_INDEP_ANCHORS): renamed from RE_CONTEXT_INDEP_ANCHORS.
10234         (REG_CONTEXT_INDEP_OPS): renamed from RE_CONTEXT_INDEP_OPS.
10235         (REG_CONTEXT_INVALID_OPS): renamed from RE_CONTEXT_INVALID_OPS.
10236         (REG_DOT_NEWLINE): renamed from RE_DOT_NEWLINE.
10237         (REG_DOT_NOT_NULL): renamed from RE_DOT_NOT_NULL.
10238         (REG_HAT_LISTS_NOT_NEWLINE): renamed from RE_HAT_LISTS_NOT_NEWLINE.
10239         (REG_INTERVALS): renamed from RE_INTERVALS.
10240         (REG_LIMITED_OPS): renamed from RE_LIMITED_OPS.
10241         (REG_NEWLINE_ALT): renamed from RE_NEWLINE_ALT.
10242         (REG_NO_BK_BRACES): renamed from RE_NO_BK_BRACES.
10243         (REG_NO_BK_PARENS): renamed from RE_NO_BK_PARENS.
10244         (REG_NO_BK_REFS): renamed from RE_NO_BK_REFS.
10245         (REG_NO_BK_VBAR): renamed from RE_NO_BK_VBAR.
10246         (REG_NO_EMPTY_RANGES): renamed from RE_NO_EMPTY_RANGES.
10247         (REG_UNMATCHED_RIGHT_PAREN_ORD): renamed from
10248         RE_UNMATCHED_RIGHT_PAREN_ORD.
10249         (REG_NO_POSIX_BACKTRACKING): renamed from RE_NO_POSIX_BACKTRACKING.
10250         (REG_NO_GNU_OPS): renamed from RE_NO_GNU_OPS.
10251         (REG_DEBUG): renamed from RE_DEBUG.
10252         (REG_INVALID_INTERVAL_ORD): renamed from RE_INVALID_INTERVAL_ORD.
10253         (REG_IGNORE_CASE): renamed from RE_ICASE.  This renaming is a bit
10254         unusual, since we can't clash with the POSIX REG_ICASE.
10255         (REG_CARET_ANCHORS_HERE): renamed from RE_CARET_ANCHORS_HERE.
10256         (REG_CONTEXT_INVALID_DUP): renamed from RE_CONTEXT_INVALID_DUP.
10257         (REG_NO_SUB): renamed from RE_NO_SUB.
10258         (REG_SYNTAX_EMACS): renamed from RE_SYNTAX_EMACS.
10259         (REG_SYNTAX_AWK): renamed from RE_SYNTAX_AWK.
10260         (REG_SYNTAX_GNU_AWK): renamed from RE_SYNTAX_GNU_AWK.
10261         (REG_SYNTAX_POSIX_AWK): renamed from RE_SYNTAX_POSIX_AWK.
10262         (REG_SYNTAX_GREP): renamed from RE_SYNTAX_GREP.
10263         (REG_SYNTAX_EGREP): renamed from RE_SYNTAX_EGREP.
10264         (REG_SYNTAX_POSIX_EGREP): renamed from RE_SYNTAX_POSIX_EGREP.
10265         (REG_SYNTAX_ED): renamed from RE_SYNTAX_ED.
10266         (REG_SYNTAX_SED): renamed from RE_SYNTAX_SED.
10267         (_REG_SYNTAX_POSIX_COMMON): renamed from _RE_SYNTAX_POSIX_COMMON.
10268         (REG_SYNTAX_POSIX_BASIC): renamed from RE_SYNTAX_POSIX_BASIC.
10269         (REG_SYNTAX_POSIX_MINIMAL_BASIC): renamed from
10270         RE_SYNTAX_POSIX_MINIMAL_BASIC.
10271         (REG_SYNTAX_POSIX_EXTENDED): renamed from RE_SYNTAX_POSIX_EXTENDED.
10272         (REG_SYNTAX_POSIX_MINIMAL_EXTENDED): renamed from
10273         RE_SYNTAX_POSIX_MINIMAL_EXTENDED.
10274         (REG_DUP_MAX): renamed from RE_DUP_MAX.  No need to undef it.
10275         (REG_UNALLOCATED): Renamed from REGS_UNALLOCATED.
10276         (REG_REALLOCATE): Renamed from REGS_REALLOCATE.
10277         (REG_FIXED): Renamed from REGS_FIXED.
10278         (REG_NREGS): Renamed from RE_NREGS.
10279
10280         (REG_ICASE, REG_NEWLINE, REG_NOSUB): Do not depend on the values
10281         of other REG_* macros, since POSIX says the user is allowed to
10282         #undef these macros selectively.
10283
10284         (reg_errcode_t): Update comment stating what other tables need
10285         to be consistent.
10286
10287         Rename the following enum values to obey POSIX requirements.
10288         The old names are still visible as macros.
10289         (_REG_ENOSYS): Renamed from REG_ENOSYS.  Define even if _XOPEN_SOURCE
10290         is not defined, since GNU is supposed to be a superset of POSIX as
10291         much as possible, and since we want reg_errcode_t to be a signed
10292         type for implementation consistency.
10293         (_REG_NOERROR): Renamed from REG_NOERROR.
10294         (_REG_NOMATCH): Renamed from REG_NOMATCH.
10295         (_REG_BADPAT): Renamed from REG_BADPAT.
10296         (_REG_ECOLLATE): Renamed from REG_ECOLLATE.
10297         (_REG_ECTYPE): Renamed from REG_ECTYPE.
10298         (_REG_EESCAPE): Renamed from REG_EESCAPE.
10299         (_REG_ESUBREG): Renamed from REG_ESUBREG.
10300         (_REG_EBRACK): Renamed from REG_EBRACK.
10301         (_REG_EPAREN): Renamed from REG_EPAREN.
10302         (_REG_EBRACE): Renamed from REG_EBRACE.
10303         (_REG_BADBR): Renamed from REG_BADBR.
10304         (_REG_ERANGE): Renamed from REG_ERANGE.
10305         (_REG_ESPACE): Renamed from REG_ESPACE.
10306         (_REG_BADRPT): Renamed from REG_BADRPT.
10307         (_REG_EEND): Renamed from REG_EEND.
10308         (_REG_ESIZE): Renamed from REG_ESIZE.
10309         (_REG_ERPAREN): Renamed from REG_ERPAREN.
10310         (REG_ENOSYS, REG_NOERROR, REG_NOMATCH, REG_BADPAT, REG_ECOLLATE):
10311         (REG_ECTYPE, REG_EESCAPE, REG_ESUBREG, REG_EBRACK, REG_EPAREN):
10312         (REG_EBRACE, REG_BADBR, REG_ERANGE, REG_ESPACE, REG_BADRPT, REG_EEND):
10313         (REG_ESIZE, REG_ERPAREN): Now macros, not enum constants.
10314
10315         (_REG_RE_NAME, _REG_RM_NAME): New macros.
10316         (REG_TRANSLATE_TYPE): Renamed from RE_TRANSLATE_TYPE.  All uses
10317         changed.  But support the old name if the new one is not defined
10318         and if _REGEX_SOURCE.
10319
10320         Change the following member names in struct re_pattern_buffer.
10321         The old names are still supported if !_REGEX_SOURCE.
10322         The new names are always supported, regardless of _REGEX_SOURCE.
10323         (re_buffer): Renamed from buffer.
10324         (re_allocated): Renamed from allocated.
10325         (re_used): Renamed from used.
10326         (re_syntax): Renamed from syntax.
10327         (re_fastmap): Renamed from fastmap.
10328         (re_translate): Renamed from translate.
10329         (re_can_be_null): Renamed from can_be_null.
10330         (re_regs_allocated): Renamed from regs_allocated.
10331         (re_fastmap_accurate): Renamed from fastmap_accurate.
10332         (re_no_sub): Renamed from no_sub.
10333         (re_not_bol): Renamed from not_bol.
10334         (re_not_eol): Renamed from not_eol.
10335         (re_newline_anchor): Renamed from newline_anchor.
10336
10337         Change the following member names in struct re_registers.
10338         The old names are still supported if !_REGEX_SOURCE.
10339         The new names are always supported, regardless of _REGEX_SOURCE.
10340         (rm_num_regs): Renamed from num_regs.
10341         (rm_start): Renamed from start.
10342         (rm_end): Renamed from end.
10343
10344         (re_set_syntax, re_compile_pattern, re_compile_fastmap):
10345         (re_search, re_search_2, re_match, re_match_2, re_set_registers):
10346         Prepend __ to parameter names.
10347
10348         Undo yesterday's changes.
10349
10350 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
10351
10352         * config/srclist.txt: Remove glibc bug 1233 and add 1236, which
10353         supersedes it. Add glibc bugs 1237, 1238, 1240.  Comment out
10354         lib/regex.c.
10355
10356 2005-08-24  Jim Meyering  <jim@meyering.net>
10357
10358         Sync from coreutils.
10359         * m4/fcntl-safer.m4: New file.
10360
10361         * m4/xgetcwd.m4: Use AC_LIBSOURCES and AC_LIBOBJ to indicate source
10362         and object files for this module.
10363
10364 2005-08-24  Jim Meyering  <jim@meyering.net>
10365
10366         Sync from coreutils.
10367         * lib/fcntl--.h, lib/fcntl-safer.h, lib/open-safer.c: New files.
10368
10369 2005-08-24  Jim Meyering  <jim@meyering.net>
10370
10371         * modules/xgetcwd (Makefile.am): Remove `lib_SOURCES += ...' line,
10372         now that xgetcwd.m4 requires xgetcwd.c and xgetcwd.h.
10373
10374 2005-08-24  Jim Meyering  <jim@meyering.net>
10375
10376         * modules/fcntl-safer: New module.
10377         * modules/fts (Depends-on): Add fcntl-safer.
10378         * MODULES.html.sh (File descriptor based Input/Output):
10379         Add fcntl-safer.
10380
10381 2005-08-24  Bruno Haible  <bruno@clisp.org>
10382
10383         Support for unit test modules.
10384         * modules/README: Mention tests modules.
10385         * modules/TEMPLATE-TESTS: New file.
10386         * gnulib-tool: New options --extract-tests-module, --with-tests and
10387         --tests-base (unused for the moment).
10388         (testsbase, inctests): New variables.
10389         (func_all_modules): Exclude TEMPLATE-TESTS and *-tests.
10390         (func_verify_module): Exclude TEMPLATE-TESTS.
10391         (func_verify_nontests_module, func_verify_tests_module): New functions.
10392         (func_get_dependencies): Add implicit dependency for tests modules.
10393         (func_get_tests_module): New function.
10394         (func_modules_transitive_closure): When --with-tests was specified,
10395         include the unit tests as well, unless explicitly avoided.
10396         (func_emit_lib_Makefile_am): Ignore the tests modules here.
10397         (func_emit_tests_Makefile_am): New function.
10398         (func_create_testdir): When --with-tests was specified, emit a
10399         tests/ directory.
10400         * MODULES.html.sh (Future developments): Update.
10401
10402 2005-08-24  Bruno Haible  <bruno@clisp.org>
10403
10404         * modules/tls-tests: New file.
10405         * tests/test-tls.c: New file, from GNU gettext.
10406
10407 2005-08-24  Bruno Haible  <bruno@clisp.org>
10408
10409         * modules/lock-tests: New file.
10410         * tests/test-lock.c: New file, from GNU gettext.
10411
10412 2005-08-24  Bruno Haible  <bruno@clisp.org>
10413
10414         * lib/lock.h: Add multiple inclusion guard.
10415         * lib/tls.h: Add multiple inclusion guard.
10416
10417 2005-08-24  Bruno Haible  <bruno@clisp.org>
10418
10419         * gnulib-tool: Add support for the --aux-dir option to
10420         --create-testdir, --create-megatestdir, --test, --megatest.
10421         (func_create_testdir, func_create_megatestdir): Optionally emit a
10422         AC_CONFIG_AUX_DIR directive.
10423         (create-testdir, create-megatestdir, test, megatest): Provide a
10424         default value for $auxdir.
10425
10426 2005-08-24  Bruno Haible  <bruno@clisp.org>
10427
10428         * gnulib-tool (import): Use compound statement instead of subshell
10429         where possible.
10430
10431 2005-08-24  Bruno Haible  <bruno@clisp.org>
10432
10433         * gnulib-tool (import): Change --aux-dir default to "build-aux".
10434
10435 2005-08-24  Bruno Haible  <bruno@clisp.org>
10436
10437         * gnulib-tool (func_version): Update.
10438
10439 2005-08-24  Bruno Haible  <bruno@clisp.org>
10440
10441         * gnulib-tool (func_import, func_create_testdir,
10442         func_create_megatestdir): Quote all autoconf macro arguments.
10443
10444 2005-08-24  Bruno Haible  <bruno@clisp.org>
10445
10446         * gnulib-tool (func_create_megatestdir): Call autoreconf without the
10447         option --force, because --force causes the aclocal.m4 of each
10448         subdirectory to be newer than the corresponding config.h.in.
10449
10450 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
10451
10452         * m4/regex.m4 (gl_INCLUDED_REGEX): Remove; no longer used.
10453         All contents moved to gl_REGEX.
10454         (gl_REGEX): Don't bother checking whether lib/regex.c exists;
10455         assume that it does.
10456
10457 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
10458
10459         * lib/regex.h (REG_NOSYS)
10460         [!defined _XOPEN_SOURCE && 200112L <= _POSIX_C_SOURCE]:
10461         Define, since POSIX requires it as of 2001.
10462         (_REG_ENOSYS)
10463         [! (defined _XOPEN_SOURCE || 200112L <= _POSIX_C_SOURCE)]:
10464         New private symbol, used to keep the enum signed in all cases.
10465         * lib/regex.h (RE_NO_EMPTY_RANGES): Fix doc bug reported by James
10466         Youngman in
10467         <http://lists.gnu.org/archive/html/bug-gnulib/2005-07/msg00132.html>.
10468
10469         * lib/regex_internal.c (re_string_skip_chars, register_state):
10470         (calc_state_hash):
10471         Remove forward decls; no longer needed now that we use prototypes.
10472         * lib/regexec.c (acquire_init_state_context, check_halt_node_context):
10473         (proceed_next_node, pop_fail_stack, sub_epsilon_src_nodes):
10474         (clean_state_log_if_needed): Likewise.
10475
10476 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
10477
10478         * config/srclist.txt: Add glibc bugs 1231-1233.
10479
10480 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
10481
10482         Fix problems reported by Sam Steingold in
10483         <http://lists.gnu.org/archive/html/bug-gnulib/2005-08/msg00007.html>.
10484         * lib/regexec.c (sift_states_bkref): Fix portability bug: the code
10485         assumed that reg_errcode_t is a signed type, which is not
10486         necessarily true if _XOPEN_SOURCE is not defined.
10487         * lib/regex_internal.c (calc_state_hash): Put 'inline' before type,
10488         since some compilers warn about it otherwise.
10489
10490 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
10491
10492         * lib/regcomp.c (create_initial_state): Remove duplicate decl.
10493         (init_word_char, create_initial_state, duplicate_node_closure):
10494         (fetch_token, peek_token_bracket, build_range_exp):
10495         (build_collating_symbol): Remove forward decls; no longer needed
10496         now that we use prototypes.
10497
10498         * lib/regcomp.c:
10499         (re_compile_pattern, re_set_syntax, re_compile_fastmap):
10500         (re_compile_fastmap_iter, regcomp, regerror, regfree):
10501         (re_compile_internal, init_dfa, init_word_char, free_workarea_compile):
10502         (create_initial_state, optimize_utf8, analyze, postorder, preorder):
10503         (optimize_subexps, lower_subexps, lower_subexp, calc_first, calc_next):
10504         (link_nfa_nodes, duplicate_node_closure, search_duplicated_node):
10505         (duplicate_node, calc_inveclosure, calc_eclosure, calc_eclosure_iter):
10506         (fetch_token, peek_token, peek_token_bracket, parse, parse_reg_exp):
10507         (parse_branch, parse_expression, parse_sub_exp, parse_dup_op):
10508         (build_range_exp, build_collating_symbol, parse_bracket_exp):
10509         (parse_bracket_element, parse_bracket_symbol, build_equiv_class):
10510         (build_charclass, build_charclass_op, fetch_number, create_tree):
10511         (create_token_tree, mark_opt_subexp, duplicate_tree):
10512         Use prototypes rather than old-style definitions.
10513
10514         * lib/regex_internal.c:
10515         (re_string_allocate, re_string_construct, re_string_realloc_buffers):
10516         (re_string_construct_common, build_wcs_buffer, build_wcs_upper_buffer):
10517         (re_string_skip_chars, build_upper_buffer, re_string_translate_buffer):
10518         (re_string_reconstruct, re_string_peek_byte_case):
10519         (re_string_fetch_byte_case, re_string_destruct, re_string_context_at):
10520         (re_node_set_alloc, re_node_set_init_1, re_node_set_init_2):
10521         (re_node_set_init_copy, re_node_set_add_intersect):
10522         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
10523         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
10524         (re_node_set_remove_at, re_dfa_add_node, calc_state_hash):
10525         (re_acquire_state, re_acquire_state_context, register_state):
10526         (create_ci_newstate, create_cd_newstate, free_state):
10527         Likewise.
10528         * lib/regexec.c (regexec, re_match, re_search, re_match_2,
10529         re_search_2):
10530         (re_search_2_stub, re_search_stub, re_copy_regs, re_set_registers):
10531         (re_search_internal, prune_impossible_nodes):
10532         (acquire_init_state_context, check_matching, static):
10533         (check_halt_node_context, check_halt_state_context, proceed_next_node):
10534         (push_fail_stack, pop_fail_stack, set_regs, free_fail_stack_return):
10535         (update_regs, sift_states_backward, build_sifted_states):
10536         (clean_state_log_if_needed, merge_state_array):
10537         (update_cur_sifted_state, add_epsilon_src_nodes):
10538         (sub_epsilon_src_nodes, check_dst_limits, check_dst_limits_calc_pos_1):
10539         (check_dst_limits_calc_pos, check_subexp_limits, sift_states_bkref):
10540         (sift_states_iter_mb, transit_state, merge_state_with_log, static):
10541         (find_recover_state, check_subexp_matching_top, transit_state_mb):
10542         (transit_state_bkref, get_subexp, get_subexp_sub, find_subexp_node):
10543         (check_arrival, check_arrival_add_next_nodes):
10544         (check_arrival_expand_ecl, check_arrival_expand_ecl_sub):
10545         (expand_bkref_cache, build_trtable, group_nodes_into_DFAstates):
10546         (check_node_accept_bytes, check_node_accept, extend_buffers):
10547         (match_ctx_init, match_ctx_clean, match_ctx_free, match_ctx_add_entry):
10548         (search_cur_bkref_entry, match_ctx_add_subtop, match_ctx_add_sublast):
10549         (sift_ctx_init):
10550         Likewise.
10551
10552         * lib/regex_internal.h:
10553         (re_string_allocate, re_string_construct, re_string_reconstruct):
10554         (re_string_realloc_buffers, build_wcs_buffer, build_wcs_upper_buffer):
10555         (build_upper_buffer, re_string_translate_buffer, re_string_destruct):
10556         (re_string_elem_size_at, re_string_char_size_at, re_string_wchar_at):
10557         (re_string_context_at, re_string_peek_byte_case):
10558         (re_string_fetch_byte_case): Declare even if RE_NO_INTERNAL_PROTOTYPES
10559         is defined, since we now use prototypes always.
10560
10561         * lib/regex.h (_RE_ARGS): Remove.  No longer needed, since we assume
10562         C89 or better.  All uses removed.
10563
10564 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
10565
10566         * config/srclist.txt: Add glibc bugs 1220-1227.
10567
10568 2005-08-20  Jim Meyering  <jim@meyering.net>
10569
10570         * lib/regexec.c (regexec, re_search_stub) [!_LIBC]: Omit declaration
10571         of unused local, dfa.
10572
10573 2005-08-20  Bruno Haible  <bruno@clisp.org>
10574
10575         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_GNU_SOURCE.
10576
10577 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
10578
10579         * lib/regex_internal.c (re_string_realloc_buffers, re_node_set_insert):
10580         (re_node_set_insert_last, re_dfa_add_node):
10581         Rename local variables to avoid GCC shadowing warnings.
10582
10583 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
10584
10585         * lib/regex_internal.c (re_acquire_state, re_acquire_state_context)
10586         [defined lint]: Suppress bogus uninitialized-variable warnings.
10587
10588         * lib/regcomp.c (duplicate_node): Return new index, not an error code,
10589         and let the caller return REG_ESPACE if out of space.  This
10590         removes an uninitialied-variable warning with GCC 4.0.1, and also
10591         avoids taking the address of a local variable.  All callers
10592         changed.
10593
10594 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
10595
10596         * config/srclist.txt: Comment out $LIBCSRC/posix/regex_internal.c,
10597         $LIBCSRC/posix/regexec.c.
10598         Add glibc bug 1217 for regcomp.c.
10599
10600 2005-08-19  Jim Meyering  <jim@meyering.net>
10601
10602         * lib/regexec.c (proceed_next_node): Redo local variables to
10603         avoid GCC shadowing warnings.
10604
10605 2005-08-18  Bruno Haible  <bruno@clisp.org>
10606
10607         * lib/strstr.c (strstr): Fix return value in multibyte case.
10608         * lib/strcasestr.c (strcasestr): Likewise.
10609
10610 2005-08-17  Paul Eggert  <eggert@cs.ucla.edu>
10611
10612         * lib/regex.h: Remove useless space-before-tab.  From coreutils.
10613
10614 2005-08-17  Jim Meyering  <jim@meyering.net>
10615
10616         Make the %s format (seconds since the epoch) work for a negative
10617         number and when used with a zero-padded field width, e.g. %015s.
10618
10619         * lib/strftime.c (my_strftime): Move the `do_number_sign_and_padding'
10620         label so that it precedes the code to set `digits'.  Otherwise,
10621         %0Ns wouldn't work.  Before this change, `date -d @-22 +%05s' would
10622         print `00-22'.  Now, it prints `-0022', as it should.
10623
10624 2005-08-17  Bruno Haible  <bruno@clisp.org>
10625
10626         * modules/strstr (Files): Add m4/mbrtowc.m4.
10627         (Depends-on): Add mbuiter.
10628
10629 2005-08-17  Bruno Haible  <bruno@clisp.org>
10630
10631         * modules/strcasestr: New file.
10632         * MODULES.html.sh (String handling, based on ANSI C 89): Add
10633         strcasestr.
10634
10635 2005-08-17  Bruno Haible  <bruno@clisp.org>
10636
10637         * modules/strcase (Depends-on): Add mbuiter. Remove strnlen1, mbchar.
10638
10639 2005-08-17  Bruno Haible  <bruno@clisp.org>
10640
10641         * modules/mbuiter: New file.
10642         * MODULES.html.sh (Extended multibyte and wide character utilities):
10643         Add mbuiter.
10644
10645 2005-08-17  Bruno Haible  <bruno@clisp.org>
10646
10647         * m4/strstr.m4 (gl_FUNC_STRSTR): Use the replacement function always.
10648         (gl_PREREQ_STRSTR): Use gl_FUNC_MBRTOWC.
10649
10650 2005-08-17  Bruno Haible  <bruno@clisp.org>
10651
10652         * m4/strcasestr.m4: New file.
10653
10654 2005-08-17  Bruno Haible  <bruno@clisp.org>
10655
10656         * lib/strstr.h: Ignore HAVE_STRSTR, always declare the gnulib function.
10657         * lib/strstr.c: Completely rewritten, with multibyte locale support.
10658
10659 2005-08-17  Bruno Haible  <bruno@clisp.org>
10660
10661         * lib/strcasestr.h: New file.
10662         * lib/strcasestr.c: New file.
10663
10664 2005-08-17  Bruno Haible  <bruno@clisp.org>
10665
10666         * lib/strcasecmp.c: Use mbuiter.h.
10667
10668 2005-08-17  Bruno Haible  <bruno@clisp.org>
10669
10670         * lib/mbuiter.h: New file.
10671
10672 2005-08-16  Paul Eggert  <eggert@cs.ucla.edu>
10673
10674         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Do not override the results
10675         of gl_GETOPT_SUBSTITUTE.  That way, if both gl_GETOPT_SUBSTITUTE
10676         and gl_GETOPT are both invoked via different paths (as happens
10677         with GNU tar CVS because it uses both argp and getopt), the former
10678         wins.
10679
10680 2005-08-16  Bruno Haible  <bruno@clisp.org>
10681
10682         * modules/tls: New file.
10683         * MODULES.html.sh (Multithreading): Add tls.
10684
10685 2005-08-16  Bruno Haible  <bruno@clisp.org>
10686
10687         * modules/strnlen1: New file.
10688         * MODULES.html.sh (String handling): Add strnlen1.
10689
10690 2005-08-16  Bruno Haible  <bruno@clisp.org>
10691
10692         * modules/strcase (Files): Add m4/mbrtowc.m4.
10693         (Depends-on): Add strnlen1, mbchar.
10694
10695 2005-08-16  Bruno Haible  <bruno@clisp.org>
10696
10697         * modules/mbiter: New file.
10698         * MODULES.html.sh (Extended multibyte and wide character utilities):
10699         Add mbiter.
10700
10701 2005-08-16  Bruno Haible  <bruno@clisp.org>
10702
10703         * modules/mbfile: New file.
10704         * MODULES.html.sh (Extended multibyte and wide character utilities):
10705         Add mbfile.
10706
10707 2005-08-16  Bruno Haible  <bruno@clisp.org>
10708
10709         * modules/mbchar: New file.
10710         * MODULES.html.sh (Extended multibyte and wide character utilities):
10711         New section.
10712
10713 2005-08-16  Bruno Haible  <bruno@clisp.org>
10714
10715         * m4/tls.m4: New file, from GNU gettext.
10716
10717 2005-08-16  Bruno Haible  <bruno@clisp.org>
10718
10719         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Use the replacement function
10720         always.
10721         (gl_PREREQ_STRCASECMP): Use gl_FUNC_MBRTOWC.
10722
10723 2005-08-16  Bruno Haible  <bruno@clisp.org>
10724
10725         * m4/mbiter.m4: New file.
10726
10727 2005-08-16  Bruno Haible  <bruno@clisp.org>
10728
10729         * m4/mbfile.m4: New file.
10730
10731 2005-08-16  Bruno Haible  <bruno@clisp.org>
10732
10733         * m4/mbchar.m4: New file.
10734
10735 2005-08-16  Bruno Haible  <bruno@clisp.org>
10736
10737         * lib/tls.h: New file, from GNU gettext.
10738         * lib/tls.c: New file, from GNU gettext.
10739
10740 2005-08-16  Bruno Haible  <bruno@clisp.org>
10741
10742         * lib/strnlen1.h: New file.
10743         * lib/strnlen1.c: New file.
10744
10745 2005-08-16  Bruno Haible  <bruno@clisp.org>
10746
10747         * lib/strcasecmp.c (struct mbiter_multi): Remove at_end field.
10748         (mbi_init): Update.
10749         (mbi_avail, mbi_advance): Let the iteration end before the terminating
10750         NUL byte, not after it.
10751
10752 2005-08-16  Bruno Haible  <bruno@clisp.org>
10753
10754         * lib/strcase.h (strcasecmp): Add note in comments.
10755         * lib/strncasecmp.c: Use code from strcasecmp.c.
10756         * lib/strcasecmp.c: Use mbchar module. Define private mbiter variant.
10757         (strcasecmp): Work correctly in multibyte locales.
10758
10759 2005-08-16  Bruno Haible  <bruno@clisp.org>
10760
10761         * lib/mbiter.h: New file.
10762
10763 2005-08-16  Bruno Haible  <bruno@clisp.org>
10764
10765         * lib/mbfile.h: New file.
10766
10767 2005-08-16  Bruno Haible  <bruno@clisp.org>
10768
10769         * lib/mbchar.h: New file.
10770         * lib/mbchar.c: New file.
10771
10772 2005-08-16  Bruno Haible  <bruno@clisp.org>
10773
10774         * lib/mbchar.h (mb_cmp, mb_casecmp): Order the invalid characters after
10775         the valid ones. Makes the comparison operations transitive:
10776         cmp (a, b) < 0 && cmp (b, c) < 0 ==> cmp (a, c) < 0.
10777         * lib/strcasecmp.c (strcasecmp): Use mb_casecmp.
10778
10779 2005-08-15  Simon Josefsson  <jas@extundo.com>
10780
10781         * modules/ssize_t (License): Change to 'unlimited'.
10782
10783         * gnulib-tool (sed_extract_prog): Recognize 'unlimited' license.
10784
10785 2005-08-15  Paul Eggert  <eggert@cs.ucla.edu>
10786
10787         * config/srclist.txt: Comment out $LIBCSRC/posix/regex.h.
10788         Add comments for each pending glibc patch.
10789
10790 2005-08-15  Bruno Haible  <bruno@clisp.org>
10791
10792         * lib/regex.h (__restrict_arr): Don't define to __restrict if
10793         __cplusplus is defined.
10794
10795 2005-08-14  Jim Meyering  <jim@meyering.net>
10796
10797         Sync from coreutils.
10798
10799         * lib/fts-cycle.c (setup_dir, enter_dir, leave_dir, free_dir):
10800         Use the hash-table-based cycle-detection code not just when
10801         FTS_TIGHT_CYCLE_CHECK if specified, but also with FTS_LOGICAL.
10802         Reported by James Youngman in
10803         <http://lists.gnu.org/archive/html/bug-gnulib/2005-08/msg00011.html>.
10804         * lib/fts_.h: Mention that with FTS_LOGICAL, we use
10805         FTS_TIGHT_CYCLE_CHECK.
10806         * lib/fts.c (fts_cross_check) [FTS_DEBUG]:
10807         s/active_dir_ht/fts_cycle.ht/. This lets us compile with -DFTS_DEBUG,
10808         once again.
10809         * lib/fts.c [! _LIBC]: Include "lstat.h" rather than rolling our own.
10810         * lib/fts.c (fd_safer): Remove decl.
10811         Include fcntl--.h rather than unistd-safer.h
10812         (fts_safe_changedir): Don't call fd_safer; no longer needed
10813         now that we include fcntl--.h.
10814
10815 2005-08-12  Simon Josefsson  <jas@extundo.com>
10816
10817         * modules/getndelim2: Use ssize_t module.
10818         * modules/getnline: Likewise.
10819         * modules/safe-read: Likewise.
10820         * modules/xreadlink: Likewise.
10821
10822         * modules/ssize_t: New file.
10823
10824 2005-08-12  Simon Josefsson  <jas@extundo.com>
10825
10826         * m4/readline.m4: Look for termcap, curses or ncurses if required.
10827
10828 2005-08-12  Simon Josefsson  <jas@extundo.com>
10829
10830         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
10831         ssize_t.
10832
10833 2005-08-12  Simon Josefsson  <jas@extundo.com>
10834
10835         * MODULES.html.sh (Extra functions based on ANSI C 89: Misc): Add
10836         readline, getdelim and check_version.
10837         (Support for systems lacking ISO C 99: Sizes of integer types):
10838         Add size_max.
10839
10840 2005-08-12  Bruno Haible  <bruno@clisp.org>
10841
10842         * m4/readline.m4 (gl_FUNC_READLINE): Look for ncurses first.
10843
10844 2005-08-11  Simon Josefsson  <jas@extundo.com>
10845
10846         * modules/readline: New file.
10847
10848         * modules/strnlen (Files): Add strnlen.h.
10849
10850 2005-08-11  Simon Josefsson  <jas@extundo.com>
10851
10852         * m4/readline.m4: New file.
10853
10854 2005-08-11  Simon Josefsson  <jas@extundo.com>
10855
10856         * lib/readline.h, readline.c: New file.
10857
10858 2005-08-11  Simon Josefsson  <jas@extundo.com>
10859
10860         * doc/gnulib.texi (Initial import, Finishing touches): Mention
10861         gl_AVOID.
10862
10863 2005-08-11  Bruno Haible  <bruno@clisp.org>
10864
10865         * lib/strnlen.h (strnlen): Change parameter name to match comment.
10866
10867 2005-08-10  Stepan Kasal  <kasal@ucw.cz>
10868
10869         * m4/onceonly_2_57.m4: Really require Autoconf 2.57.
10870
10871 2005-08-10  Simon Josefsson  <jas@extundo.com>
10872
10873         * tests/test-iconvme.c: New file.
10874
10875 2005-08-10  Simon Josefsson  <jas@extundo.com>
10876
10877         * m4/strnlen.m4: New file.
10878
10879         * m4/strndup.m4: Don't check for strnlen declaration, done in
10880         strnlen.m4.
10881
10882 2005-08-10  Simon Josefsson  <jas@extundo.com>
10883
10884         * lib/strndup.c: Use strnlen.h.
10885
10886         * lib/strnlen.h: New file.
10887
10888 2005-08-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
10889
10890         * README: Typos.
10891
10892 2005-08-02  Simon Josefsson  <jas@extundo.com>
10893
10894         * modules/readline: New file.
10895
10896 2005-08-02  Simon Josefsson  <jas@extundo.com>
10897
10898         * modules/getdelim: New file.
10899
10900         * modules/getline: Rewrite, don't use getndelim2.
10901
10902 2005-08-02  Simon Josefsson  <jas@extundo.com>
10903
10904         * m4/getline.m4: Separate out getdelim stuff into separate module.
10905
10906         * m4/getdelim.m4: New file.
10907
10908 2005-08-02  Simon Josefsson  <jas@extundo.com>
10909
10910         * lib/getline.h, getline.c: Rewrite.
10911
10912         * lib/getdelim.h, lib/getdelim.c: New files, ported from glibc.
10913
10914 2005-07-31  Bruno Haible  <bruno@clisp.org>
10915
10916         * lib/lock.h (gl_lock_initializer): New macro.
10917         (gl_lock_define_initialized): Use it.
10918         (gl_rwlock_initializer): New macro.
10919         (gl_rwlock_define_initialized): Use it.
10920         (gl_recursive_lock_initializer): New macro.
10921         (gl_recursive_lock_define_initialized): Use it.
10922
10923 2005-07-30  Karl Berry  <karl@gnu.org>
10924
10925         * doc/gnulib.texi (Initial import): mention -I$(top_builddir)/lib.
10926         Report from Ben Pfaff, regarding getopt.
10927
10928 2005-07-26  Paul Eggert  <eggert@cs.ucla.edu>
10929
10930         Add support to getopt for Emacs, which doesn't use LIBOBJS in the
10931         normal way.
10932         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE_HEADER): New macro.
10933         (gl_GETOPT_SUBSTITUTE): Use it.  Invoke gl_PREREQ_GETOPT.
10934         (gl_GETOPT_IFELSE, gl_GETOPT_CHECK_HEADERS): New macros.
10935         (gl_GETOPT): Use the new macros.  Most of the implementation
10936         is moved to the new macros.  This is for programs like Emacs
10937         that don't want all the functionality of gl_GETOPT.
10938
10939 2005-07-26  Bruno Haible  <bruno@clisp.org>
10940
10941         * m4/lock.m4: Update from GNU gettext.
10942
10943 2005-07-26  Bruno Haible  <bruno@clisp.org>
10944
10945         * lib/lock.h: Update from GNU gettext.
10946         * lib/lock.c: Update from GNU gettext.
10947
10948 2005-07-25  Paul Eggert  <eggert@cs.ucla.edu>
10949
10950         * m4/regex.m4 (gl_INCLUDED_REGEX): Use AC_RUN_IFELSE instead of the
10951         obsolescent AC_TRY_RUN.  Include the default includes files, for
10952         'exit'.
10953
10954 2005-07-24  Bruno Haible  <bruno@clisp.org>
10955
10956         * modules/visibility: New file.
10957         * MODULES.html.sh (Misc): Add visibility.
10958
10959 2005-07-24  Bruno Haible  <bruno@clisp.org>
10960
10961         * m4/visibility.m4: New file.
10962
10963 2005-07-24  Bruno Haible  <bruno@clisp.org>
10964
10965         * doc/visibility.texi: New file.
10966
10967 2005-07-22  Bruno Haible  <bruno@clisp.org>
10968
10969         * modules/alloca-opt (Makefile.am): Remove explicit dependency on
10970         $(ALLOCA_H), redundant through BUILT_SOURCES.
10971         * modules/argz (Makefile.am): Remove explicit dependency on $(ARGZ_H),
10972         redundant through BUILT_SOURCES.
10973         * modules/byteswap (Makefile.am): Remove explicit dependency on
10974         $(BYTESWAP_H), redundant through BUILT_SOURCES.
10975         * modules/fnmatch (Makefile.am): Remove explicit dependency on
10976         $(FNMATCH_H), redundant through BUILT_SOURCES.
10977         * modules/getopt (Makefile.am): Remove explicit dependency on
10978         $(GETOPT_H), redundant through BUILT_SOURCES.
10979         * modules/glob (Makefile.am): Remove explicit dependency on $(GLOB_H),
10980         redundant through BUILT_SOURCES.
10981         * modules/poll (Makefile.am): Remove explicit dependency on $(POLL_H),
10982         redundant through BUILT_SOURCES.
10983         * modules/stdbool (Makefile.am): Remove explicit dependency on
10984         $(STDBOOL_H), redundant through BUILT_SOURCES.
10985         * modules/stdint (Makefile.am): Remove explicit dependency on
10986         $(STDINT_H), redundant through BUILT_SOURCES.
10987         * modules/sysexits (Makefile.am): Add $(SYSEXITS_H) to BUILT_SOURCES.
10988         Remove explicit dependency on $(SYSEXITS_H).
10989         Reported by Alexandre Duret-Lutz <adl@src.lip6.fr>.
10990
10991 2005-07-18  Simon Josefsson  <jas@extundo.com>
10992
10993         * lib/check-version.c (check_version): Accept identical versions too.
10994
10995 2005-07-18  Bruno Haible  <bruno@clisp.org>
10996
10997         * modules/lock: New file.
10998         * MODULES.html.sh (Multithreading): New section.
10999
11000 2005-07-18  Bruno Haible  <bruno@clisp.org>
11001
11002         * m4/lock.m4: New file, from GNU gettext.
11003
11004 2005-07-18  Bruno Haible  <bruno@clisp.org>
11005
11006         * lib/lock.h: New file, from GNU gettext.
11007         * lib/lock.c: New file, from GNU gettext.
11008
11009 2005-07-18  Bruno Haible  <bruno@clisp.org>
11010
11011         * lib/lock.h (gl_once_t): New type.
11012         (gl_once_define, gl_once): New macros.
11013         * lib/lock.c (fresh_once): New variable.
11014         (glthread_once, glthread_once_call, glthread_once_singlethreaded): New
11015         functions.
11016
11017 2005-07-16  Simon Josefsson  <jas@extundo.com>
11018
11019         * doc/gnulib.texi (Library version handling): Add ELF symbol collision
11020         workaround, suggested by Bruno.
11021
11022 2005-07-15  Paul Eggert  <eggert@cs.ucla.edu>
11023
11024         * modules/xalloc (Depends-on): Add xalloc-die.
11025         * modules/xvasprintf (Depends-on): Add xalloc-die.
11026
11027 2005-07-15  Paul Eggert  <eggert@cs.ucla.edu>
11028
11029         * lib/quotearg.c: Add translator comment suggested by Bruno Haible,
11030         with a minor change.
11031
11032 2005-07-15  Bruno Haible  <bruno@clisp.org>
11033
11034         * m4/poll.m4 (gl_FUNC_POLL): Check against MacOS X 10.4 poll() bug.
11035         When using lib/poll.c, define poll as rpl_poll.
11036
11037 2005-07-14  Paul Eggert  <eggert@cs.ucla.edu>
11038
11039         * modules/argp (Depends-on): Remove unlocked-io.
11040
11041 2005-07-14  Derek Price  <derek@ximbiot.com>
11042
11043         * m4/glob.m4 (gl_GLOB): Cache glob interface check result.  Add check
11044         for glob symlink bug.
11045
11046 2005-07-14  Bruno Haible  <bruno@clisp.org>
11047
11048         * m4/argp.m4 (gl_ARGP): Remove invocation of gl_FUNC_GLIBC_UNLOCKED_IO.
11049         Instead, test for *_unlocked function declarations directly.
11050
11051 2005-07-11  Simon Josefsson  <jas@extundo.com>
11052
11053         * modules/size_max: New file.
11054
11055         * modules/xsize: Depend on size_max module for size_max.m4.
11056
11057 2005-07-11  Simon Josefsson  <jas@extundo.com>
11058
11059         * lib/size_max.h: New file.
11060
11061 2005-07-11  Paul Eggert  <eggert@cs.ucla.edu>
11062
11063         * lib/version-etc-fsf.c (version_etc_copyright): Parameterize the
11064         copyright symbol and the year.
11065         * lib/version-etc.c (COPYRIGHT_YEAR): New constant.
11066         (version_etc_va): Use parameterized copyright notice.
11067         Reword to conform to the current GNU coding standards.
11068
11069 2005-07-11  Karl Berry  <karl@gnu.org>
11070
11071         * doc/gnulib.texi (Quoting): new node.
11072         (Initial import): more info, from Patrice.
11073
11074 2005-07-11  Bruno Haible  <bruno@clisp.org>
11075
11076         * gnulib-tool (func_usage): Document option --avoid.
11077         (Command line options): Handle --avoid.
11078         (func_acceptable): New function.
11079         (func_modules_transitive_closure): Use it.
11080
11081 2005-07-11  Bruno Haible  <bruno@clisp.org>
11082
11083         * MODULES.html.sh: Use shortcut URLs to the www.opengroup.org site.
11084         Reported by Jim Meyering.
11085
11086 2005-07-10  Bruno Haible  <bruno@clisp.org>
11087
11088         * m4/size_max.m4 (gl_SIZE_MAX): Cast ~(size_t)0 back to size_t.
11089         Needed when size_t is smaller than 'unsigned int'.
11090         Reported by Paul Eggert.
11091
11092 2005-07-09  Sergey Poznyakoff  <gray@gnu.org.ua>
11093
11094         * modules/argp (Depends-on): Add unlocked-io
11095
11096 2005-07-09  Sergey Poznyakoff  <gray@gnu.org.ua>
11097
11098         * lib/argp-namefrob.h: Include unlocked-io.h. Removed unnecessary
11099         block of defines.
11100
11101 2005-07-08  Paul Eggert  <eggert@cs.ucla.edu>
11102
11103         * config/srclist.txt: Comment out regcomp.c, since we have a porting
11104         fix now.
11105
11106 2005-07-08  Eric Blake  <ebb9@byu.net>  (tiny change)
11107         and Paul Eggert  <eggert@cs.ucla.edu>
11108
11109         * lib/regcomp.c (init_dfa, build_range_exp): Store __btowc value
11110         in wint_t, not wchar_t.  Remove now-unnecessary cast.
11111
11112 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
11113
11114         * modules/regex (Files): Add lib/regex_internal.c,
11115         lib/regex_internal.h, lib/regexec.c, lib/regcomp.c, m4/codeset.m4.
11116         (Depends-on): Add extensions.
11117         (Makefile.am): Remove lib_SOURCES; now done by m4 code.
11118
11119 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
11120
11121         * m4/backupfile.m4 (gl_BACKUPFILE): Use AC_CHECK_FUNCS_ONCE on
11122         pathconf.
11123         * m4/same.m4 (gl_SAME): Likewise.
11124         Require AC_SYS_LONG_FILE_NAMES; bug reported by Gerrit P. Haase.
11125
11126         * m4/regex.m4: Adjust to new libc regex implementation.
11127         (gl_INCLUDED_REGEX): Add AC_LIBSOURCES for
11128         all the .c and .h parts of (the new) regex.
11129         Quote the m4 stuff better.
11130         Check for RE_ICASE bug of old gnulib.
11131         Check for REG_STARTEND of recent libc.
11132         Rename local variables from jm_* to gl_*.
11133         Quote operand of "test -f".
11134         Say "recent enough" version of libc, not "version 2".
11135         (gl_PREREQ_REGEX): Remove AC_FUNC_ALLOCA, since alloca is a
11136         prerequisite module.  Remove AC_HEADER_STDC; no longer needed.
11137         Check for locale.h, isblank, mbrtowc, wcrtomb, wcscoll.
11138         Remove check for btowc, isascii.
11139         Require AM_LANGINFO_CODESET.
11140
11141 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
11142
11143         * lib/regex.c, regex.h: Sync from libc.
11144         * lib/regcomp.c, lib/regexec_internal.c, lib/regex_internal.h:
11145         * lib/regexec.c:
11146         New files, synced from libc, except that regex_internal.h
11147         currently has a small porting fix.
11148
11149 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
11150
11151         * config/srclist.txt: Add regcomp.c, regex.c, regex.h,
11152         regex_internal.c, regexec.c.
11153         Add regex_internal.h too, but as a comment, since the libc version
11154         is currently broken in gnulib mode.
11155
11156 2005-07-06  Paul Eggert  <eggert@cs.ucla.edu>
11157
11158         Support programs like Emacs that use gnulib but not gettext.
11159         * MODULES.html.sh (Internationalization functions): Add gettext-h.
11160         * modules/gettext-h: New file.
11161         * modules/gettext (Files): Remove lib/gettext.h.
11162         (Depends-on): Add gettext-h.
11163         (Makefile.am): Remove lib_SOURCES.
11164         * modules/argmatch, modules/c-stack, modules/closeout:
11165         * modules/copy-file, modules/csharpcomp, modules/csharpexec:
11166         * modules/execute, modules/file-type, modules/getaddrinfo:
11167         * modules/getopt, modules/human, modules/javacomp:
11168         * modules/javaexec, modules/mkdir-p, modules/obstack:
11169         * modules/openat, modules/pagealign_alloc, modules/pipe:
11170         * modules/quotearg, modules/regex, modules/rpmatch:
11171         * modules/unicodeio, modules/userspec, modules/version-etc:
11172         * modules/wait-process, modules/xalloc-die, modules/xmemcoll:
11173         * modules/xsetenv:
11174         Depend on gettext-h, not gettext.
11175
11176 2005-07-05  Paul Eggert  <eggert@cs.ucla.edu>
11177
11178         * gnulib-tool (func_import): Add support for 'public domain' license.
11179         * modules/alloca, modules/atexit, modules/memmove:
11180         Now public domain, not GPL.
11181         * modules/dup2, modules/getpagesize, modules/malloc, modules/memset:
11182         * modules/realloc, modules/strerror, modules/strtod:
11183         Now LGPL, not GPL.
11184
11185 2005-07-05  Bruno Haible  <bruno@clisp.org>
11186
11187         * m4/mbrtowc.m4 (gl_FUNC_MBRTOWC): Upgrade to version from current
11188         autoconf CVS. Needed for mingw.
11189
11190 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
11191
11192         Remove the dependency of the strftime module on the tzset module.
11193         * modules/strftime (Depends-on): Remove dependency on tzset.
11194
11195 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
11196
11197         Remove the dependency of the strftime module on the tzset module.
11198         * m4/strftime.m4 (gl_FUNC_STRFTIME): Don't require
11199         gl_FUNC_TZSET_CLOBBER.
11200
11201 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
11202
11203         Remove the dependency of the strftime module on the tzset module.
11204         * lib/strftime.c (my_strftime)
11205         [! defined _LIBC && ! HAVE_RUN_TZSET_TEST]:
11206         Copy the input structure, to work around some of the bug with
11207         Solaris 2.5.1 and Solaris 2.6.  If you still care about these old
11208         Solaris releases, you should also use the tzset module, but we won't
11209         require it as a dependency any more since we don't want LGPLed code
11210         to depend on GPLed code.
11211
11212 2005-07-02  Jim Meyering  <jim@meyering.net>
11213
11214         * m4/chown.m4, cloexec.m4, dup2.m4, fsusage.m4:
11215         * m4/getcwd-path-max.m4, getcwd.m4, mkstemp.m4, mountlist.m4:
11216         * m4/pagealign_alloc.m4, save-cwd.m4, unistd-safer.m4:
11217         Don't check for fcntl.h, and don't test for HAVE_FCNTL_H.
11218
11219 2005-07-02  Jim Meyering  <jim@meyering.net>
11220
11221         * lib/backupfile.c (backup_args): Change a `0' to NULL.
11222
11223 2005-07-01  Paul Eggert  <eggert@cs.ucla.edu>
11224
11225         * lib/xnanosleep.c: Include timespec.h, since OpenBSD 3.4 <time.h>
11226         declares only 'struct timespec;' (!).
11227
11228 2005-07-01  Jim Meyering  <jim@meyering.net>
11229
11230         * lib/chown.c, cloexec.c, dup-safer.c, dup2.c, fsusage.c, getcwd.c:
11231         * lib/getloadavg.c, mountlist.c, openat.h, pagealign_alloc.c:
11232         * lib/save-cwd.c, tempname.c:
11233         Assume HAVE_FCNTL_H (i.e., include <fcntl.h> unconditionally,
11234         and don't include <sys/file.h>).
11235
11236 2005-06-29  Jim Meyering  <jim@meyering.net>
11237
11238         * lib/mkdir-p.c (make_dir_parents): Don't apply sizeof to a hard-coded
11239         type name.  Use the variable name instead.
11240         * lib/idcache.c (getuser, getuidbyname, getgroup, getgidbyname):
11241         Likewise.
11242
11243 2005-06-28  Simon Josefsson  <jas@extundo.com>
11244
11245         * modules/check-version (Files): Add check-version.m4.
11246
11247 2005-06-28  Simon Josefsson  <jas@extundo.com>
11248
11249         * m4/check-version.m4: New file, suggested by Jim Meyering
11250         <jim@meyering.net>.
11251
11252 2005-06-28  Simon Josefsson  <jas@extundo.com>
11253
11254         * lib/check-version.h, lib/check-version.c: New files.
11255
11256 2005-06-28  Simon Josefsson  <jas@extundo.com>
11257
11258         * lib/base64.c (base64_encode): Indent.  Rename 'b64' to avoid
11259         collision with global variable.  Better indentation.  Don't
11260         increment buffer pointer beyond buffer end.  Based on comments
11261         from Paul Eggert <eggert@cs.ucla.edu>.
11262
11263         * lib/base64.h: Indent.
11264
11265 2005-06-28  Simon Josefsson  <jas@extundo.com>
11266
11267         * doc/gnulib.texi (Library version handling): New section.
11268
11269 2005-06-28  Jim Meyering  <jim@meyering.net>
11270
11271         * check-module (find_included_lib_files): Hard-code another
11272         pair of exceptions: fts.c includes fts-cycle.c and unistd-safer.h
11273         but modules/fts-lgpl (correctly) does not list those files.
11274
11275         * modules/canonicalize (Files): Add lib/pathmax.h.
11276
11277 2005-06-25  Simon Josefsson  <jas@extundo.com>
11278
11279         * modules/check-version: New file.
11280
11281 2005-06-24  Paul Eggert  <eggert@cs.ucla.edu>
11282
11283         * lib/canon-host.c (canon-host): Append trailing "," to 0 in
11284         initializer of struct addrinfo, as an indication that we don't
11285         care how many members the structure has.
11286
11287 2005-06-24  Derek Price  <derek@ximbiot.com>
11288         and Bruno Haible  <bruno@clisp.org>
11289
11290         Remove stat module & update lstat.
11291         * m4/lstat.m4 (gl_FUNC_LSTAT): Drop AC_FUNC_LSTAT in favor of
11292         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
11293         * m4/stat.m4: Remove this file.
11294
11295 2005-06-24  Derek Price  <derek@ximbiot.com>
11296         and Bruno Haible  <bruno@clisp.org>
11297
11298         Remove stat module & update lstat.
11299         * lib/stat.c: Remove this file...
11300         (slash_aware_lstat): ...moving this content and its support...
11301         * lib/lstat.c (rpl_lstat): ...into here.
11302         * lib/lstat.h: New file.
11303
11304 2005-06-24  Derek Price  <derek@ximbiot.com>
11305         and Bruno Haible  <bruno@clisp.org>
11306
11307         Remove stat module & update lstat.
11308         * config/srclist.txt (libc sources): Remove stat.
11309
11310 2005-06-24  Derek Price  <derek@ximbiot.com>
11311         and Bruno Haible  <bruno@clisp.org>
11312
11313         Remove stat module & update lstat.
11314         * MODULES.html.sh (stat): Remove.
11315         * MODULES.html: Regenerated.
11316         * modules/lstat (Description): Correct function name.
11317         (Files): Add "lstat.h".
11318         (Depends-on): Remove stat, add xalloc, stat-macros.
11319         * modules/stat: Remove this file.
11320         (Include): Add "lstat.h", remove <sys/stat.h>.
11321
11322 2005-06-23  Paul Eggert  <eggert@cs.ucla.edu>
11323
11324         * lib/mktime.c: Include <string.h> even if !DEBUG.  (From glibc.)
11325         (ranged_convert): Don't save conversion in a temporary struct.
11326         This causes a warning with GCC 4.0.0, and anyway in the typical
11327         case it's not worth the extra 100 bytes or so of code.
11328         (ranged_convert, __mktime_internal): When calling a function via a
11329         pointer P, use P () rather than (*P) (), as we now assume C89 or
11330         better.
11331
11332 2005-06-22  Paul Eggert  <eggert@cs.ucla.edu>
11333
11334         * lib/readutmp.c (desirable_utmp_entry): Fix bug where "who -b" and
11335         "who -r" failed to give output.  Problem reported by Tim Waugh.
11336
11337         * lib/xmalloc.c (HAVE_GNU_CALLOC): New constant.
11338         (xcalloc): Use it to avoid needless tests.
11339         Problem reported by Jim Meyering.
11340
11341 2005-06-20  Derek Price  <derek@ximbiot.com>
11342
11343         * m4/bison.m4: Note that precious decls of YACC & YFLAGS will be
11344         unnecessary for Autoconfs > 2.59c.
11345
11346 2005-06-16  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
11347
11348         * lib/argp.h (__option_is_short): Check upper limit of
11349         __key. Isprint() requires its argument to have the value
11350         of an unsigned char or EOF.
11351
11352 2005-06-16  Jim Meyering  <jim@meyering.net>
11353
11354         * lib/calloc.c (rpl_calloc): Allocate a 1-byte buffer (not 1xS or Nx1)
11355         when either N or S is zero.
11356
11357 2005-06-16  Derek Price  <derek@ximbiot.com>
11358
11359         * m4/bison.m4: Declare YACC & YFLAGS precious.
11360
11361 2005-06-10  Paul Eggert  <eggert@cs.ucla.edu>
11362
11363         * lib/fnmatch.c (fnmatch): If there is an encoding error in a
11364         multibyte string or pattern, fall back on unibyte matching.
11365         Problem reported by James Youngman.
11366
11367 2005-06-08  Bruno Haible  <bruno@clisp.org>
11368
11369         * modules/csharpcomp: New file.
11370         * MODULES.html.sh (C#): Add csharpcomp.
11371
11372 2005-06-08  Bruno Haible  <bruno@clisp.org>
11373
11374         * m4/csharpcomp.m4: New file, from GNU gettext.
11375
11376 2005-06-08  Bruno Haible  <bruno@clisp.org>
11377
11378         * lib/csharpcomp.h: New file, from GNU gettext.
11379         * lib/csharpcomp.c: New file, from GNU gettext.
11380         * lib/csharpcomp.sh.in: New file, from GNU gettext.
11381
11382 2005-06-08  Bruno Haible  <bruno@clisp.org>
11383
11384         * lib/binary-io.h (fileno): Undefine before defining it. Avoids a gcc
11385         warning on mingw.
11386
11387 2005-06-07  Derek Price  <derek@ximbiot.com>
11388
11389         Sync from CVS.
11390         * lib/glob_.h: Indent nested #ifdef.
11391
11392 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
11393
11394         Sync from coreutils.
11395         Use "file name" when talking about file names, instead of "filename"
11396         or "path", as per the GNU coding standards.
11397         * lib/mkdir-p.c: Renamed from makepath.c.
11398         (make_dir_parents): Renamed from make_path.  All callers changed.
11399         * lib/mkdir-p.h: Likewise.  All includers changed.
11400         * lib/filenamecat.c: Renamed from path-concat.c.
11401         (file_name_concat): Renamed from path_concat.  All callers changed.
11402         [TEST_FILE_NAME_CONCAT]: Renamed from TEST_PATH_CONCAT.
11403         * lib/filenamecat.h: Likewise.  All includers changed.
11404         * lib/acl.c: Don't use "path" or "filename" to mean "file name"
11405         in comments or local variable names.
11406         * lib/basename.c: Likewise.
11407         * lib/canonicalize.c, canonicalize.h: Likewise.
11408         * lib/dirname.c, dirname.h: Likewise.
11409         * lib/euidaccess.c: Likewise.
11410         * lib/exclude.c: Likewise
11411         * lib/fnmatch_.h, fnmatch_loop.c: Likewise.
11412         * lib/fsusage.c, fsuage.h: Likewise.
11413         * lib/fts.c, fts_.h: Likewise.
11414         * lib/getcwd.c: Likewise.
11415         * lib/getloadavg.c: Likewise.
11416         * lib/mkstemp.c: Likewise.
11417         * lib/mountlist.c, mountlist.h: Likewise.
11418         * lib/openat.c, openat.h: Likewise.
11419         * lib/readlink-stub.c: Likewise.
11420         * lib/readutmp.c, readutmp.h: Likewise.
11421         * lib/rename.c: Likewise.
11422         * lib/rmdir.c: Likewise.
11423         * lib/same.c: Likewise.
11424         * lib/savedir.c: Likewise.
11425         * lib/stripslash.c: Likewise.
11426         * lib/tempname.c: Likewise.
11427         * lib/xreadlink.c: Likewise.
11428         * lib/exclude.c (excluded_file_name): Renamed from excluded_filename.
11429         All uses changed.
11430         * lib/exclude.h: Likewise.
11431
11432         * lib/euidaccess.c (getuid, getgid, getuid, getegid)
11433         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
11434         * lib/idcache.c (getpwuid, getpwnam, getgrgid, getgrnam)
11435         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
11436         * lib/pathmax.h: Include <limits.h> unconditionally, since other
11437         files have been getting away with it for years (MORE/BSD 4.3
11438         is extinct now).
11439         * lib/userspec.c (getpwnam, getgrnam, getgrgid)
11440         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
11441
11442         * lib/pathmax.h (_POSIX_PATH_MAX) [!defined _POSIX_PATH_MAX]:
11443         Define to 256, not 255, as per modern POSIX.
11444
11445 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
11446
11447         Sync from coreutils.
11448         Use "file name" when talking about file names, instead of "filename"
11449         or "path", as per the GNU coding standards.
11450         * MODULES.html.sh: mkdir-p renamed from makepath.
11451         filenamecat renamed from path-concat.
11452         * modules/filenamecat: Renamed from modules/path-concat.
11453         (Files): filenamecat.h and filenamecat.c renamed from
11454         path-concat.h and path-concat.c.
11455         (configure.ac): gl_FILE_NAME_CONCAT, not gl_PATH_CONCAT.
11456         (Include): filenamecat.h, not path-concat.h.
11457         * modules/mkdir-p: Renamed from modules/makepath.
11458         (Files): mkdir-p.h and mkdir-p.c renamed from makepath.h and
11459         makepath.c.
11460         (configure.ac): gl_MKDIR_PARENTS, not gl_MAKEPATH.
11461         (Include): mkdir-p.h, not makepath.h.
11462
11463 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
11464
11465         Sync from coreutils.
11466         * m4/mkdir-p.m4: Renamed from makepath.m4.
11467         (gl_MKDIR_PARENTS): Renamed from gl_MAKEPATH.  All uses changed.
11468         Rename files from makepath.c to mkdir-p.c, and from
11469         makepath.h to mkdir-p.h.
11470         * m4/filenamecat.m4: Renamed from path-concat.m4.
11471         (gl_FILE_NAME_CONCAT): Renamed from gl_PATH_CONCAT.  All uses changed.
11472         Rename files from path-concat.c to filenamecat.c,
11473         and from path-concat.h to filenamecat.h.
11474         * m4/getcwd-path-max.m4: Don't use "path" or "filename" to mean
11475         "file name" in local variables or comments.
11476         * m4/rename.m4: Likewise.
11477
11478 2005-06-01  Bruno Haible  <bruno@clisp.org>
11479
11480         * modules/csharpexec: New file.
11481         * MODULES.html.sh (C#): New section.
11482
11483 2005-06-01  Bruno Haible  <bruno@clisp.org>
11484
11485         * m4/csharp.m4: New file, from GNU gettext.
11486         * m4/csharpexec.m4: New file, from GNU gettext.
11487
11488 2005-06-01  Bruno Haible  <bruno@clisp.org>
11489
11490         * lib/csharpexec.h: New file, from GNU gettext.
11491         * lib/csharpexec.c: New file, from GNU gettext.
11492         * lib/csharpexec.sh.in: New file, from GNU gettext.
11493
11494 2005-05-31  Derek Price  <derek@ximbiot.com>
11495             Paul Eggert  <eggert@cs.ucla.edu>
11496
11497         Sync from cvs.
11498         * m4/glob.m4: s/MISSING_SYS_CDEFS_H/_SYS_CDEFS_H/ and comment.
11499
11500 2005-05-31  Derek Price  <derek@ximbiot.com>
11501             Paul Eggert  <eggert@cs.ucla.edu>
11502
11503         Sync from cvs.
11504         * lib/glob_.h: s/MISSING_SYS_CDEFS_H/_SYS_CDEFS_H/ and comment.
11505
11506 2005-05-29  Derek Price  <derek@ximbiot.com>
11507
11508         * config/srclist.txt (glob_.h, glob.c): Add these files.
11509
11510 2005-05-29  Derek Price  <derek@ximbiot.com>
11511
11512         * MODULES.html.sh: Add glob to Enhanced POSIX.2001 section.
11513         * modules/glob: New file.
11514         * modules/getlogin_r: Add link to POSIX spec in description.
11515
11516 2005-05-29  Derek Price  <derek@ximbiot.com>
11517             Paul Eggert  <eggert@cs.ucla.edu>
11518
11519         * m4/glob.m4: New file.
11520
11521 2005-05-29  Derek Price  <derek@ximbiot.com>
11522             Paul Eggert  <eggert@cs.ucla.edu>
11523
11524         * lib/glob_.h, lib/glob.c: New files.
11525
11526 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
11527
11528         * modules/fts (Files): Remove m4/inttypes-pri.m4.
11529         * modules/fts-lgpl (Depends-on): Remove gettext.
11530
11531 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
11532
11533         * m4/fts.m4 (gl_FUNC_FTS_CORE): Don't check for inttypes.h or stdint.h,
11534         and don't require gt_INTTYPES_PRI.
11535
11536 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
11537
11538         * lib/getlogin_r.c (getlogin_r): Don't set errno to 0 on return.
11539
11540         * lib/fts.c: Don't worry about debugging on pre-C99-compatible hosts;
11541         the configuration hassle isn't worth it.
11542         Include inttypes.h and stdint.h unconditionally if FTS_DEBUG.
11543         (LONGEST_MODIFIER, PRIuMAX): Remove.
11544
11545 2005-05-27  Bruno Haible  <bruno@clisp.org>
11546
11547         * lib/getlogin_r.h: Remove second include of <stddef.h>.
11548
11549 2005-05-26  Paul Eggert  <eggert@cs.ucla.edu>
11550
11551         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Define
11552         _POSIX_PTHREAD_SEMANTICS for Solaris.
11553
11554 2005-05-25  Derek Price  <derek@ximbiot.com>
11555
11556         * MODULES.html.sh: Add getlogin_r to POSIX.2001 support section.
11557
11558 2005-05-25  Derek Price  <derek@ximbiot.com>
11559             Paul Eggert  <eggert@cs.ucla.edu>
11560
11561         * modules/getlogin_r, m4/getlogin_r.m4: New files.
11562         * lib/getlogin_r.c, getlogin_r.h: New files.
11563
11564 2005-05-25  Bruno Haible  <bruno@clisp.org>
11565             Derek Price  <derek@ximbiot.com>
11566
11567         * lib/getlogin_r.h: Simplify API documentation.
11568
11569 2005-05-23  Derek Price  <derek@ximbiot.com>
11570
11571         * modules/minmax (Files): Add m4/minmax.m4.
11572         (configure.ac): Add gl_MINMAX.
11573
11574 2005-05-22  Paul Eggert  <eggert@cs.ucla.edu>
11575
11576         * lib/fts.c (fd_safer) [_LGPL_PACKAGE]: New static function,
11577         so that unistd-safer.h (GPL'ed code) need not be included.
11578
11579 2005-05-22  Bruno Haible  <bruno@clisp.org>
11580
11581         * m4/minmax.m4: New file.
11582         Based on a patch by Derek Price <derek@ximbiot.com>.
11583
11584 2005-05-22  Bruno Haible  <bruno@clisp.org>
11585
11586         * lib/stdint_.h (_STDINT_H_HAVE_INT64): New macro. Use it in #ifdefs.
11587         (INT64_MIN): Fix definition.
11588         Suggested by Paul Eggert <eggert@cs.ucla.edu>.
11589
11590         * lib/stdint_.h (_STDINT_H_NEED_SIGNED_INT_TYPES): Renamed from
11591         NEED_SIGNED_INT_TYPES.
11592
11593         * lib/stdint_.h (_STDINT_H_HAVE_SYSTEM_INTTYPES): Renamed from
11594         HAVE_SYSTEM_INTTYPES.
11595
11596 2005-05-22  Bruno Haible  <bruno@clisp.org>
11597
11598         * lib/minmax.h: Include <limits.h> only when it defines MIN, MAX.
11599         Also include <sys/param.h> if it defines MIN, MAX.
11600         Based on a patch by Derek Price <derek@ximbiot.com>.
11601
11602 2005-05-21  Jim Meyering  <jim@meyering.net>
11603
11604         * modules/fts (Files): Add m4/inttypes-pri.m4.
11605         (Depends-on): Add lstat and remove gettext.  Alphabetize.
11606
11607 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
11608
11609         New fts module.
11610         * lib/fts.c: Don't include "cycle-check.h" or "hash.h".
11611         (setup_dir, free_dir): New functions.
11612         (enter_dir, leave_dir): Define trivial
11613         alternatives of _LGPL_PACKAGE.  Move to fts-cycle.c if !_LGPL_PACKAGE.
11614         (HT_INITIAL_SIZE, ENTER_DIR): Remove.  All uses removed.
11615         (LEAVE_DIR): Fix typo: pass Fts and Ent to leave_dir.
11616         (struct Active_dir, AD_compare, AD_hash, enter_dir, leave_dir):
11617         Move to fts-cycle.c.
11618         (fts_open): Use setup_dir.
11619         (fts_close): Use free_dir.
11620         (fts_read): Have just one copy of the ENTER_DIR code rather than three.
11621         This adds a label and some gotos, but the alternatives were messier.
11622         Check for memory allocation failure when entering a dir.
11623         (fts_stat) [_LGPL_PACKAGE]: Bring back glibc cycle detection code.
11624         * lib/fts_.h (_LGPL_PACKAGE) [defined _LIBC]: New macro.
11625         (FTS): New member fts_cycle, that is a union that contains the
11626         old active_dir_ht and cycle_state.  All uses changed to mention
11627         fts_cycle.ht and fts_cycle.state.
11628         * lib/fts-cycle.c: New file, containing GPL'ed code migrated out of
11629         fts.c, with the following changes:
11630         (setup_dir, free_dir): New functions.
11631         (enter_dir): Now returns bool.  Return true if successful, false
11632         if memory exhausted.  All callers changed.
11633         Do not bother partly cleaning up on
11634         memory allocation failure; that is free_dir's job.
11635         However, free ad if hash_insert fails, to avoid memory leak.
11636         (enter_dir, leave_dir): Accommodate change to FTS by inspecting
11637         fts->fts_options to see which union member to use.
11638
11639 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
11640
11641         * m4/fts.m4 (gl_FUNC_FTS_CORE): Renamed from gl_FUNC_FTS.
11642         (gl_FUNC_FTS, gl_FUNC_FTS_LGPL): New macros.
11643
11644 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
11645
11646         * MODULES.html.sh (File system functions): Add fts, fts-lgpl.
11647
11648 2005-05-20  Jim Meyering  <jim@meyering.net>
11649
11650         * lib/unlinkdir.h (cannot_unlink_dir) [UNLINK_CANNOT_UNLINK_DIR]:
11651         Now a macro, to pacify GCC.
11652
11653 2005-05-20  Eric Blake  <ebb9@byu.net>  (tiny change)
11654
11655         * m4/chown.m4 (gl_FUNC_CHOWN): Correct sense of test for honoring IDs
11656         of -1.
11657
11658 2005-05-20  Eric Blake  <ebb9@byu.net>  (tiny change)
11659
11660         * lib/chown.c (rpl_chown): Return -1 on failure.
11661
11662 2005-05-18  Paul Eggert  <eggert@cs.ucla.edu>
11663
11664         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME]):
11665         Don't check for stddef.h.
11666         * m4/fts.m4 (gl_FUNC_FTS): Don't require AC_HEADER_STDC, as we
11667         don't use its results.
11668         Don't check for fcntl.h, stddef.h, stdlib.h, string.h, unistd.h,
11669         since we include them unconditionally.  Don't require
11670         AM_STDBOOL_H, since stdbool is a prerequisite.
11671         Don't require AC_C_CONST, AC_TYPE_SIZE_T or check for ptrdiff_t
11672         since we assume C89 or better.
11673         Don't require AC_FUNC_CLOSEDIR_VOID, AC_FUNC_LSTAT, or AC_FUNC_STAT,
11674         as we don't use their results.
11675         Don't check for fchdir, memmove, memset, strrchr, as we use
11676         them unconditionally.
11677         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Don't define
11678         GETTIMEOFDAY_CLOBBERS_LOCALTIME_BUFFER, since nobody uses it.
11679
11680 2005-05-18  Paul Eggert  <eggert@cs.ucla.edu>
11681
11682         * lib/canonicalize.c: Include canonicalize.h first, to test interface.
11683         Include <stddef.h> unconditionally, since we assume C89 now.
11684         All uses of PTR_INT_TYPE replaced by ptrdiff_t.
11685         * lib/fts.c: Include fts_.h first, to check interface.
11686         Do not include intprops.h; no longer needed.
11687         Include cycle-check.h and hash.h, since fts_.h no longer does.
11688         Remove unnecessary casts of closedir to void.
11689         (fts_build): Use a simpler method (not involving TYPE_SIGNED) to
11690         decide whether to decrement nlinks.
11691         * lib/fts_.h: Do not include hash.h or cycle-check.h; no longer needed.
11692         (FTS): Use struct hash_table * instead of Hash_table, so that
11693         we no longer need to include hash.h here.
11694
11695 2005-05-18  Jim Meyering  <jim@meyering.net>
11696
11697         * modules/dirfd (License): Change to LGPL.  Most of the code
11698         is already in the public domain.
11699
11700 2005-05-18  Jim Meyering  <jim@meyering.net>
11701
11702         * m4/fts.m4 (AC_LIBSOURCES): Add intprops.h to the list.
11703         Reported by Yoann Vandoorselaere.
11704
11705 2005-05-17  Jim Meyering  <jim@meyering.net>
11706
11707         * m4/fts.m4: New file, from coreutils.
11708
11709 2005-05-17  Jim Meyering  <jim@meyering.net>
11710
11711         * lib/fts.c, lib/fts_.h: New files, from coreutils.
11712
11713 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
11714
11715         Sync from coreutils.
11716         * m4/unlinkdir.m4: New file.
11717
11718 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
11719
11720         Sync from coreutils.
11721         * lib/unlinkdir.c, lib/unlinkdir.h: New files.
11722         * lib/gethrxtime.c, lib/gethrxtime.h, lib/getpass.h, lib/mountlist.h,
11723         lib/path-concat.c, lib/regex.h, lib/unlocked-io.h, lib/xtime.h:
11724         White space changes only.
11725         * lib/makepath.c (make_path): Port to hosts where leading "//" is
11726         special.
11727         * lib/yesno.c: Include getline.h, not ctype.h.
11728         (yesno): Don't remove leading white space; POSIX doesn't allow it.
11729         Use getline to remove arbitrary restriction on response length.
11730
11731 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
11732
11733         * config/srclist-update: Spell out "Street" in FSF postal
11734         mail address; this is the style the FSF seems to prefer.
11735
11736         * build-aux/depcomp, build-aux/install-sh, build-aux/mdate-sh,
11737         build-aux/missing, build-aux/mkinstalldirs: Sync from Automake;
11738         this updates FSF postal mail address.
11739
11740         Sync from coreutils.
11741         * modules/unlinkdir: New file.
11742         * modules/yesno (Depends-on): Add getline.
11743         * MODULES.html.sh (File system functions): Add unlinkdir.
11744
11745 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
11746
11747         * lib/byteswap_.h, lib/getsubopt.h, lib/iconvme.h, lib/strsep.c,
11748         lib/strsep.h:
11749         Change the initial comment to refer to GPL, not LGPL.
11750         gnulib-tool will change it to LGPL as needed.
11751
11752         * lib/__fpending.c, lib/acl.c, lib/acl.h, lib/alloca_.h, lib/allocsa.c,
11753         lib/allocsa.h, lib/argmatch.c, lib/argmatch.h, lib/argp-ba.c,
11754         lib/argp-eexst.c, lib/argp-fmtstream.c, lib/argp-fmtstream.h,
11755         lib/argp-fs-xinl.c, lib/argp-help.c, lib/argp-namefrob.h,
11756         lib/argp-parse.c, lib/argp-pv.c, lib/argp-pvh.c, lib/argp-xinl.c,
11757         lib/argp.h, lib/argz.c, lib/argz_.h, lib/asnprintf.c, lib/asprintf.c,
11758         lib/atanl.c, lib/backupfile.c, lib/backupfile.h, lib/base64.c,
11759         lib/base64.h, lib/basename.c, lib/binary-io.h, lib/byteswap_.h,
11760         lib/c-ctype.c, lib/c-ctype.h, lib/c-stack.c, lib/c-stack.h,
11761         lib/c-strtod.c, lib/calloc.c, lib/canon-host.c, lib/canonicalize.c,
11762         lib/canonicalize.h, lib/ceill.c, lib/chdir-long.c, lib/chdir-long.h,
11763         lib/chown.c, lib/classpath.c, lib/classpath.h, lib/cloexec.c,
11764         lib/closeout.c, lib/closeout.h, lib/concatpath.c, lib/config.charset,
11765         lib/copy-file.c, lib/copy-file.h, lib/cycle-check.c, lib/cycle-check.h,
11766         lib/diacrit.c, lib/diacrit.h, lib/dirfd.c, lib/dirfd.h, lib/dirname.c,
11767         lib/dirname.h, lib/dummy.c, lib/dup-safer.c, lib/dup2.c, lib/eealloc.h,
11768         lib/error.c, lib/error.h, lib/euidaccess.c, lib/exclude.c,
11769         lib/exclude.h, lib/execute.c, lib/execute.h, lib/exit.h,
11770         lib/exitfail.c, lib/exitfail.h, lib/expl.c, lib/fatal-signal.c,
11771         lib/fatal-signal.h, lib/fd-safer.c, lib/file-type.c, lib/file-type.h,
11772         lib/fileblocks.c, lib/filemode.c, lib/filemode.h, lib/findprog.c,
11773         lib/findprog.h, lib/floorl.c, lib/fnmatch.c, lib/fnmatch_.h,
11774         lib/fnmatch_loop.c, lib/fopen-safer.c, lib/free.c, lib/frexpl.c,
11775         lib/fsusage.c, lib/fsusage.h, lib/full-read.c, lib/full-read.h,
11776         lib/full-write.c, lib/full-write.h, lib/fwriteerror.c,
11777         lib/fwriteerror.h, lib/gai_strerror.c, lib/gcd.c, lib/gcd.h,
11778         lib/getaddrinfo.c, lib/getaddrinfo.h, lib/getcwd.c, lib/getcwd.h,
11779         lib/getdate.h, lib/getdate.y, lib/getdomainname.c, lib/getdomainname.h,
11780         lib/getgroups.c, lib/gethostname.c, lib/gethrxtime.c, lib/gethrxtime.h,
11781         lib/getline.c, lib/getline.h, lib/getloadavg.c, lib/getndelim2.c,
11782         lib/getndelim2.h, lib/getnline.c, lib/getnline.h, lib/getopt.c,
11783         lib/getopt1.c, lib/getopt_.h, lib/getopt_int.h, lib/getpagesize.h,
11784         lib/getpass.c, lib/getpass.h, lib/getsubopt.c, lib/getsubopt.h,
11785         lib/gettext.h, lib/gettime.c, lib/gettimeofday.c, lib/getugroups.c,
11786         lib/getusershell.c, lib/group-member.c, lib/group-member.h,
11787         lib/hard-locale.c, lib/hard-locale.h, lib/hash-pjw.c, lib/hash-pjw.h,
11788         lib/hash.c, lib/hash.h, lib/human.c, lib/human.h, lib/iconvme.c,
11789         lib/iconvme.h, lib/idcache.c, lib/inet_ntop.h, lib/intprops.h,
11790         lib/inttostr.c, lib/inttostr.h, lib/isdir.c, lib/javacomp.c,
11791         lib/javacomp.h, lib/javacomp.sh.in, lib/javaexec.c, lib/javaexec.h,
11792         lib/javaexec.sh.in, lib/lbrkprop.h, lib/lchown.c, lib/ldexpl.c,
11793         lib/linebreak.c, lib/linebreak.h, lib/linebuffer.c, lib/linebuffer.h,
11794         lib/localcharset.c, lib/localcharset.h, lib/logl.c, lib/long-options.c,
11795         lib/long-options.h, lib/lstat.c, lib/makepath.c, lib/makepath.h,
11796         lib/malloc.c, lib/mathl.h, lib/mbswidth.c, lib/mbswidth.h, lib/md5.c,
11797         lib/md5.h, lib/memcasecmp.c, lib/memcasecmp.h, lib/memchr.c,
11798         lib/memcmp.c, lib/memcoll.c, lib/memcoll.h, lib/memcpy.c, lib/memmem.c,
11799         lib/memmem.h, lib/mempcpy.c, lib/mempcpy.h, lib/memrchr.c,
11800         lib/memrchr.h, lib/memset.c, lib/minmax.h, lib/mkdir.c, lib/mkdtemp.c,
11801         lib/mkdtemp.h, lib/mkstemp.c, lib/mktime.c, lib/modechange.c,
11802         lib/modechange.h, lib/mountlist.c, lib/mountlist.h, lib/nanosleep.c,
11803         lib/obstack.c, lib/obstack.h, lib/openat.c, lib/openat.h,
11804         lib/pagealign_alloc.c, lib/pagealign_alloc.h, lib/path-concat.c,
11805         lib/path-concat.h, lib/pathmax.h, lib/pathname.h, lib/physmem.c,
11806         lib/physmem.h, lib/pipe.c, lib/pipe.h, lib/poll.c, lib/poll_.h,
11807         lib/posixtm.c, lib/posixtm.h, lib/posixver.c, lib/printf-args.c,
11808         lib/printf-args.h, lib/printf-parse.c, lib/printf-parse.h,
11809         lib/progname.c, lib/progname.h, lib/progreloc.c, lib/putenv.c,
11810         lib/quote.c, lib/quote.h, lib/quotearg.c, lib/quotearg.h, lib/raise.c,
11811         lib/readlink.c, lib/readtokens.c, lib/readtokens.h, lib/readtokens0.c,
11812         lib/readtokens0.h, lib/readutmp.c, lib/readutmp.h, lib/realloc.c,
11813         lib/ref-add.sin, lib/ref-del.sin, lib/regex.c, lib/regex.h,
11814         lib/rename.c, lib/rmdir.c, lib/rpmatch.c, lib/safe-read.c,
11815         lib/safe-read.h, lib/safe-write.c, lib/safe-write.h, lib/same.c,
11816         lib/same.h, lib/save-cwd.c, lib/save-cwd.h, lib/savedir.c,
11817         lib/savedir.h, lib/setenv.c, lib/setenv.h, lib/settime.c,
11818         lib/sh-quote.c, lib/sh-quote.h, lib/sha1.c, lib/sha1.h, lib/sig2str.c,
11819         lib/sig2str.h, lib/sincosl.c, lib/snprintf.c, lib/snprintf.h,
11820         lib/sqrtl.c, lib/stat-macros.h, lib/stat.c, lib/stdbool_.h,
11821         lib/stdint_.h, lib/stdio-safer.h, lib/stpcpy.c, lib/stpcpy.h,
11822         lib/stpncpy.c, lib/stpncpy.h, lib/strcase.h, lib/strcasecmp.c,
11823         lib/strchrnul.c, lib/strchrnul.h, lib/strcspn.c, lib/strdup.c,
11824         lib/strdup.h, lib/strerror.c, lib/strftime.c, lib/strftime.h,
11825         lib/stripslash.c, lib/strndup.c, lib/strndup.h, lib/strnlen.c,
11826         lib/strpbrk.c, lib/strpbrk.h, lib/strsep.c, lib/strsep.h, lib/strstr.c,
11827         lib/strstr.h, lib/strtod.c, lib/strtoimax.c, lib/strtok_r.c,
11828         lib/strtok_r.h, lib/strtol.c, lib/strtoll.c, lib/strtoul.c,
11829         lib/strtoull.c, lib/strverscmp.c, lib/strverscmp.h, lib/sysexit_.h,
11830         lib/tempname.c, lib/time_r.c, lib/time_r.h, lib/timegm.c, lib/timegm.h,
11831         lib/timespec.h, lib/trigl.c, lib/trigl.h, lib/ucs4-utf16.h,
11832         lib/ucs4-utf8.h, lib/unicodeio.c, lib/unicodeio.h, lib/unistd-safer.h,
11833         lib/unlocked-io.h, lib/unsetenv.c, lib/userspec.c, lib/utf16-ucs4.h,
11834         lib/utf8-ucs4.h, lib/utime.c, lib/utimecmp.c, lib/utimecmp.h,
11835         lib/utimens.c, lib/vasnprintf.c, lib/vasnprintf.h, lib/vasprintf.c,
11836         lib/vasprintf.h, lib/version-etc-fsf.c, lib/version-etc.c,
11837         lib/version-etc.h, lib/vsnprintf.c, lib/vsnprintf.h, lib/w32spawn.h,
11838         lib/wait-process.c, lib/wait-process.h, lib/xalloc-die.c, lib/xalloc.h,
11839         lib/xallocsa.c, lib/xallocsa.h, lib/xasprintf.c, lib/xgetcwd.c,
11840         lib/xgetcwd.h, lib/xgetdomainname.c, lib/xgetdomainname.h,
11841         lib/xgethostname.c, lib/xmalloc.c, lib/xmemcoll.c, lib/xnanosleep.c,
11842         lib/xreadlink.c, lib/xreadlink.h, lib/xsetenv.c, lib/xsetenv.h,
11843         lib/xsize.h, lib/xstrndup.c, lib/xstrndup.h, lib/xstrtod.c,
11844         lib/xstrtod.h, lib/xstrtoimax.c, lib/xstrtol.c, lib/xstrtol.h,
11845         lib/xstrtoumax.c, lib/xtime.h, lib/xvasprintf.c, lib/xvasprintf.h,
11846         lib/yesno.c, lib/yesno.h:
11847         Update FSF postal mail address.
11848
11849 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
11850
11851         * MODULES.html.sh, README, gnulib-tool, tests/test-base64.c,
11852         tests/test-memmem.c, tests/test-stpncpy.c:
11853         Update FSF postal mail address.
11854
11855 2005-05-13  Bruno Haible  <bruno@clisp.org>
11856
11857         * lib/stdint_.h (int64_t, uint64_t, int_least64_t, uint_least64_t,
11858         int_fast64_t, uint_fast64_t, intmax_t, uintmax_t, INT64_MIN, INT64_MAX,
11859         UINT64_MAX, INT_LEAST64_MIN, INT_LEAST64_MAX, UINT_LEAST64_MAX,
11860         INT_FAST64_MIN, INT_FAST64_MAX, UINT_FAST64_MAX, INTMAX_MIN,
11861         INTMAX_MAX, UINTMAX_MAX, INT64_C, UINT64_C, INTMAX_C, UINTMAX_C):
11862         Add support for 64-bit integers in the MSVC compiler.
11863
11864 2005-05-12  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
11865
11866         * modules/getdate (Makefile.am): Add getdate.c to EXTRA_DIST
11867
11868 2005-05-12  Eric Blake  <ebb9@byu.net>  (tiny change)
11869
11870         * gnulib-tool (func_import): Sort and uniquify recommended includes.
11871
11872 2005-05-11  Paul Eggert  <eggert@cs.ucla.edu>
11873
11874         * doc/getdate.texi (General date syntax): Don't say that date
11875         date --iso-8601=ns generates acceptable dates; it doesn't yet.
11876         Problem reported by Nic Ferrier.
11877
11878 2005-05-10  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
11879
11880         * lib/getaddrinfo.c: Don't fail when SOCK_STREAM or SOCK_DGRAM are
11881         specified in ai_socktype. Fix invalid ai_protocol
11882         check. ai_protocol is usually set to 0 or depending on
11883         ai_family/ai_socktype to IPPROTO_TCP / IPPROTO_UDP.  Checking for
11884         SOCK_STREAM / SOCK_DGRAM in ai_protocol was invalid.  Set
11885         ai_socktype / ai_protocol in the returned addrinfo structure.
11886
11887 2005-05-10  Simon Josefsson  <jas@extundo.com>
11888
11889         * m4/getaddrinfo.m4: Look in libnsl/libsocket for getaddrinfo, from
11890         Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
11891
11892 2005-05-10  Karl Berry  <karl@gnu.org>
11893
11894         * doc/fdl.texi, gpl.texi, lgpl.texi, COPYING: update FSF address
11895         (from http://www.gnu.org/licenses).
11896         * doc/COPYING.LIB: also rename to COPYING.LESSER.
11897         * doc/COPYING.DOC: remove; per rms, only needed in doc files, so
11898         fdl.texi suffices.
11899
11900 2005-05-10  Karl Berry  <karl@gnu.org>
11901
11902         * config/srclist.txt (COPYING.LESSER): rename from COPYING.LIB.
11903         (COPYING.DOC): remove.
11904
11905         * config/srclist-update: new FSF address.
11906
11907 2005-05-10  Derek Price  <derek@ximbiot.com>
11908
11909         * m4/getopt.m4 (gl_GETOPT): Check for Solaris 10 bug, not decl, when
11910         possible.
11911
11912 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
11913             Bruno Haible  <bruno@clisp.org>
11914
11915         * modules/inet_ntop: New file.
11916         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
11917         inet_ntop.
11918
11919 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
11920             Bruno Haible  <bruno@clisp.org>
11921
11922         * m4/inet_ntop.m4: New file.
11923
11924 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
11925             Bruno Haible  <bruno@clisp.org>
11926
11927         * lib/inet_ntop.h: New file.
11928         * lib/inet_ntop.c: New file, from glibc with modifications.
11929
11930 2005-05-09  Paul Eggert  <eggert@cs.ucla.edu>
11931
11932         * modules/time_r (License): Change to LGPL.
11933         * modules/extensions (License): Change to LGPL.  Actually,
11934         the license is more permissive than that, but currently gnulib-tool
11935         doesn't know how to handle more-permissive licenses.
11936
11937         * modules/stat-macros (Depends-on): Don't depend on stat-macros (!).
11938         Problem reported by Dave Love.
11939
11940 2005-05-08  Jim Meyering  <jim@meyering.net>
11941
11942         * lib/classpath.c (PATH_SEPARATOR): Remove insignificant trailing
11943         blank.
11944
11945 2005-05-06  Paul Eggert  <eggert@cs.ucla.edu>
11946
11947         * modules/argmatch (Depends-on): Add stdbool.
11948         * modules/backupfile (Depends-on): Likewise.
11949         * modules/chdir-long (Depends-on): Likewise.
11950         * modules/closeout (Depends-on): Likewise.
11951         * modules/cycle-check (Depends-on): Likewise.
11952         * modules/dirname (Depends-on): Likewise.
11953         * modules/fnmatch (Depends-on): Likewise.
11954         * modules/fsusage (Depends-on): Likewise.
11955         * modules/fwriteerror (Depends-on): Likewise.
11956         * modules/getcwd (Depends-on): Likewise.
11957         * modules/getloadavg (Depends-on): Likewise.
11958         * modules/hard-locale (Depends-on): Likewise.
11959         * modules/makepath (Depends-on): Likewise.
11960         * modules/mountlist (Depends-on): Likewise.
11961         * modules/nanosleep (Depends-on): Likewise.
11962         * modules/posixtm (Depends-on): Likewise.
11963         * modules/quotearg (Depends-on): Likewise.
11964         * modules/readtokens (Depends-on): Likewise.
11965         * modules/readtokens0 (Depends-on): Likewise.
11966         * modules/readutmp (Depends-on): Likewise.
11967         * modules/save-cwd (Depends-on): Likewise.
11968         * modules/strftime (Depends-on): Likewise.
11969         * modules/userspec (Depends-on): Likewise.
11970         * modules/utimecmp (Depends-on): Likewise.
11971         * modules/xgetcwd (Depends-on): Likewise.
11972         * modules/xnanosleep (Depends-on): Likewise.
11973         * modules/xstrtod (Depends-on): Likewise.
11974         * modules/yesno (Depends-on): Likewise.
11975
11976 2005-05-05  Paul Eggert  <eggert@cs.ucla.edu>
11977
11978         * m4/getopt.m4 (gl_GETOPT): Check for Solaris 10 getopt, and avoid
11979         needless checks.
11980
11981 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
11982
11983         Merge from coreutils.  Among other things,
11984         add bulletproofing for cases where stdin, stdout, or stderr are closed.
11985         * lib/fd-safer.c: New file.
11986         * lib/fcntl-safer.h, open-safer.c: Remove.
11987         * lib/chdir-long.c: Fix comment "fetish" -> "coreutils".
11988         * lib/dup-safer.c: Include unistd-safer.h first.
11989         Don't include errno.h.
11990         (dup_safer) [!defined F_DUPFD]: Let fd_safer do the real work.
11991         * lib/file-type.h: Don't assume invoker included sys/stat.h first.
11992         * lib/file-type.c: Rely on file-type.h change.
11993         * lib/getloadavg.c: Include unistd-safer.h.
11994         (getloadavg): Use safer open.
11995         * lib/getusershell.c: Include "stdio-safer.h".
11996         (getusershell): Use safer fopen.
11997         * lib/long-options.c (long_options): Use NULL rather than 0.
11998         * lib/modechange.h (mode_free): Remove; all callers changed to invoke
11999         'free'.
12000         * lib/modechange.c: Likewise.
12001         xstrtol.h, stdbool.h, stddef.h: Don't include; no longer needed.
12002         (MODE_DONE): New constant.
12003         (struct mode_change): Remove 'next' member.
12004         (make_node_op_equals): New function; like the old one of the
12005         same name, except it allocates an array.
12006         (mode_compile, mode_create_from_ref): Use it.
12007         (mode_compile): Allocate result as an array, not a linked list.
12008         Parse octal string ourself, so that we catch mistakes like "+0".
12009         (mode_adjust): Arg is an array, not a linked list.
12010         * lib/modechange.c: Include stat-macros.h, xalloc.h.
12011         (S_ISDIR, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR):
12012         (S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH, S_IRXWU):
12013         (S_IRWXG, S_IRWXO, CHMOD_MODE_BITS):
12014         Remove.  This is now stat-macros.h's job.
12015         (talloc): Remove.  All callers replaced by xalloc, so that
12016         our invokers don't have to worry about reporting memory failures.
12017         (make_node_op_equals): Remove.
12018         (MODE_ORDINARY_CHAGE, MODE_X_IF_ANY_X, MODE_COPY_EXISTING):
12019         New constants.
12020         (struct mode_change): Moved here from modechange.h.
12021         (mode_append_entry): Remove.
12022         (mode_compile): Remove MASKED_OPS arg, since it encouraged
12023         apps to have incorrect behavior.  Use simpler algorithm for head
12024         and tail.  Don't futz with umask; that's now the job of mode_adjust.
12025         Detect more invalid usages rather than having somewhat-random behavior.
12026         Don't insert an "a=" action, as that leads to incorrect behavior.
12027         (mode_compile, mode_create_from_ref): Return NULL on error instead
12028         of an enum, since now there's only one way to have an error.  All
12029         callers changed.
12030         (mode_adjust): Accept new arg UMASK_VALUE, and interpret it
12031         at the correct time.  Simplify calculation of "+u" and its ilk.
12032         Don't mishandle "+X".
12033         (mode_free): Remove "register" and localize decls.
12034         * lib/modechange.h (MODE_X_IF_ANY_X, MODE_COPY_EXISTING):
12035         (struct mode_change): Move to modechange.c; callers don't
12036         need to see this stuff.
12037         (MODE_MASK_EQUALS, MODE_MASK_PLUS, MODE_MASK_MINUS, MODE_MASK_ALL):
12038         (MODE_INVALID, MODE_MEMORY_EXHAUSTED, MODE_BAD_REFERENCE): Remove.
12039         (mode_change, mode_adjust): Reflect the new signatures noted above.
12040         * lib/nanosleep.c (rpl_nanosleep): Include "timespec.h" before macros
12041         that might redefine system include files.
12042         (siginterrupt) [!HAVE_SIGINTERRUPT]: New macro.
12043         (my_usleep): Use NULL rather than (void *) 0.
12044         (rpl_nanosleep) [!defined SA_NOCLDSTOP]:
12045         Use siginterrupt to specify that system calls should be interrupted.
12046         (rpl_nanosleep): Move initialization of suspended closer to call of
12047         my_usleep.
12048         * lib/readutmp.h (read_utmp): New arg OPTIONS.  All uses changed.
12049         * lib/readutmp.c: Likewise.  Include signal.h, stdbool.h.
12050         (desirable_utmp_entry): New function.
12051         (read_utmp) [defined UTMP_NAME_FUNCTION]: Redo memory allocation
12052         using x2nrealloc, to simplify logic.
12053         (read_utmp) [!defined UTMP_NAME_FUNCTION]: Check for overflow in
12054         size calculation.  Do not assume utmp file is a regular file.
12055         * lib/readutmp.h (UT_PID): Moved here from ../src/who.c.
12056         (READ_UTMP_CHECK_PIDS): New constant.
12057         * lib/save-cwd.c: Include unistd-safer.h.
12058         (save_cwd): Use fd_safer.
12059         * lib/tempname.c (S_ISDIR, S_IRUSR, S_IRUSR, S_IWUSR, S_IXUSR): Remove.
12060         [!_LIBC] Include "stat-macros.h" instead.
12061         * lib/unistd-safer.h (fd_safer): New decl.
12062
12063 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
12064
12065         * modules/getloadavg (Depends-on): Add unistd-safer.
12066         * modules/getusershell (Depends-on): Add stdio-safer.
12067         * modules/lstat (Depends-on): Remove xalloc.
12068         * modules/mkstemp (Depends-on): Add stat-macros.
12069         * modules/modechange (Depends-on): Remove xstrtol.
12070         Add stat-macros, xalloc.
12071         * modules/save-cwd (Depends-on): Add unistd-safer.
12072         * modules/stdio-safer (Makefile.am): Remove lib_SOURCES.
12073         * modules/unistd-safer (Files): Add lib/fd-safer.c
12074         (Makefile.am): Remove lib_SOURCES.
12075
12076         * MODULES.html.sh (Enhancements for POSIX:2001 functions):
12077         Remove fcntl-safer; unistd-safer supersedes it.
12078
12079 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
12080
12081         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Don't require
12082         AC_HEADER_STAT.
12083         * m4/lchown.m4 (gl_FUNC_CHOWN): Likewise.
12084         (gl_PREREQ_CHOWN): Remove.
12085         * m4/lstat.m4 (gl_FUNC_LSTAT): Require AC_FUNC_LSTAT instead of calling
12086         it.  Don't require AC_HEADER_STAT.
12087         (gl_PREREQ_LSTAT): Remove.
12088         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Check stdint.h only once.
12089         Don't require AC_HEADER_STAT.
12090         * m4/rmdir.m4 (gl_FUNC_RMDIR): Don't require AC_HEADER_STAT.
12091         (gl_PREREQ_RMDIR): Remove.
12092         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Don't
12093         mention stat-macros.h or AC_HEADER_STAT, since we'll make
12094         the stat-macros module a prerequisite.
12095         * m4/file-type.m4 (gl_FILE_TYPE): Likewise.
12096         * m4/filemode.m4 (gl_FILEMODE): Likewise.
12097         * m4/makepath.m4 (gl_MAKEPATH): Likewise.
12098         * m4/modechange.m4 (gl_MODECHANGE): Likewise.
12099         * m4/clock_time.m4 (gl_CLOCK_TIME): Use gl_ rather than fetish_ for
12100         variable names.
12101         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Renamed from
12102         fetish_FUNC_RMDIR_NOTEMPTY.  All uses changed.  Use gl_ for
12103         variable prefixes.
12104         * m4/fcntl-safer.m4: Remove.
12105         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Use AC_LIBSOURCES and AC_LIBOBJ.
12106         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Likewise.
12107         Invoke gl_PREREQ_FD_SAFER.
12108         (gl_PREREQ_FD_SAFER): New macro.
12109         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): Check for siginterrupt.
12110         * m4/readutmp.m4 (gl_READUTMP): Require AC_C_INLINE.
12111         Use AC_CHECK_HEADERS_ONCE and AC_CHECK_FUNCS_ONCE when possible.
12112         Remove duplicate call to AC_LIBOBJ(readutmp).
12113         (gl_PREREQ_READUTMP): Remove.  All uses inlined.
12114
12115         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Check for message, not for
12116         MAP_ANON.  Problem reported by Moriyoshi Koizumi to bug-cvs.
12117
12118 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
12119
12120         * MODULES.html.sh (Misc): Add byteswap.
12121
12122 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
12123
12124         * modules/getcwd (Depends-on): Add extensions.
12125         * modules/openat (Depends-on): Likewise.
12126
12127 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
12128
12129         * modules/byteswap: New file.
12130
12131 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
12132
12133         * m4/byteswap.m4: New file.
12134
12135 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
12136
12137         * lib/byteswap_.h: New file.
12138
12139 2005-04-25  Karl Berry  <karl@gnu.org>
12140
12141         * m4/gettext.m4: Update from GNU gettext 0.14.4.
12142
12143 2005-04-25  Albert Chin  <china@thewrittenword.com>
12144
12145         * lib/regex.c: Include <stdio.h>, as a workaround to a Compaq Desktop
12146         Toolkit C bug.
12147
12148 2005-04-21  Oskar Liljeblad  <oskar@osk.mine.nu>
12149
12150         * gnulib-tool (Options): Add -s for --symlink/--symbolic.
12151         (func_ln_if_changed) Remove forcibly for no error message
12152         in case file does not exist.
12153
12154 2005-04-19  Simon Josefsson  <jas@extundo.com>
12155
12156         * gnulib-tool (Options): Make --symlink mean --symbolic.
12157
12158 2005-04-18  Oskar Liljeblad  <oskar@osk.mine.nu>
12159
12160         * doc/gnulib.texi (Initial import): Fix.  Mention --aux-dir.
12161
12162 2005-04-16  Simon Josefsson  <jas@extundo.com>
12163
12164         * modules/getpass-gnu (Makefile.am): Don't mention getpass.h.
12165
12166 2005-04-15  Simon Josefsson  <jas@extundo.com>
12167
12168         * m4/getpass.m4 (gl_FUNC_GETPASS): Use AC_LIBSOURCES.
12169
12170 2005-04-15  Simon Josefsson  <jas@extundo.com>
12171
12172         * gnulib-tool: Rename --symlink to --symbolic.
12173
12174 2005-04-15  Oskar Liljeblad  <oskar@osk.mine.nu>
12175
12176         * gnulib-tool: Add -s, --symlink option to gnulib-tool to make
12177         symbolic links to files instead of copying/moving.  Add --aux-dir,
12178         specifying directory relative --dir where auxiliary build tools
12179         are placed.
12180
12181 2005-04-14  Bruno Haible  <bruno@clisp.org>
12182
12183         * modules/allocsa (License): Change to LGPL.
12184         Requested by Yoann Vandoorselaere <yoann@prelude-ids.org>.
12185
12186 2005-04-13  Paul Eggert  <eggert@cs.ucla.edu>
12187
12188         * lib/getdate.y (zone): Allow relunit_snumber after tZONE, so
12189         that "UTC +1 second" continues to work.  Problem reported
12190         by Dmitry V. Levin.
12191         (relunit_snumber): New rule.
12192         (relunit): Use it.
12193
12194 2005-04-12  Paul Eggert  <eggert@cs.ucla.edu>
12195
12196         * lib/getdate.y (universal_time_zone_table): New constant.
12197         (time_zone_table): Remove GMT, UT, UTC entries; they're now in
12198         universal_time_zone_table.
12199         (lookup_zone): Prefer universal_time_zone_table to
12200         local_time_zone_table, so that "GMT" time stamps are allowed in
12201         London during the summer.  Problem reported by Ian Abbott.
12202
12203 2005-04-12  Jim Meyering  <jim@meyering.net>
12204
12205         * lib/human.c (humblock): Set *options even when returning due to
12206         xstrtoumax conversion failure.  Thanks to a used-uninitialized
12207         warning from gcc-4.
12208
12209 2005-04-09  Jim Meyering  <jim@meyering.net>
12210
12211         * lib/posixtm.c (posixtime) [lint]: Avoid spurious warning from gcc-4's
12212         -Wuninitialized: initialize tm0.tm_year.
12213
12214 2005-04-04  Paul Eggert  <eggert@cs.ucla.edu>
12215
12216         * lib/getdate.y (parser_control): rels_seen is now a boolean, not a
12217         count, since there's no maximum.  All uses changed.
12218         Add member dsts_seen.
12219         (local_zone): Accumulate dsts_seen rather than relying on tm_isdst
12220         not being INT_MAX.
12221         (get_date): Initialize dsts_seen, and check that it doesn't go over 1.
12222         Use pc_rels_seen to decide whther a date is absolute.
12223
12224         * lib/getdate.y (number): Don't overwrite year.
12225         (get_date): Initialize pc.year.digits to 0, not 4, to enable above
12226         check.
12227
12228 2005-04-02  Simon Josefsson  <jas@extundo.com>
12229
12230         * lib/getaddrinfo.h: Fix OpenBSD compilation failure, inspired by tiny
12231         patch from Yoann Vandoorselaere <yoann@prelude-ids.org>.
12232
12233 2005-03-28  Eric Blake  <ebb9@byu.net>  (tiny change)
12234
12235         * m4/getcwd-path-max.m4: Return success on systems such as Cygwin
12236         where no absolute path name can be longer than PATH_MAX.
12237
12238 2005-03-27  Jim Meyering  <jim@meyering.net>
12239
12240         * lib/argmatch.c: Clarify comment: null-terminated -> NULL-terminated.
12241
12242 2005-03-26  Paul Eggert  <eggert@cs.ucla.edu>
12243
12244         * lib/intprops.h (INT_STRLEN_BOUND, INT_BUFSIZE_BOUND):
12245         "one's complement" -> "ones' complement" in comment, as per Knuth.
12246         "value of type" -> "type or expression" in comment.
12247         * lib/mktime.c, strftime.c: Propagate intprops.h comment nits.
12248
12249 2005-03-26  Jim Meyering  <jim@meyering.net>
12250
12251         Comment nits.
12252         * lib/intprops.h: Add the apostrophe in `(one|two)'s complement'.
12253         Correct typos: s/or/of/.
12254
12255 2005-03-26  Jim Meyering  <jim@meyering.net>
12256
12257         * modules/check-include-files: Move to ../ and rename to...
12258         * check-module: ...this.
12259
12260 2005-03-25  Jim Meyering  <jim@meyering.net>
12261
12262         * modules/xvasprintf (Files): Add xalloc.h.
12263
12264 2005-03-23  Paul Eggert  <eggert@cs.ucla.edu>
12265
12266         * modules/gettext (Files): config/config.rpath ->
12267         build-aux/config.rpath
12268         * modules/iconv (Files): Likewise.
12269         Problem reported by Oskar Liljeblad.
12270
12271 2005-03-23  Jim Meyering  <jim@meyering.net>
12272
12273         * modules/check-include-files: New script to check for
12274         missing dependencies, multiple includes, etc.
12275
12276         * modules/c-strtold (Depends-on): Add xalloc.
12277         * modules/c-strtod (Depends-on): Add xalloc.
12278         * modules/hash (Depends-on): Add xalloc.
12279         (Files): Remove lib/xalloc.h.
12280
12281         * modules/gethrxtime (Files): Add lib/gethrxtime.h.
12282         * modules/userspec (Files): Add lib/inttostr.h.
12283
12284 2005-03-23  Jim Meyering  <jim@meyering.net>
12285
12286         * lib/canonicalize.c: Remove duplicate `#include "stat-macros.h"'.
12287
12288 2005-03-22  Jim Meyering  <jim@meyering.net>
12289
12290         * modules/stat-macros: New module.
12291         * modules/canonicalize, modules/euidaccess, modules/file-type,
12292         * modules/filemode, modules/lchown, modules/makepath,
12293         * modules/rmdir, modules/stat: Depend on new stat-macros module
12294         rather than listing lib/stat-macros.h manually.
12295         Don't add stat-macros.h to lib_SOURCES or list it in Files: section.
12296
12297 2005-03-22  Jim Meyering  <jim@meyering.net>
12298
12299         * m4/stat-macros.m4 (gl_STAT_MACROS): New file/macro.
12300
12301 2005-03-22  Bruno Haible  <bruno@clisp.org>
12302
12303         * config/srclist.txt: Replace target directory 'config' with
12304         'build-aux'.
12305         * config/config.guess, config.sub, config.rpath, depcomp, install-sh:
12306         * config/mdate-sh, missing, mkinstalldirs, texinfo.tex: Move to
12307         ../build-aux/.
12308
12309 2005-03-21  Paul Eggert  <eggert@cs.ucla.edu>
12310
12311         * modules/chdir-long (Depends-on): Add mempcpy.
12312
12313         * modules/acl, modules/backupfile, modules/c-strtod,
12314         modules/c-strtold, modules/canon-host, modules/canonicalize,
12315         modules/cloexec, modules/closeout, modules/dirfd, modules/dirname,
12316         modules/exclude, modules/exitfail, modules/file-type,
12317         modules/filemode, modules/fpending, modules/fsusage, modules/getcwd,
12318         modules/getdate, modules/getline, modules/getpagesize,
12319         modules/getpass, modules/getugroups, modules/group-member,
12320         modules/hard-locale, modules/hash, modules/human, modules/idcache,
12321         modules/inttostr, modules/long-options, modules/makepath,
12322         modules/md5, modules/memcasecmp, modules/memcoll,
12323         modules/modechange, modules/mountlist, modules/path-concat,
12324         modules/pathmax, modules/physmem, modules/posixtm, modules/posixver,
12325         modules/quote, modules/quotearg, modules/readtokens, modules/readutmp,
12326         modules/safe-read, modules/safe-write, modules/same, modules/savedir,
12327         modules/settime, modules/sha1, modules/sig2str, modules/strdup,
12328         modules/strftime, modules/strndup, modules/strverscmp,
12329         modules/timespec, modules/unlocked-io, modules/userspec,
12330         modules/utimecmp, modules/utimens, modules/xalloc, modules/xstrtol,
12331         modules/yesno:
12332         Remove lib_SOURCES line from Makefile.am section, as this is now
12333         done automatically by the corresponding Autoconf macro.
12334
12335 2005-03-21  Jim Meyering  <jim@meyering.net>
12336
12337         Changes imported from coreutils.
12338
12339         * lib/cycle-check.c: Don't include xalloc.h.
12340
12341         * lib/path-concat.c: Don't include assert.h.
12342         (path_concat): Remove assertion that would have triggered
12343         for ABASE starting with more than one slash.
12344         Reported by Andreas Schwab.
12345
12346         * lib/path-concat.c (path_concat): Set *BASE_IN_RESULT
12347         properly when ABASE is an absolute file name.
12348         Correct the description of this function.
12349         Include <assert.h>.
12350         Add an assertion and a test driver.
12351         This fixes a bug introduced on 2004-07-02.
12352         Andreas Schwab reported the resulting failure of cp --parents:
12353         http://lists.gnu.org/archive/html/bug-coreutils/2005-01/msg00130.html
12354
12355 2005-03-21  Jim Meyering  <jim@meyering.net>
12356
12357         * m4/chdir-long.m4 (gl_PREREQ_CHDIR_LONG): Invoke gl_FUNC_MEMRCHR.
12358         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Check for memrchr decl.
12359
12360 2005-03-21  Jim Meyering  <jim@meyering.net>
12361         and  Paul Eggert  <eggert@cs.ucla.edu>
12362
12363         * m4/acl.m4, m4/backupfile.m4, m4/c-strtod.m4, m4/canon-host.m4,
12364         m4/canonicalize.m4, m4/cloexec.m4, m4/closeout.m4, m4/dirfd.m4,
12365         m4/dirname.m4, m4/exclude.m4, m4/exitfail.m4, m4/file-type.m4,
12366         m4/filemode.m4, m4/fpending.m4, m4/fsusage.m4, m4/getcwd.m4,
12367         m4/getdate.m4, m4/getline.m4, m4/getpagesize.m4, m4/getpass.m4,
12368         m4/getugroups.m4, m4/group-member.m4, m4/hard-locale.m4, m4/hash.m4,
12369         m4/human.m4, m4/idcache.m4, m4/inttostr.m4, m4/long-options.m4,
12370         m4/makepath.m4, m4/md5.m4, m4/memcasecmp.m4, m4/memcoll.m4,
12371         m4/modechange.m4, m4/mountlist.m4, m4/nanosleep.m4, m4/path-concat.m4,
12372         m4/pathmax.m4, m4/physmem.m4, m4/posixtm.m4, m4/posixver.m4,
12373         m4/quote.m4, m4/quotearg.m4, m4/readtokens.m4, m4/readutmp.m4,
12374         m4/safe-read.m4, m4/safe-write.m4, m4/same.m4, m4/savedir.m4,
12375         m4/settime.m4, m4/sha1.m4, m4/sig2str.m4, m4/strdup.m4, m4/strftime.m4,
12376         m4/strndup.m4, m4/strverscmp.m4, m4/timespec.m4, m4/unlocked-io.m4,
12377         m4/userspec.m4, m4/utimecmp.m4, m4/utimens.m4, m4/xalloc.m4,
12378         m4/xnanosleep.m4, m4/xstrtol.m4, m4/yesno.m4:
12379         Use AC_LIBSOURCES and AC_LIBOBJ to indicate source and object files
12380         for these modules.
12381
12382 2005-03-18  Paul Eggert  <eggert@cs.ucla.edu>
12383
12384         * lib/strftime.c (my_strftime): If the underlying strftime returns 0
12385         (which shouldn't happen), generate nothing instead of returning 0
12386         immediately, so that nstrftime (NULL, ...) doesn't return 0.
12387
12388 2005-03-16  Bruno Haible  <bruno@clisp.org>
12389
12390         * modules/stdint (Makefile.am): Use HAVE_LONG_LONG_64BIT instead of
12391         HAVE_LONGLONG_64BIT.
12392
12393 2005-03-16  Bruno Haible  <bruno@clisp.org>
12394
12395         * m4/stdint.m4 (gl_STDINT_H): Define HAVE_LONG_LONG_64BIT instead of
12396         HAVE_LONGLONG_64BIT.
12397
12398 2005-03-16  Bruno Haible  <bruno@clisp.org>
12399
12400         * lib/stdint_.h: Use HAVE_LONG_LONG_64BIT instead of
12401         HAVE_LONGLONG_64BIT.
12402
12403 2005-03-15  Paul Eggert  <eggert@cs.ucla.edu>
12404
12405         * lib/strftime.c (my_strftime): Prepend space to format so that we can
12406         reliably distinguish strftime failure from empty output on POSIX
12407         hosts.
12408
12409 2005-03-15  Paul Eggert  <eggert@cs.ucla.edu>
12410
12411         * lib/iconvme.c (SIZE_MAX): New macro, if not already defined.
12412         (iconv_string): Don't guess a size-zero buffer, as that might cause
12413         buffer overrun.  Instead, avoid multiplying by MB_LEN_MAX if the
12414         result would be 'too large', where 'too large' is (heuristically)
12415         the square root of SIZE_MAX, divided by MB_LEN_MAX to allay
12416         overflow concerns.  This will prevent some unwanted malloc failures
12417         when the inputs are very large.
12418
12419 2005-03-15  Karl Berry  <karl@gnu.org>
12420
12421         * config/srclist.txt (config.rpath): from gettext.
12422         * config/config.rpath: update.
12423
12424 2005-03-15  Bruno Haible  <bruno@clisp.org>
12425
12426         * lib/regex.c (byte_re_match_2_internal): Rename local variable 'not'
12427         to 'negate'.
12428
12429         * lib/regex.c (byte_re_match_2_internal): Reduce scope of same_str_p
12430         variable.
12431
12432         * lib/regex.c (EXTEND_BUFFER, regcomp): Cast the realloc/malloc
12433         results.
12434
12435 2005-03-14  Simon Josefsson  <jas@extundo.com>
12436
12437         * lib/timegm.h: Use proper prototype CPP guards, reported by Dave Love
12438         <fx@gnu.org>.
12439
12440 2005-03-14  Paul Eggert  <eggert@cs.ucla.edu>
12441
12442         * lib/mktime.c (TYPE_TWOS_COMPLEMENT, TYPE_ONES_COMPLEMENT,
12443         TYPE_SIGNED_MAGNITUDE, TYPE_MINIMUM, TYPE_MAXIMUM): Sync from
12444         intprops.h.
12445         * lib/strtol.c: Likewise.
12446
12447 2005-03-14  Jim Meyering  <jim@meyering.net>
12448
12449         * lib/strftime.c (my_strftime) [HAVE_STRFTIME && ! (_NL_CURRENT
12450         && HAVE_STRUCT_ERA_ENTRY)]: Initialize the first byte of ubuf[]
12451         to be nonzero so that we (and caller) can detect the difference
12452         between a valid zero-length expansion and an error return, even
12453         when the underlying strftime fails before writing anything into
12454         that location.
12455
12456 2005-03-14  Bruno Haible  <bruno@clisp.org>
12457
12458         * m4/lib-link.m4, gettext.m4, nls.m4, po.m4:
12459         Update from GNU gettext 0.14.3.
12460
12461 2005-03-10  Jim Meyering  <jim@meyering.net>
12462
12463         * m4/save-cwd.m4 (gl_SAVE_CWD): Check for fchdir.
12464
12465 2005-03-10  Jim Meyering  <jim@meyering.net>
12466
12467         * lib/save-cwd.c [!HAVE_FCHDIR]: Define open, fchdir, and chdir_long
12468         so that this module works on systems without fchdir.
12469
12470 2005-03-09  Paul Eggert  <eggert@cs.ucla.edu>
12471
12472         Factor int-properties macros into a single file, except for
12473         glibc-related files.
12474         * lib/intprops.h: New file.
12475         * lib/getloadavg.c: Include it instead of limits.h.
12476         (INT_STRLEN_BOUND): Remove.
12477         * lib/human.c: Include intprops.h.
12478         (group_number): Use INT_STRLEN_BOUND instead of rolling it ourself.
12479         * lib/human.h (LONGEST_HUMAN_READABLE): Use 146/485 rather than
12480         302/1000.
12481         * lib/inttostr.h: Include intprops.h instead of limits.h.
12482         (INT_STRLEN_BOUND, INT_BUFSIZE_BOUND): Remove.
12483         * lib/mktime.c (TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT): New macros,
12484         for consistency with intprops.h.
12485         (time_t_is_integer, twos_complement_arithmetic): Use them.
12486         * lib/sig2str.h: Include <signal.h>, intprops.h.
12487         (INT_STRLEN_BOUND): Remove.
12488         * lib/strftime.c (TYPE_SIGNED): Remove.
12489         (INT_STRLEN_BOUND): Switch to same implementation as intprops.h.
12490         * lib/strtol.c: Adjust comments to match intprops.h.
12491         * lib/userspec.c: Include intprops.h.
12492         (TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Remove.
12493         * lib/utimecmp.c, xnanosleep.c, xstrtol.c: Likewise.
12494         * lib/utimecmp.c (utimecmp): Use TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT
12495         instead of rolling our own expressions.
12496         * lib/xstrtol.c: Include xstrtol.h first, to test interface.
12497
12498         * lib/strftime.c: Include <stdbool.h>.  Use bool where appropriate,
12499         instead of int.
12500         (my_strftime): Do not mishandle years close to INT_MAX, by doing
12501         the right thing even if adding 1900 would overflow.  Similarly
12502         for tm_mon + 1 and tm_yday + 1.
12503         Make %Y always equivalent to %C%y, and similarly for %G and %g.
12504         (DO_NUMBER, DO_NUMBER_SPACEPAD): Set digits to d, not a conditional.
12505         (DO_SIGNED_NUMBER): New macro.
12506         (my_strftime) [HAVE_TZNAME]: Don't dump core if tp->tm_dst > 1.
12507
12508 2005-03-07  Bruno Haible  <bruno@clisp.org>
12509
12510         * m4/mmap-anon.m4 (MAP_FILE, MAP_FAILED): Remove definitions.
12511
12512 2005-03-07  Bruno Haible  <bruno@clisp.org>
12513
12514         * lib/pagealign_alloc.c (MAP_FILE, MAP_FAILED): Define fallbacks.
12515
12516 2005-03-04  Derek R. Price  <derek@ximbiot.com>
12517
12518         * gnulib-tool (func_cp_if_changed, func_mv_if_changed): New functions.
12519         (func_import): Only replace files via --import when they have actually
12520         changed.
12521
12522 2005-03-03  Derek R. Price  <derek@ximbiot.com>
12523
12524         * m4/mmap-anon.m4: New file.
12525         * m4/pagealign_alloc.m4: New file.
12526
12527 2005-03-03  Derek R. Price  <derek@ximbiot.com>
12528             Bruno Haible  <bruno@clisp.org>
12529
12530         * modules/pagealign_alloc: New file.
12531         * MODULES.html.sh (Memory management functions): Add pagealign_alloc.
12532
12533 2005-03-03  Derek R. Price  <derek@ximbiot.com>
12534             Bruno Haible  <bruno@clisp.org>
12535
12536         * lib/pagealign_alloc.h: New file.
12537         * lib/pagealign_alloc.c: New file.
12538
12539 2005-03-03  Bruno Haible  <bruno@clisp.org>
12540
12541         * m4/inttypes.m4, isc-posix.m4, once-only.m4:
12542         Use an all-permissive copyright notice, recommended by RMS.
12543
12544 2005-03-02  Bruno Haible  <bruno@clisp.org>
12545
12546         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Undo the replacement here. Because
12547         of AIX, the replacement has to be done only after <string.h> is
12548         included, therefore not in config.h. stpncpy.h does the replacement,
12549         and stpncpy.c uses it.
12550
12551 2005-03-02  Bruno Haible  <bruno@clisp.org>
12552
12553         * lib/stpncpy.h (stpncpy): Define as a macro without arguments, so that
12554         stpncpy.c uses it.
12555
12556 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
12557
12558         Remove workaround for bug in Linux kernel 2.6.8 or thereabouts.
12559         The workaround isn't strictly needed for POSIX conformance, and
12560         it's too much of a pain to configure and maintain.  We'll ask
12561         people to fix their kernels instead.
12562         * lib/xnanosleep.c: Don't include gethrxtime.h or xtime.h.
12563         (NANOSLEEP_BUG_WORKAROUND): Remove.
12564         (xnanosleep): Remove the workaround.
12565
12566 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
12567
12568         * modules/gettime (Makefile.am): Remove lib_SOURCES line.
12569         Reported by Derek Price.
12570         (Include): Add "timespec.h".
12571
12572         * modules/xnanosleep (Depends-on): Remove gethrxtime.
12573
12574 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
12575
12576         * m4/xnanosleep.m4 (gl_XNANOSLEEP): Remove configuration attempting
12577         to detect nanosleep bug.
12578
12579 2005-03-01  Bruno Haible  <bruno@clisp.org>
12580
12581         * lib/vasnprintf.c (EOVERFLOW): Define to a fallback if needed.
12582
12583 2005-02-26  Paul Eggert  <eggert@cs.ucla.edu>
12584
12585         * modules/gethrxtime: New file.
12586         * modules/xnanosleep (Files): Add m4/xnanosleep.m4.
12587         (Depends-on): Add gethrxtime.
12588         (configure.ac): Add gl_XNANOSLEEP.
12589         (Makefile.am): Remove lib_SOURCES line.
12590
12591 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
12592
12593         * m4/gethrxtime.m4, m4/xnanosleep.m4: New files.
12594         * m4/gettime.m4 (gl_GETTIME): Check for nanotime.
12595
12596 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
12597
12598         * lib/gethrxtime.h, lib/gethrxtime.c, lib/xtime.h: New files.
12599         * lib/timespec.h (gettime): Return void, since it always
12600         succeeds now.  All uses changed.
12601         * lib/gettime.c (gettime) Likewise.
12602         [HAVE_NANOTIME]: Prefer nanotime.
12603         Assume gettimeofday succeeds, as POSIX requires.
12604         Assime time () succeeds, since other code already does.
12605         * lib/xnanosleep.c: Include xtime.h and gethrxtime.h, not xalloc.h.
12606         (timespec_subtract): Remove.
12607         (NANOSLEEP_BUG_WORKAROUND): New constant.
12608         (xnanosleep): Use gethrxtime rather than gettime; this simplifies
12609         things considerably.  Use it only on GNU/Linux hosts, since the
12610         workaround shouldn't be needed elsewhere.
12611
12612 2005-02-24  Bruno Haible  <bruno@clisp.org>
12613
12614         * modules/gettext (Files): Add m4/glibc2.m4.
12615
12616 2005-02-24  Bruno Haible  <bruno@clisp.org>
12617
12618         * m4/gettext.m4, intdiv0.m4, intmax.m4, inttypes-pri.m4, lcmessage.m4:
12619         * m4/lib-link.m4, lib-prefix.m4, nls.m4, po.m4, printf-posix.m4:
12620         * m4/progtest.m4:
12621         Update from GNU gettext 0.14.2.
12622         * m4/glibc2.m4: New file, from GNU gettext 0.14.2.
12623
12624 2005-02-24  Bruno Haible  <bruno@clisp.org>
12625
12626         * lib/localcharset.c: Update from GNU gettext 0.14.2.
12627         * lib/config.charset: Update from GNU gettext 0.14.2.
12628
12629 2005-02-24  Bruno Haible  <bruno@clisp.org>
12630
12631         * lib/gettext.h: Update from GNU gettext 0.14.2.
12632
12633 2005-02-23  Simon Josefsson  <jas@extundo.com>
12634
12635         * m4/iconvme.m4: New file.
12636
12637 2005-02-23  Jim Meyering  <jim@meyering.net>
12638
12639         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Revert yesteday's
12640         change.
12641         Thanks to Bruno Haible for catching it.
12642
12643 2005-02-22  Simon Josefsson  <jas@extundo.com>
12644
12645         * modules/iconvme: New file.
12646
12647         * MODULES.html.sh: Add iconvme.
12648
12649 2005-02-22  Simon Josefsson  <jas@extundo.com>
12650
12651         * lib/iconvme.h, lib/iconvme.c: New files, from libc.
12652
12653 2005-02-22  Simon Josefsson  <jas@extundo.com>
12654
12655         * config/srclist.txt: Sync iconvme.h, iconvme.c from libc.
12656
12657 2005-02-22  Jim Meyering  <jim@meyering.net>
12658
12659         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Fix typo:
12660         s/ifndef/ifdef/.
12661
12662 2005-02-20  Neil Conway  <neilc@samurai.com>
12663
12664         * lib/xgethostname.c (xgethostname): Check for ENOMEM, which is
12665         returned by OSX/Darwin if the specified buffer is not large
12666         enough for the hostname.
12667
12668 2005-02-03  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
12669
12670         * lib/argp-help.c (__argp_help): Create a fake struct argp_state and
12671         pass it to _help, otherwise the latter coredumps trying to
12672         dereference state.root_argp.
12673
12674 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
12675
12676         * modules/chdir-long (Depends-on): Add memrchr.
12677         * modules/memrchr (Files): Add lib/memrchr.h.
12678         (Include): "memrchr.h".
12679
12680 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
12681
12682         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Add AC_LIBSOURCES, for memrchr.h.
12683
12684 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
12685
12686         * lib/memrchr.h: New file.
12687         * lib/chdir-long.c: Include it.
12688         * lib/memrchr.c [!defined _LIBC]: Include it rather than <string.h>
12689         Don't bother including stddef.h.
12690
12691 2005-02-01  Paul Eggert  <eggert@cs.ucla.edu>
12692
12693         * lib/mountlist.h (MOUNTLIST_H_): New macro, to protect against double
12694         inclusion.
12695         Include <sys/types.h>, for dev_t.
12696         (ME_DUMMY, ME_REMOTE): Move from here....
12697         * lib/mountlist.c (ME_DUMMY, ME_REMOTE): To here.
12698         (ME_DUMMY): Count "subfs" as a dummy.  Problem reported by
12699         Dmitry V. Levin.
12700         Include mountlist.h first, to test the interface.
12701
12702 2005-01-29  Bruno Haible  <bruno@clisp.org>
12703
12704         * lib/progname.c (program_name): Initialize.
12705         Needed when linking statically on MacOS X.
12706
12707 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
12708
12709         Sync from coreutils.
12710         * modules/getloadavg (Files): Remove m4/getloadavg.m4.
12711         (Depends-on): Add c-strtod.
12712         (configure.ac): Replace gl_FUNC_GETLOADAVG with AC_FUNC_GETLOADAVG.
12713
12714 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
12715
12716         Sync from coreutils.
12717         * m4/getloadavg.m4, glibc.m4, search-libs.m4: Remove.
12718
12719         Remove files that are specific to coreutils.
12720         * m4/check-decl.m4, jm-macros.m4, lib-check.m4, prereq.m4: Remove.
12721
12722 2005-01-28  Bruno Haible  <bruno@clisp.org>
12723
12724         * modules/javacomp: New file.
12725         * MODULES.html.sh (Java): Add javacomp.
12726
12727 2005-01-28  Bruno Haible  <bruno@clisp.org>
12728
12729         * m4/javacomp.m4: New file, from GNU gettext.
12730
12731 2005-01-28  Bruno Haible  <bruno@clisp.org>
12732
12733         * lib/javacomp.sh.in: New file, from GNU gettext.
12734         * lib/javacomp.h: New file, from GNU gettext.
12735         * lib/javacomp.c: New file, from GNU gettext.
12736
12737 2005-01-26  Simon Josefsson  <jas@extundo.com>
12738
12739         * lib/gai_strerror.c: Use GPL in header.
12740
12741 2005-01-26  Bruno Haible  <bruno@clisp.org>
12742
12743         * modules/javaexec: New file.
12744         * MODULES.html.sh (Java): Add javaexec.
12745
12746 2005-01-26  Bruno Haible  <bruno@clisp.org>
12747
12748         * m4/javaexec.m4: New file, from GNU gettext.
12749
12750 2005-01-26  Bruno Haible  <bruno@clisp.org>
12751
12752         * lib/javaexec.sh.in: New file, from GNU gettext.
12753         * lib/javaexec.h: New file, from GNU gettext.
12754         * lib/javaexec.c: New file, from GNU gettext.
12755
12756 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
12757
12758         * modules/lchown (Depends-on): Remove lchown.h
12759
12760 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
12761
12762         * m4/sysexits.m4 (gl_SYSEXITS): Reverted logic. SYSEXITS_H
12763         must be defined if the header file was not found, in order
12764         to provide a replacement. Reported by Todd Vierling <tv@duh.org>
12765
12766 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
12767
12768         * lib/argp-help.c (hol_entry_help): Avoid using non-constant
12769         initializers for struct pentry_state.
12770         (__argp_error): Check return value of __asprintf
12771         (__argp_failure): Translate error message
12772
12773         * lib/argp-parse.c: Removed braces around the expansion of N_()
12774
12775 2005-01-23  Paul Eggert  <eggert@cs.ucla.edu>
12776
12777         * m4/acl.m4, afs.m4, alloca.m4, argp.m4, assert.m4, atexit.m4,
12778         backupfile.m4, base64.m4, bison.m4, c-bs-a.m4, c-stack.m4,
12779         c-strtod.m4, calloc.m4, canon-host.m4, canonicalize.m4,
12780         clock_time.m4, cloexec.m4, closeout.m4, d-ino.m4, d-type.m4,
12781         dirfd.m4, dirname.m4, dos.m4, dup2.m4, error.m4, euidaccess.m4,
12782         exclude.m4, exitfail.m4, extensions.m4, fcntl-safer.m4,
12783         file-type.m4, fileblocks.m4, filemode.m4, fnmatch.m4, fpending.m4,
12784         free.m4, fstypename.m4, fsusage.m4, ftruncate.m4, getaddrinfo.m4,
12785         getcwd-path-max.m4, getcwd.m4, getdate.m4, getdomainname.m4,
12786         getgroups.m4, gethostname.m4, getline.m4, getndelim2.m4,
12787         getnline.m4, getopt.m4, getpagesize.m4, getpass.m4, getsubopt.m4,
12788         gettime.m4, gettimeofday.m4, getugroups.m4, getusershell.m4,
12789         group-member.m4, hard-locale.m4, hash.m4, host-os.m4, human.m4,
12790         idcache.m4, inttostr.m4, isdir.m4, jm-winsz1.m4, jm-winsz2.m4,
12791         link-follow.m4, long-options.m4, ls-mntd-fs.m4, lstat.m4,
12792         makepath.m4, mathl.m4, md5.m4, memcasecmp.m4, memchr.m4,
12793         memcmp.m4, memcoll.m4, memcpy.m4, memmem.m4, memmove.m4,
12794         memrchr.m4, memset.m4, mkdir-slash.m4, mkstemp.m4, mktime.m4,
12795         modechange.m4, mountlist.m4, nanosleep.m4, obstack.m4,
12796         path-concat.m4, pathmax.m4, perl.m4, physmem.m4, poll.m4,
12797         posixtm.m4, posixver.m4, putenv.m4, quote.m4, quotearg.m4,
12798         readdir.m4, readtokens.m4, readutmp.m4, regex.m4, rename.m4,
12799         restrict.m4, rmdir-errno.m4, rmdir.m4, rpmatch.m4, same.m4,
12800         savedir.m4, settime.m4, sha1.m4, sig2str.m4, snprintf.m4,
12801         sockpfaf.m4, st_dm_mode.m4, st_mtim.m4, stat.m4, stdint.m4,
12802         stdio-safer.m4, strchrnul.m4, strdup.m4, strerror.m4,
12803         strerror_r.m4, strftime.m4, strndup.m4, strnlen.m4, strsep.m4,
12804         strtod.m4, strtoimax.m4, strtok_r.m4, strtol.m4, strtoll.m4,
12805         strtoul.m4, strtoull.m4, strtoumax.m4, strverscmp.m4, sysexits.m4,
12806         time_r.m4, timegm.m4, timespec.m4, tm_gmtoff.m4, tzset.m4,
12807         uint32_t.m4, uintptr_t.m4, unistd-safer.m4, unlink-busy.m4,
12808         unlocked-io.m4, uptime.m4, userspec.m4, utimbuf.m4, utime.m4,
12809         utimecmp.m4, utimens.m4, utimes-null.m4, vsnprintf.m4, xalloc.m4,
12810         xgetcwd.m4, xreadlink.m4, xstrndup.m4, xstrtod.m4, xstrtoimax.m4,
12811         xstrtol.m4, xstrtoumax.m4, yesno.m4:
12812         Use an all-permissive copyright notice, recommended by RMS.
12813
12814 2005-01-21  Paul Eggert  <eggert@cs.ucla.edu>
12815
12816         * modules/chdir-long (Depends-on): Remove mempcpy.
12817
12818 2005-01-21  Jim Meyering  <jim@meyering.net>
12819
12820         * lib/openat.h (AT_SYMLINK_NOFOLLOW): Define to 4096, so it's the
12821         same value as for Solaris 9.
12822
12823         * lib/chdir-long.c (chdir_long): Rewrite to remove limitation on
12824         component length.  This included changing the parameter to be
12825         of type `char *' rather than `char const *'.
12826         * lib/chdir-long.h (chdir_long): Update prototype.
12827
12828         * lib/openat.c (fdopendir, fstatat): New functions.
12829         * lib/openat.h: Include headers required for use of DIR and struct
12830         stat.
12831         [AT_SYMLINK_NOFOLLOW]: Define.
12832         (fdopendir, fstatat): Add prototypes.
12833
12834 2005-01-21  Bruno Haible  <bruno@clisp.org>
12835
12836         * modules/classpath: New file.
12837         * MODULES.html.sh (Java): Add classpath.
12838
12839 2005-01-21  Bruno Haible  <bruno@clisp.org>
12840
12841         * lib/classpath.h: New file, from GNU gettext.
12842         * lib/classpath.c: New file, from GNU gettext.
12843
12844 2005-01-20  Simon Josefsson  <jas@extundo.com>
12845
12846         * modules/version-etc-fsf: New file.
12847
12848 2005-01-20  Simon Josefsson  <jas@extundo.com>
12849
12850         * lib/version-etc-fsf.c: New file, with version_etc_copyright.
12851         * lib/version-etc.c: Remove version_etc_copyright.
12852         * lib/version-etc.h (version_etc_copyright): Use [] instead of * in
12853         prototype, suggested by Paul Eggert <eggert@CS.UCLA.EDU>.
12854
12855 2005-01-20  Simon Josefsson  <jas@extundo.com>
12856
12857         * lib/base64.h (isbase64): Add.
12858
12859         * lib/base64.c (isb64): Rename to isbase64, use to_uchar instead of
12860         using a unsigned prototype, don't inline.
12861         (base64_decode): Use it.
12862
12863 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
12864
12865         * m4/save-cwd.m4 (gl_SAVE_CWD): Remove check for fcntl; we now assume
12866         it.
12867
12868 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
12869
12870         * lib/save-cwd.c (save_cwd): Remove code to support the case
12871         where fchdir is missing or flaky.
12872
12873 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
12874
12875         * MODULES.html.sh (Command-line arguments): Add version-etc-fsf.
12876
12877 2005-01-19  Paul Eggert  <eggert@cs.ucla.edu>
12878
12879         * modules/mempcpy (Makefile.am): Remove mention of mempcpy.h;
12880         AC_LIBSOURCES now does this.
12881         * MODULES.html.sh (Sizes of integer types <limits.h>): New element,
12882         with new ullong_max module.
12883
12884 2005-01-19  Bruno Haible  <bruno@clisp.org>
12885
12886         * modules/sh-quote: New file.
12887         * MODULES.html.sh (Executing programs): Add sh-quote.
12888
12889 2005-01-19  Bruno Haible  <bruno@clisp.org>
12890
12891         * lib/sh-quote.h: New file, from GNU gettext.
12892         * lib/sh-quote.c: New file, from GNU gettext.
12893
12894 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
12895
12896         Merge from coreutils.
12897         * m4/ullong_max.m4: New file.
12898         * m4/jm-macros.m4 (gl_MACROS): Require gl_ULLONG_MAX.
12899         (gl_MACROS): Assume localeconv exists.
12900
12901 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
12902
12903         Merge changes from coreutils, as described below in several
12904         changelogs dated today.
12905
12906         * lib/save-cwd.c: Include "save-cwd.h" before other include files.
12907         (O_DIRECTORY): Remove; not needed here, since "." must be
12908         a directory.  All uses removed.
12909         (save_cwd): Use __sgi || __sun, not sun || __sun.  __sun is
12910         universal on Suns, and we also need to test for IRIX.
12911         Revamp code to use 'if' rather than '#if'.
12912         Avoid unnecessary comparison of cwd->desc to 0.
12913
12914         * lib/utimens.c (futimens): Robustify the previous patch, by checking
12915         for known valid error numbers rather than observed invalid ones.
12916
12917 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
12918
12919         * modules/ullong_max: New file.
12920
12921         * modules/chdir-long, modules/openat: New files.
12922         * modules/save-cwd (Depends-on): Depend on chdir-long.
12923         (Makefile.am): Remove lib_SOURCES; now handled by AC_LIBSOURCES.
12924
12925 2005-01-18  Jim Meyering  <jim@meyering.net>
12926
12927         Merge from coreutils.
12928         * m4/chdir-long.m4, m4/openat.m4: New files.
12929         * m4/save-cwd.m4 (gl_SAVE_CWD): Add AC_LIBSOURCES for save-cwd.c,
12930         save-cwd.h.  Add AC_LIBOBJ for save-cwd.
12931         * m4/chown.m4 (gl_FUNC_CHOWN): When cross-compiling, assume that chown
12932         is sane and DOES follow symlinks.  Besides, testing 20 different
12933         systems found no broken chown implementations.
12934         Prompted by a change in rsync's copy of this macro.
12935         * m4/jm-macros.m4 (gl_MACROS): Require gl_FUNC_CHDIR_LONG.
12936
12937         * m4/lchown.m4 (gl_FUNC_LCHOWN): Use AC_LIBSOURCES.
12938
12939         * m4/utimes.m4: Work around tests/touch/empty-file failure on a system
12940         (sparc64, Linux-2.4.28, glibc-2.3.3) that didn't honor utimes'
12941         NULL-means-set-to-current-time semantics.
12942         Remove temporary file immediately, rather than waiting
12943         for configure's at-exit trap code to do it.
12944
12945 2005-01-18  Jim Meyering  <jim@meyering.net>
12946
12947         * lib/version-etc.c (version_etc_copyright): Update copyright date.
12948
12949         * lib/utimens.c (futimens): Account for the fact that futimes
12950         can also fail with errno == ENOSYS or errno == ENOENT.
12951         Patch from Dmitry V. Levin.
12952
12953         Change the name of the robust chdir function from chdir to chdir_long.
12954         * lib/save-cwd.c: Include chdir-long.h rather than chdir.h.
12955         (restore_cwd): Use chdir_long, not chdir.
12956         * lib/chdir-long.c: Renamed from chdir.c.
12957         * lib/chdir-long.h: Renamed from chdir.h.
12958         [!defined PATH_MAX]: Define chdir_long to chdir on systems like the
12959         Hurd.
12960
12961 2005-01-18  Bruno Haible  <bruno@clisp.org>
12962
12963         * m4/allocsa.m4, m4/codeset.m4, m4/copy-file.m4, m4/eaccess.m4:
12964         * m4/eealloc.m4, m4/eoverflow.m4, m4/execute.m4, m4/fatal-signal.m4:
12965         * m4/findprog.m4, m4/glibc21.m4, m4/iconv.m4, m4/intmax_t.m4:
12966         * m4/inttypes_h.m4, m4/lib-ld.m4, m4/lib-link.m4, m4/lib-prefix.m4:
12967         * m4/linebreak.m4, m4/localcharset.m4, m4/longdouble.m4:
12968         * m4/longlong.m4, m4/mbrtowc.m4, m4/mbstate_t.m4, m4/mbswidth.m4:
12969         * m4/mkdtemp.m4, m4/pipe.m4, m4/readlink.m4, m4/safe-read.m4:
12970         * m4/safe-write.m4, m4/setenv.m4, m4/sig_atomic_t.m4:
12971         * m4/signalblocking.m4, m4/signed.m4, m4/size_max.m4, m4/ssize_t.m4:
12972         * m4/stdbool.m4, m4/stdint_h.m4, m4/stpcpy.m4, m4/stpncpy.m4:
12973         * m4/strcase.m4, m4/strcspn.m4, m4/strpbrk.m4, m4/strstr.m4:
12974         * m4/ucs4-utf.m4, m4/uintmax_t.m4, m4/ulonglong.m4, m4/unicodeio.m4:
12975         * m4/utf-ucs4.m4, m4/vasnprintf.m4, m4/vasprintf.m4:
12976         * m4/wait-process.m4, m4/wchar_t.m4, m4/wint_t.m4, m4/xsize.m4:
12977         Use an all-permissive copyright notice, recommended by RMS.
12978
12979 2005-01-18  Bob Proulx  <bob@proulx.com>
12980
12981         * lib/obstack.c [DEFAULT_ALIGNMENT]: Use an intermediate type to
12982         simplify offsetof() macro construct to avoid compile failure with
12983         native HP-UX 11.0 ANSI C compiler.
12984
12985 2005-01-17  Bruno Haible  <bruno@clisp.org>
12986
12987         * lib/stpncpy.c: Remove HAVE_STPNCPY and gnu_stpncpy renaming,
12988         redundant because stpncpy.m4 takes care of it.
12989
12990 2005-01-17  Bruno Haible  <bruno@clisp.org>
12991
12992         * lib/progreloc.c: Include xalloc.h instead of xmalloc.h.
12993
12994 2005-01-17  Bruno Haible  <bruno@clisp.org>
12995
12996         * lib/progreloc.c (xstrdup): Define as strdup if no xmalloc should be
12997         used.
12998
12999 2005-01-17  Bruno Haible  <bruno@clisp.org>
13000
13001         * lib/fwriteerror.h (fwriteerror): Change specification to include
13002         fclose.
13003         * lib/fwriteerror.c: Include <stdbool.h>.
13004         (fwriteerror): At the end, close the file stream. Record whether
13005         stdout was already closed.
13006
13007 2005-01-17  Bruno Haible  <bruno@clisp.org>
13008
13009         * lib/execute.c (environ): Declare if needed.
13010         * lib/pipe.c (environ): Likewise.
13011         Reported by Michael Schloh von Bennewitz <michael.schloh@cw.com>.
13012
13013 2005-01-11  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
13014
13015         * modules/argp: Depend on vsnprintf
13016
13017 2005-01-10  Jim Meyering  <jim@meyering.net>
13018
13019         * modules/closeout (Depends-on): Add atexit.
13020
13021 2005-01-06  Bruno Haible  <bruno@clisp.org>
13022
13023         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Rename stpncpy to gnu_stpncpy here.
13024
13025 2005-01-04  Paul Eggert  <eggert@cs.ucla.edu>
13026
13027         * lib/human.c (SIZE_MAX, UINTMAX_MAX): Move these conditional
13028         definitions to be after all include files, to avoid collisions.
13029         Problem reported by Bob Proulx.
13030
13031 2005-01-04  Jim Meyering  <jim@meyering.net>
13032
13033         Changes imported from coreutils.
13034         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Rather than using "conftestXXXXXX"
13035         as the mkstemp template, use a temporary directory and an
13036         8.3-friendly template to avoid trouble on systems like DJGPP.
13037         Reported by Juan M. Guerrero via Stepan Kasal.
13038         * m4/(gl_FUNC_MKSTEMP): Include <unistd.h> for the declaration of
13039         close. Remove the temporary directory right away, rather than waiting
13040         for configure's at-exit trap code to do it.
13041         Suggestion from Stepan Kasal.
13042
13043 2005-01-01  Simon Josefsson  <jas@extundo.com>
13044
13045         * gnulib-tool: Print #include directives when --import'ing.
13046
13047 2004-12-28  Simon Josefsson  <jas@extundo.com>
13048
13049         * tests/test-base64.c: Include required header files.  Remove
13050         unused variables.
13051
13052 2004-12-28  Paul Eggert  <eggert@cs.ucla.edu>
13053
13054         * modules/error (Depends-on): Remove gettext.
13055
13056 2004-12-28  Paul Eggert  <eggert@cs.ucla.edu>
13057
13058         * lib/error.c [!_LIBC && !ENABLE_NLS]: Do not include "gettext.h";
13059         not needed.  This removes a dependency on the gettext module.
13060         [defined _LIBC]: Do not include <libintl.h>; not needed.
13061
13062 2004-12-24  Paul Eggert  <eggert@cs.ucla.edu>
13063
13064         * m4/c-strtod.m4 (gl_C99_STRTOLD): New macro.
13065         (gl_C_STRTOD): Use it instead of AC_CHECK_DECLS_ONCE(strtold).
13066
13067 2004-12-24  Paul Eggert  <eggert@cs.ucla.edu>
13068
13069         * lib/c-strtod.c (STRTOD): Depend on HAVE_C99_STRTOLD, not
13070         HAVE_DECL_STRTOLD.
13071
13072 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
13073
13074         * modules/getdate (Depends-on): Remove alloca-opt.
13075
13076 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
13077
13078         * m4/getdate.m4 (gl_GETDATE): Remove AC_FUNC_ALLOCA.
13079
13080 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
13081
13082         * lib/argp-parse.c: Include <stddef.h>.
13083         (alignof, alignto): New macros.
13084         (parser_init): Don't assume that void * is aligned sufficiently
13085         for struct option.
13086
13087         * lib/getdate.y (YYSTACK_USE_ALLOCA): Define to 0, since there's no
13088         need to extend the stack.
13089         (YYINITDEPTH): New macro, so that the initial stack isn't overly
13090         large.
13091
13092 2004-12-22  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
13093
13094         * lib/argp-parse.c (parser_init): Avoid arithmetics on void pointers.
13095
13096 2004-12-19  Paul Eggert  <eggert@cs.ucla.edu>
13097
13098         * modules/regex (lib_SOURCES): Remove regex.c, undoing previous
13099         (2004-10-24) change.  Apparently this was a false alarm.
13100
13101         * modules/getdate: Depend on alloca-opt, not alloca.
13102
13103 2004-12-19  Paul Eggert  <eggert@cs.ucla.edu>
13104
13105         * lib/alloca_.h: Conditionalize on _GNULIB_ALLOCA_H, not _ALLOCA_H.
13106         Remove now-obsolete comment about AIX.
13107         * lib/getdate.y: Include <alloca.h> only if HAVE_ALLOCA.
13108         (YYSTACK_USE_ALLOCA): Define to 0 if !HAVE_ALLOCA.
13109         (YYMAXDEPTH): New macro.
13110
13111 2004-12-18  Simon Josefsson  <jas@extundo.com>
13112
13113         * modules/alloca: Depend on alloca-opt, instead of duplicating it.
13114
13115 2004-12-18  Bruno Haible  <bruno@clisp.org>
13116
13117         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Also test for sigaction.
13118
13119 2004-12-18  Bruno Haible  <bruno@clisp.org>
13120
13121         * lib/fatal-signal.c (fatal_signals): Make non-const.
13122         (init_fatal_signals): New function.
13123         (uninstall_handlers, install_handlers): Ignore signals that were set to
13124         SIG_IGN.
13125         (at_fatal_signal): Call init_fatal_signals.
13126         (init_fatal_signal_set): Likewise. Ignore signals that were set to
13127         SIG_IGN.
13128         Reported by Paul Eggert.
13129
13130 2004-12-18  Bruno Haible  <bruno@clisp.org>
13131
13132         * doc/alloca.texi: New file.
13133         * doc/alloca-opt.texi: New file.
13134
13135 2004-12-17  Jim Meyering  <jim@meyering.net>
13136
13137         * config/install-sh: Use `(exit N); exit N', not `(exit N); exit'.
13138         Otherwise, install-sh could exit with improper exit status when
13139         exiting via a trapped interrupt.  Thanks to a report from Bob Proulx.
13140
13141 2004-12-16  Simon Josefsson  <jas@extundo.com>
13142
13143         * tests/test-base64.c: Add license.
13144
13145 2004-12-15  Stepan Kasal  <address@hidden>
13146
13147         * gnulib-tool (func_emit_lib_Makefile_am): Shorten a long sed command.
13148
13149 2004-12-12  Paul Eggert  <eggert@cs.ucla.edu>
13150
13151         * modules/getcwd (Files): Add m4/d-ino.m4.
13152         Suggested by Mark D. Baushke.
13153
13154 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
13155
13156         * lib/getdate.y (textint): New member "negative".
13157         (time_zone_hhmm): New function.
13158         Expect 14 shift-reduce conflicts, not 13.
13159         (o_colon_minutes): New rule.
13160         (time, zone): Use it to add support for +HH:MM, UTC+HH:MM.
13161         (yylex): Set the "negative" member of signed numbers.
13162
13163 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
13164
13165         * doc/getdate.texi (Time of day items, Time zone items):
13166         Describe new formats +00:00, UTC+00:00.
13167
13168 2004-12-07  Paul Eggert  <eggert@cs.ucla.edu>
13169
13170         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Fix typo in previous change:
13171         spurious "-l"s.  Problem reported by Stepan Kasal.
13172
13173 2004-12-06  Paul Eggert  <eggert@cs.ucla.edu>
13174
13175         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): New macro, to work around bug
13176         in Autoconf 2.59.  Problem reported by Mark D. Baushke.
13177
13178 2004-12-04  Simon Josefsson  <jas@extundo.com>
13179
13180         * modules/getaddrinfo (License): Add LGPL, reported by Yoann
13181         Vandoorselaere <yoann@prelude-ids.org>.
13182
13183 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
13184
13185         Changes imported from coreutils.
13186         * m4/hard-locale.m4 (gl_HARD_LOCALE): Assume locale.h and setlocale
13187         exist.
13188         * m4/human.m4 (gl_HUMAN): Assume locale.h and localeconv exist.
13189
13190 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
13191
13192         Changes imported from coreutils.
13193         * lib/hard-locale.c: Assume <locale.h> exists.
13194         Include "strdup.h".
13195         (GLIBC_VERSION): New macro.
13196         (hard_locale): Assume setlocale exists.
13197         Rewrite to avoid #ifdef.
13198         Use strdup rather than malloc + strcpy.
13199         * lib/human.c: Assume <locale.h> exists.
13200         (human_readable): Assume localeconv exists.
13201
13202 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
13203
13204         * modules/hard-locale (Depends-on): Add strdup.
13205
13206 2004-12-01  Jakub Jelinek  <jakub@redhat.com>
13207
13208         * lib/mktime.c (__mktime_internal): If SEC_REQUESTED != SEC,
13209         convert T2, not T.  (Imported from libc.)
13210
13211 2004-11-30  Simon Josefsson  <jas@extundo.com>
13212
13213         * modules/restrict (License): Change to LGPL.
13214
13215 2004-11-30  Simon Josefsson  <jas@extundo.com>
13216
13217         * m4/restrict.m4: Add copyright and copying conditions.
13218
13219 2004-11-30  Simon Josefsson  <jas@extundo.com>
13220
13221         * m4/base64.m4: New file.
13222
13223 2004-11-30  Simon Josefsson  <jas@extundo.com>
13224
13225         * MODULES.html.sh (Extra functions based on ANSI C 89): Add
13226         base64.
13227
13228         * tests/test-base64.c: New file.
13229
13230         * modules/base64: New file.
13231
13232 2004-11-30  Paul Eggert  <eggert@cs.ucla.edu>
13233
13234         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX):
13235         Define HAVE_PARTLY_WORKING_GETCWD if getcwd is partly working.
13236
13237         * m4/readutmp.m4 (gl_READUTMP): Don't check for sys/param.h.
13238
13239 2004-11-30  Paul Eggert  <eggert@cs.ucla.edu>
13240
13241         * lib/getcwd.c (is_ENAMETOOLONG): New macro.
13242         (__getcwd.c): Don't restore errno; glibc doesn't.
13243         [HAVE_PARTLY_WORKING_GETCWD && !defined AT_FDCWD]: Try system getcwd
13244         first, falling back to our code only if its results look suspicious.
13245         Ensure that the resulting buffer is only as large as necessary.
13246
13247         * lib/readutmp.c: Include readutmp.h first.
13248         Include <errno.h>, since readutmp.h no longer does that.
13249         * lib/readutmp.h: Don't include <errno.h>,
13250         <sys/param.h>, <time.h>; not needed to establish interface.
13251         (errno): Remove decl.
13252         (HAVE_STRUCT_XTMP_UT_TYPE): Remove; no longer needed.
13253         (UT_TYPE_EQ, UT_TYPE_NOT_DEFINED, UT_TYPE_BOOT_TIME,
13254         UT_TYPE_USER_PROCESS, IS_USER_PROCESS): New macros.
13255
13256 2004-11-28  Simon Josefsson  <jas@extundo.com>
13257
13258         * lib/base64.h, base64.c: New file.
13259
13260 2004-11-27  Paul Eggert  <eggert@cs.ucla.edu>
13261
13262         * lib/getcwd.h: New file, which I forgot to check in on 2004-11-25.
13263
13264 2004-11-26  Paul Eggert  <eggert@cs.ucla.edu>
13265
13266         * modules/getcwd (Files): Add lib/getcwd.h, m4/getcwd.m4.
13267         (Depends-on): Remove pathmax, same.  Add mempcpy.
13268         (configure.ac): GL_FUNC_GETCWD_PATH_MAX -> gl_FUNC_GETCWD.
13269         (Makefile.am): Append getcwd.h to lib_SOURCES.
13270         (Include): Add getcwd.h.
13271         (Maintainer): Change from Jim Meyering to "all, glibc",
13272         since getdate now uses intended-for-glibc code.
13273         * modules/xgetcwd (Files): Remove m4/getcwd.m4.
13274         (Depends-on): Depend on getcwd.  Do not depend on pathmax.
13275
13276 2004-11-25  Paul Eggert  <eggert@cs.ucla.edu>
13277
13278         Fix problems reported by Scott S. Tinsley for HP-UX 11.11 using
13279         HP's ANSI C compiler.
13280         * lib/fsusage.c (statvfs) [HAVE_SYS_STATVFS_H]: Remove decl.
13281         Declaring int functions causes warnings on some modern systems and
13282         shouldn't be needed to compile on ancient ones.
13283         * lib/same.c (MIN) [defined MIN]: Don't define, since it's already
13284         defined.
13285
13286         * lib/getcwd.c: Replace by a copy of glibc/sysdeps/posix/getcwd.c, but
13287         with the following changes.
13288         (__set_errno): Parenthesize properly.
13289         Include <stdbool.h>.
13290         (MIN, MAX, MATCHING_INO): New macros.
13291         (__getcwd): Define with prototype, not K&R form.
13292         Use heuristics to allocate default buffer on stack if possible.
13293         If AT_FDCWD is defined, use openat and fstatat to avoid O(N**2)
13294         behavior, and to avoid the PATH_MAX limit when computing
13295         ../../../../...
13296         Use MATCHING_INO to compare inode number to file.
13297         Check for arithmetic overflow in size calculations.
13298         Fix bug in reallocation of dot array that caused getcwd to fail
13299         on directories nested deeper than 75.
13300         Be more careful about saving errno on error.
13301         Do not use realloc; use only free+malloc, as this is a bit
13302         more flexible and avoids a needless copy operation.
13303         Do not inspect st_dev and st_ino for symbolic links; POSIX
13304         doesn't specify the latter.
13305         Check for closedir errors.
13306         Avoid needless casts.
13307         Use "#ifdef weak_alias" around weak_alias, to be like other
13308         glibc code.
13309         The following changes to getcwd.c have effect only when used in
13310         gnulib; they have no effect inside glibc proper.
13311         (#pragma alloca) [defined _AIX && !defined __GNUC__]: Remove,
13312         as alloca isn't used.
13313         (alloca, __alloca): Likewise.
13314         [!_LIBC]: Include "getcwd.h", "mempcpy.h".
13315         Include <stddef.h>, <stdlib.h>, <string.h>, <limits.h>
13316         unconditionally, as gnulib assumes C89 or better.
13317         Do not include <sys/param.h>.
13318         (errno) [!defined __GNU_LIBRARY__ && !defined STDC_HEADERS]: Remove
13319         no-longer-necessary 'extern int errno' decl; gnulib assumes C89 or
13320         better.
13321         (NULL) [!defined NULL]: Remove; we assume C89 or better.
13322         Include <dirent.h> in a way that is compatible with modern Autoconf.
13323         (_D_ALLOC_NAMELEN, _D_EXACT_NAMLEN):
13324         New macros, if not already defined.
13325         Include <unistd.h> if _LIBC, not if __GNU_LIBRARY__.
13326         Use "_LIBC", not "defined _LIBC", for consistency.
13327         (HAVE_MEMPCPY): Remove; no longer needed now that gnulib has
13328         a mempcpy module.
13329         (__lstat, __closedir, __opendir, __readdir) [!_LIBC]: New macros.
13330         (GETCWD_RETURN_TYPE): Remove.  All uses replaced by char *.
13331         * lib/xgetcwd.c: David MacKenzie's old code was removed, so give
13332         credit only to Jim Meyering and adjust the copyright dates.
13333         Do not include <limits.h>, <stdio.h>, <sys/types.h>,
13334         <stdlib.h>, <unistd.h>, "pathmax.h".
13335         Instead, include "xgetcwd.h" (first) and "getcwd.h".
13336         (INITIAL_BUFFER_SIZE): Remove.
13337         (xgetcwd): Rely on getcwd, since we now depend on a reliable one.
13338
13339 2004-11-25  Paul Eggert  <eggert@cs.ucla.edu>
13340
13341         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Renamed from
13342         GL_FUNC_GETCWD_PATH_MAX for consistency.  All uses changed.
13343         Use the _ONCE methods, for efficiency.
13344         Check for fcntl.h.  In test program, include <errno.h>
13345         and <fcntl.h> if available.  Remove old K&R cruft from
13346         test program.  Check for common errors in GNU/Linux,
13347         OpenBSD, and Solaris.  Just set gl_cv_func_getcwd_path_max;
13348         don't do AC_LIBOBJ, as that's getcwd.m4's job.
13349         * m4/getcwd.m4 (gl_FUNC_GETCWD_NULL): Renamed from
13350         AC_FUNC_GETCWD_NULL.  All used changed.  Change cache variable
13351         name accordingly.
13352         (gl_FUNC_GETCWD, gl_PREREQ_GETCWD): New macros.  Revamp to
13353         accommodate new getcwd.c.
13354         * m4/jm-macros.m4 (gl_MACROS): Don't require GL_FUNC_GETCWD_PATH_MAX.
13355         * m4/prereq.m4 (gl_PREREQ): Add gl_FUNC_MEMPCPY.
13356         * m4/xgetcwd.m4 (gl_XGETCWD): Replace with gl_FUNC_GETCWD, since
13357         that's all we need now.
13358
13359 2004-11-23  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
13360
13361         * m4/argp.m4 (gl_ARGP): Require gl_GETOPT_SUBSTITUTE unconditionally:
13362         argp-parse.c depends on getopt internals, that means we should
13363         always use our getopt, to be on the safe side.
13364         * m4/getopt.m4 (gl_GETOPT): Check if GETOPT_H is already set, in
13365         order not to spoil the result of an eventual previous invocation
13366         of gl_GETOPT_SUBSTITUTE.
13367
13368 2004-11-23  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
13369
13370         * lib/getopt_.h: Re-addition of __getopt_argv_const caused
13371         redefinition warnings. To avoid them, include the defines
13372         in `#if !defined __need_getopt ... #endif'. The only place
13373         where __getopt_argv_const is used is in definitions
13374         of getopt_long and getopt_long_only below, which are as well
13375         protected by `#ifndef __need_getopt'.
13376         [defined __GETOPT_PREFIX && !defined __need_getopt]: Undef
13377         __need_getopt after including <stdio.h> and <unistd.h> These
13378         headers might have defined it.
13379
13380 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
13381
13382         * m4/utimens.m4 (gl_UTIMENS): Check for futimes function.
13383
13384 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
13385
13386         * lib/utimens.c (__attribute__, ATTRIBUTE_UNUSED): New macros.
13387         (futimens): New function, which uses futimes if available.
13388         (futimens, utimens): Support timespec==NULL, with same semantics
13389         as utime and utimens.
13390         * lib/utimens.h (futimens): New decl.
13391
13392 2004-11-23  Jim Meyering  <jim@meyering.net>
13393
13394         * lib/getopt_.h: Remove trailing blanks.
13395
13396 2004-11-23  Jim Meyering  <jim@meyering.net>
13397
13398         * lib/__fpending.c: Add comment.
13399
13400 2004-11-22  Paul Eggert  <eggert@cs.ucla.edu>
13401
13402         * modules/canonicalize (Depends-on): Add xreadlink.
13403         Problem reported by James Youngman.
13404
13405 2004-11-20  Paul Eggert  <eggert@cs.ucla.edu>
13406
13407         * lib/getopt_.h (__GETOPT_CONCAT, __GETOPT_XCONCAT, __GETOPT_ID):
13408         New macros.
13409         (getopt, getopt_long, getopt_long_only, optarg, opterr, optind,
13410         optopt): Use them instead of invoking ## directly; otherwise, the
13411         symbols will be __GETOPT_PREFIXgetopt rather than rpl_getopt.
13412
13413 2004-11-19  Bruno Haible  <bruno@clisp.org>
13414
13415         * lib/strtok_r.c: Move comments from here...
13416         * lib/strtok_r.h: ... to here.
13417
13418 2004-11-17  Paul Eggert  <eggert@cs.ucla.edu>
13419
13420         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Check for buggy calloc
13421         implementations that mishandle size_t overflow.
13422
13423 2004-11-17  Paul Eggert  <eggert@cs.ucla.edu>
13424
13425         * lib/realloc.c (rpl_realloc): Call 'free' if n==0, since realloc
13426         might fail.  Problem reported by Yoann Vandoorselaere.
13427         * lib/calloc.c (rpl_calloc): Defend against buggy calloc
13428         implementations that mishandle size_t overflow.
13429
13430 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
13431
13432         * modules/canon-host (Depends-on): Add strdup.
13433
13434 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
13435
13436         * m4/canon-host.m4 (gl_CANON_HOST): Check for getaddrinfo.
13437
13438 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
13439
13440         * lib/canon-host.c: Include "strdup.h".
13441         (canon_host): Use getaddrinfo if available, so that IPv6 works.
13442         Use strdup instead of malloc/strcpy to duplicate strings.
13443
13444         * lib/human.h (LONGEST_HUMAN_READABLE): Add 1 for space before unit.
13445         (human_space_before_unit): New constant.
13446         * lib/human.c (human_readable): Support it.
13447
13448         * lib/xgetcwd.c: Include <limits.h>, for PATH_MAX.
13449         (xgetcwd): Set errno correctly when failing.
13450         Work around Solaris 9 bug: getcwd sets errno==ERANGE even though
13451         the failure is actually due to a PATH_MAX problem.
13452
13453         Further getopt changes to make it more likely that glibc will
13454         buy the changes back.
13455         * lib/getopt.c (POSIXLY_CORRECT): New constant.
13456         (getopt): Use it, so to preserve glibc semantic
13457         * lib/getopt1.c (getopt_long, getopt_long_only): Arg is char * const *
13458         when compiling for libc.
13459         * lib/getopt_.h (__getopt_argv_const): Bring it back.
13460         (getopt_long, getopt_long_only): Use it.
13461
13462         * lib/getopt.c (_getopt_initialize, _getopt_internal_r,
13463         _getopt_internal): New arg POSIXLY_CORRECT.  All callers changed.
13464         (getopt): Argv is now char * const *, as per standard.
13465         (_getopt_internal_r, _getopt_internal): Argv is now char **,
13466         not char *__getopt_argv_const *.
13467         * lib/getopt1.c (getopt_long, _getopt_long_r, getopt_long_only,
13468         _getopt_long_only_r): Likewise.
13469         * lib/getopt_.h (getopt, getopt_long, geopt_long_only): Likewise.
13470         * lib/getopt_int.h (_getopt_internal, _getopt_internal_r,
13471         _getopt_long_r, _getopt_long_only_r): Likewise.
13472         * lib/getopt_.h (__getopt_argv_const): Remove.
13473         (getopt): Argv is now char * const *, as per standard.
13474
13475         * lib/getdate.y (tORDINAL): New token.
13476         (day, relunit): Allow it for relative times.
13477         (relative_time_table): Use tORDINAL for ordinals.
13478
13479 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
13480
13481         * doc/getdate.texi (General date syntax): "next" is 1, not 2.
13482         Document that "second" isn't allowed as an ordinal number.
13483
13484 2004-11-16  Jim Meyering  <jim@meyering.net>
13485
13486         * modules/closeout (Depends-on): Add fpending.
13487
13488 2004-11-15  Jim Meyering  <jim@meyering.net>
13489
13490         * lib/closeout.c: Include "__fpending.h" once again.
13491         Include <stdbool.h>.
13492         (close_stdout): Don't fail just because stdout was closed initially,
13493         since some programs don't write to stdout in the normal course of
13494         operation (other than --version and --help), and we don't want this
13495         function to make e.g. `touch file >&-' fail.
13496         But do fail if it was closed and someone has tried to write to it.
13497         E.g., `printf foo >&-' must fail.
13498
13499 2004-11-13  Jim Meyering  <jim@meyering.net>
13500
13501         * m4/jm-macros.m4: Do require gl_FUNC_FPENDING.
13502
13503 2004-11-12  Simon Josefsson  <jas@extundo.com>
13504
13505         * config/srclist.txt: Add strtok_r.c, glibc bought our changes, but a
13506         small doc fix is still pending.
13507
13508 2004-11-11  Simon Josefsson  <jas@extundo.com>
13509
13510         * modules/strtok_r: New file.
13511
13512         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
13513         strtok_r.
13514
13515 2004-11-11  Simon Josefsson  <jas@extundo.com>
13516
13517         * m4/strtok_r.m4: New file.
13518
13519         * m4/getopt.m4: Replace opterr.
13520
13521 2004-11-11  Simon Josefsson  <jas@extundo.com>
13522
13523         * lib/strtok_r.h, strtok_r.c: New file.
13524
13525 2004-11-11  Paul Eggert  <eggert@cs.ucla.edu>
13526
13527         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): Define __GETOPT_PREFIX instead
13528         of replacing opterr, getopt, etc.  This should handle the
13529         powerpc-apple-darwin5.5 problem recently noted by Simon Josefsson.
13530
13531 2004-11-11  Paul Eggert  <eggert@cs.ucla.edu>
13532
13533         * lib/getopt_.h (__getopt_argv_const): New macro, to be used so that
13534         we can stop lying to compilers about the constness of argv when we
13535         are compiled outside glibc.
13536         (getopt, getopt_long, getopt_long_only): Use it.
13537         * lib/getopt.c (_getopt_initialize, _getopt_internal_r,
13538         _getopt_internal, getopt): Likewise.
13539         * lib/getopt1.c (getopt_long, _getopt_long_r, getopt_long_only,
13540         _getopt_long_only_r): Likewise.
13541         * lib/getopt_int.h (_getopt_internal, _getopt_internal_r,
13542         _getopt_long_r, _getopt_long_only_r): Likewise.
13543
13544         * lib/getopt_.h [defined __GETOPT_PREFIX && !defined __need_getopt]:
13545         Include <stdlib.h> and <stdio.h>, and <unistd.h> if available.
13546         Then rename getopt to __GETOPT_PREFIX##getopt, and so forth for
13547         the other external symbols.
13548         (getopt) [!defined __GNU_LIBRARY]: Use prototype, not old-style
13549         declaration, since the above renaming now works around collisions.
13550
13551 2004-11-11  Jim Meyering  <jim@meyering.net>
13552
13553         * lib/linebreak.c: Remove trailing blanks.
13554         * lib/alloca_.h: Likewise.
13555         * lib/acosl.c: Likewise.
13556         * lib/euidaccess.c: Likewise.
13557         * lib/allocsa.h: Likewise.
13558
13559 2004-11-10  Simon Josefsson  <jas@extundo.com>
13560
13561         * m4/getaddrinfo.m4: New file.
13562
13563 2004-11-10  Simon Josefsson  <jas@extundo.com>
13564
13565         * lib/getaddrinfo.h, lib/getaddrinfo.c: New files.
13566
13567 2004-11-10  Simon Josefsson  <jas@extundo.com>
13568
13569         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
13570         getaddrinfo.
13571
13572         * modules/getaddrinfo: New file.
13573
13574 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
13575
13576         * m4/prereq.m4 (gl_PREREQ): Require gt_FUNC_SETENV.
13577
13578 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
13579
13580         * lib/mktime.c (SHR): New macro, which is a portable
13581         substitute for >> that should work even on Crays.
13582         (TIME_T_MIDPOINT, ydhms_diff, __mktime_internal): Use it.
13583         Problem reported by Mark D. Baushke in
13584         <http://lists.gnu.org/archive/html/bug-gnulib/2004-11/msg00071.html>.
13585         * lib/getdate.y (SHR): Likewise.
13586         (tm_diff): Use it.
13587         * lib/strftime.c (SHR): Likewise.
13588         (tm_diff): Use it.
13589         * lib/quotearg.c (struct quoting_options): Use unsigned int for
13590         quote_these_too, so that right shifts are well defined.  All uses
13591         changed.
13592
13593 2004-11-10  Jim Meyering  <jim@meyering.net>
13594
13595         Ensure that no close failure goes unreported.
13596         * lib/closeout.c (close_stdout): Always close stdout.  I.e., don't
13597         return early when it seems there's nothing to flush.
13598         Don't include __fpending.h.
13599
13600 2004-11-10  Jim Meyering  <jim@meyering.net>
13601
13602         * modules/closeout (Depends-on): Remove fpending.
13603
13604 2004-11-10  Jim Meyering  <jim@meyering.net>
13605
13606         * m4/jm-macros.m4 (gl_MACROS): Don't require gl_FUNC_FPENDING.
13607
13608 2004-11-09  Paul Eggert  <eggert@cs.ucla.edu>
13609
13610         * m4/strftime.m4 (_gl_STRFTIME_PREREQS): Remove.  Move its body to
13611         gl_FUNC_STRFTIME.
13612         (gl_FUNC_STRFTIME): Use AC_CHECK_FUNCS_ONCE and AC_CHECK_HEADERS_ONCE
13613         and AC_REQUIRE when possible, to avoid duplicate checks.
13614         Check for <wchar.h>.
13615
13616 2004-11-09  Paul Eggert  <eggert@cs.ucla.edu>
13617
13618         * lib/strftime.c (DO_MULTIBYTE): Check for wchar.h, too.
13619
13620 2004-11-09  Bruno Haible  <bruno@clisp.org>
13621
13622         * m4/sockpfaf.m4: New file.
13623
13624 2004-11-05  Bruno Haible  <bruno@clisp.org>
13625
13626         * lib/readlink.c: Include stddef.h, needed for size_t on Woe32.
13627         Reported by Mark D. Baushke <mdb@cvshome.org>.
13628
13629 2004-11-04  Bruno Haible  <bruno@clisp.org>
13630
13631         2004-09-11  Bruno Haible  <bruno@clisp.org>
13632                 * allocsa.valgrind: New file.
13633         2004-02-06  Bruno Haible  <bruno@clisp.org>
13634                 * allocsa.h (sa_alignof): Define differently with HP-UX cc, to
13635                 avoid a bug of this cc on HP-UX 10.20 dealing with enums.
13636                 Reported by Christopher Seip <chris.seip@hp.com>.
13637
13638 2004-11-04  Bruno Haible  <bruno@clisp.org>
13639
13640         * modules/allocsa (Files): Add lib/allocsa.valgrind.
13641         (Makefile.am): Distribute it.
13642
13643 2004-11-03  Paul Eggert  <eggert@cs.ucla.edu>
13644
13645         * lib/xreadlink.c (xreadlink): AIX and HP-UX readlink return -1
13646         with errno == ERANGE if the buffer is too small.
13647         Problem reported by Mark D. Baushke.
13648
13649 2004-11-03  Albert Chin  <china@thewrittenword.com>
13650             Paul Eggert  <eggert@cs.ucla.edu>
13651
13652         * m4/uint32_t.m4 (gl_AC_TYPE_UINT32_T): When determining uint32_t
13653         equivalent, substitute $ac_type for equivalent type rather than
13654         blindly using uint32_t *always* which won't work if uint32_t is not
13655         available.  Define _UINT32_T to work around typedef of uint32_t if
13656         <sys/sched.h>, <pthread.h>, or <semaphore.h> used on Solaris
13657         2.5.1.
13658
13659 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
13660
13661         * m4/jm-macros.m4: Sync from coreutils.
13662         (gl_MACROS): Check for mbrlen, for pathchk.
13663         (gl_CHECK_ALL_TYPES): Require AC_TYPE_MBSTATE_T, for pathchk.
13664
13665 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
13666
13667         * lib/xreadlink.c (MAXSIZE): New macro.
13668         (xreadlink): Use it instead of SSIZE_MAX.  Ensure initial buffer
13669         size does not exceed MAXSIZE.  Avoid cast.
13670         As suggested by Mark D. Baushke in
13671         <http://lists.gnu.org/archive/html/bug-gnulib/2004-11/msg00009.html>,
13672         if readlink fails with buffer size just under MAXSIZE, try again
13673         with MAXSIZE.
13674
13675 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
13676
13677         * config/srclist.txt: Add mktime.c; glibc bought all our changes.
13678
13679 2004-11-02  Derek R. Price  <derek@ximbiot.com>
13680         and  Paul Eggert  <eggert@cs.ucla.edu>
13681
13682         * lib/getdate.y [!TEST]: Include <stdio.h>, since we use sprintf now.
13683         (get_date): Overparenthesize to avoid GCC warning.
13684
13685 2004-11-02  Bruno Haible  <bruno@clisp.org>
13686
13687         * m4/setenv.m4 (gt_FUNC_SETENV): Define VOID_UNSETENV if unsetenv()
13688         returns void.
13689
13690 2004-11-02  Bruno Haible  <bruno@clisp.org>
13691
13692         * lib/setenv.h (unsetenv): Define as a macro if the system's unsetenv()
13693         function returns void.
13694
13695 2004-11-01  Paul Eggert  <eggert@cs.ucla.edu>
13696
13697         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for declarations of
13698         fflush_unlocked, flockfile, funlockfile, funlockfile,
13699         fputs_unlocked, putc_unlocked.
13700
13701 2004-11-01  Paul Eggert  <eggert@cs.ucla.edu>
13702
13703         * lib/getpass.c (fflush_unlocked, flockfile, funlockfile)
13704         (funlockfile, fputs_unlocked, putc_unlocked): Don't define if
13705         already declared.
13706
13707 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
13708
13709         * modules/getdate (Files): Add doc/getdate.texi.
13710         (Depends-on): Add setenv, xalloc.
13711
13712 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
13713
13714         * lib/getdate.y: Add support for TZ="foo" within a date string.
13715         Fix some bugs near time_t boundaries.  Reject dates with
13716         out-of-range components, e.g., "Sept 31".
13717         Include <stdlib.h>, "setenv.h", "xalloc.h".
13718         (ISDIGIT_LOCALE): Remove; unused.
13719         Note that the TZ and time functions used here are not reentrant.
13720         (mktime_ok, get_tz): New functions.
13721         (TZBUFSIZE): New constant.
13722         (get_date): Parse leading TZ="foo".  Reject out-of-range components;.
13723         This requires that we sometimes generate our own TZ="XXX..." setting.
13724
13725 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
13726
13727         * doc/getdate.texi: New file, from coreutils with modifications for
13728         the new TZ parsing.
13729
13730 2004-10-27  Derek R. Price  <derek@ximbiot.com>
13731
13732         * lib/mktime.c (not_equal_tm): Remove redundant check.
13733
13734 2004-10-24  Paul Eggert  <eggert@cs.ucla.edu>
13735
13736         * modules/regex (lib_SOURCES): Add regex.c.
13737         Reported by James Youngman in
13738         <http://lists.gnu.org/archive/html/bug-gnulib/2004-10/msg00199.html>.
13739
13740 2004-10-24  Paul Eggert  <eggert@cs.ucla.edu>
13741
13742         * lib/getdate.y: Use Bison 1.875 features, and some minor
13743         code cleanups.  This change does not affect semantics.
13744         Don't include <stdlib.h>; no longer needed.
13745         Don't include unlocked-io.h; only the "#if TEST" code uses
13746         stdio, and performance isn't crucial there.
13747         (PC, YYLEX_PARAM, YYPARSE_PARAM): Remove; replaced by
13748         Bison 1.875 features as described below.
13749         All uses of "PC." replaced by "pc->".
13750         (YYSTYPE): Add a forward declaration.
13751         (yylex, yyerror): Use full prototypes in forward decls.
13752         Use "%pure-parser" rather than obsolescent "%pure_parser".
13753         Use %parse-param and %lex-param instead of obsolescent
13754         YYPARSE_PARAM and YYLEX_PARAM.
13755         (meridian_table, month_and_day_table, time_units_table,
13756         relative_time_table, time_zone_table, military_table,
13757         lookup_zone, lookup_word, get_date):
13758         Use NULL instead of 0 where appropriate.
13759         (to_hour): Avoid abort (), to avoid a dependency on
13760         stdlib.h.
13761         (yyerror, yylex): Now accepts parser_control * arg.
13762         (main) [TEST]: Use '\0' rather than 0 for char.
13763
13764 2004-10-22  Paul Eggert  <eggert@cs.ucla.edu>
13765
13766         * m4/getpagesize.m4 (gl_GETPAGESIZE): Check for <sys/param.h>.
13767
13768 2004-10-22  Paul Eggert  <eggert@cs.ucla.edu>
13769
13770         * lib/getpagesize.c (getpagesize): Don't assume <sys/param.h> exists.
13771         It's now the caller's responsibility to handle the case where
13772         !HAVE_GETPAGESIZE && !defined getpagesize.
13773
13774         * lib/mktime.c (leapyear): Arg is long int, not int.
13775
13776 2004-10-18  Paul Eggert  <eggert@cs.ucla.edu>
13777
13778         * lib/argp-fs-xinl.c, argp-xinl.c: Update from glibc.
13779
13780 2004-10-17  Paul Eggert  <eggert@cs.ucla.edu>
13781
13782         * gnulib-tool (func_emit_lib_Makefile_am): Fix typo: a $ was
13783         missing.  Problem reported by James Youngman.
13784
13785 2004-10-16  Simon Josefsson  <jas@extundo.com>
13786
13787         * gnulib-tool: Fix comments.  Fix parse problem.
13788         (func_emit_lib_Makefile_am): Don't hard code a in libgl_a_SOURCES.
13789
13790 2004-10-15  Paul Eggert  <eggert@cs.ucla.edu>
13791
13792         * m4/getopt.m4 (gl_GETOPT): Detect and reject the incompatible BSD
13793         implementation of getopt_long.  Problem reported by Alexander Taler in:
13794         http://lists.gnu.org/archive/html/bug-gnulib/2004-10/msg00103.html
13795
13796 2004-10-15  Bruno Haible  <bruno@clisp.org>
13797
13798         * gnulib-tool: Untabify. Initialize supplied_libname.
13799         (func_usage): More homogenous output.
13800         (func_modules_transitive_closure, func_modules_to_filelist,
13801         func_emit_lib_Makefile_am): New functions.
13802         (func_import): New function, extracted from big case statement. Use
13803         func_get_license, func_modules_transitive_closure,
13804         func_modules_to_filelist, func_emit_lib_Makefile_am. Initialize
13805         opt_lgpl. Don't use test -a, as it's not portable.
13806         (func_create_testdir): Use func_modules_transitive_closure,
13807         func_modules_to_filelist, func_emit_lib_Makefile_am.
13808
13809 2004-10-15  Bruno Haible  <bruno@clisp.org>
13810
13811         * gnulib-tool (func_import): Let gl_INIT define LTALLOCA when needed.
13812
13813 2004-10-15  Bruno Haible  <bruno@clisp.org>
13814
13815         * gnulib-tool (func_emit_lib_Makefile_am): Add markers to separate
13816         the portions belonging to each module.
13817         Suggested by Derek Robert Price <derek@ximbiot.com>.
13818
13819 2004-10-12  Simon Josefsson  <jas@extundo.com>
13820
13821         * lib/getpass.c (fflush_unlocked, flockfile, funlockfile)
13822         (fputs_unlocked, putc_unlocked) [!_LIBCS && !USE_UNLOCKED_IO]: Map
13823         to real functions.
13824
13825 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
13826
13827         * modules/vsnprintf: New file.
13828
13829 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
13830
13831         * m4/vsnprintf.m4: New file.
13832
13833 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
13834
13835         * lib/vsnprintf.h: New file.
13836         * lib/vsnprintf.c: New file.
13837
13838 2004-10-11  Bruno Haible  <bruno@clisp.org>
13839
13840         * MODULES.html.sh (Support for systems lacking ISO C 99): Add
13841         vsnprintf.
13842
13843 2004-10-10  Paul Eggert  <eggert@cs.ucla.edu>
13844
13845         * config/srclistvars.sh: Add GNUSTANDARDS (for eggert only).
13846
13847 2004-10-07  Bruno Haible  <bruno@clisp.org>
13848
13849         * lib/snprintf.c (snprintf): Avoid a memory allocation if the result
13850         fits into the provided buffer.
13851
13852 2004-10-06  Paul Eggert  <eggert@cs.ucla.edu>
13853
13854         * lib/diacrit.c, diacrit.h: Add GPL notice.
13855
13856         * lib/atanl.c, logl.c: Add GPL notice, to match glibc's added LGPL
13857         notice.
13858         * lib/atanl.c (atanl): Keep the code as similar to glibc as possible.
13859         * lib/logl.c (logl): Keep the code as similar to glibc as possible.
13860         This avoids a potential constant-folding bug.
13861
13862 2004-10-05  Bruno Haible  <bruno@clisp.org>
13863
13864         * m4/strsep.m4 (gl_FUNC_STRSEP): Require AC_GNU_SOURCE. Don't check
13865         for the declaration of strsep.
13866
13867 2004-10-05  Bruno Haible  <bruno@clisp.org>
13868
13869         * lib/strsep.h: Don't declare strsep() if HAVE_STRSEP.
13870
13871 2004-10-04  Simon Josefsson  <jas@extundo.com>
13872
13873         * modules/memmem: New file.
13874         * tests/test-memmem.c: New file.
13875         * MODULES.html.sh (Extra functions based on ANSI C 89): Add memmem.
13876
13877 2004-10-04  Simon Josefsson  <jas@extundo.com>
13878
13879         * m4/memmem.m4: New file.
13880
13881 2004-10-04  Simon Josefsson  <jas@extundo.com>
13882
13883         * lib/memmem.h: New file.
13884         * lib/memmem.c: New file, taken from glibc.
13885
13886 2004-10-04  Simon Josefsson  <jas@extundo.com>
13887
13888         * lib/error.c, md5.c, regex.c: Use '#if USE_UNLOCKED_IO' instead of
13889         '#ifdef USE_UNLOCKED_IO'.
13890
13891 2004-10-04  Simon Josefsson  <jas@extundo.com>
13892
13893         * config/srclist.txt: Add memmem from glibc.
13894
13895 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
13896
13897         * modules/xalloc (Files, Makefile.am): Remove xstrdup.c.
13898
13899         * modules/argmatch, modules/argp, modules/closeout, modules/error,
13900         modules/exclude, modules/getdate, modules/getline,
13901         modules/getndelim2, modules/getpass, modules/getpass-gnu,
13902         modules/getusershell, modules/linebuffer, modules/md5,
13903         modules/mountlist, modules/posixtm, modules/readtokens,
13904         modules/readutmp, modules/regex, modules/sha1,
13905         modules/version-etc, modules/yesno:
13906         Remove dependency on unlocked-io.
13907
13908 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
13909
13910         * m4/xalloc.m4 (gl_PREREQ_XSTRDUP): Remove.  All uses removed.
13911
13912         * m4/unlocked-io.m4: Add copyright notice.
13913         (gl_FUNC_GLIBC_UNLOCKED_IO): Define USE_UNLOCKED_IO.
13914
13915 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
13916
13917         * lib/xalloc.h (xmemdup): Renamed from xclone.  All uses changed.
13918         * lib/xmalloc.c (xmemdup): Likewise.
13919         * lib/xalloc.h (CCLONE, CLONE, NEW, XCALLOC, XMALLOC, XREALLOC,
13920         XFREE): Remove these long-obsolescent macros.
13921         * lib/xmalloc.c (xstrdup): Implementation moved here from xstrdup.c
13922         * lib/xstrdup.c: Remove.
13923
13924         * lib/regex.c (re_comp): Cast gettext return value to char *,
13925         Problem reported by Martin Neitzel via Mark D. Baushke.
13926
13927 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
13928
13929         * lib/argmatch.c, closeout.c, error.c, exclude.c, getdate.y,
13930         getndelim2.c, getpass.c, getusershell.c, linebuffer.c,
13931         md5.c, mountlist.c, posixtm.c, readtokens.c, readutmp.c,
13932         regex.c, sha1.c, version-etc.c, yesno.c:
13933         Include "unlocked-io.h" only if USE_UNLOCKED_IO.
13934         * lib/unlocked-io.h: Don't worry about USE_UNLOCKED_IO; that's now
13935         the includer's responsibility.
13936
13937         Sync from coreutils.
13938
13939         * lib/modechange.c (mode_compile): Don't decrement a pointer that
13940         points to the start of a string, as the C Standard says the
13941         resulting behavior is undefined.
13942
13943         * lib/backupfile.h (enum backuptype): Rename none -> no_backups,
13944         simple -> simple_backups, numbered_existing ->
13945         numbered_existing_backups, numbered -> numbered_backups
13946         to avoid shadowing problems.  All uses changed.
13947         * lib/argmatch.c (enum backuptype) [defined TEST]: Likewise.
13948         * lib/backupfile.c (check_extension, numbered_backup):
13949         Rename locals to avoid shadowing 'basename'.
13950         * lib/backupfile.h (VALID_BACKUP_TYPE): Don't evaluate arg more than
13951         once.
13952
13953         * lib/.cppi-disable: Add getopt_.h, getopt_int.h.
13954         * lib/.cvsignore: Add getopt.h.
13955
13956 2004-10-04  Bruno Haible  <bruno@clisp.org>
13957
13958         * modules/README: New file.
13959         * gnulib-tool (func_all_modules, func_verify_module): modules/README is
13960         not a module.
13961
13962 2004-10-02  Jim Meyering  <jim@meyering.net>
13963
13964         * lib/dirfd.h, getpagesize.h: Add copyright notice.
13965
13966 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
13967
13968         * modules/strsep: New file.
13969
13970 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
13971
13972         * m4/strsep.m4: New file.
13973
13974 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
13975
13976         * lib/strsep.h: New file.
13977         * lib/strsep.c: New file.
13978
13979 2004-10-01  Simon Josefsson  <jas@extundo.com>
13980
13981         * lib/snprintf.c (snprintf): Handle size==0.
13982
13983 2004-10-01  Simon Josefsson  <jas@extundo.com>
13984             Bruno Haible  <bruno@clisp.org>
13985
13986         * lib/snprintf.c: Include <stdarg.h>, <stdlib.h>, <string.h>.
13987         (snprintf): Declare 'args'.
13988
13989 2004-10-01  Paul Eggert  <eggert@cs.ucla.edu>
13990
13991         * lib/snprintf.c: Remove comments as to why each header is needed.
13992
13993 2004-10-01  Bruno Haible  <bruno@clisp.org>
13994
13995         * MODULES.html.sh: Add strsep.
13996
13997 2004-09-30  Simon Josefsson  <jas@extundo.com>
13998
13999         * modules/snprintf: New file.
14000
14001 2004-09-30  Simon Josefsson  <jas@extundo.com>
14002
14003         * m4/snprintf.m4: New file.
14004
14005 2004-09-30  Simon Josefsson  <jas@extundo.com>
14006
14007         * lib/snprintf.h, lib/snprintf.c: New files.
14008
14009 2004-09-30  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
14010
14011         * lib/argp-help.c (canon_doc_option): Fixed coredump if *name==NULL
14012         (hol_entry_help): Never translate an empty string.
14013         Do not translate option tag (opt->name) if OPTION_NO_TRANS is set
14014         * lib/argp.h (OPTION_NO_TRANS): New option.
14015
14016 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
14017
14018         * modules/argp (Maintainer): Replace Simon Josefsson
14019         by Sergey Poznyakoff.
14020
14021 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
14022
14023         * config/srclist.txt: Comment-out argp/argp.h, until we get the argp
14024         changes merged back into glibc.
14025
14026 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
14027
14028         * MODULES.html.sh (Support for systems lacking ISO C 99): Add snprintf.
14029
14030 2004-09-29  Oskar Liljeblad  <oskar@osk.mine.nu>
14031
14032         * lib/xvasprintf.c: Include xalloc.h.
14033         (xvasprintf): Use xalloc_die, not xmalloc_die.
14034
14035 2004-09-29  Bruno Haible  <bruno@clisp.org>
14036
14037         * modules/alloca-opt: New file, derived from modules/alloca.
14038         * modules/allocsa: Depend on alloca-opt instead of alloca.
14039         * modules/setenv: Likewise.
14040         * modules/vasnprintf: Likewise.
14041         * MODULES.html.sh: Add alloca-opt.
14042
14043 2004-09-28  Simon Josefsson  <jas@extundo.com>
14044
14045         * gnulib-tool: New parameter --lgpl, to asseert that modules are
14046         LGPL, and to replace license template from GPL to LGPL.
14047
14048 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
14049
14050         * modules/dummy: Change license to LGPL.
14051
14052 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
14053
14054         * lib/dummy.c: Change copyright notice to FSF, and license to GPL.
14055
14056 2004-09-24  Simon Josefsson  <jas@extundo.com>
14057
14058         * modules/minmax (License): Change from GPL to LGPL.
14059
14060 2004-09-23  Simon Josefsson  <jas@extundo.com>
14061
14062         * gnulib-tool (--import): Typo.
14063
14064 2004-09-23  Simon Josefsson  <jas@extundo.com>
14065
14066         * gnulib-tool (--import): Make sure *.m4 end up in m4/ by default.
14067
14068 2004-09-22  Bruno Haible  <bruno@clisp.org>
14069
14070         * modules/*: Add 'License' field.
14071         * gnulib-tool: Accept --extract-license option.
14072         (func_get_license): New function.
14073
14074 2004-09-21  Bruno Haible  <bruno@clisp.org>
14075
14076         * modules/vasnprintf (Files): Add m4/stdint_h.m4, m4/inttypes_h.m4.
14077         Reported by Simon Josefsson.
14078
14079 2004-09-20  Paul Eggert  <eggert@cs.ucla.edu>
14080
14081         * modules/inttostr (Files): Add m4/longlong.m4, since it uses
14082         gl_AC_TYPE_LONG_LONG.
14083
14084 2004-09-20  Paul Eggert  <eggert@cs.ucla.edu>
14085
14086         * config/srclist.txt: Add getsubopt.c, since libc bought our changes.
14087
14088 2004-09-18  Simon Josefsson  <jas@extundo.com>
14089         and  Paul Eggert  <eggert@cs.ucla.edu>
14090
14091         * gnulib-tool: Replace various ad-hoc automake/autoconf/aclocal
14092         calls with autoreconf.  Define GL_LIB.
14093
14094 2004-09-14  Karl Berry  <karl@gnu.org>
14095
14096         * config/srclist.txt: unsync setenv.c, sigh.
14097
14098 2004-09-13  Paul Eggert  <eggert@cs.ucla.edu>
14099
14100         * lib/argp-pvh.c (argp_program_version_hook): Provide initial value.
14101         Problem reported by Bruno Haible in:
14102         http://lists.gnu.org/archive/html/bug-tar/2004-09/msg00023.html
14103
14104 2004-09-13  Paul Eggert  <eggert@cs.ucla.edu>
14105
14106         * config/srclist.txt: Comment out argp-pvh.c.
14107
14108 2004-09-11  Paul Eggert  <eggert@cs.ucla.edu>
14109
14110         * lib/mempcpy.h: Wrap the entire include file inside #ifndef mempcpy,
14111         in case some system header has #define'd it.  Problem reported by
14112         Soeren D. Schulze in
14113         <http://lists.gnu.org/archive/html/bug-gnulib/2004-09/msg00017.html>.
14114
14115 2004-09-09  Karl Berry  <karl@gnu.org>
14116
14117         * regex.[ch]: delete from the root.  These were supposed to be
14118                 synced with emacs cvs, but this has not happened for about
14119                 a year, and anyway nothing else uses emacs regex.[ch].
14120                 bug-gnulib mail from Jeff Bailey, 9 Sep 2004 15:49:24 -0700.
14121                 lib/regex[.ch] is untouched.
14122
14123 2004-09-09  Bruno Haible  <bruno@clisp.org>
14124
14125         * modules/vasnprintf (Files): Add m4/eoverflow.m4.
14126
14127 2004-09-09  Bruno Haible  <bruno@clisp.org>
14128
14129         * m4/eoverflow.m4: New file, taken from GNU libiconv eilseq.m4 with
14130         modifications.
14131         * m4/vasnprintf.m4 (gl_FUNC_VASNPRINTF): Require gl_EOVERFLOW.
14132
14133 2004-09-08  Oskar Liljeblad  <oskar@osk.mine.nu>
14134
14135         * modules/xvasprintf: New file.
14136         * MODULES.html.sh (Extra functions based on ANSI C 89): Add vasprintf.
14137
14138 2004-09-08  Oskar Liljeblad  <oskar@osk.mine.nu>
14139
14140         * lib/xvasprintf.h: New file.
14141         * lib/xvasprintf.c: New file.
14142         * lib/xasprintf.c: New file.
14143
14144 2004-09-08  Bruno Haible  <bruno@clisp.org>
14145
14146         * m4/stdint.m4: New file, taken from GNU clisp with modifications.
14147
14148 2004-09-08  Bruno Haible  <bruno@clisp.org>
14149
14150         * lib/vasnprintf.c (VASNPRINTF): Signal EOVERFLOW if the resulting
14151         length is > INT_MAX.
14152         * lib/vasprintf.c (vasprintf): Don't test for length > INT_MAX any
14153         more.
14154
14155 2004-09-08  Bruno Haible  <bruno@clisp.org>
14156
14157         * lib/stdint_.h: New file, taken from GNU clisp.
14158
14159 2004-09-08  Bruno Haible  <bruno@clisp.org>
14160             Oskar Liljeblad  <oskar@osk.mine.nu>
14161
14162         * modules/stdint: New file.
14163         * MODULES.html.sh (Support for systems lacking ISO C 99): Add stdint.
14164
14165 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
14166
14167         Import from coreutils.
14168         * lib/userspec.c: Don't use <alloca.h>, so that we don't use alloca on
14169         strings on unbounded length.  alloca's performance benefits aren't
14170         that important here.
14171         (V_STRDUP): Remove.
14172         (parse_with_separator): New function, with most of the internals
14173         of the old parse_user_spec.  Allow user to omit both user and group,
14174         for compatibility with FreeBSD.
14175         Clone only the user name, not the entire spec.
14176         Do not set *uid, *gid unless entirely successful.
14177         Avoid memory leak in some failing cases.
14178         Fix regression for USER.GROUP reported by Dmitry V. Levin in
14179         <http://lists.gnu.org/archive/html/bug-coreutils/2004-08/msg00102.html>
14180         (parse_user_spec): Rewrite to use parse_with_separator.
14181
14182 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
14183
14184         * modules/userspec: Don't depend on alloca.
14185
14186 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
14187
14188         * m4/userspec.m4 (gl_USERSPEC): Don't require AC_FUNC_ALLOCA.
14189
14190 2004-08-17  Paul Eggert  <eggert@cs.ucla.edu>
14191
14192         * MODULES.html.sh: Add xalloc-die, c-strtod, c-strtold, raise,
14193         readtokens0, getcwd, fcntl-safer, canonicalize, cycle-check,
14194         utimecmp, utimens, xnanosleep.  Rename sha to sha1.
14195
14196 2004-08-16  Simon Josefsson  <jas@extundo.com>
14197
14198         * gnulib-tool: Use sed instead of autoconf --trace, inspired by
14199         libtoolize behaviour by "Gary V. Vaughan" <gary@gnu.org>.
14200         Add --dry-run for --import.
14201         Let user provided command line parameters override configure.ac
14202         settings.
14203
14204 2004-08-12  Simon Josefsson  <jas@extundo.com>
14205
14206         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): New macro,
14207         as discussed with Paul Eggert in threads rooted at
14208         <http://lists.gnu.org/archive/html/bug-gnulib/2004-06/msg00039.html>
14209         and
14210         <http://lists.gnu.org/archive/html/bug-gnulib/2004-07/msg00001.html>.
14211         Before, the test was empty, and relied on ELIDE_CODE in source
14212         code.)
14213         (gl_PREREQ_GETOPT): New macro.
14214         (gl_GETOPT): Use them.
14215
14216 2004-08-12  Simon Josefsson  <jas@extundo.com>
14217
14218         * lib/getopt.c, getopt1.c: Remove ELIDE_CODE hack.
14219         * lib/getopt_.h: Renamed from getopt.h.
14220
14221 2004-08-12  Simon Josefsson  <jas@extundo.com>
14222
14223         * gnulib-tool: Add --source-base, --m4-base, --libtool options.
14224         Change default library name from libfoo to libgnu.
14225         Now, if you have a configure.ac that says:
14226                 gl_SOURCE_BASE(gl)
14227                 gl_M4_BASE(gl/m4)
14228                 gl_MODULES(error getopt etcetera)
14229                 gl_INIT
14230         you can import all you need by running:
14231                 ../gnulib/gnulib-tool --import
14232
14233         * modules/getopt (Files): Rename getopt.h to getopt_.h.
14234         (Makefile.am): Rewrite, use logic from argz.
14235         (Include): Use <getopt.h> instead of "getopt.h".
14236
14237 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
14238
14239         * modules/argp (Files): Add m4/unlocked-io.m4.
14240         (Depends-on): Add extensions.
14241
14242 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
14243
14244         * m4/argp.m4 (gl_ARGP): Do not check for argp.h or argp_parse; nobody
14245         uses HAVE_ARGP_H or HAVE_ARGP_PARSE.
14246         Require gl_FUNC_GLIBC_UNLOCKED_IO, gl_USE_SYSTEM_EXTENSIONS.
14247         Check for program_invocation_name, program_invocation_short_name,
14248         flockfile, funlockfile, features.h, _getopt_long_only_r.
14249
14250 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
14251
14252         * lib/argp-help.c, argp-parse.c: Use "gettext.h" instead of
14253         its complicated substitute.
14254         * lib/argp-help.c: Include <errno.h>, for program_invocation_short_name
14255         and program_invocation_name.
14256         (__argp_basename) [!_LIBC]: Remove; the only use was
14257         replaced by its body.
14258         (__argp_short_program_name): Change condition from
14259         !defined __argp_short_program_name to
14260         ! (defined _LIBC || HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME),
14261         to match argp-namefrob.h.
14262         (__argp_failure): Don't assume strerror_r returns char *.
14263         * lib/argp-parse.c (N_): Define unconditionally.
14264         (argp_default_options): Fill out initializers with 0 to avoid
14265         gcc warnings.
14266
14267 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
14268
14269         * config/srclist.txt: Remove getopt.c, getopt.h (renamed to getopt_.h),
14270         getopt1.c.
14271
14272 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
14273
14274         Merge from coreutils.
14275
14276         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for wmemchr and wmemcpy.
14277
14278         * m4/obstack.m4 (gl_PREREQ_OBSTACK): Require
14279         gl_AC_HEADER_INTTYPES_H, gl_AC_HEADER_STDINT_H, gl_AC_TYPE_UINTMAX_T.
14280
14281 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
14282
14283         Merge from coreutils.
14284
14285         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Don't set to 1 if missing
14286         wmemchr or wmemcpy.  Problem reported by Robert Dahlem
14287         for Reliant Unix 5.43.
14288
14289         * lib/obstack.c: Include <inttypes.h> and <stdint.h> if available.
14290         (union fooround): Use uintmax_t, not long int.
14291         The rest is a merge from libc:
14292         [defined _LIBC]: Include <shlib-compat.h>.
14293         (_obstack) [defined _LIBC]: Remove after 2.3.4.
14294
14295         * lib/settime.c (settime): Recode to avoid warning with
14296         Sun Forte C 6U2.
14297
14298         * lib/strverscmp.c: Convert to UTF-8.
14299
14300 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
14301
14302         * modules/obstack (Files): Add m4/inttypes_h.m4, m4/stdint_h.m4,
14303         m4/uintmax_t.m4.
14304
14305 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
14306
14307         * modules/xalloc-die: New file.
14308         * modules/xalloc: Remove dependencies on error, gettext, exitfail.
14309
14310         * modules/md5 (Files): Add m4/uint32_t.m4.
14311         * modules/sha1: Renamed from modules/sha.
14312         (Files):
14313         Rename lib/sha.h to lib/sha1.h.
14314         Rename lib/sha.c to lib/sha1.c.
14315         Rename m4/sha.m4 to m4/sha1.m4.
14316         (lib_SOURCES): Likewise.
14317         (configure.ac): Rename gl_SHA to gl_SHA1.
14318         (Include): sha.h -> sha1.h.
14319
14320 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
14321
14322         * m4/uint32_t.m4, m4/uintptr_t.m4: New files.
14323         * m4/sha1.m4: Renamed from sha.m4.
14324         (gl_SHA1): Renamed from gl_SHA.  All uses changed.
14325
14326 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
14327
14328         * lib/obstack.h (obstack_empty_p):
14329         Don't assume that chunk->contents is suitably aligned.
14330         * lib/obstack.c (_obstack_begin, _obstack_begin_1, _obstack_newchunk):
14331         Likewise. Problem reported by Benno in
14332         <http://sources.redhat.com/ml/libc-alpha/2004-08/msg00055.html>.
14333
14334         * lib/chown.c (rpl_chown): Work even if the file is writeable but not
14335         readable.  This could be improved further but it'd take some work.
14336
14337 2004-08-08  Simon Josefsson  <jas@extundo.com>
14338
14339         * modules/xgethostname (Depends-on): Remove exit and error (not
14340         used).
14341
14342         * modules/getpass-gnu: Add getpass.h.
14343         (Depends-on): Add stdbool.
14344         * modules/getpass: Add getpass.h.
14345
14346 2004-08-08  Simon Josefsson  <jas@extundo.com>
14347
14348         * m4/getpass.m4 (gl_FUNC_GETPASS, gl_FUNC_GETPASS_GNU):
14349         Check getpass declaration.
14350
14351 2004-08-08  Simon Josefsson  <jas@extundo.com>
14352
14353         * lib/xgethostname.c: Don't include error.h (not used).
14354
14355         * lib/getpass.h: Add.
14356         * lib/getpass.c: Include getpass.h first.
14357
14358 2004-08-08  Paul Eggert  <eggert@cs.ucla.edu>
14359
14360         * lib/xalloc-die.c: New file.
14361         * lib/xalloc.h (xalloc_fail_func, xalloc_msg_memory_exhausted): Remove.
14362         All uses removed.
14363         * lib/xmalloc.c (xalloc_fail_func, xalloc_msg_memory_exhausted):
14364         Likewise. Move inclusions of gettext.h, error.h, exitfail.h to
14365         xalloc-die.c.
14366         (_, N_, xalloc_die): Move to xalloc-die.c.
14367         * lib/userspec.c (parse_user_spaec): Use xstrdup rather than strdup,
14368         so that we needn't mess with xalloc_msg_memory_exhausted.
14369
14370         * lib/sha1.h: Renamed from sha.h.
14371         (SHA1_H): Renamed from _SHA_H.
14372         (sha1_ctx): Renamed from sha_ctx.
14373         (sha1_init_ctx): Renamed from sha_init_ctx.
14374         (sha1_process_block): Renamed from sha_process_block.
14375         (sha1_process_bytes): Renamed from sha_process_bytes.
14376         (sha1_finish_ctx): Renamed from sha_finish_ctx.
14377         (sha1_read_ctx): Renamed from sha_read_ctx.
14378         (sha1_stream): Renamed from sha_stream.
14379         (sha1_buffer): Renamed from sha_buffer.
14380         * lib/sha1.c: Likewise; renamed from sha.c.
14381         Do not include <sys/types.h>.
14382         Include <stddef.h> rather than <stdlib.h>.
14383
14384 2004-08-08  Bruno Haible  <bruno@clisp.org>
14385
14386         * lib/pathname.h (FILE_SYSTEM_PREFIX_LEN): Renamed from
14387         FILESYSTEM_PREFIX_LEN.
14388         * lib/progreloc.c: Likewise.
14389         * lib/concatpath.c (concatenated_pathname): Use FILE_SYSTEM_PREFIX_LEN.
14390
14391 2004-08-06  Simon Josefsson  <jas@extundo.com>
14392
14393         * modules/progname (Depends-on): Don't depend on stdbool.
14394
14395 2004-08-06  Simon Josefsson  <jas@extundo.com>
14396
14397         * modules/getsubopt: New file.
14398         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
14399         getsubopt.
14400
14401 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
14402
14403         More merge from coreutils.
14404
14405         * m4/utimens.m4, m4/utimecmp.m4: New files.
14406         * m4/backupfile.m4, euidacces.m4, acl.m4, afs.m4, calloc.m4, dirfd.m4,
14407         fsusage.m4, jm-macros.m4, ls-mntd-fs.m4, md5.m4, mountlist.m4,
14408         prereq.m4, sha.m4: Import changes from coreutils.
14409
14410 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
14411
14412         More merge from coreutils.
14413         * modules/raise, modules/readtokens0, modules/utimens:
14414         * modules/utimecmp, module/xnanosleep: New files.
14415         * modules/strftime: Add lib/strftime.h.
14416         Change include from <time.h> to "strftime.h".
14417         * modules/yesno: Add lib/yesno.h.
14418         * modules/backupfile: Remove lib/addext.c.
14419         * modules/euidaccess: Add stat-macros.h.
14420         * modules/canonicalize, modules/euidaccess,
14421         modules/filemode, modules/lchown, modules/makepath,
14422         modules/rmdir, modules/stat: Likewise.
14423
14424 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
14425
14426         Merge from tar.
14427         * lib/argp-help.c (make_hol, hol_append): Don't assume that
14428         SIZE_MAX is a valid preprocessor constant.
14429         (__argp_basename): Change from "#ifndef _LIBC"
14430         to "#ifndef __argp_short_program_name", so that
14431         we don't compile these functions for tar.
14432
14433         More merges from coreutils.
14434         * lib/raise.c, lib/readtokens0.h, lib/readtokens0.c, lib/strftime.h:
14435         * lib/utimens.h, lib/utimens.c, lib/utimecmp.h, lib/utimecmp.c:
14436         * lib/xnanosleep.h, lib/xnanosleep.c, lib/yesno.h: New files.
14437         * lib/addext.c: Remove; no longer needed.
14438         * lib/yesno.c, lib/argmatch.h, lib/argmatch.c, lib/backupfile.h,
14439         lib/backupfile.c, lib/euidaccess.c, lib/filemode.c, lib/closeout.c,
14440         lib/dup2.c, lib/exclude.c, lib/fileblocks.c, lib/filemode.c,
14441         lib/fnmatch.c, lib/fnmtahc_loop.c, lib/fopen-safer.c, lib/fsusage.c,
14442         lib/fsusage.h, lib/ftruncate.c, lib/full-write.c, lib/getdate.y,
14443         lib/getloadavg.c, lib/getugroups.c, lib/hard-locale.c,
14444         lib/hard-locale.h, lib/hash.c, lib/human.c, lib/human.h, lib/lchown.c,
14445         lib/lchown.h, lib/makepath.c, lib/makepath.h, lib/md5.c, lib/md5.h,
14446         lib/memchr.c, lib/memcoll.c, lib/memrchr.c, lib/modechange.c,
14447         lib/modechange.h, lib/mountlist.c, lib/mountlist.h, lib/nanosleep.c,
14448         lib/posixtm.c, lib/putenv.c, quotearg.c, lib/quotearg.h,
14449         lib/readtokens.c, lib/readutmp.c, lib/readutmp.h, lib/rmdir.c,
14450         lib/safe-read.c, lib/save-cwd.c, lib/savedir.c, lib/setenv.c,
14451         lib/sig2str.c, lib/stat.c, lib/strtoimax.c, lib/strverscmp.c,
14452         lib/userspec.c, lib/utime.c, lib/version-etc.c., lib/xgethostname.c,
14453         lib/xmemcoll.c, lib/xreadlink.c, lib/xstrtod.c, lib/xstrtod.h,
14454         lib/xstrtoimax.c, lib/xstrtol.c, lib/xstrtol.h, lib/xstrtoumax.c:
14455         Import changes from coreutils.
14456
14457 2004-08-05  Simon Josefsson  <jas@extundo.com>
14458
14459         * m4/strdup.m4: Always run gl_PREREQ_STRDUP, since strdup.h need it.
14460
14461 2004-08-05  Simon Josefsson  <jas@extundo.com>
14462
14463         * m4/getsubopt.m4: New file.
14464
14465 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
14466
14467         Merge from coreutils.
14468
14469         * m4/c-strtod.m4, m4/canonicalize.m4, m4/fcntl-safer.m4:
14470         * m4/getcwd-path-max.m4: New files.
14471
14472         * m4/dos.m4 (gl_AC_DOS): filesystem -> file system renaming.
14473         FILESYSTEM_PREFIX_LEN ->
14474         FILE_SYSTEM_PREFIX_LEN.
14475         FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX ->
14476         FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX.
14477         FILESYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR ->
14478         FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR.
14479
14480         * m4/path-concat.m4 (gl_PATH_CONCAT): Don't require gl_AC_DOS, the
14481         prerequisite modules now handle the DOS stuff.
14482         Don't check for unistd.h.
14483
14484 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
14485
14486         Merge from coreutils.
14487
14488         * lib/.gdb-history: Remove; this doesn't belong here.
14489
14490         * lib/c-strtod.c, lib/c-strtod.h, lib/c-strtold.c, lib/cycle-check.c:
14491         * lib/cycle-check.h, lib/dev-ino.h, lib/canonicalize.h:
14492         * lib/canonicalize.c, lib/fcntl-safer.h, lib/fcntl-safer.c:
14493         * lib/getcwd.c: New files.
14494
14495         * lib/dirname.h: Include <stdbool.h>.
14496         (FILE_SYSTEM_PREFIX_LEN): Renamed from FILESYSTEM_PREFIX_LEN,
14497         for consistency with POSIX terminology.  All uses changed.
14498         (IS_ABSOLUTE_FILE_NAME, IS_RELATIVE_FILE_NAME): New macros.
14499         (strip_trailing_slashes): Use bool for booleans.
14500         * lib/stripslash.c (strip_trailing_slashes): Likewise.
14501
14502         * lib/error.c: Work around bug in OpenBSD 3.4 sterror_r: it
14503         sometimes returns a positive errno value even when it succeeds.
14504         (print_errno_message) [!LIBC]: Fall back on strerror if
14505         __strerror_r fails.
14506
14507         * lib/path-concat.c (mempcpy): Don't define if a system header defines
14508         it. Don't include stdio.h, stdlib.h, unistd.h, strdup.h.
14509         (longest_relative_suffix): New function.
14510         (path_concat): Use it.  Assume first argument is not NULL.
14511         Port to DOS.  Omit redundant separators.
14512         Report an error instead of returning NULL.
14513         Use mempcpy instead of memcpy.
14514         (xpath_concat): Remove: not declared or used.
14515
14516         * lib/same.h: Include <stdbool.h>
14517         (same_name): Return bool, not int.
14518         * lib/same.c (same_name): Likewise.
14519         (errno): Don't declare; we assume C89 or better now.
14520
14521         * lib/stat-macros (S_ISCTG, S_ISOFD, S_ISOFL): New macros,
14522         if not already defined.
14523
14524         * lib/xgetcwd.c (errno): Don't declare; we assume C89 or better now.
14525         * lib/dup-safer.c (errno): Likewise.
14526
14527 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
14528
14529         Merge from coreutils.
14530         * modules/c-strtod, modules/c-strtold, modules/canonicalize:
14531         * modules/cycle-check, modules/fcntl-safer, modules/getcwd: New files.
14532         * modules/path-concat: Don't depend on strdup.
14533
14534 2004-08-03  Simon Josefsson  <jas@extundo.com>
14535
14536         * lib/strdup.h: Only use HAVE_DECL_STRDUP if defined.
14537         * lib/progname.h: Don't include stdbool.h.
14538
14539 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
14540
14541         * modules/fatal: Remove, as the "fatal" module wasn't used or working.
14542         * MODULES.html.sh (func_all_modules): Remove fatal.
14543
14544 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
14545
14546         * m4/fatal.m4: Remove, as the "fatal" module wasn't used or working.
14547
14548 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
14549
14550         * lib/fatal.c, fatal.h: Remove as the "fatal" module wasn't used or
14551         working.
14552
14553 2004-08-02  Simon Josefsson  <jas@extundo.com>
14554
14555         * lib/getsubopt.h: New file, with comments from Bruno Haible.
14556         * lib/getsubopt.c: New file, from glibc, but slightly modified based on
14557         suggestions from Paul Eggert <eggert@cs.ucla.edu>.
14558
14559 2004-08-01  Simon Josefsson  <jas@extundo.com>
14560
14561         * lib/xgetdomainname.c: Include stdlib.h, for free().
14562
14563 2004-07-19  Bruno Haible  <bruno@clisp.org>
14564
14565         * MODULES.html.sh (func_all_modules): Add dummy.
14566
14567 2004-07-16  Simon Josefsson  <jas@extundo.com>
14568
14569         * modules/dummy: New file.
14570
14571 2004-07-16  Simon Josefsson  <jas@extundo.com>
14572
14573         * lib/dummy.c: New file.
14574
14575 2004-07-16  Bruno Haible  <bruno@clisp.org>
14576
14577         * lib/backupfile.h: Add extern "C" for C++.
14578         * lib/closeout.h: Likewise.
14579         * lib/copy-file.h: Likewise.
14580         * lib/findprog.h: Likewise.
14581         * lib/full-write.h: Likewise.
14582         * lib/pathname.h: Likewise.
14583         * lib/progname.h: Likewise.
14584         * lib/stpcpy.h: Likewise.
14585         * lib/stpncpy.h: Likewise.
14586         * lib/strcase.h: Likewise.
14587         * lib/strstr.h: Likewise.
14588         * lib/xalloc.h: Likewise.
14589
14590         * lib/mbswidth.h: Add extern "C" for C++.
14591         Reported by Albert Chin-A-Young <china@thewrittenword.com>.
14592
14593 2004-07-13  Robert Millan  <robertmh@gnu.org>
14594
14595         * m4/host-os.m4: s/KNetBSD/kNetBSD/g and s/KFreeBSD/kFreeBSD/g.
14596
14597 2004-07-09  Simon Josefsson  <jas@extundo.com>
14598
14599         * lib/getndelim2.c: Include stddef.h, for ptrdiff_t.  (FreeBSD 4.9
14600         failed without this.)
14601
14602 2004-07-09  Paul Eggert  <eggert@cs.ucla.edu>
14603
14604         * modules/chown (Files): Add lib/fchown-stub.c, since
14605         gl_PREREQ_CHOWN invokes AC_LIBOBJ(fchown-stub).
14606
14607 2004-07-09  Paul Eggert  <eggert@cs.ucla.edu>
14608
14609         * lib/fchown-stub.c: New file.
14610
14611 2004-06-24  Jim Meyering  <jim@meyering.net>
14612
14613         * lib/obstack.h (obstack_base): Cast to (void *), per documentation.
14614
14615 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
14616
14617         * modules/argz: Omit "#include".
14618
14619         * MODULES.html.sh (func_all_modules): Add calloc, to match
14620         2004-06-01 addition of calloc module.
14621
14622 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
14623
14624         * m4/argz.m4: New file, which is autoupdated from libtool.
14625
14626 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
14627
14628         * lib/argz.c, lib/argz_.h: New files, which are autoupdated from
14629         libtool.
14630
14631 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
14632
14633         * config/srclist-update: Don't insist on "USA." before the
14634         close-comment, as libtool omits the period and puts the */ on a
14635         separate line.
14636         * config/srclist.txt: Add argz.c, argz_.h, argz.m4.
14637         * config/srclistvars.sh: Add LIBTOOL (for eggert only).
14638
14639 2004-06-22  Gary V. Vaughan  <gary@gnu.org>
14640
14641         * modules/argz: New file.
14642         * MODULES.html.sh (func_all_modules): Add argz.
14643
14644 2004-06-12  Jim Meyering  <jim@meyering.net>
14645         and  Paul Eggert  <eggert@cs.ucla.edu>
14646
14647         * modules/hash (Files): Add lib/xalloc.h.
14648         * modules/pipe (Depends-on): Add wait-process.
14649         * modules/stat (Depends-on): Add xalloc.
14650         * modules/userspec (Files): Add lib/userspec.h.
14651         * modules/xstrto
14652
14653         Upgrade from gettext-0.13.
14654         * modules/gettext (Files): Add m4/intmax.m4, m4/longdouble.m4,
14655         m4/longlong.m4, m4/printf-posix.m4, m4/signed.m4, m4/size_max.m4,
14656         m4/wchar_t.m4, m4/wint_t.m4, m4/xsize.m4.
14657
14658 2004-06-10  Jim Meyering  <jim@meyering.net>
14659
14660         * lib/calloc.c: New file.
14661
14662 2004-06-06  Paul Eggert  <eggert@cs.ucla.edu>
14663
14664         * lib/getdate.y (yylex): Allow space between sign and number.
14665         Problem reported by Dan Jacobson.
14666
14667 2004-06-01  Paul Eggert  <eggert@cs.ucla.edu>
14668
14669         Merge from coreutils CVS.
14670
14671         * m4/backupfile.m4, dirname.m4, human.m4, inttypes.m4, longlong.m4,
14672         makepath.m4, memchr.m4, memcmp.m4, mountlist.m4, path-concat.m4,
14673         putenv.m4, quotearg.m4, readutmp.m4, strtoimax.m4, strtoll.m4,
14674         strtoull.m4, strtoumax.m4, ulonglong.m4, vasnprintf.m4,
14675         xstrtol.m4: Fix copyright date and/or serial number.
14676
14677         * m4/chown.m4 (gl_PREREQ_CHOWN): Check for fcntl.h.
14678         See if we need an fchown replacement.
14679         (gl_FUNC_CHOWN_FOLLOWS_SYMLINK): New macro.
14680         (gl_FUNC_CHOWN): Require gl_FUNC_CHOWN_FOLLOWS_SYMLINK,
14681         and use the replacement function if we detect either defect.
14682
14683         * m4/prereq.m4 (gl_PREREQ): Add gl_ALLOCSA, gl_CLOEXEC, gl_INTTOSTR,
14684         gl_UTIMECMP.
14685
14686 2004-06-01  Paul Eggert  <eggert@cs.ucla.edu>
14687         and  Jim Meyering  <jim@meyering.net>
14688
14689         Merge from coreutils CVS.
14690
14691         * lib/stat-macros.h: New file, with contents from file-type.h
14692         and coreutils' system.h.
14693         * lib/file-type.c: Include "stat-macros.h".
14694         * lib/file-type.h (file_type): Move all macro definitions to new file,
14695         stat-macros.h.
14696
14697         * lib/chown.c (rpl_chown) [CHOWN_FAILS_TO_HONOR_ID_OF_NEGATIVE_ONE]:
14698         Wrap old code with this conditional.
14699         [CHOWN_MODIFIES_SYMLINK]: Try to work around a chown
14700         function that does not dereference symlinks.
14701         * lib/lchown.c (lchown) [CHOWN_MODIFIES_SYMLINK]: Just call chown.
14702
14703         * lib/xreadlink.c: Include xreadlink.h first, to catch .h file
14704         dependency problems.
14705         (xreadlink): Accept new arg SIZE, for efficiency.
14706         All decls and uses changed.
14707         * lib/xreadlink.h: Include <stddef.h>, for size_t.
14708
14709         * lib/.cppi-disable: Add alloca_.h, allocsa.h, exit.h, getndelim2.h,
14710         gettext.h, localcharset.h, strdup.h, strndup.h, strtoul.c, time_r.h.
14711
14712         * lib/.cvsignore: Add alloca.h, fnmatch.h, poll.h, stdbool.h,
14713         sysexits.h.
14714
14715 2004-06-01  Jim Meyering  <jim@meyering.net>
14716
14717         * m4/calloc.m4: New file.
14718
14719 2004-05-31  Paul Eggert  <eggert@cs.ucla.edu>
14720
14721         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Detect _Bool bug in HP aC++/ANSI
14722         C B3910B A.05.55 [Dec 04 2003].  Problem reported by Jim Meyering.
14723         Also, fix a typo in a diagnostic.
14724
14725 2004-05-30  Paul Eggert  <eggert@cs.ucla.edu>
14726
14727         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Do not require AC_FUNC_MALLOC
14728         or AC_FUNC_REALLOC.
14729
14730 2004-05-30  Paul Eggert  <eggert@cs.ucla.edu>
14731
14732         * lib/xmalloc.c (HAVE_MALLOC, HAVE_REALLOC): Do not require these
14733         macros to be defined.
14734         (xnmalloc_inline, xnrealloc_inline, xcalloc): Do not die if
14735         the allocator returns NULL because the requested size is zero.
14736
14737 2004-05-20  Paul Eggert  <eggert@cs.ucla.edu>
14738
14739         * lib/malloc/obstack.c (_obstack) [defined _LIBC]: Bring back this
14740         var.  Add comment explaining why libc still defines it.  This
14741         merges the following patch from glibc:
14742         http://sources.redhat.com/ml/libc-alpha/2004-05/msg00157.html
14743
14744 2004-05-20  Andreas Schwab  <schwab@suse.de>
14745
14746         * m4/free.m4: Replace free if it not known to work, not the other
14747         way round.
14748
14749 2004-05-19  Paul Eggert  <eggert@cs.ucla.edu>
14750
14751         * lib/obstack.c (_obstack): Remove unused variable.  It hasn't been
14752         present in glibc since revision 1.1 of this file.
14753         * lib/obstack.h (_obstack_free, obstack_1grow, obstack_1grow_fast,
14754         obstack_alignment_mask, obstack_alloc, obstack_base,
14755         obstack_blank, obstack_blank_fast, obstack_chunk_size,
14756         obstack_copy, obstack_copy0, obstack_finish, obstack_grow,
14757         obstack_grow0, obstack_init, obstack_int_grow,
14758         obstack_int_grow_fast, obstack_make_room, obstack_memory_used,
14759         obstack_next_free, obstack_object_size, obstack_ptr_grow,
14760         obstack_ptr_grow_fast, obstack_room): Remove declarations of
14761         nonexistent functions.
14762
14763 2004-05-18  Karl Berry  <karl@gnu.org>
14764
14765         * config/srclist.txt: break link for vasnprintf.c.
14766
14767 2004-05-17  Paul Eggert  <eggert@cs.ucla.edu>
14768
14769         Port obstack to the AS/400, where pointers are 16 bytes wide and
14770         you cannot cast an integer to a valid pointer.  This patch is
14771         currently waiting to be integrated into glibc; see
14772         <http://sources.redhat.com/ml/libc-alpha/2004-05/msg00073.html>.
14773
14774         * lib/obstack.h (__PTR_TO_INT, __INT_TO_PTR): Remove.
14775         All uses of __INT_TO_PTR (PTR_TO_INT ...) replaced by __PTR_ALIGN.
14776         (__BPTR_ALIGN, __PTR_ALIGN): New macros.
14777         (struct obstack): temp member is now a union of a pointer and
14778         an integer, instead of an integer.  All integer uses changed.
14779         This does not affect the physical layout of struct obstack,
14780         except on hosts (like the AS/400) where the size or alignment of
14781         void * is greater than that of ptrdiff_t.
14782         (obstack_finish) [! (defined __GNUC__ && defined __STDC__ &&
14783         __STDC__)]: Store temporary in pointer member of union, not
14784         integer member.
14785         * lib/obstack.c: Include <stddef.h>, for offsetof.
14786         (struct fooalign): Remove; it doesn't need a name.
14787         (union fooround): Change double to long double, and add void *.
14788         (DEFAULT_ALIGNMENT): Use offsetof to compute.
14789         (DEFAULT_ALIGNMENT, DEFAULT_ROUNDING): Now an enum constant,
14790         not a macro.  Hence the values are always int; so remove all
14791         casts-to-int in uses.
14792
14793 2004-05-17  Paul Eggert  <eggert@cs.ucla.edu>
14794
14795         * config/srclist.txt: Break link for argp-help.c and argp-parse.c until
14796         we can get this patch merged into glibc.
14797
14798 2004-05-17  Derek R. Price  <derek@ximbiot.com>
14799             Paul Eggert  <eggert@cs.ucla.edu>
14800
14801         * m4/argp: Depend on alloca.
14802
14803 2004-05-17  Derek R. Price  <derek@ximbiot.com>
14804             Paul Eggert  <eggert@cs.ucla.edu>
14805
14806         * lib/argp-help.c, argp-parse.c: Assume <alloca.h> rather than
14807         freecoding.
14808
14809 2004-05-17  Bruno Haible  <bruno@clisp.org>
14810
14811         * lib/vasnprintf.c (VASNPRINTF): Correctly handle the case of a
14812         precision that consists of a '.' followed by an empty digit string.
14813         Patch by Tor Lillqvist <tml@iki.fi>.
14814
14815 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
14816
14817         * m4/alloca.m4 (gl_FUNC_ALLOCA): Define HAVE_ALLOCA_H always,
14818         for backward compatibility with older code.  We need our own
14819         alloca.h if _AIX is defined.  Define HAVE_ALLOCA if we discover
14820         it under some other name, and our alloca.h will define it.
14821
14822 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
14823             Derek Price  <derek@ximbiot.com>
14824
14825         * lib/alloca.c: Include <alloca.h>, to get our interface.
14826         * lib/alloca_.h: Use __alloca on AIX, so that we don't have to
14827         include <alloca.h> first.  Use C89 prototype for alloca; this
14828         requires including <stddef.h> for size_t.  Use extern "C" if C++.
14829         Use #elif for simplicity, since we can assume C89 now.
14830         Don't try to source the system alloca.h since it will not be found
14831         and to prevent recursively including its replacement.
14832         * lib/fnmatch.c: Include <alloca.h> instead of opencoding.
14833         * lib/regex.c: Likewise.
14834
14835 2004-05-16  Derek Price  <derek@ximbiot.com>
14836             Paul Eggert  <eggert@cs.ucla.edu>
14837
14838         getline cleanup.  This changes the getndelim2 API: both order of
14839         arguments, and meaning of delim2 (now uses EOF, not 0, to indicate
14840         no delimiter).
14841
14842         * lib/getline.c: Don't include stddef.h or stdio.h, since our
14843         interface does that.
14844         (getline): Always use getdelim, so that we don't have two
14845         copies of this code.
14846         * lib/getndelim2.c: Include <limits.h>, <inttypes.h>, <stdint.h>
14847         if available.
14848         (PTRDIFF_MAX, SIZE_MAX, SSIZE_MAX): Define if not defined.
14849         (GETNDELIM2_MAXIMUM): New macro.
14850         (getndelim2): Reorder arguments.  delim==EOF now means no delimiter,
14851         instead of the old practice of delim2==0.  All callers changed.
14852         Return -1 on overflow, instead of returning junk.
14853         Do not set *linesize unless allocation succeeds.
14854         * lib/getndelim2.h: Do not include stddef.h; no longer needed, now
14855         that we include sys/types.h.
14856         * lib/getnline.h: Likewise.
14857         * lib/getndelim2.h (GETNLINE_NO_LIMIT): New macro.
14858         (getndelim2): Reorder arguments.
14859         * lib/getnline.c (getnline, getndelim):
14860         Don't discard the NMAX argument.
14861         (getnline): Invoke getndelim, to avoid code duplication.
14862         * lib/getnline.h (GETNLINE_NO_LIMIT): New macro, used instead
14863         of (size_t) -1 by callers of the getnline family.
14864
14865 2004-05-13  Paul Eggert  <eggert@cs.ucla.edu>
14866
14867         * m4/gettime.m4 (gl_GETTIME): Require gl_TIMESPEC.
14868         Check for gettimeofday.
14869         * m4/settime.m4 (gl_SETTIME): Require gl_TIMESPEC.
14870         Check for settimeofday, stime.
14871
14872 2004-05-13  Paul Eggert  <eggert@cs.ucla.edu>
14873
14874         * lib/nanosleep.c (suspended): Change its type from int to
14875         sig_atomic_t volatile.
14876         (first_call): Make it private to rpl_nanosleep, and have it
14877         be zero initially as that's a bit faster.
14878         (my_usleep): Round up fractional times instead of truncating them,
14879         as this is the usual meaning for 'sleep'.
14880
14881         * lib/gettime.c (gettime): Fall back on `time' if `gettimeofday'
14882         doesn't work.
14883         * lib/settime.c: Include <unistd.h>, for stime (on Solaris 8, anyway).
14884         (ENOSYS): Define if not defined.
14885         (settime): Fall back on stime if it exists and settimeofday fails.
14886         But don't bother with fallbacks if a method fails with errno == EPERM.
14887
14888 2004-05-11  Jim Meyering  <jim@meyering.net>
14889
14890         Prior to this change, the save_cwd caller required read access to the
14891         current directory on most systems (ones with the fchdir function).
14892
14893         * lib/save-cwd.c (save_cwd) [HAVE_FCHDIR]: If opening `.' read-only
14894         fails, try write-only, and finally, resort to using xgetcwd.
14895
14896 2004-05-06  Paul Eggert  <eggert@cs.ucla.edu>
14897
14898         * lib/obstack.c, obstack.h: Import changes from libc.
14899
14900 2004-04-28  Bruno Haible  <bruno@clisp.org>
14901
14902         * lib/findprog.c (find_in_path): Treat Cygwin like Windows, since it
14903         also implicitly appends .exe to executables.
14904         * lib/localcharset.c (ISSLASH): Treat Cygwin like Windows, since it now
14905         accepts Windows pathnames.
14906         * lib/pathname.h (ISSLASH, IS_PATH_WITH_DIR, FILESYSTEM_PREFIX_LEN):
14907         Treat Cygwin like Windows, since it now accepts Windows pathnames.
14908         * lib/progreloc.c (ISSLASH, IS_PATH_WITH_DIR, FILESYSTEM_PREFIX_LEN):
14909         Treat Cygwin like Windows, since it now accepts Windows pathnames.
14910         Reported by Derek Robert Price <derek@ximbiot.com>.
14911
14912 2004-04-21  Karl Berry  <karl@gnu.org>
14913
14914         * config/srclist.txt (localcharset.c): break sync.
14915
14916 2004-04-20  Paul Eggert  <eggert@twinsun.com>
14917
14918         * m4/host-os.m4: Add a copyright notice.
14919
14920 2004-04-20  Jim Meyering  <jim@meyering.net>
14921
14922         Change UTILS_ to gl_ in AC_DEFINE'd names.
14923         Change utils_- and jm_-prefixed variables, too.
14924         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Renamed from
14925         UTILS_FUNC_MKDIR_TRAILING_SLASH.
14926         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Renamed from UTILS_FUNC_MKSTEP.
14927
14928         * m4/dirfd.m4 (gl_FUNC_DIRFD): Rename from UTILS_FUNC_DIRFD.
14929         Don't emit trailing blanks.
14930         Also rename jm_-prefixed variables to have gl_ prefix.
14931
14932         * m4/host-os.m4 (gl_HOST_OS): Rename from UTILS_HOST_OS.
14933         Also rename jm_-prefixed variables to have gl_ prefix.
14934
14935         * m4/jm-macros.m4: Reflect the renamings.
14936         * m4/prereq.m4: Likewise.
14937
14938 2004-04-20  Jim Meyering  <jim@meyering.net>
14939
14940         * lib/getndelim2.c (getndelim2): Upon realloc failure, don't leak
14941         memory.
14942
14943 2004-04-20  Jim Meyering  <jim@meyering.net>
14944             Bruno Haible  <bruno@clisp.org>
14945
14946         * lib/localcharset.c (get_charset_aliases) [!VMS && !WIN32]: Don't leak
14947         memory when realloc fails.
14948
14949 2004-04-19  Jim Meyering  <jim@meyering.net>
14950
14951         * m4/readutmp.m4 (gl_PREREQ_READUTMP): Require gl_FUNC_FREE,
14952         now that readutmp.c may call `free (0)'.
14953
14954 2004-04-19  Bruno Haible  <bruno@clisp.org>
14955
14956         * m4/mbrtowc.m4: Change jm_ to gl_ in cache variables as well.
14957         * m4/inttypes_h.m4: Likewise.
14958         * m4/stdint_h.m4: Likewise.
14959         * m4/intmax_t.m4: Likewise.
14960         * m4/uintmax_t.m4: Likewise.
14961
14962 2004-04-18  Jim Meyering  <jim@meyering.net>
14963
14964         * m4/prereq.m4: Don't forbid jm_ prefix.
14965
14966         * m4/afs.m4, m4/allocsa.m4, m4/assert.m4, m4/backupfile.m4:
14967         * m4/bison.m4, m4/check-decl.m4, m4/chown.m4, m4/d-ino.m4:
14968         * m4/d-type.m4, m4/dirname.m4, m4/dos.m4, m4/error.m4, m4/fpending.m4:
14969         * m4/fstypename.m4, m4/fsusage.m4, m4/ftruncate.m4, m4/getdate.m4:
14970         * m4/getgroups.m4, m4/gettext.m4, m4/glibc21.m4, m4/group-member.m4:
14971         * m4/human.m4, m4/intmax.m4, m4/intmax_t.m4, m4/inttostr.m4:
14972         * m4/inttypes.m4, m4/inttypes_h.m4, m4/jm-macros.m4, m4/jm-winsz1.m4:
14973         * m4/jm-winsz2.m4, m4/lchown.m4, m4/lib-check.m4, m4/link-follow.m4:
14974         * m4/localcharset.m4, m4/longlong.m4, m4/ls-mntd-fs.m4, m4/lstat.m4:
14975         * m4/makepath.m4, m4/mbrtowc.m4, m4/mbswidth.m4, m4/memchr.m4:
14976         * m4/memcmp.m4, m4/mkdtemp.m4, m4/mkstemp.m4, m4/mountlist.m4:
14977         * m4/nanosleep.m4, m4/path-concat.m4, m4/perl.m4, m4/prereq.m4:
14978         * m4/putenv.m4, m4/quotearg.m4, m4/regex.m4, m4/stat.m4:
14979         * m4/stdint_h.m4, m4/strftime.m4, m4/strtoimax.m4, m4/strtoll.m4:
14980         * m4/strtoull.m4, m4/strtoumax.m4, m4/timespec.m4, m4/uintmax_t.m4:
14981         * m4/ulonglong.m4, m4/unlink-busy.m4, m4/unlocked-io.m4, m4/uptime.m4,
14982         * m4/utimbuf.m4, m4/utime.m4, m4/utimes-null.m4, m4/vasnprintf.m4:
14983         * m4/xstrtoimax.m4, m4/xstrtol.m4, m4/xstrtoumax.m4:
14984         Change jm_ to gl_ in AC_DEFINE'd names. Update all uses.
14985
14986 2004-04-18  Jim Meyering  <jim@meyering.net>
14987
14988         * lib/readutmp.c (read_utmp) [UTMP_NAME_FUNCTION]: Upon realloc
14989         failure, don't leak memory and do call END_UTMP_ENT.
14990
14991 2004-04-16  Jim Meyering  <jim@meyering.net>
14992
14993         * m4/prereq.m4 (jm_PREREQ_STAT): Remove macro.  It is specific to
14994         coreutils' stat program.
14995         (gl_PREREQ): Don't require jm_PREREQ_STAT.
14996
14997 2004-04-11  Paul Eggert  <eggert@twinsun.com>
14998
14999         * lib/inttostr.h: Include <limits.h> unconditionally, since we assume
15000         C89.
15001         (CHAR_BIT): Remove, since we assume C89.
15002         Include <stdint.h> if available, as per current Autoconf CVS advice.
15003
15004 2004-03-31  Jim Meyering  <jim@meyering.net>
15005
15006         * m4/prereq.m4: Require AC_FUNC_MALLOC, not jm_FUNC_MALLOC.
15007         Require AC_FUNC_REALLOC, not jm_FUNC_REALLOC.
15008         * m4/xalloc.m4: Likewise.
15009
15010 2004-03-30  Paul Eggert  <eggert@twinsun.com>
15011
15012         Merge from coreutils.
15013
15014         * m4/inttostr.m4: New file.
15015         * m4/getdate.m4 (gl_GETDATE): Remove time-related stuff.
15016         Require AM_STDBOOL_H and gl_TIMESPEC instead.
15017         Require gl_CLOCK_TIME.
15018         * m4/clock_time.m4 (gl_CLOCK_TIME): Require AC_GNU_SOURCE.
15019
15020 2004-03-30  Paul Eggert  <eggert@twinsun.com>
15021
15022         * lib/cloexec.h, cloexec.c (set_cloexec_flag): Return int
15023         not bool, to be more consistent with Unix conventions.
15024         Suggested by Bruno Haible.
15025
15026         Merge from coreutils.
15027
15028         * lib/imaxtostr.c, lib/inttostr.c, lib/inttostr.h, lib/offtostr.c:
15029         * lib/umaxtostr.c: New files.
15030
15031         * lib/getdate.h: Include stdbool.h, and timespec.h instead of
15032         the usual <time.h> dance.
15033         (get_date): Change signature to support fractional time stamps.
15034         All callers changed.
15035         * lib/getdate.y: Include "getdate.h" first, as we can now
15036         assume C89 and don't need to worry about 'const'.
15037         Similarly, include "unlocked-io.h" near start, not in middle.
15038         Include <limits.h>.
15039         (textint.value): Use long int rather than int.
15040         (textint.digits): Use size_t rather than int.
15041         (BILLION, LOG10_BILLION): New constants.
15042         (parser_control): New member rel_ns.  Members day_ordinal,
15043         time_zone, month, day, hour, minutes, rel_year, rel_month,
15044         rel_day, rel_hour, rel_minutes, rel_seconds
15045         are now long int, not int.  Member seconds is now struct timespec,
15046         not int.  New member timespec_seen.  Members dates_seen, days_seen,
15047         local_zones_seen, rels_seen, times_seen, zones_seen are now size_t,
15048         not int.
15049         (%union.intval): Now long int, not int.
15050         New member timespec.
15051         (tSDECIMAL_NUMBER, tUDECIMAL_NUMBER): New tokens.
15052         (seconds, signed_seconds, unsigned_seconds): New nonterminals.
15053         (spec): Now is a timespec or an item list.
15054         (timespec, items): New nonterminals.
15055         (time, rel, relunit, number, get_date):
15056         Add support for fractional seconds.
15057         (time): Fix bug: seconds weren't cleared in "00:00 +0000" syntax.
15058         (gmtime, localtime, mktime): Remove decls; not needed with C89.
15059         (to_hour): First arg is now long int, not int.
15060         (to_year): Returns long int, not int.
15061         Don't treat year -70 like 70.
15062         (tm_diff): Returns long int, not int.
15063         (lookup_word): Use bool instead of int when appropriate.
15064         (yylex): Use size_t for count, not int.
15065         Detect overflow when parsing large integer constants.
15066         Add support for fractions.
15067         (get_date): Make pointers 'const' if possible.
15068         Use more-portable code to detect integer overflow.
15069         (main) [TEST]: Adjust to above changes.  Test for localtime failure.
15070         Don't use ctime; it's not reliable if the year has >4 digits.
15071
15072         * lib/human.c (humblock): Inspect BLOCKSIZE if BLOCK_SIZE isn't set.
15073         This is for compatibility with BSD.
15074
15075         * lib/timespec.h (ST_TIME_CMP_NS, ST_TIME_CMP): Define.
15076         (ATIME_CMP, CTIME_CMP, MTIME_CMP, TIMESPEC_NS): Likewise.
15077         From coreutils' system.h.
15078
15079         * lib/userspec.c: Don't include "posixver.h".
15080         (parse_user_spec): Fall back on USER.GROUP parsing, regardless
15081         of POSIX version, as POSIX 1003.1-2001 allows that behavior as a
15082         compatible extension.  Simplify code by removing a boolean int
15083         that was always nonzero if a string was nonnull.
15084
15085 2004-03-30  Jim Meyering  <jim@meyering.net>
15086
15087         Merge from coreutils.
15088
15089         Avoid a configure-time warning about sys/ucred.h on OSF V4.0.
15090         * m4/ls-mntd-fs.m4: Test for sys/ucred.h separately, since
15091         on some systems one must include <grp.h> before it.
15092         Reported by Christian Krackowizer.
15093
15094 2004-03-30  Jim Meyering  <jim@meyering.net>
15095
15096         Merge from coreutils.
15097
15098         * lib/mountlist.c [HAVE_SYS_UCRED_H]: Include grp.h before sys/ucred.h.
15099
15100         * lib/readtokens.c (readtoken): Don't leak 64 bytes when reading
15101         an empty input stream.
15102
15103         * lib/readtokens.c: Include <stdbool.h>.
15104         (readtoken): Use `size_t' rather than int/long.
15105         All callers adjusted.
15106         Use `bool' rather than `int' where appropriate.
15107         Use memset rather than an explicit loop.
15108         Use x2nrealloc rather than xrealloc.
15109         Allow the use of `\0' as a delimiter.
15110         (readtokens): Likewise.
15111         * lib/readtokens.h (readtoken, readtokens): Update prototypes.
15112
15113 2004-03-30  Jim Meyering  <jim@meyering.net>
15114
15115         * m4/realloc.m4: Remove file, since now it does no more than
15116         AC_REQUIRE([AC_FUNC_REALLOC]), and that can be done via
15117         the `configure.ac' section of module/realloc.
15118         * m4/malloc.m4: Likewise, but for AC_FUNC_MALLOC.
15119
15120 2004-03-30  Bruno Haible  <bruno@clisp.org>
15121
15122         * lib/getloadavg.c (getloadavg): Don't assume setlocale returns
15123         nonnull.
15124
15125 2004-03-29  Paul Eggert  <eggert@twinsun.com>
15126
15127         Merge changes to getloadavg.c from coreutils and Emacs.
15128
15129         * lib/getloadavg.c [!defined HAVE_SETLOCALE] (setlocale):
15130         Define to an expression, not to the empty string.
15131         Include cloexec.h and xalloc.h.
15132         (getloadavg): Restore LC_NUMERIC locale after setting it temporarily.
15133         Use set_cloexec_flag rather than rolling our own.
15134         * lib/cloexec.c, lib/cloexec.h: New files.
15135
15136 2004-03-29  Paul Eggert  <eggert@twinsun.com>
15137
15138         * m4/cloexec.m4: New file.
15139
15140 2004-03-18  Paul Eggert  <eggert@twinsun.com>
15141
15142         * lib/getopt.h: Sync with libc CVS.
15143
15144 2004-03-18  Paul Eggert  <eggert@twinsun.com>
15145             Bruno Haible  <bruno@clisp.org>
15146
15147         * m4/mbswidth.m4 (gl_MBSWIDTH): Also test whether <wchar.h> declares
15148         mbswidth.
15149
15150 2004-03-18  Paul Eggert  <eggert@twinsun.com>
15151             Bruno Haible  <bruno@clisp.org>
15152
15153         * lib/mbswidth.h: Include <wchar.h> only if
15154         HAVE_DECL_MBSWIDTH_IN_WCHAR_H, not on all platforms that have
15155         <wchar.h>.
15156         * lib/mbswidth.c: Include <stdio.h> and <time.h> before <wchar.h>.
15157
15158 2004-03-09  Paul Eggert  <eggert@twinsun.com>
15159
15160         * lib/argp-parse.c, getopt.c, getopt.h, getopt1.c:
15161         Sync with libc CVS.
15162         * lib/getopt_int.h: New file, also synced from libc.
15163
15164 2004-03-09  Paul Eggert  <eggert@twinsun.com>
15165
15166         * config/srclistvars.sh: Add GNUWWWLICENSES for eggert.
15167         * config/srclist.txt: Sync getopt with libc.  Add getopt_int.h.
15168         Bring back getopt.c, getopt.h, getopt1.c.
15169
15170 2004-03-07  Paul Eggert  <eggert@twinsun.com>
15171
15172         * m4/c-stack.m4 (gl_PREREQ_C_STACK): Renamed from jm_PREREQ_C_STACK.
15173         All uses changed.  Check for sa_sigaction member; this fixes
15174         a bug first reported by Jason Andrade in
15175         <http://mail.gnu.org/archive/html/bug-textutils/2003-03/msg00027.html>.
15176
15177 2004-03-07  Paul Eggert  <eggert@twinsun.com>
15178
15179         * lib/c-stack.c (SIGACTION_WORKS): New macro.  Use it instead of long
15180         '#if' expressions.  Unlike the code it replaces, it does not
15181         depend on (defined _SC_PAGESIZE).  However, it does depend on
15182         HAVE_STRUCT_SIGACTION_SA_SIGACTION; this last change fixes a bug
15183         first reported by Jason Andrade in
15184         <http://mail.gnu.org/archive/html/bug-textutils/2003-03/msg00027.html>.
15185
15186 2004-02-25  Simon Josefsson  <jas@extundo.com>
15187
15188         * m4/strdup.m4 (gl_PREREQ_STRDUP): Check whether strdup is declared.
15189
15190 2004-02-25  Simon Josefsson  <jas@extundo.com>
15191
15192         * lib/strdup.h: New file.
15193         * lib/strdup.c: Include it.
15194         * lib/path-concat.c: Include strdup.h. Drop strdup declaration.
15195         * lib/userspec.c: Include strdup.h. Drop strdup declaration.
15196
15197 2004-02-23  Karl Berry  <karl@gnu.org>
15198
15199         * doc/maintain.texi, doc/standards.texi, doc/make-stds.texi: new files
15200         (from fencepost.gnu.org:/gd/gnuorg).
15201
15202 2004-02-23  Karl Berry  <karl@gnu.org>
15203
15204         * config/srclistvars.sh (GNUORG) [karl]: redefine.
15205         * config/srclist.txt: add maintain/standards documents.
15206
15207 2004-02-18  Bruno Haible  <bruno@clisp.org>
15208
15209         * m4/xsize.m4 (gl_XSIZE): Require AC_C_INLINE.
15210         Reported by Derek Robert Price <derek@ximbiot.com>.
15211
15212 2004-02-16  Karl Berry  <karl@gnu.org>
15213
15214         * config/mkinstalldirs, install-sh: update from automake.
15215
15216 2004-02-06  Karl Berry  <karl@gnu.org>
15217
15218         * m4/po.m4: update from gettext 0.14.1.
15219
15220 2004-02-06  Karl Berry  <karl@gnu.org>
15221
15222         * lib/config.charset: update from gettext 0.14.1.
15223
15224 2004-02-05  Paul Eggert  <eggert@twinsun.com>
15225
15226         Add comments and code, prompted by suggestions from Bruno Haible
15227         for sh-quote.
15228         * lib/quotearg.h (quotearg_alloc): New decl.  Improve the comments
15229         describing the enum quoting_style values.
15230         * lib/quotearg.c (quotearg_alloc): New function.
15231         (quotearg_buffer_restyled): Treat lone { and } as special.
15232         Treat = as special.  Work around bug with older shells
15233         that "see" a '\' that is really the 2nd byte of a multibyte char.
15234         Quote empty string with shell_quoting_style.
15235
15236 2004-02-03  Bruno Haible  <bruno@clisp.org>
15237
15238         * m4/pipe.m4: New file, from GNU gettext.
15239
15240 2004-02-03  Bruno Haible  <bruno@clisp.org>
15241
15242         * lib/pipe.h: New file, from GNU gettext.
15243         * lib/pipe.c: New file, from GNU gettext.
15244
15245 2004-01-27  Bruno Haible  <bruno@clisp.org>
15246
15247         * m4/execute.m4: New file, from GNU gettext.
15248
15249 2004-01-27  Bruno Haible  <bruno@clisp.org>
15250
15251         * lib/execute.h: New file, from GNU gettext.
15252         * lib/execute.c: New file, from GNU gettext.
15253         * lib/w32spawn.h: New file, from GNU gettext.
15254
15255 2004-01-24  Paul Eggert  <eggert@twinsun.com>
15256
15257         Merge from diffutils.
15258
15259         * lib/file-type.c (file_type): Add typed memory objects.
15260         * lib/file-type.h (S_TYPEISTMO): New macro.
15261
15262         * lib/c-stack.h (c_stack_action): Remove argv argument.
15263         * lib/c-stack.c (c_stack_action): Likewise.  All uses changed.
15264         (die): Don't calculate message unless segv_action returns.
15265         (get_stack_location, min_address_from_argv, max_address_from_argv,
15266         volatile stack_base, volatile_stack_size): Remove.
15267         (segv_handler): If ! HAVE_XSI_STACK_OVERFLOW_HEURISTIC, assume
15268         that every segmentation violation is a stack overflow.  (Ouch!)
15269         See Debian bug 136249 (still outstanding) for more info about why
15270         HAVE_XSI_STACK_OVERFLOW_HEURISTIC fails on Linux kernels.
15271
15272 2004-01-24  Paul Eggert  <eggert@twinsun.com>
15273
15274         Exit-status fix from coreutils.
15275
15276         Use exit_failure consistently in place of EXIT_FAILURE,
15277         so that program exit statuses are consistent on failure.
15278
15279         * lib/argmatch.c (ARGMATCH_DIE) [! defined ARGMATCH_DIE]:
15280         Include "exitfail.h", and use exit_failure rather than EXIT_FAILURE.
15281         * lib/argmatch.h: Comment fix to match the above.
15282         * lib/obstack.c (obstack_exit_failure) [!defined _LIBC]:
15283         Now a macro referring to exit_failure, instead of a separate
15284         variable.  Include "exitfail.h" to get it.
15285         * lib/xstrtol.h: Include "exitfail.h".
15286         (STRTOL_FATAL_ERROR): Exit with status exit_failure, not 2.
15287
15288         * lib/long-options.c (parse_long_options): Use prototype
15289         for usage function arg.  Pass it EXIT_SUCCESS rather than 0,
15290         for clarity.
15291
15292 2004-01-21  Jim Meyering  <jim@meyering.net>
15293
15294         * lib/mktime.c (__mktime_internal) [!_LIBC]: Define to mktime_internal
15295         so as not to conflict with a different-sized __mktime_internal
15296         function in GNU libc.
15297         * lib/timegm.c (__mktime_internal) [!_LIBC]: Likewise.
15298         Problem building statically-linked `ls' reported by Michael Brunnbauer.
15299
15300 2004-01-20  Karl Berry  <karl@gnu.org>
15301
15302         * config/config.guess: update from config.
15303
15304         * config/srclistvars.sh: GNUWWWLICENSES for karl.
15305
15306 2004-01-20  Bruno Haible  <bruno@clisp.org>
15307
15308         Safer stack allocation.
15309         * lib/setenv.c: Include allocsa.h.
15310         (alloca): Remove fallback definition.
15311         (freea): Remove macro.
15312         (__add_to_environ) [!_LIBC]: Use allocsa instead of alloca. Use freesa
15313         instead of freea.
15314
15315 2004-01-20  Bruno Haible  <bruno@clisp.org>
15316
15317         * m4/eealloc.m4: New file, from GNU gettext.
15318
15319 2004-01-20  Bruno Haible  <bruno@clisp.org>
15320
15321         * m4/allocsa.m4: New file, from GNU gettext.
15322
15323 2004-01-20  Bruno Haible  <bruno@clisp.org>
15324
15325         * lib/xallocsa.h: New file, from GNU gettext.
15326         * lib/xallocsa.c: New file, from GNU gettext.
15327
15328 2004-01-20  Bruno Haible  <bruno@clisp.org>
15329
15330         * lib/wait-process.c: On Windows, include windows.h. Needed on mingw.
15331
15332 2004-01-20  Bruno Haible  <bruno@clisp.org>
15333
15334         * lib/wait-process.c (wait_subprocess): Add ignore_sigpipe argument.
15335         * lib/wait-process.c (wait_subprocess): Likewise. Handle SIGPIPE
15336         specially.
15337
15338 2004-01-20  Bruno Haible  <bruno@clisp.org>
15339
15340         * lib/wait-process.c (wait_process): Disable the 2003-10-31 waitid()
15341         patch.
15342
15343 2004-01-20  Bruno Haible  <bruno@clisp.org>
15344
15345         * lib/wait-process.c (cleanup_slaves): Use ANSI C declaration.
15346
15347 2004-01-20  Bruno Haible  <bruno@clisp.org>
15348
15349         * lib/eealloc.h: New file.
15350
15351 2004-01-20  Bruno Haible  <bruno@clisp.org>
15352
15353         * lib/binary-io.h: Avoid warnings on Cygwin.
15354
15355 2004-01-20  Bruno Haible  <bruno@clisp.org>
15356
15357         * lib/allocsa.h: New file, from GNU gettext.
15358         * lib/allocsa.c: New file, from GNU gettext.
15359
15360 2004-01-18  Karl Berry  <karl@gnu.org>
15361
15362         * doc/gpl.texi, doc/lgpl.texi: new files.
15363
15364 2004-01-18  Karl Berry  <karl@gnu.org>
15365
15366         * config/srclistvars.sh (GNUWWWLICENSES): new variable.
15367         * config/srclist.txt ({fdl,gpl,lgpl}.text): get from there.
15368
15369 2004-01-15  Paul Eggert  <eggert@twinsun.com>
15370
15371         Merge from coreutils.
15372
15373         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for uintptr_t.
15374         * m4/posixver.m4 (gl_POSIXVER): Require gl_DEFAULT_POSIX2_VERSION.
15375         (gl_DEFAULT_POSIX2_VERSION): Move
15376         the documentation from 'configure' into 'config.hin',
15377         so that 'configure --help' isn't burdened by it and
15378         we don't have to worry about its formatting there.
15379         Reword the documentation so that it's more succinct
15380         and can be run together into a single paragraph.
15381         * m4/same.m4 (gl_SAME): Check for pathconf.
15382
15383 2004-01-15  Paul Eggert  <eggert@twinsun.com>
15384
15385         Merge from coreutils.
15386
15387         * lib/posixver.c: Include posixver.h.
15388
15389         * lib/same.c: Include <stdbool.h>, <limits.h>.
15390         (_POSIX_NAME_MAX): Define if not defined.
15391         (MIN): New macro.
15392         (same_name): If file names are silently truncated, report
15393         that the file names are the same if they are the same after
15394         the silent truncation.
15395
15396         * lib/xstrtod.h (xstrtod): Accept an extra arg, specifying the
15397         conversion function.
15398         * lib/xstrtod.c (xstrtod): Likewise.  All callers changed to
15399         include c-strtod.h and use c_strtod.  Don't include stdlib.h; no
15400         longer needed.
15401
15402 2004-01-15  Jim Meyering  <jim@meyering.net>
15403
15404         Merge from coreutils.
15405
15406         * m4/clock_time.m4 (gl_CLOCK_TIME): Don't set LIB_CLOCK_GETTIME
15407         if no library is required.
15408         * m4/jm-macros.m4: Don't require UTILS_SYS_OPEN_MAX.
15409         * m4/jm-macros.m4 (jm_MACROS): Require gl_FUNC_FREE.
15410         * m4/jm-macros.m4 (jm_MACROS): Require autoconf-2.58.
15411         (AC_LANG_SOURCE): Remove definition, now that we require autoconf-2.58.
15412         * m4/jm-macros.m4 (jm_MACROS): Don't require AC_FUNC_FTW.
15413         * m4/lib-check.m4 (jm_LIB_CHECK): Do not set LIB_CRYPT to the
15414         value, $ac_cv_search_crypt, if it's "none required".
15415         * m4/posixver.m4 (gl_DEFAULT_POSIX2_VERSION): New macro.
15416         * m4/prereq.m4 (jm_PREREQ): Require AC_FUNC_GETLOADAVG,
15417         not gl_FUNC_GETLOADAVG.
15418         * m4/prereq.m4 (jm_PREREQ): Require gl_READTOKENS, gl_MD5, gl_MAKEPATH,
15419         gl_LONG_OPTIONS, and gl_IDCACHE, gl_GETUGROUPS.
15420
15421 2004-01-15  Jim Meyering  <jim@meyering.net>
15422
15423         Merge from coreutils.
15424
15425         * lib/md5.h (rol) [__GNUC__ && __i386__]: Don't use `asm' code.  These
15426         days, gcc-3.x does better all by itself.  Patch from Dean Gaudet:
15427         http://mail.gnu.org/archive/html/bug-coreutils/2003-11/msg00144.html
15428
15429         * lib/posixver.c (DEFAULT_POSIX2_VERSION): Use definition of new,
15430         optional configure-time default.
15431
15432         * lib/version-etc.c (version_etc_copyright): Update copyright date.
15433
15434         * lib/xreadlink.c (xreadlink): Correct outdated comment.
15435
15436 2004-01-15  Alexandre Duret-Lutz  <adl@gnu.org>
15437
15438         Merge from coreutils.
15439
15440         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Do not set LIB_NANOSLEEP to the
15441         value, $ac_cv_search_nanosleep, if it's "none required".
15442
15443 2004-01-14  Paul Eggert  <eggert@twinsun.com>
15444
15445         * lib/fnmatch_loop.c (ALLOCA_LIMIT): Remove macro, which collided
15446         with like-named macro in fnmatch.c.
15447         (EXT): Use an internal constant instead.
15448
15449         Merge fnmatch patches from glibc.
15450         * lib/fnmatch.c (mbsinit): Remove define.
15451         Add libc_hidden_ver (__fnmatch, fnmatch).
15452         * lib/fnmatch_loop.c (FCT): Cast to int32_t and UCHAR when appropriate.
15453         Adjust to renaming of collseq_table_lookup to __collseq_table_lookup.
15454
15455 2004-01-14  Karl Berry  <karl@gnu.org>
15456
15457         * config/install-sh: update from automake.
15458
15459 2004-01-13  Karl Berry  <karl@gnu.org>
15460
15461         * config/install-sh: update from automake.
15462
15463 2004-01-09  Karl Berry  <karl@gnu.org>
15464
15465         * config/install-sh: update from automake.
15466
15467 2004-01-05  Karl Berry  <karl@gnu.org>
15468
15469         * config/config.{sub,guess}: update from config.
15470
15471 2003-12-31  Karl Berry  <karl@gnu.org>
15472
15473         * config/depcomp: update from automake.
15474
15475 2003-12-14  Karl Berry  <karl@gnu.org>
15476
15477         * lib/config.charset: update from gettext-runtime.
15478
15479 2003-12-03  Paul Eggert  <eggert@twinsun.com>
15480
15481         * lib/getgroups.c (getgroups): xmalloc takes one argument, not two.
15482         Bug reported by Alfred M. Szmidt.
15483
15484 2003-12-03  Bruno Haible  <bruno@clisp.org>
15485
15486         * m4/gettext.m4: Upgrade from gettext-0.13.
15487         * m4/po.m4: Upgrade from gettext-0.13.
15488         * m4/size_max.m4 (gl_SIZE_MAX): Don't use the _ONCE macros here.
15489         * m4/intmax.m4: New file, from gettext-0.13.
15490         * m4/printf-posix.m4: New file, from gettext-0.13.
15491
15492 2003-11-29  Karl Berry  <karl@gnu.org>
15493
15494         * lib/argp-{help.c,parse.c,namefrob.h}, argp.h: update from libc.
15495
15496 2003-11-25  Paul Eggert  <eggert@twinsun.com>
15497             Bruno Haible  <bruno@clisp.org>
15498
15499         * lib/printf-parse.h: Don't include sys/types.h.
15500         (ARG_NONE): New macro.
15501         (char_directive): Change type of *arg_index fields to size_t.
15502         * lib/printf-parse.c: Don't include sys/types.h.
15503         (SSIZE_MAX): Remove macro.
15504         (PRINTF_PARSE): Change the type of the arg_index variables to size_t.
15505         Remove unnecessary overflow check.
15506         * lib/vasnprintf.c (VASNPRINTF): Update for type change of *arg_index
15507         fields.
15508
15509 2003-11-25  Bruno Haible  <bruno@clisp.org>
15510
15511         * modules/vasnprintf (Files): Remove m4/ssize_t.m4.
15512
15513 2003-11-25  Bruno Haible  <bruno@clisp.org>
15514
15515         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Don't require
15516         gt_TYPE_SSIZE_T.
15517
15518 2003-11-24  Paul Eggert  <eggert@twinsun.com>
15519
15520         * modules/alloca: Remove dependency on xalloc.
15521
15522 2003-11-24  Paul Eggert  <eggert@twinsun.com>
15523
15524         * lib/alloca.c: Remove dependency on xalloc module.
15525         (xalloc_die): Remove.
15526         (memory_full) [!defined emacs]: New macro.
15527         [!defined emacs]: Don't include xalloc.h.
15528         (alloca): Invoke memory_full, not xalloc_die, if malloc fails or
15529         address arithmetic overflows.  Change datatypes a bit to avoid
15530         unnecessary casts.
15531
15532 2003-11-22  Jim Meyering  <jim@meyering.net>
15533
15534         * lib/xmalloc.c (x2nrealloc_inline): Fix typos in comments:
15535         s/size/size_t/.
15536
15537 2003-11-21  Karl Berry  <karl@gnu.org>
15538
15539         * config/config.{sub,guess}: update from config.
15540
15541 2003-11-18  Karl Berry  <karl@gnu.org>
15542
15543         * config/config.{sub,guess}: update from config.
15544
15545         * config/(printf-{parse,args}.[ch]): sync broken, sigh.
15546
15547 2003-11-17  Paul Eggert  <eggert@twinsun.com>
15548
15549         * README: Mention that S+T cannot overflow if S is the size of
15550         an existing object and T is sufficiently small.
15551
15552 2003-11-17  Jim Meyering  <jim@meyering.net>
15553
15554         On systems without utime and without a utimes function capable of
15555         dealing with a NULL struct utimbuf* argument, this utime replacement
15556         could -- in unusual circumstances -- leak a file descriptor.
15557         * lib/utime.c: Include <unistd.h> and <errno.h>.
15558         (utime_null): Be sure to close `fd' and to preserve errno.
15559         Reported by Geoff Collyer via Arnold Robbins.
15560
15561 2003-11-17  Bruno Haible  <bruno@clisp.org>
15562
15563         * modules/vasnprintf (Files): Add m4/ssize_t.m4.
15564         (Depends-on): Add xsize.
15565
15566 2003-11-17  Bruno Haible  <bruno@clisp.org>
15567
15568         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Require gt_TYPE_SSIZE_T.
15569
15570 2003-11-17  Bruno Haible  <bruno@clisp.org>
15571
15572         * lib/vasnprintf.c (alloca): Remove fallback definition.
15573         (freea): Remove definition.
15574         (VASNPRINTF): Use alloca only for small sizes, say <= 4000 bytes.
15575         Reported by Paul Eggert.
15576
15577 2003-11-16  Paul Eggert  <eggert@twinsun.com>
15578             Bruno Haible  <bruno@clisp.org>
15579
15580         Protect against address arithmetic overflow.
15581         * lib/printf-args.h: Include stddef.h.
15582         (arguments): Change type of field 'count' to size_t.
15583         * lib/printf-args.c (printf_fetchargs): Use size_t instead of
15584         'unsigned int' where appropriate.
15585         * lib/printf-parse.h: Include sys/types.h.
15586         (char_directive): Change type of *arg_index fields to ssize_t.
15587         (char_directives): Change type of fields 'count', max_*_length to
15588         size_t.
15589         * lib/printf-parse.c: Include sys/types.h and xsize.h.
15590         (SSIZE_MAX): Define fallback value.
15591         (PRINTF_PARSE): Use size_t instead of 'unsigned int' and ssize_t
15592         instead of 'int' where appropriate. Check a_allocated, d_allocated
15593         against overflow. Reject %m$ argument numbers > SSIZE_MAX + 1.
15594         * lib/vasnprintf.c: Include xsize.h.
15595         (VASNPRINTF): Use size_t instead of 'unsigned int' where appropriate.
15596         Check alloca, malloc, realloc, ENSURE_ALLOCATION arguments against
15597         overflow. Avoid wraparound when converting a width or precision from
15598         decimal to binary.
15599
15600 2003-11-16  Bruno Haible  <bruno@clisp.org>
15601
15602         Update from GNU gettext.
15603         * lib/printf-parse.c: Generalize to it can be compiled for wide
15604         strings.
15605         (PRINTF_PARSE, CHAR_T, DIRECTIVE, DIRECTIVES): New macros.
15606         * lib/vasnprintf.c: Generalize to it can be compiled for wide strings.
15607         (VASNPRINTF, CHAR_T, DIRECTIVE, DIRECTIVES, PRINTF_PARSE, USE_SNPRINTF,
15608         SNPRINTF): New macros.
15609         Don't include <alloca.h> if the file is used inside libintl.
15610         (local_wcslen): New function, for Solaris 2.5.1.
15611         (VASNPRINTF): Use it instead of wcslen.
15612
15613 2003-11-16  Bruno Haible  <bruno@clisp.org>
15614
15615         * lib/xsize.h (xmax): New function.
15616         (xsum, xsum3, xsum4): Declare as "pure" functions.
15617
15618 2003-11-12  Paul Eggert  <eggert@twinsun.com>
15619
15620         * modules/xalloc (Files): Undo latest change, since xalloc.h
15621         no longer needs SIZE_MAX or PTRDIFF_MAX.
15622
15623 2003-11-12  Paul Eggert  <eggert@twinsun.com>
15624
15625         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Do not require gl_SIZE_MAX or
15626         gl_PTRDIFF_MAX.
15627
15628 2003-11-12  Paul Eggert  <eggert@twinsun.com>
15629
15630         * lib/xstrtol.c (__xstrtol): Remove "break" immediately after
15631         "return", to pacify some unknown compiler.  Problem reported
15632         by Joerg Schilling.
15633
15634 2003-11-12  Paul Eggert  <eggert@twinsun.com>
15635
15636         * lib/xalloc.h: Do not include <limits.h> or <stdint.h>.
15637         (xalloc_oversized): Use sizeof (ptrdiff_t) and sizeof (size_t) for
15638         the heuristic, rather than PTRDIFF_MAX and SIZE_MAX.  This
15639         heuristic is just as accurate as far as we know, and it removes a
15640         dependency on size_max.m4 and ptrdiff_max.m4.
15641
15642 2003-11-11  Bruno Haible  <bruno@clisp.org>
15643
15644         * modules/xsize (Files): Add m4/size_max.m4.
15645         * modules/xalloc (Files): Add m4/size_max.m4, m4/ptrdiff_max.m4.
15646
15647 2003-11-11  Bruno Haible  <bruno@clisp.org>
15648
15649         * m4/size_max.m4: New file.
15650         * m4/ptrdiff_max.m4: New file.
15651         * m4/xsize,m4 (gl_XSIZE): Require gl_SIZE_MAX.
15652         * m4/xalloc.m4 (gl_PREREQ_XALLOC): New macro.
15653         (gl_XALLOC): Invoke it.
15654
15655 2003-11-11  Bruno Haible  <bruno@clisp.org>
15656
15657         * lib/xsize.h (SIZE_MAX): Remove fallback definition.
15658         * lib/xalloc.h: Include limits.h. Assume SIZE_MAX and PTRDIFF_MAX are
15659         defined.
15660
15661 2003-11-10  Paul Eggert  <eggert@twinsun.com>
15662
15663         * lib/xalloc.h (xalloc_oversized): [! (defined PTRDIFF_MAX &&
15664         PTRDIFF_MAX < SIZE_MAX)]: Fix off-by-one error that would have
15665         rejected some allocations of exactly SIZE_MAX - 2 bytes.
15666         From Bruno Haible.
15667         [defined PTRDIFF_MAX && PTRDIFF_MAX < SIZE_MAX]: Use SIZE_MAX,
15668         not (size_t) -1, since it's defined here.
15669
15670 2003-11-09  Karl Berry  <karl@gnu.org>
15671
15672         * config/mkinstalldirs, depcomp, mdate-sh: update from automake.
15673
15674 2003-11-06  Paul Eggert  <eggert@twinsun.com>
15675
15676         * lib/xalloc.h [HAVE_STDINT_H]: Include <stdint.h>.
15677         (xalloc_oversized) [! (PTRDIFF_MAX < SIZE_MAX)]:
15678         Reject sizes of exactly SIZE_MAX bytes.
15679         * lib/xreadlink.c: Include "xalloc.h" before checking whether SIZE_MAX
15680         is defined, since "xalloc.h" now defines SIZE_MAX on modern hosts.
15681
15682 2003-11-05  Bruno Haible  <bruno@clisp.org>
15683
15684         * lib/xsize.h: Include limits.h, to avoid a possible collision with
15685         SIZE_MAX defined in <limits.h> on Solaris.
15686
15687 2003-11-04  Jim Meyering  <jim@meyering.net>
15688
15689         * modules/sysexits: Use the `$(VAR)' notation for AC_SUBST'd
15690         variable names, rather than @VAR@.
15691         * modules/poll: Likewise.
15692
15693 2003-11-04  Bruno Haible  <bruno@clisp.org>
15694
15695         * modules/xsize: New file.
15696         * modules/linebreak: Depend on xsize.
15697         * MODULES.html.sh (func_all_modules): Add xsize.
15698
15699 2003-11-04  Bruno Haible  <bruno@clisp.org>
15700
15701         * m4/xsize.m4: New file.
15702
15703 2003-11-04  Bruno Haible  <bruno@clisp.org>
15704
15705         * lib/xsize.h: New file.
15706         * lib/linebreak.c: Include xsize.h.
15707         (mbs_possible_linebreaks, mbs_width_linebreaks): Check malloc()
15708         argument for overflow.
15709         Suggested by Paul Eggert.
15710
15711 2003-11-03  Karl Berry  <karl@gnu.org>
15712
15713         * config/config.{guess,sub}: update from config.
15714
15715 2003-11-03  Jim Meyering  <jim@meyering.net>
15716
15717         * modules/userspec (lib_SOURCES): Add userspec.h.
15718         (Include): Add "userspec.h".
15719         Improve description.
15720
15721 2003-11-03  Jim Meyering  <jim@meyering.net>
15722
15723         * lib/userspec.c: Include "userspec.h".
15724         * lib/userspec.h: New file.
15725
15726 2003-11-03  Bruno Haible  <bruno@clisp.org>
15727
15728         * m4/wait-process.m4 (gl_WAIT_PROCESS): Also check for waitid.
15729
15730 2003-11-03  Bruno Haible  <bruno@clisp.org>
15731
15732         * lib/wait-process.c (wait_process): Use waitid with WNOWAIT if
15733         available, to avoid (extremely rare) race condition.
15734         Suggested by Paul Eggert.
15735
15736 2003-11-02  Karl Berry  <karl@gnu.org>
15737
15738         * config/srclist.txt (vasprintf.c): sync broken, sigh.
15739
15740 2003-10-31  Paul Eggert  <eggert@twinsun.com>
15741
15742         * lib/mountlist.h (struct mount_entry.me_type_malloced): New member.
15743         * lib/mountlist.c (SIZE_MAX): Define if not defined already.
15744         (read_filesystem_list): Set and use me_type_malloced.
15745         Use "sizeof *me" rather than "sizeof (struct mount_entry)" (or
15746         whatever the type happens to be), for brevity and consistency.
15747         Check for size calculation overflow on Alphas running OSF/1.
15748
15749 2003-10-31  Jim Meyering  <jim@meyering.net>
15750
15751         * lib/hash.c: Include "xalloc.h" for use of xalloc_oversized.
15752
15753         * lib/linebuffer.c: Include <string.h> for declaration of memset.
15754
15755 2003-10-30  Paul Eggert  <eggert@twinsun.com>
15756             Bruno Haible  <bruno@clisp.org>
15757
15758         * lib/vasprintf.c: Include <limits.h>, <stdlib.h>.
15759         (vasprintf): Fail if the resulting length doesn't fit in an 'int'.
15760
15761 2003-10-30  Paul Eggert  <eggert@cs.ucla.edu>
15762
15763         * m4/host-os.m4 (UTILS_HOST_OS): Change netbsd*-gnu pattern back to
15764         netbsd*-gnu*.  Suggested by Robert Millan.
15765
15766 2003-10-29  Paul Eggert  <eggert@twinsun.com>
15767
15768         * modules/group-member: Depend on stdbool.
15769
15770 2003-10-29  Paul Eggert  <eggert@twinsun.com>
15771
15772         * m4/xalloc.m4 (gl_XALLOC): Undo previous change.
15773
15774 2003-10-29  Paul Eggert  <eggert@twinsun.com>
15775
15776         * m4/host-os.m4 (UTILS_HOST_OS): Resurrect netbsd*-gnu.  Add comments
15777         to it, and to knetbsd*-gnu and kfreebsd*-gnu.  Remove the '*' from
15778         after the 'gnu' in these cases.  This fixes some bugs in the
15779         previous change, and is based on suggestions by Robert Millan.
15780
15781 2003-10-29  Paul Eggert  <eggert@twinsun.com>
15782
15783         * lib/xalloc.h (xalloc_oversized): Now a macro, not a function,
15784         so that it works even if SIZE_MAX < N.  Do not include <stdbool.h>;
15785         no longer needed.
15786         * lib/quotearg.c (quotearg_n_options): Use it.
15787         * lib/group-member.c: Include <stdbool.h>.
15788         (free_group_info): Arg is now const *; don't free arg.
15789         (get_group_info): Now returns bool and accepts struct group_info *,
15790         rather than returning a malloc'ed struct group_info *.
15791         All uses changed.  Check for overflow in internal size calculation.
15792
15793         * lib/getusershell.c (readname): Simplify the code by using x2nrealloc
15794         rather than xmalloc/xrealloc.
15795         * lib/linebuffer.c (initbuffer, readlinebuffer): Simplify the code by
15796         using x2realloc rather than xmalloc/xrealloc.  Also, fix a C
15797         conformance bug: the old code used a pointer after freeing the
15798         storage that it addressed.
15799         * lib/hash.c (hash_initialize): Simplify the code by using
15800         xalloc_oversized rather than doing it by hand.
15801         * lib/getgroups.c (getgroups): Don't use xrealloc, since we don't need
15802         the buffer preserved.  Use free and xmalloc instead.
15803         * lib/quotearg.c (quotearg_n_options): Likewise.
15804         Use a simpler test for size overflow.  Don't use xalloc_oversized
15805         because unsigned int might be wider than size_t (!); this suggests
15806         that we should switch from unsigned int to size_t for slot numbers.
15807
15808 2003-10-28  Paul Eggert  <eggert@twinsun.com>
15809
15810         * m4/host-os.m4 (UTILS_HOST_OS): Identify GNU/KFreeBSD and
15811         GNU/KNetBSD.  These implementations use glibc atop the FreeBSD and
15812         NetBSD kernels.  Requested by Richard Stallman.
15813
15814 2003-10-27  Paul Eggert  <eggert@twinsun.com>
15815
15816         * lib/exclude.c (new_exclude): Use xzalloc rather than xmalloc
15817         to allocate the returned structure.  Do not allocate a subarray,
15818         as x2nrealloc will do that.
15819         (add_exclude): Use x2nrealloc to reallocate ex->exclude,
15820         instead of xnrealloc.
15821         (add_exclude_file): Use x2realloc instead of malloc + xnrealloc.
15822
15823 2003-10-27  Bruno Haible  <bruno@clisp.org>
15824
15825         * lib/stdbool_.h: Better support for BeOS.
15826
15827 2003-10-26  Paul Eggert  <eggert@twinsun.com>
15828
15829         * m4/xalloc.m4 (gl_XALLOC): Requore AC_C_INLINE, since xalloc.h
15830         now uses inline.
15831
15832 2003-10-26  Paul Eggert  <eggert@twinsun.com>
15833
15834         * lib/xalloc.h (xalloc_oversized): New static inline function, for
15835         callers that want to do their own size-overflow checking.  Include
15836         <stdbool.h>, since xalloc_oversized returns bool.
15837         * lib/xalloc.c (array_size_overflow): Remove.  All callers changed
15838         to use xalloc_oversized.
15839
15840         Add two functions x2realloc, x2nrealloc, for programs that grow
15841         arrays dynamically by doubling their sizes.
15842         * lib/xalloc.h (x2realloc, x2nrealloc): New decls.
15843         * lib/xmalloc.c (x2nrealloc_inline, x2nrealloc, x2realloc):
15844         New functions.
15845
15846         Port to C99 semantics for 'inline' of external functions.
15847         Bug reported by Bruno Haible.
15848         * lib/xmalloc.c (xnmalloc_inline): New static inline function,
15849         with the old contents of xnmalloc.
15850         (xnmalloc, xmalloc): Use it.
15851         (xnrealloc_inline): New static inline function,
15852         with the old contents of xnrealloc.
15853         (xnrealloc, xrealloc): Use it.
15854
15855         * lib/alloc.c (alloca): xmalloc cannot return NULL, so don't test for
15856         that.
15857
15858 2003-10-26  Karl Berry  <karl@gnu.org>
15859
15860         * config/srclist.txt (COPYING.DOC): no longer available from
15861         /gd/gnuorg; don't know where the ultimate source is.
15862
15863 2003-10-25  Paul Eggert  <eggert@twinsun.com>
15864
15865         Fix several address-calculation bugs in the hash modules,
15866         plus some minor code cleanup.
15867
15868         * lib/hash.h: Include <stdbool.h>, for bool.
15869         * lib/hash.c: Don't include <stdbool.h>, since hash.h does it now.
15870         * lib/hash.h (Hash_hasher, hash_get_n_buckets, hash_get_n_buckets_used,
15871         hash_get_n_entries, hash_get_max_bucket_length,
15872         hash_get_entries, hash_do_for_each, hash_string, hash_initialize,
15873         hash_rehash): Use size_t rather than unsigned.
15874         * lib/hash.c (struct hash_table, hash_get_n_buckets,
15875         hash_get_n_buckets_used, hash_get_n_entries,
15876         hash_get_max_bucket_length, hash_table_ok, hash_print_statistics,
15877         hash_get_entries, hash_do_for_each, hash_string, is_prime,
15878         next_prime, hash_initialize, hash_rehash, hash_delete, hash_print):
15879         Likewise.
15880         (SIZE_MAX): Define if not defined.
15881         (hash_get_max_bucket_length, hash_table_ok, hash_lookup,
15882         hash_get_first, hash_get_next, hash_get_entries, hash_do_for_each,
15883         hash_print):
15884         Use const * when possible.
15885         (hash_string): Use (unsigned char) *P rather than *(unsigned char *) P.
15886         (check_tuning): Fix bug: if tuning parameters were very close to
15887         0 or 1, rounding errors could have caused subscript violations.
15888         (hash_initialize, allocate_entry, hash_print): Remove unnecessary cast.
15889         (hash_initialize): Add 'fail:' label
15890         to free table and return NULL, and use it to simplify code.
15891         Use calloc rather than clearing the storage ourself.
15892         (hash_initialize, hash_rehash): Check for arithmetic overflow in
15893         buffer size calculations.
15894         * lib/hash-pjw.h (hash_pjw): Use size_t, not unsigned.
15895         Include <stddef.h>, for size_t.
15896         * lib/hash-pjw.c (hash_pjw): Likewise.
15897         Switch to method described by Bruno Haible.
15898         Include <limits.h>, for CHAR_BIT.
15899         (SIZE_BITS): New macro.
15900
15901 2003-10-23  Paul Eggert  <eggert@twinsun.com>
15902
15903         * m4/getline.m4 (AM_FUNC_GETLINE):
15904         Don't include getndelim2.o twice into LIBOBJS; this breaks on some
15905         hosts.  Problem reported by Derek Robert Price in
15906         <http://mail.gnu.org/archive/html/bug-gnulib/2003-10/msg00092.html>.
15907         This patch can be withdrawn after Autoconf 2.58 is required for gnulib.
15908         * m4/getndelim2.m4 (gl_GETNDELIM2): Likewise.
15909
15910 2003-10-21  Paul Eggert  <eggert@twinsun.com>
15911
15912         * lib/getndelim2.c (getndelim2): When size calculation overflows,
15913         ceiling the allocation at NMAX bytes rather than silently
15914         discarding input bytes before NMAX is reached.  This makes
15915         a difference only if NMAX exceeds SIZE_MAX / 2.
15916
15917         * lib/obstack.c: Merge from glibc.
15918         [defined _LIBC]: Include <obstack.h>, not "obstack.h".
15919         Add libc_hidden_def (_obstack_newchunk).
15920         (_obstack_free) [! defined _LIBC]: Remove.
15921         [defined _LIBC]: Make a strong alias from obstack_free, rather than
15922         a clone of the function body.
15923         (fputs) [defined _LIBC && defined USE_IN_LIBIO]: Remove.
15924         [defined _LIBC && !defined USE_IN_LIBIO]: Include <libio/iolibio.h>.
15925
15926         * lib/obstack.h: Indenting cleanup, to make it easier to merge with
15927         glibc.
15928         (obstack_grow, obstack_grow0): Remove unnecessary parentheses around
15929         arg to memcpy.
15930
15931         * lib/obstack.h (obstack_1grow_fast): Properly parenthesize arg.
15932         (obstack_ptr_grow_fast, obstack_int_grow_fast):
15933         Don't use lvalue casts, as GCC plans to remove support for them
15934         in GCC 3.5.  Reported by Joseph S. Myers.  This bug
15935         was also present in the non-GCC version, indicating that this
15936         code had always been buggy and had never been widely used.
15937         (obstack_1grow, obstack_ptr_grow, obstack_int_grow, obstack_blank):
15938         Use the fast variant of each macro, rather than copying the
15939         definiens of the fast variant; that way, we'll be more likely to
15940         catch future bugs in the fast variants.
15941
15942 2003-10-20  Bruno Haible  <bruno@clisp.org>
15943
15944         * modules/wait-process: New file.
15945         * MODULES.html.sh (func_all_modules): Add wait-process.
15946
15947 2003-10-20  Bruno Haible  <bruno@clisp.org>
15948
15949         * m4/wait-process.m4: New file.
15950
15951 2003-10-20  Bruno Haible  <bruno@clisp.org>
15952
15953         * lib/wait-process.h: New file, from GNU gettext.
15954         * lib/wait-process.c: New file, from GNU gettext.
15955
15956 2003-10-19  Jim Meyering  <jim@meyering.net>
15957
15958         * lib/vasnprintf.c (vasnprintf): Work around losing snprintf on
15959         HPUX 10.20.
15960
15961 2003-10-18  Karl Berry  <karl@gnu.org>
15962
15963         * config/config.guess: update from config.
15964
15965 2003-10-16  Paul Eggert  <eggert@twinsun.com>
15966
15967         * lib/getgroups.c: Include <errno.h>, <stdlib.h>.
15968         (getgroups): First arg is int, not size_t.
15969         Don't let 'free' mangle errno.
15970
15971 2003-10-16  Paul Eggert  <eggert@twinsun.com>
15972
15973         * README: Mention that gnulib assumes that (foo *) NULL + 0 == NULL.
15974
15975 2003-10-16  Karl Berry  <karl@gnu.org>
15976
15977         * config/config.{guess,sub}: update from config.
15978
15979 2003-10-16  Jim Meyering  <jim@meyering.net>
15980
15981         * lib/xmalloc.c: Include <string.h>, for declarations of memset and
15982         memcpy.
15983
15984 2003-10-15  Paul Eggert  <eggert@twinsun.com>
15985
15986         * lib/exclude.c: Do not include <inttypes.h> or <stdint.h>.
15987         (SIZE_MAX): Remove.
15988         (new_exclude, add_exclude_file): Initial size no longer needs to
15989         be a power of 2.
15990         (add_exclude, add_exclude_file): Use xnrealloc instead of rolling
15991         our own address arithmetic overflow checking.
15992
15993         * lib/fnmatch.c (SIZE_MAX): Define if standard headers don't.
15994         (fnmatch): Do not alloca more than 2000 wide characters;
15995         instead, use malloc for large buffers.
15996         Check for address arithmetic overflow, and return -1
15997         with errno set to ENOMEM in that case.
15998         * lib/fnmatch_loop.c (ALLOCA_LIMIT): New macro.
15999         (NEW_PATTERN): Do not alloca more than 8000 bytes;
16000         instead, return -1.  Check for address arithmetic overflow.
16001
16002 2003-10-14  Paul Eggert  <eggert@twinsun.com>
16003
16004         Handle invalid suffixes and overflow independently, so that
16005         callers can treat them independently as needed.  Fix some bugs in
16006         suffix handling, e.g., "100k@" was not diagnosed as an invalid
16007         suffix for a human-readable blocksize.  The major caller-visible
16008         change is the addition of a new
16009         LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW enum value, indicating
16010         that both overflow and suffix chars were found.
16011
16012         * lib/human.c (humblock): Don't check separately for invalid suffix
16013         char; that is xstrtoumax's job (now that its bug is fixed).
16014         * lib/xstrtoimax.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM) [defined
16015         INTMAX_MAX]: New macros.
16016         * lib/xstrtol.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM, TYPE_MINIMUM,
16017         TYPE_MAXIMUM): New macros.
16018         (bkm_scale, bkm_scale_by_power): Return strtol_error, not int.
16019         (bkm_scale, bkm_scale_by_power, __xstrtol): Return maximal values
16020         if overflow occurs, as it's what __strtol does and it's more useful
16021         in practice.
16022         (__xstrtol): If __strtol reports some error other than ERANGE,
16023         reflect it to the caller as LONGINT_INVALID.  If it reports
16024         ERANGE, continue the rest of parsing, and report LONGINT_OVERFLOW
16025         | LONGINT_INVALID_SUFFIX_CHAR if both errors occur.
16026         * lib/xstrtol.h (LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW): New enum
16027         value.
16028         (_STRTOL_ERROR): Handle it.  Abort when given unknown error codes.
16029         * lib/xstrtoul.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM): New macros.
16030         * lib/xstrtoumax.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM)
16031         [defined UINTMAX_MAX]: New macros.
16032
16033 2003-10-14  Bruno Haible  <bruno@clisp.org>
16034
16035         * modules/fatal-signal: Add m4/sig_atomic_t.m4 to file list.
16036
16037 2003-10-14  Bruno Haible  <bruno@clisp.org>
16038
16039         * m4/sig_atomic_t: New file, from GNU gettext.
16040         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Require gt_TYPE_SIG_ATOMIC_T.
16041
16042 2003-10-14  Bruno Haible  <bruno@clisp.org>
16043
16044         * lib/fatal-signal.h: Improved comments. Suggested by Paul Eggert.
16045         * lib/fatal-signal.c: Use sig_atomic_t. Suggested by Paul Eggert.
16046         Also use volatile where needed.
16047
16048 2003-10-12  Paul Eggert  <eggert@twinsun.com>
16049
16050         * modules/xalloc: Do not depend on 'exit'.  Depend on 'stdbool'.
16051         Change maintainer from Bruno Haible to 'all'.
16052
16053 2003-10-12  Paul Eggert  <eggert@twinsun.com>
16054
16055         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Require AC_C_INLINE.
16056
16057 2003-10-12  Paul Eggert  <eggert@twinsun.com>
16058
16059         * lib/xalloc.h (xnmalloc, xzalloc, xnrealloc, xclone): New decls.
16060         (XMALLOC, XCALLOC, XREALLOC, XFREE, CCLONE, CLONE): Deprecate,
16061         and define in terms of the other primitives.
16062         * lib/xmalloc.c: Include stdbool.h; do not include exit.h.
16063         (SIZE_MAX): Define if not already defined.
16064         (array_size_overflow): New function.
16065         (xalloc_die): Abort instead of exiting if 'error' returns.
16066         (xnmalloc, xnrealloc, xzalloc, xclone): New functions.
16067         (xmalloc, xrealloc): Use them.
16068         (xcalloc): Check for address arithmetic overflow.
16069         * lib/xstrdup.c (xstrdup): Use xclone, since memcpy should be
16070         a bit faster than strcpy.
16071
16072 2003-10-10  Simon Josefsson  <jas@extundo.com>
16073
16074         * modules/argp (Depends-on): Add restrict and strcase.
16075
16076 2003-10-10  Simon Josefsson  <jas@extundo.com>
16077
16078         * m4/argp.m4: Add AC_C_INLINE.
16079
16080 2003-10-08  Paul Eggert  <eggert@twinsun.com>
16081
16082         Merge getpass from libc, plus a few fixes.
16083
16084         * lib/getpass.c (HAVE_STDIO_EXT) [_LIBC]: Define to 1.
16085         Include <stdbool.h>.
16086         Include <stdio_ext.h> if HAVE_STDIO_H, otherwise define
16087         __fsetlocking to empty.
16088         [_LIBC]: Do not include "getline.h" or "unlocked-io.h", but
16089         do include <bits/libc-lock.h>.
16090         Do not include <fcntl.h>; not needed.
16091         [_LIBC]: Include <wchar.h>.
16092         (NOTCANCEL_MODE): New macro.
16093         (flockfile, funlockfile) [_LIBC]: New macros.
16094         (__libc_cleanup_push, __libc_cleanup_pop, __getline, __tcgetattr)
16095         [!_LIBC]: New macros.
16096         (call_fclose): New function.
16097         (getpass): Use it.  Save tty stream separately; this simplifies the
16098         code and makes it more reliable if stdin happens to equal stdout.
16099         Invoke __fsetlocking on tty.
16100         Handle thread cancellation if needed.
16101         Namespace cleanup (use __tcgetattr, __getline).
16102         Use bool for Booleans.
16103         [USE_IN_LIBIO]: Handle wide streams.
16104         [!_LIBC]: Unconditionally do the fseek, since we don't know what
16105         stream might go where.
16106
16107         * lib/unlocked-io.h: Include <stdio.h>, so that the caller
16108         doesn't have to include <stdio.h> before us.
16109         (clearerr_unlocked, feof_unlocked, ferror_unlocked,
16110         fflush_unlocked, fgets_unlocked, fputc_unlocked, fputs_unlocked,
16111         fread_unlocked, fwrite_unlocked, getc_unlocked, getchar_unlocked,
16112         putc_unlocked, putchar_unlocked): Define to the unlocked counterpart
16113         if not declared, so that we can use getpass.c code from libc without
16114         rewriting it.
16115         (flockfile, ftrylockfile, funlockfile): New macros.
16116
16117 2003-10-08  Paul Eggert  <eggert@twinsun.com>
16118
16119         * modules/getpass: Depend on stdbool.
16120
16121 2003-10-08  Paul Eggert  <eggert@twinsun.com>
16122
16123         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for stdio_ext.h.
16124
16125 2003-10-07  Karl Berry  <karl@gnu.org>
16126
16127         * config/config.{guess,sub}: update from config.
16128
16129 2003-10-06  Jim Meyering  <jim@meyering.net>
16130             Bruno Haible  <bruno@clisp.org>
16131
16132         This lets translators provide better translations for the
16133         "Written by ..." part of --version output.
16134         * lib/version-etc.h: Include stdarg.h.
16135         (version_etc_copyright): Declare as readonly.
16136         (version_etc): Make this function variadic with a NULL-terminated list
16137         of author name strings.
16138         (version_etc_va): New declaration.
16139         * lib/version-etc.c: Include stdarg.h, stdlib.h.
16140         (version_etc_copyright): Declare as readonly.
16141         (version_etc_va): New function. Provide a different translatable string
16142         for each possible number of authors < 10. Abbreviate when there are 10
16143         authors or more.
16144         (version_etc): Make this function variadic. Call version_etc_va.
16145         Suggestion from Gary V. Vaughan.
16146
16147         * lib/long-options.h (parse_long_options): Change prototype: the
16148         authors string is moved to the end and becomes variadic.
16149         * lib/long-options.c: Include stdarg.h.
16150         (parse_long_options): Make this function variadic, too.
16151         Call version_etc_va, not version_etc.
16152
16153 2003-10-06  Bruno Haible  <bruno@clisp.org>
16154
16155         * modules/version-etc-2: Remove file.
16156         * MODULES.html.sh (func_all_modules): Remove version-etc-2.
16157
16158 2003-10-06  Bruno Haible  <bruno@clisp.org>
16159
16160         * modules/fatal-signal: New file.
16161         * MODULES.html.sh (func_all_modules): Add fatal-signal.
16162
16163 2003-10-06  Bruno Haible  <bruno@clisp.org>
16164
16165         * m4/fatal-signal.m4: New file.
16166         * m4/signalblocking.m4: New file, from GNU gettext.
16167
16168 2003-10-06  Bruno Haible  <bruno@clisp.org>
16169
16170         * lib/version-etc-2.h: Remove file.
16171         * lib/version-etc-2.c: Remove file.
16172
16173 2003-10-06  Bruno Haible  <bruno@clisp.org>
16174
16175         * lib/fatal-signal.h: New file, from GNU gettext.
16176         * lib/fatal-signal.c: New file, from GNU gettext.
16177
16178 2003-10-05  Paul Eggert  <eggert@twinsun.com>
16179
16180         * README: Rework advice for preventing empty .o files.
16181         Don't recommend ELIDE constructs.  Recommend <stddef.h>,
16182         not <sys/types.h>.
16183
16184 2003-10-04  Karl Berry  <karl@gnu.org>
16185
16186         * lib/argp*: update from libc.
16187
16188 2003-10-04  Karl Berry  <karl@gnu.org>
16189
16190         * config/config.{guess,sub}: update from config.
16191
16192 2003-10-02  Bruno Haible  <bruno@clisp.org>
16193
16194         * modules/lchown (Include): Add lchown.h.
16195         * modules/time_r (Include): Use "..." syntax.
16196         * modules/xgetdomainname (Include): Add xgetdomainname.h.
16197
16198 2003-10-01  Simon Josefsson  <jas@extundo.com>
16199
16200         * MODULES.html.sh (func_all_modules): Move gethostname from section
16201         'based on' to section 'lacking' POSIX:2001.
16202
16203 2003-10-01  Larry Jones  <lawrence.jones@eds.com>
16204
16205         * lib/getpass.c (getpass): Use a no-op fseek when switching from input
16206         to output mode on the same stream.
16207
16208 2003-09-29  Paul Eggert  <eggert@twinsun.com>
16209
16210         * lib/strftime.c (tm_diff) [! HAVE_TM_GMTOFF]:
16211         Fix arg typo in previous patch.
16212
16213 2003-09-28  Jim Meyering  <jim@meyering.net>
16214
16215         * lib/error.c: Correct cpp indentation.
16216
16217 2003-09-27  Paul Eggert  <eggert@twinsun.com>
16218
16219         * modules/free: New file.
16220
16221 2003-09-27  Paul Eggert  <eggert@twinsun.com>
16222
16223         * m4/free.m4: New file.
16224
16225 2003-09-27  Paul Eggert  <eggert@twinsun.com>
16226
16227         * lib/minmax.h (MIN, MAX)
16228         [__STDC__ && defined __GNUC__ && __GNUC__ >= 2]:
16229         Omit the special code that used __typeof__, since we worry that
16230         it could be more trouble than it's worth.  See:
16231         http://mail.gnu.org/archive/html/bug-gnulib/2003-01/msg00090.html
16232         http://mail.gnu.org/archive/html/bug-gnulib/2003-01/msg00095.html
16233
16234         * lib/free.c: New file.
16235
16236 2003-09-27  Oskar Liljeblad  <oskar@osk.mine.nu>
16237
16238         Trivial fixes to Makefile.am parts of module listings.
16239         * modules/strstr: Append strstr.h to lib_SOURCES.
16240         * modules/strcase: Likewise, for strcase.h.
16241
16242 2003-09-27  Karl Berry  <karl@gnu.org>
16243
16244         * config/mkinstalldirs: update from automake.
16245
16246 2003-09-26  Paul Eggert  <eggert@twinsun.com>
16247
16248         * lib/error.c (SIZE_MAX) [!defined SIZE_MAX]: Define.
16249         (error_tail): Do not loop, reallocating temporary buffer, since
16250         the output cannot contain more wide characters than the input
16251         contains bytes, the size must be big enough already.  This avoids
16252         one potential size overflow calculation.  Check for size overflow
16253         when calculating temporary buffer size.  Free temporary buffer
16254         when done, if it was allocated with malloc; this plugs a memory
16255         leak.  Remove casts from void * to pointers, that are no longer
16256         needed now that we're assuming C89 or better.
16257
16258         Merge error changes from glibc.
16259
16260         * lib/error.c, error.h: Update copyright notice header to match glibc.
16261         * lib/error.c [defined _LIBC]: Include <errno.h>, <bits/libc-lock.h>.
16262         (error, error_at_line) [defined _LIBC && defined __libc_ptf_call]:
16263         Disable cancellation while printing error.
16264         * lib/error.h: Prepend __ to parameter names.
16265
16266 2003-09-26  Jim Meyering  <jim@meyering.net>
16267
16268         * lib/error.c (error_tail): Move some declarations
16269         into inner scope where the local variables are used.
16270
16271 2003-09-26  Bruno Haible  <bruno@clisp.org>
16272
16273         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Add comments about the AIX
16274         stpncpy().
16275         Don't define stpncpy through config.h; it's now done through stpncpy.h.
16276
16277 2003-09-26  Bruno Haible  <bruno@clisp.org>
16278
16279         * lib/stpncpy.h (gnu_stpncpy): New declaration.
16280         (stpncpy): Define as alias for gnu_stpncpy.
16281         * lib/stpncpy.c [!_LIBC]: Define gnu_stpncpy, not stpncpy.
16282
16283 2003-09-25  Simon Josefsson  <jas@extundo.com>
16284
16285         * lib/xgetdomainname.h: New file.
16286         * lib/xgetdomainname.c: New file.
16287
16288 2003-09-25  Simon Josefsson  <jas@extundo.com>
16289             Bruno Haible  <bruno@clisp.org>
16290
16291         * modules/getdomainname: New file.
16292         * modules/xgetdomainname: New file.
16293         * MODULES.html.sh (func_all_modules): Add getdomainname,
16294         xgetdomainname.
16295
16296 2003-09-25  Simon Josefsson  <jas@extundo.com>
16297             Bruno Haible  <bruno@clisp.org>
16298
16299         * m4/getdomainname.m4: New file.
16300
16301 2003-09-25  Simon Josefsson  <jas@extundo.com>
16302             Bruno Haible  <bruno@clisp.org>
16303
16304         * lib/getdomainname.h: New file.
16305         * lib/getdomainname.c: New file.
16306
16307 2003-09-25  Karl Berry  <karl@gnu.org>
16308
16309         * lib/argp-fmtstream.c, argp-help.c: update from libc.
16310
16311 2003-09-25  Karl Berry  <karl@gnu.org>
16312
16313         * config/install-sh: update from automake.
16314
16315 2003-09-25  Bruno Haible  <bruno@clisp.org>
16316
16317         * modules/version-etc-2: New file, from modules/version-etc with
16318         modifications.
16319         * MODULES.html.sh (func_all_modules): Add version-etc-2.
16320
16321 2003-09-25  Bruno Haible  <bruno@clisp.org>
16322
16323         * lib/version-etc-2.h: New file, from version-etc.h with modifications.
16324         * lib/version-etc-2.c: New file, from version-etc.c with modifications.
16325
16326 2003-09-24  Simon Josefsson  <jas@extundo.com>
16327
16328         * modules/xgethostname: Add xgethostname.h.
16329
16330 2003-09-24  Paul Eggert  <eggert@twinsun.com>
16331
16332         * lib/linebuffer.c (freebuffer): Don't free the argument, just
16333         the buffer associated with the argument.  Bug reported by
16334         Simon Josefsson.
16335
16336 2003-09-24  Paul Eggert  <eggert@twinsun.com>
16337
16338         * README: Document assumptions that 'int' is at least 32 bits
16339         wide, that integer arithmetic is 2's complement without overflow,
16340         that there are no holes in integer values, that adding sizes of
16341         two nonoverlapping objects can't overflow, and that all-bits-zero
16342         yields scalar zero.  Fix spelling and capitalization typos.
16343
16344 2003-09-19  Karl Berry  <karl@gnu.org>
16345
16346         * lib/argp.h: update from libc.
16347
16348 2003-09-17  Paul Eggert  <eggert@twinsun.com>
16349
16350         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Call AC_BEFORE first,
16351         to avoid spurious warnings like "AC_RUN_IFELSE was called before
16352         gl_USE_SYSTEM_EXTENSIONS" from autoreconf.
16353
16354 2003-09-17  Paul Eggert  <eggert@twinsun.com>
16355
16356         * gnulib-tool: Use "test -h", not "test -L", for portability
16357         to Solaris 8 /bin/sh.  (This bug is fixed in Solaris 9.)
16358         (tags_regexp): Remove, since \| doesn't conform to POSIX.
16359         (sed_extract_prog): Issue s commands one-by-one, rather than
16360         using \| in one s command.
16361
16362 2003-09-16  Paul Eggert  <eggert@twinsun.com>
16363
16364         * lib/linebuffer.c (readlinebuffer): Return NULL immediately upon
16365         input error, instead of returning NULL the next time we are called
16366         (and therefore losing track of errno).
16367
16368 2003-09-16  Bruno Haible  <bruno@clisp.org>
16369
16370         * gnulib-tool (func_create_testdir): Warn about duplicated
16371         dependencies.
16372
16373 2003-09-15  Paul Eggert  <eggert@twinsun.com>
16374
16375         * modules/argmatch, modules/fatal, modules/obstack,
16376         modules/xalloc, modules/xgethostname: Sort dependencies by
16377         importance, not alphabetically.
16378
16379 2003-09-15  Paul Eggert  <eggert@twinsun.com>
16380
16381         * lib/getndelim2.c (getndelim2): Don't trash errno when a read
16382         fails, so that the caller gets the proper errno.
16383
16384         * lib/readutmp.c (read_utmp): Likewise.
16385         Check for fstat error.  Close stream and free storage
16386         when failing.
16387
16388 2003-09-14  Karl Berry  <karl@gnu.org>
16389
16390         * config/srclist.txt (strdup.c): disable for c89 changes.
16391
16392 2003-09-14  Jim Meyering  <jim@meyering.net>
16393
16394         * lib/getloadavg.c: Correct cpp indentation.
16395         * lib/strdup.c: Likewise.
16396         * lib/vasnprintf.c: Likewise.
16397
16398 2003-09-14  Bruno Haible  <bruno@clisp.org>
16399
16400         * modules/fwriteerror: New file.
16401         * MODULES.html.sh (func_all_modules): Add fwriteerror.
16402
16403 2003-09-14  Bruno Haible  <bruno@clisp.org>
16404
16405         * lib/fwriteerror.h: New file.
16406         * lib/fwriteerror.c: New file.
16407
16408 2003-09-12  Paul Eggert  <eggert@twinsun.com>
16409
16410         * modules/argmatch, modules/exitfail, modules/fatal, modules/obstack,
16411         modules/xgethostname, modules/xalloc: Depend on exit.
16412
16413 2003-09-12  Paul Eggert  <eggert@twinsun.com>
16414
16415         * m4/error.m4: Require AC_FUNC_STRERROR_R rather than invoking it.
16416
16417         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Require AC_AIX
16418         and AC_MINIX, too, so that their extensions are available.
16419
16420         * m4/prereq.m4 (jm_PREREQ_ADDEXT): Remove.  All uses removed.
16421         This macro has been superseded by gl_BACKUPFILE.
16422
16423         More patches to assume C89 or better.
16424
16425         * m4/error.m4 (gl_ERROR): Don't check for vprintf.
16426
16427         * m4/check-decl.m4 (jm_CHECK_DECLS): Include <string.h>, <stdlib.h>
16428         unconditionally.
16429         * m4/closeout.m4 (gl_CLOSEOUT): Don't check for stdlib.h.
16430         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER):
16431         Include <string.h>, <stdlib.h> unconditionally.
16432         * m4/lstat.m4 (gl_PREREQ_LSTAT): Don't check for stdlib.h, free.
16433         * m4/readdir.m4 (GL_FUNC_READDIR): Don't check for string.h.
16434         * m4/readutmp.m4 (gl_PREREQ_READUTMP): Don't check for standard C
16435         headers or for string.h.
16436         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Don't check for stdlib.h
16437         or strtoul.
16438
16439         * m4/mkstemp.m4 (jm_PREREQ_TEMPNAME): Do not require standard C
16440         headers.
16441         * m4/strdup.m4 (gl_PREREQ_STRDUP): Likewise.
16442         * m4/userspec.m4 (gl_USERSPEC): Likewise.
16443         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Likewise.
16444         * m4/xstrtod.m4 (gl_XSTRTOD): Likewise.
16445         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
16446         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't check for limits.h,
16447         memcpy, memset.
16448         (jm_FUNC_GNU_STRFTIME): Don't require standard C headers.
16449         * m4/strtod.m4 (gl_FUNC_STRTOD): Do not check for float.h.
16450         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Do not check for stdlib.h,
16451         strtol.
16452         * m4/strtol.m4 (gl_FUNC_STRTOL): Do not check for limits.h.
16453         * m4/userspec.m4 (gl_USERSPEC): Do not check for string.h.
16454         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Do not check for string.h, strtol,
16455         strtoul.
16456
16457 2003-09-12  Paul Eggert  <eggert@twinsun.com>
16458
16459         * lib/argmatch.c, fatal.c, xgethostname.c, xmalloc.c: Include exit.h.
16460         * lib/obstack.c [!defined _LIBC]: Likewise.
16461         * lib/argmatch.c (EXIT_FAILURE): Remove; now done by exit.h
16462         * lib/exitfail.c, fatal.c, xgethostname.c, xmalloc.c: Likewise.
16463         * lib/exitfail.c: Don't include stdlib.h; no longer needed.
16464
16465         More changes to assume C89 or better.
16466
16467         * lib/error.c (error_tail): Assume vprintf.
16468
16469         * lib/argmatch.c (getenv): Remove decl.
16470         * lib/progreloc.c (get_full_program_name): Define via prototype.
16471         * lib/setenv.c (clearenv): Likewise.
16472         * lib/stpncpy.c: Do not include <string.h> or <sys/types.h>; not
16473         needed.
16474         * lib/strdup.c: Include <stdlib.h>, <string.h> unconditionally.
16475         (malloc, memcpy): Remove decls.
16476         * lib/strftime.c (HAVE_LIMITS_H, STDC_HEADERS) [defined _LIBC]: Remove.
16477         (HAVE_MEMCPY) [defined emacs && !defined HAVE_BCOPY]: Remove.
16478         Include <limits.h>, <stddef.h>, <stdlib.h>, <string.h> unconditionally.
16479         (memcpy): Remove macro.
16480         (MEMCPY) [!defined COMPILE_WIDE]: Define to memcpy unconditionally.
16481         (__P): Remove.  All uses removed.
16482         (PTR): Remove.  All uses changed to void *.
16483         (CHAR_BIT, NULL): Remove.
16484         (spaces, zeros, memset_space, memset_zero)
16485         [!defined memset && !defined HAVE_MEMSET && !defined _LIBC]:
16486         Remove.
16487         (LOCALE_PARAM, LOCALE_PARAM_DECL): Remove.
16488         (memcpy_lowcase, memcpy_uppcase, tm_diff, iso_week_days):
16489         Define with prototype.
16490         Remove now-unnecessary prototype decl.
16491         (extra_args_spec): Assume ANSI C.  All uses changed.
16492         (extra_args_spec_iso): Remove.
16493         (my_strftime, emacs_strftimeu): Define via prototype.
16494         * lib/strtod.c: Include <float.h>, <stdlib.h>, <string.h>
16495         unconditionally.
16496         (DBL_MAX, DBL_MIN, HUGE_VAL, NULL): Remove decls.
16497         * lib/strtoimax.c: Include <stdlib.h> unconditionally.
16498         (strtoul, strtol): Remove decls.
16499         * lib/strtol.c (STDC_HEADERS, HAVE_LIMITS_H, NULL, ULONG_MAX,
16500         LONG_MAX): Remove.
16501         Include <limits.h>, <stddef.h>, <stdlib.h>, <string.h> unconditionally.
16502         (LOCALE_PARAM_DECL): Remove.  All uses changed to LOCALE_PARAM_PROTO.
16503         (LOCALE_PARAM_PROTO): New macro.
16504         (INTERNAL, INTERNAL1, WEAKNAME): Assume ANSI C, not K&R.
16505         (INTERNAL (strtol), strtol): Define with a prototype.
16506         (PARAMS): Remove.  All uses removed.
16507         * lib/tempname.c: Include <string.h> unconditionally.
16508         * lib/userspec.c: Include <stdlib.h>, <string.h> unconditionally.
16509         * lib/xgethostname.c (main): Define with a prototype.
16510         * lib/xmalloc.c: Include "xalloc.h" first, to check interface.
16511         Include <stdlib.h> unconditionally.
16512         (calloc, malloc, realloc, free): Remove decls.
16513         * lib/xstrtod.c: Include "xstrtod.h" first, to check interface.
16514         Include <stdlib.h> unconditionally.  Sort include file names.
16515         (strtod): Remove.
16516         (xstrtod): Define with a prototype.
16517         * lib/xstrtol.c: Include <stdlib.h>, <string.h> unconditionally.
16518         (strtol, strtoul): Remove decls.
16519
16520 2003-09-11  Paul Eggert  <eggert@twinsun.com>
16521
16522         More patches to assume C89 or better.
16523         * m4/strndup.m4 (gl_PREREQ_STRNDUP): Remove STDC_HEADERS check.
16524         * m4/strnlen.m4 (gl_PREREQ_STRNLEN): Don't check for memory.h,
16525         string.h, memchr, STDC_HEADERS.
16526
16527 2003-09-11  Paul Eggert  <eggert@twinsun.com>
16528
16529         * lib/strndup.c: Don't include <stdio.h>, <sys/types.h>.
16530         Include <stdlib.h>, <string.h> unconditionally.
16531         Remove now-unnecessary cast to char *.
16532         * lib/strnlen.c: Include <string.h> unconditionally.
16533         * lib/yesno.c (yesno): Define with a prototype.
16534
16535 2003-09-11  Bruno Haible  <bruno@clisp.org>
16536
16537         * config/srclist.txt (setenv.c, unsetenv.c): Disable for the moment.
16538
16539 2003-09-10  Jim Meyering  <jim@meyering.net>
16540
16541         * lib/error.c: Correct indentation of cpp directives.
16542
16543 2003-09-10  Bruno Haible  <bruno@clisp.org>
16544
16545         * m4/strcspn.m4 (gl_PREREQ_STRCSPN): Remove <string.h> check.
16546         * m4/strpbrk.m4 (gl_PREREQ_STRPBRK): Remove <string.h> check.
16547         * m4/strstr.m4 (gl_PREREQ_STRSTR): Remove <string.h> check.
16548         * m4/unicodeio.m4 (gl_UNICODEIO): Remove <string.h> check.
16549         * m4/setenv.m4 (gl_PREREQ_SETENV, gl_PREREQ_UNSETENV): Remove
16550         <stdlib.h> and <string.h> checks.
16551         * m4/xreadlink.m4 (gl_XREADLINK): Remove <stdlib.h> check.
16552         * m4/yesno.m4 (gl_YESNO): Remove <stdlib.h> check.
16553
16554 2003-09-10  Bruno Haible  <bruno@clisp.org>
16555
16556         * lib/strcspn.c: Include <string.h> unconditionally.
16557         * lib/strpbrk.c: Include <string.h> unconditionally.
16558         * lib/strstr.c: Include <string.h> unconditionally.
16559         * lib/unicodeio.c: Include <string.h> unconditionally.
16560         * lib/setenv.c: Include <stdlib.h> and <string.h> unconditionally.
16561         * lib/unsetenv.c: Likewise.
16562         * lib/xreadlink.c: Include <stdlib.h> unconditionally.
16563         * lib/yesno.c: Include <stdlib.h> unconditionally.
16564         (rpmatch): Add prototype.
16565
16566 2003-09-09  Paul Eggert  <eggert@twinsun.com>
16567
16568         More patches to assume C89 or better.
16569         * m4/getcwd.m4 (AC_FUNC_GETCWD_NULL): Don't check for stdlib.h.
16570         * m4/getopt.m4 (gl_GETOPT): Don't check for string.h.
16571         * m4/getugroups.m4 (gl_GETUGROUPS): Do not check for standard C headers
16572         or for string.h.
16573         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Do not check for
16574         stdlib.h.
16575         * m4/group-member.m4 (gl_PREREQ_GROUP_MEMBER): Do not require standard
16576         C headers.
16577         * m4/hard-locale.m4 (gl_HARD_LOCALE): Do not check for stdlib.h,
16578         string.h.
16579         * m4/hash.m4 (gl_HASH): Do not check for stdlib.h, malloc, free.
16580         * m4/human.m4 (gl_HUMAN): Do not check for stdlib.h, string.h, getenv.
16581         * m4/idcache.m4 (gl_IDCACHE): Do not check for standard C headers,
16582         or for string.h.
16583         * m4/long-options.m4 (gl_LONG_OPTIONS): Do not check for stdlib.h.
16584         * m4/makepath.m4 (gl_MAKEPATH): Do not check for string.h or standard
16585         C headers.
16586         * m4/md5.m4 (gl_MD5): Don't check for limits.h, standard C headers,
16587         memcpy.
16588         * m4/sha.m4 (gl_SHA): Don't check for standard Cheaders, memcpy.
16589         * m4/memchr.m4 (jm_PREREQ_MEMCHR): Don't check for limits.h, stdlib.h.
16590         * m4/memcmp.m4 (gl_PREREQ_MEMCMP): Don't check for string.h.
16591         * m4/memcoll.m4 (gl_MEMCOLL): Likewise.
16592         * m4/memrchr.c (gl_PREREQ_MEMRCHR): Don't check for limits.h.
16593         * m4/mkdir-slash.m4 (gl_PREREQ_MKDIR): Don't check for stdlib.h,
16594         string.h, free.
16595         * m4/mktime.m4 (gl_PREREQ_MKTIME): Don't check for standard C headers.
16596         * m4/modechange.m4 (gl_MODECHANGE): Don't check for standard C headers.
16597         * m4/mountlist.m4 (gl_PREREQ_MOUNTLIST_EXTRA): Don't check for standard
16598         C headers, or for string.h.
16599         * m4/obstack.m4 (gl_OBSTACK): Don't check for stddefe.h, string.h.
16600         (gl_PREREQ_OBSTACK): Don't check for stdlib.h.
16601         * m4/path-concat.m4 (gl_PATH_CONCAT): Don't check for standard C
16602         headers, memory.h, stdlib.h, string.h, strings.h.
16603         * m4/posixtm.m4 (gl_POSIXTM): Don't check for stdlib.h, string.h.
16604         * m4/posixver.m4 (gl_POSIXVER): Don't check for getenv.
16605         * m4/putenv.m4 (gl_PREREQ_PUTENV): Don't check for string.h, memcpy,
16606         strchr.
16607         * m4/readtokens.m4 (gl_READTOKENS): Don't check for standard C
16608         headers, memory.h, string.h.
16609         * m4/regex.m4 (jm_PREREQ_REGEX): Do not check for limits.h, string.h.
16610         * m4/rename.m4 (gl_PREREQ_RENAME): Do not check for stdlib.h, string.h,
16611         free.
16612         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Don't check for standard C
16613         headers.
16614         * m4/same.m4 (gl_SAME): Don't check for stdlib.h, string.h, free.
16615         * m4/save-cwd.m4 (gl_SAVE_CWD): Don't check for standard C headers.
16616         * m4/savedir.m4 (gl_SAVEDIR): Don't check for standard C headers.
16617         * m4/strchrnul.m4 (gl_PREREQ_STRCHRNUL): Don't check for string.h.
16618         * m4/xgetcwd.m4 (gl_XGETCWD): Don't check for stdlib.h.
16619
16620 2003-09-09  Paul Eggert  <eggert@twinsun.com>
16621
16622         More K&R removal.
16623
16624         * lib/acosl.c (main): Use a prototype.
16625         * lib/asinl.c, cosl.c, expl.c, frexpl.c, ldexpl.c, sinl.c,
16626         tanl.c: Likewise.
16627
16628         * lib/getloadavg.c (getloadavg, main): Define via prototypes.
16629
16630         * lib/getopt.h (struct option.name): Assume C89, and use 'const'.
16631         (getopt, etopt_long, getopt_long_only, _getopt_internal)
16632         [defined __GNU_LIBRARY__]: Assume C89, so we can always declare
16633         with a prototype.
16634         * lib/getopt.c (const): Remove macro.
16635         Include <string.h> unconditionally.
16636         (my_index): Remove; all uses changed to strchr.
16637         (strlen): Remove decl.
16638         (exchange): Remove forward decl; no longer needed.
16639         (exchange, _getopt_initialize, _getopt_internal, getopt, main):
16640         Define with prototype.
16641         * lib/getopt1.c (const): Remove macro.
16642         (getopt_long, getopt_long_only, main): Define with prototype.
16643
16644         * lib/getugroups.c: Include <string.h> unconditionally.
16645
16646         * lib/getusershell.c: Include <stdlib.h> unconditionally.
16647         (getusershell, setusershell, endusershell, readname, main):
16648         Define with prototypes.
16649
16650         * lib/group-member.c: Include group-member.h first.
16651         Include <stdlib.h> unconditionally.
16652
16653         * lib/hard-locale.c: Include hard-locale.h first.
16654         Include <stdlib.h>, <string.h> unconditionally.
16655
16656         * lib/hash.c (free, malloc): Remove decls.
16657         Include <stdlib.h> unconditionally.
16658
16659         * lib/human.c: Include <stdlib.h>, <string.h> unconditionally.
16660         (getenv): Do not declare.
16661
16662         * lib/idcache.c: Include <string.h> unconditionally.
16663
16664         * lib/long-options.c: Include long-options.h first, to test interface.
16665         Include <stdlib.h> unconditionally.
16666
16667         * lib/makepath.c: Include makepath.h first, to test interface.
16668         Include <stdlib.h> and <string.h> unconditionally.
16669
16670         * lib/linebuffer.c: Include <stdlib.h>.
16671         (free): Remove decl.
16672
16673         * lib/malloc.c: Include <stdlib.h>, for malloc; don't bother with
16674         stddef.h. rpl_malloc returns void *, not char *.
16675         * lib/realloc.c (rpl_realloc): Likewise.  Also, define with a
16676         prototype.
16677
16678         * lib/md5.h: Include <limits.h> unconditionally.
16679         (UINT_MAX_32_BITS): Don't worry about non-__STDC__ case.
16680         (__P): Remove; all uses removed.
16681         * lib/md5.c: Include "md5.h" first.
16682         (md5_init_ctx, md5_read_ctx, md5_finish_ctx, md5_stream,
16683         md5_buffer, md5_process_bytes, md5_process_block):
16684         Define with prototypes.
16685         * lib/sha.h (__P): Remove all uses.  (It wasn't defined??)
16686         * lib/sha.c: Include "sha.h" first.
16687         Include <stdlib.h>, <string.h> unconditionally.
16688
16689         * lib/memchr.c (__ptr_t): Remove; all uses changed to void *.
16690         * lib/memcmp.c (__ptr_t): Likewise.
16691         * lib/memrchr.c (__ptr_t): Likewise.
16692         * lib/memchr.c, memcmp.c, memcoll.c, memrchr.c:
16693         Include <string.h> unconditionally.
16694         * lib/memchr.c, memrchr.c: Include <limits.h> unconditionally.
16695         * lib/memchr.c: Include <stdlib.h> unconditionally.
16696         * lib/memchr.c (LONG_MAX): Remove.
16697         * lib/memrchr.c (LONG_MAX): Likewise.
16698         * lib/memchr.c (__memchr): Define via a prototype.
16699         * lib/memrchr.c (__memrchr): Likewise.
16700         * lib/memcmp.c (__P): Remove, and remove all uses.
16701         (memcmp_bytes, memcmp_common_alignment, memcmp_not_common_alignment):
16702         Remove forward decls; no longer needed.
16703         * lib/memcpy.c, memmove.c, memset.c: Include <stddef.h>.
16704         Use types required by C89 in prototype.
16705
16706         * lib/mkdir.c: Include <stdlib.h>, <string.h> unconditionally.
16707         * lib/savedir.c: Likewise.
16708         * lib/mkdir.c (free): Remove decl.
16709         * lib/rmdir.c (rmdir): Define with a prototype.
16710         * lib/savedir.c: Include savedir.h first, to test interface.
16711
16712         * lib/mktime.c (STDC_HEADERS): Remove.
16713         Include <stdlib.h>, <string.h> unconditionally.
16714
16715         * lib/modechange.c: Include <stdlib.h> unconditionally.
16716         (malloc): Remove decl.
16717
16718         * lib/mountlist.c: Include <stdlib.h>, <string.h> unconditionally.
16719         (free): Remove decl.
16720
16721         * lib/obstack.h (PTR_INT_TYPE) [!defined __PTRDIFF_TYPE__]:
16722         Define to ptrdiff_t, without bothering to check HAVE_STDDEF_H.
16723         (This type really should be intptr_t, but that's a C99ism.)
16724         (_obstack_memcpy): Remove: all uses changed to memcpy.
16725         Include <string.h> unconditionally.
16726         (struct obstack): Assume __STDC__ for types of members
16727         chunkfun, freefun, extra_arg.
16728         (_obstack_newchunk, _obstack_free, _obstack_begin, _obstack_begin_1,
16729         _obstack_memory_used, obstack_alloc_failed_handler, obstack_init,
16730         obstack_begin, obstack_specify_allocation,
16731         obstack_specify_allocation_with_arg, obstack_chunkfun,
16732         obstack_freefun, obstack_free) [! (defined __STDC__ && __STDC__)]:
16733         Remove unprototyped decls and the macros that use them.
16734         * lib/obstack.c (POINTER): Remove.  All uses changed to void *.
16735         (obstack_alloc_failed_handler, CALL_CHUNKFUN, CALL_FREEFUN,
16736         _obstack_begin, _obstack_begin_1, _obstack_allocated_p)
16737         (defined __STDC__ && __STDC__)]:
16738         Remove nonprototyped code.
16739         Include <stdlib.h> unconditionally.
16740         (_obstack_begin, _obstack_begin_1, _obstack_newchunk,
16741         _obstack_allocated_p, _obstack_free, obstack_free,
16742         _obstack_memory_used, print_and_abort):
16743         Define using prototypes.
16744         (obstack_1grow, obstack_1grow_fast, obstack_alloc, obstack_base,
16745         obstack_blank, obstack_blank_fast, obstack_copy, obstack_copy0,
16746         obstack_finish, obstack_grow, obstack_grow0, obstack_make_room,
16747         obstack_next_free, obstack_object_size, obstack_room) [0]:
16748         Remove unused, unprototyped code.
16749
16750         * lib/path-concat.c: Include <stdlib.h>, <string.h> unconditionally.
16751
16752         * lib/physmem.c (physmem_total, physmem_available, main): Define
16753         with prototypes.
16754
16755         * lib/posixtm.c: Include <stdlib.h>, <string.h> unconditionally.
16756         (main): Define with a prototype.
16757
16758         * lib/posixver.c (getenv): Remove decl.
16759
16760         * lib/putenv.c (malloc): Returns void *, not char *.
16761         Include <string.h> unconditionally.
16762         (strchr, memcpy, NULL): Do not define.
16763
16764         * lib/readtokens.c: Include readtokens.h first, to test interface.
16765         Include <stdlib.h>, <string.h> unconditionally.
16766         (init_tokenbuffer): Define with a prototype.
16767
16768         * lib/regex.c (PARAMS): Remove.  All uses removed.
16769         All uses of _RE_ARGS removed, too.
16770         Include <stddef.h>, <stdlib.h>, <string.h>, <limits.h>
16771         unconditionally.
16772         (bzero): Assume memset exists.
16773         (memcmp, memcpy, NULL): Remove.
16774         (SIGN_EXTEND_CHAR): Remove; all uses replaced by casts to signed
16775         char, or assignments to local vars of type signed char.
16776         (init_syntax_once, PREFIX(extract_number_and_incr),
16777         PREFIX(print_partial_compiled_pattern),
16778         PREFIX(print_compiled_pattern), PREFIX(print_double_string),
16779         convert_mbs_to_wcs, print_fastmap, re_set_syntax,
16780         PREFIX(regex_grow_registers), PREFIX(regex_compile),
16781         PREFIX(store_op1), PREFIX(store_op2), PREFIX(insert_op1),
16782         PREFIX(insert_op2), PREFIX(at_begline_loc_p),
16783         PREFIX(at_endline_loc_p), group_in_compile_stack, insert_space,
16784         wcs_compile_range, byte_compile_range, truncate_wchar,
16785         PREFIX(re_compile_fastmap), re_compile_fastmap, re_set_registers,
16786         re_search, re_search_2, PREFIX(re_search_2), re_match, re_match_2,
16787         count_mbs_length, wcs_re_match_2_internal,
16788         byte_re_match_2_internal, PREFIX(group_match_null_string_p),
16789         PREFIX(alt_match_null_string_p),
16790         PREFIX(common_op_match_null_string_p), PREFIX(bcmp_translate),
16791         re_compile_pattern, re_comp, re_exec, regcomp, regexec, regerror,
16792         regfree, PREFIX(extract_number)): Define with prototype.  Remove
16793         now-unnecessary declaration, if any.
16794         (byte_compile_range, PREFIX(regex_compile), re_comp, re_exec,
16795         regcomp, regexec):
16796         Remove now-unnecessary casts among pointer types.
16797         * lib/regex.h (_RE_ARGS): Remove.  All uses removed.
16798
16799         * lib/rename.c: Include <stdlib.h>, <string.h> unconditionally.
16800         (free): Remove decl.
16801
16802         * lib/rpmatch.c: Include <stdlib.h> unconditionally.
16803
16804         * lib/same.c: Include <stdlib.h>, <string.h> unconditionally.
16805         (free): Remove decl.
16806
16807         * lib/save-cwd.c: Include <stdlib.h> unconditionally.
16808         * lib/xgetcwd.c: Likewise.
16809
16810         * lib/stat.c: Include <stdlib.h>, <string.h> unconditionally.
16811         (free): Remove decl.
16812
16813         * lib/strchrnul.c (strchrnul): Define with a prototype.
16814         Fix bug: c_in was not converted to char before searching.
16815
16816         The following changes are not K&R related:
16817
16818         * lib/group-member.h: Include <sys/types.h>, so that this file is
16819         self-contained.
16820         * lib/makepath.h: Likewise.
16821
16822         * lib/getusershell.c (readname, default_index, line_size, readname):
16823         Use size_t, not int, for sizes.
16824         (readname): If the size overflows, report an error instead of
16825         looping forever.
16826
16827 2003-09-09  Paul Eggert  <eggert@twinsun.com>
16828
16829         * config/srclist.txt: Do not get getopt.h, getopt1.c, or regex.h from
16830         libc.
16831
16832 2003-09-09  Paul Eggert  <eggert@twinsun.com>
16833
16834         * README: New section: portability guidelines.
16835
16836 2003-09-09  Derek Robert Price  <derek@ximbiot.com>
16837
16838         * m4/getndelim2.m4 (gl_PREREQ_GETNDELIM2): Assume stdlib.h per the
16839         C89 spec.
16840
16841 2003-09-09  Derek Robert Price  <derek@ximbiot.com>
16842
16843         * lib/getndelim2.c: Assume stdlib.h per the C89 spec.
16844
16845 2003-09-08  Paul Eggert  <eggert@twinsun.com>
16846
16847         Assume C89 or better; remove K&R cruft.
16848         A few of these changes were first proposed by Derek Robert Price
16849         in <http://mail.gnu.org/archive/html/bug-gnulib/2003-07/msg00105.html>.
16850
16851         * lib/addext.c: Include <string.h> unconditionally.
16852         * lib/backupfile.c: Include <string.h>, <stdlib.h> unconditionally.
16853         Don't declare getenv or malloc.
16854
16855         * lib/alloca.c: Include <string.h>, <stdlib.h> unconditionally.
16856         (POINTER_TYPE, pointer): Remove; all uses changed to void *.
16857         (NULL): Remove.
16858         (find_stack_direction, alloca): Use prototypes.
16859
16860         * lib/atexit.c (atexit): Define using a prototype.
16861
16862         * lib/basename.c, dirname.c, stripslash.c:
16863         Include <string.h> unconditionally.
16864
16865         * lib/bcopy.c: Include <stddef.h>.
16866         (bcopy): Define with prototype, using 'const' and 'void' and 'size_t'.
16867
16868         * lib/canon-host.c: Include <stdlib.h>, <string.h> unconditionally.
16869
16870         * lib/error.h (error, error_at_line, error_print_progname)
16871         [! (defined (__STDC__) && __STDC__)]: Remove decls.
16872         * lib/error.c: Include error.h first, to check interface.
16873         Include <stdarg.h>, <stdlib.h>, <string.h> unconditionally.
16874         (VA_START): Remove; all uses changeed to va_start.
16875         (exit, strerror): Remove decls.
16876         (error_print_progname): Prototype uncondionally.
16877         Don't include <errno.h>; no longer needed.
16878         (private_strerror): Remove.
16879         (error_tail): Always define.
16880         (error, error_at_line): Assume C89 or better; always use prototypes.
16881         * lib/fatal.c: Include "fatal.h" first, to test interface.
16882         Include <stdarg.h>, <stdlib.h>, <string.h> unconditionally.
16883         (VA_START): Remove; all uses changed to va_start.
16884         [! (HAVE_VPRINTF || HAVE_DOPRNT || _LIBC)]: Remove support for
16885         this case.
16886         (exit): Remove decl.
16887         (fatal): Prototype unconditionally.  Assume va_start works.
16888         Abort at end, to pacify gcc.
16889
16890         * lib/euidaccess.c (main): Define with a prototype.
16891
16892         * lib/exclude.c: Include <stdlib.h>, <string.h> unconditionally.
16893
16894         * lib/exitfail.c: Include <stdlib.h> unconditionally.
16895
16896         * lib/fnmatch_.h (__P): Remove.  All uses changed to assume
16897         prototypes.
16898         * lib/fnmatch.c: Include fnmatch.h first, to test interface.
16899         Include <string.h>, <stddef.h>, <stdlib.h> unconditionally.
16900         (getenv): Remove decl.
16901         (fnmatch): Define using a prototype.
16902         * lib/fnmatch_loop.c (FCT): Remove forward decl; no longer needed.
16903         (FCT): Define using a prototype.
16904
16905         * lib/getdate.y: Include <stdlib.h>, <string.h> unconditionally.
16906
16907         * lib/gethostname.c: Include <stddef.h>.
16908         (gethostname): Define with prototype.  Length is size_t, not int.
16909
16910 2003-09-08  Paul Eggert  <eggert@twinsun.com>
16911
16912         Assume C89 or better; remove K&R cruft.
16913         * m4/alloca.m4 (gl_PREREQ_ALLOCA): Don't check for stdlib.h, string.h.
16914         * m4/backupfile.m4 (gl_BACKUPFILE): Don't check for stdlib.h,
16915         string.h, getenv, malloc.
16916         * m4/dirname.m4 (gl_DIRNAME): Don't check for string.h or C standard
16917         headers.
16918         * m4/canon-host.m4 (gl_CANON_HOST): Don't check for string.h, stdlib.h.
16919         * m4/error.m4 (jm_PREREQ_ERROR): Do not require STDC headers, and
16920         do not check for strerror.
16921         * m4/exclude.m4: Do not check for stdlib.h, string.h, strings.h.
16922         * m4/exitfail.m4 (gl_EXITFAIL): Do not check for stdlib.h.
16923         * m4/fatal.m4 (gl_FATAL): Do not require STDC headers, and
16924         do not check for doprnt or vprintf.
16925         * m4/fnmatch.m4 (gl_PREREQ_FNMATCH_EXTRA): Remove.  All uses removed.
16926         * m4/getdate.m4 (gl_GETDATE): Don't check for stdlib.h or string.h.
16927
16928 2003-09-08  Paul Eggert  <eggert@twinsun.com>
16929
16930         * lib/getversion.c: Remove; was migrated to backupfile.c in 1997.
16931         getversion.c should have been removed then, but was accidentally
16932         preserved.
16933
16934         * lib/utime.c [!HAVE_UTIMES_NULL]: Include <sys/stat.h>, <fcntl.h>.
16935         (utime_null): Fix typo: 'st' was sometimes called 'sb'.
16936
16937 2003-09-08  Karl Berry  <karl@gnu.org>
16938
16939         * config/config.sub, config.guess, srclistvars.sh: update from savannah
16940                 config, forget about prep.
16941
16942         * config/depcomp, missing: update from automake.
16943
16944 2003-09-07  Paul Eggert  <eggert@twinsun.com>
16945
16946         * modules/time_r: Depend on 'restrict'.  Fix from Simon Josefsson in
16947         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00028.html>.
16948
16949 2003-09-07  Paul Eggert  <eggert@twinsun.com>
16950
16951         * lib/time_r.c (gmtime_r, localtime_r): Fix silly typo: missing arg to
16952         copy_tm_result.  Bug reported by Simon Josefsson in
16953         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00028.html>.
16954
16955 2003-09-06  Paul Eggert  <eggert@twinsun.com>
16956
16957         * m4/time_r.m4: New file.
16958         * m4/mktime.m4 (gl_PREREQ_MKTIME): Remove check for limits.h.
16959         * m4/timegm.m4 (gl_FUNC_TIMEGM): Assume that timegm is buggy if mktime
16960         is. Check for timegm declaration.
16961         (gl_PREREQ_TIMEGM): Require gl_FUNC_MKTIME.
16962         Do not check for gmtime_r.
16963         Replace mktime if __mktime_internal does not exist and if mktime
16964         hasn't been replaced already.
16965
16966 2003-09-06  Paul Eggert  <eggert@twinsun.com>
16967
16968         * lib/time_r.c, lib/time_r.h: New files.
16969
16970         * lib/mktime.c (my_mktime_localtime_r): Remove; all uses changed to
16971         __localtime_r.
16972         (__localtime_r) [!defined _LIBC]: New macro.  Include <time_r.h>.
16973         (__mktime_internal) [!defined _LIBC]: Now extern, not static.
16974
16975         * lib/strftime.c (my_strftime_gmtime_r): Remove; all uses changed to
16976         __gmtime_r.
16977         (my_strftime_localtime_r): Remove; all uses changed to __localtime_r.
16978         (__gtime_r, __localtime_r) [!HAVE_TM_GMTOFF]: New macros.
16979         Include <time_r.h>.
16980
16981         * lib/timegm.c: Switch to glibc implementation, with the following
16982         changes:
16983         [defined HAVE_CONFIG_H]: Include <config.h>.
16984         [!defined _LIBC]: Include "timegm.h" rather than <time.h>.
16985         (__mktime_internal) [!defined _LIBC]: New decl.
16986         (__gmtime_r) [!defined _LIBC]: New macro and function.
16987         (timegm): Use a prototype, since gnulib assumes C89.
16988         Do not bother declaring tmp to be const, as it's not really usefu.
16989         * lib/timegm.h: Hoist "#include <time.h>" out of #ifdef.
16990         (timegm): Declare only if HAVE_DECL_TIMEGM.
16991
16992 2003-09-06  Paul Eggert  <eggert@twinsun.com>
16993
16994         * MODULES.html.sh (func_all_modules): Add time_r.
16995         * modules/time_r: New file.
16996         * modules/mktime, modules/strftime, modules/timegm: Depend on time_r.
16997         * modules/timegm: Depend on mktime.  Change maintainer to "all, glibc".
16998
16999 2003-09-03  Paul Eggert  <eggert@twinsun.com>
17000
17001         * lib/human.c (human_readable): Fix bug that rounded 10501 to 10k.
17002         Bug reported by Lute Kamstra in
17003         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00003.html>.
17004
17005         * lib/getdate.y (relative_time_table): Use tDAY_UNIT for "tomorrow",
17006         "yesterday", "today", and "now" rather than tMINUTE_UNIT.  Of
17007         course with correspondingly smaller numbers for tomorrow and
17008         yesterday.  From Tadayoshi Funaba.  Originally installed into
17009         sh-utils on 1999-08-07, but the patch got lost (I guess during the
17010         coreutils merge?).
17011
17012 2003-08-31  Simon Josefsson  <jas@extundo.com>
17013
17014         * modules/timegm: New file.
17015         * MODULES.html.sh (func_all_modules): Add timegm.
17016
17017 2003-08-31  Simon Josefsson  <jas@extundo.com>
17018
17019         * m4/timegm.m4: New file.
17020
17021 2003-08-31  Simon Josefsson  <jas@extundo.com>
17022
17023         * lib/timegm.h: New file.
17024         * lib/timegm.c: New file.  Based on
17025         wget-1.8.2/src/http.c:mktime_from_utc.
17026
17027 2003-08-31  Karl Berry  <karl@gnu.org>
17028
17029         * lib/argp.h: update from libc.
17030
17031 2003-08-28  Bruno Haible  <bruno@clisp.org>
17032
17033         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Remove AC_DEFINE of fnmatch here.
17034         This avoids havoc on compilers for which '#define fnmatch rpl_fnmatch'
17035         followed by '#define fnmatch fnmatch_posix' gives an error.
17036
17037 2003-08-28  Bruno Haible  <bruno@clisp.org>
17038
17039         * lib/binary-io.h: Undefine O_BINARY before defining it. This avoids a
17040         warning on QNX, which defines O_BINARY to 000000.
17041
17042 2003-08-27  Jim Meyering  <jim@meyering.net>
17043
17044         * m4/mkstemp.m4: Require that the system mkstemp be able to create
17045         70 temporary files, not just 30.  Tru64 V4.0F's mkstemp function
17046         would fail after 32.  Reported by Danny Levinson.  Details here:
17047         http://mail.gnu.org/archive/html/bug-coreutils/2003-08/msg00124.html
17048
17049 2003-08-24  Bruno Haible  <bruno@clisp.org>
17050
17051         * lib/binary-io.h: Include <stdio.h>, to avoid a compilation error when
17052         MSVC7 <stdio.h> is included later.
17053
17054 2003-08-22  Simon Josefsson  <jas@extundo.com>
17055
17056         * modules/strndup (Makefile.am): Add strndup.h to lib_SOURCES.
17057
17058 2003-08-20  Karl Berry  <karl@gnu.org>
17059
17060         * m4/lib-ld.m4: serial 1003 from gettext, no changes besides serial.
17061
17062 2003-08-20  Bruno Haible  <bruno@clisp.org>
17063
17064         * modules/progname: New file.
17065         * MODULES.html.sh (func_all_modules): Add progname.
17066
17067 2003-08-20  Bruno Haible  <bruno@clisp.org>
17068
17069         * lib/progname.h: New file, from GNU gettext.
17070         * lib/progname.c: New file, from GNU gettext.
17071         * lib/progreloc.c: New file, from GNU gettext.
17072
17073 2003-08-19  Jim Meyering  <jim@meyering.net>
17074
17075         * m4/lib-ld.m4: Revert yesterday's change, per Bruno's request here:
17076         http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00155.html
17077
17078 2003-08-19  Bruno Haible  <bruno@clisp.org>
17079
17080         * m4/xalloc.m4 (gl_PREREQ_XSTRDUP): Don't check for <string.h> any
17081         more.
17082
17083 2003-08-19  Bruno Haible  <bruno@clisp.org>
17084
17085         * lib/xstrdup.c: Assume <string.h> exists.
17086
17087 2003-08-18  Paul Eggert  <eggert@twinsun.com>
17088
17089         * modules/stdbool: Add BUILT_SOURCES.  Prefer $@ to target name
17090         in makefile rules.
17091
17092 2003-08-18  Jim Meyering  <jim@meyering.net>
17093
17094         * m4/getloadavg.m4: Use [\t ], not [ \t] (where \t is a literal TAB).
17095         * m4/lib-ld.m4: Likewise.
17096
17097 2003-08-18  Jim Meyering  <jim@meyering.net>
17098
17099         * lib/setenv.h: Indent nested cpp directive.
17100         * lib/vasnprintf.c: Remove trailing blanks.
17101
17102 2003-08-17  Simon Josefsson  <jas@extundo.com>
17103
17104         * modules/xstrndup: New file.
17105         * MODULES.html.sh (func_all_modules): Add xstrndup.
17106
17107 2003-08-17  Simon Josefsson  <jas@extundo.com>
17108
17109         * modules/argp: Fix autoconf macro name. Add more dependencies.
17110
17111 2003-08-17  Simon Josefsson  <jas@extundo.com>
17112
17113         * m4/xstrndup.m4: New file.
17114
17115 2003-08-17  Simon Josefsson  <jas@extundo.com>
17116
17117         * m4/argp.m4: New file.
17118
17119 2003-08-17  Simon Josefsson  <jas@extundo.com>
17120             Bruno Haible  <bruno@clisp.org>
17121
17122         * lib/xstrndup.h: New file.
17123         * lib/xstrndup.c: New file.
17124
17125 2003-08-17  Bruno Haible  <bruno@clisp.org>
17126
17127         * modules/strndup (Files, Include): Add lib/strndup.h.
17128
17129 2003-08-17  Bruno Haible  <bruno@clisp.org>
17130
17131         * modules/euidaccess (Files): Add lib/euidaccess.h.
17132
17133 2003-08-17  Bruno Haible  <bruno@clisp.org>
17134
17135         * lib/strndup.h: New file.
17136
17137 2003-08-17  Bruno Haible  <bruno@clisp.org>
17138
17139         * gnulib-tool (func_create_testdir): Handle gl_USE_SYSTEM_EXTENSIONS
17140         like AC_GNU_SOURCE.
17141         * modules/extensions (configure.ac): Comment out the invocation of
17142         gl_USE_SYSTEM_EXTENSIONS.
17143
17144 2003-08-16  Paul Eggert  <eggert@twinsun.com>
17145
17146         Merges from coreutils, etc.
17147         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Insert ':' to prevent a syntax
17148         error in gl_FUNC_MATCH.  This fixes a bug I introduced on 2003-05-28.
17149         * m4/readlink.m4 (gl_PREREQ_READLINK): Renamed from gl_PREREQ_READLINE,
17150         fixing a typo.
17151         * m4/host-os.m4 (UTILS_HOST_OS): Add GNU/NetBSD, GNU/FreeBSD.
17152         * m4/hash.m4 (gl_HASH): Use AM_STDBOOL_H, not AC_HEADER_STDBOOL.
17153
17154 2003-08-16  Paul Eggert  <eggert@twinsun.com>
17155
17156         Document merge from coreutils.
17157         * modules/alloca: Append $(ALLOCA_H) to BUILT_SOURCES.
17158         * modules/fnmatch: Append $(FNMATCH_H) to BUILT_SOURCES.
17159         * modules/utime: Add m4/utimes-null.m4.
17160
17161 2003-08-16  Paul Eggert  <eggert@twinsun.com>
17162
17163         * lib/regex.h, strdup.c, strtoll.c, strtoul.c: Do not normalize white
17164         space, undoing this 2003-08-12 change:
17165         <http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00080.html>
17166
17167 2003-08-16  Paul Eggert  <eggert@twinsun.com>
17168
17169         * config/srclist.txt: Get regex.h, strdup.c, strtoll.c,
17170         strtoul.c from libc, undoing this 2003-08-12 change:
17171         <http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00080.html>
17172
17173 2003-08-16  Jim Meyering  <jim@meyering.net>
17174
17175         Merges from coreutils.
17176         * m4/readdir.m4 (GL_FUNC_READDIR): Change name to have GL_ (not jm_)
17177         prefix.  Adjust cache variables similarly.  Create 500 rather than
17178         just 300 files, to exercise bug on Darwin6.5, too.
17179         * m4/perl.m4 (jm_PERL): Use $am_missing_run, not undefined
17180         $missing_dir.
17181         * m4/jm-winsz1.m4: Require AC_SYS_POSIX_TERMIOS, not
17182         AM_SYS_POSIX_TERMIOS.
17183         Reported by mkc@mathdogs.com.
17184         Also change use of $am_cv_sys_posix_termios
17185         to $ac_cv_sys_posix_termios.  Reported by Andreas Schwab.
17186         * m4/getgroups.m4 (jm_FUNC_GETGROUPS): Rewrite to use AC_FUNC_GETGROUPS
17187         and (if needed) to call AC_LIBOBJ and to set GETGROUPS_LIB.
17188         * m4/fsusage.m4 [__GLIBC__]: GNU libc's statvfs stats each mount point
17189         in /proc/mounts until it finds one with matching device number.  This
17190         is unnecessary when the FILE argument *is* a mount point.  No stat call
17191         is necessary in that case.  So, disable the statvfs-testing code on
17192         systems with GNU libc.  Reported by Andrei Gaponenko via Tim Waugh
17193         as RedHat bug# 84846.
17194         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size
17195         to 1MB, so as not to render systems with no stack size limit (e.g.,
17196         linux-2.2.x) unusable.  Suggestion and code from Bruno Haible.
17197         Include <unistd.h>.  On some systems,
17198         it is required for the definition of _SC_PAGESIZE.
17199
17200 2003-08-16  Jim Meyering  <jim@meyering.net>
17201
17202         Merge from coreutils.
17203         * lib/xstrtoimax.c: #else #if -> #elif.
17204         * lib/xstrtoumax.c: Likewise.
17205
17206 2003-08-16  Jim Meyering  <jim@meyering.net>
17207
17208         * m4/utimes.m4 (gl_FUNC_UTIMES): New file.
17209         * m4/utimes.m4: Removed.
17210         * m4/utimes-null.m4: Renamed from utimes.m4.
17211
17212         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size
17213         to 1MB, so as not to render systems with no stack size limit (e.g.,
17214         linux-2.2.x) unusable.  Suggestion and code from Bruno Haible.
17215         Include <unistd.h>.  On some systems,
17216         it is required for the definition of _SC_PAGESIZE.
17217
17218 2003-08-16  Jim Meyering  <jim@meyering.net>
17219         and Paul Eggert  <eggert@cs.ucla.edu>
17220
17221         Merges from coreutils, etc.
17222
17223         * m4/jm-macros.m4 (AC_LANG_SOURCE(C)): New macro, undefine, then define
17224         using the latest version from cvs.  This avoids problems with #line
17225         directives using a vendor (Sun) compiler.
17226         (jm_MACROS): Bump prerequisite from 2.52g to 2.57.
17227         Don't set GETGROUPS_LIB here; now it's
17228         done via getgroups.m4's wrapper function.
17229         AC_SUBST OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, and MAN here,
17230         rather than just in sh-util/configure.in, so that the
17231         now-shared-by-fileutils-and-textutils lib/Makefile.am are all the
17232         same.
17233         Use AC_CONFIG_LIBOBJ_DIR(lib) to tell the new
17234         AC_FUNC_GETLOADAVG where to find getloadavg.c.
17235         Require AC_FUNC_FTW, gt_INTTYPES_PRI, gl_CLOCK_TIME,
17236         UTILS_SYS_OPEN_MAX, GL_FUNC_GETCWD_PATH_MAX, GL_FUNC_READDIR,
17237         gl_FSUSAGE, gl_MOUNTLIST, AC_FUNC_CANONICALIZE_FILE_NAME.
17238         Remove code that is now done by the newly-required macros.
17239         Append $(EXEEXT) to DF_PROG.
17240         AC_LIBOBJ fchdir-stub if fchdir doesn't exist; similarly for fchown.
17241         Do not invoke or require the following here,
17242         since prereq.m4 or some gnulib .m4 now does this for us:
17243         gl_REGEX, UTILS_FUNC_MKDIR_TRAILING_SLASH, jm_BISON, gl_FUNC_MKTIME,
17244         jm_FUNC_LSTAT, jm_FUNC_STAT, jm_FUNC_REALLOC, jm_FUNC_MALLOC,
17245         jm_FUNC_NANOSLEEP, jm_FUNC_READDIR, jm_FUNC_MEMCMP,
17246         jm_FUNC_GLIBC_UNLOCKED_IO, AC_FUNC_FNMATCH_GNU, jm_FUNC_PUTENV,
17247         jm_AC_PREREQ_XSTRTOUMAX, jm_AC_PREREQ_XSTRTOIMAX,
17248         AC_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, AC_FUNC_VPRINTF,
17249         vb_FUNC_RENAME, UTILS_FUNC_MKSTEP, jm_FUNC_UTIME, AM_FUNC_GETLINE,
17250         AC_FUNC_OBSTACK.
17251         Do not replace the following functions, as this is now the job
17252         of some gnulib .m4: strcasecmp, strncasecmp, dup2, gethostname,
17253         getusershell, sig2str, strcspn, stpcpy, strstr, strtol, strtoul
17254         strpbrk, euidaccess, memcmp, rmdir, rpmatch, strndup, strverscmp,
17255         atexit getpass, strdup, getpagesize.
17256         Replace 'raise'.
17257         Do not check for the following functions, as this is now the job
17258         of some gnulib .m4: bcopy, canonicalize_file_name, fchdir, ftime,
17259         getcwd, getmntinfo, resolvepath.  But check for sysctl, setreuid,
17260         setregid.
17261         (jm_CHECK_ALL_HEADERS): Do not check for fenv.h.
17262         Check for sys/sysctl.h.
17263         (jm_CHECK_ALL_TYPES): Do not require AC_STRUCT_TM, AC_STRUCT_TIMEZONE,
17264         jm_CHECK_TYPE_STRUCT_TIMESPEC.  Invoke gt_TYPE_SSIZE_T instead
17265         of checking for ssize_t ourselves.
17266
17267         * m4/prereq.m4 (jm_PREREQ): Don't invoke macros; AC_REQUIRE them.
17268         Require every macro that gnulib/modules/* suggests for us.
17269         (jm_PREREQ_ADDEXT): New macro.
17270         (jm_PREREQ_STAT): Check for 'struct statfs' on Ultrix 4.4.
17271         Require jm_AC_TYPE_LONG_LONG instead of invoking it.
17272
17273         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): New macro.
17274         (gl_PHYSMEM): Use it.
17275         Also check for `table' function.
17276         Check for new headers and functions.
17277         Add check for sys/sysmp.h.
17278         With suggestions from Kaveh Ghazi.
17279         Ignore headers that are present but cannot be compiled.  This
17280         avoids spurious warnings on Solaris 9 sparc with Forte Developer 7
17281         C 5.4.
17282
17283 2003-08-15  Paul Eggert  <eggert@twinsun.com>
17284
17285         Document merge from coreutils.
17286         * modules/userspec: Depend on posixver.
17287         * modules/strftime: Depend on tzset.
17288
17289 2003-08-15  Paul Eggert  <eggert@twinsun.com>
17290
17291         * lib/config.charset, ref-add.sin, ref-del.sin: Use three spaces,
17292         rather than tab, after '#' in shell-script copyright notices.
17293         Suggested by Bruno Haible.
17294
17295 2003-08-15  Paul Eggert  <eggert@twinsun.com>
17296
17297         * config/srclist-update: Use three spaces, rather than tab, after '#'
17298         in shell-script copyright notices.  Suggested by Bruno Haible.
17299         Remove unnecessary parenthesization in regular expression.
17300
17301 2003-08-15  Jim Meyering  <jim@meyering.net>
17302
17303         Merge from coreutils.
17304         * lib/xgethostname.c: Include <stdlib.h>.
17305         (xghostname): Don't exit for anything other than memory-related
17306         failure; just return NULL.
17307         * lib/userspec.c: Include "posixver.h".
17308         (parse_user_spec): Accept `.' as a separator only
17309         in pre-POSIX-200112 mode.
17310         * lib/strtoimax.c: Use #elif rather than #else #if.
17311         * lib/strftime.c (my_strftime) [!_LIBC && HAVE_TZNAME && HAVE_TZSET]:
17312         Remove function, now that we can rely on a working tzset function.
17313         [!_LIBC]: Ensure that the required autoconf test has been run.
17314         [!defined _NL_CURRENT && HAVE_STRFTIME]:
17315         Use underlying_strftime for %r.
17316         * lib/sha.c: Merge in some clean-up and optimization changes from
17317         glibc.
17318         * lib/sha.c (sha_stream) [BLOCKSIZE]: Move definition to top of file.
17319         Ensure that it is a multiple of 64.
17320         Rearrange loop exit tests so as to avoid performing an
17321         additional fread after encountering an error or EOF.
17322         * lib/realloc.c: Update copyright date.
17323
17324 2003-08-15  Jim Meyering  <jim@meyering.net>
17325         and Paul Eggert  <eggert@twinsun.com>
17326
17327         Merge from coreutils.
17328         * lib/readutmp.h (HAVE_UTMPX_H): Undef if struct utmp has the ut_exit
17329         member but strut utmpx does not.  Needed for AIX 4.3.3.
17330         (UT_EXIT_E_TERMINATION, UT_EXIT_E_EXIT): Define.
17331
17332 2003-08-15  Jim Meyering  <jim@meyering.net>
17333         and Paul Eggert  <eggert@cs.ucla.edu>
17334
17335         Merges from coreutils, etc.
17336         * m4/strftime.m4 (_jm_STRFTIME_PREREQS):
17337         Require gl_FUNC_TZSET_CLOBBER.
17338         * m4/readutmp.m4 (gl_READUTMP): Check for ut_exit.ut_exit,
17339         ut_exit.e_exit, ut_exit.ut_termination, and ut_exit.e_termination
17340         members.
17341
17342 2003-08-14  Paul Eggert  <eggert@twinsun.com>
17343
17344         Help the merge from coreutils.
17345         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): New macro.
17346         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Use it.
17347         * m4/tzset.m4: Use it too.
17348
17349 2003-08-14  Paul Eggert  <eggert@twinsun.com>
17350
17351         * modules/tzset: New file.
17352
17353 2003-08-14  Jim Meyering  <jim@meyering.net>
17354
17355         Merges from coreutils.
17356         * modules/fnmatch: Use the `$(FNMATCH_H)' notation for AC_REPLACED
17357         variable names, rather than @FNMATCH_H@.
17358         * modules/alloca: Likewise for $(ALLOCA_H).
17359
17360         * modules/fnmatch (fnmatch.h): Use `$@' in the commands, in place of
17361         the three copies of the literal target, `fnmatch.h'.
17362         * modules/alloca (alloca.h): Likewise.
17363
17364 2003-08-14  Jim Meyering  <jim@meyering.net>
17365
17366         Merge from coreutils.
17367         * m4/tzset.m4: New file.
17368         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Move the
17369         MOUNTED_VMOUNT test to precede the MOUNTED_GETMNTENT1 tests, since
17370         otherwise, AIX 5.1 systems would end up using the latter.
17371         MOUNTED_GETMNTENT1 support is inadequate on such systems: 1) detecting
17372         whether a file system is remote doesn't work  2) the MOUNTED_VMOUNT
17373         code reports the HOSTNAME:/MOUNT_POINT, while the MOUNTED_GETMNTENT1
17374         code reports merely /MOUNT_POINT.  Reported by Mike Jetzer.
17375
17376 2003-08-14  Jim Meyering  <jim@meyering.net>
17377
17378         Merge from coreutils.
17379         * lib/obstack.h: Whitespace changes.
17380         * lib/mountlist.c: Remove anachronistic casts of xmalloc, xrealloc,
17381         and xcalloc return values.
17382         (read_filesystem_list) [MOUNTED_GETFSSTAT]:
17383         Use MNT_NOWAIT, rather than MNT_WAIT.  Otherwise, `df DIR' could
17384         hang on OSF/1 5.1 for DIR on both local and remote file systems.
17385         Reported by (and fix confirmed by) Nelson H. F. Beebe.
17386         (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
17387         error from mntctl.
17388         Use mntctl's return value to drive the entry-processing loop, since
17389         we can't rely on the value of the vmt_length member in the last
17390         entry.  On some systems doing so could result in exhausting
17391         virtual memory.  Based in part on a patch from Mike Jetzer.
17392
17393 2003-08-14  Jim Meyering  <jim@meyering.net>
17394         and Paul Eggert  <eggert@twinsun.com>
17395
17396         Merges from coreutils, plus other fixes.
17397         * lib/physmem.c: Merge in portability changes from gcc/libiberty
17398         to support AIX, IRIX, Tru64, and Windows.  See the ChangeLog there
17399         for credits and details.  Thanks to Kaveh Ghazi for helping
17400         to keep these files in sync.
17401         (ARRAY_SIZE): Define it.
17402         (physmem_total, physmem_available): Add comments. From Kaveh Ghazi.
17403         * lib/memcasecmp.c: Remove unnecessary parentheses after 'defined'.
17404         (memcasecmp): Don't assume size_t fits in unsigned int.
17405         Remove casts and duplicate code.
17406         * lib/md5.c: Include <string.h> and <stdlib.h> unconditionally.
17407         (memcpy): Remove definition.
17408         Merge in some clean-up and optimization changes from glibc.
17409         [BLOCKSIZE]: Move definition to top of file.
17410         Ensure that it is a multiple of 64.
17411         Rearrange loop exit tests so as to avoid performing an
17412         additional fread after encountering an error or EOF.
17413         * lib/md5.h (md5_uintptr): Define.
17414         * lib/makepath.c (CLEANUP_CWD): Report an error if we failed to
17415         return to the initial working directory.  Preserve errno
17416         for caller.
17417         * lib/idcache.c: Include "xalloc.h".
17418         (xmalloc, xrealloc): Remove decls.
17419         (getuser): Remove casts no longer required in C89.
17420         * lib/human.c: Include stdio.h, for sprintf.
17421         * lib/group-member.c: Include "xalloc.h".
17422         (xmalloc, xrealloc): Remove decls.
17423         (get_group_info): Remove casts no longer required in C89.
17424         * lib/getusershell.c (readname): Remove casts no longer required in
17425         C89.
17426         * lib/gettimeofday.c (rpl_gmtime, rpl_tzset): New functions.
17427         * lib/getline.c: Whitespace fix, from coreutils.
17428
17429 2003-08-13  Paul Eggert  <eggert@twinsun.com>
17430
17431         * m4/exclude.m4 (gl_EXCLUDE): Require AC_C_INLINE, AC_HEADER_STDC.
17432         Check for isascii.
17433
17434         * m4/gettext.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, lib-link.m4,
17435         lib-prefix.m4, longdouble.m4, po.m4, progtest.m4, signed.m4:
17436         Undo previous (whitespace-only) change.
17437
17438 2003-08-13  Paul Eggert  <eggert@twinsun.com>
17439
17440         * lib/exclude.c: Include <ctype.h>
17441         (IN_CTYPE_DOMAIN): New macro.
17442         (is_space): New fn.
17443         (add_exclude_file): If LINE_END is a space, ignore trailing spaces
17444         and empty lines.
17445
17446         * lib/argp-help.c, argp-parse.c, config.charset, getopt.h:
17447         Undo previous (whitespace-only) change.
17448
17449 2003-08-13  Paul Eggert  <eggert@twinsun.com>
17450
17451         * config/srclist-update: Change update back to the old behavior,
17452         leaving whitespace alone.  Use one 'sed' command rather than a
17453         pipeline.
17454         (fixlicense): Now a variable, not a function.
17455         (remove_trailing_blanks): Remove.
17456         (fixfile): Don't invoke unexpand or cat, or remove trailing blanks.
17457         * config/config.guess, config.sub, install-sh, missing, texinfo.tex:
17458         Undo previous (whitespace-only) change.
17459
17460 2003-08-12  Paul Eggert  <eggert@twinsun.com>
17461
17462         Merge from coreutils.
17463         * modules/euidaccess: Add lib_SOURCES, include for new
17464         file euidaccess.h
17465
17466 2003-08-12  Paul Eggert  <eggert@twinsun.com>
17467
17468         * m4/gettext.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, lib-link.m4,
17469         lib-prefix.m4, longdouble.m4, po.m4, progtest.m4, signed.m4:
17470         Normalize leading white space and remove trailing white space.
17471
17472         Merge from coreutils
17473         * m4/euidaccess.m4 (gl_FUNC_EUIDACCESS): Check for euidaccess decl.
17474
17475         * m4/lib-ld.m4, lib-link.m4, lib-prefix.m4: Regenerate from gettext
17476         0.12.1.  These files are now being upgraded automatically by
17477         ../config/srclist-update.
17478
17479 2003-08-12  Paul Eggert  <eggert@twinsun.com>
17480
17481         * lib/argp-help.c, argp-parse.c, config.charset, getopt.h:
17482         Normalize leading white space and remove trailing white space.
17483         * lib/ref-add.sin, ref-del.sin: Use '#' before empty line in copyright
17484         notice, as per ../config/srclist-update.
17485
17486         Merge from coreutils.
17487         * lib/euidaccess.h: New file.
17488         * lib/euidaccess.c: Include it.
17489         * lib/.cppi-disable: Add printf-args.h, printf-parse.h, stdbool_.h,
17490         vasnprintf.h, vasprintf.h.  Remove strdup.c, gettext.h.
17491         * lib/regex.h, strdup.c, strtoll.c, strtoul.c: Normalize white space.
17492
17493 2003-08-12  Paul Eggert  <eggert@twinsun.com>
17494
17495         * config/srclist-update: Add copyright notice.
17496         (remove_id_lines, remove_trailing_blanks): New constants.
17497         (fixfile): Use them to normalize spacing a bit in copied files.
17498         * config/config.guess, config.sub, install-sh, missing, texinfo.tex:
17499         Normalize leading white space and remove trailing white space.
17500
17501         * config/texinfo.tex: Sync with texinfo.
17502
17503         * config/srclist.txt: Don't get regex.h, strdup.c, strtoll.c,
17504         strtoul.c from libc, to merge coreutils whitespace changes.
17505
17506         * config/srclist.txt: Get the following m4 files from gettext:
17507         codeset.m4, gettext.m4, glibc21.m4, iconv.m4, intdiv0.m4,
17508         inttypes-pri.m4, lcmessage.m4, lib-ld.m4, lib-link.m4, lib-prefix.m4,
17509         longdouble.m4, nls.m4, po.m4, progtest.m4, signed.m4, wchar_t.m4,
17510         wint_t.m4.
17511
17512 2003-08-12  Karl Berry  <karl@gnu.org>
17513
17514         * config/srclist.txt: can't sync vasnprintf.c any more, changes have
17515         been made.
17516
17517 2003-08-11  Paul Eggert  <eggert@twinsun.com>
17518
17519         * modules/gnu-source, m4/gnu-source.m4:
17520         Remove; we're assuming Autoconf 2.54 or later now.
17521         Suggested by Bruno Haible.
17522         * MODULES.html.sh (func_all_modules): Remove gnu-source.
17523
17524 2003-08-11  Bruno Haible  <bruno@clisp.org>
17525
17526         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Also check for wcslen.
17527
17528 2003-08-11  Bruno Haible  <bruno@clisp.org>
17529
17530         * lib/vasnprintf.c (local_wcslen): New function, for Solaris 2.5.1.
17531         (vasnprintf): Use it instead of wcslen.
17532
17533 2003-08-11  Bruno Haible  <bruno@clisp.org>
17534
17535         * lib/stdbool_.h (_Bool): Undo last change; instead use a negative enum
17536         value to ensure that _Bool promotes to int. Use #define for _Bool when
17537         using the Solaris C compiler. Adds comments suggested by Paul Eggert.
17538
17539 2003-08-10  Karl Berry  <karl@gnu.org>
17540
17541         * lib/regex.h: update from libc (whitespace fix).
17542
17543 2003-08-09  Paul Eggert  <eggert@twinsun.com>
17544
17545         Merge some files from coreutils.  These changes were
17546         originally made by Jim Meyering.
17547         * lib/acl.c: Include <sys/types.h> before <sys/stat.h>;
17548         many older Unixes require this.
17549         * lib/alloca.c (alloca): Remove cast to argument of free;
17550         no longer needed in C89.
17551         * lib/alloca_.h, regex.h: Fix white space to match
17552         what GNU indent does.
17553
17554 2003-08-09  Paul Eggert  <eggert@twinsun.com>
17555
17556         * m4/regex.m4 (jm_INCLUDED_REGEX): Change "\201" to "\371";
17557         apparently Emacs's Unicode mode got confused before my 2003-08-05
17558         checkin.
17559
17560 2003-08-08  Paul Eggert  <eggert@twinsun.com>
17561
17562         * m4/extensions.m4: New file.
17563         * m4/timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC):
17564         Require gl_USE_SYSTEM_EXTENSIONS.
17565         * m4/unlocked-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO):
17566         Require gl_USE_SYSTEM_EXTENSIONS rather than AC_GNU_SOURCE.
17567
17568 2003-08-08  Paul Eggert  <eggert@twinsun.com>
17569
17570         * MODULES.html.sh (func_all_modules): Add extensions, gnu-source.
17571         * modules/extensions, modules/gnu-source: New files.
17572         * modules/timespec, modules/unlocked-io: Depend on extensions.
17573
17574 2003-08-07  Paul Eggert  <eggert@twinsun.com>
17575
17576         * modules/restrict: New file.
17577         * MODULES.html.sh (func_all_modules): Add restrict.
17578         * modules/regex: Depend on restrict.
17579
17580 2003-08-07  Paul Eggert  <eggert@twinsun.com>
17581
17582         * m4/restrict.m4: New file.
17583         * m4/regex.m4 (jm_PREREQ_REGEX): Add gl_C_RESTRICT.
17584
17585 2003-08-07  Bruno Haible  <bruno@clisp.org>
17586
17587         * modules/getndelim2 (Makefile.am): Add the files to EXTRA_DIST, not
17588         lib_SOURCES, because getndelim2.m4 now uses AC_LIBOBJ(getndelim2).
17589
17590 2003-08-07  Bruno Haible  <bruno@clisp.org>
17591
17592         * m4/getndelim2.m4 (gl_GETNDELIM2): Use AC_LIBOBJ(getndelim2). This
17593         makes the module 'getndelim2' compatible with the module 'getline'.
17594
17595 2003-08-05  Paul Eggert  <eggert@twinsun.com>
17596
17597         * m4/regex.m4 (jm_INCLUDED_REGEX): Replace a single non-ASCII
17598         byte with "\201" to avoid glitches when editing that source file
17599         with multi-gnome-terminal.
17600
17601 2003-08-05  Paul Eggert  <eggert@twinsun.com>
17602
17603         * lib/bumpalloc.h: Remove.
17604
17605 2003-08-05  Paul Eggert  <eggert@twinsun.com>
17606
17607         * MODULES.html.sh (func_all_modules): Remove bumpalloc.
17608         * modules/bumpalloc: Remove.
17609
17610 2003-08-04  Paul Eggert  <eggert@twinsun.com>
17611
17612         * lib/getloadavg.c: Change copyright notice and spacing to conform to
17613         GNU coding style.
17614
17615         Merge from coreutils.
17616         * lib/error.c [!USE_IN_LIBIO]: Omit this case; assume USE_IN_LIBIO is
17617         1. From glibc.
17618         * lib/getdate.y (date): Also accept dates like May-23-2003; suggestion
17619         from Karl Berry, implemented by Jim Meyering.
17620         * lib/getgroups.c: Include "xalloc.h" instead of declaring xalloc fns;
17621         from Dmitry V. Levin.
17622         Remove anachronistic cast of xrealloc.
17623         * lib/fnmatch_.h (__const): Remove.  Use 'const'.
17624         * lib/fnmatch_loop.c (NEW_PATTERN): Cast alloca return value to proper
17625         type. Otherwise, it wouldn't compile with at least /bin/cc on
17626         ymp-cray-unicos9.0.2.X.
17627         Combine two mostly-identical uses of alloca into one.
17628         Thanks to the Cray-Cyber project for access to a Cray Y-MP.
17629
17630 2003-08-04  Dave Love  <d.love@dl.ac.uk>
17631
17632         [From Emacs.]
17633
17634         * lib/getloadavg.c: Check `__unix' as well as `unix'.  Use #ifdef, not
17635         #if.  Check HAVE_LIBKSTAT as well as LOAD_AVE_TYPE.  Check
17636         F_SETFD, not FD_SETFD.  Use HAVE_STRUCT_NLIST_N_UN_N_NAME, not
17637         obsolete NLIST_NAME_UNION.
17638         [__GNU__]: Undef BSD and FSCALE.
17639         [!NLIST_STRUCT]: Remove conditional definition of NLIST_STRUCT.
17640
17641 2003-08-03  Paul Eggert  <eggert@twinsun.com>
17642
17643         * lib/stdbool_.h (_Bool): Make it signed char, instead of
17644         an enum type, so that it's guaranteed to promote to int.  See:
17645         <http://mail.gnu.org/archive/html/bug-gnulib/2003-07/msg00124.html>
17646
17647 2003-08-03  Karl Berry  <karl@gnu.org>
17648
17649         * config/depcomp: update from automake.
17650
17651 2003-07-31  Paul Eggert  <eggert@twinsun.com>
17652
17653         * lib/strerror.c: Include config.h, limits.h.  Declare sprintf.
17654         (strerror): Don't assume that a printable int fits in 14 bytes.
17655
17656 2003-07-31  Bruno Haible  <bruno@clisp.org>
17657
17658         * modules/getpass-gnu: New file.
17659         * MODULES.html.sh (func_all_modules): Add getpass-gnu.
17660
17661 2003-07-31  Bruno Haible  <bruno@clisp.org>
17662
17663         * m4/getpass.m4 (gl_FUNC_GETPASS_GNU): New macro.
17664
17665 2003-07-24  Karl Berry  <karl@gnu.org>
17666
17667         * config/missing: update from automake.
17668
17669 2003-07-24  Derek Robert Price  <derek@ximbiot.com>
17670             Bruno Haible  <bruno@clisp.org>
17671
17672         * lib/getline.h (getline, getdelim): Change return type to ssize_t.
17673         * lib/getline.c (getline, getdelim): Likewise.
17674         Remove _GNU_SOURCE define; now it's defined in config.h through
17675         m4/getline.m4.
17676
17677 2003-07-23  Karl Berry  <karl@gnu.org>
17678
17679         * config/config.sub: update from prep.
17680
17681 2003-07-22  Paul Eggert  <eggert@twinsun.com>
17682
17683         * modules/xalloc (Depends-on): Add exitfail.
17684         * modules/xmemcoll: Likewise.
17685
17686 2003-07-22  Paul Eggert  <eggert@twinsun.com>
17687
17688         * lib/xalloc.h (XCALLOC, XREALLOC, CCLONE): Fix under- and
17689         over-parenthesization in macros.
17690
17691         Sync with coreutils.
17692
17693         * lib/xalloc.h (XMALLOC, XCALLOC, XREALLOC): Remove casts not
17694         required by C99.
17695
17696         Use `exit_failure' for xalloc and xmemcoll instead of their own
17697         private exit-failure variables.
17698         * lib/xalloc.h (xalloc_exit_failure): Remove.
17699         * lib/xmalloc.c: Likewise.  Include exitfail.h.
17700         (xalloc_die): Use exit_failure instead of xalloc_exit_failure.
17701         * lib/xmemcoll.h (xmemcoll_exit_failure): Remove.
17702         * lib/xmemcoll.c: Likewise.  Include exitfail.h.
17703         (xmemcoll): Use exit_failure instead of xalloc_exit_failure.
17704
17705 2003-07-20  Jim Meyering  <jim@meyering.net>
17706
17707         * modules/closeout (Depends-on): Add exitfail.
17708         Suggestion from Bruno Haible.
17709
17710 2003-07-19  Karl Berry  <karl@gnu.org>
17711
17712         * config/config.sub: update from prep.
17713
17714 2003-07-18  Paul Eggert  <eggert@twinsun.com>
17715
17716         * lib/closeout.h (close_stdout_set_status, close_stdout_status):
17717         Remove.
17718         * lib/closeout.c: Likewise.  Include "closeout.h" right after config.h,
17719         to test that it can stand by itself.  Include "exitfail.h".
17720         Clients should set exit_failure instead.
17721         (EXIT_FAILURE): Remove; no longer needed.  Do not include <stdlib.h>.
17722
17723 2003-07-18  Bruno Haible  <bruno@clisp.org>
17724
17725         * modules/getndelim2: New file.
17726         * modules/getline: Share files with module getndelim2.
17727         * modules/getnline: Depend on getndelim2 instead of sharing files with
17728         it. Add getnline.c to lib_SOURCES.
17729         * MODULES.html.sh (func_all_modules): Add getndelim2.
17730
17731 2003-07-18  Bruno Haible  <bruno@clisp.org>
17732
17733         * m4/getndelim2.m4: New file.
17734         * m4/getline.m4 (AM_FUNC_GETLINE): Add AC_LIBOBJ of getndelim2.c and
17735         invoke gl_PREREQ_GETNDELIM2.
17736         (gl_PREREQ_GETLINE): Drop AC_HEADER_STDC, now done by
17737         gl_PREREQ_GETNDELIM2.
17738         * m4/getnline.m4 (gl_GETNLINE): Drop AC_HEADER_STDC, now done by
17739         gl_GETNDELIM2.
17740
17741 2003-07-18  Bruno Haible  <bruno@clisp.org>
17742
17743         * lib/getndelim2.h: New file.
17744         * lib/getndelim2.c: Make into a module of its own. Include config.h,
17745         getndelim2.h.
17746         (getndelim2): Make non-static. Change return type to ssize_t.
17747         * lib/getline.h: Change argument names.
17748         * lib/getline.c: Include getndelim2.h instead of getndelim2.c.
17749         * lib/getnline.c: Include getndelim2.h.
17750
17751 2003-07-18  Andreas Schwab  <schwab@suse.de>
17752
17753         * lib/memcoll.c (memcoll) [!HAVE_STRCOLL]: Clear errno.
17754
17755 2003-07-17  Karl Berry  <karl@gnu.org>
17756
17757         * config/config.sub: update from prep.
17758
17759 2003-07-17  Bruno Haible  <bruno@clisp.org>
17760
17761         * modules/getnline: New file.
17762         * modules/getline: Add lib/getndelim2.c to source file list.
17763         * MODULES.html.sh (func_all_modules): Add getnline.
17764
17765 2003-07-17  Bruno Haible  <bruno@clisp.org>
17766
17767         * m4/getnline.m4: New file.
17768
17769 2003-07-17  Bruno Haible  <bruno@clisp.org>
17770
17771         * m4/Makefile.am.in: Remove file.
17772         * m4/Makefile.am: Remove file.
17773         * m4/Makefile.in: Remove file.
17774
17775 2003-07-17  Bruno Haible  <bruno@clisp.org>
17776
17777         * lib/getnline.h: New file.
17778         * lib/getnline.c: New file.
17779         * lib/getndelim2.c: New file, extracted from getline.c.
17780         (getndelim2): Renamed from getdelim2, with added nmax argument.
17781         * lib/getline.c: Include getndelim2.c.
17782         (getdelim2): Moved out to getndelim2.c.
17783         (getline, getdelim): Update.
17784
17785 2003-07-17  Bruno Haible  <bruno@clisp.org>
17786
17787         * lib/Makefile.am: Remove file.
17788         * lib/Makefile.in: Remove file.
17789
17790 2003-07-17  Bruno Haible  <bruno@clisp.org>
17791
17792         * configure.in: Remove file.
17793         * Makefile.in: Remove file.
17794
17795 2003-07-17  Bruno Haible  <bruno@clisp.org>
17796
17797         * MODULES.html.sh: Put the </BODY> right before </HTML>.
17798
17799 2003-07-16  Karl Berry  <karl@gnu.org>
17800
17801         * config/srclist-update: was running fixlicense twice, which caused
17802                 texinfo.tex to be nullified for some reason.  Simplify,
17803                 $gplsrc is no longer needed as far as I can see?
17804
17805 2003-07-16  Jim Meyering  <jim@meyering.net>
17806
17807         * modules/save-cwd: Depend on xgetcwd.  From Derek Price.
17808
17809 2003-07-15  Paul Eggert  <eggert@twinsun.com>
17810
17811         * config/srclist.txt: Get the following files from gettext-runtime/intl
17812         instead: config.charset, localcharset.c, localcharset.h, ref-add.sin,
17813         ref-del.sin.  From Bruno Haible.
17814         * config/srclist-update (fixfile): Change grep pattern again, since the
17815         previous fix didn't work (there was another trailing $).  Use
17816         '[$]' to escape the $s.
17817
17818 2003-07-15  Karl Berry  <karl@gnu.org>
17819
17820         * lib/vasnprintf.c: update from gettext.
17821
17822 2003-07-15  Karl Berry  <karl@gnu.org>
17823
17824         * config/srclist-update (fixfile): Change grep pattern, since 'Id'
17825         gets expanded when surrounded by '$'.
17826
17827 2003-07-15  Jim Meyering  <jim@meyering.net>
17828
17829         * modules/save-cwd: Don't depend on error.  From Derek Price.
17830
17831 2003-07-15  Jim Meyering  <jim@meyering.net>
17832
17833         * lib/makepath.c (make_path): Enclose diagnostic in _(...).
17834
17835 2003-07-14  Simon Josefsson  <jas@extundo.com>
17836
17837         * modules/mempcpy: New file.
17838         * MODULES.html.sh (func_all_modules): Add mempcpy.
17839
17840 2003-07-14  Simon Josefsson  <jas@extundo.com>
17841
17842         * m4/mempcpy.m4: New file.
17843
17844 2003-07-14  Simon Josefsson  <jas@extundo.com>
17845
17846         * lib/mempcpy.h: New file.
17847         * lib/mempcpy.c: New file.
17848
17849 2003-07-14  Paul Eggert  <eggert@twinsun.com>
17850
17851         * modules/getdate, modules/posixtm: Depend on mktime.
17852
17853 2003-07-14  Paul Eggert  <eggert@twinsun.com>
17854
17855         * lib/ceill.c, expl.c, floorl.c, frexpl.c, ldexpl.c, mathl.h,
17856         sincosl.c, sqrtl.c, trigl.c, trigl.h, poll.c, poll_.h, mkstemp.c,
17857         unicodeio.c, unicodeio.h, unlocked-io.h:
17858         Switch from LGPL to GPL.
17859
17860 2003-07-14  Paul Eggert  <eggert@twinsun.com>
17861
17862         * lib/asnprintf.c, asprintf.c, config.charset, gettext.h,
17863         localcharset.c, localcharset.h, mkdtemp.c, printf-args.c,
17864         printf-args.h, printf-parse.c, printf-parse.h, ref-add.sin,
17865         ref-del.sin, setenv.c, unsetenv.c, vasnprintf.c, vasnprintf.h,
17866         vasprintf.c, vasprintf.h: Regenerate.  These files are now being
17867         updated automatically by ../config/srclist-update.  This changes
17868         their license from LPGL to GPL.
17869
17870 2003-07-14  Paul Eggert  <eggert@twinsun.com>
17871
17872         * config/srclist.txt: Add tons more gettext files.  $GETTEXT is now
17873         assumed to refer to the root of the most recent stable gettext version.
17874         * config/srclistvars.sh: Add defaults for eggert.
17875         * config/srclist-update: Convert LGPL to GPL in shell scripts, too.
17876         Match "This program" as well as "The program".  This is needed
17877         for gettext.
17878
17879 2003-07-14  Jim Meyering  <jim@meyering.net>
17880
17881         Don't emit diagnostics.  Let callers do that.
17882         * lib/save-cwd.c: Don't include "error.h".
17883         (save_cwd): Don't call error.  Ensure that errno is valid
17884         when returning nonzero.
17885
17886         * lib/save-cwd.h (restore_cwd): Update prototype.
17887         * lib/save-cwd.c (restore_cwd): Remove two parameters.
17888         Simplify.  Don't call error upon failure.  Let callers do that.
17889         (save_cwd): Mention that Irix 5.3 has the same problem as SunOS 4
17890         when auditing is enabled.  But don't bother updating the #if.
17891
17892 2003-07-11  Alexandre Duret-Lutz  <adl@gnu.org>
17893
17894         * lib/obstack.h (__INT_TO_PTR): Revert change of 2003-03-13;
17895         it breaks C++ compilation.
17896         [!__GNUC__ || !__STDC__] (obstack_finish): Cast result to void*.
17897
17898 2003-07-10  Simon Josefsson  <jas@extundo.com>
17899
17900         * modules/strchrnul (Makefile.am): Add strchrnul.h.
17901
17902 2003-07-10  Jim Meyering  <jim@meyering.net>
17903
17904         * m4/clock_time.m4: Remove trailing blank.
17905         * m4/intmax_t.m4: Likewise.
17906
17907 2003-07-10  Jim Meyering  <jim@meyering.net>
17908
17909         * lib/vasnprintf.c: Remove trailing blanks.
17910         Make cpp indentation consistent.
17911
17912 2003-07-09  Paul Eggert  <eggert@twinsun.com>
17913
17914         * lib/alloca_.h, euidaccess.c, getpass.c, memrchr.c, obstack.h,
17915         posixver.c, strftime.c, strnlen.c, strverscmp.c:
17916         Switch from LGPL to GPL.
17917
17918 2003-07-09  Paul Eggert  <eggert@twinsun.com>
17919
17920         * config/srclist.txt: Sort sublists.  Add
17921         $LIBCSRC/sysdeps/generic/strtoul.c. In comments, add more libc files
17922         that differ from gnulib for one reason or another; we'd like this list
17923         to be smaller but for now let's document what we have.
17924
17925 2003-07-08  Paul Eggert  <eggert@twinsun.com>
17926
17927         * config/srclist-update: Port to POSIX 1003.1-2001 hosts by avoiding
17928         the use of GNU extensions.  Change "x=`eval echo $x`" to the shorter
17929         and sweeter "eval x=$x".
17930         * config/srclist.txt: Get lib/argp* from glibc.
17931
17932 2003-07-07  Paul Eggert  <eggert@twinsun.com>
17933
17934         * lib/mktime.c: Fix some boundary cases and remove need for floating
17935         point.
17936
17937         Issue a compile-time diagnostic if time_t is floating point, or if
17938         two's complement arithmetic is not in effect, or if arithmetic
17939         right shift does not propagate the sign.  These assumptions were
17940         all in the original code but they weren't checked.
17941
17942         (TIME_T_MIDPOINT, verify): New macros.
17943         (__isleap): Remove; it has integer overflow problems.
17944         (leapyear): New function, without those problems.
17945         (ydhms_tm_diff): Remove; splitting into two parts.
17946         (ydhms_diff): New function, containing the arithmetic part of
17947         the old ydhms_tm_diff function.  Issue a compile-time
17948         diagnostic if we are not using C99 integer division.
17949         Avoid casts when possible.
17950         (guess_time_tm): New function, containing the checking part of
17951         the old ydhms_tm_diff function.  Return the new value, rather than
17952         the difference between it and the old.  Accept a new argument T
17953         so that *T specifies the old value.  Check for overflow in the result.
17954
17955         (__mktime_internal): Use a time_t offset, not a long int offset.
17956         This undoes the 2003-06-04 change, which is no longer needed now
17957         that we have better overflow checking.
17958         (localtime_offset): Likewise.
17959
17960         (__mktime_internal): Avoid harmful overflow on hosts where time_t
17961         and long are 64-bit but int is only 32-bit.
17962         (ydhms_diff): Use long int to store year1 and yday1.
17963         Issue a compile-time diagnostic if long int is not wide enough.
17964
17965         (__mktime_internal): Use long int to store adjusted year and yday.
17966         Use plain C rather than preprocessor commands, if that doesn't
17967         affect efficiency.
17968         Check for overflow (and try to repair) after each probe
17969         rather than checking only at the very end.  This avoids some bugs
17970         (e.g., southern hemisphere, behind GMT, and GMT offset at minimum time
17971         does not equal GMT offset at maximum time).
17972         Use integer to check for overflow rather than floating point; this
17973         is more portable to non-IEEE hosts, and is a tad faster.
17974         When we detect that we are oscillating between two values,
17975         don't check whether tm_isdst has the requested value, since
17976         we already know the answer.  When tm_isdst has the wrong value,
17977         use a different heuristic to find the right one, based on the
17978         extreme values actually observed in practice in tz2003a,
17979         rather than the (overly optimistic) "previous 3 calendar quarters".
17980
17981         (not_equal_tm, print_tm, check_result): Use "const T" rather than
17982         "T const" to accommodate glibc style.
17983         (check_result): Use less-confusing report format.  "long" -> "long int.
17984         (main): Likewise.
17985         Don't loop if the iteration overflows time_t.
17986         Allow a negative step in the iteration.
17987
17988 2003-07-06  Karl Berry  <karl@gnu.org>
17989
17990         * config/depcomp: update from automake.
17991         * config/config.sub: update from prep.
17992
17993 2003-07-03  Karl Berry  <karl@gnu.org>
17994
17995         * config/config.guess: update from prep.
17996
17997 2003-07-01  Paul Eggert  <eggert@twinsun.com>
17998
17999         * m4/xreadlink.m4 (gl_XREADLINK): Don't check for sys/types.h, since
18000         xreadlink.c now includes it unconditionally.
18001
18002 2003-07-01  Paul Eggert  <eggert@twinsun.com>
18003
18004         * lib/xreadlink.c: Include <sys/types.h> unconditionally, instead of
18005         having it depend on HAVE_SYS_TYPES_H.
18006
18007 2003-07-01  Bruno Haible  <bruno@clisp.org>
18008
18009         * m4/ssize_t.m4 (gt_TYPE_SSIZE_T): Don't include <unistd.h>.
18010         <sys/types.h> should be sufficient.
18011         Reported by Paul Eggert.
18012
18013 2003-06-26  Karl Berry  <karl@gnu.org>
18014
18015         * config/depcomp: update from automake.
18016
18017 2003-06-26  Bruno Haible  <bruno@clisp.org>
18018
18019         * modules/human: Depend on module stdbool.
18020
18021 2003-06-25  Bruno Haible  <bruno@clisp.org>
18022
18023         * modules/readlink: New file.
18024         * modules/xreadlink: Depend on it.
18025         * MODULES.html.sh (func_all_modules): Add readlink.
18026
18027 2003-06-25  Bruno Haible  <bruno@clisp.org>
18028
18029         * m4/readlink.m4: New file.
18030
18031 2003-06-25  Bruno Haible  <bruno@clisp.org>
18032
18033         * lib/readlink.c: New file.
18034
18035 2003-06-22  Karl Berry  <karl@gnu.org>
18036
18037         * config/srclist.txt: update mkinstalldirs from automake.
18038         * config/mkinstalldirs: update.
18039
18040 2003-06-22  Bruno Haible  <bruno@clisp.org>
18041
18042         Portability to mingw32.
18043         * m4/ssize_t.m4: New file, from GNU gettext.
18044         * m4/safe-read.m4 (gl_PREREQ_SAFE_READ): Require gt_TYPE_SSIZE_T.
18045         * m4/xreadlink.m4 (gl_XREADLINK): Require gt_TYPE_SSIZE_T.
18046
18047 2003-06-22  Bruno Haible  <bruno@clisp.org>
18048
18049         * modules/safe-read: Add m4/ssize_t.m4.
18050         * modules/xreadlink: Add m4/ssize_t.m4.
18051
18052 2003-06-20  Bruno Haible  <bruno@clisp.org>
18053
18054         Assume C89, so PARAMS isn't needed.
18055         * lib/unicodeio.h (PARAMS): Remove.
18056         * lib/unicodeio.c: Don't use PARAMS.
18057
18058 2003-06-18  Karl Berry  <karl@gnu.org>
18059
18060         * config/config.{guess,sub}: update from prep.
18061
18062 2003-06-18  Jim Meyering  <jim@meyering.net>
18063
18064         Merge changes from coreutils.
18065         * lib/readutmp.c: Include <string.h> and <stdlib.h> unconditionally.
18066         Remove explicit declarations of xmalloc and realloc.
18067         Include xalloc.h.
18068         (read_utmp): Remove anachronistic cast of xmalloc.
18069
18070 2003-06-17  Paul Eggert  <eggert@twinsun.com>
18071
18072         Assume C89, so PARAMS isn't needed.
18073         * lib/backupfile.h (PARAMS): Remove.  All uses removed.
18074         * lib/closeout.h, lib/dirname.h, lib/filemode.h, lib/fsusage.h,
18075         lib/getdate.h, lib/getline.h, lib/group-member.h, lib/hard-locale.h,
18076         lib/hash.h, lib/linebuffer.h, lib/long-options.h, lib/makepath.h,
18077         lib/memcasecmp.h, lib/memcoll.h, lib/modechange.h, lib/mountlist.h,
18078         lib/path-concat.h, lib/physmem.h, lib/posixtm.h, lib/quote.h,
18079         lib/readutmp.h, lib/same.h, lib/save-cwd.h, lib/savedir.h,
18080         lib/stdio-safer.h, lib/strtoimax.c, lib/strverscmp.h,
18081         lib/unistd-safer.h, lib/version-etc.h, lib/xalloc.h, lib/xreadlink.h,
18082         lib/xstrtod.h, lib/xstrtol.h: Likewise.
18083         * lib/filemode.h, lib/hard-locale.h, lib/memcoll.h, lib/modechange.h,
18084         lib/physmem.h, lib/same.h, lib/strverscmp.h: Do not include config.h;
18085         no longer needed. Anyway, config.h should always be included before any
18086         other file.
18087
18088 2003-06-11  Simon Josefsson  <jas@extundo.com>
18089
18090         * modules/sysexits: New file.
18091         * MODULES.html.sh (func_all_modules): Add sysexits.
18092
18093 2003-06-11  Simon Josefsson  <jas@extundo.com>
18094
18095         * lib/sysexit_.h: New file.
18096
18097 2003-06-11  Derek Price  <derek@ximbiot.com>
18098
18099         * lib/stat.c [LSTAT]: Compile/use slash_aware_lstat only if it is
18100         necessary.
18101
18102 2003-06-11  Bruno Haible  <bruno@clisp.org>
18103
18104         * m4/sysexits.m4: New file.
18105
18106 2003-06-10  Simon Josefsson  <jas@extundo.com>
18107
18108         * lib/argp.h: New file, from glibc.
18109         * lib/argp-ba.c: New file, from glibc.
18110         * lib/argp-eexst.c: New file, from glibc.
18111         * lib/argp-fmtstream.c: New file, from glibc.
18112         * lib/argp-fmtstream.h: New file, from glibc.
18113         * lib/argp-fs-xinl.c: New file, from glibc.
18114         * lib/argp-help.c: New file, from glibc.
18115         * lib/argp-namefrob.h: New file, from glibc.
18116         * lib/argp-parse.c: New file, from glibc.
18117         * lib/argp-pv.c: New file, from glibc.
18118         * lib/argp-pvh.c: New file, from glibc.
18119         * lib/argp-xinl.c: New file, from glibc.
18120
18121 2003-06-10  Simon Josefsson  <jas@extundo.com>
18122
18123         * modules/strchrnul: New file.
18124
18125 2003-06-10  Simon Josefsson  <jas@extundo.com>
18126
18127         * modules/argp: New file.
18128
18129 2003-06-10  Simon Josefsson  <jas@extundo.com>
18130
18131         * m4/strchrnul.m4: New file.
18132
18133 2003-06-10  Simon Josefsson  <jas@extundo.com>
18134
18135         * lib/strchrnul.h: New file.
18136         * lib/strchrnul.c: New file.
18137
18138 2003-06-10  Bruno Haible  <bruno@clisp.org>
18139
18140         * MODULES.html.sh (func_all_modules): Add strchrnul and argp.
18141
18142 2003-06-07  Karl Berry  <karl@gnu.org>
18143
18144         * config/config.{guess,sub}: update from prep.
18145
18146 2003-06-07  Jim Meyering  <jim@meyering.net>
18147
18148         * modules/strtod: Use $(...) notation, not @...@ for
18149         AC_REPLACE'd variables.
18150         * modules/localcharset: Likewise.
18151
18152 2003-06-07  Jim Meyering  <jim@meyering.net>
18153
18154         * lib/readtokens.h: Put `Free Software Foundation, Inc.'
18155         in place of my name in the copyright comment.
18156         Remove definition and uses of __P.
18157
18158         From coreutils.
18159         * lib/stat.c: Don't declare xmalloc explicitly.
18160         Instead, include "xalloc.h".
18161         * lib/readtokens.c (readtokens): Remove anachronistic casts of xmalloc,
18162         xrealloc, and xcalloc return values.
18163         * lib/xgetcwd.c (xgetcwd): Include "xgetcwd.h".
18164         Improve comment.
18165         * lib/xgetcwd.h: Remove definition/uses of PARAMS.
18166
18167 2003-06-07  Bruno Haible  <bruno@clisp.org>
18168
18169         * modules/poll (Makefile.am): Use explicit creation rule for poll.h, to
18170         avoid AC_CONFIG_LINKS.
18171         * modules/fnmatch (Makefile.am): Use explicit creation rule for
18172         fnmatch.h, to avoid AC_CONFIG_LINKS.
18173         * modules/alloca (Makefile.am): Make creation of alloca.h Ctrl-C safe.
18174
18175 2003-06-07  Bruno Haible  <bruno@clisp.org>
18176
18177         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH, gl_FUNC_FNMATCH_POSIX,
18178         gl_FUNC_FNMATCH_GNU): Set FNMATCH_H instead of invoking
18179         AC_CONFIG_LINKS. Needed to allow for a different name of the lib
18180         directory.
18181         * m4/poll.m4 (gl_FUNC_POLL): Set POLL_H instead of invoking
18182         AC_CONFIG_LINKS. Needed to allow for a different name of the lib
18183         directory.
18184
18185 2003-06-06  Jim Meyering  <jim@meyering.net>
18186
18187         Merge from coreutils.
18188         * lib/same.c: (same_name): Declare *_basename locals to be `const'.
18189         Consolidate declarations and initializations of *_base* locals.
18190
18191         Merge from coreutils.
18192         This avoids a core dump on systems without GNU putenv,
18193         when running `env -u SOME_ALREADY_UNSET_VARIABLE'.
18194         * lib/putenv.c (__set_errno, LOCK, UNLOCK): Define.
18195         (unsetenv): New static function, from GNU libc.
18196         (rpl_putenv): Use it.
18197
18198         * lib/modechange.c: Remove trailing blanks.
18199
18200         Merge from coreutils.
18201         * lib/fsusage.c: Remove declaration of statfs.
18202         It conflicted with one from OSF/1 5.1 in <sys/mount.h>.
18203
18204         * lib/posixtm.c: Include <stdbool.h> unconditionally.
18205
18206 2003-06-06  Jim Meyering  <jim@meyering.net>
18207
18208         * lib/stdbool_.h: Renamed from stdbool.h.in.
18209
18210 2003-06-06  Jim Meyering  <jim@meyering.net>
18211             Bruno Haible  <bruno@clisp.org>
18212
18213         * modules/stdbool: Reflect renaming: stdbool.h.in -> stdbool_.h.
18214         Adjust Makefile.am snippet not to redirect directly to target.
18215         Use $(STDBOOL_H) notation, not @STDBOOL_H@ for AC_REPLACE'd variables.
18216
18217 2003-06-05  Paul Eggert  <eggert@twinsun.com>
18218
18219         * lib/mktime.c (__mktime_internal): When resolving a tm_isdst
18220         mismatch, look in future quarters as well as past.  This fixes a
18221         bug when processing fall-backwards gaps immediately after a long
18222         period of daylight-saving time.
18223
18224         * lib/mktime.c: Assume freestanding C89 or better.
18225         (HAVE_LIMITS_H): Remove.  Assume it's 1.
18226         (__P): Remove; not used.
18227         (CHAR_BIT, INT_MIN, INT_MAX): Remove; <limits.h> defines them.
18228         (mktime, not_equal_tm, print_tm, check_result,
18229         main): Use prototypes.  Use const * where appropriate.
18230         (main): Fix typo in testing code that uncovered by above changes.
18231         (Local Variables): Remove -DHAVE_LIMITS_H from compile-command.
18232
18233 2003-06-04  Paul Eggert  <eggert@twinsun.com>
18234
18235         * m4/human.m4 (gl_HUMAN): Require AM_STDBOOL_H.  Check for
18236         locale.h, localeconv.  This merges changes from coreutils.
18237
18238         * m4/mktime.m4 (AC_FUNC_MKTIME): New macro, taken from Autoconf CVS.
18239         It can be removed after the next Autoconf is released.
18240         * m4/exclude.m4 (gl_EXCLUDE): Don't check for sys/types.h; no loner
18241         needed.
18242
18243 2003-06-04  Paul Eggert  <eggert@twinsun.com>
18244
18245         * lib/mktime.c: Fix Debian bug 177940
18246         <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=177940>.
18247         (localtime_offset): Now long int, not time_t, because we want it
18248         to be guaranteed to be signed.  All uses changed.
18249         (__mktime_internal): If overflow would occur when adding offset,
18250         don't add it.
18251
18252         Merge 'human' changes from coreutils.  Rewrite to support
18253         locale-specific notations like thousands separators.
18254         * lib/human.c: Simplify authorship notice.
18255         Include human.h immediately after config.h.
18256         <sys/types.h>, <stdio.h>: Do not include; no longer needed.
18257         <limits.h>: Do not include, since human.h does.
18258         (SIZE_MAX, UINTMAX_MAX): New macros.
18259         <strings.h>: Include if HAVE_STRINGS_H, not if !HAVE_STRING_H.
18260         <locale.h>: Include if HAVE_LOCALE_H and HAVE_LOCALECONV.
18261         (HUMAN_READABLE_SUFFIX_LENGTH_MAX): New macro.
18262         (power_letter): Renamed from suffixes.
18263         (generate_suffix_backwards): Remove.
18264         (adjust_value): Now takes int style (because of human.h changes)
18265         and long double value (for greater precision on some platforms).
18266         (group_number): New function.
18267         (human_readable): Use it.  Use integer options, not enum.
18268         Put the options before the sizes in the arg list.
18269         Support all the new options.
18270         The old human_readable function has been removed;
18271         use inttostr.h instead.
18272         (human_readable, default_block_size, humblock):
18273         Use uintmax_t, not int, for block sizes.
18274         (human_readable_inexact, block_size_types): Remove.
18275         (block_size_opts): New constant.
18276         (human_options): Renamed from human_block_size, with new signature
18277         that allows block sizes up to UINTMAX_MAX.  All callers changed.
18278         * lib/human.h: Add copyright and authorship notice.
18279         Include <limits.h> and <stdbool.h> unconditionally.
18280         (PARAMS): Remove.  All uses removed.
18281         (LONGEST_HUMAN_READABLE): Add support for thousands separator.
18282         (enum human_inexact_style): Remove tag; now a nameless enum.
18283         (human_floor, human_ceiling, human_round_to_even): Now have
18284         values 2, 0, 1 rather than -1, 1, 0.
18285         (human_group_digits, human_suppress_point_zero, human_autoscale,
18286         human_base_1024, human_SI, human_B): New constants.
18287         (human_readable_inexact, human_block_size): Remove.
18288         (human_readable): Size args are now uintmax_t, not int.
18289         (human_options): New decl.
18290
18291         * lib/exclude.c: (new_exclude, add_exclude): Remove casts that are
18292         unnecessary now that we assume C89 or better.  This change
18293         imported from coreutils.
18294
18295         * lib/mktime.c (__mktime_internal): Do not reject negative timestamps
18296         arbitrarily.  This is the same patch as 2003-05-28, but it got lost
18297         in the 2003-05-30 sync from glibc.
18298
18299         .h files should stand alone, but we shouldn't include <sys/types.h>
18300         if we can get away with just <stddef.h>.
18301
18302         * lib/__fpending.h, addext.c, backupfile.c, exclude.c, getline.c,
18303         malloc.c, putenv.c, realloc.c, strcasecmp.c: Include <stddef.h>
18304         rather than <sys/types.h>, as we merely need size_t.
18305         * lib/dirname.h, memcoll.h, xalloc.h, xmemcoll.h: Include <stddef.h>,
18306         to get size_t.
18307         * lib/hash.h, linebuffer.h, readtokens.h, stdio-safer.h, version-etc.h:
18308         Include <stdio.h>, to get FILE.
18309         * lib/memcasecmp.c: Don't include <sys/types.h>, as we can assume
18310         memcasecmp.h has included <stddef.h> and all we need is size_t.
18311         * lib/memcoll.c: Include "memcoll.h", which gets us size_t and checks
18312         our interface, instead of including <sys/types.h>
18313
18314 2003-06-04  Paul Eggert  <eggert@twinsun.com>
18315
18316         * config/srclist.txt ($LIBCSRC/time/mktime.c lib gpl): Comment out for
18317         now, as glibc mktime is buggy on non-glibc systems.
18318
18319 2003-06-03  Karl Berry  <karl@gnu.org>
18320
18321         * config/config.sub: update from prep.
18322
18323 2003-06-02  Paul Eggert  <eggert@twinsun.com>
18324
18325         [from coreutils]
18326         Fix some minor time-related bugs with POSIX time arguments.
18327         Some valid time stamps were being rejected (notably -1, and
18328         time stamps before 1900 on 64-bit hosts).  And some invalid
18329         time stamps were being accepted, e.g. September 31.
18330
18331         * lib/posixtm.h (posixtime): Return bool instead of time_t, so
18332         that we can return (time_t) -1 successfully.
18333         * lib/posixtm.c: Likewise.
18334         [HAVE_STDBOOL_H]: Include <stdbool.h>.
18335         (bool, false, true) [!HAVE_STDBOOL_H]: New type.
18336         (t): Remove static var.
18337         (year, posix_time_parse): Now takes struct tm * arg to modify, instead
18338         of static var.  All uses changed.
18339         (year): Do not reject years before 1900; they can occur with
18340         64-bit time_t.
18341         (posix_time_parse): Do not check for out-of-range components;
18342         that is now the caller's responsibility, since our checks were
18343         only approximations.
18344         (posixtime): Use mktime to check for out-of-range components,
18345         since it knows them exactly.
18346         If mktime returns (time_t) -1, check whether an error actually occurred
18347         by invoking localtime on -1.
18348         (main) [TEST_POSIXTIME]: Check for input data errors, and report
18349         posixtime failures better.
18350         Improve the test data (in comments only).
18351
18352 2003-06-02  Karl Berry  <karl@gnu.org>
18353
18354         * config/mkinstalldirs (version): new variable.
18355         (--version): new option.
18356         (usage): improve message.
18357
18358 2003-05-30  Karl Berry  <karl@gnu.org>
18359
18360         * lib/mktime.c: update from libc.
18361
18362 2003-05-30  Bruno Haible  <bruno@clisp.org>
18363
18364         * modules/gettext: Add files m4/nls.m4 and m4/po.m4.
18365         * config/config.rpath: Upgrade to gettext-0.12.1.
18366
18367 2003-05-30  Bruno Haible  <bruno@clisp.org>
18368
18369         * m4/gettext.m4: Upgrade to gettext-0.12.1.
18370         * m4/nls.m4: New file, from gettext-0.12.1.
18371         * m4/po.m4: New file, from gettext-0.12.1.
18372         * m4/progtest.m4: Upgrade to gettext-0.12.1.
18373
18374 2003-05-30  Bruno Haible  <bruno@clisp.org>
18375
18376         * lib/config.charset: Upgrade to gettext-0.12.1 and libiconv-1.9.1.
18377         * lib/localcharset.h: Likewise.
18378         * lib/localcharset.c: Likewise.
18379
18380 2003-05-29  Karl Berry  <karl@gnu.org>
18381
18382         * config/config.rpath: update from gettext.
18383
18384 2003-05-28  Paul Eggert  <eggert@twinsun.com>
18385
18386         Assume the headers required for C89 freestanding compilers.
18387         * m4/backupfile.m4 (gl_BACKUPFILE): Don't check for limits.h.
18388         * m4/fsusage.m4 (gl_PREREQ_FSUSAGE_EXTRA): Likewise.
18389         * m4/human.m4 (gl_HUMAN): Likewise.
18390         * m4/pathmax.m4 (gl_PATHMAX): Likewise.
18391         * m4/rpmatch.m4 (gl_FUNC_RPMATCH): Likewise.
18392         * m4/userspec.m4 (gl_USERSPEC): Likewise.
18393         * m4/xreadlink.m4 (gl_XREADLINK): Likewise.
18394         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
18395         * m4/quote.m4 (gl_QUOTE): Don't check for stddef.h.
18396
18397 2003-05-28  Paul Eggert  <eggert@twinsun.com>
18398
18399         Assume the headers required for C89 freestanding compilers.
18400         * lib/addext.c, lib/backupfile.c, lib/fsusage.c, lib/human.c,
18401         lib/pathmax.h, lib/rpmatch.c, lib/userspec.c, lib/xreadlink.c,
18402         lib/xstrtol.c: Include <limits.h> without checking for HAVE_LIMITS_H.
18403         * lib/backupfile.c, lib/fsusage.c, lib/hash.c, lib/human.c,
18404         lib/safe-read.c, lib/userspec.c, lib/xstrtol.c (CHAR_BIT): Don't
18405         define, since <limits.h> is guaranteed to do that.
18406         * lib/fatal.c: Include <stdarg.h> without checking for __STDC__.
18407         * lib/exclude.c: Include <stdbool.h> unconditionally.
18408         * lib/tempname.c: Include <stddef.h> unconditionally.
18409         * lib/hash.c: Include <limits.h>, since we no longer define CHAR_BIT.
18410         * lib/modechange.c, rpmatch.c (NULL): Don't define, since
18411         <stddef.h> does that.
18412         * lib/quote.c: Dont include <stddef.h> or <sys/types.h>; not needed.
18413         * lib/safe-read.c (INT_MAX): Don't define, since <limits.h> does that.
18414         * lib/safe-read.c (TYPE_MINIMUM, TYPE_MAXIMUM): Remove; no longer
18415         needed.
18416         * lib/xstrtol.c: Likewise.
18417         * lib/safe-read.c: Remove TYPE_SIGNED; no longer needed.
18418         * lib/savedir.c: Include <stddef.h> instead of defining NULL.
18419
18420         * lib/addext.c (addext): Use assignment rather than cast, to avoid
18421         warnings on some platforms.
18422
18423         * lib/mktime.c (__mktime_internal): Do not reject negative timestamps
18424         arbitrarily.
18425
18426 2003-05-26  Jim Meyering  <jim@meyering.net>
18427
18428         Merge in a change from coreutils:
18429         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Test the cache variable, not one
18430         that is guaranteed to be `no'.  Use `no_such_member' to indicate
18431         that condition, rather than `-1' which is slightly misleading.
18432         Change the name of the cache variable to have the gl_ prefix.
18433         Prompted by a patch from Richard Dawe for DJGPP.
18434
18435 2003-05-24  Karl Berry  <karl@gnu.org>
18436
18437         * config/config.guess: update from prep.
18438
18439 2003-05-22  Karl Berry  <karl@gnu.org>
18440
18441         * gnulib-tool (func_usage): =LIBRARY not =libRARY in help msg.
18442
18443 2003-05-20  Karl Berry  <karl@gnu.org>
18444
18445         * config/config.guess: update from prep.
18446
18447 2003-05-18  Karl Berry  <karl@gnu.org>
18448
18449         * config/srclistvars.sh (TEXMF): use TEXMFROOT instead, since TEXMF
18450         might actually be set by the user.
18451
18452         * config/depcomp, install-sh, mdate-sh: update from automake.
18453
18454 2003-05-17  Bruno Haible  <bruno@clisp.org>
18455
18456         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Fix a quoting bug leading to an
18457         invalid expansion for AC_EGREP_CPP.
18458         * m4/strtoimax.m4 (gl_FUNC_STRTOIMAX): Likewise.
18459         * m4/strtoumax.m4 (gl_FUNC_STRTOUMAX): Likewise.
18460         Suggested by Akim Demaille <akim@epita.fr> in
18461         http://mail.gnu.org/archive/html/bug-autoconf/2003-05/threads.html
18462
18463 2003-05-12  Jim Meyering  <jim@meyering.net>
18464
18465         * lib/strftime.c (my_strftime): Let the `-' (no-pad) flag affect
18466         the space-padded-by-default conversion specifiers, %e, %k, %l.
18467
18468 2003-05-12  Bruno Haible  <bruno@clisp.org>
18469
18470         * lib/linebreak.c (iconv_string_length): Don't return -1 just because
18471         the string is longer than 4 KB.
18472
18473 2003-05-11  Karl Berry  <karl@gnu.org>
18474
18475         * config/config.{guess,sub}: update from prep.
18476
18477 2003-05-09  Bruno Haible  <bruno@clisp.org>
18478
18479         * modules/error: Add m4/strerror_r.m4 to file list.
18480
18481 2003-05-03  Bruno Haible  <bruno@clisp.org>
18482
18483         Upgrade to Unicode-4.0.
18484         * lib/linebreak.c (nonspacing_table_data): Change width of U+00AD,
18485         U+0350..U+0357, U+035D..U+035F, U+0600..U+0603, U+0610..U+0615,
18486         U+0656..U+0658, U+0A01, U+0AE2..U+0AE3, U+0CBC, U+17B4..U+17B5,
18487         U+17DD, U+1920..U+1922, U+1927..U+192B, U+1932, U+1939..U+193B
18488         from 1 to 0. Change width of U+0CBF, U+0CC6, U+180E from 0 to 1.
18489         (uc_width): Change width of U+4DC0..U+4DFF from 2 to 1. Change width
18490         of U+2A6D7..U+2F7FF, U+2FA1E..U+2FFFD, U+30000..U+3FFFD from 1 to 2.
18491         Change width of U+E0100..U+E01EF from 1 to 0.
18492
18493 2003-04-25  Jim Meyering  <jim@meyering.net>
18494
18495         * lib/copy-file.c (copy_file_preserving): Declare buf_size to be
18496         of type size_t, not int.
18497
18498 2003-04-25  Bruno Haible  <bruno@clisp.org>
18499
18500         * lib/copy-file.c: Include <stddef.h>, for size_t.
18501
18502 2003-04-21  Paul Eggert  <eggert@twinsun.com>
18503
18504         * m4/error.m4 (gl_ERROR): Do not put under dynamic conditions some
18505         code which expansion is under static control.  Patch imported from
18506         Akim Demaille's patch to Bison; see
18507         <http://mail.gnu.org/archive/html/bison-patches/2003-03/msg00057.html>.
18508
18509 2003-04-14  Bruno Haible  <bruno@clisp.org>
18510
18511         * m4/error.m4 (jm_PREREQ_ERROR): Use AC_FUNC_VPRINTF.
18512
18513 2003-04-11  Jim Meyering  <jim@meyering.net>
18514
18515         Merge changes from Coreutils.
18516
18517         2003-03-22  Jim Meyering  <jim@meyering.net>
18518
18519         * lib/strftime.c (widen): Cast alloca return value to proper type.
18520
18521         2003-01-19  Ulrich Drepper  <drepper@redhat.com>
18522
18523         From GNU libc.
18524         * lib/strftime.c (my_strftime): Handle very large width
18525         specifications for numeric values correctly.  Improve checks for
18526         overflow.
18527
18528         2003-01-19  Jim Meyering  <jim@meyering.net>
18529
18530         * lib/strftime.c (widen) [COMPILE_WIDE]: Merge nearly-identical
18531         definitions.
18532         (nl_get_alt_digit) [! defined my_strftime]: Define.
18533         (my_strftime) [_NL_CURRENT]: Merge nearly-identical uses of
18534         _nl_get_alt_digit and _nl_get_walt_digit.
18535
18536         * lib/strftime.c (my_strftime): Merge in locale-related changes from
18537         libc. These changes have no effect outside of _LIBC.
18538
18539 2003-04-10  Bruno Haible  <bruno@clisp.org>
18540
18541         * modules/findprog: New file.
18542         * MODULES.html.sh (func_all_modules): Add it.
18543
18544 2003-04-10  Bruno Haible  <bruno@clisp.org>
18545
18546         * m4/findprog.m4: New file.
18547         * m4/eaccess.m4: New file.
18548
18549 2003-04-10  Bruno Haible  <bruno@clisp.org>
18550
18551         * lib/findprog.h: New file, from GNU gettext.
18552         * lib/findprog.c: New file, from GNU gettext.
18553
18554 2003-04-05  Jim Meyering  <jim@meyering.net>
18555
18556         Merge changes from Coreutils.
18557
18558         * lib/exclude.h (PARAMS): Remove definition and uses.
18559         * lib/exclude.c: Remove uses of `PARAMS'.
18560
18561         * lib/dirname.c [TEST_DIRNAME]: Update build instructions for test.
18562         Add test-cases for DOS filenames. Declare program_name.
18563         (main): Set up program_name.  Patch by Rich Dawe.
18564
18565         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
18566         error from mntctl.
18567         Use mntctl's return value to drive the entry-processing loop, since
18568         we can't rely on the value of the vmt_length member in the last
18569         entry.  On some systems doing so could result in exhausting
18570         virtual memory.  Based in part on a patch from Mike Jetzer.
18571
18572 2003-04-04  Bruno Haible  <bruno@clisp.org>
18573
18574         * modules/linebreak: New file.
18575         * MODULES.html.sh (func_all_modules): Add it.
18576
18577 2003-04-04  Bruno Haible  <bruno@clisp.org>
18578
18579         * m4/linebreak.m4: New file.
18580
18581 2003-04-04  Bruno Haible  <bruno@clisp.org>
18582
18583         * lib/linebreak.h: New file, from GNU gettext.
18584         * lib/linebreak.c: New file, from GNU gettext with slight
18585         modifications.
18586         * lib/lbrkprop.h: New file, from GNU gettext.
18587
18588 2003-04-03  Bruno Haible  <bruno@clisp.org>
18589
18590         * modules/utf8-ucs4: New file.
18591         * modules/utf16-ucs4: New file.
18592         * modules/ucs4-utf8: New file.
18593         * modules/ucs4-utf16: New file.
18594         * MODULES.html.sh (func_all_modules): Add them.
18595
18596 2003-04-03  Bruno Haible  <bruno@clisp.org>
18597
18598         * m4/utf-ucs4.m4: New file.
18599         * m4/ucs4-utf.m4: New file.
18600
18601 2003-04-03  Bruno Haible  <bruno@clisp.org>
18602
18603         * lib/utf8-ucs4.h: New file, from GNU gettext.
18604         * lib/utf16-ucs4.h: New file, from GNU gettext.
18605         * lib/ucs4-utf8.h: New file, from GNU gettext.
18606         * lib/ucs4-utf16.h: New file, from GNU gettext.
18607
18608 2003-04-02  Bruno Haible  <bruno@clisp.org>
18609
18610         * modules/binary-io: New file.
18611         * MODULES.html.sh (func_all_modules): Add it.
18612
18613 2003-04-02  Bruno Haible  <bruno@clisp.org>
18614
18615         * lib/binary-io.h: New file, from GNU gettext.
18616
18617 2003-04-01  Bruno Haible  <bruno@clisp.org>
18618
18619         * modules/pathname: New file.
18620         * MODULES.html.sh (func_all_modules): Add it.
18621
18622 2003-04-01  Bruno Haible  <bruno@clisp.org>
18623
18624         * lib/pathname.h: New file, from GNU gettext.
18625         * lib/concatpath.c: New file, from GNU gettext.
18626
18627 2003-03-30  Bruno Haible  <bruno@clisp.org>
18628
18629         * m4/copy-file.m4 (gl_COPY_FILE): Add check for chown().
18630
18631 2003-03-30  Bruno Haible  <bruno@clisp.org>
18632
18633         * lib/copy-file.c (copy_file_preserving): Don't set owner if the
18634         function chown() doesn't exist.
18635
18636 2003-03-28  Bruno Haible  <bruno@clisp.org>
18637
18638         * modules/copy-file: New file.
18639         * MODULES.html.sh (func_all_modules): Add it.
18640
18641 2003-03-28  Bruno Haible  <bruno@clisp.org>
18642
18643         * m4/copy-file.m4: New file.
18644
18645 2003-03-28  Bruno Haible  <bruno@clisp.org>
18646
18647         * lib/copy-file.h: New file, from GNU gettext.
18648         * lib/copy-file.c: New file, from GNU gettext.
18649
18650 2003-03-18  Jim Meyering  <jim@meyering.net>
18651
18652         * lib/quote.c (quote_n): Fix typo in comment.
18653
18654 2003-03-18  Bruno Haible  <bruno@clisp.org>
18655
18656         * m4/onceonly.m4: Use m4_defn instead of defn, for better error
18657         checking.
18658         * m4/onceonly_2_57.m4: Likewise.
18659
18660 2003-03-17  Bruno Haible  <bruno@clisp.org>
18661
18662         * m4/onceonly.m4: Require autoconf 2.54 or newer.
18663         (m4_quote): Remove macro.
18664         * m4/onceonly_2_57.m4: Require autoconf 2.54 or newer.
18665
18666 2003-03-14  Jim Meyering  <jim@meyering.net>
18667
18668         Merge changes from Coreutils.
18669         * lib/obstack.h (obstack_object_size): Declare temporary, __o,
18670         to be const, in order to avoid warnings.
18671         (obstack_room): Likewise.
18672         (obstack_empty_p): Likewise.
18673
18674 2003-03-14  Bruno Haible  <bruno@clisp.org>
18675
18676         * m4/onceonly_2_57.m4 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE,
18677         AC_CHECK_DECLS_ONCE): Quote AC_FOREACH variable-expansions properly.
18678
18679 2003-03-13  Paul Eggert  <eggert@twinsun.com>
18680
18681         Merge changes from Bison.
18682         * lib/obstack.h: (__INT_TO_PTR) [__STDC__]: Cast result to
18683         (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
18684         when compiling Bison 1.875's `bitset bset = obstack_alloc
18685         (bobstack, bytes);'.  Problem reported by Nelson H. F. Beebe.
18686         * lib/hash.c: Include <stdbool.h> unconditionally.
18687
18688 2003-03-13  Paul Eggert  <eggert@twinsun.com>
18689
18690         * m4/onceonly.m4 (m4_quote): New macro.
18691         (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
18692         Quote AC_FOREACH variable-expansions properly.
18693
18694 2003-03-13  Paul Eggert  <eggert@twinsun.com>
18695
18696         * doc/COPYING.DOC, fdl.texi: Sync with latest FSF version.
18697
18698 2003-03-09  Paul Eggert  <eggert@twinsun.com>
18699
18700         * lib/argmatch.c (EXIT_FAILURE): Define if the system doesn't.
18701         Reported by Bruce Becker; see:
18702         http://mail.gnu.org/archive/html/bug-bison/2003-03/msg00017.html
18703
18704 2003-03-03  Paul Eggert  <eggert@twinsun.com>
18705             Bruno Haible  <bruno@clisp.org>
18706
18707         * lib/mbswidth.h: Include <wchar.h>. Needed for UnixWare 7.1.1.
18708         Reported by John Hughes, see
18709         http://mail.gnu.org/archive/html/bug-bison/2003-02/msg00030.html
18710
18711 2003-02-20  Bruno Haible  <bruno@clisp.org>
18712
18713         * MODULES.html.sh (func_all_modules): Add poll.
18714
18715 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
18716
18717         * modules/poll: New file.
18718
18719 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
18720
18721         * lib/poll_.h: New file.
18722         * lib/poll.c: New file.
18723
18724 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
18725
18726         * m4/poll.m4: New file.
18727
18728 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
18729
18730         * modules/mathl: New file.
18731
18732 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
18733
18734         * lib/mathl.h: New file.
18735         * lib/acosl.c: New file.
18736         * lib/asinl.c: New file.
18737         * lib/atanl.c: New file.
18738         * lib/ceill.c: New file.
18739         * lib/cosl.c: New file.
18740         * lib/expl.c: New file.
18741         * lib/floorl.c: New file.
18742         * lib/frexpl.c: New file.
18743         * lib/ldexpl.c: New file.
18744         * lib/logl.c: New file.
18745         * lib/sincosl.c: New file.
18746         * lib/sinl.c: New file.
18747         * lib/sqrtl.c: New file.
18748         * lib/tanl.c: New file.
18749         * lib/trigl.c: New file.
18750         * lib/trigl.h: New file.
18751
18752 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
18753
18754         * m4/mathl.m4: New file.
18755
18756 2003-02-18  Bruno Haible  <bruno@clisp.org>
18757
18758         * MODULES.html.sh (func_all_modules): Add mathl.
18759
18760 2003-02-17  Bruno Haible  <bruno@clisp.org>
18761
18762         * modules/mkdtemp: New module.
18763         * MODULES.html.sh (func_all_modules): Add it.
18764
18765 2003-02-17  Bruno Haible  <bruno@clisp.org>
18766
18767         * m4/mkdtemp.m4: New file, from GNU gettext with modifications.
18768
18769 2003-02-17  Bruno Haible  <bruno@clisp.org>
18770
18771         * lib/mkdtemp.h: New file, from GNU gettext.
18772         * lib/mkdtemp.c: New file, from GNU gettext.
18773
18774 2003-02-02  Jim Meyering  <jim@meyering.net>
18775
18776         * m4/regex.m4 (jm_INCLUDED_REGEX): Detect broken re_search in
18777         e.g. glibc-2.2.93.
18778
18779 2003-01-31  Bruno Haible  <bruno@clisp.org>
18780
18781         * m4/rename.m4 (vb_FUNC_RENAME): Add a redirection from 'rename' to
18782         'rpl_rename'.
18783         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Add a redirection from 'strnlen' to
18784         'rpl_strnlen'.
18785         * m4/strtod.m4 (gl_FUNC_STRTOD): Add a redirection from 'strtod' to
18786         'rpl_strtod'.
18787         * m4/utime.m4 (jm_FUNC_UTIME): Add a redirection from 'utime' to
18788         'rpl_utime'.
18789
18790 2003-01-31  Bruno Haible  <bruno@clisp.org>
18791
18792         * lib/rename.c: #undef rename before defining rpl_rename.
18793         * lib/strnlen.c: #undef strnlen, define rpl_strnlen instead of strnlen.
18794
18795 2003-01-30  Bruno Haible  <bruno@clisp.org>
18796
18797         * modules/vasnprintf, modules/vasprintf: New modules.
18798         * MODULES.html.sh (func_all_modules): Add them.
18799
18800 2003-01-30  Bruno Haible  <bruno@clisp.org>
18801
18802         * m4/signed.m4: New file, from GNU gettext.
18803         * m4/longdouble.m4: New file, from GNU gettext.
18804         * m4/wchar_t.m4: New file, from GNU gettext.
18805         * m4/wint_t.m4: New file, from GNU gettext.
18806         * m4/vasnprintf.m4: New file.
18807         * m4/vasprintf.m4: New file.
18808
18809 2003-01-30  Bruno Haible  <bruno@clisp.org>
18810
18811         * lib/printf-args.h: New file, from GNU gettext.
18812         * lib/printf-args.c: New file, from GNU gettext.
18813         * lib/printf-parse.h: New file, from GNU gettext.
18814         * lib/printf-parse.c: New file, from GNU gettext.
18815         * lib/vasnprintf.h: New file, from GNU gettext.
18816         * lib/vasnprintf.c: New file, from GNU gettext.
18817         * lib/asnprintf.c: New file, from GNU gettext.
18818         * lib/vasprintf.h: New file, from GNU gettext with modifications.
18819         * lib/vasprintf.c: New file, from GNU gettext.
18820         * lib/asprintf.c: New file, from GNU gettext.
18821
18822 2003-01-29  Bruno Haible  <bruno@clisp.org>
18823
18824         * modules/stpncpy: New module.
18825         * MODULES.html.sh (func_all_modules): Add it.
18826
18827 2003-01-29  Bruno Haible  <bruno@clisp.org>
18828
18829         * m4/stpncpy.m4: New file.
18830
18831 2003-01-29  Bruno Haible  <bruno@clisp.org>
18832
18833         * lib/stpncpy.h: New file, from GNU gettext with modifications.
18834         * lib/stpncpy.c: New file, from GNU gettext with modifications.
18835
18836 2003-01-28  Bruno Haible  <bruno@clisp.org>
18837
18838         * modules/c-ctype: New module.
18839         * MODULES.html.sh (func_all_modules): Add it.
18840
18841 2003-01-28  Bruno Haible  <bruno@clisp.org>
18842
18843         * lib/c-ctype.h: New file, from GNU gettext, with changes suggested by
18844         Paul Eggert.
18845         * lib/c-ctype.c: New file, from GNU gettext, with changes suggested by
18846         Paul Eggert.
18847
18848 2003-01-27  Bruno Haible  <bruno@clisp.org>
18849
18850         * modules/xsetenv: New module.
18851         * MODULES.html.sh (func_all_modules): Add it.
18852
18853 2003-01-27  Bruno Haible  <bruno@clisp.org>
18854
18855         * lib/xsetenv.h: New file, from GNU gettext.
18856         * lib/xsetenv.c: New file, from GNU gettext.
18857
18858 2003-01-23  Jim Meyering  <jim@meyering.net>
18859
18860         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Correct typo: s/-1/no/ that kept this
18861         from working on systems without dirfd (at least Irix and OSF1/Tru64).
18862
18863 2003-01-23  Bruno Haible  <bruno@clisp.org>
18864
18865         * modules/minmax: New module.
18866         * MODULES.html.sh (func_all_modules): Add it.
18867
18868 2003-01-23  Bruno Haible  <bruno@clisp.org>
18869
18870         * lib/minmax.h: New file, from GNU gettext, with comments from Paul
18871         Eggert.
18872
18873 2003-01-22  Bruno Haible  <bruno@clisp.org>
18874
18875         * modules/exit: New module.
18876         * MODULES.html.sh (func_all_modules): Add it.
18877
18878 2003-01-22  Bruno Haible  <bruno@clisp.org>
18879
18880         * lib/exit.h: New file, from GNU gettext.
18881
18882 2003-01-19  Bruno Haible  <bruno@clisp.org>
18883
18884         * gnulib-tool: Recognize option --extract-maintainer.
18885         (func_get_maintainer): New function.
18886         * modules/*: Add Maintainer entry.
18887
18888 2003-01-16  Jim Meyering  <jim@meyering.net>
18889
18890         * m4/regex.m4: The `regex' struct is both input and output.
18891         Initialize it before each use.  Patch by Tim Waugh.
18892
18893 2003-01-16  Bruno Haible  <bruno@clisp.org>
18894
18895         * MODULES.html.sh: Add a table of contents. Add the module name as
18896         leftmost column. Add hyperlinks.
18897
18898 2003-01-15  Bruno Haible  <bruno@clisp.org>
18899
18900         * m4/md5.m4 (gl_MD5): Require AC_C_INLINE.
18901
18902 2003-01-15  Bruno Haible  <bruno@clisp.org>
18903
18904         * m4/longlong.m4 (jm_AC_TYPE_LONG_LONG): Also test the LL suffix.
18905         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Also test the ULL
18906         suffix.
18907
18908 2003-01-15  Bruno Haible  <bruno@clisp.org>
18909
18910         * m4/alloca.m4 (gl_FUNC_ALLOCA): Invoke AC_EGREP_CPP prerequisites.
18911
18912 2003-01-15  Bruno Haible  <bruno@clisp.org>
18913
18914         * lib/stpcpy.h (stpcpy): Use ANSI C function declarations.
18915         * lib/strcase.h (strcasecmp, strncasecmp): Likewise.
18916
18917 2003-01-14  Jim Meyering  <jim@meyering.net>
18918
18919         * lib/same.c (same_name): Tweak a comment.
18920
18921 2003-01-14  Bruno Haible  <bruno@clisp.org>
18922
18923         * lib/same.c (same_name): Reorder tests so as to avoid calling stat()
18924         when a string comparison is sufficient.
18925
18926 2003-01-14  Bruno Haible  <bruno@clisp.org>
18927
18928         * lib/readtokens.c (readtoken): Cast character to 'unsigned char', not
18929         'unsigned int'.
18930
18931 2003-01-14  Bruno Haible  <bruno@clisp.org>
18932
18933         * lib/hash-pjw.c: Add comment about low quality of this function.
18934
18935 2003-01-13  Bruno Haible  <bruno@clisp.org>
18936
18937         * modules/stpcpy: Distribute lib/stpcpy.h.
18938         * modules/setenv: Depend on alloca. Distribute lib/setenv.h.
18939
18940 2003-01-13  Bruno Haible  <bruno@clisp.org>
18941
18942         * modules/*: Add a description.
18943         * modules/strpbrk: Fix Makefile.am snippet.
18944         * modules/strtoimax: Fix dependencies.
18945         * modules/strtoumax: Likewise.
18946
18947 2003-01-13  Bruno Haible  <bruno@clisp.org>
18948
18949         * gnulib-tool (func_create_testdir): Substitute lib_OBJECTS.
18950         * modules/alloca (Makefile.am): All object files depend on alloca.h.
18951         * modules/stdbool (Makefile.am): All object files depend on stdbool.h.
18952
18953 2003-01-13  Bruno Haible  <bruno@clisp.org>
18954
18955         * gnulib-tool (func_create_testdir): Store config/* files in the main
18956         directory.
18957         * config.rpath: Move to ...
18958         * config/config.rpath: ... here.
18959         * modules/gettext: Contains config/config.rpath, not config.rpath.
18960         * modules/iconv: Likewise.
18961
18962 2003-01-12  Paul Eggert  <eggert@twinsun.com>
18963
18964         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
18965         to avoid collisions with libcurses and libreadline.
18966
18967         * m4/getstr.m4: Remove.
18968         * m4/getline.m4 (gl_PREREQ_GETLINE): Require AC_HEADER_STDC.
18969
18970 2003-01-12  Paul Eggert  <eggert@twinsun.com>
18971
18972         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
18973         to avoid collisions with libcurses and libreadline.
18974
18975         * lib/Makefile.am (libfetish_a_SOURCES): Remove getstr.c, getstr.h.
18976         * lib/getstr.h, getstr.c: Remove.
18977         * lib/getline.c: Include "getline.h", to check interface.
18978         Move body of old getstr.c here: this defines MIN_CHUNK and
18979         declares getdelim2, which is renamed from getstr.
18980         (getline, getdelim): Adjust to renaming of getstr -> getdelim2.
18981
18982         * lib/linebuffer.c (readlinebuffer): Renamed from readline.
18983         All uses changed.
18984         * lib/linebuffer.h: Likewise.
18985         (readline): Remove backward-compatibility macro.
18986
18987 2003-01-12  Paul Eggert  <eggert@twinsun.com>
18988
18989         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
18990         to avoid collisions with libcurses and libreadline.
18991         * getstr: Remove.
18992         * MODULES.html.sh: Remove getstr.
18993         * modules/getline: Depend on unlocked-io, not getstr.
18994
18995 2003-01-12  Jim Meyering  <jim@meyering.net>
18996
18997         * lib/makepath.c: Don't test HAVE_ERRNO_H.  It's not necessary.
18998
18999 2003-01-10  Bruno Haible  <bruno@clisp.org>
19000
19001         * modules/alloca: Change Makefile.am requirements. Simplify Include
19002         requirements. Add lib/alloca_.h to file list.
19003
19004 2003-01-10  Bruno Haible  <bruno@clisp.org>
19005
19006         * m4/alloca.m4 (gl_FUNC_ALLOCA): Also define ALLOCA_H.
19007
19008 2003-01-10  Bruno Haible  <bruno@clisp.org>
19009
19010         * lib/alloca_.h: New file.
19011         * lib/getdate.y: Unconditionally include alloca.h.
19012         * lib/makepath.c: Likewise.
19013         * lib/setenv.c: Likewise.
19014         * lib/userspec.c: Likewise.
19015
19016 2003-01-09  Karl Berry  <karl@gnu.org>
19017
19018         * MODULES.html.sh: include `dirname $0` in PATH, to find
19019         gnulib-tool.
19020
19021 2003-01-09  Bruno Haible  <bruno@clisp.org>
19022
19023         * modules/stdbool: Change configure.ac, Makefile.am requirements.
19024         Simplify Include requirements. Add lib/stdbool.h.in to file list.
19025
19026 2003-01-09  Bruno Haible  <bruno@clisp.org>
19027
19028         * m4/stdbool.m4 (AM_STDBOOL_H): New macro.
19029
19030 2003-01-09  Bruno Haible  <bruno@clisp.org>
19031
19032         * lib/stdbool.h.in: New file.
19033
19034 2003-01-09  Bruno Haible  <bruno@clisp.org>
19035
19036         * gnulib-tool (func_all_modules): Ignore files ending in ~.
19037         * MODULES.html.sh: Likewise.
19038
19039 2003-01-08  Jim Meyering  <jim@meyering.net>
19040
19041         * lib/full-write.c: Undefine and define-away `const' after inclusion
19042         of errno.h, not before.  Suggestion from Bruno Haible.
19043
19044 2003-01-08  Bruno Haible  <bruno@clisp.org>
19045
19046         * modules/full-read: Depend on full-write.
19047
19048 2003-01-08  Bruno Haible  <bruno@clisp.org>
19049
19050         * lib/safe-read.c: Include specification header first, to ensure its
19051         selfcontainedness.
19052         * lib/full-write.c: Likewise.
19053
19054 2003-01-07  Jim Meyering  <jim@meyering.net>
19055
19056         * lib/full-write.c: Rework so that it may serve to define full_read,
19057         too.
19058         * lib/full-read.c: Simply #define FULL_READ and include full-write.c.
19059
19060 2003-01-07  Bruno Haible  <bruno@clisp.org>
19061
19062         * lib/strtoimax.c: Include <stdint.h> as an alternative to
19063         <inttypes.h>.
19064         * lib/xstrtol.h: Likewise.
19065         * lib/xstrtoimax.c: Likewise.
19066         * lib/xstrtoumax.c: Likewise.
19067         * lib/human.h: Likewise.
19068
19069         * lib/tempname.c: Include <inttypes.h> too. Avoids a compilation error
19070         on systems that have <inttypes.h> but not <stdint.h>.
19071
19072 2003-01-07  Bruno Haible  <bruno@clisp.org>
19073
19074         * MODULES.html.sh: Add copyright notice.
19075         (missed_files): Omit CVS directory entries.
19076         (func_module): Make it work with sed-3.02.
19077         * MODULES.txt: Remove file.
19078
19079 2003-01-06  Jim Meyering  <jim@meyering.net>
19080
19081         * lib/version-etc.c: Update year in translatable copyright string.
19082
19083 2003-01-03  Karl Berry  <karl@gnu.org>
19084
19085         * config/config.{guess,sub}: update from prep.
19086
19087 2003-01-02  Karl Berry  <karl@gnu.org>
19088
19089         * doc/COPYING.DOC: belatedly updated to 1.2.
19090
19091 2003-01-01  Karl Berry  <karl@gnu.org>
19092
19093         * gnulib-tool (func_verify_module): report module name $module in
19094         error message, not $1.
19095         * gnulib-tool (create-testdir): don't complain if destdir couldn't
19096         be created, only if it doesn't exist.
19097         * gnulib-tool (last_checkin_date): don't expand the $Date here.
19098
19099 2002-12-31  Paul Eggert  <eggert@twinsun.com>
19100
19101         * m4/memcoll.m4 (gl_MEMCOLL): Require AC_FUNC_MEMCMP.
19102
19103 2002-12-31  Paul Eggert  <eggert@twinsun.com>
19104
19105         * lib/memcoll.c (memcoll): Fall back on a simple algorithm using
19106         memcmp if strcoll doesn't work.
19107
19108 2002-12-31  Bruno Haible  <bruno@clisp.org>
19109
19110         * lib/utime.c (utime_null): No need to call ftruncate if the file was
19111         nonempty.
19112
19113 2002-12-31  Bruno Haible  <bruno@clisp.org>
19114
19115         * lib/memcoll.c (STRCOLL): New macro.
19116         (memcoll): Use it.
19117
19118 2002-12-31  Bruno Haible  <bruno@clisp.org>
19119
19120         * lib/localcharset.h: New file.
19121         * lib/localcharset.c: Include it.
19122         * lib/unicodeio.c: Likewise.
19123
19124 2002-12-31  Bruno Haible  <bruno@clisp.org>
19125
19126         * lib/getstr.h (getstr): Define, to avoid clash with libcurses.
19127         * lib/linebuffer.h (readline): Define, to avoid clash with libreadline.
19128
19129 2002-12-31  Bruno Haible  <bruno@clisp.org>
19130
19131         * lib/getline.h: Include <stddef.h>, for size_t.
19132
19133         * lib/unicodeio.h: Include <stddef.h>, for size_t.
19134         * lib/unicodeio.c: Don't include <stddef.h>.
19135
19136 2002-12-31  Bruno Haible  <bruno@clisp.org>
19137
19138         * lib/getdate.y (get_date): Test HAVE_STRUCT_TM_TM_ZONE, not
19139         HAVE_TM_ZONE.
19140
19141 2002-12-24  Karl Berry  <karl@gnu.org>
19142
19143         * config/config.guess: update from prep.
19144
19145 2002-12-24  Bruno Haible  <bruno@clisp.org>
19146
19147         General infrasructure.
19148         * m4/README: Rewritten.
19149         * m4/onceonly.m4: New file.
19150         * m4/onceonly_2_57.m4: New file.
19151
19152         Module atexit.
19153         * m4/atexit.m4: New file.
19154
19155         Module strtod.
19156         * m4/strtod.m4: New file.
19157
19158         Module strtol.
19159         * m4/strtol.m4: New file.
19160
19161         Module strtoul.
19162         * m4/strtoul.m4: New file.
19163
19164         Module memchr.
19165         * m4/memchr.m4: New file.
19166
19167         Module memcmp.
19168         * m4/memcmp.m4 (gl_PREREQ_MEMCMP): New macro.
19169         (jm_FUNC_MEMCMP): Invoke it.
19170
19171         Module memcpy.
19172         * m4/memcpy.m4: New file.
19173
19174         Module memmove.
19175         * m4/memmove.m4: New file.
19176
19177         Module memset.
19178         * m4/memset.m4: New file.
19179
19180         Module strcspn.
19181         * m4/strcspn.m4: New file.
19182
19183         Module strpbrk.
19184         * m4/strpbrk.m4: New file.
19185
19186         Module strstr.
19187         * m4/strstr.m4: New file.
19188
19189         Module strerror.
19190         * m4/strerror.m4: New file.
19191
19192         Module mktime.
19193         * m4/mktime.m4: Renamed from jm-mktime.m4.
19194         (gl_PREREQ_MKTIME): New macro.
19195         (gl_FUNC_MKTIME): Renamed from jm_FUNC_MKTIME. Invoke gl_PREREQ_MKTIME.
19196
19197         Module malloc.
19198         * m4/malloc.m4 (gl_PREREQ_MALLOC): New macro.
19199         (jm_FUNC_MALLOC): Use AC_FUNC_MALLOC. Invoke gl_PREREQ_MALLOC.
19200         Don't define HAVE_DONE_WORKING_MALLOC_CHECK, since nothing uses it.
19201
19202         Module realloc.
19203         * m4/realloc.m4 (gl_PREREQ_REALLOC): New macro.
19204         (jm_FUNC_REALLOC): Use AC_FUNC_REALLOC. Invoke gl_PREREQ_REALLOC.
19205         Don't define HAVE_DONE_WORKING_REALLOC_CHECK, since nothing uses it.
19206
19207         Module strftime.
19208         * m4/tm_gmtoff.m4: New file, extracted from strftime.m4.
19209         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Use AC_FUNC_STRFTIME.
19210         Don't test for bcopy (we are not emacs). Invoke AC_TYPE_MBSTATE_T and
19211         gl_TM_GMTOFF.
19212         (_jm_STRFTIME_PREREQS, jm_FUNC_GNU_STRFTIME): Use onceonly macros.
19213
19214         Module xalloc.
19215         * m4/xalloc.m4: New file.
19216
19217         Module alloca.
19218         * m4/alloca.m4: New file.
19219
19220         Module putenv.
19221         * m4/putenv.m4 (gl_PREREQ_PUTENV): New macro.
19222         (jm_FUNC_PUTENV): Invoke it.
19223
19224         Module setenv.
19225         * m4/setenv.m4 (gt_FUNC_SETENV): New macro.
19226         (gt_CHECK_VAR_DECL): Fix quoting error that led to infinite loop in m4
19227         when invoked twice.
19228         (gt_PREREQ_SETENV, gt_PREREQ_UNSETENV): New macros, replacing old
19229         gt_FUNC_SETENV.
19230
19231         Module memrchr.
19232         * m4/memrchr.m4: New file.
19233
19234         Module stpcpy.
19235         * m4/stpcpy.m4: New file.
19236
19237         Module strcase.
19238         * m4/strcase.m4: New file.
19239
19240         Module strdup.
19241         * m4/strdup.m4: New file.
19242
19243         Module strnlen.
19244         * m4/strnlen.m4: New file.
19245
19246         Module strndup.
19247         * m4/strndup.m4: New file.
19248
19249         Module xstrtod.
19250         * m4/xstrtod.m4: New file.
19251
19252         Module xstrtol.
19253         * m4/xstrtol.m4: New file.
19254
19255         Module getdate.
19256         * m4/getdate.m4: New file.
19257
19258         Module unlocked-io.
19259         * m4/unlocked-io.m4: Renamed from jm-glibc-io.m4.
19260         (jm_FUNC_GLIBC_UNLOCKED_IO): Invoke AC_GNU_SOURCE. Use onceonly macros.
19261         * m4/jm-glibc-io.m4n: Remove file.
19262
19263         Module long-options.
19264         * m4/long-options.m4: New file.
19265
19266         Module md5.
19267         * m4/md5.m4: New file.
19268
19269         Module sha.
19270         * m4/sha.m4: New file.
19271
19272         Module getstr.
19273         * m4/getstr.m4: New file.
19274
19275         Module getline.
19276         * m4/getline.m4 (gl_PREREQ_GETLINE): New macro.
19277         (AM_FUNC_GETLINE): Invoke AC_GNU_SOURCE. Use <stdlib.h>, not
19278         <sys/types.h>, for size_t. Use the function name gnu_getline, not
19279         simply getline. Infoke gl_PREREQ_GETLINE.
19280
19281         Module obstack.
19282         * m4/obstack.m4: New file.
19283
19284         Module hash.
19285         * m4/hash.m4: New file.
19286
19287         Module readtokens.
19288         * m4/readtokens.m4: New file.
19289
19290         Module strverscmp.
19291         * m4/strverscmp.m4: New file.
19292
19293         Module stdbool.
19294         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Add test for _Bool. Needed for
19295         OSF/1.
19296
19297         Module strtoll.
19298         * m4/strtoll.m4: New file.
19299
19300         Module strtoull.
19301         * m4/strtoull.m4: New file.
19302
19303         Module strtoimax.
19304         * m4/strtoimax.m4: New file.
19305
19306         Module strtoumax.
19307         * m4/strtoumax.m4: New file.
19308
19309         Module xstrtoimax.
19310         * m4/xstrtoimax.m4 (jm_XSTRTOIMAX): Renamed from
19311         jm_AC_PREREQ_XSTRTOIMAX.
19312         Moved the strtol prerequisites to strtol.m4.
19313         Moved the strtoll prerequisites to strtoll.m4.
19314         Moved the strtoimax prerequisites to strtoimax.m4.
19315
19316         Module xstrtoumax.
19317         * m4/xstrtoumax.m4 (jm_XSTRTOUMAX): Renamed from
19318         jm_AC_PREREQ_XSTRTOUMAX.
19319         Moved the strtoul prerequisites to strtoul.m4.
19320         Moved the strtoull prerequisites to strtoull.m4.
19321         Moved the strtoumax prerequisites to strtoumax.m4.
19322
19323         Module chown.
19324         * m4/chown.m4 (gl_PREREQ_CHOWN): New macro.
19325         (jm_FUNC_CHOWN): Use AC_FUNC_CHOWN. Invoke gl_PREREQ_CHOWN.
19326
19327         Module dup2.
19328         * m4/dup2.m4: New file.
19329
19330         Module ftruncate.
19331         * m4/ftruncate.m4 (gl_PREREQ_FTRUNCATE): New macro.
19332         (jm_FUNC_FTRUNCATE): Use AC_REPLACE_FUNCS. Invoke gl_PREREQ_FTRUNCATE.
19333
19334         Module getgroups.
19335         * m4/getgroups.m4 (gl_PREREQ_GETGROUPS): New macro.
19336         (jm_FUNC_GETGROUPS): Use AC_FUNC_GETGROUPS. Invoke gl_PREREQ_GETGROUPS.
19337
19338         Module gettimeofday.
19339         * m4/gettimeofday.m4 (gl_PREREQ_GETTIMEOFDAY): New macro.
19340         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Use onceonly macros. Invoke
19341         gl_PREREQ_GETTIMEOFDAY.
19342
19343         Module mkdir.
19344         * m4/mkdir-slash.m4 (gl_PREREQ_MKDIR): New macro.
19345         (UTILS_FUNC_MKDIR_TRAILING_SLASH): Invoke gl_PREREQ_MKDIR.
19346
19347         Module mkstemp.
19348         * m4/mkstemp.m4 (gl_PREREQ_MKSTEMP): New macro.
19349         (jm_PREREQ_TEMPNAME): New macro, from prereq.m4. Also invoke
19350         jm_AC_TYPE_UINTMAX_T.
19351         (UTILS_FUNC_MKSTEMP): Invoke gl_PREREQ_MKSTEMP and jm_PREREQ_TEMPNAME.
19352
19353         Module stat.
19354         * m4/stat.m4 (gl_PREREQ_STAT): New macro.
19355         (jm_FUNC_STAT): Use AC_FUNC_STAT. Invoke gl_PREREQ_STAT.
19356
19357         Module lstat.
19358         * m4/lstat.m4 (gl_PREREQ_LSTAT): New macro.
19359         (jm_FUNC_LSTAT): Use AC_FUNC_LSTAT. Invoke gl_PREREQ_LSTAT.
19360
19361         Module timespec.
19362         * m4/timespec.m4 (gl_TIMESPEC): New macro.
19363         (jm_CHECK_TYPE_STRUCT_TIMESPEC): Add check for <sys/time.h>.
19364         * m4/st_mtim.m4: Indentation.
19365
19366         Module nanosleep.
19367         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): New macro.
19368         (jm_FUNC_NANOSLEEP): Add check for <sys/time.h>. Invoke
19369         gl_PREREQ_NANOSLEEP.
19370
19371         Module regex.
19372         * m4/regex.m4 (jm_PREREQ_REGEX): New macro.
19373         (jm_INCLUDED_REGEX): Invoke jm_PREREQ_REGEX.
19374         (gl_REGEX): New macro.
19375
19376         Module rename.
19377         * m4/rename.m4 (gl_PREREQ_RENAME): New macro.
19378         (vb_FUNC_RENAME): Invoke gl_PREREQ_RENAME.
19379
19380         Module rmdir.
19381         * m4/rmdir.m4: New file.
19382
19383         Module utime.
19384         * m4/utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Use onceonly macros.
19385         * m4/utime.m4 (gl_PREREQ_UTIME): New macro.
19386         (jm_FUNC_UTIME): Invoke gl_PREREQ_UTIME.
19387
19388         Module dirname.
19389         * m4/dirname.m4: New file.
19390
19391         Module getopt.
19392         * m4/getopt.m4: New file.
19393
19394         Module unistd-safer.
19395         * m4/unistd-safer.m4: New file.
19396
19397         Module fnmatch.
19398         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Include <stdlib.h>, for exit()
19399         declaration.
19400         (gl_PREREQ_FNMATCH_EXTRA): New macro.
19401         (gl_FUNC_FNMATCH_POSIX): New macro.
19402         (gl_FUNC_FNMATCH_GNU): Renamed from AC_FUNC_FNMATCH_GNU. Invoke
19403         gl_PREREQ_FNMATCH_EXTRA. Use the function name gnu_fnmatch, not
19404         simply fnmatch.
19405
19406         Module exclude.
19407         * m4/exclude.m4: New file.
19408
19409         Module human.
19410         * m4/human.m4: New file.
19411
19412         Module acl.
19413         * m4/acl.m4: Nop.
19414
19415         Module backupfile.
19416         * m4/backupfile.m4: New file.
19417         * m4/d-ino.m4: Indentation.
19418
19419         Module fsusage.
19420         * m4/fsusage.m4 (gl_FSUSAGE): New macro.
19421         (jm_STATFS_TRUNCATES): New macro, from coreutils-4.5.4/configure.ac.
19422         (gl_PREREQ_FSUSAGE_EXTRA): New macro.
19423
19424         Module dirfd.
19425         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Invoke some AC_EGREP_CPP
19426         requirements.
19427
19428         Module euidaccess.
19429         * m4/euidaccess.m4: New file.
19430
19431         Module file-type.
19432         * m4/file-type.m4: New file.
19433
19434         Module fileblocks.
19435         * m4/fileblocks.m4: New file.
19436
19437         Module filemode.
19438         * m4/filemode.m4: New file.
19439
19440         Module isdir.
19441         * m4/isdir.m4: New file.
19442
19443         Module lchown.
19444         * m4/lchown.m4 (gl_PREREQ_LCHOWN): New macro.
19445         (jm_FUNC_LCHOWN): Invoke gl_PREREQ_LCHOWN.
19446
19447         Module makepath.
19448         * m4/makepath.m4: New file.
19449
19450         Module modechange.
19451         * m4/modechange.m4: New file.
19452
19453         Module mountlist.
19454         * m4/mountlist.m4: New file.
19455         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Use onceonly macros.
19456         Indentation.
19457
19458         Module path-concat.
19459         * m4/path-concat.m4: New file.
19460
19461         Module pathmax.
19462         * m4/pathmax.m4: New file.
19463
19464         Module same.
19465         * m4/same.m4: New file.
19466
19467         Module save-cwd.
19468         * m4/save-cwd.m4: New file.
19469
19470         Module savedir.
19471         * m4/savedir.m4: New file.
19472
19473         Module xgetcwd.
19474         * m4/xgetcwd.m4: New file.
19475         * m4/getcwd.m4 (AC_FUNC_GETCWD_NULL): Use onceonly macros.
19476
19477         Module xreadlink.
19478         * m4/xreadlink.m4: New file.
19479
19480         Module safe-read.
19481         * m4/safe-read.m4: New file.
19482
19483         Module safe-write.
19484         * m4/safe-write.m4: New file.
19485
19486         Module closeout.
19487         * m4/closeout.m4: New file.
19488
19489         Module stdio-safer.
19490         * m4/stdio-safer.m4: New file.
19491
19492         Module getpass.
19493         * m4/getpass.m4: New file.
19494
19495         Module getugroups.
19496         * m4/getugroups.m4: New file.
19497
19498         Module group-member.
19499         * m4/group-member.m4 (gl_PREREQ_GROUP_MEMBER): New macro.
19500         (jm_FUNC_GROUP_MEMBER): Invoke AC_GNU_SOURCE, gl_PREREQ_GROUP_MEMBER.
19501
19502         Module idcache.
19503         * m4/idcache.m4: New file.
19504
19505         Module userspec.
19506         * m4/userspec.m4: New file.
19507
19508         Module gettime.
19509         * m4/clock_time.m4: New file.
19510         * m4/gettime.m4: New file.
19511
19512         Module settime.
19513         * m4/settime.m4: New file.
19514
19515         Module posixtm.
19516         * m4/posixtm.m4: New file.
19517
19518         Module gethostname.
19519         * m4/gethostname.m4: New file.
19520
19521         Module canon-host.
19522         * m4/canon-host.m4: New file.
19523
19524         Module gettext.
19525         * m4/codeset.m4: New file, from gettext-0.11.5.
19526         * m4/gettext.m4: New file, from gettext-0.11.5.
19527         * m4/glibc21.m4: New file, from gettext-0.11.5.
19528         * m4/iconv.m4: New file, from gettext-0.11.5.
19529         * m4/intdiv0.m4: New file, from gettext-0.11.5.
19530         * m4/inttypes-pri.m4: New file, from gettext-0.11.5.
19531         * m4/inttypes.m4: New file, from gettext-0.11.5.
19532         * m4/inttypes_h.m4: New file, from gettext-0.11.5 with modifications.
19533         * m4/isc-posix.m4: New file, from gettext-0.11.5.
19534         * m4/lcmessage.m4: New file, from gettext-0.11.5.
19535         * m4/lib-ld.m4: New file, from gettext-0.11.5.
19536         * m4/lib-link.m4: New file, from gettext-0.11.5.
19537         * m4/lib-prefix.m4: New file, from gettext-0.11.5.
19538         * m4/progtest.m4: New file, from gettext-0.11.5.
19539         * m4/stdint_h.m4: New file, from gettext-0.11.5 with modifications.
19540         * m4/uintmax_t.m4: New file, from gettext-0.11.5 with modifications.
19541         * m4/ulonglong.m4: New file, from gettext-0.11.5 with modifications.
19542
19543         Module localcharset.
19544         * m4/localcharset.m4: New file.
19545
19546         Module hard-locale.
19547         * m4/hard-locale.m4: New file.
19548
19549         Module mbswidth.
19550         * m4/mbswidth.m4 (gl_MBSWIDTH): Renamed from jm_PREREQ_MBSWIDTH. Use
19551         onceonly macros.
19552         * m4/mbrtowc.m4: Add comment.
19553
19554         Module memcasecmp.
19555         * m4/memcasecmp.m4: New file.
19556
19557         Module memcoll.
19558         * m4/memcoll.m4: New file.
19559
19560         Module unicodeio.
19561         * m4/unicodeio.m4: New file.
19562
19563         Module rpmatch.
19564         * m4/rpmatch.m4: New file.
19565
19566         Module yesno.
19567         * m4/yesno.m4: New file.
19568
19569         Module exitfail.
19570         * m4/exitfail.m4: New file.
19571
19572         Module c-stack.
19573         * m4/c-stack.m4 (gl_C_STACK): New macro.
19574         (jm_PREREQ_C_STACK): Check for <sys/time.h>. Use onceonly macros.
19575
19576         Module error.
19577         * m4/error.m4 (gl_ERROR): New macro.
19578         (jm_PREREQ_ERROR): Use onceonly macros.
19579
19580         Module fatal.
19581         * m4/fatal.m4: New file.
19582
19583         Module getloadavg.
19584         * m4/getloadavg.m4 (AC_FUNC_GETLOADAVG): Use onceonly macros.
19585         (gl_FUNC_GETLOADAVG, gl_PREREQ_GETLOADAVG): New macros.
19586
19587         Module getpagesize.
19588         * m4/getpagesize.m4: New file.
19589
19590         Module getusershell.
19591         * m4/getusershell.m4: New file.
19592
19593         Module physmem.
19594         * m4/physmem.m4: New file.
19595
19596         Module posixver.
19597         * m4/posixver.m4: New file.
19598
19599         Module quotearg.
19600         * m4/quotearg.m4: New file.
19601
19602         Module quote.
19603         * m4/quote.m4: New file.
19604
19605         Module readutmp.
19606         * m4/readutmp.m4: New file, based on jm_PREREQ_READUTMP from prereq.m4.
19607
19608         Module sig2str.
19609         * m4/sig2str.m4: New file.
19610
19611         Other.
19612         * m4/longlong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Remove, moved to
19613         ulonglong.m4.
19614         * m4/intmax_t.m4: New file.
19615         * m4/d-type.m4: Indentation.
19616         * m4/jm-macros.m4: Update.
19617         * m4/prereq.m4 (jm_PREREQ): Update.
19618         (jm_PREREQ_ADDEXT): Remove, obsoleted by backupfile.m4.
19619         (jm_PREREQ_CANON_HOST): Remove, obsoleted by canon-host.m4.
19620         (jm_PREREQ_DIRNAME): Remove, obsoleted by dirname.m4.
19621         (jm_PREREQ_EXCLUDE): Remove, obsoleted by exclude.m4.
19622         (jm_PREREQ_GETPAGESIZE): Remove, obsoleted by getpagesize.m4.
19623         (jm_PREREQ_HARD_LOCALE): Remove, obsoleted by hard-locale.m4.
19624         (jm_PREREQ_HASH): Remove, obsoleted by hash.m4.
19625         (jm_PREREQ_HUMAN): Remove, obsoleted by human.m4.
19626         (jm_PREREQ_MEMCHR): Remove, obsoleted by memchr.m4.
19627         (jm_PREREQ_PHYSMEM): Remove, obsoleted by physmem.m4.
19628         (jm_PREREQ_POSIXVER): Remove, obsoleted by posixver.m4.
19629         (jm_PREREQ_QUOTEARG): Remove, obsoleted by quotearg.m4.
19630         (jm_PREREQ_READUTMP): Remove, obsoleted by readutmp.m4.
19631         (jm_PREREQ_REGEX): Remove, obsoleted by regex.m4.
19632         (jm_PREREQ_STRNLEN): Remove, obsoleted by strnlen.m4.
19633         (jm_PREREQ_TEMPNAME): Remove, obsoleted by mkstemp.m4.
19634         (jm_PREREQ_XGETCWD): Remove, obsoleted by xgetcwd.m4.
19635         (jm_PREREQ_XREADLINK): Remove, obsoleted by xreadlink.m4.
19636         * m4/readdir.m4 (jm_FUNC_READDIR): Use onceonly macros.
19637
19638 2002-12-24  Bruno Haible  <bruno@clisp.org>
19639
19640         * MODULES.txt: Update according to m4/ changes.
19641
19642         Module gettext.
19643         * config.rpath: New file, from gettext-0.11.5.
19644
19645         * modules/*: New module descriptions.
19646         * gnulib-tool: New file.
19647         * MODULES.html.sh: New file.
19648
19649 2002-12-21  Karl Berry  <karl@gnu.org>
19650
19651         * doc/fdl.texi: update to version 1.2.
19652
19653 2002-12-19  Karl Berry  <karl@gnu.org>
19654
19655         * config/config.guess: update from prep.
19656
19657 2002-12-18  Bruno Haible  <bruno@clisp.org>
19658
19659         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't test for localtime_r.
19660         * m4/jm-mktime.m4 (jm_FUNC_MKTIME): Likewise.
19661
19662 2002-12-17  Bruno Haible  <bruno@clisp.org>
19663
19664         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Remove checks for limits.h,
19665         stdlib.h, string.h.
19666
19667 2002-12-17  Bruno Haible  <bruno@clisp.org>
19668
19669         * lib/canon-host.c (strdup): Remove unused declaration.
19670
19671         * lib/fsusage.c: Include full_read.h.
19672         (get_fs_usage): Use full_read instead of safe_read.
19673
19674         * lib/utime.c (utime_null): Use SAFE_READ_ERROR.
19675
19676 2002-12-12  Karl Berry  <karl@gnu.org>
19677
19678         * config/config.guess: update from prep.
19679
19680 2002-12-11  Bruno Haible  <bruno@clisp.org>
19681
19682         * m4/setenv.m4: New file, from gettext-0.11.5.
19683
19684 2002-12-11  Bruno Haible  <bruno@clisp.org>
19685
19686         * lib/setenv.h: Rewritten to cope with systems that have setenv() but
19687         not unsetenv().
19688         * lib/setenv.c, unsetenv.c: Taken from glibc-2.2.4 with the following
19689         modifications:
19690
19691         2002-12-11  Bruno Haible  <bruno@clisp.org>
19692
19693                 * setenv.c (alloca): Fall back to malloc.
19694                 (freea): New macro.
19695                 (setenv): Use freea() to free memory allocated with alloca().
19696
19697         2002-11-13  Bruno Haible  <bruno@clisp.org>
19698
19699                 * setenv.c (compar_fn_t, __add_to_environ, setenv): Use ANSI C
19700                 function declarations.
19701                 * unsetenv.c (unsetenv): Likewise.
19702
19703         2002-03-04  Bruno Haible  <bruno@clisp.org>
19704
19705                 Portability to AIX 4.3.3.
19706                 * unsetenv.c: New file, extracted from setenv.c.
19707                 * setenv.c: Move the unsetenv() function to unsetenv.c.
19708
19709         2001-12-20  Bruno Haible  <bruno@clisp.org>
19710
19711                 * setenv.c (__add_to_environ): Don't call realloc(NULL,...),
19712                 use malloc instead. For SunOS 4.
19713
19714         2001-12-11  Bruno Haible  <bruno@clisp.org>
19715
19716                 * setenv.c: Declare alloca.
19717                 (compar_fn_t): New typedef.
19718                 (KNOWN_VALUE, STORE_VALUE): Use it.
19719
19720         * lib/Makefile.am (libfetish_a_SOURCES): Add setenv.c, unsetenv.c,
19721         setenv.h.
19722
19723 2002-12-10  Paul Eggert  <eggert@twinsun.com>
19724
19725         Port exclude.c and exclude.h to more non-GNU systems, e.g. Solaris 7.
19726         * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE, EXCLUDE_WILDCARDS):
19727         Choose values that are less likely to collide with system fnmatch
19728         options.
19729         * lib/exclude.c (FNM_CASEFOLD, FNM_LEADING_DIR): Define to 0 if not
19730         defined (e.g., a pure POSIX system).
19731         (EXCLUDE_macros_do_not_collide_with_FNM_macros): Use FNM_PATHNAME
19732         instead of FNM_FILE_NAME, for compatibility with pure POSIX sytems.
19733
19734 2002-12-06  Paul Eggert  <eggert@twinsun.com>
19735
19736         Undo the 2001-07-02 change for jm-glibc-io, as it was too much of
19737         a pain in practice to deal with generated m4 files.  This change
19738         goes together with the 2002-12-04 unlocked-io.h change in ../lib.
19739
19740         * m4/Makefile.am.in (Makefile.am): Don't mention jm-glibc-io.m4n
19741         and jm-glibc-io.m4, as they are no longer a special case.
19742         * m4/jm-glibc-io.m4: Rename from jm-glibc-io.m4n, and remove the
19743         kludge and the auto-generation stuff.  Check only whether the
19744         functions are declared, not whether they exist, since older hosts
19745         that don't declare the functions can't use the optimization anyway.
19746
19747 2002-12-06  Jim Meyering  <jim@meyering.net>
19748
19749         * lib/error.c: Be consistent: change `#ifndef _LIBC' to `#if !_LIBC'.
19750
19751         Merge in changes from libc's misc/error.c, in preparation
19752         for the merge of gnulib's changes back into libc.
19753
19754         * lib/error.c (_): Define only if not already defined.
19755         Move definition to follow all #include directives.
19756         Include unlocked-io.h only if !_LIBC.
19757         [_LIBC]: Include <libio/libioP.h>.
19758         [USE_IN_LIBIO]: Include <libio/iolibio.h>
19759         (fflush): Tweak definition to use INTUSE.
19760         (putc): Define.
19761
19762 2002-12-05  Paul Eggert  <eggert@twinsun.com>
19763
19764         * lib/alloca.c [defined emacs]: Include "lisp.h".
19765         (xalloc_die) [defined emacs]: New macro.
19766         (free) [defined emacs && defined EMACS_FREE]: Define to EMACS_FREE.
19767         [! defined emacs]: Include <xalloc.h>.
19768         (POINTER_TYPE) [!defined POINTER_TYPE]: New macro.
19769         (pointer): Typedef to POINTER_TYPE *.
19770         (malloc): Remove decl; we now always use xmalloc.
19771         (alloca): Use old-style definition, since Emacs needs this.
19772         Check for arithmetic overflow when computing combined size.
19773
19774 2002-12-04  Paul Eggert  <eggert@twinsun.com>
19775
19776         Do not generate unlocked-io.h automatically, since it's easier to
19777         maintain it by hand.
19778
19779         * lib/unlocked-io.h: New file, from GNU diffutils,
19780         but with proper copyright notice and attribution.
19781         * lib/gen-uio: Remove.
19782         * lib/Makefile.am: Add copyright notice.
19783         (libfetish_a_SOURCES): Add unlocked-io.h.
19784         (BUILT_SOURCES, all-local): Remove unlocked-io.h.
19785         (DISTCLEANFILES, io_functions): Remove macros.
19786         (EXTRA_DIST): Remove gen_uio.
19787         (unlocked-io.h): Remove rule.
19788
19789 2002-12-04  Jim Meyering  <jim@meyering.net>
19790
19791         Reflect the fact that stat.c and lstat.c are no longer generated.
19792         * lib/Makefile.am (BUILT_SOURCES): Remove stat.c and lstat.c.
19793         (DISTCLEANFILES): Likewise.
19794         (EXTRA_DIST): Likewise.
19795         (all_local): Don't depend on stat.c or lstat.c.
19796         (stat.c, lstat.c): Remove rules.
19797         (EXTRA_DIST): Remove xstat.in.
19798
19799         * lib/xstat.in: Remove file.  Contents moved into stat.c.
19800         * lib/stat.c: New file.  Contents mostly from xstat.in.
19801         * lib/stat.c: Rework so that it may serve to define rpl_lstat, too.
19802         * lib/lstat.c: New file. Simply #define LSTAT and include stat.c.
19803
19804         * lib/safe-read.c: Rework so that it may serve to define safe_write,
19805         too.
19806         * lib/safe-write.c: Simply #define SAFE_WRITE and include safe-read.c.
19807
19808 2002-12-03  Jim Meyering  <jim@meyering.net>
19809
19810         * lib/safe-read.c, safe-write.c: Change variable names and comments,
19811         but not semantics, to minimize the differences between these two files.
19812         (safe_read): Change comment to mention SAFE_READ_ERROR.
19813
19814         * lib/safe-read.c (IS_EINTR): Define.
19815         (safe_read): Use IS_EINTR in place of in-function cpp directives.
19816
19817 2002-12-02  Jim Meyering  <jim@meyering.net>
19818
19819         * lib/safe-read.c (EINTR): Define.
19820         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
19821         (INT_MAX): Provide fallback.
19822         (safe_read): Rewrite to iterate IFF the read fails with EINTR.
19823
19824         * lib/safe-read.h (SAFE_READ_ERROR): Define.
19825
19826 2002-12-02  Bruno Haible  <bruno@clisp.org>
19827
19828         * lib/safe-write.c (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM):
19829         Define, taken from safe-read.c.
19830         (INT_MAX): Provide fallback.
19831         (safe_write): Rewrite to iterate IFF the write fails with EINTR.
19832         * lib/safe-write.h (SAFE_WRITE_ERROR): Define.
19833
19834         * lib/safe-read.c (EINTR): Remove definition.
19835         (safe_read): Don't use EINTR if it is absent.
19836
19837 2002-12-01  Jim Meyering  <jim@meyering.net>
19838
19839         * lib/safe-read.c: (safe_read): Also exit the loop when read returns
19840         zero.
19841         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM, INT_MAX): Define.
19842
19843 2002-11-27  Paul Eggert  <eggert@twinsun.com>
19844
19845         * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
19846         hash_find_entry, hash_rehash): Replace `if (limit <= value) abort ();'
19847         with `if (! (value < limit)) abort ();', for readability.
19848
19849 2002-11-26  Karl Berry  <karl@gnu.org>
19850
19851         * lib/strdup.c: copy from libc again, with jim's ok.
19852         * lib/.cppi-disable: re-add strdup.c
19853
19854 2002-11-25  Karl Berry  <karl@gnu.org>
19855
19856         * lib/strtoll.c: copy from libc, meaning we now #include <strtol.c>
19857         instead of "strtol.c".
19858
19859 2002-11-25  Karl Berry  <karl@gnu.org>
19860
19861         * config/install-sh: update from automake for variable quoting, $0 in
19862         error msgs, etc.
19863
19864         * config/srclist.txt ($LIBCSRC/time/mktime.c lib gpl): new entry.
19865         * config/srclist.txt ($LIBCSRC/sysdeps/generic/strtoll.c lib gpl): new
19866         entry.
19867
19868 2002-11-25  Jim Meyering  <jim@meyering.net>
19869
19870         * lib/mktime.c: Sync from libc, now that it has the latest fix.
19871
19872 2002-11-24  Karl Berry  <karl@gnu.org>
19873
19874         * lib/error.c, getopt.c, getopt.h, getopt1.c, obstack.c, regex.c,
19875         regex.h, strdup.c, strtoll.c, tempname.c: change license to gpl.
19876
19877 2002-11-24  Jim Meyering  <jim@meyering.net>
19878
19879         Update from coreutils:
19880
19881         * lib/mktime.c: Merge in changes from libc.
19882
19883         Avoid a link-time failure on some Linux systems.
19884         * lib/mktime.c (STATIC): Define to be empty (_LIBC) or `static'
19885         (otherwise).
19886         (__mon_yday): Declare with the STATIC attribute.
19887         (__mktime_internal): Likewise.
19888         Based on a report from Greg Schafer.
19889
19890 2002-11-23  Jim Meyering  <jim@meyering.net>
19891
19892         * lib/sig2str.c (str2signum, sig2str): Avoid a warning from gcc:
19893         Use `unsigned', not `int', as type of index.
19894
19895         * lib/xstat.in [@BEGIN_LSTAT_ONLY@]: Include <string.h>.
19896
19897         * lib/fsusage.c: Remove unneeded parentheses around operands of
19898         `defined'.
19899
19900 2002-11-22  Paul Eggert  <eggert@twinsun.com>
19901
19902         * lib/quotearg.h: Allow multiple inclusion by surrounding with
19903         "#ifndef QUOTEARG_H_".  Include <stddef.h>, for size_t,
19904         so that we can be included first.
19905         (PARAMS): Remove; we now assume C89 or later.  All uses removed.
19906         * lib/quotearg.c: Include quotearg.h immediately after config.h.
19907         No need to include stddef.h or sys/types.h any more.
19908         Surround local include files with "", not "<>".
19909         Assume HAVE_LIMITS_H unconditionally, as we assume C89.
19910         Similarly, assume HAVE_C_BACKSLASH_A, CHAR_BIT, UCHAR_MAX, UINT_MAX,
19911         HAVE_STDLIB_H, HAVE_STRING_H, STDC_HEADERS.
19912         (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
19913         (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
19914         (ISPRINT): Remove; no longer needed now that we assume C89.
19915
19916         (clone_quoting_options, quotearg_buffer, quotearg_n_options):
19917         Preserve errno.
19918
19919         (quotearg_buffer_restyled, quotearg_n, quotearg_n_style,
19920         quotearg_char): Use SIZE_MAX rather than
19921         (size_t) -1 when we are talking about "infinity".
19922
19923         (quotearg_buffer_restyled): Fix bug when quoting trigraphs.
19924
19925 2002-11-22  Paul Eggert  <eggert@twinsun.com>
19926
19927         * lib/hash.c: Avoid use of <assert.h>, as the GNU Coding Standards
19928         hint that one should use `if (! x) abort ();' rather than `assert
19929         (x);', and anyway it's one less thing to worry about configuring.
19930         (hash_lookup, hash_get_first, hash_get_next, hash_find_entry,
19931         hash_rehash, hash_insert): Use abort rather than assert.
19932
19933 2002-11-22  Bruno Haible  <bruno@clisp.org>
19934
19935         * lib/safe-read.h: Assume C89. Add comments.
19936         (safe_read): Change return type to size_t.
19937         * lib/safe-read.c (safe_read): Change return type to size_t. Handle
19938         byte counts > SSIZE_MAX correctly.
19939         * lib/safe-write.h: New file.
19940         * lib/safe-write.c: New file.
19941         * lib/full-read.h: New file.
19942         * lib/full-read.c: New file.
19943         * lib/full-write.h: Assume C89. Add comments.
19944         * lib/full-write.c: Include safe-write.h.
19945         (full_write): Rewritten to use safe_write.
19946         Suggested by Jim Meyering and Paul Eggert.
19947
19948 2002-11-21  Jim Meyering  <jim@meyering.net>
19949
19950         * lib/strdup.c (strdup): Tweak comment and initial #if/#include.
19951
19952         Merge in changes from the coreutils.
19953
19954         2002-09-25  Paul Eggert  <eggert@twinsun.com>
19955         * lib/fsusage.c [! HAVE_INTTYPES_H && HAVE_STDINT_H] Include
19956         <stdint.h>.
19957         (UINTMAX_MAX) [!defined UINTMAX_MAX]: New macro.
19958         (PROPAGATE_ALL_ONES): Work even if X is unsigned and narrower than
19959         int.  Work more efficiently if X is the same width as uintmax_t.
19960         Do not compare X to -1, to avoid bogus compiler warning.
19961         (get_fs_usage): (uintmax_t) -1 -> UINTMAX_MAX to avoid a cast.
19962         Don't assume that f_frsize and f_bsize are the same type.
19963
19964         * lib/mountlist.c: #undef MNT_IGNORE before defining it, to avoid
19965         warning on FreeBSD.
19966
19967         * lib/makepath.c (make_path): Restore umask *before* creating the final
19968         component.
19969         (make_path): Minor reformatting.
19970
19971         * lib/xmalloc.c: Adjust to work with new autoconf macros,
19972         AC_FUNC_MALLOC and AC_FUNC_REALLOC: test #ifndef
19973         HAVE_MALLOC/HAVE_REALLOC.
19974
19975         * lib/mountlist.h (ME_DUMMY): Don't count entries of type `auto' as
19976         dummy ones.  At least on GNU/Linux systems, `auto' means something
19977         else.
19978         From Michael Stone.
19979
19980 2002-11-21  Bruno Haible  <bruno@clisp.org>
19981
19982         Remove case insensitive option matching.
19983         * lib/argmatch.h (argcasematch): Remove declaration.
19984         (ARGCASEMATCH): Remove macro.
19985         (__xargmatch_internal): Remove case_sensitive argument.
19986         (XARGMATCH): Update.
19987         (XARGCASEMATCH): Remove macro.
19988         * lib/argmatch.c (argmatch): Renamed from __argmatch_internal. Remove
19989         case_sensitive argument.
19990         (argcasematch): Remove function.
19991         (__xargmatch_internal): Remove case_sensitive argument.
19992         (main): Use XARGMATCH instead of XARGCASEMATCH.
19993
19994         * lib/xmalloc.c: Change compile-time error message. Add comment about
19995         required autoconf version.
19996
19997 2002-11-20  Paul Eggert  <eggert@twinsun.com>
19998
19999         Merge argmatch cleanups from Bison.  Assume C89.
20000
20001         * lib/argmatch.c: Include config.h here, not in argmatch.h.
20002         Include stdlib.h, for EXIT_FAILURE.
20003         Always include <string.h>, since we assume C89.
20004         (EXIT_FAILURE): Remove pre-C89 bug workaround.
20005         * lib/argmatch.h: Do not include <config.h> or <sys/types.h>.
20006         Include <stddef.h> instead, since it's all we need for size_t.
20007         (PARAMS): Remove.  All uses removed.
20008         (ARRAY_CARDINALITY): Do not bother to #undef.
20009         (ARRAY_CARDINALITY, ARGMATCH, ARGCASEMATCH, invalid_arg,
20010         ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
20011         Remove unnecessary parentheses.
20012         (ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
20013         Insert necessary parentheses.
20014         (ARGMATCH_CONSTRAINT, ARGMATCH_VERIFY): New macros.
20015         (ARGMATCH_ASSERT): Use ARGMATCH_CONSTRAINT.
20016
20017 2002-11-19  Bruno Haible  <bruno@clisp.org>
20018
20019         * lib/mbswidth.c: Include mbswidth.h right at the beginning.
20020         * lib/mbswidth.h: Include <stddef.h>, for size_t.
20021
20022         * lib/mbswidth.h (PARAMS): Remove macro.
20023         (mbswidth, mbsnwidth): Use ANSI C function declarations.
20024         * lib/mbswidth.c (mbswidth, mbsnwidth): Likewise.
20025
20026         * lib/gcd.h (PARAMS): Remove macro.
20027         (gcd): Use ANSI C function declarations.
20028         * lib/gcd.c (gcd): Likewise.
20029
20030 2002-11-15  Bruno Haible  <bruno@clisp.org>
20031
20032         * lib/strcspn.c: Include <stddef.h>.
20033         (strcspn): Use ANSI C function declaration. Change return type to
20034         size_t. Use NULL.
20035         * lib/strpbrk.c: Minimize diffs to glibc. Include <stddef.h>.
20036         (strpbrk): Use NULL.
20037         * lib/strpbrk.h (PARAMS): Remove macro.
20038         (strpbrk): Use ANSI C function declaration.
20039         * lib/strstr.c: Don't include <sys/types.h>.
20040         * lib/strstr.h (PARAMS): Remove macro.
20041         (strstr): Use ANSI C function declarations.
20042
20043 2002-11-14  Karl Berry  <karl@gnu.org>
20044
20045         * config/mkinstalldirs: `do' on separate line, instead of
20046         `for var; do'.
20047
20048 2002-11-06  Bruno Haible  <bruno@clisp.org>
20049
20050         * lib/gcd.h (gcd): Change argument type to 'unsigned long'.
20051         * lib/gcd.c (gcd): Likewise.
20052
20053 2002-11-05  Bruno Haible  <bruno@clisp.org>
20054
20055         * lib/gcd.h: New file, from gettext-0.11.5.
20056         * lib/gcd.c: New file, from gettext-0.11.5.
20057
20058 2002-11-05  Bruno Haible  <bruno@clisp.org>
20059
20060         * lib/error.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
20061         * lib/getopt.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
20062         * lib/obstack.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
20063         * lib/regex.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
20064
20065         * lib/argmatch.c: Include gettext.h instead of <locale.h> and
20066         <libintl.h>.
20067         * lib/makepath.c: Include gettext.h instead of <locale.h> and
20068         <libintl.h>.
20069
20070         * lib/closeout.c: Include gettext.h instead of <libintl.h>.
20071         * lib/human.c: Include gettext.h instead of <libintl.h>.
20072         * lib/quotearg.c: Include gettext.h instead of <libintl.h>.
20073         * lib/rpmatch.c: Include gettext.h instead of <libintl.h>.
20074         * lib/unicodeio.c: Include gettext.h instead of <libintl.h>.
20075         * lib/userspec.c: Include gettext.h instead of <libintl.h>.
20076         * lib/version-etc.c: Include gettext.h instead of <libintl.h>.
20077         * lib/xmalloc.c: Include gettext.h instead of <libintl.h>.
20078         (textdomain): Remove definition.
20079         * lib/xmemcoll.c: Include gettext.h instead of <libintl.h>.
20080
20081         * lib/long-options.c: Remove include of <libintl.h> and definition of
20082         _.
20083         * lib/same.c: Remove include of <libintl.h> and definition of _.
20084
20085 2002-11-04  Owen Taylor  <otaylor@redhat.com>
20086
20087         * lib/config.charset: A few additions for Solaris.
20088
20089 2002-11-04  Bruno Haible  <haible@clisp.cons.org>
20090
20091         Make it possible to build libcharset with CC=gcc CFLAGS="-x c++".
20092         * lib/localcharset.c (locale_charset): Declare as extern "C".
20093
20094 2002-11-04  Bruno Haible  <haible@clisp.cons.org>
20095
20096         * lib/config.charset: msdos in uk_UA uses CP1125.
20097
20098 2002-11-04  Bruno Haible  <bruno@clisp.org>
20099
20100         * lib/stpcpy.h: New file, from GNU gettext-0.11.5.
20101         * lib/strcase.h: New file, from GNU gettext-0.11.5.
20102         * lib/strpbrk.h: New file, from GNU gettext-0.11.5.
20103         * lib/strstr.h: New file, from GNU gettext-0.11.5.
20104         * lib/xgetcwd.h: New file, from GNU gettext-0.11.5.
20105
20106 2002-11-04  Bruno Haible  <bruno@clisp.org>
20107
20108         * lib/localcharset.c (locale_charset): Don't return an empty string.
20109
20110 2002-11-04  Bruno Haible  <bruno@clisp.org>
20111
20112         * lib/localcharset.c (get_charset_aliases): Add more Windows specific
20113         aliases.
20114
20115 2002-11-04  Bruno Haible  <bruno@clisp.org>
20116
20117         * lib/config.charset: Update for newest glibc. Add canonical names
20118         ISO-8859-14, KOI8-T, TCVN5712-1, GEORGIAN-PS.
20119
20120 2002-11-04  Bruno Haible  <bruno@clisp.org>
20121
20122         * lib/config.charset: Add support for NetBSD.
20123
20124 2002-11-04  Bruno Haible  <bruno@clisp.org>
20125
20126         * lib/config.charset [msdosdjgpp]: For Russian, use CP866.
20127
20128 2002-11-01  Bruno Haible  <bruno@clisp.org>
20129
20130         * configure.in: Add AC_CONFIG_AUX_DIR call.
20131         (AC_OUTPUT): Add m4/Makefile, lib/Makefile. Remove doc/Makefile,
20132         test/Makefile.
20133         * Makefile.in (subdirs): Add m4, lib. Remove doc, test.
20134
20135 2002-09-28  Karl Berry  <karl@gnu.org>
20136
20137         * config/srclist.txt: can't copy install-sh/mkinstalldirs from
20138         installed automake until the next release, since changes have been
20139         made.
20140
20141 2002-09-25  Karl Berry  <karl@gnu.org>
20142
20143         * lib/strdup.c: copy from libc/string (via ../config/srclist*).
20144         * lib/getopt*: copy from libc/posix.
20145         * lib/gettext.h: copy from gettext.
20146         * lib/.cppi-disable: add strdup.c, gettext.h.
20147
20148 2002-09-25  Karl Berry  <karl@gnu.org>
20149
20150         * config/srclist.txt: enable gettext.h check.
20151         * config/config.{guess,sub}: update from prep.
20152         * config/depcomp, install-sh, mdate-sh, missing, mkinstalldirs: update
20153                 from automake 1.6.3.
20154         See srclist*.
20155
20156 2002-08-23  Stefan Monnier  <monnier@cs.yale.edu>
20157
20158         * regex.c (PATFETCH): Remove the translating fetch.
20159         (PATFETCH_RAW): Rename to PATFETCH.
20160         (set_image_of_range): New fun.
20161         (SET_RANGE_TABLE_WORK_AREA): Use it.
20162         (regex_compile): Don't translate the pattern chars so eagerly.
20163         Only do it when inserting an `exactn' bytecode or when handling
20164         a char-range.
20165         (mutually_exclusive_p): Avoid empty statement.
20166
20167 2002-07-06  Jim Meyering  <meyering@lucent.com>
20168
20169         * m4/README: Don't mention Makefile.am.in.
20170         Outline how I've tested changes to .m4 files.  Yep, it's a pain.
20171
20172 2002-07-01  Jim Meyering  <meyering@lucent.com>
20173
20174         * lib/c-stack.c: Include sys/time.h.
20175         From Volker Borchert.
20176
20177 2002-06-26  Paul Eggert  <eggert@twinsun.com>
20178
20179         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for btowc.
20180
20181 2002-06-26  Paul Eggert  <eggert@twinsun.com>
20182
20183         * lib/fnmatch.c, fnmatch_loop.c (WIDE_CHAR_SUPPORT):
20184         New macro.  Use it uniformly instead of
20185         (defined HAVE_WCTYPE_H && defined HAVE_WCHAR_H).
20186         It also uses HAVE_BTOWC, to fix a porting bug on Solaris 2.5.1
20187         reported by Vin Shelton.
20188
20189 2002-06-22  Paul Eggert  <eggert@twinsun.com>
20190
20191         * lib/c-stack.h (segv_handler, c_stack_action) [! defined SA_SIGINFO]:
20192         Do not assume SA_SIGINFO behavior.
20193         Bug reported by Jim Meyering on NetBSD 1.5.2.
20194
20195 2002-06-22  Jim Meyering  <meyering@lucent.com>
20196
20197         * m4/c-stack.m4: New file, from diffutils-2.8.2.
20198         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_C_STACK.
20199
20200         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Don't require AC__GNU_SOURCE,
20201         now that configure.ac uses AC_GNU_SOURCE.
20202         (jm_MACROS): Rename: jm_FUNC_FNMATCH to AC_FUNC_FNMATCH_GNU.
20203         * m4/prereq.m4 (jm_PREREQ_EXCLUDE): Likewise, wrt jm_FUNC_FNMATCH.
20204
20205         Update to latest tools.  Suggestions from Paul Eggert.
20206         * m4/stdbool.m4: New file, from diffutils-2.8.2.
20207         * m4/gnu-source.m4: Update from diffutils-2.8.2.
20208         * m4/fnmatch.m4: Likewise.
20209         * m4/prereq.m4: Change each use of AC_CHECK_HEADERS(stdbool.h)
20210         to AC_HEADER_STDBOOL
20211
20212 2002-06-22  Jim Meyering  <meyering@lucent.com>
20213
20214         * lib/fnmatch.c (ISASCII, ISPRINT): Undefine, to avoid warning about
20215         redefinition due to Solaris 2.6's definition in /usr/include/sys/euc.h.
20216
20217 2002-06-22  Jim Meyering  <meyering@lucent.com>
20218
20219         * lib/c-stack.c, lib/c-stack.h: New files, from diffutils-2.8.2.
20220
20221         * lib/exitfail.c, exitfail.h: Likewise.
20222         * lib/Makefile.am (libfetish_a_SOURCES): Add exitfail.c and exitfail.h.
20223
20224         * lib/Makefile.am (libfetish_a_SOURCES): Add fnmatch_.h in place
20225         of fnmatch.h.
20226         (EXTRA_DIST): Add fnmatch_loop.c.
20227         (libfetish_a_SOURCES): Add c-stack.c and c-stack.h.
20228
20229         * lib/fnmatch_loop.c: New file, from diffutils-2.8.2.
20230         * lib/fnmatch.c: Update from diffutils-2.8.2.
20231         * lib/fnmatch_.h: New file.  From diffutils-2.8.2.
20232         * lib/fnmatch.h: Remove file.
20233
20234 2002-06-21  Jim Meyering  <meyering@lucent.com>
20235
20236         * m4/c-bs-a.m4: Add comment, from diffutils-2.8.2.
20237         * m4/mbrtowc.m4: Likewise.
20238
20239         * m4/mbstate_t.m4: Update from diffutils-2.8.2.
20240         * m4/mbswidth.m4: Reflect name change:
20241         s/AC_MBSTATE_T/AC_TYPE_MBSTATE_T.
20242         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Likewise.
20243
20244         * m4/lib-link.m4: Update from gettext-0.11.2.
20245         * m4/gettext.m4: Likewise.
20246
20247         * m4/jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for hurd.h.
20248         From Alfred M. Szmidt.
20249
20250 2002-06-18  Paul Eggert  <eggert@twinsun.com>
20251
20252         * lib/file-type.h: Report an error if neither S_ISREG nor
20253         S_IFREG is defined, instead of using a test specific to glibc
20254         2.2.  This should be safe, since POSIX requires S_ISREG and
20255         Unix Version 7 had S_IFREG.  We don't need to check for
20256         <sys/types.h> since we don't use any symbols that it defines.
20257
20258 2002-06-15  Richard Dawe  <richdawe@bigfoot.com>
20259
20260         * lib/Makefile.am (lstat.c, stat.c, .sin.sed): Use t-$@, rather than
20261         $@-t, so that each temporary file name is unique and valid in the first
20262         8 characters, for operation under DOS.
20263
20264 2002-06-15  Paul Eggert  <eggert@twinsun.com>
20265
20266         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for st_author.
20267
20268 2002-06-15  Jim Meyering  <meyering@lucent.com>
20269
20270         Work even with DJGPP 2.03, which lacks support for symlinks.
20271         From Richard Dawe.
20272         * lib/xstat.in (S_ISLNK): Define to 0 if neither S_ISLNK nor S_IFLNK
20273         is defined.
20274         * lib/lchown.c (S_ISLNK): Likewise.
20275
20276 2002-06-15  Jim Meyering  <meyering@lucent.com>
20277
20278         * lib/file-type.h (FILE_TYPE_H): Guard entire contents with #ifndef.
20279         For GNU libc 2.2 and newer, ensure that <sys/types.h> and <sys/stat.h>
20280         have been included before this file.
20281
20282 2002-06-14  Jim Meyering  <meyering@lucent.com>
20283
20284         * lib/file-type.h: Use the version from diffutils-2.8.2.
20285         * lib/file-type.c: Likewise.
20286
20287 2002-06-07  Jim Meyering  <meyering@lucent.com>
20288
20289         * m4/prereq.m4 (jm_PREREQ_STAT): Check for sys/param.h and sys/mount.h.
20290         They're needed at least for NetBSD 1.5.2.
20291         ($statxfs_includes): Include those same headers.
20292         ($statxfs_includes): Include sys/vfs.h if available.
20293         ($statxfs_includes): Likewise for sys/statvfs.h.
20294         Check for the following members in both structs statfs and statvfs:
20295         f_basetype, f_type, f_fsid.__val, f_namemax, f_namelen.
20296
20297 2002-06-01  Jim Meyering  <meyering@lucent.com>
20298
20299         * m4/d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename macro:
20300         s/D_TYPE_IN_DIRENT/HAVE_STRUCT_DIRENT_D_TYPE/.
20301
20302 2002-05-28  Jim Meyering  <meyering@lucent.com>
20303
20304         * m4/readdir.m4 (jm_FUNC_READDIR): Undefine `mkdir', not `rmdir'.
20305         Reported by Volker Borchert.
20306
20307 2002-05-27  Jim Meyering  <meyering@lucent.com>
20308
20309         Fix a problem seen only on nonconforming systems whereby ls.c's
20310         use of localtime, and then of gettimeofday would cause trouble:
20311         the localtime call used to initialize rpl_gettimeofday's save
20312         mechanism would clobber ls's current local time information so
20313         that in any long listing the first file would always be listed
20314         with date 1970-01-01.  Analysis by Volker Borchert.
20315
20316         * lib/gettimeofday.c (localtime): Undefine.
20317         (rpl_localtime): New function.
20318
20319 2002-05-27  Jim Meyering  <meyering@lucent.com>
20320
20321         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Also replace
20322         localtime.
20323
20324         * m4/readdir.m4 (jm_FUNC_READDIR): Undefine `rmdir' so we don't try to
20325         use the replacement function; it wouldn't resolve at link time.
20326         Reported by Volker Borchert.
20327
20328 2002-05-22  Jim Meyering  <meyering@lucent.com>
20329
20330         * lib/Makefile.am (libfetish_a_SOURCES): Add file-type.c and
20331         file-type.h.
20332         * lib/file-type.h: New file.
20333         * lib/file-type.c (file_type): New file/function.  Extracted from
20334         diffutils.
20335
20336 2002-04-30  Jim Meyering  <meyering@lucent.com>
20337
20338         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_STAT.
20339
20340 2002-04-29  Paul Eggert  <eggert@twinsun.com>
20341
20342         * m4/prereq.m4 (jm_PREREQ_SIG2STR): Remove; all callers changed.
20343
20344 2002-04-29  Paul Eggert  <eggert@twinsun.com>
20345
20346         * m4/prereq.m4 (jm_PREREQ_HARD_LOCALE): Check for stdlib.h.
20347         Do not check for alloca.h (no longer used) or stdbool.h (was never
20348         used?).  Add AM_C_PROTOTYPES since hard-locale.h uses it.
20349
20350 2002-04-29  Paul Eggert  <eggert@twinsun.com>
20351
20352         * lib/hard-locale.c: Upgrade to version used in GNU Diffutils 2.8.1.
20353
20354 2002-04-29  Jim Meyering  <meyering@lucent.com>
20355
20356         * m4/jm-macros.m4 (jm_MACROS): Remove use of AC_FUNC_STRNLEN.
20357         * m4/prereq.m4: Add jm_PREREQ_STRNLEN.
20358         Use AC_FUNC_STRNLEN here instead.
20359
20360         * m4/jm-macros.m4: Don't AC_REQUIRE([AC_PROG_CC_STDC]).
20361         With autoconf-2.53a, it's part of AC_PROG_CC.
20362
20363 2002-04-28  Paul Eggert  <eggert@twinsun.com>
20364
20365         * m4/jm-macros.m4 (jm_MACROS): Add AC_REPLACE_FUNCS(sig2str).
20366         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_SIG2STR.
20367
20368 2002-04-28  Paul Eggert  <eggert@twinsun.com>
20369
20370         * lib/sig2str.h, lib/sig2str.c: New files.
20371         * lib/Makefile.am (libfetish_a_SOURCES): Add sig2str.h.
20372
20373 2002-04-28  Paul Eggert  <eggert@twinsun.com>
20374
20375         * lib/sig2str.h (SIGNUM_BOUND): Do not use WTERMSIG, to avoid
20376         depending on <sys/wait.h> and WTERMSIG.  Default to 64 instead
20377         of 127, since 64 is the largest conceivable number for ancient
20378         nonstandard hosts.
20379         * lib/sig2str.c: Do not include <sys/wait.h>; no longer needed.
20380
20381 2002-04-28  Jim Meyering  <meyering@lucent.com>
20382
20383         * lib/sig2str.c (WTERMSIG): Remove definition (unused).
20384
20385 2002-04-24  Jim Meyering  <meyering@lucent.com>
20386
20387         * m4/prereq.m4 (jm_PREREQ_HARD_LOCALE): New macro.
20388         (jm_PREREQ): Use it.
20389
20390         * m4/getloadavg.m4: Check for these headers: locale.h unistd.h
20391         mach/mach.h fcntl.h.
20392         Check for this function: setlocale.
20393
20394 2002-04-24  Jim Meyering  <meyering@lucent.com>
20395
20396         * lib/gettext.h: New file, from Gettext.
20397         * lib/Makefile.am (INCLUDES): Remove -I../intl.
20398         (libfetish_a_SOURCES): Add gettext.h.
20399
20400 2002-04-16  Jim Meyering  <meyering@lucent.com>
20401
20402         * m4/prereq.m4 (jm_PREREQ_READUTMP): Also check for these members:
20403         ut_pid, ut_id, ut_exit.
20404
20405 2002-04-16  Jim Meyering  <meyering@lucent.com>
20406
20407         * lib/readutmp.h (UT_TYPE): Remove definition (now in who.c).
20408         (HAVE_STRUCT_XTMP_UT_EXIT, HAVE_STRUCT_XTMP_UT_ID): Define.
20409         (HAVE_STRUCT_XTMP_UT_PID, HAVE_STRUCT_XTMP_UT_TYPE): Define.
20410
20411 2002-04-12  Jim Meyering  <meyering@lucent.com>
20412
20413         * m4/ls-mntd-fs.m4 (checking for getmntinfo function...): Remove
20414         now-bogus check for f_type in sys/mount.h.  Instead, just test for the
20415         existence of the getmntinfo function.  Needed for Darwin 5.3.
20416
20417         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Also detect when dirfd is a macro.
20418         This is necessary at least on Darwin 5.3.
20419
20420         * m4/jm-macros.m4: Don't AC_REPLACE(strnlen), now that we use
20421         AC_FUNC_STRNLEN.  Otherwise, we'd end up putting two copies of
20422         strnlen.o in the library, and that makes some versions of ranlib
20423         object.
20424
20425 2002-04-12  Jim Meyering  <meyering@lucent.com>
20426
20427         * lib/dirfd.h (dirfd): Elide prototype if dirfd is a macro.
20428
20429 2002-04-09  Jim Meyering  <meyering@lucent.com>
20430
20431         * m4/malloc.m4: (jm_FUNC_MALLOC): Change the `checking ...' message
20432         to be more precise.  Rather than saying we're checking whether the
20433         function `works', say what we're testing.
20434         * m4/realloc.m4 (jm_FUNC_REALLOC): Likewise.
20435         Reported by Bruno Haible.
20436
20437 2002-03-10  Jim Meyering  <meyering@lucent.com>
20438
20439         * lib/makepath.c (make_path): Remove a comma from a diagnostic.
20440         Suggestion from Santiago Vila.
20441
20442 2002-03-08  Jim Meyering  <meyering@lucent.com>
20443
20444         * lib/rename.c: Mention that this wrapper is needed also on
20445         mips-dec-ultrix4.4 systems.
20446
20447 2002-03-02  Jim Meyering  <meyering@lucent.com>
20448
20449         * lib/gettime.c (gettime): Test HAVE_CLOCK_GETTIME,
20450         not HAVE_CLOCK_SETTIME.
20451
20452 2002-02-27  Paul Eggert  <eggert@twinsun.com>
20453
20454         * m4/jm-macros.m4 (jm_MACROS): Do not replace stime; no longer used.
20455         Check for clock_settime.
20456
20457 2002-02-27  Paul Eggert  <eggert@twinsun.com>
20458
20459         * lib/nanosleep.h: Rename to....
20460         * lib/timespec.h: New name for nanosleep.h.  All uses changed.
20461
20462         * lib/gettime.c: New file.
20463         * lib/settime.c: New file.
20464         * lib/stime.c: Remove.
20465
20466         * lib/Makefile.am (libfetish_a_SOURCES): Add gettime.c, settime.c,
20467         timespec.h.  Remove nanosleep.h.
20468
20469 2002-02-25  Paul Eggert  <eggert@twinsun.com>
20470
20471         * m4/acl.m4: New file.
20472         * m4/jm-macros.m4 (jm_MACROS): Require AC_FUNC_ACL.
20473         Do not check for acl or sys/acl.h, as AC_FUNC_ACL does that now.
20474
20475 2002-02-25  Paul Eggert  <eggert@twinsun.com>
20476
20477         * lib/acl.c, lib/acl.h: New files.
20478         * lib/Makefile.am (libfetish_a_SOURCES): Add acl.h, acl.c.
20479
20480 2002-02-24  Jim Meyering  <meyering@lucent.com>
20481
20482         * lib/strnlen.c (strnlen): Define-away/undef so that an inconsistent
20483         prototype in string.h (on at least AIX4.3.2.0 w/gcc-2.95.3) doesn't
20484         cause trouble.  Reported by Nelson Beebe.
20485
20486 2002-02-23  Paul Eggert  <eggert@twinsun.com>
20487
20488         * lib/path-concat.c (xpath_concat): Reorder code to pacify
20489         compilers that don't know that xalloc_die never returns.
20490
20491 2002-02-20  Jim Meyering  <meyering@lucent.com>
20492
20493         * lib/getdate.c: Regenerate using bison-1.33.
20494
20495 2002-02-17  Jim Meyering  <meyering@lucent.com>
20496
20497         * config/config.guess (main): Don't use `head -1'; it's no longer
20498         portable. Use `sed 1q' instead.
20499
20500 2002-02-16  gettextize  <bug-gnu-gettext@gnu.org>
20501
20502         * m4/codeset.m4: Upgrade to gettext-0.11.
20503         * m4/gettext.m4: Upgrade to gettext-0.11.
20504         * m4/glibc21.m4: Upgrade to gettext-0.11.
20505         * m4/iconv.m4: Upgrade to gettext-0.11.
20506         * m4/isc-posix.m4: Upgrade to gettext-0.11.
20507         * m4/lcmessage.m4: Upgrade to gettext-0.11.
20508         * m4/lib-ld.m4: New file, from gettext-0.11.
20509         * m4/lib-link.m4: New file, from gettext-0.11.
20510         * m4/lib-prefix.m4: New file, from gettext-0.11.
20511         * m4/progtest.m4: Upgrade to gettext-0.11.
20512
20513 2002-02-15  Paul Eggert  <eggert@twinsun.com>
20514
20515         * m4/prereq.m4 (jm_PREREQ_POSIXVER): New macro.
20516         (jm_PREREQ): Use it.
20517
20518 2002-02-15  Paul Eggert  <eggert@twinsun.com>
20519
20520         * lib/posixver.c, lib/posixver.h: New files.
20521         * lib/Makefile.am (libfetish_a_SOURCES): Add them.
20522
20523 2002-02-02  Paul Eggert  <eggert@twinsun.com>
20524             Bruno Haible  <bruno@clisp.org>
20525
20526         * lib/unicodeio.h (print_unicode_char): Add exit_on_error argument.
20527         (fwrite_success_callback): New declaration.
20528         * lib/unicodeio.c (unicode_to_mb): New function, extracted from
20529         print_unicode_char. Call failure callback instead of error.
20530         (fwrite_success_callback): New function.
20531         (exit_failure_callback): New function.
20532         (fallback_failure_callback): New function.
20533         (print_unicode_char): Call unicode_to_mb.
20534
20535 2002-01-26  Jim Meyering  <meyering@lucent.com>
20536
20537         * m4/jm-macros.m4 (jm_MACROS): Require autoconf-2.52g.
20538         * m4/strnlen.m4: Remove file, now that it's part of autoconf.
20539
20540 2002-01-26  Jim Meyering  <meyering@lucent.com>
20541
20542         * lib/Makefile.am (getdate$U.o): Depend on unlocked-io.h.
20543
20544 2002-01-22  Paul Eggert  <eggert@twinsun.com>
20545
20546         * m4/jm-macros.m4 (jm_MACROS): Require AC_FUNC_FSEEKO.
20547
20548 2002-01-22  Jim Meyering  <meyering@lucent.com>
20549
20550         * lib/Makefile.am (Makefile): Don't depend on $(BUILT_SOURCES).
20551         Otherwise, some versions of automake would omit the rule that makes
20552         Makefile from Makefile.in.
20553
20554 2002-01-21  Paul Eggert  <eggert@twinsun.com>
20555
20556         * lib/xmemcoll.h, lib/xmemcoll.c: New files.
20557         * lib/Makefile.am (libfetish_a_SOURCES): Add them.
20558         * lib/memcoll.c: Include errno.h, and declare errno if not defined.
20559         (memcoll): Set errno to zero if there is no error.
20560
20561         * lib/quotearg.c (quotearg_buffer_restyled):
20562         Fix bug with quoting buffers containing NUL when backslashing escapes.
20563         This bug was exposed by the other changes in this patch.
20564         (quotearg_n_options): New arg ARGSIZE.
20565         All callers changed.
20566         (quoting_options_from_style): New function.
20567         (quotearg_n_style): Use it.
20568         (quotearg_n_style_mem): New function.
20569
20570         * lib/quotearg.h (quotearg_n_style_mem): New function.
20571
20572 2002-01-19  Jim Meyering  <meyering@lucent.com>
20573
20574         * m4/jm-macros.m4 (jm_MACROS): Use AC_FUNC_STRNLEN.
20575         Remove useless quotes: DF_PROG="df".
20576         * m4/strnlen.m4: New file.
20577
20578 2002-01-16  Paul Eggert  <eggert@twinsun.com>
20579
20580         * lib/backupfile.c (ISDIGIT): Comment fix.
20581         * lib/getdate.y (ISDIGIT): Likewise.
20582         * lib/posixtm.c (ISDIGIT, year): Likewise.
20583         * lib/strverscmp.c (ISDIGIT): Likewise.
20584         * lib/userspec.c (ISDIGIT): Likewise.
20585
20586 2002-01-16  Jim Meyering  <meyering@lucent.com>
20587
20588         * lib/getdate.y: Add three semicolons, each just before a closing
20589         brace. Bison (as of version 1.31) no longer papers over that mistake.
20590
20591 2002-01-05  Jim Meyering  <meyering@lucent.com>
20592
20593         * lib/version-etc.c (version_etc_copyright): Update copyright year.
20594
20595 2001-12-19  Paul Eggert  <eggert@twinsun.com>
20596
20597         * lib/closeout.c (close_stdout_status): If ferror (stdout), do
20598         not silently exit merely because the output buffer happens to
20599         have nothing pending.
20600
20601 2001-12-18  Paul Eggert  <eggert@twinsun.com>
20602
20603         See the big note in ../ChangeLog.
20604         * lib/human.c (suffixes): Prefer K to k for 1024.
20605         (generate_suffix_backwards): New function.
20606         (human_readable_inexact): Use it.
20607         * lib/xstrtol.c (__xstrtol): If there is no number but there
20608         is a valid suffix, assume 1.  "MB" now means decimal, "MiB" binary.
20609         Accept 'K' as well as 'k'.
20610
20611 2001-12-15  Jim Meyering  <meyering@lucent.com>
20612
20613         * lib/regex.h (__restrict_arr): Update from libc.
20614
20615         * lib/mountlist.h (ME_REMOTE): Recognize file systems of type smbfs
20616         as `remote' if the name starts with `//'.  Suggested by Michael Stone.
20617         (STREQ): Define.
20618
20619 2001-12-14  Jim Meyering  <meyering@lucent.com>
20620
20621         * m4/jm-macros.m4 (jm_MACROS): Check for iswspace.
20622         Suggestion from Bruno Haible.
20623
20624 2001-12-10  Jim Meyering  <meyering@lucent.com>
20625
20626         * lib/linebuffer.c: Remove explicit declarations of xmalloc and
20627         xrealloc, Instead, include "xalloc.h".
20628         (initbuffer): Don't cast xmalloc return value to char*.
20629         (readline): Reword comment.
20630         Don't cast xrealloc return value to char*
20631         Return NULL, not 0.
20632
20633 2001-12-09  Jim Meyering  <meyering@lucent.com>
20634
20635         * lib/modechange.c (mode_compile): Add cast to avoid pedantic warning
20636         about `signed and unsigned type in conditional expression'.
20637         * lib/posixtm.c (posix_time_parse): Likewise.
20638
20639         * lib/xreadlink.c (xreadlink): Add cast to avoid a pedantic warning.
20640
20641         * lib/readtokens.c (readtoken): Declare an index to be of type unsigned
20642         to avoid a pedantic warning.
20643
20644         * lib/getstr.c: Don't include assert.h.
20645         (getstr): Remove warning-evoking assertions.
20646         Return -1 if offset parameter is out of bounds.
20647         Change the type of a local from int to size_t.
20648
20649         * lib/strftime.c (my_strftime_localtime_r): Include this function
20650         definition in the `#if ! HAVE_TM_GMTOFF' block.
20651
20652         * lib/xgethostname.c: Remove declarations of xmalloc and xrealloc.
20653         Include xalloc.h instead.
20654
20655 2001-12-02  Jim Meyering  <meyering@lucent.com>
20656
20657         * lib/tempname.c: Don't declare getenv, thus reverting the change of
20658         2001-11-18.  It's no longer necessary, now that stdlib.h is always
20659         included.
20660
20661         * lib/regex.c [!__BOUNDED_POINTERS__]: Define away __bounded,
20662         __unbounded, and __ptrvalue.  Reported by Uwe H. Steinfeld.
20663
20664 2001-11-30  Akim Demaille  <akim@epita.fr>
20665
20666         * lib/xstrdup.c: Include xalloc.h, so that xstrdup is declared
20667         before being defined.
20668
20669 2001-11-27  Paul Eggert  <eggert@twinsun.com>
20670
20671         * lib/quotearg.h (quotearg_n, quotearg_n_style):
20672         First arg is int, not unsigned.
20673         * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
20674         (SIZE_MAX, UINT_MAX): New macros.
20675         (quotearg_n_options): Abort if N is negative.
20676         Avoid overflow check on hosts where size_t is 64 bits and int
20677         is 32 bits, as overflow is impossible there.
20678         Fix off-by-one typo that caused unnecessary reallocation.
20679
20680 2001-11-27  Jim Meyering  <meyering@lucent.com>
20681
20682         * lib/tempname.c: Merge with version from libc.
20683         * lib/regex.c: Likewise.
20684
20685         * lib/tempname.c: Include stdlib.h unconditionally.  On some old
20686         systems for which STDC_HEADERS is 0, it was not included, resulting in
20687         a warning about an integer-to-pointer conversion problem with getenv.
20688         Reported by Volker Borchert.
20689
20690 2001-11-26  Jim Meyering  <meyering@lucent.com>
20691
20692         * lib/gtod.h: Remove file.
20693         * lib/Makefile.am (libfetish_a_SOURCES): Remove gtod.h.
20694         * lib/gettimeofday.c: Don't include gtod.h.
20695         (GTOD_init): Remove function.
20696         (rpl_gettimeofday): Do its job here instead, rather than aborting.
20697         Suggestion from Volker Borchert.
20698
20699 2001-11-23  Jim Meyering  <meyering@lucent.com>
20700
20701         * lib/hash.h (struct hash_table): Don't define here.  Merely declare
20702         it.
20703         * lib/hash.c (struct hash_table): Define it here instead.
20704
20705 2001-11-22  Jim Meyering  <meyering@lucent.com>
20706
20707         * lib/hash.h: Bracket contents of file with #ifndef HASH_H_ ... #endif.
20708
20709 2001-11-20  Jim Meyering  <meyering@lucent.com>
20710
20711         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Update comment to reflect that
20712         SunOS 4.1.4 and Solaris 2.5.1 lose, too.
20713
20714 2001-11-19  Jim Meyering  <meyering@lucent.com>
20715
20716         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Don't bother with a temporary
20717         directory.  Use "conftestXXXXXX" as the template.
20718         Suggestion from Paul Eggert.
20719
20720         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Close each descriptor
20721         immediately, so the test doesn't mistakenly hit the max-open-files
20722         limit.
20723
20724 2001-11-18  Paul Eggert  <eggert@twinsun.com>
20725
20726         * lib/tempname.c (TMP_MAX): Remove; no longer needed.
20727         (TEMPORARIES): New macro.
20728         (__gen_tempname): Use TEMPORARIES rather than TMP_MAX.  This
20729         removes an artificial limitation (e.g. HP-UX 10.20, where
20730         TMP_MAX is 17576).
20731
20732 2001-11-18  Jim Meyering  <meyering@lucent.com>
20733
20734         * m4/prereq.m4 (jm_PREREQ_TEMPNAME): Check for declaration of getenv.
20735
20736 2001-11-18  Jim Meyering  <meyering@lucent.com>
20737
20738         * lib/tempname.c [!HAVE_DECL_GETENV]: Declare getenv to avoid warning
20739         on SunOS 4.
20740
20741         * lib/Makefile.am (Makefile): Depend on $(BUILT_SOURCES), so those
20742         files will be created before anything else.
20743
20744 2001-11-17  Paul Eggert  <eggert@twinsun.com>
20745
20746         * m4/jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): Do not define
20747         WINSIZE_IN_PTEM if <termios.h> defines struct winsize.
20748
20749 2001-11-17  Jim Meyering  <meyering@lucent.com>
20750
20751         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): New file and macro.
20752         Prompted by a report from Bob Proulx.
20753
20754         * m4/jm-macros.m4 (jm_MACROS): Don't test for mkstemp here.
20755         Instead, require UTILS_FUNC_MKSTEMP.
20756
20757 2001-11-17  Jim Meyering  <meyering@lucent.com>
20758
20759         * m4/jm-macros.m4 (jm_MACROS): Remove code to set POW_LIBM.
20760         Now, that's done as part of AC_FUNC_STRTOD.
20761
20762 2001-11-17  Jim Meyering  <meyering@lucent.com>
20763
20764         * lib/modechange.c (mode_adjust): Fix error introduced on 1999-04-26
20765         that made e.g., `chmod a=,o=w,g=o F' cause F to be group readable
20766         rather than group writable.  Patch by Juan F. Codagnone.
20767
20768         * lib/readtokens.c: Remove explicit declarations of xmalloc and
20769         xrealloc, Instead, include "xalloc.h".
20770
20771         * lib/mountlist.c: Include unlocked-io.h after all system headers.
20772         Remove explicit declarations of xmalloc, xrealloc,
20773         and xstrdup.  Instead, include "xalloc.h".
20774
20775         * lib/argmatch.c, closeout.c, error.c, exclude.c: Include
20776         unlocked-io.h.
20777         * lib/fatal.c, getdate.y, getpass.c, getstr.c, getusershell.c:
20778         Likewise.
20779         * lib/mountlist.c, posixtm.c, readtokens.c, readutmp.c: Likewise.
20780
20781         * lib/regex.c, sha.c, version-etc.c, yesno.c: Likewise.
20782         Reported by Padraig Brady.
20783
20784         * lib/mkstemp.c: #undef mkstemp.
20785         Include config.h.
20786         (rpl_mkstemp): Rename from mkstemp.
20787         Protoize.
20788
20789 2001-11-16  Jim Meyering  <meyering@lucent.com>
20790
20791         * lib/physmem.c [HAVE_SYS_PSTAT_H]: Include <sys/pstat.h>.
20792         (physmem_total) [HAVE_PSTAT_GETSTATIC]: If sysconf couldn't be used to
20793         determine the amount of total physical memory, use pstat_getstatic.
20794         HPUX-11 doesn't define _SC_PHYS_PAGES.
20795         (physmem_available) [HAVE_PSTAT_GETSTATIC && HAVE_PSTAT_GETDYNAMIC]:
20796         If sysconf couldn't be used to determine the amount of available
20797         physical memory, use both pstat_getstatic and pstat_getdynamic.
20798         Based on a patch from Bob Proulx.
20799
20800 2001-11-10  Jim Meyering  <meyering@lucent.com>
20801
20802         * m4/prereq.m4 (jm_PREREQ_PHYSMEM): New function.
20803         (jm_PREREQ): Use it.
20804
20805 2001-11-09  Jim Meyering  <meyering@lucent.com>
20806
20807         * m4/jm-macros.m4: Require autoconf-2.52f.
20808         (AC_FUNC_ERROR_AT_LINE, AC_FUNC_OBSTACK, AC_FUNC_STRTOD):
20809         Use these AC_-prefixed names, not the AM_-prefixed ones.
20810
20811         * m4/afs.m4 (jm_AFS): Quote the body.  Patch by Akim Demaille.
20812
20813 2001-11-05  Jim Meyering  <meyering@lucent.com>
20814
20815         * lib/xstat.in (slash_aware_lstat): Correct a misleading comment.
20816
20817 2001-11-04  Jim Meyering  <meyering@lucent.com>
20818
20819         * m4/fpending.m4: Remove unused cruft that saved, set, and restored
20820         $DEFS.
20821
20822 2001-11-03  Jim Meyering  <meyering@lucent.com>
20823
20824         * m4/jm-glibc-io.m4n (jm_FUNC_GLIBC_UNLOCKED_IO): Quote first arg
20825         of AC_DEFUN.
20826
20827         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Rework so dirfd.c doesn't have to
20828         know the name of the variable in the macro definition.
20829
20830 2001-11-03  Jim Meyering  <meyering@lucent.com>
20831
20832         * lib/argmatch.h (ARGMATCH_TO_ARGUMENT): Remove casts of first two args
20833         in argmatch_to_argument call.
20834
20835         * lib/dirfd.c (dirfd): Reflect the fact that DIR_TO_FD now takes an
20836         argument.
20837
20838         * lib/hash.c (hash_clear): Fix a bug that could lead to an infloop or
20839         e.g., a fault due to an attempt to free a NULL pointer.
20840
20841 2001-11-01  Jim Meyering  <meyering@lucent.com>
20842
20843         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): New macro.
20844         * m4/jm-macros.m4 (jm_MACROS): Require UTILS_FUNC_DIRFD.
20845
20846 2001-11-01  Jim Meyering  <meyering@lucent.com>
20847
20848         * lib/dirfd.c, lib/dirfd.h: New files.
20849         * lib/Makefile.am (libfetish_a_SOURCES): Add dirfd.h.
20850
20851         * lib/hash.c (hash_print) [TESTING]: Clean up.
20852
20853 2001-10-22  Paul Eggert  <eggert@twinsun.com>
20854
20855         * lib/hard-locale.c (alloca): Define to __builtin_alloca if __GNUC__,
20856         to avoid a warning if -Wall.
20857
20858 2001-10-22  Jeff Bailey  <jbailey@outpost.dnsalias.org>
20859
20860         * README: New file
20861         * doc/*: Add COPYING, COPYING.LIB, COPYING.DOC, fdl.texi
20862         (per RMS's instructions, this is now the canonical source)
20863         * lgpl/, gpl/: New directories.
20864
20865 2001-10-21  Paul Eggert  <eggert@twinsun.com>
20866
20867         * lib/regex.c (uintptr_t): Remove macro and decl; it's config.h's job.
20868
20869 2001-10-21  Jim Meyering  <meyering@lucent.com>
20870
20871         * lib/obstack.c (_): Honor the setting of ENABLE_NLS.  Otherwise,
20872         this code would end up calling gettext even in packages built
20873         with --disable-nls.
20874         * lib/getopt.c (_): Likewise.
20875         * lib/regex.c (_): Likewise.
20876
20877 2001-10-20  Paul Eggert  <eggert@twinsun.com>
20878
20879         * m4/error.m4 (jm_PREREQ_ERROR):
20880         Do not invoke AC_CHECK_FUNCS with strerror_r, as
20881         AC_FUNC_STRERROR_R does that.
20882         Check for strerror declaration.
20883
20884         * m4/strerror_r.m4: Add copyright notice, as nontrivial m4 files
20885         are supposed to have them these days.
20886         (AC_FUNC_STRERROR_R): Always do char* test, so that it gets cached.
20887         Merge changes from latest Autoconf CVS.
20888         Rename ac_cv_func_strerror_r_works to ac_cv_func_strerror_r_char_p,
20889         and rename HAVE_WORKING_STRERROR_R to STRERROR_R_CHAR_P, since
20890         POSIX decided to standardize on the int flavor of strerror_r.
20891
20892 2001-10-20  Paul Eggert  <eggert@twinsun.com>
20893
20894         * lib/error.c (strerror_r): Do not declare unless !_LIBC.
20895         Do not check for HAVE_DECL_STRERROR_R missing unless STRERROR_R_CHAR_P.
20896         Use strerror_r that is only a macro, even if it is not a function.
20897         (strerror): Check for HAVE_DECL_STRERROR before declaring.
20898         (private_strerror): Use prototypes, not old-style function definition.
20899         (print_errno_message): New function.
20900         Support the POSIX 'int'-flavored strerror_r, as well as the traditional
20901         char*-flavored one.
20902         (error_tail, error, error_at_line): Use it.
20903
20904 2001-10-11  Jim Meyering  <meyering@lucent.com>
20905
20906         * lib/argmatch.c (argmatch_invalid): Use quotearg_n_style (0, ...
20907         and quote_n (1, ... to avoid clobbering a buffer.
20908
20909 2001-10-05  Jim Meyering  <meyering@lucent.com>
20910
20911         * lib/Makefile.am: (libfetish_a_SOURCES): Add hash-pjw.c and
20912         hash-pjw.h.
20913         * lib/hash-pjw.c: New file (factored out of fileutils' remove.c).
20914         * lib/hash-pjw.h: New file.
20915
20916 2001-09-30  Jim Meyering  <meyering@lucent.com>
20917
20918         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): See if
20919         `struct fsstat' has the `f_fstypename' member.
20920         Use that to define FS_TYPE, which is now used to make
20921         the getfsstat link test tighter.
20922
20923 2001-09-30  Jim Meyering  <meyering@lucent.com>
20924
20925         * lib/mountlist.c [MOUNTED_GETFSSTAT]:
20926         Include <sys/ucred.h>, for Apple Darwin.
20927         Include sys/mount.h and sys/fs_types.h only if available.
20928         (FS_TYPE): Define.
20929         (read_filesystem_list): Use FS_TYPE.
20930
20931 2001-09-29  Paul Eggert  <eggert@twinsun.com>
20932
20933         * lib/exclude.c (excluded_filename): 0 -> false, since it's
20934         a boolean context.
20935
20936 2001-09-29  Jim Meyering  <meyering@lucent.com>
20937
20938         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS)
20939         [one-argument getmntent function]): Include stdio.h before mntent.h.
20940         SunOS 4.1.x needs it for the declaration of `FILE'.
20941         Patch by Volker Borchert.
20942
20943         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS)
20944         Check for these headers: sys/param.h sys/ucred.h sys/mount.h
20945         sys/fs_types.h, and make the link-test for getfsstat guard #include
20946         directives with appropriate #if HAVE_*_H tests so that we can
20947         detect getfsstat on Apple Darwin1.3.7 systems.
20948         Reported by Nelson Beebe.
20949         Fix harmless typo in cache variable name: s/getsstat/getfsstat/.
20950
20951 2001-09-28  Paul Eggert  <eggert@twinsun.com>
20952
20953         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
20954         #defines strtoimax.  Also treat the other strto* functions
20955         like strtoimax.
20956
20957         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
20958         Check for strtoul and strtoumax,
20959         as those declarations are made even in the signed case.
20960         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX):
20961         Likewise, for strtol and strtoimax.
20962
20963 2001-09-28  Paul Eggert  <eggert@twinsun.com>
20964
20965         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
20966         #defines strtoimax.  Also treat the other strto* functions
20967         like strtoimax.
20968
20969         * lib/xstrtol.c (strtol): Do not declare if HAVE_DECL_STRTOL.
20970         (strtoul): Do not declare if HAVE_DECL_STRTOUL.
20971         (strtoimax, strtoumax): Do not declare if already defined as a macro.
20972
20973 2001-09-26  Jim Meyering  <meyering@lucent.com>
20974
20975         Most macros in unlocked-io.h had the wrong number of arguments.
20976         * lib/gen-uio: New script.
20977         (USE_UNLOCKED_IO): Define to 1 if not already defined.
20978         * lib/unlocked-io.hin: Remove file.
20979         * lib/Makefile.am (unlocked-io.h): Rewrite to use a separate script,
20980         rather than trying to embed it here.
20981         (EXTRA_DIST): Add gen-uio.  Remove unlocked-io.hin
20982         Reported by Padraig Brady.
20983
20984 2001-09-25  Volker Borchert  <bt@teknon.de>
20985
20986         * lib/gettimeofday.c (rpl_gettimeofday): Declare local variable
20987         `result'.
20988
20989 2001-09-24  Jim Meyering  <meyering@lucent.com>
20990
20991         * m4/gettext.m4: Use the version from gettext-0.10.40, not CVS.
20992
20993 2001-09-23  Jim Meyering  <meyering@lucent.com>
20994
20995         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add a compile-test
20996         instead of the mere test for existence of mntent.h.  The latter
20997         would get a false-positive on AIX 3.4 systems.
20998         In the outer getmntent if-block, don't die if neither of the getmntent
20999         tests succeeds.  Instead, just fall through and continue with the
21000         remaining tests.
21001
21002 2001-09-23  Jim Meyering  <meyering@lucent.com>
21003
21004         * lib/mountlist.c: Remove useless parentheses in #if directives.
21005         (MOUNTED) [!defined MOUNTED]: Define to _PATH_MOUNTED, for when
21006         the deprecated MOUNTED symbol is no longer defined in mntent.h.
21007
21008 2001-09-22  Jim Meyering  <meyering@lucent.com>
21009
21010         * m4/gettext.m4: New file.  From gettext.
21011         * m4/lcmessage.m4: Sync with gettext -- this changes only comments.
21012         * m4/progtest.m4: Likewise
21013         * m4/isc-posix.m4: Decrement serial number to sync with gettext.
21014         * m4/glibc21.m4: Likewise.
21015
21016         * m4/libintl.m4: Remove.  No longer used.
21017
21018 2001-09-22  Jim Meyering  <meyering@lucent.com>
21019
21020         * lib/localcharset.c: Update from latest gettext.
21021         * lib/config.charset: Likewise.
21022
21023 2001-09-20  Jim Meyering  <meyering@lucent.com>
21024
21025         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX): Check for declaration of
21026         strtoimax.
21027         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check for declaration of
21028         strtoumax.
21029
21030 2001-09-20  Jim Meyering  <meyering@lucent.com>
21031
21032         * lib/xstrtol.c (strtoimax): Guard declaration with
21033         `#if !HAVE_DECL_STRTOIMAX', rather than just `#ifndef strtoimax'.
21034         The latter fails because some systems (at least rs6000-ibm-aix4.3.3.0)
21035         have their own, conflicting declaration of strtoimax in sys/inttypes.h.
21036         (strtoumax): Likewise, for completeness (it wasn't necessary).
21037
21038 2001-09-17  Paul Eggert  <eggert@twinsun.com>
21039
21040         * lib/strtoimax.c (HAVE_LONG_LONG):
21041         Redefine to HAVE_UNSIGNED_LONG_LONG if unsigned.
21042         (strtoimax): Use sizeof (long), not sizeof strtol (ptr, endptr, base),
21043         to work around bug in IBM C compiler.
21044
21045 2001-09-17  Jim Meyering  <meyering@lucent.com>
21046
21047         * m4/chown.m4, fstypename.m4, getgroups.m4, gettimeofday.m4,
21048         * m4/jm-mktime.m4, lstat.m4, malloc.m4, memcmp.m4, mkdir-slash.m4,
21049         * m4/nanosleep.m4, putenv.m4, readdir.m4, realloc.m4, rename.m4,
21050         * m4/st_dm_mode.m4, stat.m4, strerror_r.m4, timespec.m4, utimbuf.m4,
21051         * m4/utimes.m4: Use AC_DEFINE rather than AC_DEFINE_UNQUOTED,
21052         whenever the right hand side need not be expanded by the shell.
21053
21054 2001-09-16  Paul Eggert  <eggert@twinsun.com>
21055
21056         * m4/fnmatch.m4 (jm_FUNC_FNMATCH): Remove test for GNU C
21057         library.  It's not correct, as some older glibcs are buggy.
21058         fnmatch wasn't fixed until glibc 2.2.
21059
21060         Use AC_DEFINE, not AC_DEFINE_UNQUOTED, as there's no
21061         special shell magic here.
21062
21063 2001-09-16  Jim Meyering  <meyering@lucent.com>
21064
21065         * m4/mkdir-slash.m4 (UTILS_FUNC_MKDIR_TRAILING_SLASH): New file/macro.
21066         * m4/jm-macros.m4: Require it.
21067
21068 2001-09-16  Jim Meyering  <meyering@lucent.com>
21069
21070         * lib/mkdir.c: New file.
21071
21072 2001-09-15  Jim Meyering  <meyering@lucent.com>
21073
21074         * m4/jm-macros.m4: Check for help2man.
21075
21076 2001-09-11  Jim Meyering  <meyering@lucent.com>
21077
21078         * m4/host-os.m4 (UTILS_HOST_OS): New file/macro.
21079         The body, by Paul Eggert, was moved here from configure.in.
21080         * m4/jm-macros.m4: Require UTILS_HOST_OS.
21081
21082 2001-09-04  Paul Eggert  <eggert@twinsun.com>
21083
21084         * m4/prereq.m4 (jm_PREREQ_XREADLINK): New macro.
21085         (jm_PREREQ): Use it.
21086
21087 2001-09-04  Paul Eggert  <eggert@twinsun.com>
21088
21089         * lib/xreadlink.c (xreadlink): Omit size_t* arg.  All uses changed.
21090         Use ssize_t, not int, to store result of readlink.
21091         Check for ssize_t overflow as well as size_t overflow,
21092         as POSIX says the result of readlink is implementation-defined
21093         when ssize_t overflows.
21094         Remove unnecessary cast to char*.
21095         Use free+malloc instead of realloc, as the storage doesn't need
21096         to be preserved and it's clearer and can be more efficient that way.
21097         (SIZE_MAX, SSIZE_MAX): New macros, if <limits.h> doesn't declare.
21098         * lib/xreadlink.h (xreadlink): Update prototype.
21099
21100 2001-09-04  Paul Eggert  <eggert@twinsun.com>
21101
21102         * lib/xgetcwd.c: Revert some of the previous change; intead,
21103         fix the HAVE_GETCWD_NULL code to behave more like the
21104         !HAVE_GETCWD_NULL code used to.
21105
21106         Include "xalloc.h".
21107         (xgetcwd): Do not return NULL when memory is exhausted; instead,
21108         invoke xalloc_die.
21109
21110 2001-09-03  Paul Eggert  <eggert@twinsun.com>
21111
21112         * m4/prereq.m4 (jm_PREREQ_XGETCWD): Check for limits.h and
21113         sys/param.h, as pathmax.h includes them.
21114
21115 2001-09-03  Paul Eggert  <eggert@twinsun.com>
21116
21117         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_XGETCWD.
21118         (jm_PREREQ_XGETCWD): New macro.
21119
21120         * m4/getcwd.m4: New file.
21121
21122 2001-09-03  Paul Eggert  <eggert@twinsun.com>
21123
21124         * lib/xgetcwd.c: Fix the !HAVE_GETCWD_NULL code to behave more
21125         like the HAVE_GETCWD_NULL code.
21126         Include pathmax.h if not HAVE_GETCWD.
21127         Do not include xalloc.h.
21128         (INITIAL_BUFFER_SIZE): New symbol.
21129         Do not use xmalloc / xrealloc, since the caller is responsible for
21130         handling errors.  Preserve errno around `free' during failure.
21131         Do not overrun buffer when using getwd.
21132
21133 2001-09-03  Paul Eggert  <eggert@twinsun.com>
21134
21135         * lib/xgetcwd.c (xgetcwd): Use HAVE_GETCWD_NULL, not (defined
21136         __GLIBC__ && __GLIBC__ >= 2), to decide whether to use
21137         getcwd (NULL, 0).
21138
21139 2001-09-03  Paul Eggert  <eggert@twinsun.com>
21140
21141         * lib/exclude.c (fnmatch_no_wildcards): Fix confusion between
21142         usage of FNM_CASEFOLD and FNM_LEADING_DIR.  The bug was
21143         spotted by Jim Meyering.
21144
21145 2001-09-03  Jim Meyering  <meyering@lucent.com>
21146
21147         * lib/xreadlink.c (xreadlink): Preserve errno around `free' during
21148         failure.
21149
21150 2001-09-02  Jim Meyering  <meyering@lucent.com>
21151
21152         * lib/error.c: Update from GNU libc.
21153
21154 2001-09-01  Jim Meyering  <meyering@lucent.com>
21155
21156         * m4/jm-macros.m4 (jm_MACROS): Check for canonicalize_file_name.
21157         Used by df.
21158
21159 2001-09-01  Jim Meyering  <meyering@lucent.com>
21160
21161         * lib/xreadlink.c: New file.
21162         * lib/xreadlink.h: New file.
21163         * lib/Makefile.am (libfetish_a_SOURCES): Add xreadlink.c and
21164         xreadlink.h.
21165
21166         * lib/regex.c (uintptr_t) [!_LIBC]: Define to private_uintptr_t, so it
21167         doesn't conflict with sparc Solaris 7's definition in
21168         /usr/include/sys/int_types.h.
21169
21170         * lib/exclude.c: Use `""', not `<>' to #include non-system header
21171         files.
21172         (fnmatch_no_wildcards): Rewrite not to use function names, strcasecmp
21173         and strncasecmp as r-values.  Unixware didn't have declarations.
21174
21175 2001-08-31  Paul Eggert  <eggert@twinsun.com>
21176
21177         * lib/xstrtol.h: Add copyright notice.
21178         (_DECLARE_XSTRTOL): Improve quality of diagnostic for
21179         LONGINT_INVALID_SUFFIX_CHAR.
21180
21181 2001-08-31  Paul Eggert  <eggert@twinsun.com>
21182
21183         * lib/xstrtol.c (strtoimax): New decl.
21184
21185 2001-08-31  Paul Eggert  <eggert@twinsun.com>
21186
21187         * lib/xgetcwd.c: Don't include pathmax.h.
21188         Include stdlib.h and unistd.h if available.
21189         Include xalloc.h.
21190         (xmalloc, xstrdup, free): Remove decls.
21191         (xgetcwd): Don't assume sizes fit in unsigned.
21192         Check for overflow when computing sizes.
21193         Simplify reallocation code.
21194
21195 2001-08-31  Paul Eggert  <eggert@twinsun.com>
21196
21197         * lib/savedir.c (savedir): Remove size parameter, as POSIX says that
21198         a directory's st_size can have an arbitrary value, so the old
21199         usage could waste an arbitrary amount of memory.  All uses
21200         changed.
21201         * lib/savedir.h: Update prototype.
21202
21203 2001-08-31  Paul Eggert  <eggert@twinsun.com>
21204
21205         * lib/Makefile.am (libfetish_a_SOURCES): Remove strtoxmax.c.
21206
21207         * lib/strtoimax.c: Renamed from strtoxmax.c, removing the
21208         old strtoimax.c.
21209
21210         Also, make the following further changes to make this file's
21211         configuration more similar to that of strtol.c:
21212         (UNSIGNED): Renamed from STRTOUXMAX_UNSIGNED.  All uses changed.
21213         (strtoumax, uintmax_t, strtoull, strtol): Remove.
21214         (intmax_t, strtoimax, strtol, strtoll): New macros, if UNSIGNED.
21215         (strtoimax): Renamed from strtoumax.  All uses of unsigned values
21216         changed to signed values.
21217
21218         And make the following changes as well:
21219         Fix copyright notice, as 1999 was missing.
21220         (verify): New macro.
21221         (strtoimax): Check sizes at compile-time, not run-time.
21222         Prefer strtol to strtoll if both work.
21223         (main): Remove; it was not that useful and was a pain to maintain.
21224
21225         * lib/strtoumax.c: Include strtoimax.c, not strtouxmax.c.
21226
21227 2001-08-31  Jim Meyering  <meyering@lucent.com>
21228
21229         * lib/xgetcwd.c (xgetcwd): Reorganize to avoid some duplication.
21230         Use an initial, malloc'd, buffer of length 128 rather than
21231         a statically allocated one of length 1024.
21232
21233 2001-08-30  Paul Eggert  <eggert@twinsun.com>
21234
21235         Simplify code, partly by assuming autoconf 2.52 semantics.
21236
21237         * m4/Makefile.am (EXTRA_DIST): Remove uintmax_t.m4.
21238
21239         * m4/inttypes.m4 (AC_PREREQ): Bump to 2.52.
21240         (jm_AC_HEADER_INTTYPES_H): Remove; now done by autoconf in 2.52.
21241         All uses removed.
21242         (jm_AC_TYPE_INTMAX_T, jm_AC_TYPE_UINTMAX_T):
21243         Move AC_REQUIRE to next-to-top level, to avoid confusion.
21244         Use 2.52's AC_CHECK_TYPE instead of merely looking for the header.
21245         * m4/prereq.m4 (jm_PREREQ_HUMAN): Don't require
21246         jm_AC_HEADER_INTTYPES_H.
21247         * m4/jm-macros.m4 (jm_MACROS): Likewise.
21248
21249         * m4/uintmax_t.m4: Remove, as it duplicates inttypes.m4.
21250
21251         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
21252         Quote first arg of AC_DEFUN.
21253         Require jm_AC_TYPE_UINTMAX_T and jm_AC_TYPE_UNSIGNED_LONG_LONG
21254         since they are needed to parse the include file even if we need
21255         only xstrtoimax.  Simplify logic behind the args to AC_REPLACE.
21256         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Likewise,
21257         but with opposite signedness.
21258
21259 2001-08-30  Paul Eggert  <eggert@twinsun.com>
21260
21261         Merge 'exclude' changes from tar 1.13.22.
21262         This fixes one or two unlikely storage allocation overflow bugs,
21263         but doesn't change user-visible behavior otherwise.
21264
21265 2001-08-30  Paul Eggert  <eggert@twinsun.com>
21266
21267         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_EXCLUDE.
21268         (jm_PREREQ_EXCLUDE): New macro.
21269
21270 2001-08-30  Paul Eggert  <eggert@twinsun.com>
21271
21272         * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
21273         tm to be declared.
21274
21275 2001-08-30  Paul Eggert  <eggert@twinsun.com>
21276
21277         * lib/hash.c: Remove '2001' from copyright notice.
21278
21279 2001-08-30  Paul Eggert  <eggert@twinsun.com>
21280
21281         * lib/full-write.h: New file.
21282         * lib/Makefile.am (libfetish_a_SOURCES): Add full-write.h.
21283         * lib/full-write.c: Correct credits, as cccp.c no longer
21284         exists and anyway it was so heavily changed from the old cccp
21285         code as to be unrecognizable.  Include full-write.h.
21286         (full_write) Return size_t, with short writes meaning failure.
21287         All callers changed.  This fixes a bug with large buffers
21288         on 64-bit hosts.
21289         * lib/utime.c: Include full-write.h.
21290
21291 2001-08-30  Paul Eggert  <eggert@twinsun.com>
21292
21293         * lib/exclude.c (bool): Declare, perhaps by including stdbool.h.
21294         (<sys/types.h>): Include only if HAVE_SYS_TYPES_H.
21295         (<stdlib.h>, <string.h>, <strings.h>, <inttypes.h>, <stdint.h>):
21296         Include if available.
21297         (<xalloc.h>): Include
21298         (SIZE_MAX): Define if <stdint.h> or <inttypes.h> doesn't.
21299         (verify): New macro.  Use it to verify that EXCLUDE macros do not
21300         collide with FNM macros.
21301         (struct patopts): New struct.
21302         (struct exclude): Use it, as exclude patterns now come with options.
21303         (new_exclude): Support above changes.
21304         (new_exclude, add_exclude_file):
21305         Initial size must now be a power of two to simplify overflow checking.
21306         (free_exclude, fnmatch_no_wildcards): New function.
21307         (excluded_filename): No longer requires options arg, as the options
21308         are determined by add_exclude.  Now returns bool, not int.
21309         (excluded_filename, add_exclude):
21310         Add support for the fancy new exclusion options.
21311         (add_exclude, add_exclude_file): Now takes int options arg.
21312         Check for arithmetic overflow when computing sizes.
21313         (add_exclude_file): xrealloc might modify errno, so don't
21314         realloc until after errno might be used.
21315
21316         * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE,EXCLUDE_WILDCARDS):
21317         New macros.
21318         (free_exclude): New decl.
21319         (add_exclude, add_exclude_file): Now takes int options arg.
21320         (excluded_filename): No longer requires options arg, as the options
21321         are determined by add_exclude.  Now returns bool, not int.
21322
21323 2001-08-30  Paul Eggert  <eggert@twinsun.com>
21324
21325         * lib/alloca.c (alloca): Arg is of type size_t, not unsigned.
21326
21327 2001-08-27  Jim Meyering  <meyering@lucent.com>
21328
21329         * lib/Makefile.am (libfetish_a_SOURCES): Add strtoxmax.c
21330
21331         * lib/version-etc.c (N_): Remove definition.
21332         Revert most of last change.
21333         Instead, simply don't mark the `Copyright...' string for translation.
21334         Based on advice from Paul Eggert.
21335
21336         * lib/strtoxmax.c: Tweak comment.
21337
21338 2001-08-26  Jim Meyering  <meyering@lucent.com>
21339
21340         * m4/jm-macros.m4: Require jm_AC_PREREQ_XSTRTOIMAX.
21341
21342         * m4/xstrtoimax.m4: New file.
21343         * m4/xstrtoumax.m4: Add comments explaining why we
21344         AC_REPLACE_FUNCS(strtol).
21345
21346 2001-08-26  Jim Meyering  <meyering@lucent.com>
21347
21348         * lib/version-etc.c (version_etc_copyright_fmt): Replace literal year
21349         of copyright with `%s' so translators don't get an untranslated
21350         message in 2002.
21351         (COPYRIGHT_YEAR): Define.
21352         (version_etc): Use fprintf rather than fputs.
21353         Suggestion from Ulrich Drepper.
21354
21355         * lib/Makefile.am (libfetish_a_SOURCES): Add xstrtoimax.c.
21356
21357         * lib/strtoll.c: New file, from GNU libc.
21358         * lib/xstrtoimax.c: New file.
21359
21360         * lib/xstrtol.h: Add xstrtoimax.
21361         * lib/strtoumax.c: New file.  Simply include "strtoumax.c".
21362         * lib/strtoimax.c: New file.  Likewise, but first define
21363         STRTOUXMAX_SIGNED.
21364
21365         * lib/strtoumax.c: Factor to work both for unsigned and signed types,
21366         ...
21367         * lib/strtoxmax.c: ... then renamed to this.
21368
21369 2001-08-18  Paul Eggert  <eggert@twinsun.com>
21370
21371         * m4/inttypes.m4: Add AC_PREREQ(2.13).
21372         (jm_AC_HEADER_INTTYPES_H): Test for intmax_t, too.
21373         (jm_AC_TYPE_INTMAX_T): New macro.
21374         (jm_AC_TYPE_UINTMAX_T): Moved here from uintmax_t.m4.
21375
21376         * m4/longlong.m4 (jm_AC_TYPE_LONG_LONG): New macro.
21377
21378         * m4/longlong.m4: Renamed from ulonglong.m4.
21379         * m4/inttypes.m4: Renamed from inttypes_h.m4.
21380         * m4/uintmax_t.m4: Removed.
21381
21382 2001-08-13  Paul Eggert  <eggert@twinsun.com>
21383
21384         * lib/Makefile.am (unlocked-io.h): Do not append "_unlocked" twice.
21385         Port to Solaris 8, where 'sed' requires a space after the 'r'
21386         command, and where sh dislikes "$/".  Clean up the spacing a bit.
21387         Redirect output to $tmp just once.
21388
21389 2001-08-12  Paul Eggert  <eggert@sic.twinsun.com>
21390
21391         * lib/addext.c (<errno.h>): Include.
21392         (errno): Declare if not defined.
21393         (addext): Work correctly when pathconf returns -1 and leaves
21394         errno alone because there is no limit.  Also, work even if
21395         pathconf returns a value greater than SIZE_MAX.
21396
21397 2001-08-12  Jim Meyering  <meyering@lucent.com>
21398
21399         * m4/afs.m4, assert.m4, bison.m4, check-decl.m4, chown.m4, d-ino.m4,
21400         d-type.m4, dos.m4, error.m4, fnmatch.m4, fpending.m4, fstypename.m4,
21401         fsusage.m4, ftruncate.m4, getgroups.m4, glibc.m4, gnu-source.m4,
21402         group-member.m4, jm-glibc-io.m4, jm-macros.m4, jm-mktime.m4,
21403         jm-winsz1.m4, jm-winsz2.m4, lchown.m4, lib-check.m4, libintl.m4,
21404         link-follow.m4, ls-mntd-fs.m4, lstat.m4, malloc.m4, mbrtowc.m4,
21405         mbstate_t.m4, mbswidth.m4, memcmp.m4, nanosleep.m4, perl.m4,
21406         prereq.m4, putenv.m4, readdir.m4, realloc.m4, regex.m4, rename.m4,
21407         rmdir-errno.m4, search-libs.m4, st_dm_mode.m4, st_mtim.m4, stat.m4,
21408         strftime.m4, timespec.m4, unlink-busy.m4, uptime.m4, utimbuf.m4,
21409         utime.m4, utimes.m4, xstrtoumax.m4:
21410         Quote the first argument in each use of AC_DEFUN.
21411
21412 2001-08-12  Jim Meyering  <meyering@lucent.com>
21413
21414         * lib/xgetcwd.c (xgetcwd) [defined __GLIBC__ && __GLIBC__ >= 2]:
21415         Simply `return getcwd (NULL, 0);'.
21416         [! (defined __GLIBC__ && __GLIBC__ >= 2)]:
21417         Use 1300 as initial value for length, not PATH_MAX.
21418
21419         * lib/pathmax.h: Clean up cpp syntax.
21420
21421 2001-08-12  Jim Meyering  <meyering@lucent.com>
21422
21423         * lib/gettimeofday.c: New file.
21424         * lib/gtod.h: New file.
21425         * lib/Makefile.am (libfetish_a_SOURCES): Add gtod.h.
21426
21427 2001-08-05  Jim Meyering  <meyering@lucent.com>
21428
21429         * m4/jm-macros.m4: Require autoconf-2.52.
21430
21431 2001-08-04  Jim Meyering  <meyering@lucent.com>
21432
21433         * lib/error.h (__attribute__): Remove `|| __STRICT_ANSI__' from #if
21434         stmt, to get in sync with glibc.
21435
21436 2001-08-03  Paul Eggert  <eggert@twinsun.com>
21437
21438         The following changes are from gettext 0.10.39 as maintained by
21439         Bruno Haible.
21440
21441         * lib/mbswidth.h (MBSW_REJECT_UNPRINTABLE, MBSW_REJECT_INVALID):
21442         Renamed from MBSW_ACCEPT_UNPRINTABLE and MBSW_ACCEPT_INVALID
21443         with inverted sense.  All uses changed.
21444
21445         * lib/mbswidth.c: Don't include <limits.h>.
21446         Include <stdlib.h> and <string.h> unconditionally.
21447         (iswcntrl, mbsinit, ISCNTRL): New macros.
21448         (mbsnwidth): Use K&R style function declarations.
21449         Don't bother checking for MB_LEN_MAX == 1, since the compiler
21450         can optimize it when MB_CUR_MAX == 1.
21451         The width of control characters is zero, not 1.
21452
21453 2001-08-03  Paul Eggert  <eggert@twinsun.com>
21454
21455         The following changes are from gettext 0.10.39 as maintained by
21456         Bruno Haible, except that getline.m4 continues to use AC_LIBOBJ.
21457
21458         * m4/codeset.m4: Upgrade to serial AM1.
21459         (AM_LANGINFO_CODESET): Renamed from jm_LANGINFO_CODESET;
21460         all uses changed.  Quote first arg of AC_DEFUN.
21461         (am_cv_langinfo_codeset): Renamed from jm_cv_langinfo_codeset.
21462
21463         * m4/iconv.m4: Upgrade to serial AM2.
21464         (AM_ICONV): Renamed from jm_ICONV; all uses changed.
21465         Add --with-libconv-prefix.
21466         Quote first arg of AC_DEFUN.  Add description for ICONV_CONST.
21467         (am_cv_func_iconv): Renamed from jm_cv_func_iconv.
21468         (am_cv_lib_iconv): Renamed from jm_cv_lib_iconv.
21469         (am_cv_proto_iconv): Renamed from jm_cv_proto_iconv.
21470         * m4/jm-macros.m4 (jm_MACROS): Reflect s/jm_/AM_/ renamings.
21471
21472         * m4/c-bs-a.m4 (AC_C_BACKSLASH_A): Quote first arg of AC_DEFUN.
21473         * m4/getline.m4 (AM_FUNC_GETLINE): Likewise.
21474         * m4/glibc21.m4 (jm_GLIBC21): Likewise.
21475         * m4/inttypes_h.m4 (jm_AC_HEADER_INTTYPES_H): Likewise.
21476         * m4/isc-posix.m4 (AC_ISC_POSIX): Likewise.
21477         * m4/lcmessage.m4 (AM_LC_MESSAGES): Likewise.
21478         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): Likewise.
21479         * m4/uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Likewise.
21480         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Likewise.
21481
21482         * m4/getline.m4 (AM_FUNC_GETLINE): Don't bother checking for
21483         string.h any more.
21484
21485         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): If not found, print "no",
21486         not the default value.
21487
21488         2001-06-25  Bruno Haible  <haible@clisp.cons.org>
21489         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Don't require AM_C_PROTOTYPES.
21490         Also check for mbsinit.  Needed for SCO 3.2v5.0.2.
21491         Also include <string.h>; this is where AIX 3.2.5 declares wcwidth.
21492         Also check for iswcntrl, used for wcwidth fallback.
21493         Use AC_TRY_COMPILE to emulate AC_CHECK_DECLS, for portability
21494         to Autoconf 2.13.
21495
21496 2001-08-03  Jim Meyering  <meyering@lucent.com>
21497
21498         * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): Use `#include', not `@%:@include',
21499         as it was in the original.  Reported by Paul Eggert.
21500
21501 2001-07-16  Jim Meyering  <meyering@lucent.com>
21502
21503         * m4/gettimeofday.m4: New file.
21504         Prompted by a report from Bernhard Baehr.
21505
21506 2001-07-15  Jim Meyering  <meyering@lucent.com>
21507
21508         * m4/Makefile.am.in (Makefile.am): Remove most of the unlocked-io.h
21509         stuff. Now it's in ../Makefile.cfg.
21510
21511 2001-07-15  Jim Meyering  <meyering@lucent.com>
21512
21513         * lib/Makefile.am (EXTRA_DIST): Add unlocked-io.hin.
21514         (BUILT_SOURCES): Add unlocked-io.h.
21515         (io_functions): Define.
21516         (unlocked-io.h): New rule.
21517         (DISTCLEANFILES): Add unlocked-io.h.
21518         (all-local): Depend on unlocked-io.h, to ensure it is created.
21519
21520         * lib/unlocked-io.hin: New file
21521
21522         * lib/regex.c: Update from glibc.
21523
21524 2001-07-05  Jim Meyering  <meyering@lucent.com>
21525
21526         * lib/Makefile.am (noinst_HEADERS): Remove definition, per new automake
21527         recommendation.
21528         (libfetish_a_SOURCES): Put all .h files here instead.
21529         Remove a thus-exposed (better checks in automake) duplicate and
21530         two unnecessary .h files.
21531
21532 2001-07-04  Jim Meyering  <meyering@lucent.com>
21533
21534         * m4/Makefile.am.in (glibc-io.struct): New target.  Rework the code
21535         that generates jm-glibc-io.m4 so that it doesn't trigger any make
21536         distcheck failure.
21537
21538 2001-07-02  Jim Meyering  <meyering@lucent.com>
21539
21540         The following changes were prompted by suggestions from Bruno Haible.
21541
21542         * m4/jm-glibc-io.m4n: New file, the template from which jm-glibc-io.m4
21543         is now generated.
21544         * m4/Makefile.am.in (Makefile.am): Include jm-glibc-io.m4n in emitted
21545         definition of EXTRA_DIST.
21546         (Makefile.am): Emit the dependency, `all-local: jm-glibc-io.m4' to
21547         ensure that the generated file is created/updated whenever the list
21548         of $(unlocked_functions) is changed.
21549         (jm-glibc-io.m4): New rule.
21550         (unlocked-io.h): New rule -- currently unused.
21551
21552 2001-06-24  Jim Meyering  <meyering@lucent.com>
21553
21554         * m4/regex.m4 (jm_INCLUDED_REGEX): Use a quadrigraph to represent an
21555         unmatched right bracket, rather than kludging it with an extra,
21556         falsely-matching quote in a comment.  Patch by Akim Demaille.
21557
21558 2001-06-11  Jim Meyering  <meyering@lucent.com>
21559
21560         * lib/regex.c: Update from GNU libc.
21561
21562 2001-05-27  Jim Meyering  <meyering@lucent.com>
21563
21564         * m4/prereq.m4 (jm_PREREQ_READUTMP): Check for ut_type in struct utmpx.
21565         Check for ut_type in struct utmp.
21566
21567 2001-05-27  Jim Meyering  <meyering@lucent.com>
21568
21569         * lib/readutmp.h (UT_TYPE): Define.
21570
21571 2001-05-24  Jim Meyering  <meyering@lucent.com>
21572
21573         * lib/argmatch.c: Include "quote.h".
21574         (argmatch_invalid): Remove explicit `' quotes.  Instead, use the
21575         quote function.  Reported by Göran Uddeborg.
21576
21577 2001-05-22  Jim Meyering  <meyering@lucent.com>
21578
21579         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't use AC_LIBOBJ(strftime),
21580         now that we use the package-supplied version unconditionally.
21581         (jm_FUNC_STRFTIME): Don't replace strftime, for the same reason.
21582
21583 2001-05-21  Jim Meyering  <meyering@lucent.com>
21584
21585         * m4/regex.m4: Change a couple backticks to single quotes to avoid
21586         shell syntax errors.
21587
21588 2001-05-21  Alexandre Duret-Lutz  <duret_g@epita.fr>
21589
21590         * m4/dos.m4 (jm_AC_DOS): Check for _WIN32, __WIN32__, and __MSDOS__.
21591
21592 2001-05-20  Paul Eggert  <eggert@twinsun.com>
21593
21594         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME):
21595         Don't bother to check library strftime, since
21596         we'll be using our own my_strftime function anyway.
21597         Define my_strftime instead of strftime.
21598
21599 2001-05-20  Alexandre Duret-Lutz  <duret_g@epita.fr>
21600
21601         * lib/dirname.c (dir_name): Compute append_dot using path, not newpath
21602         which is not yet declared.
21603
21604 2001-05-15  Jim Meyering  <meyering@lucent.com>
21605
21606         * m4/regex.m4: Use proper quoting so brackets appear in the test
21607         program.
21608         Reported by, and with help from, Bruno Haible.
21609
21610 2001-05-13  Jim Meyering  <meyering@lucent.com>
21611
21612         * m4/jm-macros.m4 (major_t, minor_t): Define to unsigned int if
21613         undefined.
21614
21615 2001-05-11  Paul Eggert  <eggert@twinsun.com>
21616
21617         dirname code cleanup.  base_name now behaves more compatibly
21618         with POSIX basename when given file names that have trailing
21619         slashes, and similarly for dir_name.  Add new primitives
21620         base_len and dir_len.  Put the directory-name-related decls
21621         into dirname.h.
21622
21623         * lib/addext.c (ISSLASH, base_name): Remove; now in dirname.h.
21624         * lib/backupfile.c (base_name): Likewise.
21625         * lib/basename.c (FILESYSTEM_PREFIX_LEN, PARAMS, ISSLASH): Likewise.
21626         * lib/dirname.c (FILESYSTEM_PREFIX_LEN, ISSLASH): Likewise.
21627         * lib/makepath.c (strip_trailing_slashes): Likewise.
21628         * lib/path-concat.c (DIRECTORY_SEPARATOR, FILESYSTEM_PREFIX_LEN,
21629         ISSLASH): Likewise.
21630         * lib/rename.c (strip_trailing_slashes): Likewise.
21631         * lib/same.c (base_name): Likewise.
21632         * lib/stripslash.c (ISSLASH): Likewise.
21633
21634         * lib/addext.c: Include <dirname.h> after size_t is defined.
21635         * lib/backupfile.c: Likewise.
21636
21637         * lib/addext.c (addext): Use base_len to trim redundant
21638         trailing slashes instead of doing it ourselves.
21639         But do not trim the last slash if it is not redundant.
21640
21641         * lib/backupfile.c (find_backup_file_name,
21642         max_backup_version): Use base_len instead of rolling it ourselves.
21643         Handle the case of "" and (on DOS) "C:" correctly.
21644
21645         * lib/basename.c: Do not include <stdio.h>, <assert.h>; no longer
21646         needed. Include <string.h>, <dirname.h>.
21647         (base_name): Allow file names ending in slashes, other than names
21648         that are all slashes.  In this case, return the basename followed
21649         by the slashes.  This is more general, and can be used in places
21650         where the original base_name purposely had an assertion failure.
21651         (base_len): New function.
21652
21653         * lib/dirname.c: Include <string.h> instead of <stdlib.h>.
21654         Do not include <assert.h>; no longer needed.
21655         Include xalloc.h.
21656         (memrchr): Remove decl.
21657         (dir_name_r): Remove.
21658         (dir_len): Renamed from dirlen.  All callers changed.
21659         Rewrite in terms of base_name, for simplicity and consistency.
21660         (dir_name): Never return NULL.  All callers changed.
21661         Do not include <stdlib.h> in test program; no longer needed.
21662         return 0; is fine for test program.
21663
21664         * lib/dirname.h (DIRECTORY_SEPARATOR, ISSLASH, FILESYSTEM_PREFIX_LEN):
21665         New macros.
21666         (base_name, base_len, dir_len, strip_trailing_slashes): New decls.
21667
21668         * lib/path-concat.c (path_concat): Use base_len to compute
21669         base length, not strlen; this means we cannot rely on memcpy
21670         to null-terminate.
21671
21672         * lib/same.c (STREQ): Remove.
21673         (same_name): Handle the case where the basename ends in trailing '/'.
21674
21675         * lib/stripslash.c (strip_trailing_slashes): Return nonzero if
21676         a slash was stripped.  Do not strip the last slash after a
21677         file system prefix.
21678
21679 2001-05-11  Paul Eggert  <eggert@twinsun.com>
21680
21681         * lib/Makefile.am (libfetish_a_SOURCES):
21682         Add strftime.c, since we now compile it on all hosts.
21683
21684         * lib/strftime.c (my_strftime):
21685         Define to nstrftime if emacs, but only if my_strftime is not defined.
21686         (extra_args, extra_args_spec, extra_args_spec_iso): Rename from
21687         ut_argument, ut_argument_spec, ut_argument_spec_iso, respectively.
21688         Add one more extra argument: a nanoseconds value.
21689         All uses changed.
21690         (ns): New macro.
21691         (my_strftime function): Add %N format.
21692         (emacs_strftimeu): Renamed from emacs_strftime,
21693         with extra ut argument.
21694
21695 2001-05-09  Paul Eggert  <eggert@twinsun.com>
21696
21697         * m4/jm-macros.m4 (jm_MACROS): Do not check for fseeko; no longer used.
21698
21699 2001-04-21  Jim Meyering  <meyering@lucent.com>
21700
21701         * m4/rmdir-errno.m4: Write to a new file, so that a restrictive umask
21702         doesn't interfere.
21703
21704 2001-04-21  Alexandre Duret-Lutz  <duret_g@epita.fr>
21705
21706         * m4/ftruncate.m4: Check for chsize.
21707         Link with ftruncate.o unconditionally if ftruncate is missing.
21708         This was required when cross-compiling to i586-mingw32msvc.
21709
21710 2001-04-08  Jim Meyering  <meyering@lucent.com>
21711
21712         * lib/getdate.y (get_date): Set tm_isdst to -1 to ensure that it is
21713         recomputed; that's necessary when the offset spans a DST transition.
21714         Patch by David J. MacKenzie.  Reported by Hon-Yin Kok.
21715
21716 2001-04-02  Jim Meyering  <meyering@lucent.com>
21717
21718         * lib/regex.h, regex.c: Update from GNU libc.
21719
21720 2001-03-24  Jim Meyering  <meyering@lucent.com>
21721
21722         * m4/jm-macros.m4: Require autoconf-2.49d.
21723
21724 2001-03-20  Bruno Haible  <haible@clisp.cons.org>
21725
21726         * m4/iconv.m4 (jm_ICONV): Recommend GNU libiconv.
21727
21728 2001-03-19  Paul Eggert  <eggert@twinsun.com>
21729
21730         * lib/version-etc.c (version_etc_copyright): Update to 2001.
21731
21732 2001-03-17  Jim Meyering  <meyering@lucent.com>
21733
21734         * m4/memcmp.m4 (jm_AC_FUNC_MEMCMP): Remove my copy of AC_FUNC_MEMCMP,
21735         now that the version in autoconf is equivalent.
21736         (jm_FUNC_MEMCMP): Adjust to use AC_FUNC_MEMCMP.
21737
21738         * m4/error.m4 (jm_PREREQ_ERROR): Invoke AC_FUNC_STRERROR_R.
21739         Suggestion from Akim Demaille.
21740
21741         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_TEMPNAME.
21742         (jm_PREREQ_TEMPNAME): New function.
21743
21744 2001-03-16  Paul Eggert  <eggert@twinsun.com>
21745
21746         * lib/tempname.c (uint64_t): Define to uintmax_t if
21747         not defined, and if UINT64_MAX is not defined.
21748         Required at least for Vax Ultrix4.3, which doesn't define uint64_t.
21749         Reported by John David Anglin.
21750
21751 2001-03-15  Bruno Haible  <haible@clisp.cons.org>
21752
21753         * lib/localcharset.c (locale_charset): Allow wildcard syntax. Also
21754         resolve alias if codeset is empty.
21755         * lib/config.charset (BeOS): Use wildcard syntax.
21756
21757 2001-03-13  Jim Meyering  <meyering@lucent.com>
21758
21759         * lib/path-concat.c (path_concat)
21760         [FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]: Don't insert a backslash when
21761         concatenating e.g., `C:' and `foo'.
21762         From Bruno Haible.
21763
21764 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
21765
21766         * lib/localcharset.c (locale_charset): Don't use
21767         setlocale(LC_CTYPE,NULL). Don't return NULL.
21768         * lib/unicodeio.c (print_unicode_char): Simplify accordingly.
21769
21770 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
21771
21772         * lib/config.charset: Update for FreeBSD 4.2 and OSF/1 5.1. Add
21773         support for DOS/DJGPP.
21774
21775 2001-03-01  Paul Eggert  <eggert@twinsun.com>
21776
21777         * m4/jm-macros.m4 (jm_MACROS): Use mkstemp replacement if the system
21778         lacks mkstemp.  Compile our own tempname.c if we compile our own
21779         mkstemp.c, as mkstemp relies on tempname.
21780
21781 2001-03-01  Jim Meyering  <meyering@lucent.com>
21782
21783         * m4/dos.m4 (jm_AC_DOS): Remove extra backslashes, now that
21784         AH_VERBATIM really does output its argument verbatim.
21785
21786 2001-02-28  Paul Eggert  <eggert@twinsun.com>
21787
21788         * lib/Makefile.am (libfetish_a_SOURCES):
21789         Add dup-safer.c, fopen-safer.c.
21790         (noinst_HEADERS): Add stdio-safer.h, unistd-safer.h.
21791
21792         * lib/dup-safer.c, lib/fopen-safer.c, lib/stdio-safer.h:
21793         * lib/unistd-safer.h: New files.
21794
21795 2001-02-25  Paul Eggert  <eggert@twinsun.com>
21796
21797         The mkstemp replacement is taken from glibc 2.2.2, with some
21798         portability fixes for use outside glibc, as follows:
21799
21800         * lib/tempname.c (struct_stat64): New macro.
21801         (direxists, __gen_tempname): Use it.
21802         This avoids a portability problem with Solaris 8.
21803
21804         * lib/tempname.c (<config.h>): Include if HAVE_CONFIG_H.
21805         (<stddef.h>, <stdint.h>, <string.h>):
21806         Include only if STDC_HEADERS || _LIBC.
21807         (<fcntl.h>): Include only if HAVE_FCNTL_H || _LIBC.
21808         (<unistd.h>): Include only if HAVE_UNISTD_H || _LIBC.
21809         (<sys/time.h>): Include only if HAVE_SYS_TIME_H || _LIBC.
21810         (__set_errno): Define this macro if <errno.h> doesn't.
21811         (P_tmpdir, TMP_MAX, __GT_FILE, __GT_BIGFILE, __GT_DIR, __GT_NOCREATE):
21812         Define these macros if <stdio.h> doesn't.
21813         (S_ISDIR, S_IRUSR, S_IWUSR, S_IXUSR):
21814         Define these macros if <sys/stat.h>
21815         doesn't.  Ignore <sys/stat.h> S_ISDIR if STAT_MACROS_BROKEN.
21816         (stat64, __getpid, __gettimeofday, __mkdir, __open, __open64, lxstat64,
21817         __xstat64): Define if not _LIBC.
21818         (__secure_getenv): Define if ! (HAVE___SECURE_GETENV || _LIBC).
21819         (__gen_tempname): Invoke gettimeofday only if
21820         HAVE_GETTIMEOFDAY || _LIBC;
21821         otherwise, fall back on plain "time".
21822         Use macros like S_IRUSR | S_IWUSR rather than octal values like 0600.
21823
21824         * lib/mkstemp.c (__GT_FILE): Define to zero if not defined.
21825
21826         * lib/mkstemp.c, lib/tempname.c: New files, taken from glibc 2.2.2.
21827
21828 2001-02-18  Paul Eggert  <eggert@twinsun.com>
21829
21830         * m4/jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for sys/resource.h.
21831
21832 2001-02-17  Paul Eggert  <eggert@twinsun.com>
21833
21834         * m4/mbrtowc.m4: New file, defining jm_FUNC_MBRTOWC.
21835         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH):
21836         Use jm_FUNC_MBRTOWC, not AC_CHECK_FUNCS(mbrtowc).
21837         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Likewise.
21838
21839 2001-02-17  Paul Eggert  <eggert@twinsun.com>
21840
21841         * lib/mbswidth.c, quotearg.c (mbrtowc, mbsinit):
21842         Remove workaround macros for hosts that have mbrtowc but not
21843         mbstate_t, as we now insist on proper declarations for both
21844         before using mbrtowc.
21845
21846 2001-02-17  Jim Meyering  <meyering@lucent.com>
21847
21848         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Don't check for
21849         getmntent via AC_CHECK_FUNCS, since that would get a `no' and disrupt
21850         further attempts by AC_FUNC_GETMNTENT to check with e.g., -lgen on
21851         UnixWare 7.1.1.
21852
21853         * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): Adapt to use AC_CACHE_CHECK etc.,
21854         rather than AC_CACHE_VAL.
21855
21856 2001-02-17  Jim Meyering  <meyering@lucent.com>
21857
21858         * lib/strtoul.c: Sync from GNU libc.  Use double quotes, not <...>
21859         around included file name.
21860
21861         * lib/strnlen.c (__strnlen): Merge in a change from GNU libc.
21862
21863         * lib/strftime.c: Update from GNU libc (the only changes were to
21864         comments).
21865
21866 2001-02-17  Jim Meyering  <meyering@lucent.com>
21867
21868         * lib/regex.c: Update from libc.
21869
21870 2001-02-17  Bruno Haible  <haible@clisp.cons.org>
21871
21872         * lib/mbswidth.h (mbswidth): Also define as macro, to avoid prototype
21873         clash.
21874
21875 2001-02-16  Paul Eggert  <eggert@twinsun.com>
21876
21877         * lib/alloca.c (malloc): Undef before defining, since stdlib.h
21878         may have defined it.  Needed for Encore Umax-3.0.9.16b systems.
21879         Reported by Mark Hounschell via Paul Eggert.
21880
21881 2001-02-07  Jim Meyering  <meyering@lucent.com>
21882
21883         * m4/regex.m4 (jm_INCLUDED_REGEX): Add a test for the latest bug.
21884
21885 2001-02-05  Jim Meyering  <meyering@lucent.com>
21886
21887         * m4/jm-macros.m4: Require autoconf-2.14d (not yet released), because
21888         it includes the patch required for `large file' support with at least
21889         HP-UX's 10.20 /bin/cc.
21890
21891 2001-02-03  Jim Meyering  <meyering@lucent.com>
21892
21893         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Restore prior use of
21894         AS_IF, now that it works once again (mysteriously).
21895         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise.
21896
21897 2001-01-30  Jim Meyering  <meyering@lucent.com>
21898
21899         Don't use filenames that are 8.3-equivalent to "conftest" on DOS.
21900         * m4/chown.m4: Rename conftestchown to conftest.chown.
21901         * m4/rename.m4: s/conftestdir/conftest.d1/ and
21902         s/conftestdir2/conftest.d2/.
21903         * m4/utimes.m4: s/conftestdata/conftest.data/
21904         Inspired by Pavel Roskin's change in autoconf.
21905
21906 2001-01-30  Bruno Haible  <haible@clisp.cons.org>
21907
21908         * lib/config.charset: Update for FreeBSD 4.2.
21909
21910 2001-01-27  Jim Meyering  <meyering@lucent.com>
21911
21912         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Open-code what was
21913         a use of AS_IF.
21914         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise.
21915
21916 2001-01-26  Jim Meyering  <meyering@lucent.com>
21917
21918         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for stddef.h, now that
21919         quotearg.c includes it.
21920
21921 2001-01-26  Jim Meyering  <meyering@lucent.com>
21922
21923         * lib/quotearg.c: Include stddef.h.
21924         * lib/quote.c: Include stddef.h.
21925         Reported by Axel Kittenberger.
21926
21927         * lib/xmalloc.c [HAVE_DONE_WORKING_MALLOC_CHECK]: Enclose error-evoking
21928         line in double quotes so that it evokes a better diagnostic.
21929         [HAVE_DONE_WORKING_REALLOC_CHECK]: Likewise.
21930         Reported by Axel Kittenberger.
21931
21932 2001-01-24  Stefan Monnier  <monnier@cs.yale.edu>
21933
21934         * regex.c (mutually_exclusive_p): Don't blindly handle `charset_not'
21935         as if it was a `charset'.
21936
21937 2001-01-21  Bruno Haible  <haible@clisp.cons.org>
21938
21939         * m4/iconv.m4 (jm_ICONV): Also check whether the iconv declaration
21940         has const.
21941
21942 2001-01-21  Bruno Haible  <haible@clisp.cons.org>
21943
21944         * lib/unicodeio.c (print_unicode_char): Cast the second iconv() arg,
21945         to avoid a warning.  Add back 'const' to inptr.
21946
21947 2001-01-20  Jim Meyering  <meyering@lucent.com>
21948
21949         Be sure that headers are checked before used in code compiled
21950         for the type checks.
21951         * m4/jm-macros.m4 (jm_MACROS): Remove all header checks.
21952         In place of that, invoke jm_CHECK_ALL_TYPES.
21953         (jm_CHECK_ALL_HEADERS): New functions with the above checks.
21954         (jm_CHECK_ALL_TYPES): Require jm_CHECK_ALL_HEADERS.
21955         Alan Iwi reported a build failure on an f300-fujitsu-uxpv4.1_ES;
21956         The check for ssize_t was mistakenly run before the test for unistd.h.
21957
21958         The configure-time check for stdbool.h was missing.
21959         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_HASH.
21960         (jm_PREREQ_HASH): New function.
21961
21962 2001-01-17  Jim Meyering  <meyering@lucent.com>
21963
21964         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use AS_IF, not AS_IFELSE,
21965         for autoconf-2.49c.
21966         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Likewise.
21967
21968 2001-01-16  Jim Meyering  <meyering@lucent.com>
21969
21970         * lib/basename.c: Include <stdio.h>, needed by assert on SunOS 4.
21971         From Bruno Haible.
21972
21973 2001-01-14  Jim Meyering  <meyering@lucent.com>
21974
21975         * m4/rename.m4: Use temporary directories named conftestdir{,2}, not
21976         foo and bar.  Create conftestdir/ in the script, not in the C code.
21977         Remove directories in the script, not in the C code.
21978         Remove conftestdir{,2} before trying to create the directory.
21979         Make the entire configure script fail if the mkdir fails.
21980
21981 2001-01-14  Jim Meyering  <meyering@lucent.com>
21982
21983         * lib/rename.c: New file.  From Volker Borchert.
21984         Include stdlib.h, string.h or strings.h, and xalloc.h.
21985         Use strip_trailing_slashes rather than open-coding it.
21986
21987 2001-01-03  Paul Eggert  <eggert@twinsun.com>
21988
21989         * lib/strftime.c: Sync with glibc time/strftime.c 1.81.
21990
21991 2001-01-03  Jim Meyering  <meyering@lucent.com>
21992
21993         * lib/unicodeio.c (print_unicode_char): Remove `const' from declaration
21994         of local `inptr' to avoid warning with some system declarations of
21995         iconv.
21996
21997 2001-01-02  Volker Borchert  <bt@teknon.de>
21998
21999         * m4/rename.m4: New file.
22000         * m4/jm-macros.m4 (jm_MACROS): Require vb_FUNC_RENAME.
22001
22002 2001-01-01  Jim Meyering  <meyering@lucent.com>
22003
22004         * m4/prereq.m4 (jm_PREREQ_READUTMP): Include utmp.h (if available),
22005         even on systems with utmpx.h.  It's necessary for the declaration of
22006         utmp's ut_user member.  Reported by Andreas Jaeger.
22007
22008         * m4/check-decl.m4 (jm_CHECK_DECLS): Include grp.h and pwd.h if
22009         available. They are required for the declarations of getgrgid and
22010         getpwuid resp.
22011         (_jm_DECL_HEADERS): Check for grp.h and pwd.h.
22012         Reported by Andreas Jaeger.
22013
22014 2001-01-01  Alexandre Duret-Lutz  <duret_g@epita.fr>
22015
22016         * m4/libintl.m4 (AM_GNU_GETTEXT): Define MKINSTALLDIRS by
22017         expanding the value of $ac_aux_dir, as in AM_MISSING_HAS_RUN,
22018         so `make install' also works in VPATH builds.
22019
22020 2000-12-31  Alexandre Duret-Lutz  <duret_g@epita.fr>
22021
22022         * m4/libintl.m4 (AM_WITH_NLS): When using AC_CONFIG_AUX_DIR,
22023         prepend $(top_srcdir) to the value of MKINSTALLDIRS so that it
22024         can be used in subdirectories.
22025
22026 2000-12-29  Paul Eggert  <eggert@twinsun.com>
22027
22028         * lib/modechange.c: Do not assume that mode_t uses the
22029         traditional octal encoding.  E.g. "chmod 1 FOO" should set
22030         the other-execute bit of FOO even if S_IXOTH != 1.
22031
22032         (SUID, SGID, SVTX, RUSR, WUSR, XUSR, RGRP, WGRP, XGRP, ROTH,
22033         WOTH, XOTH, ALLM): New macros.
22034         (S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR,
22035          S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH):
22036         Use them.
22037         (S_ISGID): Fix typo; it was defaulting to the same value as S_ISUID.
22038         (S_IRWXU, S_IRWXG, S_IRWXO): Specify defaults in terms of the above.
22039         (mode_compile):
22040         No need to use uintmax_t; unsigned long is long enough.
22041         Don't bother to get suffix since we don't use it.
22042
22043 2000-12-26  Jim Meyering  <meyering@lucent.com>
22044
22045         * m4/dos.m4 (jm_AC_DOS): Rewrite (though it's still a stub) to work
22046         better with autoheader.
22047
22048 2000-12-24  Jim Meyering  <meyering@lucent.com>
22049
22050         * lib/hash.c (is_prime): Return explicit boolean values.
22051         (hash_get_first): Return NULL to appease Irix5.6's 89.
22052         Reported by Nelson Beebe.
22053
22054 2000-12-19  Bruno Haible  <haible@clisp.cons.org>
22055
22056         * lib/localcharset.c (locale_charset): Add support for Win32.
22057
22058 2000-12-18  Paul Eggert  <eggert@twinsun.com>
22059
22060         * lib/physmem.h, lib/physmem.c: New files.
22061
22062         * lib/Makefile.am (libfetish_a_SOURCES): Add physmem.c.
22063         (noinst_HEADERS): Add physmem.h.
22064
22065         * lib/xstrtol.c (__xstrtol): Add undocumented suffixes 'g' and
22066         't' for compatibility with Solaris 8 sort.
22067
22068 2000-12-18  Bruno Haible  <haible@clisp.cons.org>
22069
22070         * lib/config.charset: Add support for BeOS.
22071
22072 2000-12-17  Jim Meyering  <meyering@lucent.com>
22073
22074         * m4/dos.m4 (jm_AC_DOS): New file and macro.
22075         * m4/jm-macros.m4 (jm_MACROS): Require jm_AC_DOS.
22076
22077 2000-12-16  Jim Meyering  <meyering@lucent.com>
22078
22079         This bug had a serious impact on chown: `chown N:M FILE' (for integer
22080         N and M) would have treated it like `chown N:N FILE'.
22081
22082         * lib/userspec.c (parse_user_spec): Fix typo: s/u/g/.
22083
22084 2000-12-16  Jim Meyering  <meyering@lucent.com>
22085
22086         * lib/getusershell.c [!SHELLS_FILE && __DJGPP__]: Define
22087         SHELLS_FILE to a file name that's useful on djgpp systems.
22088         Include stdlib.h.
22089         (ADDITIONAL_DEFAULT_SHELLS): Define.
22090         (default_shells): Prepend ADDITIONAL_DEFAULT_SHELLS.
22091         Based mostly on a patch from Prashant TR.
22092
22093 2000-12-16  Bruno Haible  <haible@clisp.cons.org>
22094
22095         * lib/config.charset: Add ISO-8859-3, BIG5HKSCS, GB18030, JOHAB,
22096         VISCII, CP874, CP949, CP950, CP1250, CP1253, CP1254, CP1255, CP1256,
22097         CP1257 to the list of canonical encodings. Rename EUC-CN to GB2312.
22098
22099 2000-12-08  Andreas Schwab  <schwab@suse.de>
22100
22101         * lib/mbswidth.c (mbsnwidth): Don't loop endlessly when called with an
22102         invalid mulitbyte sequence and with the MBSW_ACCEPT_INVALID flag set.
22103
22104 2000-12-07  Jim Meyering  <meyering@lucent.com>
22105
22106         * lib/stripslash.c (ISSLASH): Define.
22107         (strip_trailing_slashes): Use ISSLASH rather than comparing against
22108         `/'.
22109         From Prashant TR.
22110
22111         * lib/dirname.c (FILESYSTEM_PREFIX_LEN): Define.
22112         (dir_name_r): Declare this function as static.
22113         [BACKSLASH_IS_PATH_SEPARATOR]: Fix a bug that'd
22114         manifest itself on a name containing a mix of slashes and
22115         backslashes.
22116         Make this function work with names starting with a DOS-style
22117         drive letter and colon prefix.
22118         (dir_name): Append `.' if necessary.
22119         Based mostly on patches from Prashant TR and Eli Zaretskii.
22120
22121         * lib/dirname.h (dir_name_r): Remove prototype.
22122
22123 2000-12-06  Paul Eggert  <eggert@twinsun.com>
22124
22125         * m4/off_t-format.m4: Remove this file.
22126         * m4/jm-macros.m4 (jm_MACROS): Remove jm_SYS_OFF_T_PRINTF_FORMAT.
22127
22128 2000-12-06  Jim Meyering  <meyering@lucent.com>
22129
22130         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): If we need the
22131         replacement strtoull, we may well need the replacement strtoul, too.
22132         Check for declarations of strtoul and strtoull.
22133         Check for strtol.  Mainly as a cue to cause automake to include
22134         strtol.c -- that file is included by each of strtoul.c and strtoull.c.
22135         Check for limits.h -- strtol.c needs it.
22136
22137 2000-12-05  Jim Meyering  <meyering@lucent.com>
22138
22139         * lib/dirname.c (dir_name_r): Add `const' in a few local declarations.
22140
22141 2000-12-04  Jim Meyering  <meyering@lucent.com>
22142
22143         * lib/path-concat.c: [!HAVE_DECL_MALLOC]: Declare malloc.
22144         Also include memory.h, stdlib.h, unistd.h if appropriate.
22145         Reported by Andreas Jaeger (conflicting declaration of malloc).
22146
22147 2000-12-02  Jim Meyering  <meyering@lucent.com>
22148
22149         * m4/off_t-format.m4 (OFF_T_PRINTF_FORMAT_STRING): New file/macro.
22150         * m4/jm-macros.m4 (jm_MACROS): require it.
22151
22152 2000-12-02  Jim Meyering  <meyering@lucent.com>
22153
22154         * lib/closeout.h: Make idempotent, to avoid some obscure warnings.
22155
22156 2000-12-01  Paul Eggert  <eggert@twinsun.com>
22157
22158         * lib/memrchr.c: Include <config.h> before any system include file.
22159
22160 2000-11-30  Jim Meyering  <meyering@lucent.com>
22161
22162         * m4/jm-macros.m4 (jm_MACROS): Check for stdint.h.
22163
22164 2000-11-30  Jim Meyering  <meyering@lucent.com>
22165
22166         * m4/getloadavg.m4: s/ifval/m4_ifval/ to accommodate new autoconf.
22167
22168 2000-11-29  Paul Eggert  <eggert@twinsun.com>
22169
22170         * lib/dirname.c (dir_name_r): Fix typo: int -> size_t.
22171
22172 2000-11-26  Jim Meyering  <meyering@lucent.com>
22173
22174         * lib/memcoll.c: Include sys/types.h.  From Werner Almesberger.
22175
22176 2000-11-22  Paul Eggert  <eggert@twinsun.com>
22177
22178         * lib/strftime.c (my_strftime): Do not invoke mbrlen with a
22179         size of (size_t) -1; it's not portable.
22180
22181 2000-11-17  Jim Meyering  <meyering@lucent.com>
22182
22183         * lib/strstr.c: Update from GNU libc.
22184
22185 2000-11-17  Akim Demaille  <akim@epita.fr>
22186
22187         * lib/obstack.h: Formatting changes.
22188         (obstack_grow, obstack_grow0): Don't cast WHERE at all: that would
22189         prevent type checking.
22190         (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
22191         cast the value to (void *): assigning a `foo *' to a `void *'
22192         variable is valid.
22193         (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
22194
22195 2000-11-16  Jim Meyering  <meyering@lucent.com>
22196
22197         * lib/strverscmp.c: Incorporate weak-alias-related changes from glibc.
22198
22199 2000-11-11  Jim Meyering  <meyering@lucent.com>
22200
22201         * lib/error.c: Add a couple #includes, merging from GNU libc version.
22202
22203 2000-11-10  Jim Meyering  <meyering@lucent.com>
22204
22205         * lib/obstack.h: Update from GNU libc.
22206         * lib/obstack.c: Likewise.
22207
22208 2000-11-08  Bruno Haible  <haible@clisp.cons.org>
22209
22210         * m4/jm-macros.m4 (jm_MACROS): Add test for wcrtomb.
22211
22212 2000-11-06  Paul Eggert  <eggert@twinsun.com>
22213
22214         * lib/getusershell.c (setusershell): Use rewind rather than
22215         fseek/fseeko, to avoid configuration hassles with fseeko.
22216         Don't bother opening SHELLS_FILE if shellstream is NULL;
22217         it's not necessary.
22218
22219 2000-11-05  Jim Meyering  <meyering@lucent.com>
22220
22221         * lib/makepath.h (make_dir): Declare.
22222         * lib/makepath.c (make_dir): Remove `static' attribute.
22223         Tweak a comment.
22224
22225 2000-11-04  Jim Meyering  <meyering@lucent.com>
22226
22227         * m4/regex.m4: Use the `m4_' prefix on `syscmd' and `m4_sysval'.
22228
22229 2000-11-04  Alexandre Duret-Lutz  <duret_g@epita.fr>
22230
22231         * lib/hash.c (hash_get_next): Fix a thinko:  when ENTRY is the
22232         last one in a bucket, advance to the next bucket.
22233
22234 2000-11-02  Vesselin Atanasov  <vesselin@bgnet.bg>
22235
22236         * lib/fnmatch.c: Do not comment out all the code if we are using
22237         the GNU C library, because in some cases we are replacing buggy
22238         code in the GNU C library itself.
22239
22240 2000-10-30  Stefan Monnier  <monnier@cs.yale.edu>
22241
22242         * regex.c (re_iswctype, re_wctype_to_bit): Fix braino.
22243         (regex_compile): Catch bogus \(\1\).
22244
22245 2000-10-30  Paul Eggert  <eggert@twinsun.com>
22246
22247         * lib/fnmatch.c (FOLD): Do not assume that characters are unsigned.
22248         (fnmatch): Fix some FNM_FILE_NAME and FNM_LEADING_DIR bugs,
22249         e.g. fnmatch("d*/*1", "d/s/1", FNM_FILE_NAME) incorrectly yielded zero.
22250
22251 2000-10-30  Paul Eggert  <eggert@twinsun.com>
22252
22253         * lib/error.h, getline.h, modechange.h:
22254         Remove "2000" from Copyright line, as the file hasn't been
22255         changed this year other than in the copyright notice.
22256
22257         * lib/xalloc.h: Add "2000" to Copyright line, as this file
22258         was changed this year.
22259
22260 2000-10-29  Jim Meyering  <meyering@lucent.com>
22261
22262         * m4/fsusage.m4: s/AC_SHELL_IFELSE/AS_IFELSE/ to match autoconf
22263         renaming.
22264         * m4/ls-mntd-fs.m4: Likewise
22265
22266 2000-10-29  Jim Meyering  <meyering@lucent.com>
22267
22268         * lib/xstat.in: Fix grammar in comment.
22269
22270 2000-10-29  Greg Louis  <glouis@dynamicro.on.ca>
22271
22272         * lib/regex.h (__restrict_arr): Move definition out of #ifndef block.
22273         Required because egcs-2.91.66 (aka 1.1.2) defines __restrict, but
22274         doesn't define __restrict_arr.
22275
22276 2000-10-28  Jim Meyering  <meyering@lucent.com>
22277
22278         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_MEMCHR.
22279         (jm_PREREQ_MEMCHR): New function.
22280
22281 2000-10-28  Jim Meyering  <meyering@lucent.com>
22282
22283         * lib/memchr.c: Update from libc.
22284         Adjust for portability:
22285         [HAVE_STDLIB_H]: Include stdlib.h.
22286         [HAVE_BP_SYM_H || _LIBC]: Guard inclusion of bp-sym.h.
22287         Undef __memchr, too.
22288         [!weak_alias]: Define __memchr to memchr.
22289
22290         * lib/regex.c: Update from libc.
22291         * lib/regex.h: Likewise.
22292         * lib/getopt1.c: Likewise.
22293         * lib/memcmp.c: Likewise.
22294
22295         * lib/getusershell.c (setusershell) [HAVE_FSEEKO]: Use fseeko.
22296         Avoid using fseek, when possible -- it's broken by design.
22297         Patch by Ulrich Drepper.
22298
22299 2000-10-27  Stefan Monnier  <monnier@cs.yale.edu>
22300
22301         * regex.c (POP_FAILURE_REG_OR_COUNT, re_match_2_internal)
22302         (re_match_2_internal, re_match_2_internal, re_match_2_internal):
22303         Giving in to popular pressure to shut up the compiler with casts.
22304
22305 2000-10-26  Jim Meyering  <meyering@lucent.com>
22306
22307         * lib/strftime.c: Update from libc.
22308
22309 2000-10-25  Stefan Monnier  <monnier@cs.yale.edu>
22310
22311         * regex.c: More `unsigned char' -> `re_char' changes.
22312         Also change several `int' into `re_wchar_t'.
22313         (PATTERN_STACK_EMPTY, PUSH_PATTERN_OP, POP_PATTERN_OP): Remove.
22314         (PUSH_FAILURE_POINTER): Don't cast any more.
22315         (POP_FAILURE_REG_OR_COUNT): Remove the cast that strips `const'.
22316         We want GCC to complain, since this piece of code makes
22317         re_match non-reentrant, which *should* be fixed.
22318         (GET_BUFFER_SPACE): Use size_t rather than unsigned long.
22319         (EXTEND_BUFFER): Use RETALLOC.
22320         (SET_LIST_BIT): Don't cast.
22321         (re_wchar_t): New type.
22322         (re_iswctype, re_wctype_to_bit): Make it crystal clear to GCC
22323         that those two functions will always properly return.
22324         (IMMEDIATE_QUIT_CHECK): Cast to void.
22325         (analyse_first): Use recursion rather than an explicit stack.
22326         (re_compile_fastmap): Can't fail anymore.
22327         (re_search_2): Don't check re_compile_fastmap for failure.
22328         (PUSH_NUMBER): Renamed from PUSH_FAILURE_COUNT.
22329         Now also sets the new value (passed in a new argument).
22330         (re_match_2_internal): Use it.
22331         Also, use a new var `reg' of type size_t when looping through regs
22332         rather than reuse the inappropriate `mcnt'.
22333
22334 2000-10-25  Jim Meyering  <meyering@lucent.com>
22335
22336         * lib/obstack.c: Update from libc.
22337
22338 2000-10-24  Kenichi Handa  <handa@etl.go.jp>
22339
22340         * regex.c (regex_compile): Change the way of handling a range from
22341         a char less than 256 to a char not less than 256.
22342
22343 2000-10-24  Andrew Innes  <andrewi@gnu.org>
22344
22345         * regex.c (IMMEDIATE_QUIT_CHECK): New macro, which does QUIT on
22346         NT-Emacs only.
22347         (re_match_2_internal): Use IMMEDIATE_QUIT_CHECK instead of QUIT,
22348         so that re_search functions only quit when callers expect them to.
22349
22350 2000-10-23  Jim Meyering  <meyering@lucent.com>
22351
22352         * lib/hard-locale.c (hard_locale): Revert last change -- it was simply
22353         wrong.  That set_locale call must not have any side effects.
22354         From Paul Eggert.
22355
22356 2000-10-22  Jim Meyering  <meyering@lucent.com>
22357
22358         * lib/md5.c (md5_process_block) [OP]: Use `rol', not CYCLIC.
22359         [CYCLIC]: Remove now-unused definition.
22360
22361         * lib/save-cwd.c (O_DIRECTORY): Define, if needed.
22362         (save_cwd) [HAVE_FCHDIR]: Use O_DIRECTORY when opening ".".
22363         Suggestion from Ulrich Drepper.
22364
22365 2000-10-21  Jim Meyering  <meyering@lucent.com>
22366
22367         * m4/check-decl.m4 (jm_CHECK_DECLS): Also check for memrchr.
22368         * m4/prereq.m4 (jm_PREREQ_DIRNAME): New macro.
22369         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memrchr.
22370
22371 2000-10-21  Jim Meyering  <meyering@lucent.com>
22372
22373         * lib/dirname.c (memrchr): Declare if necessary.
22374         (dir_name): Remove the restriction that there be no
22375         trailing slashes.  Now, this code skips past them, effectively
22376         ignoring them.
22377         [TEST_DIRNAME] (main): New unit tests.
22378
22379         * lib/memrchr.c: New file from GNU libc.
22380         Undef __memrchr, too.
22381         [!weak_alias]: Define __memrchr to memrchr.
22382         Guard weak_alias use with `#ifdef weak_alias'.
22383
22384 2000-10-21  Jim Meyering  <meyering@lucent.com>
22385
22386         * lib/dirname.c (dir_name_r): New function, factored out of dir_name.
22387         (dir_name): Use dir_name_r.
22388         * lib/dirname.h (dir_name_r): Declare it.
22389
22390 2000-10-17  Jim Meyering  <meyering@lucent.com>
22391
22392         * lib/quote.h (PARAMS): Define and use.
22393         Reported by Akim Demaille.
22394
22395         * lib/getopt.c: Update from libc.
22396
22397 2000-10-16  Jim Meyering  <meyering@lucent.com>
22398
22399         * lib/hard-locale.c (hard_locale): Use "", not 0 as 2nd arg to
22400         setlocale.
22401         From Jan Fedak.
22402
22403 2000-10-15  Stefan Monnier  <monnier@cs.yale.edu>
22404
22405         * regex.c (WIDE_CHAR_SUPPORT): Define if _LIBC as well.
22406
22407 2000-09-25  Jim Meyering  <meyering@lucent.com>
22408
22409         * lib/md5.h (rol): Define (from GnuPG).
22410
22411         * lib/sha.c: Give credit (GnuPG) where due.
22412         (M): Use rol rather than open-coding it.
22413         Add a FIXME comment.
22414
22415 2000-09-21  Jim Meyering  <meyering@lucent.com>
22416
22417         * lib/userspec.c (parse_user_spec): Remove debugging printf I'd added.
22418         Reported by Michael Stone.
22419
22420 2000-09-20  Jim Meyering  <meyering@lucent.com>
22421
22422         * lib/Makefile.am (libfetish_a_SOURCES): Add sha.c.
22423         (noinst_HEADERS): Add sha.h.
22424         Based on code from Scott G. Miller and from GnuPG.
22425
22426 2000-09-18  Jim Meyering  <meyering@lucent.com>
22427
22428         * m4/getloadavg.m4 (AC_FUNC_GETLOADAVG): Restore the initial value of
22429         LIBS. Otherwise, everyone ends up linking with -lelf for some
22430         configurations.
22431         Reported by Mike Stone.
22432
22433 2000-09-15  Jim Meyering  <meyering@lucent.com>
22434
22435         * lib/regex.c: Update from libc.
22436
22437 2000-09-10  Jim Meyering  <meyering@lucent.com>
22438
22439         * lib/getopt.c (_getopt_internal): Update from glibc.
22440
22441 2000-09-09  Jim Meyering  <meyering@lucent.com>
22442
22443         * lib/quotearg.c: Rename ISASCII to IN_CTYPE_DOMAIN, so people don't
22444         think it should be used as a general replacement for isascii.
22445         * lib/fnmatch.c: Likewise.
22446         * lib/mbswidth.c: Likewise
22447         * lib/regex.c: Likewise.
22448
22449         Don't use atoi.
22450         * lib/userspec.c: Include sys/param.h and limits.h.
22451         Include xstrtol.h.
22452         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
22453         (UID_T_MAX, GID_T_MAX, MAXUID, MAXGID): Define.
22454         (parse_user_spec): Use xstrtoul, not atoi when converting numeric
22455         UID, GID.  Check range.
22456
22457 2000-09-06  Jim Meyering  <meyering@lucent.com>
22458
22459         * lib/getopt.c (_getopt_internal): Update from glibc.
22460
22461 2000-08-30  Jim Meyering  <meyering@lucent.com>
22462
22463         * lib/strftime.c: Merge in changes from GNU libc.
22464
22465 2000-08-26  Jim Meyering  <meyering@lucent.com>
22466
22467         * m4/jm-macros.m4: Use jm_FUNC_FPENDING.
22468         * m4/fpending.m4: New file.
22469
22470 2000-08-26  Jim Meyering  <meyering@lucent.com>
22471
22472         * lib/closeout.c: Include "__fpending.h".
22473         (close_stdout_status): Return right away if there's nothing to flush.
22474
22475         * lib/Makefile.am (noinst_HEADERS): Add __fpending.h.
22476         * lib/__fpending.c: New file.
22477         * lib/__fpending.h: New file.
22478
22479 2000-08-20  Jim Meyering  <meyering@lucent.com>
22480
22481         * m4/check-decl.m4: Include utmp.h `#if HAVE_UTMP_H', rather than
22482         `#if !HAVE_UTMPX_H'.  The latter would lose on systems with neither
22483         utmp.h nor utmpx.h.  Reported by Eli Zaretskii.
22484
22485 2000-08-11  J. David Anglin  <dave@hiauly1.hia.nrc.ca>
22486
22487         Improve fileutils installation on systems where running
22488         programs (like install) can't be unlinked.
22489         * m4/unlink-busy.m4 (jm_FUNC_UNLINK_BUSY_TEXT): New file/macro.
22490         * m4/jm-macros.m4: Use jm_FUNC_UNLINK_BUSY_TEXT.
22491
22492 2000-08-07  Paul Eggert  <eggert@twinsun.com>
22493
22494         Standardize on "memory exhausted" instead of "Memory exhausted"
22495         or "virtual memory exhausted".
22496         * lib/obstack.c (print_and_abort): Use "memory exhausted", not
22497         "virtual memory exhausted".
22498         * lib/same.c (same_name): Invoke xalloc_die instead of printing
22499         our own message.
22500         * lib/userspec.c (parse_user_spec): Likewise.
22501         * lib/bumpalloc.h: comment fix
22502         * lib/same.c, userspec.c: Include xalloc.h.
22503
22504         * lib/xalloc.h (xalloc_msg_memory_exhausted): Now char const[],
22505         not char *const and pointing to a constant array.
22506         * lib/xmalloc.c (xalloc_msg_memory_exhausted): Likewise.
22507         (xrealloc): Comment fix.
22508
22509         * lib/userspec.c (parse_user_spec):
22510         Don't translate a message until just before returning,
22511         to avoid unnecessary translation.
22512
22513 2000-08-07  Jim Meyering  <meyering@lucent.com>
22514
22515         * lib/addext.c, argmatch.c, argmatch.h, backupfile.h, bumpalloc.h,
22516         chown.c, diacrit.h, dirname.h, dup2.c, exclude.h, fileblocks.c,
22517         fnmatch.c, fnmatch.h, fsusage.c, fsusage.h, getdate.h,
22518         getgroups.c, gethostname.c, getopt.h, group-member.c,
22519         hard-locale.c, hash.h, isdir.c, lchown.c, linebuffer.c,
22520         linebuffer.h, long-options.h, malloc.c, md5.c, md5.h, memchr.c,
22521         memcmp.c, memcoll.c, memset.c, mktime.c, modechange.h, obstack.h,
22522         pathmax.h, realloc.c, rmdir.c, safe-read.c, save-cwd.c, stime.c,
22523         stpcpy.c, strcasecmp.c, strcspn.c, strdup.c, stripslash.c,
22524         strstr.c, strtod.c, strtol.c, strtoul.c, strtoull.c, strtoumax.c,
22525         utime.c, version-etc.h, xalloc.h, xstrdup.c, xstrtoumax.c,
22526         yesno.c: Back out Copyright date changes for each file with no change
22527         this year.  This eases coordination with other programs using the same
22528         source code modules.  From Paul Eggert.
22529
22530 2000-08-06  Paul Eggert  <eggert@twinsun.com>
22531
22532         * m4/mbstate_t.m4 (AC_MBSTATE_T): Define mbstate_t to be int,
22533         not char, for compatibility with glibc 2.1.3 strftime.c.
22534
22535 2000-08-03  Greg McGary  <greg@mcgary.org>
22536
22537         * lib/regex.c (SET_HIGH_BOUND, MOVE_BUFFER_POINTER,
22538         ELSE_EXTEND_BUFFER_HIGH_BOUND): New macros.
22539         (EXTEND_BUFFER): Use them.
22540
22541 2000-08-01  Jim Meyering  <meyering@lucent.com>
22542
22543         * lib/dirname.c (ISSLASH): Define.
22544         (BACKSLASH_IS_PATH_SEPARATOR): Define.
22545         (dir_name) [BACKSLASH_IS_PATH_SEPARATOR]: Handle the case in which
22546         both `\' and `/' may be use as path separators.
22547         Based on a patch from Prashant TR.
22548
22549 2000-07-31  Paul Eggert  <eggert@twinsun.com>
22550
22551         * lib/quotearg.c (quotearg_n_options): Don't make the initial
22552         slot vector a constant, since it might get modified.
22553
22554 2000-07-31  Jim Meyering  <meyering@lucent.com>
22555
22556         * lib/xmalloc.c: Use `virtual memory exhausted', not
22557         `Memory exhausted'.
22558         * lib/obstack.c (print_and_abort): Likewise.
22559
22560 2000-07-30  Paul Eggert  <eggert@twinsun.com>
22561
22562         * lib/quotearg.c (quotearg_n_options): Preallocate a slot 0
22563         buffer, so that the caller can always quote one small
22564         component of a "memory exhausted" message in slot 0.
22565         From a suggestion by Jim Meyering.
22566
22567 2000-07-30  Jim Meyering  <meyering@lucent.com>
22568
22569         * lib/makepath.c (make_path): Quote the other instance, too.
22570
22571         * lib/quotearg.c (N_STATIC_SLOTVECS): Define.
22572         (STATIC_BUF_SIZE): Define.
22573         (quotearg_n_options): Use only statically allocated storage when
22574         N < N_STATIC_SLOTVECS and the length of the quoted result is smaller
22575         than STATIC_BUF_SIZE.
22576
22577 2000-07-29  Jim Meyering  <meyering@lucent.com>
22578
22579         * lib/diacrit.c (diacrit_diac): Use __MSDOS__ in favor of MSDOS.
22580         * lib/dirname.c (dir_name): Likewise.
22581
22582         * lib/basename.c (base_name): Use ISSLASH rather than comparing against
22583         `/'.
22584
22585         * lib/dirname.c (dir_name) [MSDOS]: Declare `lim' to be const.
22586         (dir_name): Assert that there are no trailing slashes.
22587
22588 2000-07-29  Bruno Haible  <haible@clisp.cons.org>
22589
22590         * lib/mbswidth.h (mbswidth): Add a flags argument.
22591         (mbswidth): New declaration.
22592         (MBSW_ACCEPT_INVALID, MBSW_ACCEPT_UNPRINTABLE): New macros.
22593         * lib/mbswidth.c (mbswidth): Add a flags argument.
22594         (mbsnwidth): New function.
22595
22596 2000-07-24  Jim Meyering  <meyering@lucent.com>
22597
22598         * lib/mbswidth.c: Remove useless #else.  From Bruno Haible.
22599
22600 2000-07-23  Paul Eggert  <eggert@twinsun.com>
22601
22602         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Check for wcwidth declaration.
22603
22604 2000-07-23  Paul Eggert  <eggert@twinsun.com>
22605
22606         * lib/quotearg.c: Streamline by invoking multibyte code only if needed.
22607         <wchar.h>: Include only if HAVE_MBRTOWC && 1 < MB_LEN_MAX.
22608         (MB_CUR_MAX): Redefine to 1 if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX).
22609         (quotearg_buffer_restyled): If a unibyte locale, don't bother to
22610         invoke multibyte primitives.
22611
22612 2000-07-23  Paul Eggert  <eggert@twinsun.com>
22613
22614         * lib/quotearg.c:
22615         Include <wchar.h> even if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX),
22616         so that mbstate_t is always defined.
22617
22618         Do not inspect MB_LEN_MAX, since it's incorrectly defined to
22619         be 1 in at least one GCC installation, and this configuration
22620         error is likely to be common.  Ignoring MB_LEN_MAX hurts
22621         performance on hosts that have mbrtowc but have only unibyte
22622         locales, but I assume these hosts are rare.
22623
22624 2000-07-23  Paul Eggert  <eggert@twinsun.com>
22625
22626         * lib/mbswidth.c (_XOPEN_SOURCE):
22627         Don't define; this causes problems on Solaris 7.
22628         (wcwidth) [!HAVE_DECL_WCWIDTH]: Declare.
22629
22630 2000-07-23  Jim Meyering  <meyering@lucent.com>
22631
22632         * m4/check-decl.m4 (jm_CHECK_DECLS): Check for declarations of these,
22633         too: getgrgid, getpwuid, getuid.
22634
22635 2000-07-23  Jim Meyering  <meyering@lucent.com>
22636
22637         * lib/basename.c (base_name): Add an assertion.
22638
22639 2000-07-23  Bruno Haible  <haible@clisp.cons.org>
22640
22641         * lib/quotearg.c: When the system forces us to redefine mbstate_t,
22642         shadow its mbsinit function.
22643
22644 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
22645
22646         * lib/mbswidth.h: New file.
22647         * lib/mbswidth.c: New file.
22648         * lib/Makefile.am (libfetish_a_SOURCES): Add mbswidth.c.
22649         (noinst_HEADERS): Add mbswidth.h.
22650
22651 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
22652
22653         * lib/config.charset: Add support for FreeBSD. Improve support for
22654         HP-UX and IRIX 6.
22655
22656 2000-07-16  Bruno Haible  <haible@clisp.cons.org>
22657
22658         * m4/mbswidth.m4: New file.
22659         * m4/prereq.m4 (jm_PREREQ): Call jm_PREREQ_MBSWIDTH.
22660
22661 2000-07-15  Jim Meyering  <meyering@lucent.com>
22662
22663         * lib/makepath.c: Include quote.h.
22664         (make_path): Convert "`%s'" in format strings to "%s", and wrap each
22665         corresponding argument in a `quote (...)' call.
22666         Give better diagnostics.
22667
22668         * lib/Makefile.am (libfetish_a_SOURCES): Add quote.c.
22669         (noinst_HEADERS): Add quote.h.
22670
22671         * lib/quote.c (quote, quote_n): New file.  Two functions taken verbatim
22672         from tar's src/misc.c.
22673         * lib/quote.h: New file.  Prototypes for same.
22674
22675 2000-07-14  Paul Eggert  <eggert@twinsun.com>
22676
22677         From a suggestion by Bruno Haible.
22678         * lib/quotearg.c (mbrtowc): Do not use HAVE_WCHAR_H in the definition.
22679         Use defined mbstate_t, not HAVE_MBSTATE_T_OBJECT,
22680         to decide whether to define the BeOS workaround macro;
22681         this adjusts to the change to AC_MBSTATE_T.
22682
22683 2000-07-14  Jim Meyering  <meyering@lucent.com>
22684
22685         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Require
22686         jm_AC_TYPE_UINTMAX_T.
22687
22688 2000-07-13  Paul Eggert  <eggert@twinsun.com>
22689
22690         * lib/quotearg.h (enum quoting style): New enum clocale_quoting_style.
22691
22692         * lib/quotearg.c (quoting_style_args, quoting_style_vals,
22693         quotearg_buffer_restyled): Add support for
22694         clocale_quoting_style.  Undo previous change to
22695         locale_quoting_style behavior, and undo the "{LEFT QUOTATION MARK}"
22696         and "{RIGHT QUOTATION MARK}" msgids.
22697
22698 2000-07-10  Paul Eggert  <eggert@twinsun.com>
22699
22700         From a suggestion by Bruno Haible.
22701         * m4/mbstate_t.m4 (AC_MBSTATE_T):
22702         Renamed from AC_MBSTATE_T_OBJECT.  All uses changed.
22703         Change from a two-part test, which defines both HAVE_MBSTATE_T_OBJECT
22704         and mbstate_t, to a single-part test that simply defines mbstate_t.
22705         * m4/prereq.m4 (jm_PREREQ_QUOTEARG):
22706         s/AC_MBSTATE_T_OBJECT/AC_MBSTATE_T/.
22707
22708 2000-07-10  Jim Meyering  <meyering@lucent.com>
22709
22710         * m4/strerror_r.m4: Mirror the correction made in autoconf.
22711
22712         * m4/gnu-source.m4: Output to confdefs.h directly.
22713         Suggestion from Akim Demaille.
22714
22715 2000-07-09  Paul Eggert  <eggert@twinsun.com>
22716
22717         The old behavior of quoting `like this' doesn't look good with
22718         newer, ISO-style fonts.  See:
22719         http://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html
22720
22721         Instead, quote "like this" by default.  Let the translator
22722         tailor the locale-specific quoting behavior by providing
22723         translations for {LEFT QUOTATION MARK} and {RIGHT QUOTATION MARK}.
22724
22725         * lib/quotearg.c (N_): New macro.
22726         (gettext_default): New function.
22727         (quotearg_buffer_restyled): Use
22728         gettext_default ("{LEFT QUOTATION MARK}", "\"") for left quote, and
22729         gettext_default ("{RIGHT QUOTATION MARK}", "\"") for right quote.
22730
22731 2000-07-09  Jim Meyering  <meyering@lucent.com>
22732
22733         * m4/jm-macros.m4 (jm_MACROS): Add a test to see if -lm is required
22734         to link seq.  If so, set SEQ_LIBM to -lm.  From Bruno Haible.
22735
22736         * m4/gnu-source.m4 (AC__GNU_SOURCE): New file/macro.
22737         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require it.
22738
22739 2000-07-09  Jim Meyering  <meyering@lucent.com>
22740
22741         * lib/Most files: Update copyright dates to include 2000.
22742
22743 2000-07-08  Jim Meyering  <meyering@lucent.com>
22744
22745         * lib/xgethostname.c (ENAMETOOLONG): Define to an unlikely value
22746         if not defined.
22747         (xgethostname): Remove now-unnecessary #ifdef.
22748         Move declaration of `err' into loop where it's used.
22749
22750 2000-07-05  Paul Eggert  <eggert@twinsun.com>
22751         and Bruno Haible  <haible@clisp.cons.org>
22752
22753         * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Test for mbstate_t
22754         only if the test for an object-type mbstate_t fails.  This
22755         prevents us from mistakenly reporting that mbstate_t is a
22756         system object type after we "#define mbstate_t int" to work
22757         around its lack.
22758
22759 2000-07-05  Paul Eggert  <eggert@twinsun.com>
22760         and Bruno Haible  <haible@clisp.cons.org>
22761
22762         * lib/quotearg.c (mbrtowc): Declare returned type, since BeOS doesn't.
22763
22764 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
22765
22766         * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Pass a reasonably large buffer
22767         to strerror_r.
22768         Include <ctype.h> for use of isalpha.
22769
22770 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
22771
22772         * lib/xgethostname.c (xgethostname): Protect against the SunOS 5.5 bug
22773         by allocating a larger buffer. Test the gethostname return value for
22774         being >= 0, not == 0, for BeOS.  Don't exhaust memory if gethostname
22775         returns an error and ENAMETOOLONG isn't defined.
22776
22777 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
22778
22779         * lib/quotearg.c (struct quoting_options): Simplify quote_these_too
22780         dimension.
22781
22782 2000-07-04  Jim Meyering  <meyering@lucent.com>
22783
22784         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use plain old `echo' instead
22785         of the deprecated AC_CHECKING.
22786
22787 2000-07-04  Jim Meyering  <meyering@lucent.com>
22788
22789         * lib/strndup.c: [!HAVE_DECL_STRNLEN]: Declare strnlen.
22790         Reported by Bruno Haible.
22791
22792 2000-07-04  Jim Meyering  <meyering@lucent.com>
22793
22794         * lib/quotearg.c: Make inclusion of <wchar.h> independent of whether
22795         HAVE_MBRTOWC is set.  Required at least for irix-5.6, which
22796         lacks mbrtowc.
22797
22798 2000-07-03  Paul Eggert  <eggert@twinsun.com>
22799
22800         * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Port to autoconf 2.13.
22801         Add AC_CHECK_HEADERS(stdlib.h), since we use HAVE_STDLIB_H.
22802
22803 2000-07-03  Paul Eggert  <eggert@twinsun.com>
22804         and Bruno Haible  <haible@clisp.cons.org>
22805
22806         * lib/quotearg.c (mbrtowc):
22807         Assign to *pwc, and return 1 only if result is nonzero.
22808         (iswprint): Use ISPRINT when substituting our own mbrtowc.
22809
22810 2000-07-03  Jim Meyering  <meyering@lucent.com>
22811
22812         * m4/check-decl.m4 (AC_CHECK_DECLS): Add strnlen.
22813
22814 2000-07-03  Jim Meyering  <meyering@lucent.com>
22815
22816         * lib/readutmp.h: [HAVE_UTMPX_H]: Include <utmp.h> if HAVE_UTMP_H.
22817         This is necessary to get a definition of e.g., UTMP_FILE on
22818         HP-UX 10.20.
22819         From Bob Proulx.
22820
22821 2000-07-02  Jim Meyering  <meyering@lucent.com>
22822
22823         * m4/mbstate_t.m4: Also define mbstate_t, if necessary.
22824
22825         * m4/chown.m4: Replace each use of AC_SUBST(LIBOBJS)/LIBOBJS=... with
22826         AC_LIBOBJ(function_name).
22827         * m4/chown.m4: Likewise.
22828         * m4/fnmatch.m4: Likewise.
22829         * m4/ftruncate.m4: Likewise.
22830         * m4/getgroups.m4: Likewise.
22831         * m4/getline.m4: Likewise.
22832         * m4/group-member.m4: Likewise.
22833         * m4/jm-macros.m4: Likewise.
22834         * m4/lstat.m4: Likewise.
22835         * m4/malloc.m4: Likewise.
22836         * m4/memcmp.m4: Likewise.
22837         * m4/nanosleep.m4: Likewise.
22838         * m4/putenv.m4: Likewise.
22839         * m4/realloc.m4: Likewise.
22840         * m4/regex.m4: Likewise.
22841         * m4/stat.m4: Likewise.
22842         * m4/strftime.m4: Likewise.
22843
22844 2000-07-02  Jim Meyering  <meyering@lucent.com>
22845
22846         * lib/quotearg.c (mbstate_t): Don't define here.
22847
22848 2000-07-02  Jim Meyering  <meyering@lucent.com>
22849
22850         * lib/nanosleep.c (SIGCONT): Define if not already defined.
22851
22852 2000-07-01  Jim Meyering  <meyering@lucent.com>
22853
22854         * m4/uptime.m4: Put double quotes around use of $cross_compiling.
22855
22856 2000-07-01  Jim Meyering  <meyering@lucent.com>
22857
22858         * m4/ls-mntd-fs.m4: Remove a `FIXME' comment and fix the associated
22859         problem.
22860
22861 2000-07-01  Bruno Haible  <haible@clisp.cons.org>
22862
22863         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Rename BeOS specific
22864         macro from MOUNTED_NEXT_DEV to MOUNTED_FS_STAT_DEV.
22865
22866 2000-07-01  Bruno Haible  <haible@clisp.cons.org>
22867
22868         * lib/mountlist.c: Use MOUNTED_FS_STAT_DEV instead of MOUNTED_NEXT_DEV,
22869         per change in ../m4/ls-mntd-fs.m4.
22870         (read_filesystem_list): Ignore symbolic links.
22871
22872 2000-06-29  Jim Meyering  <meyering@lucent.com>
22873
22874         * lib/same.c: Include <string.h> or <strings.h>, as appropriate,
22875         for declaration of strcmp.
22876
22877         * lib/long-options.c: Include <stdlib.h>, for declaration of exit.
22878
22879         * lib/mountlist.c (fsp_to_string) [HAVE_F_FSTYPENAME_IN_STATFS]:
22880         Avoid warning by casting result to `char *' to remove `const'.
22881
22882 2000-06-28  Jim Meyering  <meyering@lucent.com>
22883
22884         * m4/mbstate_t.m4: Use stdlib.h, not stdio.h.  The latter is not
22885         included by quotearg.c, for which we perform this test.  From
22886         Bruno Haible.
22887
22888 2000-06-27  Bruno Haible  <haible@clisp.cons.org>
22889
22890         * m4/check-decl.m4 (_jm_DECL_HEADERS): Check for utmp.h as well.
22891         * m4/prereq.m4 (jm_PREREQ_READUTMP): Likewise. If either <utmp.h> or
22892         <utmpx.h> exists, put readutmp.o into LIBOBJS.
22893
22894 2000-06-27  Bruno Haible  <haible@clisp.cons.org>
22895
22896         * lib/Makefile.am (libfetish_a_SOURCES): Remove readutmp.c.
22897
22898 2000-06-26  Paul Eggert  <eggert@twinsun.com>
22899
22900         savedir now sets errno on failure and invokes xmalloc to get memory.
22901         Fix a couple of other minor bugs while we're at it.
22902
22903         * lib/savedir.c (<unistd.h>): Do not include; there's no need.
22904         (NAMLEN): Remove macro.
22905         (malloc, realloc): Remove decls.
22906         (stpcpy): Likewise.
22907         ("xalloc.h"): Include.
22908         (NAME_SIZE_DEFAULT): New macro.
22909         (savedir): Use xmalloc / xrealloc to allocate memory.
22910         Use NAME_SIZE_DEFAULT if name_size is negative or overflows to zero.
22911         Skip "" directory entries.
22912         Use strlen to calculate directory entry length, since the old method
22913         is rarely used these days and isn't worth supporting.
22914         Don't use a pointer after freeing it.
22915         Check for integer overflow when calculating allocation size.
22916         Use memcpy to copy entries, instead of stpcpy.
22917         Set errno properly when returning NULL.
22918         Check for readdir error.
22919
22920 2000-06-26  Jim Meyering  <meyering@lucent.com>
22921
22922         * lib/posixtm.c [HAVE_STDLIB_H]: Include stdlib.h, for decl of abort.
22923
22924 2000-06-25  Jim Meyering  <meyering@lucent.com>
22925
22926         * m4/mbstate_t.m4: Include stdio.h before wchar.h to work around
22927         Linux header bug when _XOPEN_SOURCE is defined to 500.
22928
22929 2000-06-25  Bruno Haible  <haible@clisp.cons.org>
22930
22931         * lib/unicodeio.c (print_unicode_char): Work around ansi2knr
22932         deficiency.
22933
22934 2000-06-25  Bruno Haible  <haible@clisp.cons.org>
22935
22936         * lib/getusershell.c (xmalloc, xrealloc): Remove functions.
22937         Include xalloc.h.
22938         Don't include <stdlib.h>.  Don't declare malloc, realloc.
22939
22940 2000-06-24  Jim Meyering  <meyering@lucent.com>
22941
22942         * m4/strerror_r.m4: Revive this file -- to try out an experimental
22943         version of AC_FUNC_STRERROR_R that may work even on BeOS, a system
22944         for which strerror does return char*, but which lacks a conveniently
22945         accessible declaration of the function.  If the compile-test says
22946         strerror_r doesn't work, then resort to a `run'-test that works on
22947         BeOS and segfaults on DEC Unix.
22948
22949 2000-06-24  Jim Meyering  <meyering@lucent.com>
22950
22951         * lib/error.c [!HAVE_DECL_STRERROR_R]: Declare strerror_r.
22952
22953 2000-06-23  Paul Eggert  <eggert@twinsun.com>
22954
22955         * m4/mbstate_t.m4: New file, defining AC_MBSTATE_T_OBJECT.
22956         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Use it.  Add check for iswprint.
22957
22958 2000-06-23  Paul Eggert  <eggert@twinsun.com>
22959
22960         * lib/quotearg.c: Include <wctype.h> after <wchar.h>, for Solaris 2.5.
22961         (mbrtowc, mbstate_t): Define substitutes if
22962         HAVE_MBRTOWC && HAVE_WCHAR_H && !HAVE_MBSTATE_T_OBJECT.
22963         (iswprint): Define to 1 if !defined iswprint && !HAVE_ISWPRINT,
22964         not if ! (HAVE_MBRTOWC && HAVE_WCHAR_H).
22965
22966 2000-06-23  Jim Meyering  <meyering@lucent.com>
22967
22968         * m4/afs.m4: Add missing AC_MSG_RESULT.
22969         Reported by Bruno Haible.
22970
22971         * m4/fsusage.m4: s/AC_MSG_CHECKING/AC_CHECKING/.
22972         Suggestion from Bruno Haible.
22973
22974 2000-06-23  Jim Meyering  <meyering@lucent.com>
22975
22976         * lib/getpass.c: New file, from Bruno Haible.  Required for BeOS.
22977
22978 2000-06-21  Jim Meyering  <meyering@lucent.com>
22979
22980         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add getpass.
22981
22982 2000-06-21  Jim Meyering  <meyering@lucent.com>
22983
22984         * lib/Makefile.am (libfetish_a_SOURCES): Add getstr.c.
22985         (noinst_HEADERS): Add getstr.h.
22986
22987         * lib/getline.c (getstr): Move into a separate file.
22988         * lib/getstr.c (getstr): New file, extracted from getline.c, with
22989         the following changes: new parameter, delim2; both delim[12]
22990         parameters have type `int', not `char'.  The latter would lose
22991         with 8-bit delimiters.
22992         * lib/getstr.h: New file.
22993
22994 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
22995
22996         * lib/xgetcwd.c (xgetcwd): If the required pathname length is smaller
22997         than 1024, return a memory chunk of least possible size, instead
22998         of size PATH_MAX + 2. In the loop, increment the size proportionally.
22999         Use free/xmalloc instead of xrealloc to avoid copying for very long
23000         paths.
23001
23002 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
23003
23004         * lib/path-concat.c (path_concat): Don't access dir[-1] if dir is
23005         the empty string.
23006
23007 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
23008
23009         * lib/canon-host.c (canon_host): Use malloc and memcpy to copy an
23010         address, not strdup.  Include <stdlib.h> and don't declare free().
23011
23012 2000-06-19  Jim Meyering  <meyering@lucent.com>
23013
23014         * lib/getloadavg.c [HAVE_NLIST_H] (NLIST_STRUCT): Define.
23015
23016 2000-06-18  Jim Meyering  <meyering@lucent.com>
23017
23018         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Remove mkdir.
23019
23020         * m4/link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): Change the
23021         `checking whether...' message to be consistent with that of the
23022         lstat test.
23023
23024 2000-06-18  Jim Meyering  <meyering@lucent.com>
23025
23026         * lib/mkdir.c: Remove file, due mainly to copyright incompatibility.
23027         Besides, these days every porting target provides a mkdir function.
23028
23029         * lib/strnlen.c: Include memory.h, string.h, and/or strings.h as
23030         needed. (this snippet comes from src/system.h).
23031
23032 2000-06-16  Bruno Haible  <haible@clisp.cons.org>
23033
23034         * m4/glibc21.m4 (jm_GLIBC21): Define GLIBC21 for Makefiles, not for C.
23035
23036 2000-06-15  Paul Eggert  <eggert@twinsun.com>
23037
23038         * lib/human.c (adjust_value): New function.
23039         (human_readable_inexact): Apply rounding style even when
23040         printing approximate values.
23041
23042 2000-06-14  Paul Eggert  <eggert@twinsun.com>
23043
23044         * lib/human.c (human_readable_inexact): Allow an input block
23045         size that is not a multiple of the output block size, and vice versa.
23046         Reported by Piergiorgio Sartor.
23047
23048 2000-06-14  Paul Eggert  <eggert@twinsun.com>
23049
23050         * lib/getdate.y (get_date): Apply relative times after time
23051         zone indicator, not before.  Reported by Todd A. Jacobs.
23052
23053 2000-06-13  Jim Meyering  <meyering@lucent.com>
23054
23055         * lib/Makefile.am (all-local): Depend on lstat.c and stat.c.
23056
23057         * lib/xstat.in [!HAVE_DECL_FREE]: Declare free in lstat.c.
23058
23059 2000-06-12  Paul Eggert  <eggert@twinsun.com>
23060
23061         * lib/xstat.in: Include <stdlib.h> in lstat, to declare "free".
23062
23063 2000-06-12  Jim Meyering  <meyering@lucent.com>
23064
23065         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Replace with
23066         AC_FUNC_GETLOADAVG from autoconf, and tweak the latter to accept an
23067         optional argument.
23068         * m4/jm-macros.m4: s/AM_FUNC_GETLOADAVG/AC_FUNC_GETLOADAVG/, and supply
23069         the optional argument, `lib'.
23070
23071 2000-06-08  Jim Meyering  <meyering@lucent.com>
23072
23073         * m4/largefile.m4: Remove file (now that it's part of autoconf).
23074
23075 2000-06-04  Paul Eggert  <eggert@twinsun.com>
23076
23077         Rewrite largefile configuration so that we don't need to run
23078         getconf and don't need AC_CANONICAL_HOST.  [I'm leaving the use of
23079         AC_CANONICAL_HOST in configure.in -- jmm]
23080
23081         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS,
23082         AC_SYS_LARGEFILE_SPACE_APPEND): Remove.
23083         (AC_SYS_LARGEFILE_TEST_INCLUDES): New macro.
23084         (AC_SYS_LARGEFILE_MACRO_VALUE): Change arguments from
23085         CODE-TO-SET-DEFAULT to VALUE, INCLUDES, FUNCTION-BODY.
23086         All uses changed.
23087         Instead of inspecting the output of getconf, try to compile the
23088         test program without and with the macro definition.
23089         (AC_SYS_LARGEFILE): Do not require AC_CANONICAL_HOST or check
23090         for getconf.  Instead, check for the needed flags by compiling
23091         test programs.
23092
23093 2000-06-04  Paul Eggert  <eggert@twinsun.com>
23094
23095         * lib/strnlen.c: Include <config.h> if HAVE_CONFIG_H.
23096
23097 2000-06-04  Jim Meyering  <meyering@lucent.com>
23098
23099         * lib/getugroups.c (getugroups): Cast -1 to gid_t, for systems like
23100         SunOS 4.1.4 for which gid_t is an unsigned type.
23101
23102 2000-06-03  Jim Meyering  <meyering@lucent.com>
23103
23104         * m4/prereq.m4 (jm_PREREQ_HUMAN): Use []-quoted list in AC_CHECK_DECLS,
23105         now that autoconf requires that.
23106
23107         * m4/jm-glibc-io.m4: Add a kludge to make autoheader emit the required
23108         #undefs.  E.g., #undef HAVE_DECL_FERROR_UNLOCKED.
23109         Use []-quoted list in AC_CHECK_DECLS, now that autoconf requires that.
23110
23111 2000-06-03  Jim Meyering  <meyering@lucent.com>
23112
23113         * lib/strnlen.c [!HAVE_DECL_MEMCHR]: Declare memchr.
23114
23115 2000-06-03  Bruno Haible  <haible@clisp.cons.org>
23116
23117         * m4/glibc21.m4: New file.
23118         * m4/jm-macros.m4 (jm_MACROS): Call jm_GLIBC21.
23119
23120 2000-06-03  Bruno Haible  <haible@clisp.cons.org>
23121
23122         * lib/Makefile.am (install-exec-local): On systems with glibc-2.1 or
23123         newer, don't install charset.alias.
23124         * lib/config.charset: Change the Linux/glibc rules so they become empty
23125         on glibc-2.1 or newer.
23126
23127 2000-06-02  Jim Meyering  <meyering@lucent.com>
23128
23129         * lib/mountlist.c: Back out last change.  Instead, do this...
23130         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Set the
23131         me_dummy member using the same `ignore'-testing code.
23132         * lib/mountlist.h (ME_DUMMY): Add `autofs' to the list of ignored
23133         fs_type strings.
23134         From Mark D. Roth.
23135
23136 2000-05-29  Jim Meyering  <meyering@lucent.com>
23137
23138         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Ignore
23139         mounts with the `ignore' attribute.  Based on a patch from
23140         Mark D. Roth.
23141
23142 2000-05-28  Jim Meyering  <meyering@lucent.com>
23143
23144         * m4/jm-macros.m4 (AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK): Rename from
23145         jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
23146         * m4/stat.m4: Likewise.
23147         * m4/lstat.m4: Likewise.
23148         * m4/lstat-slash.m4: Remove file (absorbed into autoconf).
23149
23150         * m4/jm-macros.m4 (AC_FUNC_STRERROR_R): Rename from jm_FUNC_STRERROR_R.
23151         * m4/strerror_r.m4: Remove file (absorbed into autoconf).
23152
23153 2000-05-26  Jim Meyering  <meyering@lucent.com>
23154
23155         * m4/uptime.m4: Use `$cross_compiling', not `$ac_cv_prog_cc_cross'.
23156
23157 2000-05-24  Jim Meyering  <meyering@lucent.com>
23158
23159         * m4/prereq.m4: Use []-quoted list in AC_CHECK_MEMBERS, now that
23160         autoconf requires that.
23161         * m4/lib-check.m4: Likewise.
23162         * m4/jm-macros.m4: Likewise.
23163         * m4/strftime.m4: Likewise.
23164
23165         * m4/check-decl.m4 (jm_CHECK_DECLS): Use []-quoted list in
23166         AC_CHECK_DECLS, now that autoconf requires that.
23167
23168 2000-05-22  Jim Meyering  <meyering@lucent.com>
23169
23170         * m4/stat.m4: Require jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
23171         * m4/lstat.m4: Likewise.
23172
23173 2000-05-22  Jim Meyering  <meyering@lucent.com>
23174
23175         * lib/makepath.c: Remove old, now-unnecessary `#ifdef __MSDOS__' block.
23176
23177 2000-05-20  Jim Meyering  <meyering@lucent.com>
23178
23179         * m4/prereq.m4 (jm_PREREQ_HUMAN): New macro.
23180         (jm_PREREQ): Use it.
23181
23182 2000-05-18  Jim Meyering  <meyering@lucent.com>
23183
23184         * lib/hash.c (hash_rehash): Fix a nasty bug: copy the free entry list
23185         back, too, since it may have been modified by allocate_entry.
23186         (hash_delete): Rewrite to use neither the assignment operator
23187         nor the comma operator in an if-expression.
23188
23189 2000-05-15  Paul Eggert  <eggert@twinsun.com>
23190
23191         * lib/closeout.c:
23192         <sys/stat.h>, <sys/types.h>, <unistd.h>, (STDOUT_FILENO):
23193         Remove; no longer needed.
23194         "quotearg.h": Add include.
23195         (file_name): Do not bother to explicitly initialize to NULL; it's less
23196         efficient on some hosts.
23197         (close_stdout_status): Remove test as to whether stdout was already
23198         closed; it breaks for the case "echo x | sort >&-".
23199         Quote file name colons.
23200         Do not assume that _("write error") lacks format strings.
23201
23202 2000-05-15  Jim Meyering  <meyering@lucent.com>
23203
23204         * lib/version-etc.c (version_etc_copyright): Update the copyright
23205         string used in all --version output.
23206
23207 2000-05-14  Jim Meyering  <meyering@lucent.com>
23208
23209         * lib/closeout.c (close_stdout_set_file_name): New function.
23210         (close_stdout_status): Use new file-scoped global.
23211         Return right away if fstat says the stdout file descriptor is invalid.
23212         * lib/closeout.h (close_stdout_set_file_name): Declare.
23213
23214 2000-05-10  Jim Meyering  <meyering@lucent.com>
23215
23216         * lib/closeout.c [default_exit_status]: New file-scoped variable.
23217         (close_stdout_set_status): New function.
23218         * lib/closeout.h (close_stdout_set_status): Declare.
23219
23220 2000-05-09  Jim Meyering  <meyering@lucent.com>
23221
23222         * m4/gettext.m4: Rename this...
23223         * m4/libintl.m4: ...to this.
23224
23225 2000-05-08  Jim Meyering  <meyering@lucent.com>
23226
23227         * lib/long-options.c: Don't include closeout.h.
23228         (parse_long_options): Don't call close_stdout for --version.
23229
23230 2000-05-06  Paul Eggert  <eggert@twinsun.com>
23231
23232         * m4/largefile.m4 (AC_SYS_LARGEFILE): Define _XOPEN_SOURCE to
23233         be 500, instead of _GNU_SOURCE to be 1, to work around glibc
23234         2.1.3 bug.  This avoids a clash when files like regex.c define
23235         _GNU_SOURCE.
23236
23237 2000-05-06  Jim Meyering  <meyering@lucent.com>
23238
23239         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add atexit.
23240         (AC_REPLACE_FUNCS): Add strnlen.
23241
23242         * m4/rmdir-errno.m4 (fetish_FUNC_RMDIR_NOTEMPTY): New macro and file.
23243         * m4/jm-macros.m4: Require fetish_FUNC_RMDIR_NOTEMPTY.
23244
23245         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Save and restore LIBS around
23246         AC_SEARCH_LIBS call for nanosleep.
23247         (LIB_NANOSLEEP): Set and AC_SUBST.
23248
23249 2000-05-06  Jim Meyering  <meyering@lucent.com>
23250
23251         * lib/strnlen.c: Undefine __strnlen and strnlen.
23252         [!weak_alias]: Define __strnlen to strnlen.
23253
23254         * lib/atexit.c: New file, from libiberty.
23255
23256 2000-05-06  Jim Meyering  <meyering@lucent.com>
23257
23258         * lib/closeout.c (close_stdout_status): Also check for errors on the
23259         stderr stream.
23260
23261 2000-05-05  Jim Meyering  <meyering@lucent.com>
23262
23263         * m4/jm-macros.m4 (jm_MACROS): Save and restore LIBS around
23264         AC_SEARCH_LIBS call for clock_gettime.
23265         (LIB_CLOCK_GETTIME): Set and AC_SUBST.
23266
23267         * m4/search-libs.m4: Update from autoconf.
23268
23269         su doesn't work on Solaris 2.6.
23270         * m4/lib-check.m4: When checking for struct spwd.sp_pwdp, also include
23271         <shadow.h>.  Reported by Dragos Harabor.
23272
23273 2000-05-05  Bruno Haible  <haible@clisp.cons.org>
23274
23275         * lib/localcharset.c (get_charset_aliases): Use malloc, realloc and
23276         memcpy instead of xmalloc, xrealloc, path_concat.
23277         (locale_charset): Treat empty environment variables as absent.
23278         (DIRECTORY_SEPARATOR, ISSLASH): New macros.
23279
23280 2000-05-04  Jim Meyering  <meyering@lucent.com>
23281
23282         * lib/getopt.c: Update from glibc.
23283         * lib/obstack.c: Likewise.
23284         * lib/obstack.h: Likewise.
23285         * lib/regex.c: Likewise.  NB: K&R compiler support is dropped for this
23286         file
23287
23288         * lib/regex.h: Likewise.
23289         * lib/strndup.c: Likewise.
23290         * lib/strnlen.c: New file, from glibc.
23291
23292 2000-05-03  Jim Meyering  <meyering@lucent.com>
23293
23294         * m4/check-decl.m4 (AC_CHECK_DECLS): Add strndup.
23295
23296 2000-05-02  Paul Eggert  <eggert@twinsun.com>
23297
23298         * m4/largefile.m4 (AC_SYS_LARGEFILE): Define _GNU_SOURCE if
23299         this is needed to make ftello visible (e.g. glibc 2.1.3).  Use
23300         compile-time test, rather than inspecting host and OS, to
23301         decide whether to define _LARGEFILE_SOURCE.
23302
23303 2000-05-01  Jim Meyering  <meyering@lucent.com>
23304
23305         * m4/fsusage.m4: Use AC_MSG_CHECKING instead of obsolete AC_CHECKING.
23306
23307         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add BeOS support.
23308         Based on a patch from Bruno Haible.
23309
23310 2000-05-01  Jim Meyering  <meyering@lucent.com>
23311
23312         * lib/full-write.c (full_write): Remove `FIXME' part of comment.
23313
23314 2000-04-29  Jim Meyering  <meyering@lucent.com>
23315
23316         * lib/path-concat.c: Declare strdup only if it's not defined.
23317         * lib/canon-host.c: Likewise.
23318
23319 2000-04-28  Jim Meyering  <meyering@lucent.com>
23320
23321         * lib/rpmatch.c [HAVE_LIMITS_H]: Include limits.h before regex.h to
23322         avoid redefinition warning on some systems (HPUX).  Otherwise, regex.h
23323         is included first, then limits.h is included by locale.h by libintl.h.
23324         From John David Anglin.
23325
23326 2000-04-25  Jim Meyering  <meyering@lucent.com>
23327
23328         * lib/makepath.c (S_IRWXUGO): Define.
23329         (make_path): Always perform explicit chmod if MODE specifies any
23330         of the `special' permission bits.  Prompted by a bug report against
23331         install from Mate Wierdl and Joost van Baal.
23332
23333 2000-04-18  Jim Meyering  <meyering@lucent.com>
23334
23335         * m4/prereq.m4 (jm_PREREQ_GETPAGESIZE): New macro.
23336         (jm_PREREQ): Use it.
23337
23338 2000-04-18  Jim Meyering  <meyering@lucent.com>
23339
23340         * lib/README: New file.
23341
23342         * lib/getpagesize.h [!getpagesize && HAVE_OS_H && B_PAGE_SIZE]: Define
23343         getpagesize.  For BeOS.  Based on a patch from Bruno Haible.
23344
23345 2000-04-17  Jim Meyering  <meyering@lucent.com>
23346
23347         Get it right :-)
23348         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Emit the
23349         actual #define via AH_VERBATIM.  Don't need separate AC_DEFINE.
23350         Suggestion from Akim Demaille.
23351
23352 2000-04-17  Jim Meyering  <meyering@lucent.com>
23353
23354         * lib/strftime.c (my_strftime) [strftime]: Declare strftime here, since
23355         the definition of it to rpl_strftime also defined-away the system's
23356         declaration.
23357
23358 2000-04-15  Jim Meyering  <meyering@lucent.com>
23359
23360         Use `C' to denote so-called `contiguous' files, the same way
23361         that tar does.
23362         * lib/filemode.c (S_ISCTG) [!S_ISCTG && S_IFCTG]: Define.
23363         (ftypelet): Use S_ISCTG.
23364         From Michael Deutschmann.
23365
23366 2000-04-14  Jim Meyering  <meyering@lucent.com>
23367
23368         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use the one-arg
23369         form of AC_DEFINE.  Otherwise, the #ifndef in AH_VERBATIM gets
23370         clobbered.
23371
23372 2000-04-14  Jim Meyering  <meyering@lucent.com>
23373
23374         * lib/strftime.c (my_strftime) [#ifdef strftime]: Declare strftime.
23375
23376 2000-04-13  Jim Meyering  <meyering@lucent.com>
23377
23378         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use new
23379         AH_VERBATIM to insert required #ifndef into config.h.in.
23380         Suggestion from Akim Demaille.
23381
23382 2000-04-12  Jim Meyering  <meyering@lucent.com>
23383
23384         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Use AC_CHECK_HEADERS, not
23385         `AC_CHECK_HEADER' to check for locale.h.  Thanks to a report from
23386         Christian Krackowizer.
23387
23388         More code moved from ../configure.in into (jm_CHECK_ALL_TYPES).
23389         * m4/jm-macros.m4 (_GNU_SOURCE): Define.
23390         (AC_SYS_LARGEFILE): Require.
23391         (AM_C_PROTOTYPES): Require.
23392
23393 2000-04-08  Jim Meyering  <meyering@lucent.com>
23394
23395         * lib/Makefile.am (charset.alias): Use t-$@, not $@-t so the DOS 8.3
23396         names don't conflict.  Reported by Eli Zaretskii.
23397
23398 2000-04-07  Jim Meyering  <meyering@lucent.com>
23399
23400         * lib/putenv.c: Move inclusion of errno.h so it follows that of
23401         sys/types.h, to work around system header problems on AIX 3.2.5.
23402         From Bruno Haible.
23403
23404 2000-04-07  Bruno Haible  <haible@clisp.cons.org>
23405
23406         * lib/unicodeio.c (print_unicode_char): Avoid triggering Solaris iconv
23407         bug.  Deal with the different error behavior of Irix iconv.
23408
23409 2000-04-05  Paul Eggert  <eggert@twinsun.com>
23410
23411         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Don't use -n32 on
23412         IRIX if the installer said otherwise.
23413
23414 2000-04-05  Jim Meyering  <meyering@lucent.com>
23415
23416         Portability tweaks required for ultrix4.3.
23417         * m4/check-decl.m4 [!HAVE_UTMPX_H] (headers): Include <utmp.h>.
23418         (jm_CHECK_DECLS): Add getutent to the list of functions.
23419         (_jm_DECL_HEADERS): Add utmpx.h.
23420         From John David Anglin.
23421
23422         * m4/strftime.m4: Back out the 2000-04-02 change.
23423         Instead of that change, simply undefine putenv in the test program.
23424
23425 2000-04-05  Jim Meyering  <meyering@lucent.com>
23426
23427         Portability tweaks required for ultrix4.3.
23428         * lib/readutmp.h [HAVE_UTMPX_H && !HAVE_DECL_GETUTENT]: Declare
23429         getutent.
23430         * lib/readutmp.c: Include sys/types.h before sys/stat.h.
23431         * lib/canon-host.c: Declare strdup.
23432         * lib/path-concat.c: Likewise.
23433         From John David Anglin.
23434
23435 2000-04-04  Jim Meyering  <meyering@lucent.com>
23436
23437         Be more DOS 8.3-friendly.
23438         * lib/ref-add.sin: Renamed from ref-add.sed.in.
23439         * lib/ref-del.sin: Renamed from ref-del.sed.in.
23440         * lib/Makefile.am: Reflect renaming.
23441         Reported by Eli Zaretskii.
23442
23443         Use a temporary file name that won't clash with `charset.alias'
23444         in the DOS 8.3 name space.
23445         * lib/Makefile.am (charset_tmp): Define.
23446         (install-exec-local): Use $(charset_tmp) instead of $(charset_alias)-t.
23447         (uninstall-local): Likewise.
23448         Reported by Eli Zaretskii.
23449
23450 2000-04-03  Jim Meyering  <meyering@lucent.com>
23451
23452         * m4/gettext.m4: Fix typo in comment.
23453
23454         * m4/codeset.m4 (AC_CHECK_HEADERS): Add langinfo.h (moved here from
23455         textutils/configure.in).  Suggestion from Paul Eggert.
23456         (AC_CHECK_FUNCS): Add nl_langinfo.  (also from textutils/configure.in)
23457
23458 2000-04-02  Paul Eggert  <eggert@twinsun.com>
23459
23460         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME): Set TZ environment
23461         variable in the shell rather than using putenv, which isn't
23462         portable.  This avoids the configure-time inter-test dependency
23463         on the potentially-renamed putenv function.
23464
23465 2000-03-30  Paul Eggert  <eggert@twinsun.com>
23466
23467         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Include <sys/stat.h>
23468         before checking struct stat.st_blksize, so that
23469         HAVE_STRUCT_STAT_ST_BLKSIZE is defined correctly.
23470
23471 2000-03-29  Paul Eggert  <eggert@twinsun.com>
23472
23473         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Check for strftime,
23474         since strftime.c uses HAVE_STRFTIME to decide whether to use
23475         the underlying strftime.
23476
23477 2000-03-29  Paul Eggert  <eggert@twinsun.com>
23478
23479         * lib/time/strftime.c (my_strftime): Make sure we call the system
23480         strftime, not ourselves, when invoking the underlying strftime.
23481
23482 2000-03-24  Jim Meyering  <meyering@lucent.com>
23483
23484         * lib/Makefile.am (EXTRA_DIST): Add ref-add.sed.in and ref-del.sed.in.
23485         (charset_alias): Define.
23486         (install-exec-local): Factor out common code.
23487         (uninstall-local): Split lines longer than 80.
23488         (ref-add.sed, ref-del.sed): Remove rules... (do the following instead)
23489         (SUFFIXES): Define.
23490         (.sed.in.sed): New rule.  Don't redirect directly to $@.
23491         (CLEANFILES): Add ref-add.sed and ref-del.sed.
23492
23493 2000-03-19  Bruno Haible  <haible@clisp.cons.org>
23494
23495         * lib/config.charset: Output a line containing "Packages using this
23496         file".
23497         * lib/ref-add.sed.in, lib/ref-del.sed.in: New files.
23498         * lib/Makefile.am (install-exec-local, uninstall-local, ref-add.sed,
23499         ref-del.sed): New rules.
23500
23501 2000-03-17  Jim Meyering  <meyering@lucent.com>
23502
23503         * lib/unicodeio.c (<string.h>): Include only #if HAVE_STRING_H.
23504         Otherwise, include <strings.h>
23505
23506 2000-03-17  Bruno Haible  <haible@clisp.cons.org>
23507
23508         * lib/unicodeio.c (utf8_wctomb): New function.
23509         (print_unicode_char): Pass the Unicode character to iconv in UTF-8
23510         format instead of in UCS-4 with platform dependent endianness.
23511
23512 2000-03-10  Jim Meyering  <meyering@lucent.com>
23513
23514         * m4/lib-check.m4: Look for getspnam in -lgen, too.
23515         From Marco Franzen.
23516
23517 2000-03-07  Paul Eggert  <eggert@twinsun.com>
23518
23519         * lib/savedir.c (savedir): Work even if directory size is
23520         negative; this can happen with some screwy NFS configurations.
23521
23522 2000-03-06  Jim Meyering  <meyering@lucent.com>
23523
23524         * lib/localcharset.c (get_charset_aliases): Don't try to free file_name
23525         if it's NULL (because we ran out of memory).  From Bruno Haible.
23526
23527 2000-03-05  Jim Meyering  <meyering@lucent.com>
23528
23529         * lib/localcharset.c ("path-concat.h"): Include.
23530         (get_charset_aliases): Use path_concat instead of ANSI string
23531         concatenation.
23532
23533         * lib/unicodeio.h (PARAMS): Define.
23534         Use it to guard prototype.
23535
23536 2000-03-04  Jim Meyering  <meyering@lucent.com>
23537
23538         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require AC_C_VOLATILE,
23539         for lib/localcharset.c.
23540
23541 2000-03-04  Jim Meyering  <meyering@lucent.com>
23542
23543         * lib/Makefile.am (install-exec-local): Create $(libdir) before
23544         installing into it.
23545         (uninstall-local): Uncomment this rule so `make distcheck' works
23546         once again.
23547
23548         * lib/unicodeio.c (<errno.h>): Include it.
23549         (errno): Declare if not defined.
23550
23551         * lib/localcharset.c: Add Bruno's comment justifying use of volatile.
23552
23553         * lib/config.charset: New version, incorporating remarks from a linux
23554         i18n mailing list.  From Bruno Haible.
23555
23556 2000-03-04  Bruno Haible  <haible@clisp.cons.org>
23557
23558         * m4/codeset.m4: New file.
23559         * m4/iconv.m4: New file.
23560         * m4/jm-macros.m4 (jm_MACROS): Call jm_LANGINFO_CODESET and jm_ICONV.
23561
23562 2000-03-03  Jim Meyering  <meyering@lucent.com>
23563
23564         * m4/regex.m4: Make sure re_compile_pattern accepts patterns like `{1'.
23565
23566 2000-03-02  Jim Meyering  <meyering@lucent.com>
23567
23568         * m4/timespec.m4: Require AC_HEADER_TIME before the cache check so
23569         the messages come out on separate lines.
23570
23571         * m4/jm-glibc-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO): Use AC_CHECK_DECLS,
23572         rather than jm_CHECK_DECLARATIONS.
23573         * m4/decl.m4: Remove now-unused file.
23574
23575         * m4/check-decl.m4 (AC_CHECK_DECLS): Add getlogin, ttyname, and
23576         geteuid.
23577
23578 2000-03-02  Jim Meyering  <meyering@lucent.com>
23579
23580         * lib/Makefile.am (EXTRA_DIST): Add config.charset.
23581
23582 2000-03-01  Jim Meyering  <meyering@lucent.com>
23583
23584         * lib/localcharset.c: Guard some #includes with `#if HAVE_...'.
23585         * lib/unicodeio.c: Likewise.
23586
23587 2000-03-01  Bruno Haible  <haible@clisp.cons.org>
23588
23589         * lib/config.charset: New file.
23590         * lib/localcharset.c: New file.
23591         * lib/unicodeio.h, lib/unicodeio.c: New files.
23592         * lib/Makefile.am (DEFS): Add -DLIBDIR=...
23593         (libfetish_a_SOURCES): Add localcharset.c and unicodeio.c.
23594         (noinst_HEADERS): Add unicodeio.h.
23595         (all-local, install-exec-local, charset.alias): New targets.
23596
23597 2000-02-28  Paul Eggert  <eggert@twinsun.com>
23598
23599         * lib/quotearg.c (ALERT_CHAR): New macro.
23600         (quotearg_buffer_restyled): Use it.
23601
23602 2000-02-27  Jim Meyering  <meyering@lucent.com>
23603
23604         * m4/check-decl.m4: Add getenv to the list.
23605
23606 2000-02-27  Jim Meyering  <meyering@lucent.com>
23607
23608         * lib/strtoumax.c: Fix typo in decl of strtoul: s/long long/long/.
23609         Guard declaration of strtoull also with `&& HAVE_UNSIGNED_LONG_LONG'.
23610
23611         * lib/backupfile.c: Guard inclusion of stdlib.h with
23612         `#if HAVE_STDLIB_H', not `#if STDC_HEADERS'.
23613         Declare malloc if needed.
23614
23615         * lib/backupfile.c: Use `#if !HAVE_DECL...' instead of
23616         `#ifndef HAVE_DECL..'
23617         now that autoconf always defines the HAVE_DECL_ symbols.
23618         * lib/human.c: Likewise.
23619         * lib/same.c: Likewise.
23620         * lib/strtoumax.c: Likewise.
23621
23622         * lib/backupfile.c: Arrange for cpp to fail if the configure-time
23623         declaration check was not run.
23624         * lib/hash.c: Likewise.
23625         * lib/human.c: Likewise.
23626         * lib/same.c: Likewise.
23627         * lib/strtoumax.c: Likewise.
23628
23629         * lib/userspec.c (parse_user_spec): If there is no `:' but there is a
23630         `.', then first look up the entire `.'-containing string as a login
23631         name.
23632
23633 2000-02-23  Jim Meyering  <meyering@lucent.com>
23634
23635         * m4/check-decl.m4: Now that we have the new AC_CHECK_DECLS, use it
23636         in place of my hack.
23637
23638 2000-02-18  Paul Eggert  <eggert@twinsun.com>
23639
23640         * lib/getdate.y: Handle two-digit years with leading zeros correctly.
23641         (textint): New typedef.
23642         (parser_control): Member year changed from int to textint.
23643         All uses changed.
23644         (YYSTYPE): Removed; replaced by %union with int and textint members.
23645         (tDAY, tDAY_UNIT, tDAYZONE, tHOUR_UNIT, tID, tLOCAL_ZONE, tMERIDIAN,
23646         tMINUTE_UNIT, tMONTH, tMONTH_UNIT tSEC_UNIT, tSNUMBER, tUNUMBER,
23647         tYEAR_UNIT, tZONE, o_merid): Now of type <intval>.
23648         (tSNUMBER, tUNUMBER): Now of type <textintval>.
23649         (date, number, to_year): Use width of number in digits, not its value,
23650         to determine whether it's a 2-digit year, or a 2-digit time.
23651         (yylex): Store number of digits of numeric tokens.
23652         Reported by John Kendall.
23653
23654         (parser_control): Changed from struct parser_control to typedef (for
23655         consistency).  All uses changed.
23656
23657         (tID): Removed; not used.
23658         (yylex): Return '?' for unknown identifiers, rather than (unused) tID.
23659
23660 2000-02-14  Paul Eggert  <eggert@twinsun.com>
23661
23662         * lib/getpagesize.h (getpagesize): Port to VMS for Alpha;
23663         adapted from changes to grep getpagesize.h by Martin P.J. Zinser.
23664
23665 2000-02-12  Jim Meyering  <meyering@lucent.com>
23666
23667         * lib/userspec.c (ISDIGIT): Define it.
23668         (isdigit): Remove definition.
23669         (is_number): Use ISDIGIT, not isdigit.
23670         <libintl.h>: Include.
23671         (_ and N_): Define.
23672         (parse_user_spec): Mark translatable strings.
23673
23674 2000-02-10  Jim Meyering  <meyering@lucent.com>
23675
23676         With these changes, nanosleep.[ch] are finally enough like the other
23677         lib/* replacement files to compile on a few more losing systems.
23678
23679         * lib/nanosleep.h: Don't include config.h.
23680         Remove prototype from declaration of nanosleep.
23681         (PARAMS): Remove now-unneeded definition.
23682         * lib/nanosleep.c: #undef nanosleep.
23683         (rpl_nanosleep): Rename from nanosleep.
23684
23685 2000-02-10  Jim Meyering  <meyering@lucent.com>
23686
23687         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Rename replacement function from
23688         gnu_nanosleep to rpl_nanosleep.
23689
23690 2000-02-09  Jim Meyering  <meyering@lucent.com>
23691
23692         * m4/lib-check.m4 (jm_LIB_CHECK): Fix typo: check for sp_pwdp in
23693         struct spwd, rather than in struct passwd.  Reported by Gaël Quéri.
23694
23695 2000-02-08  Akim Demaille  <akim@epita.fr>
23696
23697         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Quote square brackets with
23698         `[' and `]' and remove uses of `changequote'.
23699         (AC_SYS_LARGEFILE_MACRO_VALUE): Likewise.
23700         (AC_SYS_LARGEFILE): Likewise.
23701         * m4/gettext.m4 (AM_GNU_GETTEXT): Likewise.
23702         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME): Remove now-unnecessary use
23703         of changequote.
23704         * m4/regex.m4 (jm_INCLUDED_REGEX): Likewise.
23705         * m4/readdir.m4 (jm_FUNC_READDIR): Likewise
23706         * m4/memcmp.m4 (jm_AC_FUNC_MEMCMP): Likewise, and add `int' for main.
23707         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Likewise.
23708
23709 2000-02-05  Jim Meyering  <meyering@lucent.com>
23710
23711         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require most macros.
23712         Remove explicit use of AC_HEADER_TIME.  It is required by
23713         jm_CHECK_TYPE_STRUCT_TIMESPEC.  Using AC_HEADER_TIME and
23714         `AC_REQUIRE'ing jm_CHECK_TYPE_STRUCT_TIMESPEC provoked a but
23715         in autoconf whereby the expansion of the latter ended up preceding
23716         the expansion of its prerequisite, AC_HEADER_TIME.
23717         Reported by Volker Borchert.
23718
23719 2000-02-03  Jim Meyering  <meyering@lucent.com>
23720
23721         * m4/prereq.m4 (jm_PREREQ_READUTMP): Check for utmpxname.
23722
23723 2000-02-03  Jim Meyering  <meyering@lucent.com>
23724
23725         * lib/readutmp.c (read_utmp): Guard with `#ifdef UTMP_NAME_FUNCTION',
23726         rather than with `#if HAVE_UTMPNAME'.
23727
23728 2000-02-02  Jim Meyering  <meyering@lucent.com>
23729
23730         * m4/prereq.m4 (jm_PREREQ_ADDEXT): Fix typo that resulted in no
23731         definition of HAVE_PATHCONF: s/AC_CHECK_FUNC/AC_CHECK_FUNCS/.
23732         Reported by Eli Zaretskii.
23733
23734 2000-02-01  Jim Meyering  <meyering@lucent.com>
23735
23736         * lib/readutmp.h (UT_USER): Add parens.  From Andreas Schwab.
23737
23738 2000-01-31  Jim Meyering  <meyering@lucent.com>
23739
23740         * m4/check-decl.m4 (jm_CHECK_DECLS): Add nanosleep to the list of
23741         functions.  Add the time.h and sys/time.h headers along with the
23742         AC_REQUIRE'ment of AC_HEADER_TIME.
23743
23744 2000-01-31  Jim Meyering  <meyering@lucent.com>
23745
23746         * lib/nanosleep.h (nanosleep): Guard declaration with
23747         `#if ! HAVE_DECL_NANOSLEEP'.
23748         Without this, OFS gets a redeclaration error for rpl_nanosleep, due to
23749         the declaration in that vendor's sys/timers.h.
23750         Reported by Christian Krackowizer.
23751
23752         * lib/quotearg.c (ISASCII): Add #undef and move definition to follow
23753         inclusion of wctype.h to work around Solaris 2.6 namespace pollution.
23754         (ISPRINT): Likewise.
23755         Reported by Tom Tromey.
23756
23757 2000-01-30  Jim Meyering  <meyering@lucent.com>
23758
23759         * m4/lib-check.m4: Clean up some kludgy old shadow password tests.
23760
23761         * m4/prereq.m4 (utmp_includes): Define.
23762         Check for ut_user and ut_name members in both struct utmpx
23763         and struct utmp.
23764
23765 2000-01-30  Jim Meyering  <meyering@lucent.com>
23766
23767         * lib/readutmp.c (extract_trimmed_name): Use UT_USER instead of
23768         hard-coding uses of ->ut_name.  The latter doesn't work with new Linux
23769         header files where only utmpx.ut_user is declared.
23770
23771         * lib/readutmp.h (UT_USER): Define.
23772
23773 2000-01-29  Jim Meyering  <meyering@lucent.com>
23774
23775         * m4/lib-check.m4: New file containing library-related checks from
23776         fileutils and sh-utils (textutils had none).
23777
23778 2000-01-28  Jim Meyering  <meyering@lucent.com>
23779
23780         * m4/perl.m4: Change format of warning message to look more like that
23781         from the missing script.  Suggestion from François Pinard.
23782
23783 2000-01-25  Jim Meyering  <meyering@lucent.com>
23784
23785         * m4/timespec.m4: Require AC_HEADER_TIME, and include sys/time.h as
23786         well as time.h in the compile check.
23787         * m4/nanosleep.m4: Require AC_HEADER_TIME rather than simply using it.
23788         Fix typo in cross-compiling case: s/yes/no/.
23789
23790 2000-01-23  Jim Meyering  <meyering@lucent.com>
23791
23792         * m4/jm-macros.m4: Move df-related tests here from
23793         fileutils/configure.in
23794
23795         * m4/ls-mntd-fs.m4: s/list_mounted_fs/ac_list_mounted_fs/
23796         (jm_LIST_MOUNTED_FILESYSTEMS): Take two parameters.
23797
23798         * m4/fsusage.m4: New file.  Extracted from fileutils/configure.in.
23799         s/space/ac_fsusage_space/.
23800         (jm_FILE_SYSTEM_USAGE): Take two parameters.
23801
23802         * m4/ftruncate.m4: New file (derived from part of
23803         fileutils/configure.in).
23804         * m4/jm-macros.m4 (jm_FUNC_FTRUNCATE): AC_REQUIRE it.
23805         (jm_CHECK_ALL_TYPES): Require AC_HEADER_MAJOR and AC_HEADER_DIRENT.
23806
23807         * m4/jm-macros.m4 (OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, MAN):
23808         AC_SUBST these here, rather than just in sh-util/configure.in, so
23809         that the now-shared-by-fileutils-and-textutils lib/Makefile.am are
23810         all the same.
23811         (AM_FUNC_OBSTACK): Add (from fileutils/configure.in).
23812         (AC_CHECK_FUNCS): Merge all checks from fileutils, textutils, sh-utils.
23813         (AM_FUNC_STRTOD): Added (from textutils', sh-utils' configure.in).
23814         (AC_SUBST(POW_LIBM)): Likewise.
23815         (AC_SUBST(DF_PROG)): Moved from fileutils/configure.in.
23816
23817 2000-01-23  Jim Meyering  <meyering@lucent.com>
23818
23819         * lib/Makefile.am (libfetish_a_SOURCES): Remove explicit mention of
23820         obstack.c.
23821
23822 2000-01-22  Jim Meyering  <meyering@lucent.com>
23823
23824         * m4/jm-macros.m4: Call AC_PROG_CC_STDC just before AC_C_CONST.
23825
23826         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Add wctype.h.
23827
23828         * m4/jm-macros.m4 (AC_CHECK_HEADERS): Add checks from fileutils'
23829         configure.in
23830         (AC_CHECK_HEADERS): Likewise for sh-utils.
23831         (AC_CHECK_HEADERS): Likewise for textutils.
23832         Merge the three lists of headers.
23833
23834         * m4/prereq.m4 (jm_PREREQ_ADDEXT): New macro.  Parts moved here
23835         from fileutils' configure.in.
23836
23837         * m4/decl.m4: Remove kludgy `test -z $ac_...AC_CHECK_HEADERS(...)'
23838         code. Moved tests into their own function (_jm_DECL_HEADERS) in
23839         check-decl.m4.
23840
23841         * m4/check-decl.m4: Use #if rather than #ifdef.
23842         Add HAVE_DECL_STRTOUL and HAVE_DECL_STRTOULL.
23843         (jm_CHECK_DECLARATIONS): Add strtoul strtoull.
23844         (_jm_DECL_HEADERS): Define new function.
23845         (jm_CHECK_DECLARATIONS): Require it.
23846
23847 2000-01-22  Jim Meyering  <meyering@lucent.com>
23848
23849         * lib/strtoumax.c: [! HAVE_DECL_STRTOUL]: Declare strtoul.
23850         [! HAVE_DECL_STRTOULL]: Declare strtoull.
23851         Required for some AIX systems.  Reported by Christian Krackowizer.
23852         [TESTING] (main): New function.
23853
23854         1997-10-17  Eli Zaretskii  <eliz@is.elta.co.il>
23855         * lib/dirname.c (dir_name): Support for DOS-style file names with drive
23856         letters.
23857
23858         * lib/quotearg.c [HAVE_WCTYPE_H]: Include <wctype.h> for decl of
23859         iswprint.
23860
23861         * lib/strverscmp.c (ISDIGIT): Define.
23862         (strverscmp): Use ISDIGIT, not isdigit.
23863
23864 2000-01-19  Jim Meyering  <meyering@lucent.com>
23865
23866         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Include <sys/time.h>, too.
23867         Use AC_HEADER_TIME.  Volker Borchert reported that OpenBSD-2.3/sparc
23868         defines `struct timespec' in <sys/time.h>
23869
23870         * m4/c-bs-a.m4: Remove uses of changequote altogether.
23871         Thanks to Akim for explaining.
23872
23873 2000-01-17  Paul Eggert  <eggert@twinsun.com>
23874
23875         * lib/nanosleep.c (nanosleep):
23876         Don't use SA_INTERRUPT to decide whether to call sigaction, as
23877         POSIX.1 doesn't require SA_INTERRUPT and some systems
23878         (e.g. Solaris 7) don't define it.  Use SA_NOCLDSTOP instead;
23879         it's been part of POSIX.1 since day 1 (in 1988).
23880
23881 2000-01-17  Jim Meyering  <meyering@lucent.com>
23882
23883         * lib/interlock: Remove unused file.  Reported by François Pinard.
23884
23885 2000-01-16  Paul Eggert  <eggert@twinsun.com>
23886
23887         * lib/quotearg.c (quotearg_buffer_restyled): Do not quote
23888         alert, backslash, formfeed, and vertical tab unnecessarily in
23889         shell quoting style.
23890
23891 2000-01-16  Jim Meyering  <meyering@lucent.com>
23892
23893         * m4/jm-macros.m4: Require jm_FUNC_GROUP_MEMBER, jm_FUNC_PUTENV,
23894         AM_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, jm_FUNC_MKTIME,
23895         jm_FUNC_GETGROUPS AC_FUNC_VPRINTF, AC_FUNC_ALLOCA,
23896         AM_FUNC_GETLOADAVG, and jm_SYS_PROC_UPTIME.
23897
23898 2000-01-16  Jim Meyering  <meyering@lucent.com>
23899
23900         * m4/c-bs-a.m4: Use `changequote(<<,>>)', rather than `changequote(, )'
23901         because the latter didn't work.
23902
23903 2000-01-15  Jim Meyering  <meyering@lucent.com>
23904
23905         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add gethostname and getusershell.
23906         (AC_REPLACE_FUNCS): Add memcpy and memset.
23907         Add these, too: stime strcspn stpcpy strstr strtol strtoul.
23908         Add strpbrk.
23909         Add these: euidaccess memcmp mkdir rmdir rpmatch strndup strverscmp.
23910
23911 2000-01-12  Jim Meyering  <meyering@lucent.com>
23912
23913         * m4/prereq.m4 (jm_PREREQ_CANON_HOST): New macro.
23914         (jm_PREREQ): Use it.
23915         (jm_PREREQ_READUTMP): New macro.
23916         (jm_PREREQ): Use it.
23917
23918 2000-01-11  Paul Eggert  <eggert@twinsun.com>
23919
23920         Quote multibyte characters correctly.
23921         * m4/c-bs-a.m4: New file.
23922         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): New macro.
23923         (jm_PREREQ): Use it.
23924
23925 2000-01-11  Paul Eggert  <eggert@twinsun.com>
23926
23927         * m4/uintmax_t.m4: Port to autoconf 2.13.
23928
23929 2000-01-08  Jim Meyering  <meyering@ascend.com>
23930
23931         * m4/strerror_r.m4 (jm_FUNC_STRERROR_R): New file/macro.
23932         * m4/jm-macros.m4 (jm_FUNC_STRERROR_R): Require it.
23933
23934 2000-01-04  Jim Meyering  <meyering@ascend.com>
23935
23936         * m4/d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename from
23937         jm_STRUCT_DIRENT_D_TYPE.
23938         * m4/d-ino.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_INO): Rename from
23939         jm_STRUCT_DIRENT_D_INO.
23940         * m4/utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Rename from
23941         jm_STRUCT_UTIMBUF.
23942         * m4/jm-macros.m4: Reflect s/jm_STRUCT_/jm_CHECK_TYPE_STRUCT_/
23943         renamings.
23944         * m4/utime.m4: Likewise.
23945
23946         * m4/timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): New file, macro.
23947         * m4/jm-macros.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): Require it.
23948
23949 2000-01-03  Paul Eggert  <eggert@twinsun.com>
23950
23951         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Search for nanosleep in -lrt
23952         (for Solaris 7) and in -lposix4 (for Solaris 2.5.1).
23953
23954 2000-01-02  Jim Meyering  <meyering@ascend.com>
23955
23956         * m4/search-libs.m4: Escape `$' in $3 of dnl comment.  I no longer
23957         remember if this is necessary.
23958
23959 1999-12-26  Jim Meyering  <meyering@ascend.com>
23960
23961         * m4/jm-macros.m4: Use it here.
23962         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): New file/macro.
23963
23964 1999-12-23  Jim Meyering  <meyering@ascend.com>
23965
23966         * m4/jm-macros.m4: Check for clock_gettime (moved from
23967         fileutils/configure.in)
23968         Check for gettimeofday.
23969
23970 1999-12-20  Jim Meyering  <meyering@ascend.com>
23971
23972         * m4/strftime.m4: Remove kludge, now that I'm using the fixed
23973         autoconf-2.14a-1999-12-20.
23974
23975 1999-12-19  Jim Meyering  <meyering@ascend.com>
23976
23977         * m4/lstat-slash.m4: New file.
23978         * m4/jm-macros.m4: Use the new macro:
23979         jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
23980
23981 1999-12-07  Jim Meyering  <meyering@ascend.com>
23982
23983         * m4/perl.m4: Require that File::Compare be available, too.
23984         Too many systems seem to lack it.
23985
23986         * m4/strftime.m4: Add checks for most of the cpp macros tested in
23987         GNU's strftime.c.  Prompted by a patch from Paul Eggert.
23988
23989 1999-11-18  Paul Eggert  <eggert@twinsun.com>
23990
23991         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around a
23992         problem with the QNX 4.25 shell, which doesn't propagate exit
23993         status of failed commands inside shell assignments.
23994
23995 1999-11-17  Jim Meyering  <meyering@ascend.com>
23996
23997         * m4/gettext.m4: Use new AC_CONFIG_LINKS in place of AC_LINK_FILES.
23998
23999 1999-11-07  Jim Meyering  <meyering@ascend.com>
24000
24001         * m4/getloadavg.m4: Add `, 1, [FIXME]' to each use of AC_DEFINE.
24002
24003 1999-11-06  Jim Meyering  <meyering@ascend.com>
24004
24005         * m4/link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): New file/macro.
24006         * m4/jm-macros.m4 (jm_MACROS): Use it here.
24007
24008 1999-11-05  Jim Meyering  <meyering@ascend.com>
24009
24010         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Move some tests from
24011         configure.in of textutils, fileutils, and sh-utils into this one
24012         (shared between those packages) file.
24013         Use `AC_CHECK_MEMBERS((struct stat.st_blksize))' instead of deprecated
24014         AC_STRUCT_ST_BLKSIZE.
24015
24016 1999-11-03  Jim Meyering  <meyering@ascend.com>
24017
24018         * m4/ssize_t.m4: Remove file.  No longer needed since the new version
24019         of AC_CHECK_TYPE checks includes unistd.h.
24020         * m4/jm-macros.m4: Use straight `AC_CHECK_TYPE(ssize_t, int)'.
24021         Suggestion from Akim Demaille.
24022
24023 1999-10-30  Jim Meyering  <meyering@ascend.com>
24024
24025         * m4/uintmax_t.m4: Require 2.14a.  Remove backslash before backtick in
24026         m4-quoted string.
24027         * m4/ls-mntd-fs.m4: Likewise.
24028         * m4/jm-macros.m4: Likewise.  Also, use AC_TYPE_SSIZE_T instead
24029         * m4/jm-winsz1.m4: Likewise.
24030
24031         * m4/const.m4: Remove file, since the fix made it into the experimental
24032         version of autoconf.
24033         * m4/mktime.m4: Likewise.
24034
24035         * m4/check-type.m4: Remove file, now that the latest version of
24036         AC_CHECK_TYPE takes a third arg to specify additional #includes.
24037
24038         * m4/ssize_t.m4: New file, requires experimental version of autoconf.
24039         * m4/jm-macros.m4: Use new AC_TYPE_SSIZE_T instead of my hacked
24040         AC_CHECK_TYPE.
24041
24042 1999-10-04  Jim Meyering  <meyering@ascend.com>
24043
24044         * m4/jm-macros.m4: Don't require autoconf-2.14.1.
24045
24046 1999-09-22  Paul Eggert  <eggert@twinsun.com>
24047
24048         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around GCC
24049         2.95.1 bug with HP-UX 10.20.
24050
24051 1999-09-17  Jim Meyering  <meyering@ascend.com>
24052
24053         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add strdup.
24054         Paul Nevai reported a link failure on a NeXT CUBE with NeXTSTEP 3.3
24055         due to missing strdup (against sh-utils-2.0).
24056
24057 1999-08-29  Jim Meyering  <meyering@ascend.com>
24058
24059         * m4/jm-macros.m4: Require jm_BISON.
24060         * m4/bison.m4: New file.
24061
24062 1999-08-17  Paul Eggert  <eggert@twinsun.com>
24063
24064         * m4/largefile.m4 (AC_SYS_LARGEFILE): Fix typo: missing comma
24065         in value for _FILE_OFFSET_BITS, which broke ports to HP-UX 10.20.
24066
24067 1999-08-05  Jim Meyering  <meyering@ascend.com>
24068
24069         * m4/getline.m4: Rename test file from conftestdata to conftest.data
24070         to avoid conflicts with `conftest' on 8+3 filesystems.
24071         Suggestion from Eli Zaretskii.
24072
24073 1999-08-04  Jim Meyering  <meyering@ascend.com>
24074
24075         * m4/jm-macros.m4: Move a 4-line block of code from the configure.in of
24076         fileutils and sh-utils (textutils's getline test was inadequate).
24077         (AM_FUNC_GETLINE): Run this test.
24078         (AC_CHECK_FUNCS): Check for getdelim.
24079         Reported by Bob Proulx.
24080
24081 1999-08-02  Jim Meyering  <meyering@ascend.com>
24082
24083         * m4/jm-macros.m4: Add a comment.
24084
24085 1999-08-01  Paul Eggert  <eggert@twinsun.com>
24086
24087         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check whether
24088         <inttypes.h> defines strtoumax as a macro (and not as a
24089         function).
24090
24091 1999-08-01  Paul Eggert  <eggert@twinsun.com>
24092
24093         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Make sure
24094         that we can shift, multiply and divide unsigned long long
24095         values; Ultrix cc can't do it.
24096
24097 1999-08-01  Paul Eggert  <eggert@twinsun.com>
24098
24099         * m4/mktime.m4: New file, which is a preview of what should appear
24100         in the next public autoconf release.
24101
24102 1999-08-01  Paul Eggert  <eggert@twinsun.com>
24103
24104         * m4/lfs.m4: Remove this file.
24105         * m4/largefile.m4: New file.  It contains the old contents of
24106         lfs.m4, except that all names with prefix AC_LFS have been
24107         changed to use the prefix AC_SYS_LARGEFILE instead, to be
24108         compatible with future autoconf versions.  Also, some minor m4
24109         quoting problems have been fixed.
24110
24111 1999-08-01  Paul Eggert  <eggert@twinsun.com>
24112
24113         * m4/gettext.m4 (AM_WITH_NLS): Remove unnecessary lines.
24114         Fix typo: $nls_cv_header_intl was misspelled as $nsl_cv_header_intl.
24115         (AM_GNU_GETTEXT): Fix problem with brackets and m4 quoting,
24116         and simplify the shell code.
24117
24118 1999-08-01  Jim Meyering  <meyering@ascend.com>
24119
24120         * m4/mktime.m4 (AC_FUNC_MKTIME): Undefine to avoid syntax errors from
24121         m4.
24122
24123 1999-07-20  Jim Meyering  <meyering@ascend.com>
24124
24125         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memmove.
24126
24127 1999-07-15  Jim Meyering  <meyering@ascend.com>
24128
24129         * m4/jm-macros.m4 (AC_CHECK_FUNCS): Check for getpagesize.
24130
24131 1999-05-22  Jim Meyering  <meyering@ascend.com>
24132
24133         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memchr.
24134
24135 1999-05-20  Jim Meyering  <meyering@ascend.com>
24136
24137         * m4/search-libs.m4 [AC_SEARCH_LIBS]: Quote name in undefine.
24138         Add a colon after each `then' in case $4 is empty.
24139
24140 1999-05-16  Jim Meyering  <meyering@ascend.com>
24141
24142         * m4/search-libs.m4: New file to override autoconf's AC_SEARCH_LIBS.
24143
24144 1999-05-10  Jim Meyering  <meyering@ascend.com>
24145
24146         * m4/jm-mktime.m4: Reflect renaming: AM_FUNC_MKTIME -> AC_FUNC_MKTIME.
24147
24148         * m4/jm-macros.m4: Require 2.14.1, since we use newly-renamed
24149         AC_FUNC_MKTIME.
24150
24151 1999-05-10  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
24152
24153         * m4/jm-mktime.m4, putenv.m4: Fix typos in config.h comments.
24154
24155 1999-05-04  Paul Eggert  <eggert@twinsun.com>
24156
24157         * m4/lfs.m4 (AC_LFS): -n32, -o32, and -n64 should be in CFLAGS,
24158         not CPPFLAGS, so that linking works correctly in IRIX.
24159
24160 1999-04-30  Paul Eggert  <eggert@twinsun.com>
24161
24162         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add dup2.
24163
24164 1999-04-20  Paul Eggert  <eggert@twinsun.com>
24165
24166         * m4/uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Move unsigned long
24167         long check into new jm_AC_TYPE_UNSIGNED_LONG_LONG macro.
24168         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require
24169         jm_AC_TYPE_UNSIGNED_LONG_LONG.
24170         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): New file/macro.
24171
24172         * m4/lfs.m4: Port to AIX and HP-UX.  Support cross-compilation.
24173
24174 1999-04-20  Jim Meyering  <meyering@ascend.com>
24175
24176         * m4/xstrtoumax.m4: Require jm_AC_TYPE_UNSIGNED_LONG_LONG.
24177         AC_REPLACE xstroull if necessary.  From Paul Eggert.
24178         (AC_CHECK_FUNCS): Remove strtoull, strtoumax, strtouq.
24179
24180 1999-04-18  Jim Meyering  <meyering@ascend.com>
24181
24182         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): New file/macro.
24183         * m4/jm-macros.m4: Use it.
24184
24185 1999-04-06  Jim Meyering  <meyering@ascend.com>
24186
24187         * m4/strftime.m4: Remove test for %f.
24188
24189 1999-03-29  Jim Meyering  <meyering@ascend.com>
24190
24191         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): New macro, contains the
24192         superset of the AC_TYPE_* checks in the textutils, fileutils,
24193         and sh-utils, plus AC_TYPE_PID_T.  Paul Eggert suggested adding
24194         AC_TYPE_PID_T.
24195
24196 1999-03-28  Jim Meyering  <meyering@ascend.com>
24197
24198         * m4/jm-macros.m4: Define GNU_PACKAGE here.
24199         Be sure to AC_SUBST it, once again, so that @GNU_PACKAGE@ is
24200         replaced e.g., in the *.sh files of the sh-utils.
24201
24202 1999-03-20  Jim Meyering  <meyering@ascend.com>
24203
24204         * m4/jm-macros.m4: s/jm_WITH_REGEX/jm_INCLUDED_REGEX/.
24205         * m4/regex.m4 (jm_INCLUDED_REGEX): Rename from jm_WITH_REGEX.
24206         Don't depend on AM_GLIBC.  Suggestions from Alain Magloire.
24207
24208 1999-03-19  Jim Meyering  <meyering@ascend.com>
24209
24210         * m4/jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): New macro.
24211
24212 1999-03-12  Jim Meyering  <meyering@ascend.com>
24213
24214         * m4/jm-macros.m4: Use AC_FUNC_SETVBUF_REVERSED.
24215
24216 1999-03-07  Jim Meyering  <meyering@ascend.com>
24217
24218         * m4/jm-glibc-io.m4: Use only those *_unlocked macros that are
24219         declared.
24220
24221 1999-02-17  Jim Meyering  <meyering@ascend.com>
24222
24223         * m4/gettext.m4 (AM_GNU_GETTEXT): Do `changequote' around use of
24224         brackets in macro definition.  From Eli Zaretskii and Alain Magloire.
24225
24226 1999-02-07  Jim Meyering  <meyering@ascend.com>
24227
24228         * m4/group-member.m4: New file -- extracted from sh-utils'
24229         configure.in.
24230
24231         1999-02-05  Eli Zaretskii  <eliz@is.elta.co.il>
24232         * m4/gettext.m4: Support DOS-style d:/foo/bar absolute file names.
24233
24234 1999-02-06  Jim Meyering  <meyering@ascend.com>
24235
24236         * m4/chown.m4: Use `AC_SUBST(LIBOBJS)' since we set LIBOBJS.
24237         * m4/fnmatch.m4: Likewise.
24238         * m4/getgroups.m4: Likewise.
24239         * m4/lstat.m4: Likewise.
24240         * m4/malloc.m4: Likewise.
24241         * m4/putenv.m4: Likewise.
24242         * m4/realloc.m4: Likewise.
24243         * m4/regex.m4: Likewise.
24244         * m4/stat.m4: Likewise.
24245         * m4/strftime.m4: Likewise.
24246         Suggestion from Alain Magloire.
24247
24248         * m4/chown.m4: Use `.$ac_objext', not `.o'.
24249         * m4/fnmatch.m4: Likewise.
24250         * m4/getgroups.m4: Likewise.
24251         * m4/getline.m4: Likewise.
24252         * m4/lstat.m4: Likewise.
24253         * m4/malloc.m4: Likewise.
24254         * m4/memcmp.m4: Likewise.
24255         * m4/putenv.m4: Likewise.
24256         * m4/realloc.m4: Likewise.
24257         * m4/regex.m4: Likewise.
24258         * m4/stat.m4: Likewise.
24259         * m4/strftime.m4: Likewise.
24260         Suggestion from Alain Magloire.
24261
24262         * m4/jm-macros.m4: Actually invoke jm_WITH_REGEX now that it requires
24263         an argument.
24264
24265         * m4/regex.m4: Add a run-time Test for proper operation of
24266         re_compile_pattern.
24267
24268 1999-01-31  Jim Meyering  <meyering@ascend.com>
24269
24270         * m4/getloadavg.m4: Check for locale.h and the function, setlocale.
24271
24272 1999-01-30  Jim Meyering  <meyering@ascend.com>
24273
24274         * m4/check-type.m4: Use 3-arg form of AC_DEFINE.
24275
24276         * m4/jm-mktime.m4: Make this a wrapper around the official
24277         AM_FUNC_MKTIME rather than my private copy, now that the official one
24278         is up to date.
24279         * m4/mktime.m4: Remove file.
24280
24281         * m4/getloadavg.m4: Use 3-arg form of AC_DEFINE.
24282         * m4/uptime.m4: Likewise.
24283         * m4/uintmax_t.m4: Likewise.
24284
24285 1999-01-28  Jim Meyering  <meyering@ascend.com>
24286
24287         * m4/jm-macros.m4: Use jm_AFS.
24288         * m4/afs.m4: New file (from fileutils' configure.in).
24289
24290         * m4/assert.m4: Use the 3-argument forms of AC_DEFINE* macros.
24291         * m4/chown.m4: Likewise.
24292         * m4/d-ino.m4: Likewise.
24293         * m4/d-type.m4: Likewise.
24294         * m4/fnmatch.m4: Likewise.
24295         * m4/getgroups.m4: Likewise.
24296         * m4/gettext.m4: Likewise.
24297         * m4/jm-mktime.m4: Likewise.
24298         * m4/jm-winsz2.m4: Likewise.
24299         * m4/lcmessage.m4: Likewise.
24300         * m4/ls-mntd-fs.m4: Likewise.
24301         * m4/malloc.m4: Likewise.
24302         * m4/memcmp.m4: Likewise.
24303         * m4/putenv.m4: Likewise.
24304         * m4/realloc.m4: Likewise.
24305         * m4/st_mtim.m4: Likewise.
24306         * m4/strftime.m4: Likewise.
24307
24308 1999-01-16  Jim Meyering  <meyering@ascend.com>
24309
24310         * m4/jm-macros.m4 (ARGMATCH_DIE): Define.
24311         (ARGMATCH_DIE_DECL): Define.
24312
24313 1999-01-12  Jim Meyering  <meyering@ascend.com>
24314
24315         * m4/Makefile.am.in: Rewrite to avoid using fmt.
24316         Reported by Lars Hecking.
24317
24318 1999-01-10  Jim Meyering  <meyering@ascend.com>
24319
24320         * m4/fstypename.m4: Use the new 3-arg form of AC_DEFINE instead of my
24321         gross kludge.
24322         * m4/inttypes_h.m4: Likewise.
24323         * m4/lstat.m4: Likewise.
24324         * m4/malloc.m4: Likewise.
24325         * m4/readdir.m4: Likewise.
24326         * m4/realloc.m4: Likewise.
24327         * m4/st_dm_mode.m4: Likewise.
24328         * m4/stat.m4: Likewise.
24329         * m4/utimbuf.m4: Likewise.
24330         * m4/utimes.m4: Likewise.
24331
24332         * m4/check-decl.m4: Use the new 3-arg form of AC_DEFINE instead of the
24333         AC_CHECK_FUNCS hack.  Now, it's still a hack, but at least the
24334         comments in config.h.in are meaningful.
24335
24336         * m4/jm-macros.m4: Require autoconf-2.13 here.
24337
24338         * m4/regex.m4: By default, don't use the included regex.c on systems
24339         with glibc 2.  Suggestion from Uli Drepper.
24340
24341 1999-01-02  Jim Meyering  <meyering@ascend.com>
24342
24343         * m4/jm-macros.m4: Replace strcasecmp and strncasecmp.
24344
24345 1998-12-18  Jim Meyering  <meyering@ascend.com>
24346
24347         * m4/Makefile.am.in (Makefile.am): Simplify rule.
24348         Based on a suggestion from Lars Hecking.
24349
24350 1998-11-16  Paul Eggert  <eggert@twinsun.com>
24351
24352         * m4/lfs.m4 (AC_LFS): Add support for HP-UX 10.20 and HP-UX 11.
24353
24354 1998-11-16  Jim Meyering  <meyering@ascend.com>
24355
24356         * m4/lfs.m4: Double-quote the `uname...` expression.
24357
24358 1998-11-14  Jim Meyering  <meyering@ascend.com>
24359
24360         * m4/lstat.m4: Correct comment.  POSIX does not permit it to succeed.
24361         * m4/stat.m4: Likewise.
24362
24363 1998-11-03  Jim Meyering  <meyering@ascend.com>
24364
24365         * m4/stat.m4: Rewrite to set HAVE_STAT_EMPTY_STRING_BUG.
24366         * m4/lstat.m4: Rewrite to set HAVE_LSTAT_EMPTY_STRING_BUG.
24367
24368 1998-10-18  Jim Meyering  <meyering@ascend.com>
24369
24370         * m4/check-decl.m4 (jm_CHECK_DECL_LOCALTIME_R): Remove macro.
24371
24372 1998-10-17  Jim Meyering  <meyering@ascend.com>
24373
24374         * m4/decl.m4 (jm_CHECK_DECLARATION): Don't hard-code which headers to
24375         include, though we still hard-code the `require'-like AC_CHECK_HEADERS
24376         calls for those previously hard-coded headers.  Instead, take a new
24377         parameter.
24378         (jm_CHECK_DECLARATIONS): Reflect interface change.
24379         * m4/check-decl.m4 (jm_CHECK_DECLS): Likewise.
24380         (jm_CHECK_DECL_LOCALTIME_R): New macro.
24381
24382         * m4/mktime.m4: Test for spring-forward gap before long-running test.
24383
24384 1998-10-14  Jim Meyering  <meyering@ascend.com>
24385
24386         * m4/mktime.m4: Use the more portable "TZ=PST8PDT,M4.1.0,M10.5.0"
24387         instead of "TZ=America/Vancouver".  From Paul Eggert.
24388
24389 1998-10-11  Jim Meyering  <meyering@ascend.com>
24390
24391         * m4/mktime.m4 (jm_AM_FUNC_MKTIME): New file and macro.
24392         This adds a test for a recently added compatibility fix for mktime.c.
24393         * m4/jm-mktime.m4: Require jm_AM_FUNC_MKTIME, not AM_FUNC_MKTIME.
24394
24395 1998-09-27  Jim Meyering  <meyering@ascend.com>
24396
24397         * m4/jm-macros.m4 (jm_MACROS): Require jm_FUNC_FNMATCH.
24398
24399         * m4/fnmatch.m4 (jm_FUNC_FNMATCH): New file/macro.  Extracted from
24400         ../configure.in, including a change from Gordon Matzigkeit to allow
24401         cross-compiling for the Hurd.
24402
24403         * m4/glibc.m4: New file/macro to test for the GNU C Library
24404         versions 1 and 2.  From Gordon Matzigkeit.
24405         Indent.
24406
24407 1998-09-21  Jim Meyering  <meyering@ascend.com>
24408
24409         * m4/chown.m4: Declare locals: before, after.  From Andries Brouwer.
24410
24411 1998-08-18  Paul Eggert  <eggert@twinsun.com>
24412
24413         Port nanosecond-resolution times to UnixWare 2.1.2 and
24414         pedantic Solaris 2.6.
24415
24416         * m4/st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC): Renamed from
24417         AC_STRUCT_ST_MTIM.
24418         * m4/st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC):
24419         Generate name of ns member, instead of just 1 or undef.
24420         Allow for UnixWare 2.1.2 and Solaris 2.6 if in pedantic mode.
24421
24422 1998-08-15  Jim Meyering  <meyering@ascend.com>
24423
24424         * m4/ssize_t.m4 (jm_TYPE_SSIZE_T): Remove file.
24425         * m4/check-type.m4: New file.  Replacement for AC_CHECK_TYPE.
24426         * m4/jm-macros.m4: Use the new AC_CHECK_TYPE(ssize_t, int)
24427         instead of jm_TYPE_SSIZE_T.
24428
24429 1998-08-12  Jim Meyering  <meyering@ascend.com>
24430
24431         * m4/st_dm_mode.m4: New file.  From Johan Danielsson.
24432
24433 1998-08-02  Jim Meyering  <meyering@ascend.com>
24434
24435         * m4/st_mtim.m4: Use hack to avoid having to put #undef HAVE_ST_MTIM
24436         in acconfig.h manually.
24437
24438 1998-07-31  Paul Eggert  <eggert@twinsun.com>
24439
24440         * m4/st_mtim.m4: New file.
24441
24442 1998-07-28  Jim Meyering  <meyering@ascend.com>
24443
24444         * m4/utimes.m4: Undef stat.
24445
24446 1998-07-25  Jim Meyering  <meyering@ascend.com>
24447
24448         * m4/utime.m4 (jm_FUNC_UTIME): New file and macro.
24449         * m4/utimes.m4 (jm_FUNC_UTIMES_NULL): New file and macro.
24450
24451 1998-07-09  Manfred Hollstein  <manfred@s-direktnet.de>
24452
24453         * m4/chown.m4 (jm_FUNC_CHOWN): Add a check to verify that the
24454         uid and gid actually remain unchanged.
24455
24456 1998-07-07  Jim Meyering  <meyering@ascend.com>
24457
24458         * m4/jm-glibc-io.m4: Remove fclose_unlocked.
24459
24460 1998-07-04  Jim Meyering  <meyering@ascend.com>
24461
24462         * m4/regex.m4: Use syscmd, ifelse, and sysval.  Mainly as an exercise
24463         to prove that this macro can be used in packages without regex.c.
24464
24465 1998-07-04  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
24466
24467         * m4/gettext.m4 (AM_WITH_NLS): Remove intl/libintl.h if <libintl.h>
24468         is to be used.
24469
24470 1998-07-03  Jim Meyering  <meyering@ascend.com>
24471
24472         * m4/gettext.m4: Add -lintl if it's found to be necessary.
24473
24474         * m4/gettext.m4: New file -- from gettext-0.10.35.
24475         * m4/lcmessage.m4: Likewise.
24476         * m4/progtest.m4: Likewise.
24477
24478         * m4/regex.m4 (jm_WITH_REGEX): New file and macro.
24479         * m4/jm-macros.m4: Require the new macro.
24480
24481 1998-06-29  Jim Meyering  <meyering@ascend.com>
24482
24483         * m4/fstypename.m4: Include sys/param.h.  NetBSD 1.3.1 requires this
24484         for the definition of NGROUPS (used in a system header included
24485         by sys/mount.h).
24486
24487 1998-06-28  Jim Meyering  <meyering@ascend.com>
24488
24489         * m4/ls-mntd-fs.m4: New file.
24490         * m4/fstypename.m4: New file.
24491
24492         * m4/jm-macros.m4: Require the new macro.
24493         * m4/jm-glibc-io.m4: New file.
24494
24495 1998-05-19  Jim Meyering  <meyering@ascend.com>
24496
24497         * m4/jm-macros.m4: Add jm_FUNC_LCHOWN.
24498         * m4/lchown.m4: New file.
24499
24500         * m4/Makefile.am.in: New file.
24501         * m4/Makefile.am (Makefile.am): Depend on Makefile.am.in.
24502
24503 1998-05-14  Jim Meyering  <meyering@ascend.com>
24504
24505         * m4/Makefile.am (EXTRA_DIST): Add them.
24506         * m4/jm-macros.m4: New file.
24507         * m4/utimbuf.m4: New file.
24508
24509 1998-05-12  Jim Meyering  <meyering@ascend.com>
24510
24511         * m4/Makefile.am (EXTRA_DIST): Add isc-posix.m4.
24512
24513 1998-05-11  Jim Meyering  <meyering@ascend.com>
24514
24515         * m4/isc-posix.m4: New file.
24516
24517 1998-05-10  Jim Meyering  <meyering@ascend.com>
24518
24519         * m4/jm-mktime.m4: Use AM_FUNC_MKTIME, now that it's up to date.
24520
24521 1998-05-09  Jim Meyering  <meyering@ascend.com>
24522
24523         * m4/Makefile.am (EXTRA_DIST): Add ssize_t.m4.
24524         (EXTRA_DIST): Remove mktime.m4, now that the new version is included
24525         with automake.
24526
24527         * m4/ssize_t.m4: New file.
24528         * m4/mktime.m4: Remove file -- the new automake has this now.
24529
24530 1998-04-26  Jim Meyering  <meyering@ascend.com>
24531
24532         * m4/assert.m4: New file.
24533         * m4/Makefile.am (EXTRA_DIST): Add assert.m4.
24534
24535 1998-04-05  Jim Meyering  <meyering@ascend.com>
24536
24537         * m4/prereq.m4 (jm_PREREQ_REGEX): New macro.
24538         (jm_PREREQ): Use it here.
24539
24540 1998-03-23  Jim Meyering  <meyering@eng.ascend.com>
24541
24542         * m4/inttypes_h.m4: Kludges so I don't have to add HAVE_INTTYPES_H
24543         in acconfig.h.
24544
24545 1998-03-15  Jim Meyering  <meyering@eng.ascend.com>
24546
24547         * m4/prereq.m4: New file.
24548         * m4/error.m4: New file.
24549         * m4/Makefile.am (EXTRA_DIST): Add error.m4 and prereq.m4.
24550
24551 1998-02-07  Jim Meyering  <meyering@eng.ascend.com>
24552
24553         * m4/getline.m4: Don't set am_cv_func_working_getline before the
24554         cache-check for the same variable -- that defeated the purpose of
24555         the test; the test program was never run.  This was a problem only
24556         on systems with losing getline functions -- HP-UX 10.20 is one.
24557         Reported by Bjorn Helgaas.
24558
24559 1998-02-06  Jim Meyering  <meyering@eng.ascend.com>
24560
24561         * m4/Makefile.am (EXTRA_DIST): Add perl.m4.
24562
24563 1998-01-10  Jim Meyering  <meyering@na-net.ornl.gov>
24564
24565         * m4/Makefile.am (EXTRA_DIST): Add const.m4.
24566
24567         * m4/const.m4: New file.  Use an initializer in this declaration
24568         typedef int charset[2]; const charset x;
24569         Reported by Bob Glickstein.
24570
24571 1997-12-21  Jim Meyering  <meyering@na-net.ornl.gov>
24572
24573         * m4/chown.m4: Fix reversed types on -1 args to chown.
24574         From Kaveh Ghazi.
24575
24576 1997-12-14  Jim Meyering  <meyering@na-net.ornl.gov>
24577
24578         * m4/check-decl.m4: s/DECLARATION_/DECL_/g.
24579         Add lseek and memchr.
24580
24581         * m4/decl.m4: s/HAVE_DECLARATION_/HAVE_DECL_/g.
24582         T.E.Dickey <dickey@clark.net> said that some older preprocessors
24583         have a 20-character limit on names.
24584
24585 1997-11-30  Jim Meyering  <meyering@na-net.ornl.gov>
24586
24587         * m4/inttypes_h.m4: New file.
24588         * m4/uintmax_t.m4: New file.
24589         * m4/Makefile.am (EXTRA_DIST): Add inttypes_h.m4 and uintmax_t.m4.
24590
24591 Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006
24592   Free Software Foundation, Inc.
24593 Copying and distribution of this file, with or without modification,
24594 are permitted provided the copyright notice and this notice are preserved.