Move the module indicator macros to the module description.
[gnulib.git] / ChangeLog
1 2007-01-08  Bruno Haible  <bruno@clisp.org>
2
3         * m4/close-stream.m4 (gl_CLOSE_STREAM): Remove GNULIB_CLOSE_STREAM
4         macro definition.
5         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Remove GNULIB_FCNTL_SAFER macro
6         definition.
7         * m4/stdio-safer.m4 (gl_FOPEN_SAFER): Remove GNULIB_FOPEN_SAFER macro
8         definition.
9         * modules/close-stream (configure.ac): Invoke gl_MODULE_INDICATOR.
10         * modules/fcntl-safer (configure.ac): Likewise.
11         * modules/fopen-safer (configure.ac): Likewise.
12         * modules/fwriteerror (configure.ac): Likewise. Remove explicit
13         GNULIB_FWRITEERROR macro definition.
14
15 2007-01-08  Bruno Haible  <bruno@clisp.org>
16
17         * m4/gnulib-common.m4: New file.
18         * gnulib-tool (func_get_autoconf_snippet): Undo last change.
19         (func_get_filelist): Add m4/gnulib-common.m4.
20
21 2007-01-08  Bruno Haible  <bruno@clisp.org>
22
23         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Simplify the sorting
24         command.
25
26 2007-01-08  Jim Meyering  <jim@meyering.net>
27
28         Use a more robust test for a "can't happen" condition.
29         * lib/fts.c (fts_read): Revert the change of 2006-11-22, since it
30         narrowed the st_size value.  Presuming the "can't happen" condition
31         is true, that narrowing could conceivably convert an invalid st_size
32         value into a valid one.  Instead, use a change based on Matthew
33         Woehlke's original patch.
34
35         Slight readability improvement: use an assert-like macro
36         in place of literal "abort ()" uses.
37         * lib/fts.c (fts_assert): Define.
38         (fts_set_stat_required, cwd_advance_fd, fts_read, fd_ring_check):
39         Use this macro instead of a bare 'abort'.
40
41 2007-01-05  Paul Eggert  <eggert@cs.ucla.edu>
42
43         Don't worry about using IRIX 5.3's wctype.h broken definitions;
44         simply work around them.
45         * lib/wctype_.h: Remove test for HAVE_WCTYPE_CTMP_BUG.
46         (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit, iswgraph, iswlower):
47         (iswprint, iswpunct, iswspace, iswupper, iswxdigit): Undef before declaring.
48         Don't bother to define as macros, since the standard doesn't require it.
49         * m4/wctype.m4 (WCTYPE_H, ABSOLUTE_WCTYPE_H): Simplify, since we no
50         longer worry about IRIX 5.3.
51         (HAVE_WCTYPE_CTMP_BUG): Remove.
52
53 2007-01-04  Paul Eggert  <eggert@cs.ucla.edu>
54
55         * lib/wctype_.h (_ctmp_) [HAVE_WCTYPE_CTMP_BUG]: Now of type wchar_t,
56         not wint_t.  Also, include <ctype.h>, to fix another IRIX bug.
57         * m4/wctype.m4 (gl_WCTYPE_H): Likewise.
58         Problems reported by Georg Schwarz for IRIX 5.3.
59
60         * gnulib-tool (autoconf_minversion): Take the maximum version number
61         found, not the minimum.  Problem reported by James Youngman.
62
63 2007-01-03  Karl Berry  <karl@gnu.org>
64
65         * doc/error.texi: new file, explaining interaction with progname.
66         * doc/gnulib.texi: include it.  Update copyright.
67
68 2007-01-03  Simon Josefsson  <simon@josefsson.org>
69
70         * gnulib-tool (func_create_testdir): Run AC_CANONICAL_BUILD and
71         AC_CANONICAL_HOST, to improve autobuild outputs.
72
73 2007-01-03  Paolo Bonzini  <bonzini@gnu.org>
74             Yoann Vandoorselaere <yoann.v@prelude-ids.com>
75
76         * lib/poll.c (poll): Use recv on Mac OS X to distinguish connected
77         sockets, server sockets, and other file descriptors.  Count errors
78         to compute the return value.  Reorder the code a bit to be easier
79         to follow.  Don't set event bits that were not requested (except
80         POLLERR and POLLHUP).
81
82 2007-01-01  Bruno Haible  <bruno@clisp.org>
83
84         * modules/lchmod (Include): Require lchmod.h, not lchown.h.
85
86 2007-01-03  Jim Meyering  <jim@meyering.net>
87
88         * modules/fts-lgpl (Depends-on): Add i-ring.  Reported by Bruno Haible.
89
90 2007-01-02  Bruno Haible  <bruno@clisp.org>
91
92         * modules/settime (Include): Require timespec.h.
93         * modules/nanosleep (Include): Likewise.
94
95 2007-01-01  Bruno Haible  <bruno@clisp.org>
96
97         * gnulib-tool (func_emit_copyright_notice): Bump year.
98         (func_get_autoconf_snippet): Emit a GNULIB_<modulename> macro.
99
100 2007-01-01  Bruno Haible  <bruno@clisp.org>
101
102         Improve support for OpenBSD.
103         * build-aux/config.rpath (libname_spec): Export.
104         (library_names_spec): New variable. Export.
105         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Extract libname_spec and
106         library_names_spec from the config.rpath output. Locate shared library
107         through the name pattern in library_names_spec.
108
109 2007-01-01  Eric Blake  <ebb9@byu.net>
110
111         * lib/version-etc.c (COPYRIGHT_YEAR): Bump for new year.
112
113 2006-12-30  Paul Eggert  <eggert@cs.ucla.edu>
114
115         * gnulib-tool (SORT): Remove, since we no longer assume GNU sort.
116         Rewrite so as not to assume GNU sort or "tail -1".  Also, don't
117         assume the C locale, and avoid an "eval" that could cause trouble.
118         Problem with SORT reported by Bob Proulx.
119
120         * lib/getpagesize.h (getpagesize) [defined __amigaos4__]:
121         Define.  Trivial patch from Henning Nielsen Lund, originally
122         sent to bug-grep@gnu.org today.
123
124 2006-12-29  Paul Eggert  <eggert@cs.ucla.edu>
125
126         * lib/acl.h: Include sys/types.h and sys/stat.h, for mode_t and
127         struct stat.  Problem reported by Henning Nielsen Lund.
128         * lib/acl.c: Include acl.h first, to check interface.  Don't
129         bother to include sys/types.h and sys/stat.h again.
130
131 2006-12-28  Paul Eggert  <eggert@cs.ucla.edu>
132
133         Import the following change from libc; problem reported by
134         Sven Verdoolaege.
135
136         2005-10-13  Ulrich Drepper  <drepper@redhat.com>
137
138         [BZ #1373]
139         * lib/argp.h: Remove __NTH for __argp_usage inline function.
140
141 2006-12-28  Jim Meyering  <jim@meyering.net>
142
143         * build-aux/announce-gen: Do not assume that the package
144         builds any of tar.gz, tar.bz2, and .xdelta files.
145         Suggestion from Simon Josefsson.
146
147 2006-12-28  Simon Josefsson  <simon@josefsson.org>
148
149         * modules/announce-gen: New file.
150
151 2006-12-27  Paul Eggert  <eggert@cs.ucla.edu>
152
153         * lib/mbchar.h: Just include <wctype.h>; the wctype module
154         handles its gotchas now.
155         * lib/mbswidth.c: Likewise.
156         * lib/wcwidth.h: Likewise.
157         * m4/mbchar.m4 (gl_MBCHAR): Don't bother checking for wctype.h
158         and iswcntrl; the wctype module does this stuff now.
159         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
160         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
161         * modules/mbchar (Depends-on): Add wctype.
162         * modules/mbswidth (Depends-on): Likewise.
163         * modules/wcwidth (Depends-on): Likewise.
164
165 2006-12-27  Eric Blake  <ebb9@byu.net>
166
167         * lib/fnmatch.c: Reinstate inclusion of <wchar.h>, since this
168         module uses more than what <wctype.h> is required to provide.
169
170 2006-12-26  Eric Blake  <ebb9@byu.net>
171
172         * gnulib-tool (sed_extract_prog): Avoid space-tab.
173
174 2006-12-26  Eric Blake  <ebb9@byu.net>
175
176         * modules/absolute-header: New module.
177         * modules/fcntl (Depends-on): Depend on it.
178         * modules/inttypes (Depends-on): Likewise.
179         * modules/stdint (Depends-on): Likewise.
180         * modules/sys_stat (Depends-on): Likewise.
181         * modules/wctype (Depends-on): Likewise.
182         * MODULES.html.sh (Support for building libraries and
183         executables): Document it.
184
185 2006-12-25  Paul Eggert  <eggert@cs.ucla.edu>
186
187         * gnulib-tool (SED): Remove, undoing previous change.
188         The problem was that it broke coreutils on Solaris, because
189         "sed --posix" leaked into a makefile.
190         (sed): New alias, if 'alias' and GNU sed.
191
192 2006-12-24  Jim Meyering  <jim@meyering.net>
193
194         Work around an fchownat bug in glibc-2.4:
195         http://lists.ubuntu.com/archives/ubuntu-users/2006-September/093218.html
196         This bug would cause "chown -RP ... DIR" to follow symlinks in DIR,
197         in spite of the -P option.
198         * m4/openat.m4 (gl_FUNC_FCHOWNAT, gl_FUNC_FCHOWNAT_DEREF_BUG):
199         New macros.
200         (gl_PREREQ_OPENAT): Require gl_FUNC_FCHOWNAT.
201         * modules/openat (Files): Add lib/fchownat.c.
202         * lib/openat.c (fchownat): Don't define here.  Move to...
203         * lib/fchownat.c: ...this new file.
204
205 2006-12-23  Paul Eggert  <eggert@cs.ucla.edu>
206
207         Fix bug reported by Bruno Haible in
208         <http://lists.gnu.org/archive/html/bug-gnulib/2006-12/msg00228.html>
209         where quotearg.c didn't compile on Mac OS X 10.2 because it
210         lacks <wchar.h> and wint_t.
211         * lib/wctype_.h (__wctype_wint_t): New type.
212         Include <stdio.h>, <time.h>, <wchar.h> only if HAVE_WINT_T.
213         (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit, iswgraph):
214         (iswlower, iswprint, iswpunct, iswspace, iswupper, ixwxdigit):
215         Arg is now of type __wctype_wint_t, not wint_t.
216         * m4/wctype.m4 (gl_WCTYPE_H): Require gt_TYPE_WINT_T, and
217         substitute HAVE_WINT_T.
218         * modules/wctype (Files): Add m4/wint_t.m4.
219         (wctype.h): Substitute HAVE_WINT_T.
220
221 2006-12-23  Bruno Haible  <bruno@clisp.org>
222
223         * lib/safe-read.h [C++]: Wrap declarations in extern "C".
224
225 2006-12-23  Bruno Haible  <bruno@clisp.org>
226
227         * lib/canonicalize-lgpl.c (__realpath): Test HAVE_READLINK instead of
228         S_ISLNK.
229         Needed because gnulib's sys/stat.h replacement defines S_ISLNK on
230         mingw.
231
232 2006-12-22  Bruno Haible  <bruno@clisp.org>
233
234         * lib/copy-file.c: Include acl.h.
235         (copy_file_preserving) [USE_ACL]: Use copy_acl instead of chmod.
236         Close the file descriptors only after being done with copy_acl.
237         * modules/copy-file (Depends-on): Add acl.
238
239 2006-12-22  Bruno Haible  <bruno@clisp.org>
240
241         * gnulib-tool (SED): New variable.
242         Use $SED instead of sed everywhere.
243
244 2006-12-22  Bruno Haible  <bruno@clisp.org>
245
246         * modules/no-c++: New file.
247         * m4/no-c++.m4: New file.
248         * MODULES.html.sh (Support for building libraries and executables):
249         Add no-c++.
250
251 2006-12-22  Paul Eggert  <eggert@cs.ucla.edu>
252
253         * m4/mktime.m4 (AC_FUNC_MKTIME): Sync from Autoconf.
254         Include <limits.h>, and use its INT_MAX to rewrite the
255         j loop so that it does not overflow 'int'.  Problem reported by
256         Ralf Wildenhues in
257         <http://lists.gnu.org/archive/html/bug-gnulib/2006-12/msg00084.html>.
258         Play it safe by shifting left by 1 rather than multiplying by 2,
259         as GCC is less likely to optimize this away when the value
260         is signed (when it assumes overflow leads to undefined behavior).
261         Also, don't assume time_t uses two's complement.
262
263 2006-12-21  Paul Eggert  <eggert@cs.ucla.edu>
264
265         * MODULES.html.sh: New module wctype.
266         * lib/wctype_.h, m4/wctype.m4, modules/wctype: New files.
267         * lib/fnmatch.c: Don't bother to include <wchar.h> before
268         <wctype.h>, since the new wctype module should fix this.
269         * lib/quotearg.c: Include <wctype.h> unconditionally, since
270         the wctype module should arrange for it.
271         * lib/regex_internal.h: Likewise.
272         * m4/quotearg.m4 (gl_QUOTEARG): Don't check for wctype.h or iswprint,
273         since the wctype module should handle this now.
274         * m4/regex.m4 (gl_PREREQ_REGEX): Don't check for wctype.h.
275         * modules/fnmatch (Depends-on): Add wctype.
276         * modules/quotearg (Depends-on): Likewise.
277         * modules/regex (Depends-on): Likewise.
278
279 2006-12-19  Bruno Haible  <bruno@clisp.org>
280
281         * lib/strdup.h [C++]: Wrap definitions in extern "C".
282         Suggested by Lorenzo Bettini <bettini@dsi.unifi.it>.
283
284 2006-12-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
285
286         * modules/savewd (Depends-on): Fix dependency on fcntl.
287
288 2006-12-18  Paul Eggert  <eggert@cs.ucla.edu>
289
290         * m4/stdint.m4 (gl_STDINT_H): Set STDINT_H to empty if stdint.h
291         conforms to C99, rather than relying on the user's environment
292         setting of STDINT_H.
293
294 2006-12-18  Paul Eggert  <eggert@cs.ucla.edu>
295         and Eric Blake  <ebb9@byu.net>
296
297         * lib/dirname.h (DOUBLE_SLASH_IS_DISTINCT_ROOT): Default to 0, not 1.
298         This is more consistent with the other defines here.
299         * m4/double-slash-root.m4 (gl_DOUBLE_SLASH_ROOT):
300         Port to z/OS.  Problem reported by Paul Gilmartin.
301         Change local vars to use gl_ prefix rather than ac_.
302         Don't define DOUBLE_SLASH_IS_DISTINCT_ROOT to 0, for consistency
303         with other defines.
304         * modules/double-slash-root: New module.
305         * modules/dirname (Files): Remove m4/double-slash-root.m4.
306         (Depends-on): Add double-slash-root.
307         * MODULES.html.sh (File system functions): Mention new module.
308
309 2006-12-14  Paul Eggert  <eggert@cs.ucla.edu>
310
311         * lib/yesno.c [!ENABLE_NLS]: Don't include getline.h.
312         (yesno) [!ENABLE_NLS]: Don't invoke getline or rpmatch.
313         This is for the benefit of gzip, which doesn't do i18n.
314
315 2006-12-12  Jim Meyering  <jim@meyering.net>
316
317         * m4/acl.m4 (gl_ACL_GET_FILE): Fix logic error.
318         Reported by Andreas Schwab <schwab@suse.de>.
319
320 2006-12-12  Bruno Haible  <bruno@clisp.org>
321
322         Merge these changes.
323         2006-09-05  Bruno Haible  <bruno@clisp.org>
324         * lib/iconvme.c (iconv_string): No need to save and restore errno when
325         iconv_alloc succeeded.
326         (iconv_alloc): Don't assume that malloc() or realloc(), when failing,
327         sets errno to ENOMEM. (malloc on GNU/kFreeBSD doesn't.) No need to
328         test for " && dest " at the end - dest is always != NULL there. Call
329         iconv with 4xNULL arguments initially, to reset the state. Call iconv
330         with 2xNULL arguments, also to flush the state storage. Handle the
331         IRIX iconv behaviour. Realloc the final result, to throw away unused
332         memory.
333
334 2006-12-11  Paul Eggert  <eggert@cs.ucla.edu>
335
336         * m4/openat.m4 (gl_FUNC_OPENAT): Don't compile mkdirat
337         and fchmodat unconditionally, since glibc 2.4 has them.
338         Problem reported by Arkadiusz Miskiewicz.
339
340 2006-12-10  Bruno Haible  <bruno@clisp.org>
341
342         * gnulib-tool (func_import): Show the include files only for those
343         modules that are copied and specified.
344         Reported by Karl Berry.
345
346 2006-12-08  Jim Meyering  <jim@meyering.net>
347
348         * build-aux/announce-gen ($VERSION): Don't use of $Revision...$.
349         Instead, use Emacs' time-stamp write hook.  Note that the time is UTC.
350
351         * build-aux/announce-gen: Add two new options, both optional:
352         --bootstrap-tools=TOOL_LIST
353               a comma-separated list of tools, e.g.,
354               autoconf,automake,bison,gnulib
355         --gnulib-snapshot-date=DATE
356               if gnulib is in the bootstrap tool list,
357               then report this as the snapshot date.
358               If not specified, use the current date/time.
359               If you specify a date here, be sure it's UTC.
360
361 2006-12-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
362
363         * tests/test-argp-2.sh: Fix test to match actual output.
364         (func_compare): Fix sed script to be portable.
365
366 2006-12-05  Paul Eggert  <eggert@cs.ucla.edu>
367
368         * lib/utimens.c (futimens) [HAVE_BUGGY_NFS_TIME_STAMPS]: Add a
369         workaround for this case.  It is not autoconfigured now; offhand
370         it's hard to see how to autoconfigure it.
371
372 2006-12-03  Paul Eggert  <eggert@cs.ucla.edu>
373
374         * lib/mkdir-p.c (make_dir_parents): Fix race condition when making
375         a directory that is about to be chowned.  Such a directory's
376         initial file permissions should permit the owner only and this
377         should not be changed until after the chown, since the group and
378         other bits would be incorrect if they granted permission before
379         the chown.
380
381         Fix porting problem for iswctype reported by Georg Schwarz in:
382         http://lists.gnu.org/archive/html/bug-coreutils/2006-12/msg00017.html
383         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Require HAVE_ISWCTYPE, too.
384         * lib/regex_internal.h (RE_ENABLE_I18N): Likewise.
385         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for iswctype, too.
386         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
387
388 2006-12-03  Jim Meyering  <jim@meyering.net>
389
390         * lib/fts.c (fts_load): Don't set sp->fts_dev here, since
391         p->fts_statp may not yet be defined.
392         (fts_read): Instead, set it in the caller, once p->fts_statp is
393         sure to be defined, and corresponds to a top-level directory.
394         This bug made du -x fail.  Here's the coreutils test case:
395         http://git.sv.gnu.org/gitweb/?p=coreutils.git;a=commit;h=ba45154d8e9f
396         Reported by Mike Frysinger.
397
398 2006-12-01  Jim Meyering  <jim@meyering.net>
399
400         * modules/savewd (Depends-on): Add fcntl_h to avoid self-test
401         build failure due to missing definition of HAVE_WORKING_O_NOFOLLOW.
402         Reported by Simon Josefsson.
403
404 2006-11-30  Jim Meyering  <jim@meyering.net>
405
406         * m4/warning.m4: Use the all-permissive copyright notice
407         recommended by RMS (rather than LGPL).
408         * m4/vararrays.m4: Likewise.
409         * m4/flexmember.m4: Likewise.
410
411 2006-11-29  Bruno Haible  <bruno@clisp.org>
412
413         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
414         noinst_LIBRARIES. Augment noinst_LIBRARIES and noinst_LTLIBRARIES
415         using +=.
416         Reported by Simon Josefsson <simon@josefsson.org>.
417
418 2006-11-28  James Youngman <jay@gnu.org>
419
420         * README: Advise users that they might find the bug-gnulib@gnu.org
421         and autotools-announce@gnu.org mailing lists useful.
422
423 2006-11-28  Bruno Haible  <bruno@clisp.org>
424
425         * m4/ptrdiff_max.m4: Remove file.
426
427 2006-11-21  Bruno Haible  <bruno@clisp.org>
428
429         * m4/eoverflow.m4 (gl_EOVERFLOW): Use AC_COMPUTE_INT instead of
430         _AC_COMPUTE_INT.
431         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
432         * m4/ptrdiff_max.m4 (gl_PTRDIFF_MAX): Use AC_COMPUTE_INT instead of
433         _AC_COMPUTE_INT.
434         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
435         * m4/size_max.m4 (gl_SIZE_MAX): Use AC_COMPUTE_INT instead of
436         _AC_COMPUTE_INT.
437         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
438
439 2006-11-28  Jim Meyering  <jim@meyering.net>
440
441         * lib/regcomp.c (parse_branch): Rename local, exp->expr, to avoid
442         warning from "gcc -Wshadow" about shadowing the builtin.
443
444 2006-11-27  Bruno Haible  <bruno@clisp.org>
445
446         * m4/stdint.m4 (gl_STDINT_BITSIZEOF): Use AC_COMPUTE_INT instead of
447         _AC_COMPUTE_INT.
448         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
449
450 2006-11-27  Bruno Haible  <bruno@clisp.org>
451             Paul Eggert  <eggert@cs.ucla.edu>
452
453         * lib/regex.h (__restrict_arr): Redo logic of #if, for clarity.
454
455 2006-11-26  Bruno Haible  <bruno@clisp.org>
456
457         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
458         noinst_LTLIBRARIES.
459
460 2006-11-27  Paul Eggert  <eggert@cs.ucla.edu>
461             Bruno Haible  <bruno@clisp.org>
462
463         * lib/gettext.h (_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS): Define to 0
464         if compiling with "gcc -ansi".
465
466 2006-11-26  Paul Eggert  <eggert@cs.ucla.edu>
467
468         Fix some incompatibilities with gcc -ansi -pedantic.
469         * lib/regex.h (__restrict_arr): Don't use the [restrict] syntax
470         if compiling pedantically with GCC, unless it's C99 or later.
471         Don't trust sys/cdefs.h's definition of __restrict_arr, either, as
472         it mishandles gcc -ansi -pedantic as well.
473         * lib/regex_internal.h (re_token_t): Don't use enum bitfields
474         if gcc -pedantic.
475         * lib/regexec.c (check_node_accept_bytes): Don't use auto
476         initializers for struct if -pedantic, unless it's C99 or later.
477
478 2006-11-25  Nix  <nix@esperi.org.uk>  (tiny change)
479
480         * m4/fcntl_h.m4 (gl_FCNTL_H): Test the atime, not the mtime.
481         Don't close an fd more than once. Identical atimes indicate
482         success, not failure.
483
484 2006-11-22  Robinson Mittmann <bob@hoplon.com>  (tiny change)
485
486         * lib/sincosl.c (kernel_sinl): Fix typo in threshold.
487
488 2006-11-23  Jim Meyering  <jim@meyering.net>
489
490         * build-aux/announce-gen: New file.  From coreutils.
491
492 2006-11-22  Jim Meyering  <jim@meyering.net>
493
494         Work around a compile-time error from the HP-UX 11.00 /bin/cc.
495         * lib/fts.c (enum Fts_stat): Give this previously-anon enum a name.
496         (fts_read): Use a temporary to narrow the overused st_size member
497         before using it in a switch statement.  Reported by Matthew Woehlke.
498
499         * m4/clock_time.m4 (gl_CLOCK_TIME): Quote AC_SUBST argument.
500         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Likewise.
501
502 2006-11-20  Bruno Haible  <bruno@clisp.org>
503
504         * gettext.m4 (AM_GNU_GETTEXT): Revert 2005-07-28 patch: Use
505         changequote instead of pairs of brackets.
506         Reported by Andreas Schwab <schwab@suse.de>.
507
508 2006-11-21  Jim Meyering  <jim@meyering.net>
509
510         * lib/fts.c (fts_safe_changedir): Move a declaration "up",
511         so as to remain compatible with older compilers.
512         Patch from Michael Deutschmann.
513
514 2006-11-20  Paul Eggert  <eggert@cs.ucla.edu>
515
516         * MODULES.html.sh (File system functions): Add openat.
517
518         * lib/openat.h (rpl_fstatat): New macro, if
519         [HAVE_OPENAT && ! LSTAT_FOLLOWS_SLASHED_SYMLINK.
520         (fstatat): Define to rpl_fstatat under the same conditions,
521         unless COMPILING_FSTATAT.
522         * m4/openat.m4 (gl_FUNC_OPENAT): Compile fstatat.c too, if fstatat
523         seems to have the bug.
524         * lib/fstatat.c: New file.
525         * modules/openat (Files): Add it.
526
527 2006-11-20  Bruno Haible  <bruno@clisp.org>
528
529         * Makefile: New file.
530
531 2006-11-20  Jim Meyering  <jim@meyering.net>
532
533         The beginnings of syntax-related checks for gnulib.
534         * lib/Makefile: New file.
535         * lib/t-idcache: New script.  Ensure that the two halves of
536         idcache.c stay in sync.
537
538         * lib/idcache.c: Adjust comments in user- and group- portions to
539         be more accurate, and to be consistent with one another.
540
541 2006-11-20  Jim Meyering  <jim@meyering.net>
542
543         * lib/idcache.c: Restore most of the 2006-11-06 patch, so as to
544         continue using the flexible array member (thus, this module performs
545         half as many malloc calls), with the addition that...
546         (getgroup, getuser): Consistently record a non-match via an empty
547         "name" string, and map an empty string match to a NULL return value.
548         * modules/idcache (Depends-on): Re-add flexmember.
549
550         * lib/idcache.c (getuser): Remove all uses of the register keyword.
551         (getuidbyname, getgroup, getgidbyname): Likewise.
552
553         Use cleaner syntax: NULL rather than 0.
554         * lib/idcache.c (getuidbyname, getgidbyname): Return NULL, not 0.
555
556 2006-11-20  Paul Eggert  <eggert@cs.ucla.edu>
557
558         * lib/idcache.c: Undo most recent patch, dated 2006-11-06.
559         It mishandled the case where the group was missing.
560         Problem reported by Greg Schafer.
561         * modules/idcache: Likewise.
562
563 2006-11-18  Jim Meyering  <jim@meyering.net>
564
565         * check-module (%exempt_header): Add exception for some
566         conditionally-included headers.
567
568         * modules/i-ring (Depends-on): Add verify.
569         (License): Change to LGPL.
570
571 2006-11-16  Paul Eggert  <eggert@cs.ucla.edu>
572
573         * modules/getaddinfo (Depends-on): Remove inttostr; add snprintf.
574         * lib/getaddrinfo.c: Include snprintf.h rather than intprops.h
575         and inttostr.h.  Use snprintf rather than uinttostr, so that
576         LGPLed code doesn't depend on GPLed.
577
578 2006-11-17  Paul Eggert  <eggert@cs.ucla.edu>
579
580         * modules/inline (License): Change from GPL to LGPL.
581
582 2006-11-17  Jim Meyering  <jim@meyering.net>
583
584         * modules/d-type (License): Switch to LGPL.
585
586 2006-11-15  Bruno Haible  <bruno@clisp.org>
587
588         * m4/alloca.m4 (gl_FUNC_ALLOCA): Fix the AC_CACHE_CHECK message.
589
590 2006-11-15  Eric Blake  <ebb9@byu.net>
591
592         * m4/allocsa.m4 (gl_ALLOCSA): Don't invoke macro already picked up by
593         the module dependency.
594
595 2006-11-15  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
596             Bruno Haible  <bruno@clisp.org>
597
598         * gnulib-tool (func_create_testdir): Add license consistency check.
599
600 2006-11-15  Eric Blake  <ebb9@byu.net>
601
602         * m4/alloca.m4 (gl_FUNC_ALLOCA): Use AC_CACHE_CHECK to avoid a
603         random "(cached)" in configure output.
604
605 2006-11-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
606
607         * m4/inttypes.m4 (gl_INTTYPES_H): Use AC_CACHE_CHECK so that the
608         test for conforming inttypes.h is both announced and cached.
609
610         * MODULES.html.sh (seen_modules, seen_files): New variables.
611         (func_module): Rewrite to use a few less gnulib-tool and sed
612         invocations.  Avoid a couple of quadratic algorithms for ...
613         (missed_modules, missed_files): ... these, with ...
614         (func_append, func_tmpdir): ... these new functions, from
615         gnulib-tool.  Analogously, install traps for cleanup.
616
617         * tests/test-gc.c (main): Remove unused variables.
618         * tests/test-read-file.c: Include stdlib.h, for 'free'.
619
620 2006-11-14  Paul Eggert  <eggert@cs.ucla.edu>
621
622         * modules/inttostr (License): Change to LGPL.
623
624 2006-11-14  Eric Blake  <ebb9@byu.net>
625
626         * modules/tempname (License): Change to LGPL.
627
628 2006-11-14  Eric Blake  <ebb9@byu.net>
629
630         * doc/functions.texi (Function Portability): *printf functions on
631         Cygwin now understand all POSIX size specifiers.
632
633 2006-11-14  Bruno Haible  <bruno@clisp.org>
634
635         * modules/c-ctype (License): Change to LGPL.
636
637 2006-11-12  Bruno Haible  <bruno@clisp.org>
638
639         * m4/lib-link.m4 (AC_LIB_LINKFLAGS, AC_LIB_HAVE_LINKFLAGS,
640         AC_LIB_LINKFLAGS_BODY): Also set a LIB${NAME}_PREFIX variable. Needed
641         for GNOME libraries, for which the include files are installed in
642         subdirectories of $prefix/include.
643
644 2006-11-12  Bruno Haible  <bruno@clisp.org>
645
646         * m4/lib-link.m4: Require at least autoconf-2.54.
647         (AC_LIB_LINKFLAGS_BODY) [autoconf < 2.61]: Turn dots into the library
648         name to underscores for the --with option.
649
650 2006-11-13  Bruno Haible  <bruno@clisp.org>
651
652         * gnulib-tool (func_create_testdir): Set gl_source_base correctly in
653         the tests directory.
654         Reported by Ralf Wildenhues.
655
656 2006-11-13  Bruno Haible  <bruno@clisp.org>
657
658         * gnulib-tool (func_emit_initmacro_start): Also override AC_LIBSOURCES.
659         (func_emit_initmacro_end): Undo the override here.
660         (func_emit_initmacro_done): Emit a definition for gl_LIBSOURCES.
661         Works around the famous automake error in coreutils.
662
663 2006-11-13  Eric Blake  <ebb9@byu.net>
664
665         * lib/gl_anytree_oset.h (gl_tree_search_atleast): Return the
666         element, not its node.
667
668 2006-11-12  Bruno Haible  <bruno@clisp.org>
669
670         * gnulib-tool (func_emit_lib_Makefile_am): Replace occurrences of
671         '$(top_srcdir)/build-aux/', taking into account the real auxdir.
672
673 2006-11-12  Bruno Haible  <bruno@clisp.org>
674
675         * gnulib-tool: New option --local-symlink.
676         (func_usage): Document it.
677         (lsymbolic): New variable.
678         (func_import, func_create_testdir): If --symlink was not specified,
679         test whether --local-symlink was specified and the file comes from
680         the local_gnulib_dir.
681
682 2006-11-12  Bruno Haible  <bruno@clisp.org>
683
684         * gnulib-tool (func_ln): New function.
685         (func_ln_if_changed, func_create_testdir): Use it instead of "ln -s".
686
687 2006-11-12  Bruno Haible  <bruno@clisp.org>
688
689         Finish support for source files in subdirectories.
690         * gnulib-tool (func_emit_lib_Makefile_am): If some of the source files
691         are in subdirectories, set uses_subdirs and add 'subdir-objects' to
692         AUTOMAKE_OPTIONS.
693         (func_import, func_create_testdir): Invoke AM_PROG_CC_C_O in this case.
694
695 2006-11-12  Bruno Haible  <bruno@clisp.org>
696
697         * gnulib-tool (func_get_automake_snippet): Synthesize also an
698         EXTRA_lib_SOURCES augmentation.
699         (func_emit_lib_Makefile_am): Initialize EXTRA_lib..._SOURCES to empty.
700
701 2006-11-12  Jim Meyering  <jim@meyering.net>
702
703         Make fts (in FTS_CWDFD mode) more efficient by caching a few open
704         file descriptors.  This also averts a failure on systems with
705         native openat support when a traversed directory lacks "x" access.
706         * lib/fts_.h: Include "i-ring.h"
707         (struct FTS) [fts_fd_ring]: New member.
708         * lib/fts.c (RESTORE_INITIAL_CWD): Also call fd_ring_clear.
709         (FCHDIR): Add parentheses.
710         (fd_ring_check, fd_ring_print) [!FTS_DEBUG]: Define away.
711         (cwd_advance_fd): Add a 3rd parameter.  Adjust all callers.
712         When descending, rather than simply closing the previous
713         fts_cwd_fd value, push that file descriptor onto the ring.
714         (same_fd, fd_ring_print, fd_ring_check) [FTS_DEBUG]: New functions.
715         (fts_open): Initialize the new fd_ring member.
716         (fts_close): Clear the ring.
717         (fts_safe_changedir): When possible, use our new fd_ring to skip
718         the diropen and fstat and dev/ino comparison that would normally
719         accompany a virtual `chdir ("..")'.
720
721         * modules/fts (Depends-on): Add i-ring.
722         * modules/i-ring: New module.
723         * lib/i-ring.c, lib/i-ring.h, lib/i-ring-test.c: New files.
724         * m4/i-ring.m4: New file.
725
726 2006-11-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
727
728         * gnulib-tool (func_create_testdir): Fix replacement of
729         `build-aux' in configure.ac.  Run autotools in gltests
730         subdirectory.
731         (func_create_testdir, func_create_megatestdir, test): There is
732         no need for '--force' in most autotool invocations in a new
733         tree.  Actually fail the whole test if any of the tools, or the
734         configure or make stages fail.
735
736         Sync from Automake.
737         * build-aux/gnupload: Revert last change.  Add pointer to upload
738         instructions of the GNU Maintenance Instructions.
739         Suggestion by Karl Berry.
740
741 2006-11-10  Jim Meyering  <jim@meyering.net>
742
743         * lib/fts.c [FTS_DEBUG]: Don't try to print a pointer via %s.
744
745 2006-11-09  Paul Eggert  <eggert@cs.ucla.edu>
746
747         * lib/gettext.h (dgettext, dcgettext, ngettext) [! ENABLE_NLS]:
748         (dngettext, dcngettext, bindtextdomain) [! ENABLE_NLS]:
749         (bind_textdomain_codeset) [! ENABLE_NLS]:
750         Evaluate all the arguments.  That way, callers get compatible behavior
751         if the arguments have side effects.  Also, it avoids some GCC
752         diagnostics in some cases; Joel E. Denny reported problems when Bison
753         was configured with --enable-gcc-warnigs.
754
755 2006-11-10  Jim Meyering  <jim@meyering.net>
756
757         * m4/inline.m4 (gl_INLINE): Check with the compiler, not cpp, so that
758         relevant options in CFLAGS (like -O, -fno-inline) are taken into
759         account.
760
761 2006-11-10  Jim Meyering  <jim@meyering.net>
762
763         * modules/inline: New file/module.
764         * modules/xalloc (Files): Remove m4/inline.m4.
765         (Depends-on): Add inline, instead.
766         * modules/oset: Likewise.
767         * modules/list: Likewise.
768
769 2006-11-09  Paul Eggert  <eggert@cs.ucla.edu>
770
771         * lib/stdint_.h (uintmax_t): Fix typo: int64_t -> uint64_t.
772         Problem reported by Matthew Woehlke.
773
774 2006-11-09  Bruno Haible  <bruno@clisp.org>
775
776         * lib/tempname.c (gen_tempname): Remove variant that invokes
777         __gen_tempname.
778         * m4/tempname.m4 (gl_FUNC_GEN_TEMPNAME): Don't test for
779         __gen_tempname.
780
781 2006-11-08  Bruno Haible  <bruno@clisp.org>
782
783         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Set ac_cv_type_long_long_int
784         to 'yes' instead of 'cross-compiling'.
785
786 2006-11-08  Paul Eggert  <eggert@cs.ucla.edu>
787
788         * lib/quotearg.h (quotearg_free): New decl.
789         * lib/quotearg.c (quotearg_free): New function.
790         (slot0, nslots, slotvec0, slotvec):
791         Now file-scope so that quotearg_free can get at them.
792
793 2006-11-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
794
795         Sync from Automake.
796         * build-aux/gnupload: Add missing 'gnu' to example URL.
797         Report by Karl Berry.
798
799 2006-11-08  Bruno Haible  <bruno@clisp.org>
800
801         * m4/inline.m4 (gl_INLINE): Also test __NO_INLINE__.
802         Suggested by Paul Eggert.
803
804 2006-11-08  Jim Meyering  <jim@meyering.net>
805
806         * lib/fts.c [!_LGPL_PACKAGE]: Don't include fcntl--.h twice.
807         It's already included if !_LIBC.
808         (fts_safe_changedir): Add a comment.
809
810 2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
811
812         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Detect bug in
813         Tandem NonStop Kernel (OSS) cc -O circa 2004, reported by
814         Matthew Woehlke.
815
816         * lib/xalloc.h (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): Move
817         definitions up, to avoid colliding with change below.
818         (static_inline) [HAVE_INLINE]: New macro.
819         (xnmalloc, xnrealloc, x2nrealloc, xcharalloc):
820         Provide extern decls when !HAVE_INLINE.  Do not define unless
821         static_inline is defined, either by us or by xmalloc.c.  Use
822         static_inline rather than static inline.
823         (XCALLOC): Optimize sizeof(T) = 1 case.
824         * lib/xmalloc.c (static_inline) [!HAVE_INLINE]: New macro.
825
826 2006-11-07  Bruno Haible  <bruno@clisp.org>
827
828         * lib/xalloc.h (XNMALLOC): Restore optimization of sizeof(T) = 1 case.
829         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Require gl_INLINE instead of
830         AC_C_INLINE.
831         * modules/xalloc (Files): Add m4/inline.m4.
832
833 2006-11-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
834
835         * README: Fix typo.
836         * doc/gnulib.texi (Miscellaneous Notes): Likewise, rename...
837         (Miscellanous Notes): ...from this.
838
839 2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
840
841         * m4/flexmember.m4 (AC_C_FLEXIBLE_ARRAY_MEMBER):
842         Mention that offsetof should be used instead of sizeof.
843         From Bruno Haible.
844
845 2006-11-07  Bruno Haible  <bruno@clisp.org>
846
847         * lib/w32spawn.h (prepare_spawn): Use XNMALLOC instead of xmalloc.
848
849 2006-11-06  Paul Eggert  <eggert@cs.ucla.edu>
850
851         Simplify xmalloc expressions. Add overflow check in xmalloc arguments.
852         * lib/gl_anyavltree_list2.h (create_subtree_with_contents):
853         (gl_tree_create, gl_tree_add_first, gl_tree_add_last):
854         (gl_tree_add_before, gl_tree_add_after):
855         Use XMALLOC instead of xmalloc, and XCALLOC instead of xzalloc.
856         * lib/gl_anyhash_list2.h (hash_resize): Likewise.
857         * lib/gl_anylinked_list2.h (gl_linked_create_empty, gl_linked_create):
858         (gl_linked_add_first, gl_linked_add_last, gl_linked_add_before):
859         (gl_linked_add_after, gl_linked_add_at): Likewise.
860         * lib/gl_anyrbtree_list2.h (create_subtree_with_contents):
861         (gl_tree_create, gl_tree_add_first, gl_tree_add_last):
862         (gl_tree_add_before, gl_tree_add_after): Likewise.
863         * lib/gl_anytree_list2.h (gl_tree_create_empty): Likewise.
864         * lib/gl_anytree_oset.h (gl_tree_create_empty): Likewise.
865         * lib/gl_anytreehash_list1.h (add_to_bucket): Likewise.
866
867 2006-11-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
868
869         * lib/gl_oset.h: Use C comment style, not C++ comment style.
870
871 2006-11-06  Bruno Haible  <bruno@clisp.org>
872
873         * m4/inline.m4: New file.
874         * m4/gl_list.m4 (gl_LIST): Require gl_INLINE.
875         * modules/list (Files): Add m4/inline.m4.
876         * modules/oset (Files): Likewise.
877
878 2006-11-06  Paul Eggert  <eggert@cs.ucla.edu>
879
880         * lib/idcache.c: Include <stddef.h>, for offsetof.
881         (struct userid.name): Change from char * to a flexible array member.
882         All uses changed.
883         * modules/idcache (Depends-on): Add flexmember.
884
885         * MODULES.html.sh (Core language properties): New module flexmember.
886         * modules/flexmember, m4/flexmember.m4: New files.
887
888         * lib/xalloc.h (xnmalloc, xnrealloc, x2nrealloc): Now static
889         inline functions that are identical with the old xnmalloc_inline,
890         xnrealloc_inline, x2nrealloc_inline of lib/xmalloc.c.  This is so
891         that we can avoid some unnecessary integer multiplications and
892         divisions in the common case where the element size is known at
893         compile time.
894         (XNMALLOC) [HAVE_INLINE]: Remove special case, which is no longer
895         needed.
896         (xnboundedmalloc): Remove.
897         (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): Use lower-case letters for
898         arguments, for consistency with rest of this header.
899         (xcharalloc): Rewrite using XNMALLOC.
900         * lib/xmalloc.c (xnmalloc_inline, xnmalloc, xnrealloc_inline):
901         (xnrealloc, x2nrealloc_inline, x2nrealloc): Remove.  The *_inline
902         versions have been moved to lib/xalloc.h and renamed to be the
903         non-*_inline versions.
904         (xmalloc, xrealloc): Implement without reference to the xnmalloc
905         and xnrealloc functions, since those functions are now inline and
906         now call us.
907         (x2realloc): Invoke x2realloc, not x2realloc_inline, to accommodate
908         renaming described above.
909         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Remove AC_C_INLINE since
910         xmalloc.c no longer uses inline directly.  gl_PREREQ_XALLOC now
911         captures the dependency in AC_C_INLINE.
912
913         New module canonicalize-lgpl, proposed by Charles Wilson in
914         <http://lists.gnu.org/archive/html/bug-gnulib/2006-11/msg00020.html>
915         with a few small changes afterwards.
916         * MODULES.html.sh (File system functions): New module
917         canonicalize-lgpl.
918         * lib/canonicalize.h: Add comments for canonicalize_filename_mode
919         and canonicalize_file_name.
920         * lib/canonicalize-lgpl.c, m4/canonicalize-lgpl.m4:
921         * modules/canonicalize-lgpl: New files.
922
923 2006-11-05  Bruno Haible  <bruno@clisp.org>
924
925         * gnulib-tool (func_import, func_create_testdir): Create directories
926         also for files in subdirectories of lib/.
927
928 2006-11-05  Bruno Haible  <bruno@clisp.org>
929
930         * lib/gl_array_list.c (gl_array_iterator_next): Make pointer decrement
931         ANSI C compliant.
932
933 2006-11-03  Bruno Haible  <bruno@clisp.org>
934
935         Simplify xmalloc expressions. Add overflow check in xmalloc arguments.
936         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Require AC_C_INLINE.
937         * lib/xalloc.h (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): New macros.
938         (xnboundedmalloc): New inline function.
939         * lib/classpath.c (new_classpath): Use XNMALLOC instead of xmalloc.
940         * lib/clean-temp.c (create_temp_dir): Use XNMALLOC, XMALLOC instead of
941         xmalloc.
942         * lib/concatpath.c (concatenated_pathname): Use XNMALLOC instead of
943         xmalloc.
944         * lib/fatal-signal.c (at_fatal_signal): Use XNMALLOC instead of xmalloc.
945         * lib/findprog.c (find_in_path): Use XNMALLOC instead of xmalloc.
946         * lib/gl_array_list.c (gl_array_create_empty): Use XMALLOC instead of
947         xmalloc.
948         (gl_array_create): Use XNMALLOC, XMALLOC instead of xmalloc.
949         * lib/gl_array_oset.c (gl_array_create_empty): Use XNMALLOC instead of
950         xmalloc.
951         * lib/gl_avltree_oset.c (gl_tree_add_first, gl_tree_add_before,
952         gl_tree_add_after): Use XMALLOC instead of xmalloc.
953         * lib/gl_carray_list.c (gl_carray_create_empty): Use XMALLOC instead of
954         xmalloc.
955         (gl_carray_create): Use XNMALLOC, XMALLOC instead of xmalloc.
956         * lib/gl_rbtree_oset.c (gl_tree_add_first, gl_tree_add_before,
957         gl_tree_add_after): Use XMALLOC instead of xmalloc.
958         * lib/gl_sublist.c (gl_sublist_create): Use XMALLOC instead of xmalloc.
959         * lib/pagealign_alloc.c (new_memnode): Use XMALLOC instead of xmalloc.
960         * lib/sh-quote.c (shell_quote_argv): Use XNMALLOC instead of xmalloc.
961         * lib/xvasprintf.c (xstrcat): Use XNMALLOC instead of xmalloc.
962
963 2006-11-03  Bruno Haible  <bruno@clisp.org>
964
965         * lib/c-ctype.h [C++]: Define functions without name mangling.
966         * lib/fwriteerror.h [C++]: Likewise.
967         * lib/gcd.h [C++]: Likewise.
968         * lib/linebreak.h [C++]: Likewise.
969
970 2006-11-03  Paul Eggert  <eggert@cs.ucla.edu>
971
972         * lib/canonicalize.h: (canonicalize_mode_t, CAN_EXISTING):
973         (CAN_ALL_BUT_LAST, CAN_MISSING, canonicalize_filename_mode):
974         Define only if PROVIDE_CANONICALIZE_FILENAME_MODE is defined.
975         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME):
976         Check for functions and headers just once.
977         Check for declaration of canonicalize_file_name.
978         Define PROVIDE_CANONICALIZE_FILENAME_MODE.
979
980 2006-11-02  Charles Wilson  <cygwin@cwilson.fastmail.fm>
981
982         * gnulib-tool (func_import): Fix typo in actioncmd.
983
984 2006-11-02  Bruno Haible  <bruno@clisp.org>
985
986         * gnulib-tool (func_get_automake_snippet): Interpret a backslash-
987         newline sequence in the Makefile.am snippet as a space, like "make"
988         does.
989         Reported by Roger Persson <perrog@gmail.com>.
990
991 2006-11-01  Bruno Haible  <bruno@clisp.org>
992
993         * m4/strcase.m4 (gl_FUNC_STRNCASECMP): Check whether strncasecmp is
994         already declared in <string.h>.
995         * lib/strcase.h (strncasecmp): Don't declare it if yes.
996
997 2006-11-01  Bruno Haible  <bruno@clisp.org>
998
999         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Don't define strcasecmp here.
1000         * lib/strcase.h: Include <string.h>.
1001         (strcasecmp): Define to rpl_strcasecmp here.
1002
1003 2006-11-01  Bruno Haible  <bruno@clisp.org>
1004
1005         * lib/printf-parse.c (PRINTF_PARSE): Cast malloc/realloc results.
1006
1007 2006-11-01  Eric Blake  <ebb9@byu.net>
1008
1009         * lib/mkstemp-safer.c (mkstemp_safer): Allow C++ compilation.
1010
1011         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Allow C++ configuration.
1012
1013 2006-10-29  Bruno Haible  <bruno@clisp.org>
1014
1015         Make it compile in C++ mode.
1016         * lib/full-write.c (full_rw): Add a cast.
1017
1018 2006-11-01  Bruno Haible  <bruno@clisp.org>
1019
1020         * gnulib-tool (func_get_automake_snippet): Change sed_combine_lines to
1021         be POSIX compliant.
1022         Reported by Roger Persson <perrog@gmail.com>.
1023
1024 2006-11-01  Eric Blake  <ebb9@byu.net>
1025
1026         * lib/getopt_.h: Fix comments.
1027
1028 2006-10-31  Eric Blake  <ebb9@byu.net>
1029
1030         * modules/tmpdir (Depends-on): Add sys_stat.
1031         * modules/mkdtemp (Depends-on): Add tempname, drop unistd.
1032         * lib/mkdtemp.c (gen_tempname): Remove; tempname covers this.
1033         * lib/tmpdir.c (S_ISDIR): Simplify, thanks to sys_stat.
1034         * m4/mkdtemp.m4 (gl_PREREQ_MKDTEMP): Simplify, thanks to
1035         tempname.
1036
1037 2006-10-31  Paul Eggert  <eggert@cs.ucla.edu>
1038
1039         Avoid some C++ diagnostics reported by Bruno Haible.
1040         * lib/quotearg.c (clone_quoting_options): Use xmemdup rather than
1041         xmalloc.
1042         (quotearg_alloc): Use xcharalloc rather than xmalloc.
1043         (struct slotvec): Move to top level.
1044         (quotearg_n_options): Rewrite to avoid xmalloc.
1045         * lib/xalloc.h (xcharalloc): New function.
1046         * (xrealloc, xnrealloc, x2realloc, x2nrealloc, xmemdup):
1047         [defined __cplusplus]: Add function template that provides result
1048         type propagation.  This part of the change is from Bruno Haible.
1049
1050 2006-10-29  Bruno Haible  <bruno@clisp.org>
1051
1052         Make it compile in C++ mode.
1053         * lib/striconv.c (mem_cd_iconv): Cast malloc/realloc result.
1054         * lib/strnlen1.c (strnlen1): Cast memchr result.
1055         * lib/mbchar.h (mb_copy): Rename arguments to 'new_mbc', 'old_mbc'.
1056         * lib/clean-temp.c (string_equals, string_hash): Add casts.
1057         (create_temp_dir): Rename local variable 'template'.
1058         (compile_csharp_using_sscli): Add cast.
1059         * lib/fatal-signal.c (at_fatal_signal): Cast xmalloc result.
1060         * lib/findprog.c (find_in_path): Likewise.
1061         * lib/linebreak.c (mbs_width_linebreaks): Cast malloc result.
1062         * lib/wait-process.c (register_slave_subprocess): Likewise.
1063
1064 2006-10-22  Bruno Haible  <bruno@clisp.org>
1065
1066         * modules/tsearch: New file.
1067         * lib/tsearch.h: New file.
1068         * lib/tsearch.c: New file, from glibc-2.5 with small modifications.
1069         * m4/tsearch.m4: New file.
1070         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add tsearch.
1071
1072 2006-10-29  Eric Blake  <ebb9@byu.net>
1073
1074         * lib/arcfour.c: Assume config.h.
1075         * lib/arctwo.c: Likewise.
1076         * lib/base64.c: Likewise.
1077         * lib/check-version.c: Likewise.
1078         * lib/crc.c: Likewise.
1079         * lib/des.c: Likewise.
1080         * lib/gc-gnulib.c: Likewise.
1081         * lib/gc-libgcrypt.c: Likewise.
1082         * lib/gc-pbkdf2-sha1.c: Likewise.
1083         * lib/getaddrinfo.c: Likewise.
1084         * lib/getdelim.c: Likewise.
1085         * lib/getline.c: Likewise.
1086         * lib/hmac-md5.c: Likewise.
1087         * lib/hmac-sha1.c: Likewise.
1088         * lib/iconvme.c: Likewise.
1089         * lib/md2.c: Likewise.
1090         * lib/md4.c: Likewise.
1091         * lib/memxor.c: Likewise.
1092         * lib/read-file.c: Likewise.
1093         * lib/readline.c: Likewise.
1094         * lib/rijndael-alg-fst.c: Likewise.
1095         * lib/rijndael-api-fst.c: Likewise.
1096         * lib/xgetdomainname.c: Likewise.
1097
1098 2006-10-28  Eric Blake  <ebb9@byu.net>
1099
1100         * lib/xstrndup.c: Assume config.h.
1101
1102 2006-10-27  Paul Eggert  <eggert@cs.ucla.edu>
1103
1104         Move stat.h-substitute stuff from lib/stat-macros.h to lib/stat_.h.
1105         stat-macros.h is now for our own macros, whereas stat_h is for
1106         macros in the <sys/stat.h> name space.
1107         * lib/stat-macros.h: Remove copyright notice, as this file is now tiny.
1108         (STAT_MACROS_H): Remove.
1109         (S_IFMT, S_ISBLK, S_ISCHR, S_ISDIR, S_ISFIFO, S_ISLNK, S_ISNAM):
1110         (S_ISMPB, S_ISMPC, S_ISNWK, S_ISREG, S_ISSOCK, S_ISDOOR, S_ISPORT):
1111         (S_TYPEISMQ, S_TYPEISTMO, S_TYPEISSEM, S_TYPEISSHM, S_ISCTG, S_ISOFD):
1112         (S_ISOFL, S_ISWHT, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IRGRP):
1113         (S_IROTH, S_IWUSR, S_IWGRP, S_IWOTH, S_IXUSR, S_IXGRP, S_IXOTH):
1114         (S_IRWXU, S_IRWXG, S_IRWXO, S_IXUGO, S_IRWXUGO):
1115         Move these macros to ...
1116         * lib/stat_.h: here.  Don't include stat-macros.h.
1117         * lib/canonicalize.c: Don't include stat-macros.h.
1118         * lib/chown.c: Likewise.
1119         * lib/euidaccess.c: Likewise.
1120         * lib/file-type.c: Likewise.
1121         * lib/filemode.c: Likewise.
1122         * lib/glob.c: Likewise.
1123         * lib/isapipe.c: Likewise.
1124         * lib/lchown.c: Likewise.
1125         * lib/lstat.c: Likewise.
1126         * lib/mkdir-p.c: Likewise.
1127         * lib/rmdir.c: Likewise.
1128         * m4/lchown.m4 (gl_FUNC_LCHOWN): Don't require gl_STAT_MACROS.
1129         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Don't check for io.h
1130         unless mkdir isn't declared, to speed up 'configure'.
1131         Always create sys/stat.h, since it's unlikely any real sys/stat.h
1132         would define all the S_* symbols.
1133         * modules/canonicalize (Depends-on):
1134         Depend on sys_stat, not stat-macros.
1135         * modules/chown: Likewise.
1136         * modules/euidaccess: Likewise.
1137         * modules/filemode: Likewise.
1138         * modules/file-type: Likewise.
1139         * modules/glob: Likewise.
1140         * modules/isapipe: Likewise.
1141         * modules/lchown: Likewise.
1142         * modules/lstat: Likewise.
1143         * modules/mkancesdirs: Likewise.
1144         * modules/rmdir: Likewise.
1145         * modules/mkdir-p (Depends-on): Also depend on sys_stat.
1146         * modules/modechange: Likewise.
1147         * modules/stat-macros (Files): Remove m4/stat-macros.m4.
1148         (configure.ac): Remove gl_STAT_MACROS.
1149         * modules/sys_stat (Depends-on): Remove stat-macros.
1150
1151 2006-10-27  Bruno Haible  <bruno@clisp.org>
1152
1153         * m4/signed.m4: Remove file.
1154         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_ARGS_: Remove bh_C_SIGNED
1155         invocation.
1156         * modules/vasnprintf (Files): Remove m4/signed.m4.
1157
1158 2006-10-27  Bruno Haible  <bruno@clisp.org>
1159
1160         Update to GNU gettext 0.16.
1161         * modules/gettext (Files): Add m4/intl.m4, m4/intldir.m4. Remove
1162         m4/inttypes-h.m4, m4/signed.m4.
1163         * m4/gettext.m4: Update to GNU gettext 0.16.
1164         * m4/intl.m4: New file, from GNU gettext.
1165         * m4/intldir.m4: New file, from GNU gettext.
1166         * config/srclist.txt: Update
1167
1168 2006-10-27  Eric Blake  <ebb9@byu.net>
1169
1170         * MODULES.html.sh: Document tempname.
1171         * modules/mkstemp (Depends-on): Add tempname, and drop transitive
1172         dependencies.
1173         (Files): Move lib/tempname.c...
1174         * modules/tempname: ...to this new module.
1175         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Remove tempname checks.
1176         (gl_PREREQ_TEMPNAME): Move...
1177         * m4/tempname.m4: ...to this new file.
1178         * lib/mkstemp.c (includes) [!_LIBC]: Use tempname.h.
1179         * modules/sys_stat (Depends-on): Add stat-macros.
1180         * lib/stat_.h (includes): Pick up stat macros.
1181         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Replace <sys/stat.h>
1182         if stat macros are broken.
1183         * lib/tempname.c (includes): No need to include "stat-macros.h".
1184         (__gen_tempname) [!_LIBC]: Expose as gen_tempname.
1185         (direxists, __path_search) [!_LIBC]: Don't compile these in
1186         gnulib; the tmpdir module covers that.
1187         * lib/tempname.h: New file.
1188
1189 2006-10-26  Paul Eggert  <eggert@cs.ucla.edu>
1190
1191         * COPYING: Explain how gnulib-tool converts licence headers.
1192         Almost all wording by Eric Blake.
1193
1194 2006-10-25  Paul Eggert  <eggert@cs.ucla.edu>
1195
1196         * lib/mbchar.h (is_basic_table): Make read-only.
1197         * lib/mbchar.c (is_basic_table): Likewise.
1198         Reported by John Darrington.
1199
1200 2006-10-25  Bruno Haible  <bruno@clisp.org>
1201
1202         * lib/progname.h (set_program_name): Undefine before defining.
1203
1204 2006-10-25  Bruno Haible  <bruno@clisp.org>
1205
1206         * lib/gettext.h (_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS): Define to
1207         false for non-gcc C++ compilers.
1208         Reported by Nelson H. F. Beebe <beebe@math.utah.edu>.
1209
1210 2006-10-24  Bruno Haible  <bruno@clisp.org>
1211
1212         * lib/striconv.c (mem_cd_iconv, str_cd_iconv): Treat all non-GNU
1213         iconv implementations like Irix iconv.
1214
1215 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
1216
1217         * modules/vararrays: New file.
1218         * m4/vararrays.m4: New file, taken from diffutils.
1219         * MODULES.html.sh: New module vararrays.
1220
1221 2006-10-24  Karl Berry  <karl@gnu.org>
1222
1223         * doc/gnulib-intro.texi: --- instead of --; non-naive naive.
1224         Don't call GNU Unix.
1225
1226 2006-10-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1227
1228         * users.txt: Add Libtool.
1229
1230         Sync from Libtool:
1231
1232         2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
1233
1234         * lib/argz.c: Remove check for HAVE_CONFIG_H, to conform
1235         to gnulib's policy of including config.h unconditionally.
1236
1237 2006-10-24  Bruno Haible  <bruno@clisp.org>
1238
1239         * modules/wcwidth (Files): Add m4/wint_t.m4.
1240         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Require gt_TYPE_WINT_T.
1241         * lib/wcwidth.h (iswprint): Use 'int' if 'wint_t' is not defined.
1242
1243 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
1244
1245         * lib/getdate.y (yyerror): Make the arguments pointer-to-const,
1246         to pacify GCC with some -W flags enabled.  Problem reported by
1247         Bruno Haible.
1248
1249 2006-10-24  Jim Meyering  <jim@meyering.net>
1250
1251         * MODULES.html.sh: Remove uinttostr.  It's not a module.
1252         Reported by Karl Berry.
1253
1254 2006-10-23  Bruno Haible  <bruno@clisp.org>
1255
1256         * lib/fts.c (fts_build): Move variable declaration, for C89 compliance.
1257
1258 2006-10-24  Bruno Haible  <bruno@clisp.org>
1259
1260         * lib/gl_list.h: Use C comment style, not C++ comment style.
1261
1262 2006-10-23  Eric Blake  <ebb9@byu.net>
1263
1264         * lib/getaddrinfo.c (includes): Add missing include.
1265
1266 2006-10-23  Bruno Haible  <bruno@clisp.org>
1267             Paul Eggert  <eggert@cs.ucla.edu>
1268
1269         Ability to rename obstack_free.
1270         * lib/obstack.h (__obstack_free): New macro. Declare instead of
1271         obstack_free.
1272         (obstack_free): Invoke the __obstack_free macro.
1273         * lib/obstack.c (obstack_free): Use __obstack_free macro.
1274
1275 2006-10-23  Bruno Haible  <bruno@clisp.org>
1276             Paul Eggert  <eggert@cs.ucla.edu>
1277
1278         * lib/argp.h (argp_parse, __argp_parse): Comment out the identifiers
1279         __argc, __argv from the declaration. (They are defined as macros on
1280         mingw.)
1281
1282 2006-10-22  Bruno Haible  <bruno@clisp.org>
1283
1284         * doc/gnulib-intro.texi: New file.
1285         * doc/gnulib.texi: Include it.
1286
1287 2006-10-21  Bruno Haible  <bruno@clisp.org>
1288
1289         * doc/gnulib.texi: Split the chapter "Gnulib" into 3 chapters
1290         "Introduction", "Miscellanous Notes", "Particular Modules".
1291
1292 2006-10-21  Bruno Haible  <bruno@clisp.org>
1293
1294         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
1295         Change mostlyclean-local rule to avoid sh syntax error from bash
1296         versions 2.00..2.05 when $(MOSTLYCLEANDIRS) is empty.
1297
1298 2006-10-23  Jim Meyering  <jim@meyering.net>
1299
1300         * lib/getaddrinfo.c (getnameinfo): Use new lightweight uinttostr,
1301         in place of snprintf.
1302
1303         * modules/inttostr (Files): Add lib/uinttostr.c.
1304         * lib/uinttostr.c (inttostr): New file/function.
1305         * lib/inttostr.h (uinttostr): Declare.
1306         * m4/inttostr.m4: Add AC_LIBOBJ([uinttostr]).
1307         * MODULES.html.sh (Numeric conversion functions <stdlib.h>):
1308         Add uinttostr.
1309         * modules/getaddrinfo (Depends-on): Remove snprintf.  Add inttostr.
1310
1311 2006-10-21  Paul Eggert  <eggert@cs.ucla.edu>
1312
1313         * lib/canonicalize.c (ELOOP): Define if not already defined.
1314         Problem reported by Bruno Haible in
1315         <http://lists.gnu.org/archive/html/bug-gnulib/2006-10/msg00282.html>.
1316
1317 2006-10-21  Paul Eggert  <eggert@cs.ucla.edu>
1318
1319         * lib/stdint_.h [defined _AIX]: Don't include <sys/types.h>.
1320         Problem reported by Perry Smith and Ville Laurikari.
1321
1322         * lib/getndelim2.c (SSIZE_MAX): Use same defn that getdelim.c
1323         uses.
1324
1325 2006-10-19  Bruno Haible  <bruno@clisp.org>
1326
1327         * lib/getndelim2.c (SSIZE_MAX): Provide fallback definition. Needed
1328         for mingw.
1329
1330 2006-10-19  Bruno Haible  <bruno@clisp.org>
1331
1332         * lib/openat-priv.h (EOPNOTSUPP): Provide fallback definition.
1333         Needed for mingw.
1334
1335 2006-10-19  Bruno Haible  <bruno@clisp.org>
1336
1337         * m4/size_max.m4 (gl_SIZE_MAX): Cache the result.
1338
1339 2006-10-19  Bruno Haible  <bruno@clisp.org>
1340
1341         * m4/allocsa.m4 (gl_ALLOCSA): Invoke gl_FUNC_ALLOCA, don't AC_REQUIRE
1342         it.
1343
1344 2006-10-19  Bruno Haible  <bruno@clisp.org>
1345
1346         * m4/alloca.m4 (gl_FUNC_ALLOCA): Cache the result of the AC_EGREP_CPP
1347         invocation.
1348
1349 2006-10-19  Bruno Haible  <bruno@clisp.org>
1350
1351         * gnulib-tool (func_create_testdir): Don't include ftruncate and
1352         mountlist by default.
1353
1354 2006-10-16  Bruno Haible  <bruno@clisp.org>
1355
1356         * lib/c-strstr.c: Include c-strstr.h.
1357
1358 2006-10-18  Charles Wilson  <cygwin@cwilson.fastmail.fm>
1359
1360         * gnulib-tool: Don't clobber $sourcebase when $local_gnulib_dir ends
1361         in a slash.
1362
1363 2006-10-18  Bruno Haible  <bruno@clisp.org>
1364
1365         * lib/lock.h [C++]: Wrap definitions in extern "C".
1366
1367 2006-10-18  Bruno Haible  <bruno@clisp.org>
1368
1369         * gnulib-tool (func_emit_initmacro_end): Remove duplicates from the
1370         gl_LIBOBJS list.
1371
1372 2006-10-18  Bruno Haible  <bruno@clisp.org>
1373
1374         * lib/findprog.c (find_in_path): Avoid "gcc -Wwrite-strings" warning.
1375
1376 2006-10-19  Paul Eggert  <eggert@cs.ucla.edu>
1377
1378         * lib/xstrtol.h: Include gettext.h.
1379         (_STRTOL_ERROR): Wrap English-language formats inside gettext.
1380         Problem reported by Eric Blake.
1381         * modules/xstrtol (Depends-on): Add gettext-h.
1382
1383 2006-10-19  Paul Eggert  <eggert@cs.ucla.edu>  (tiny change)
1384
1385         * lib/strftime.c (advance): New macro.
1386         (add): Use it to avoid adding 0 to a FILE *.  FILE can be an
1387         incomplete type, so you can't add 0 to it.  Problem and patch
1388         reported by Eelco Dolstra for dietlibc.
1389
1390 2006-10-18  Jim Meyering  <jim@meyering.net>
1391
1392         * lib/readutmp.c (desirable_utmp_entry): Use "bool" as the
1393         type for a local, and rename it: s/up/user_proc/.
1394
1395 2006-10-18  Sergey Poznyakoff  <gray@gnu.org.ua>
1396
1397         * lib/readutmp.c (desirable_utmp_entry): Implement new flag:
1398         READ_UTMP_USER_PROCESS.
1399         * lib/readutmp.h (READ_UTMP_USER_PROCESS): New flag
1400
1401 2006-10-17  Paul Eggert  <eggert@cs.ucla.edu>
1402
1403         * lib/localcharset.c: Do not check HAVE_SETLOCALE.
1404         * m4/localcharset.m4 (gl_LOCALCHARSET): Don't check for setlocale.
1405
1406 2006-10-17  Eric Blake  <ebb9@byu.net>
1407
1408         * lib/sigprocmask.c (sigprocmask): Fix typo.
1409
1410         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Fix typo.
1411
1412         * modules/clean-temp (Makefile.am): Don't add to make output...
1413         (configure.ac): ...instead define SIGNAL_SAFE_LIST inside
1414         config.h.
1415
1416 2006-10-17  Bruno Haible  <bruno@clisp.org>
1417
1418         * lib/gettext.h (gettext, ngettext, pgettext, npgettext): Define
1419         differently if DEFAULT_TEXT_DOMAIN is set.
1420
1421 2006-10-16  Bruno Haible  <bruno@clisp.org>
1422
1423         * lib/clean-temp.c: Include fwriteerror.h.
1424
1425 2006-10-16  Bruno Haible  <bruno@clisp.org>
1426
1427         * getndelim2.m4 (gl_GETNDELIM2): Remove 2003-10-23 hack.
1428
1429 2006-10-16  Bruno Haible  <bruno@clisp.org>
1430
1431         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Also test for sigset_t.
1432         * lib/sigprocmask.h: Include <sys/types.h>.
1433         (sigset_t): Use the system's definition if present.
1434
1435 2006-10-17  Eric Blake  <ebb9@byu.net>
1436
1437         * lib/xvasprintf.c (includes): Assume config.h.
1438         * lib/xasprintf.c (includes): Likewise.
1439
1440 2006-10-16  Paul Eggert  <eggert@cs.ucla.edu>
1441
1442         * lib/fsusage.c (PROPAGATE_ALL_ONES): Don't assume uintmax_t is
1443         at least as wide as intmax_t.
1444
1445 2006-10-16  Alexandre Duret-Lutz  <adl@gnu.org>
1446
1447         (Imported from Automake.)
1448         * build-aux/gnupload: Update to version 1.1 of directive file.
1449
1450 2006-10-16  Eric Blake  <ebb9@byu.net>
1451
1452         * modules/configmake (Makefile.am): Add pkglibexecdir support, to
1453         match Automake 1.10a.
1454
1455 2006-10-14  Bruno Haible  <bruno@clisp.org>
1456
1457         * modules/sigprocmask: New file.
1458         * lib/sigprocmask.h: New file.
1459         * lib/sigprocmask.c: New file.
1460         * m4/signalblocking.m4 (gl_SIGNALBLOCKING): Renamed from
1461         gt_SIGNALBLOCKING. When not defining HAVE_POSIX_SIGNALBLOCKING,
1462         request sigprocmask.o.
1463         (gl_PREREQ_SIGPROCMASK): New macro.
1464         * modules/fatal-signal (Files): Remove m4/signalblocking.m4.
1465         (Depends-on): Add sigprocmask.
1466         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Don't require
1467         gt_SIGNALBLOCKING. Test for 'raise' only once.
1468         * lib/fatal-signal.c: Include sigprocmask.h.
1469         (fatal_signal_set, init_fatal_signal_set, block_fatal_signals,
1470         unblock_fatal_signals): Define always.
1471         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
1472         sigprocmask.
1473
1474 2006-10-14  Paul Eggert  <eggert@cs.ucla.edu>
1475
1476         Sync from Automake.
1477         * build-aux/install-sh (posix_mkdir): Reject FreeBSD 6.1 mkdir -p -m,
1478         which incorrectly sets the mode of an existing destination
1479         directory.  In some cases the unpatched install-sh could do the
1480         equivalent of "chmod 777 /" or "chmod 0 /" on a buggy FreeBSD
1481         system.  We hope this is rare in practice, but it's clearly worth
1482         fixing.  Problem reported by Alex Unleashed in
1483         <http://lists.gnu.org/archive/html/bug-autoconf/2006-10/msg00012.html>.
1484         Also, don't bother to check for -m bugs unless we're using -m;
1485         suggested by Stepan Kasal.
1486
1487 2006-10-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1488
1489         Sync from Automake.
1490         * build-aux/depcomp (gcc3): Put dependency extraction flags before the
1491         `-c' flag, so they appear at the same position as in %FASTDEP%
1492         mode in depend2.am.  Fixes build failure for FreeBSD's c89,
1493         which ignores unknown options only after the first non-option.
1494         Bug report against M4 by Nelson H. F. Beebe.
1495
1496 2006-10-13  Jim Meyering  <jim@meyering.net>
1497
1498         Fix a bug in yesterday's change.
1499         * lib/fts.c (fts_open): When using FTS_XDEV|FTS_NOSTAT,
1500         p->fts_statp->st_dev would be used uninitialized.
1501         Ensures that we always call fts_stat on the very first entry.
1502         Miklos Szeredi reported that find -xdev stopped working.
1503
1504 2006-10-12  Bruno Haible  <bruno@clisp.org>
1505
1506         * gnulib-tool (func_get_automake_snippet): Append an automatically
1507         computed EXTRA_DIST augmentation.
1508         * modules/acl (Makefile.am): Remove EXTRA_DIST augmentation.
1509         * modules/alloca-opt (Makefile.am): Likewise.
1510         * modules/allocsa (Makefile.am): Likewise.
1511         * modules/arcfour (Makefile.am): Likewise.
1512         * modules/arctwo (Makefile.am): Likewise.
1513         * modules/argmatch (Makefile.am): Likewise.
1514         * modules/argz (Makefile.am): Likewise.
1515         * modules/atexit (Makefile.am): Likewise.
1516         * modules/backupfile (Makefile.am): Likewise.
1517         * modules/byteswap (Makefile.am): Likewise.
1518         * modules/c-strtod (Makefile.am): Likewise.
1519         * modules/c-strtold (Makefile.am): Likewise.
1520         * modules/calloc (Makefile.am): Likewise.
1521         * modules/canon-host (Makefile.am): Likewise.
1522         * modules/canonicalize (Makefile.am): Likewise.
1523         * modules/chdir-long (Makefile.am): Likewise.
1524         * modules/chdir-safer (Makefile.am): Likewise.
1525         * modules/check-version (Makefile.am): Likewise.
1526         * modules/chown (Makefile.am): Likewise.
1527         * modules/cloexec (Makefile.am): Likewise.
1528         * modules/close-stream (Makefile.am): Likewise.
1529         * modules/closeout (Makefile.am): Likewise.
1530         * modules/crc (Makefile.am): Likewise.
1531         * modules/csharpexec (Makefile.am): Likewise.
1532         * modules/cycle-check (Makefile.am): Likewise.
1533         * modules/des (Makefile.am): Likewise.
1534         * modules/dev-ino (Makefile.am): Likewise.
1535         * modules/dirfd (Makefile.am): Likewise.
1536         * modules/dirname (Makefile.am): Likewise.
1537         * modules/dup2 (Makefile.am): Likewise.
1538         * modules/eealloc (Makefile.am): Likewise.
1539         * modules/error (Makefile.am): Likewise.
1540         * modules/euidaccess (Makefile.am): Likewise.
1541         * modules/exclude (Makefile.am): Likewise.
1542         * modules/exitfail (Makefile.am): Likewise.
1543         * modules/fcntl-safer (Makefile.am): Likewise.
1544         * modules/fcntl (Makefile.am): Likewise.
1545         * modules/file-type (Makefile.am): Likewise.
1546         * modules/fileblocks (Makefile.am): Likewise.
1547         * modules/filemode (Makefile.am): Likewise.
1548         * modules/filenamecat (Makefile.am): Likewise.
1549         * modules/fnmatch (Makefile.am): Likewise.
1550         * modules/fopen-safer (Makefile.am): Likewise.
1551         * modules/fpending (Makefile.am): Likewise.
1552         * modules/fprintftime (Makefile.am): Likewise.
1553         * modules/free (Makefile.am): Likewise.
1554         * modules/fsusage (Makefile.am): Likewise.
1555         * modules/ftruncate (Makefile.am): Likewise.
1556         * modules/fts (Makefile.am): Likewise.
1557         * modules/gc-arcfour (Makefile.am): Likewise.
1558         * modules/gc-des (Makefile.am): Likewise.
1559         * modules/gc-hmac-md5 (Makefile.am): Likewise.
1560         * modules/gc-hmac-sha1 (Makefile.am): Likewise.
1561         * modules/gc-md4 (Makefile.am): Likewise.
1562         * modules/gc-pbkdf2-sha1 (Makefile.am): Likewise.
1563         * modules/gc-sha1 (Makefile.am): Likewise.
1564         * modules/gc (Makefile.am): Likewise.
1565         * modules/getaddrinfo (Makefile.am): Likewise.
1566         * modules/getcwd (Makefile.am): Likewise.
1567         * modules/getdelim (Makefile.am): Likewise.
1568         * modules/getdomainname (Makefile.am): Likewise.
1569         * modules/getgroups (Makefile.am): Likewise.
1570         * modules/gethostname (Makefile.am): Likewise.
1571         * modules/gethrxtime (Makefile.am): Likewise.
1572         * modules/getline (Makefile.am): Likewise.
1573         * modules/getloadavg (Makefile.am): Likewise.
1574         * modules/getlogin_r (Makefile.am): Likewise.
1575         * modules/getndelim2 (Makefile.am): Likewise.
1576         * modules/getopt (Makefile.am): Likewise.
1577         * modules/getpagesize (Makefile.am): Likewise.
1578         * modules/getpass-gnu (Makefile.am): Likewise.
1579         * modules/getpass (Makefile.am): Likewise.
1580         * modules/getsubopt (Makefile.am): Likewise.
1581         * modules/gettime (Makefile.am): Likewise.
1582         * modules/gettimeofday (Makefile.am): Likewise.
1583         * modules/getugroups (Makefile.am): Likewise.
1584         * modules/getusershell (Makefile.am): Likewise.
1585         * modules/glob (Makefile.am): Likewise.
1586         * modules/group-member (Makefile.am): Likewise.
1587         * modules/hard-locale (Makefile.am): Likewise.
1588         * modules/hash (Makefile.am): Likewise.
1589         * modules/hmac-md5 (Makefile.am): Likewise.
1590         * modules/hmac-sha1 (Makefile.am): Likewise.
1591         * modules/human (Makefile.am): Likewise.
1592         * modules/idcache (Makefile.am): Likewise.
1593         * modules/imaxabs (Makefile.am): Likewise.
1594         * modules/imaxdiv (Makefile.am): Likewise.
1595         * modules/inet_ntop (Makefile.am): Likewise.
1596         * modules/inet_pton (Makefile.am): Likewise.
1597         * modules/intprops (Makefile.am): Likewise.
1598         * modules/inttostr (Makefile.am): Likewise.
1599         * modules/inttypes (Makefile.am): Likewise.
1600         * modules/isapipe (Makefile.am): Likewise.
1601         * modules/javaversion (Makefile.am): Likewise.
1602         * modules/lchmod (Makefile.am): Likewise.
1603         * modules/lchown (Makefile.am): Likewise.
1604         * modules/localcharset (Makefile.am): Likewise.
1605         * modules/long-options (Makefile.am): Likewise.
1606         * modules/lstat (Makefile.am): Likewise.
1607         * modules/malloc (Makefile.am): Likewise.
1608         * modules/mathl (Makefile.am): Likewise.
1609         * modules/mbchar (Makefile.am): Likewise.
1610         * modules/md2 (Makefile.am): Likewise.
1611         * modules/md4 (Makefile.am): Likewise.
1612         * modules/md5 (Makefile.am): Likewise.
1613         * modules/memcasecmp (Makefile.am): Likewise.
1614         * modules/memchr (Makefile.am): Likewise.
1615         * modules/memcmp (Makefile.am): Likewise.
1616         * modules/memcoll (Makefile.am): Likewise.
1617         * modules/memcpy (Makefile.am): Likewise.
1618         * modules/memmem (Makefile.am): Likewise.
1619         * modules/memmove (Makefile.am): Likewise.
1620         * modules/mempcpy (Makefile.am): Likewise.
1621         * modules/memrchr (Makefile.am): Likewise.
1622         * modules/memset (Makefile.am): Likewise.
1623         * modules/memxor (Makefile.am): Likewise.
1624         * modules/mkancesdirs (Makefile.am): Likewise.
1625         * modules/mkdir-p (Makefile.am): Likewise.
1626         * modules/mkdir (Makefile.am): Likewise.
1627         * modules/mkdtemp (Makefile.am): Likewise.
1628         * modules/mkstemp (Makefile.am): Likewise.
1629         * modules/mktime (Makefile.am): Likewise.
1630         * modules/modechange (Makefile.am): Likewise.
1631         * modules/mountlist (Makefile.am): Likewise.
1632         * modules/nanosleep (Makefile.am): Likewise.
1633         * modules/obstack (Makefile.am): Likewise.
1634         * modules/openat (Makefile.am): Likewise.
1635         * modules/pagealign_alloc (Makefile.am): Likewise.
1636         * modules/pathmax (Makefile.am): Likewise.
1637         * modules/physmem (Makefile.am): Likewise.
1638         * modules/poll (Makefile.am): Likewise.
1639         * modules/posixtm (Makefile.am): Likewise.
1640         * modules/posixver (Makefile.am): Likewise.
1641         * modules/putenv (Makefile.am): Likewise.
1642         * modules/quote (Makefile.am): Likewise.
1643         * modules/quotearg (Makefile.am): Likewise.
1644         * modules/raise (Makefile.am): Likewise.
1645         * modules/read-file (Makefile.am): Likewise.
1646         * modules/readline (Makefile.am): Likewise.
1647         * modules/readlink (Makefile.am): Likewise.
1648         * modules/readtokens (Makefile.am): Likewise.
1649         * modules/readutmp (Makefile.am): Likewise.
1650         * modules/realloc (Makefile.am): Likewise.
1651         * modules/regex (Makefile.am): Likewise.
1652         * modules/rename-dest-slash (Makefile.am): Likewise.
1653         * modules/rename (Makefile.am): Likewise.
1654         * modules/rijndael (Makefile.am): Likewise.
1655         * modules/rmdir (Makefile.am): Likewise.
1656         * modules/rpmatch (Makefile.am): Likewise.
1657         * modules/safe-read (Makefile.am): Likewise.
1658         * modules/safe-write (Makefile.am): Likewise.
1659         * modules/same-inode (Makefile.am): Likewise.
1660         * modules/same (Makefile.am): Likewise.
1661         * modules/save-cwd (Makefile.am): Likewise.
1662         * modules/savedir (Makefile.am): Likewise.
1663         * modules/setenv (Makefile.am): Likewise.
1664         * modules/settime (Makefile.am): Likewise.
1665         * modules/sha1 (Makefile.am): Likewise.
1666         * modules/sig2str (Makefile.am): Likewise.
1667         * modules/snprintf (Makefile.am): Likewise.
1668         * modules/stat-macros (Makefile.am): Likewise.
1669         * modules/stat-time (Makefile.am): Likewise.
1670         * modules/stdbool (Makefile.am): Likewise.
1671         * modules/stdint (Makefile.am): Likewise.
1672         * modules/stdlib-safer (Makefile.am): Likewise.
1673         * modules/stpcpy (Makefile.am): Likewise.
1674         * modules/stpncpy (Makefile.am): Likewise.
1675         * modules/strcase (Makefile.am): Likewise.
1676         * modules/strcasestr (Makefile.am): Likewise.
1677         * modules/strchrnul (Makefile.am): Likewise.
1678         * modules/strcspn (Makefile.am): Likewise.
1679         * modules/strdup (Makefile.am): Likewise.
1680         * modules/strerror (Makefile.am): Likewise.
1681         * modules/strftime (Makefile.am): Likewise.
1682         * modules/strndup (Makefile.am): Likewise.
1683         * modules/strnlen (Makefile.am): Likewise.
1684         * modules/strpbrk (Makefile.am): Likewise.
1685         * modules/strsep (Makefile.am): Likewise.
1686         * modules/strstr (Makefile.am): Likewise.
1687         * modules/strtod (Makefile.am): Likewise.
1688         * modules/strtoimax (Makefile.am): Likewise.
1689         * modules/strtok_r (Makefile.am): Likewise.
1690         * modules/strtol (Makefile.am): Likewise.
1691         * modules/strtoll (Makefile.am): Likewise.
1692         * modules/strtoul (Makefile.am): Likewise.
1693         * modules/strtoull (Makefile.am): Likewise.
1694         * modules/strtoumax (Makefile.am): Likewise.
1695         * modules/strverscmp (Makefile.am): Likewise.
1696         * modules/sys_socket (Makefile.am): Likewise.
1697         * modules/sys_stat (Makefile.am): Likewise.
1698         * modules/sysexits (Makefile.am): Likewise.
1699         * modules/time_r (Makefile.am): Likewise.
1700         * modules/timegm (Makefile.am): Likewise.
1701         * modules/timespec (Makefile.am): Likewise.
1702         * modules/tmpfile-safer (Makefile.am): Likewise.
1703         * modules/trim (Makefile.am): Likewise.
1704         * modules/unistd-safer (Makefile.am): Likewise.
1705         * modules/unlinkdir (Makefile.am): Likewise.
1706         * modules/unlocked-io (Makefile.am): Likewise.
1707         * modules/userspec (Makefile.am): Likewise.
1708         * modules/utime (Makefile.am): Likewise.
1709         * modules/utimecmp (Makefile.am): Likewise.
1710         * modules/utimens (Makefile.am): Likewise.
1711         * modules/vasnprintf (Makefile.am): Likewise.
1712         * modules/vasprintf (Makefile.am): Likewise.
1713         * modules/vsnprintf (Makefile.am): Likewise.
1714         * modules/xalloc (Makefile.am): Likewise.
1715         * modules/xgetcwd (Makefile.am): Likewise.
1716         * modules/xnanosleep (Makefile.am): Likewise.
1717         * modules/xreadlink (Makefile.am): Likewise.
1718         * modules/xstrtod (Makefile.am): Likewise.
1719         * modules/xstrtol (Makefile.am): Likewise.
1720         * modules/xstrtold (Makefile.am): Likewise.
1721         * modules/yesno (Makefile.am): Likewise.
1722         * modules/getdate (Makefile.am): Don't add getdate.h to EXTRA_DIST.
1723
1724 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
1725
1726         * modules/error (Makefile.am): Distribute files through
1727         EXTRA_DIST, not lib_SOURCES.
1728
1729 2006-10-12  Eric Blake  <ebb9@byu.net>
1730
1731         * modules/error (Makefile.am): Distribute files in /lib.
1732         * modules/obstack (Makefile.am): Likewise.
1733
1734 2006-10-12  Bruno Haible  <bruno@clisp.org>
1735
1736         * modules/acl (Makefile.am): Distribute all files in lib/ through
1737         EXTRA_DIST.
1738         * modules/arcfour (Makefile.am): Likewise.
1739         * modules/arctwo (Makefile.am): Likewise.
1740         * modules/argmatch (Makefile.am): Likewise.
1741         * modules/argz (Makefile.am): Likewise.
1742         * modules/atexit (Makefile.am): Likewise.
1743         * modules/backupfile (Makefile.am): Likewise.
1744         * modules/c-strtod (Makefile.am): Likewise.
1745         * modules/c-strtold (Makefile.am): Likewise.
1746         * modules/calloc (Makefile.am): Likewise.
1747         * modules/canon-host (Makefile.am): Likewise.
1748         * modules/canonicalize (Makefile.am): Likewise.
1749         * modules/chdir-long (Makefile.am): Likewise.
1750         * modules/chdir-safer (Makefile.am): Likewise.
1751         * modules/check-version (Makefile.am): Likewise.
1752         * modules/chown (Makefile.am): Likewise.
1753         * modules/cloexec (Makefile.am): Likewise.
1754         * modules/close-stream (Makefile.am): Likewise.
1755         * modules/closeout (Makefile.am): Likewise.
1756         * modules/crc (Makefile.am): Likewise.
1757         * modules/cycle-check (Makefile.am): Likewise.
1758         * modules/des (Makefile.am): Likewise.
1759         * modules/dirfd (Makefile.am): Likewise.
1760         * modules/dirname (Makefile.am): Likewise.
1761         * modules/dup2 (Makefile.am): Likewise.
1762         * modules/euidaccess (Makefile.am): Likewise.
1763         * modules/exclude (Makefile.am): Likewise.
1764         * modules/exitfail (Makefile.am): Likewise.
1765         * modules/fcntl-safer (Makefile.am): Likewise.
1766         * modules/file-type (Makefile.am): Likewise.
1767         * modules/fileblocks (Makefile.am): Likewise.
1768         * modules/filemode (Makefile.am): Likewise.
1769         * modules/filenamecat (Makefile.am): Likewise.
1770         * modules/fnmatch (Makefile.am): Likewise.
1771         * modules/fopen-safer (Makefile.am): Likewise.
1772         * modules/fpending (Makefile.am): Likewise.
1773         * modules/fprintftime (Makefile.am): Likewise.
1774         * modules/free (Makefile.am): Likewise.
1775         * modules/fsusage (Makefile.am): Likewise.
1776         * modules/ftruncate (Makefile.am): Likewise.
1777         * modules/fts (Makefile.am): Likewise.
1778         * modules/gc (Makefile.am): Likewise.
1779         * modules/gc-pbkdf2-sha1 (Makefile.am): Likewise.
1780         * modules/getaddrinfo (Makefile.am): Likewise.
1781         * modules/getcwd (Makefile.am): Likewise.
1782         * modules/getdelim (Makefile.am): Likewise.
1783         * modules/getdomainname (Makefile.am): Likewise.
1784         * modules/getgroups (Makefile.am): Likewise.
1785         * modules/gethostname (Makefile.am): Likewise.
1786         * modules/gethrxtime (Makefile.am): Likewise.
1787         * modules/getline (Makefile.am): Likewise.
1788         * modules/getloadavg (Makefile.am): Likewise.
1789         * modules/getlogin_r (Makefile.am): Likewise.
1790         * modules/getopt (Makefile.am): Likewise.
1791         * modules/getpass (Makefile.am): Likewise.
1792         * modules/getpass-gnu (Makefile.am): Likewise.
1793         * modules/getsubopt (Makefile.am): Likewise.
1794         * modules/gettime (Makefile.am): Likewise.
1795         * modules/gettimeofday (Makefile.am): Likewise.
1796         * modules/getugroups (Makefile.am): Likewise.
1797         * modules/getusershell (Makefile.am): Likewise.
1798         * modules/glob (Makefile.am): Likewise.
1799         * modules/group-member (Makefile.am): Likewise.
1800         * modules/hard-locale (Makefile.am): Likewise.
1801         * modules/hash (Makefile.am): Likewise.
1802         * modules/hmac-md5 (Makefile.am): Likewise.
1803         * modules/hmac-sha1 (Makefile.am): Likewise.
1804         * modules/human (Makefile.am): Likewise.
1805         * modules/idcache (Makefile.am): Likewise.
1806         * modules/imaxabs (Makefile.am): Likewise.
1807         * modules/imaxdiv (Makefile.am): Likewise.
1808         * modules/inet_ntop (Makefile.am): Likewise.
1809         * modules/inet_pton (Makefile.am): Likewise.
1810         * modules/inttostr (Makefile.am): Likewise.
1811         * modules/isapipe (Makefile.am): Likewise.
1812         * modules/lchown (Makefile.am): Likewise.
1813         * modules/long-options (Makefile.am): Likewise.
1814         * modules/lstat (Makefile.am): Likewise.
1815         * modules/malloc (Makefile.am): Likewise.
1816         * modules/mathl (Makefile.am): Likewise.
1817         * modules/mbchar (Makefile.am): Likewise.
1818         * modules/md2 (Makefile.am): Likewise.
1819         * modules/md4 (Makefile.am): Likewise.
1820         * modules/md5 (Makefile.am): Likewise.
1821         * modules/memcasecmp (Makefile.am): Likewise.
1822         * modules/memchr (Makefile.am): Likewise.
1823         * modules/memcmp (Makefile.am): Likewise.
1824         * modules/memcoll (Makefile.am): Likewise.
1825         * modules/memcpy (Makefile.am): Likewise.
1826         * modules/memmem (Makefile.am): Likewise.
1827         * modules/memmove (Makefile.am): Likewise.
1828         * modules/mempcpy (Makefile.am): Likewise.
1829         * modules/memrchr (Makefile.am): Likewise.
1830         * modules/memset (Makefile.am): Likewise.
1831         * modules/memxor (Makefile.am): Likewise.
1832         * modules/mkancesdirs (Makefile.am): Likewise.
1833         * modules/mkdir (Makefile.am): Likewise.
1834         * modules/mkdir-p (Makefile.am): Likewise.
1835         * modules/mkdtemp (Makefile.am): Likewise.
1836         * modules/mkstemp (Makefile.am): Likewise.
1837         * modules/mktime (Makefile.am): Likewise.
1838         * modules/modechange (Makefile.am): Likewise.
1839         * modules/mountlist (Makefile.am): Likewise.
1840         * modules/nanosleep (Makefile.am): Likewise.
1841         * modules/openat (Makefile.am): Likewise.
1842         * modules/pagealign_alloc (Makefile.am): Likewise.
1843         * modules/physmem (Makefile.am): Likewise.
1844         * modules/poll (Makefile.am): Likewise.
1845         * modules/posixtm (Makefile.am): Likewise.
1846         * modules/posixver (Makefile.am): Likewise.
1847         * modules/putenv (Makefile.am): Likewise.
1848         * modules/quote (Makefile.am): Likewise.
1849         * modules/quotearg (Makefile.am): Likewise.
1850         * modules/raise (Makefile.am): Likewise.
1851         * modules/read-file (Makefile.am): Likewise.
1852         * modules/readline (Makefile.am): Likewise.
1853         * modules/readlink (Makefile.am): Likewise.
1854         * modules/readtokens (Makefile.am): Likewise.
1855         * modules/readutmp (Makefile.am): Likewise.
1856         * modules/realloc (Makefile.am): Likewise.
1857         * modules/regex (Makefile.am): Likewise.
1858         * modules/rename (Makefile.am): Likewise.
1859         * modules/rename-dest-slash (Makefile.am): Likewise.
1860         * modules/rijndael (Makefile.am): Likewise.
1861         * modules/rmdir (Makefile.am): Likewise.
1862         * modules/rpmatch (Makefile.am): Likewise.
1863         * modules/safe-read (Makefile.am): Likewise.
1864         * modules/safe-write (Makefile.am): Likewise.
1865         * modules/same (Makefile.am): Likewise.
1866         * modules/save-cwd (Makefile.am): Likewise.
1867         * modules/savedir (Makefile.am): Likewise.
1868         * modules/setenv (Makefile.am): Likewise.
1869         * modules/settime (Makefile.am): Likewise.
1870         * modules/sha1 (Makefile.am): Likewise.
1871         * modules/sig2str (Makefile.am): Likewise.
1872         * modules/snprintf (Makefile.am): Likewise.
1873         * modules/stdlib-safer (Makefile.am): Likewise.
1874         * modules/stpcpy (Makefile.am): Likewise.
1875         * modules/stpncpy (Makefile.am): Likewise.
1876         * modules/strcase (Makefile.am): Likewise.
1877         * modules/strcasestr (Makefile.am): Likewise.
1878         * modules/strchrnul (Makefile.am): Likewise.
1879         * modules/strcspn (Makefile.am): Likewise.
1880         * modules/strdup (Makefile.am): Likewise.
1881         * modules/strerror (Makefile.am): Likewise.
1882         * modules/strftime (Makefile.am): Likewise.
1883         * modules/strndup (Makefile.am): Likewise.
1884         * modules/strnlen (Makefile.am): Likewise.
1885         * modules/strpbrk (Makefile.am): Likewise.
1886         * modules/strsep (Makefile.am): Likewise.
1887         * modules/strstr (Makefile.am): Likewise.
1888         * modules/strtod (Makefile.am): Likewise.
1889         * modules/strtoimax (Makefile.am): Likewise.
1890         * modules/strtok_r (Makefile.am): Likewise.
1891         * modules/strtol (Makefile.am): Likewise.
1892         * modules/strtoll (Makefile.am): Likewise.
1893         * modules/strtoul (Makefile.am): Likewise.
1894         * modules/strtoull (Makefile.am): Likewise.
1895         * modules/strtoumax (Makefile.am): Likewise.
1896         * modules/strverscmp (Makefile.am): Likewise.
1897         * modules/time_r (Makefile.am): Likewise.
1898         * modules/timegm (Makefile.am): Likewise.
1899         * modules/tmpfile-safer (Makefile.am): Likewise.
1900         * modules/unistd-safer (Makefile.am): Likewise.
1901         * modules/unlinkdir (Makefile.am): Likewise.
1902         * modules/userspec (Makefile.am): Likewise.
1903         * modules/utime (Makefile.am): Likewise.
1904         * modules/utimecmp (Makefile.am): Likewise.
1905         * modules/utimens (Makefile.am): Likewise.
1906         * modules/vasnprintf (Makefile.am): Likewise.
1907         * modules/vasprintf (Makefile.am): Likewise.
1908         * modules/vsnprintf (Makefile.am): Likewise.
1909         * modules/xalloc (Makefile.am): Likewise.
1910         * modules/xgetcwd (Makefile.am): Likewise.
1911         * modules/xnanosleep (Makefile.am): Likewise.
1912         * modules/xreadlink (Makefile.am): Likewise.
1913         * modules/xstrtod (Makefile.am): Likewise.
1914         * modules/xstrtol (Makefile.am): Likewise.
1915         * modules/xstrtold (Makefile.am): Likewise.
1916         * modules/yesno (Makefile.am): Likewise.
1917
1918 2006-10-12  Jim Meyering  <jim@meyering.net>
1919
1920         * m4/getloadavg.m4: Revert the change below.
1921
1922         * m4/getloadavg.m4 (gl_GETLOADAVG): Test for the existence of
1923         lib/getloadavg.c using "ls -L", not "test -f".  The latter would
1924         fail with a symlink, which is what coreutils' ./bootstrap now
1925         creates by default.
1926
1927 2006-10-12  Bruno Haible  <bruno@clisp.org>
1928
1929         * lib/inttypes_.h (_LONG_LONG_FORMAT_PREFIX): Don't define for MSVC or
1930         mingw.
1931         (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX, _SCNu64_PREFIX): Handle
1932         MSVC and mingw explicitly.
1933
1934 2006-10-11  Simon Josefsson  <jas@extundo.com>
1935             Bruno Haible  <bruno@clisp.org>
1936
1937         Add support for multiple gnulib-tool invocations in the scope of a
1938         single configure.ac file.
1939         * gnulib-tool (func_emit_lib_Makefile_am): In the _LIBADD variable,
1940         use a private [LT]LIBOBJS variant. Define a _DEPENDENCIES variable
1941         with the same contents as the _LIBADD variable.
1942         (func_emit_initmacro_start, func_emit_initmacro_end,
1943         func_emit_initmacro_done): New functions.
1944         (func_import, func_create_testdir): Invoke them. Allow the identifiers
1945         gl_LIBOBJS and gl_LTLIBOBJS.
1946
1947 2006-10-11  Bruno Haible  <bruno@clisp.org>
1948
1949         * gnulib-tool (GETTEXTPATH, AUTOHEADER, AUTOPOINT): New variables.
1950         (func_create_testdir): Don't create po/Makefile.am, don't invoke
1951         autoreconf. Instead, invoke autopoint explicitly but move back the
1952         *.m4 files from gnulib.
1953
1954 2006-10-11  Bruno Haible  <bruno@clisp.org>
1955
1956         * gnulib-tool (func_usage): Make module names after --create-testdir
1957         optional.
1958         (func_create_testdir): If no module was specified, use nearly all
1959         modules.
1960
1961 2006-10-12  Jim Meyering  <jim@meyering.net>
1962
1963         Big performance improvement for fts-based tools that use FTS_NOSTAT.
1964         Avoid spurious inode-mismatch problems on non-POSIX file systems.
1965         Details: http://article.gmane.org/gmane.comp.lib.gnulib.bugs/7416
1966         * lib/fts_.h (FTS_DEFER_STAT): Define new flag.
1967         (FTS_OPTIONMASK): Extend the mask to reflect this addition.
1968         * lib/fts.c (DT_IS_KNOWN, DT_MUST_BE): Define.
1969         (FTS_NO_STAT_REQUIRED, FTS_STAT_REQUIRED): Define.
1970         (fts_set_stat_required): New function.
1971         (fts_open): Defer the calls to fts_stat, if possible or requested.
1972         Move the code that maps a command-line fts_info value FTS_DOT to FTS_D
1973         into fts_stat itself.
1974         (fts_read): Perform any required (deferred) fts_stat call.
1975         (fts_build): Likewise, for the directory we're about to open and read.
1976         In the readdir loop, carefully decide whether each entry will require
1977         an eventual call to fts_stat, using dirent.d_type info if available.
1978         (fts_stat): Move the test for whether to honor FTS_COMFOLLOW on
1979         a command line argument into this function.  Update all callers.
1980         Map a return value of FTS_DOT to FTS_D for a command line argument.
1981         * modules/fts (Depends-on): Add d-type.  Alphabetize.
1982         Thanks to Miklos Szeredi for his tenacity and for the initial
1983         bug report about "find" failing on a FUSE-based file system.
1984
1985         * lib/fts.c (fts_open): Use consistent indentation.
1986
1987 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
1988
1989         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Renamed from
1990         gl_USE_SYSTEM_EXTENSIONS, to fix a coreutils bootstrap failure
1991         reported by Jim Meyering.  All uses of cache variables renamed
1992         to match Autoconf's.
1993         (gl_USE_SYSTEM_EXTENSIONS): New macro, which simply requires
1994         the other one.
1995
1996         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH):
1997         Fix misspelling in diagnostic.
1998
1999 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
2000
2001         * lib/mkdir-p.c (HAVE_FCHMOD): Define to false if not already
2002         defined.  Problem reported by Matthew Woehlke.
2003
2004         * lib/inttypes_.h (_LONG_LONG_FORMAT_PREFIX): New macro.
2005         Add support for Tandem NonStop R series.
2006         (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX, _SCNu64_PREFIX):
2007         Use new macro.
2008
2009         * lib/rename-dest-slash.c: Include stdbool.h but not string.h.
2010         (has_trailing_slash): Omit size arg; all callers changed.
2011         Omit 'inline', since it doesn't help performance and we'd
2012         need to configure it.
2013         Don't count //, ///, etc. as having a trailing slash.
2014         As a side effect, this removes a C99ism reported by Matthew Woehlke.
2015         (rpl_rename_dest_slash): On failure, use rename's errno rather
2016         than (in some cases) an incorrect or junk errno.
2017         Simplify code by removing need to compute length; this does
2018         cause it to make two passes instead of one over the file name,
2019         but it's worth it.
2020
2021         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Undo previous
2022         change, since Autoconf's version may no longer be appropriate now
2023         that we are using CVS Autoconf's version.  Add support for Tandem.
2024
2025 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
2026             Bruno Haible  <bruno@clisp.org>
2027
2028         * lib/allocsa.h (sa_alignment_longlong, sa_alignment_max): Test
2029         HAVE_LONG_LONG_INT instead of HAVE_LONG_LONG.
2030         * m4/allocsa.m4 (gl_ALLOCSA): Invoke AC_TYPE_LONG_LONG_INT instead of
2031         gl_AC_TYPE_LONG_LONG.
2032
2033         * lib/printf-args.h (arg_type, argument): Test HAVE_LONG_LONG_INT
2034         instead of HAVE_LONG_LONG.
2035         * lib/printf-args.c (printf_fetchargs): Likewise.
2036         * lib/printf-parse.c (PRINTF_PARSE): Likewise.
2037         * lib/vasnprintf.c (VASNPRINTF): Likewise.
2038         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_ARGS, gl_PREREQ_PRINTF_PARSE,
2039         gl_PREREQ_VASNPRINTF): Invoke AC_TYPE_LONG_LONG_INT instead of
2040         gl_AC_TYPE_LONG_LONG.
2041
2042 2006-10-11  Bruno Haible  <bruno@clisp.org>
2043
2044         * m4/longlong.m4: Add comments.
2045         * m4/ulonglong.m4: Likewise.
2046
2047 2006-10-10  Bruno Haible  <bruno@clisp.org>
2048
2049         Make it possible to #define stpcpy, strdup to aliases.
2050         * lib/stpcpy.c (stpcpy) [!_LIBC]: Don't undefine.
2051         * lib/strdup.c (strdup) [!_LIBC]: Don't undefine.
2052
2053 2006-10-10  Bruno Haible  <bruno@clisp.org>
2054
2055         Make it possible to #define gcd to an alias.
2056         * lib/gcd.c: Include config.h.
2057
2058 2006-10-10  Bruno Haible  <bruno@clisp.org>
2059
2060         Make it possible to #define c_isascii to an alias.
2061         * lib/c-ctype.h: Don't define the macros if NO_C_CTYPE_MACROS is
2062         defined. Undefine the macros before defining them, to avoid gcc
2063         warnings.
2064         * lib/c-ctype.c: Include config.h. Don't undefine the macros; instead,
2065         define NO_C_CTYPE_MACROS early.
2066
2067 2006-10-10  Bruno Haible  <bruno@clisp.org>
2068
2069         Make it possible to #define set_program_name to an alias.
2070         * lib/progname.c: Don't undefine set_program_name; instead, undefine
2071         ENABLE_RELOCATABLE early.
2072
2073 2006-10-10  Paul Eggert  <eggert@cs.ucla.edu>
2074
2075         Port to Tandem NSK OSS, which has 64-bit signed int but at most
2076         32-bit unsigned int.  Problem reported by Matthew Woehlke in:
2077         http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00062.html
2078         More generally, don't assume that 64-bit signed int is available
2079         if unsigned int is, and vice versa.
2080         * lib/inttypes_.h (_PRIu64_PREFIX, _SCNu64_PREFIX): Depend on
2081         unsigned symbols, not on their signed counterparts.
2082         * lib/stdint_.h (uint64_t, uint_least64_t, uint_fast64_t, uintmax_t):
2083         (UINT64_MAX, UINT_LEAST64_MAX, UINT_FAST64_MAX, UINTMAX_MAX):
2084         (UINT64_C, UINTMAX_C):
2085         Likewise.
2086         * lib/strtoimax.c (strtoll): Depend on signed symbols, not their
2087         unsigned counterparts.
2088         (Have_long_long, Unsigned): New macros.
2089         (Int): Renamed from INT.
2090         (strtoimax): Use the new macros.
2091         * m4/stdint.m4 (gl_STDINT_H): Require AC_TYPE_UNSIGNED_LONG_LONG_INT
2092         and substitute HAVE_UNSIGNED_LONG_LONG_INT.
2093         * modules/inttypes (inttypes.h): Substitute
2094         HAVE_UNSIGNED_LONG_LONG_INT.
2095         * modules/stdint (stdint.h): Likewise.
2096         (Files): Add m4/ulonglong.m4.
2097
2098 2006-10-10  Bruno Haible  <bruno@clisp.org>
2099
2100         Fix a gcc -Wshadow warning.
2101         * lib/gl_anyhash_list2.h (hash_resize): Rename local variable 'index'
2102         to 'bucket'.
2103         * lib/gl_anylinked_list2.h (gl_linked_search_from_to,
2104         gl_linked_indexof_from_to): Likewise.
2105         * lib/gl_linkedhash_list.c (add_to_bucket, remove_from_bucket):
2106         Likewise.
2107         * lib/gl_anytreehash_list1.h (add_to_bucket, remove_from_bucket):
2108         Likewise.
2109         * lib/gl_anytreehash_list2.h (gl_tree_search_from_to): Likewise.
2110         Reported by Eric Blake.
2111
2112 2006-10-09  Paul Eggert  <eggert@cs.ucla.edu>
2113
2114         * lib/filemode.h [HAVE_DECL_STRMODE]: Include unistd.h too,
2115         for NetBSD.  Problem reported by Bruno Haible.
2116
2117 2006-10-09  Jim Meyering  <jim@meyering.net>
2118
2119         * lib/lchown.c: Include <sys/stat.h> before "stat-macros.h".
2120         Patch from Bruno Haible.
2121
2122 2006-10-09  Jim Meyering  <jim@meyering.net>
2123
2124         * lib/fts-cycle.c (leave_dir): When "leaving" a top level directory due
2125         to FTS_SKIP, don't copy the parent's uninitialized dev/ino values.
2126         Trigger with e.g., mkdir d && valgrind ./chmod u+rwx d d
2127
2128 2006-10-08  Paul Eggert  <eggert@cs.ucla.edu>
2129
2130         Don't include <config.h> twice; this doesn't work in some cases,
2131         e.g., when config.h has "#define intmax_t long long int" and
2132         we include <config.h>, <inttypes.h>, <config.h> in that order.
2133         Problem reported by Matthew Woehlke in:
2134         http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00073.html
2135         * lib/fprintftime.c: Don't include config.h or fprintftime.h.
2136         * lib/fts-cycle.c: Don't include config.h.
2137         * lib/strftime.c: Include fprintftime.h if FPRINTFTIME is defined.
2138         * lib/xstrtoimax.c: Remove copyright notice since it's short tnow.
2139         Don't include config.h or xstrtol.h.  Define STRTOL_T_MINIMUM
2140         and STRTOL_T_MAXIMUM unconditionally, since we now assume gnulib
2141         inttypes.h.
2142         * lib/xstrtoumax.c: Likewise.
2143         * lib/xstrtol.c: Include config.h and xstrtol.h after defining
2144         __strtol and the like, so that this module is more like its siblings.
2145         (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM) [! defined STRTOL_T_MINIMUM]:
2146         Remove; no longer needed now that we assume gnulib inttypes.h.
2147
2148 2006-10-08  Bruno Haible  <bruno@clisp.org>
2149
2150         * doc/gnulib-tool.texi: Emphasize the drawbacks of the --symlink
2151         option.
2152
2153 2006-10-07  Jim Meyering  <jim@meyering.net>
2154
2155         * modules/inttypes (inttypes.h): Revert what seems to have been
2156         an inadvertent part of today's change: use "|", not "/" in the
2157         substitution for the "/"-containing string, $(ABSOLUTE_INTTYPES_H).
2158
2159 2006-10-07  Bruno Haible  <bruno@clisp.org>
2160
2161         * modules/sublist: New file.
2162
2163 2006-10-07  Bruno Haible  <bruno@clisp.org>
2164
2165         * modules/alloca-opt (alloca.h): Add a "DO NOT EDIT" comment.
2166         * modules/argz (argz.h): Likewise.
2167         * modules/arpa_inet (arpa/inet.h): Likewise.
2168         * modules/byteswap (byteswap.h): Likewise.
2169         * modules/configmake (configmake.h): Likewise.
2170         * modules/fcntl (fcntl.h): Likewise.
2171         * modules/fnmatch (fnmatch.h): Likewise.
2172         * modules/getopt (getopt.h): Likewise.
2173         * modules/glob (glob.h): Likewise.
2174         * modules/inttypes (inttypes.h): Likewise.
2175         * modules/netinet_in (netinet/in.h): Likewise.
2176         * modules/poll (poll.h): Likewise.
2177         * modules/stdbool (stdbool.h): Likewise.
2178         * modules/stdint (stdint.h): Likewise.
2179         * modules/sys_select (sys/select.h): Likewise.
2180         * modules/sys_socket (sys/socket.h): Likewise.
2181         * modules/sys_stat (sys/stat.h): Likewise.
2182         * modules/sysexits (sysexits.h): Likewise.
2183         * modules/unistd (unistd.h): Likewise.
2184         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
2185         Add a "DO NOT EDIT" comment to the generated file.
2186         (func_import): Likewise for gnulib-comp.m4.
2187
2188 2006-10-07  Bruno Haible  <bruno@clisp.org>
2189
2190         * lib/gl_sublist.h: New file.
2191         * lib/gl_sublist.c: New file.
2192
2193 2006-10-06  Paul Eggert  <eggert@cs.ucla.edu>
2194
2195         * lib/mkancesdirs.c (mkancesdirs): Pass to MAKE_DIR both the full file
2196         name (relative to the original working directory) and the file
2197         name component (relative to the temporary working directory).  All
2198         callers changed.
2199         * lib/mkancesdirs.h (mkancesdirs): Adjust prototype to match.
2200         * lib/mkdir-p.c (make_dir_parents): Likewise.
2201         * lib/mkdir-p.h (make_dir_parents): Likewise.
2202
2203 2006-10-06  Eric Blake  <ebb9@byu.net>
2204
2205         Define several macros for use by the clean-temp module.
2206         * m4/close-stream.m4 (gl_CLOSE_STREAM): Define GNULIB_CLOSE_STREAM.
2207         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Define GNULIB_FCNTL_SAFER.
2208         * m4/stdio-safer.m4 (gl_FOPEN_SAFER): Define GNULIB_FOPEN_SAFER.
2209
2210         * lib/clean-temp.h (close_stream_temp): New declaration.
2211         * lib/clean-temp.c (includes): Pull in headers according to what
2212         other modules are in use.
2213         (close_stream_temp) [GNULIB_CLOSE_STREAM]: New function.
2214
2215 2006-10-06  Bruno Haible  <bruno@clisp.org>
2216
2217         * lib/javacomp.c (write_temp_file): Use fopen_temp, fwriteerror_temp
2218         instead of fopen, fwriteerror.
2219
2220 2006-10-06  Bruno Haible  <bruno@clisp.org>
2221
2222         * lib/clean-temp.h (cleanup_temp_file, cleanup_temp_subdir,
2223         cleanup_temp_dir_contents, cleanup_temp_dir): Change return type to
2224         int.
2225         * lib/clean-temp.c (do_unlink, do_rmdir, cleanup_temp_file,
2226         cleanup_temp_subdir, cleanup_temp_dir_contents, cleanup_temp_dir):
2227         Return an error indicator.
2228         Suggested by Eric Blake.
2229
2230 2006-10-06  Bruno Haible  <bruno@clisp.org>
2231
2232         * lib/clean-temp.c (PATH_MAX): Provide a fallback for GNU Hurd.
2233         Reported by Eric Blake.
2234
2235 2006-10-06  Bruno Haible  <bruno@clisp.org>
2236
2237         * modules/closeout (Description): Mention stderr too.
2238
2239 2006-10-06  Bruno Haible  <bruno@clisp.org>
2240         and Paul Eggert  <eggert@cs.ucla.edu>
2241
2242         * lib/closeout.c (close_stdout): Also close stderr.
2243         * lib/closeout.h: Update comment.
2244
2245 2006-10-05  Paul Eggert  <eggert@cs.ucla.edu>
2246
2247         Fix some Darwin-7.9.0 porting problems reported by Bruno Haible in
2248         <http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00063.html>.
2249         * lib/dirchownmod.c: Include lchown.h.
2250         * lib/lchown.c: Don't include files that lchown.h now includes.
2251         Don't declare chown, since lchown.h now does that.
2252         * lib/lchown.h: Include errno.h, sys/types.h, unistd.h.
2253         (lchown): Define to rpl_chown if lchown is declared but
2254         does not exist.  Declare using a prototype if lchown is not
2255         declared.  Add a copyright notice.
2256         * lib/mkstemp.h: Include <unistd.h>.
2257         * lib/openat.c: Include lchown.h.
2258
2259         * lib/fcntl_.h (O_NOFOLLOW): Don't depend on O_NOFOLLOW_IS_INEFFECTIVE;
2260         we now test for that separately.
2261         * lib/fts.c (fts_safe_changedir): Inspect HAVE_WORKING_O_NOFOLLOW
2262         rather than O_NOFOLLOW, when testing whether it's possible to
2263         avoid a race condition reliably.
2264         * lib/savewd.c (savewd_chdir): Likewise.
2265
2266         Remove macros that are no longer needed now that stdint.h is
2267         reliable.
2268         * lib/fsusage.c (UINTMAX_MAX): Remove.
2269         * lib/human.c (SIZE_MAX, UINTMAX_MAX): Remove.
2270         * lib/utimecmp.c (SIZE_MAX): Remove.
2271
2272         * m4/lchown.m4 (gl_FUNC_LCHOWN): Check whether lchown is declared.
2273
2274         * m4/fcntl_h.m4 (gl_FCNTL_H): Define HAVE_WORKING_O_NOFOLLOW instead
2275         of O_NOFOLLOW_IS_INEFFECTIVE.  Define HAVE_WORKING_O_NOATIME if
2276         O_NOATIME works.
2277
2278 2006-10-05  Bruno Haible  <bruno@clisp.org>
2279
2280         * lib/gl_list.h (gl_sortedlist_search_from_to,
2281         gl_sortedlist_indexof_from_to): New declarations.
2282         (gl_list_implementation): New fields sortedlist_search_from_to,
2283         sortedlist_indexof_from_to.
2284         (gl_sortedlist_search_from_to, gl_sortedlist_indexof_from_to): New
2285         inline functions.
2286         * lib/gl_list.c (gl_sortedlist_search_from_to,
2287         gl_sortedlist_indexof_from_to): New functions.
2288         * lib/gl_array_list.c (gl_array_sortedlist_indexof_from_to): New
2289         function.
2290         (gl_array_sortedlist_indexof, gl_array_sortedlist_search): Use it.
2291         (gl_array_sortedlist_search_from_to): New function.
2292         (gl_array_list_implementation): Update.
2293         * lib/gl_carray_list.c (gl_carray_sortedlist_indexof_from_to): New
2294         function.
2295         (gl_carray_sortedlist_indexof, gl_carray_sortedlist_search): Use it.
2296         (gl_carray_sortedlist_search_from_to): New function.
2297         (gl_carray_list_implementation): Update.
2298         * lib/gl_anylinked_list2.h (gl_linked_sortedlist_search_from_to,
2299         gl_linked_sortedlist_indexof_from_to): New functions.
2300         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
2301         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
2302         * lib/gl_anytree_list2.h (gl_tree_sortedlist_search_from_to,
2303         gl_tree_sortedlist_indexof_from_to): New functions.
2304         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
2305         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
2306         Update.
2307         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
2308         * lib/gl_rbtreehash_list.c (gl_avltreehash_list_implementation):
2309         Update.
2310
2311 2006-10-05  Bruno Haible  <bruno@clisp.org>
2312
2313         * lib/gl_list.h (gl_list_search_from, gl_list_search_from_to,
2314         gl_list_indexof_from, gl_list_indexof_from_to): New declarations.
2315         (struct gl_list_implementation): Add fields search_from_to,
2316         indexof_from_to. Remove fields search, indexof.
2317         (gl_list_search): Use the search_from_to method.
2318         (gl_list_search_from, gl_list_search_from_to): New functions.
2319         (gl_list_indexof): Use the indexof_from_to method.
2320         (gl_list_indexof_from, gl_list_indexof_from_to): New functions.
2321         * lib/gl_list.c (gl_list_search): Use the search_from_to method.
2322         (gl_list_search_from, gl_list_search_from_to): New functions.
2323         (gl_list_indexof): Use the indexof_from_to method.
2324         (gl_list_indexof_from, gl_list_indexof_from_to): New functions.
2325         * lib/gl_array_list.c (gl_array_indexof_from_to): Renamed from
2326         gl_array_indexof. Add start_index, end_index arguments.
2327         (gl_array_search_from_to): Renamed from gl_array_search. Add
2328         start_index, end_index arguments.
2329         (gl_array_remove, gl_array_list_implementation): Update.
2330         * lib/gl_carray_list.c (gl_carray_indexof_from_to): Renamed from
2331         gl_carray_indexof. Add start_index, end_index arguments.
2332         (gl_carray_search_from_to): Renamed from gl_carray_search. Add
2333         start_index, end_index arguments.
2334         (gl_carray_remove, gl_carray_list_implementation): Update.
2335         * lib/gl_anylinked_list2.h (gl_linked_search_from_to): Renamed from
2336         gl_linked_search. Add start_index, end_index arguments.
2337         (gl_linked_indexof_from_to): Renamed from gl_linked_indexof. Add
2338         start_index, end_index arguments.
2339         (gl_linked_remove): Update.
2340         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
2341         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
2342         * lib/gl_anytree_list1.h (iterstack_item_t): Change type of 'rightp'
2343         field to 'size_t'.
2344         * lib/gl_anytree_list2.h (gl_tree_search_from_to): Renamed from
2345         gl_tree_search. Add start_index, end_index arguments.
2346         (gl_tree_indexof_from_to): Renamed from gl_tree_indexof. Add
2347         start_index, end_index arguments.
2348         (gl_tree_remove): Update.
2349         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
2350         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
2351         * lib/gl_anytreehash_list1.h (compare_position_threshold): New
2352         function.
2353         * lib/gl_anytreehash_list2.h (gl_tree_search_from_to): Renamed from
2354         gl_tree_search. Add start_index, end_index arguments.
2355         (gl_tree_indexof_from_to): Renamed from gl_tree_indexof. Add
2356         start_index, end_index arguments.
2357         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
2358         Update.
2359         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Update.
2360
2361 2006-10-05  Bruno Haible  <bruno@clisp.org>
2362
2363         * modules/fwriteerror (configure.ac): Define GNULIB_FWRITEERROR.
2364
2365         * lib/clean-temp.h (open_temp, fopen_temp, close_temp, fclose_temp,
2366         fwriteerror_temp): New declarations.
2367         * lib/clean-temp.c (uintptr_t): Provide fallback definition.
2368         (descriptors): New variable.
2369         (cleanup): First, close the descriptors.
2370         (register_fd, unregister_fd, open_temp, fopen_temp, close_temp,
2371         fclose_temp, fwriteerror_temp): New functions.
2372
2373 2006-10-04  Jim Meyering  <jim@meyering.net>
2374
2375         * lib/fts.c (fts_open): Tiny comment change.
2376
2377 2006-10-04  Bruno Haible  <bruno@clisp.org>
2378
2379         Make it possible to invoke AC_GNU_SOURCE after gl_LOCK_EARLY.
2380         * m4/lock.m4 (gl_LOCK_EARLY_BODY): New macro, extracted code from
2381         gl_LOCK_BODY.
2382         (gl_LOCK_EARLY): Require gl_LOCK_EARLY_BODY, not gl_LOCK_BODY.
2383         (gl_LOCK_BODY): Remove settings of CPPFLAGS, now done in
2384         gl_LOCK_EARLY_BODY.
2385         (gl_LOCK): Require gl_LOCK_BODY.
2386
2387 2006-10-04  Bruno Haible  <bruno@clisp.org>
2388
2389         * lib/gl_oset.h (gl_setelement_threshold_fn): New type.
2390         (gl_oset_search_atleast): New declaration.
2391         (struct gl_oset_implementation): Add field 'search_atleast'.
2392         (gl_oset_search_atleast): New inline function.
2393         * lib/gl_oset.c (gl_oset_search_atleast): New function.
2394         * lib/gl_array_oset.c (gl_array_search_atleast): New function.
2395         (gl_array_oset_implementation): Update.
2396         * lib/gl_anytree_oset.h (gl_tree_search_atleast): New function.
2397         * lib/gl_avltree_oset.c (gl_avltree_oset_implementation): Update.
2398         * lib/gl_rbtree_oset.c (gl_rbtree_oset_implementation): Update.
2399
2400 2006-10-04  Bruno Haible  <bruno@clisp.org>
2401
2402         * lib/fatal-signal.c (fatal_signals) [WOE32]: Add the SIGBREAK signal.
2403
2404 2006-10-03  Bruno Haible  <bruno@clisp.org>
2405
2406         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Renamed
2407         from gl_avltreehash_list_implementation.
2408
2409 2006-10-03  Bruno Haible  <bruno@clisp.org>
2410
2411         * lib/gl_oset.c (gl_oset_add): Fix return type.
2412
2413 2006-10-02  Paolo Bonzini  <bonzini@gnu.org>  (tiny change)
2414
2415         * lib/quotearg.c (mbstate_t) [!HAVE_MBRTOWC]: #define to int.
2416
2417 2006-10-02  Eric Blake  <ebb9@byu.net>
2418
2419         * modules/strnlen (Depends-on): Add extensions.
2420
2421 2006-10-02  Eric Blake  <ebb9@byu.net>
2422
2423         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Use autoconf's
2424         definition in 2.60+.
2425
2426 2006-10-02  Dmitry V. Levin  <ldv@altlinux.org>
2427
2428         * lib/fts.c (fts_close, fts_build, fts_palloc): Remove redundant
2429         checks.
2430
2431 2006-10-02  Bruno Haible  <bruno@clisp.org>
2432
2433         * gnulib-tool (func_emit_lib_Makefile_am): Don't add no-dependencies
2434         to the AUTOMAKE_OPTIONS.
2435         Reported by Jim Meyering.
2436
2437 2006-09-29  Paul Eggert  <eggert@cs.ucla.edu>
2438
2439         Work around bug in Solaris 10 /proc file system:
2440         /proc/self/fd/NNN/.. isn't the parent directory of
2441         the directory whose file descriptor is NNN.  This needs to
2442         be worked around at run time, not compile time, since a
2443         program might be built on Solaris 8, where things work, and
2444         run on Solaris 10.
2445         * lib/openat-priv.h (BUILD_PROC_NAME): Remove.  All callers changed
2446         to use the following interface instead:
2447         (OPENAT_BUFFER_SIZE): New macro.
2448         (openat_proc_name): New function.
2449         * lib/at-func.c (AT_FUNC_NAME): Adjust to above changes.
2450         * lib/openat.c (openat_permissive, openat_needs_fchdir, fdopendir):
2451         Likewise.
2452         * lib/openat-proc.c: New file.
2453         * modules/openat (Files): Add lib/openat-proc.c.
2454         (Depends-on): Add same-inode, stdbool.
2455         * m4/openat.m4 (gl_FUNC_OPENAT): Add AC_LIBOBJ(openat-proc).
2456
2457 2006-09-29  Bruno Haible  <bruno@clisp.org>
2458
2459         * lib/fwriteerror.h (fwriteerror_no_ebadf): New declaration.
2460         * lib/(do_fwriteerror): Renamed from fwriteerror. Add ignore_ebadf
2461         argument. Set stdout_closed before testing for ferror, not after.
2462         (fwriteerror, fwriteerror_no_ebadf): New functions.
2463
2464 2006-09-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2465
2466         * m4/intmax.m4 (gt_TYPE_INTMAX_T): Avoid unused variables warning.
2467
2468 2006-09-28  Paolo Bonzini  <bonzini@gnu.org>
2469
2470         * lib/poll.c (rpl_poll) [__APPLE__]: Use FIONREAD instead of MSG_PEEK.
2471         * m4/poll.m4: Look for sys/ioctl.h and sys/filio.h.
2472
2473 2006-09-28  Jim Meyering  <jim@meyering.net>
2474
2475         * lib/mkdir-p.c: Include "dirchownmod.h", not "dirchownmod.c".
2476         Include <unistd.h>.
2477
2478 2006-09-28  Bruno Haible  <bruno@clisp.org>
2479
2480         * modules/avltreehash-list (Depends-on): Add stdint, remove size_max.
2481         * modules/linkedhash-list (Depends-on): Likewise.
2482         * modules/rbtreehash-list (Depends-on): Likewise.
2483
2484 2006-09-28  Bruno Haible  <bruno@clisp.org>
2485
2486         * lib/strndup.h: Simplify the redefinition of strndup.
2487         (_GL_CONCAT, _GL_XCONCAT, __STRNDUP_ID): Remove macros.
2488         * m4/strndup.m4 (gl_FUNC_STRNDUP): Don't define __STRNDUP_PREFIX.
2489
2490 2006-09-28  Bruno Haible  <bruno@clisp.org>
2491
2492         * lib/gl_avltreehash_list.c: Include <stdint.h> instead of size_max.h.
2493         * lib/gl_linkedhash_list.c: Likewise.
2494         * lib/gl_rbtreehash_list.c: Likewise.
2495
2496 2006-09-27  Paul Eggert  <eggert@cs.ucla.edu>
2497
2498         * lib/canon-host.c (canon_host_r): Work around bug in Darwin 7.9.0
2499         getaddrinfo.
2500
2501         * lib/__fpending.h: Don't include <stdio_ext.h> unless
2502         HAVE_DECL___FPENDING.  This avoids a bug with lsbcc, where
2503         it causes <stdio_ext.h> to cause a compile-time error.
2504         Problem reported by Nelson H. F. Beebe.
2505         * lib/getpass.c: Likewise, except for HAVE_DECL___FSETLOCKING instead
2506         of HAVE_DECL___PENDING.
2507
2508         * m4/fpending.m4 (gl_FUNC_FPENDING): Check for stdio_ext at most once.
2509         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for __fsetlocking's
2510         declaration.
2511
2512 2006-09-27  Jim Meyering  <jim@meyering.net>
2513
2514         This file could end up with a definition for a function
2515         named __strndup, rather than rpl_strndup on a system with
2516         incomplete weak_alias support.
2517         * lib/strndup.c (strndup): Rename from __strndup.
2518         Remove #defines that used to map __strndup to strndup.
2519         Don't use K&R prototypes.
2520         Remove LIBC-related code, since this file is not sync'd with glibc.
2521         * lib/strndup.h: Revamp, accordingly.
2522         * m4/strndup.m4: Modernize.
2523
2524 2006-09-26  Paul Eggert  <eggert@cs.ucla.edu>
2525
2526         * modules/savewd (Depends-on): Add 'raise'.
2527         * lib/savewd.c: Include <signal.h>, for 'raise'.
2528
2529 2006-09-26  Jim Meyering  <jim@meyering.net>
2530
2531         * m4/acl.m4 (AC_FUNC_ACL): Disable ACL support altogether
2532         when we detect Darwin 8.7.0's acl_get_file bug.
2533         Rearrange to perform the new (below) run-test while $LIBS
2534         contains any acl-related library.  Set USE_ACL at the end.
2535         (gl_ACL_GET_FILE): New function.
2536
2537 2006-09-26  Eric Blake  <ebb9@byu.net>
2538
2539         * lib/verror.c: Include <config.h> unconditionally.
2540
2541 2006-09-25  Paul Eggert  <eggert@cs.ucla.edu>
2542
2543         * modules/clock-time (Maintainer): Add self.
2544         * modules/getlogin_r (Depends-on): Add extensions.
2545
2546 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2547
2548         * modules/clock-time: New module.
2549         * modules/nanosleep (Depends-on): Add clock-time.
2550         * modules/gethrxtime (Depends-on): Likewise.
2551         * modules/gettime (Depends-on): Likewise.
2552         * modules/settime (Depends-on): Likewise.
2553
2554         * modules/fts-lgpl: Depend on openat.
2555         * modules/mkancesdirs: Depend on savewd.
2556         * modules/mkdir-p: Likewise.
2557
2558 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2559
2560         * m4/host-os.m4 (gl_HOST_OS): Require AC_CANONICAL_HOST.
2561
2562         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Rename cache variable from
2563         `gl_have_arbitrary_file_name_length_limit' to
2564         `gl_cv_have_arbitrary_file_name_length_limit', so that caching
2565         actually works between configure runs.
2566
2567 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2568             Bruno Haible  <bruno@clisp.org>
2569
2570         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Include <string.h>.
2571
2572 2006-09-25  Jim Meyering  <jim@meyering.net>
2573
2574         * m4/fcntl_h.m4 (gl_FCNTL_H): Fix typo in test for failed open.
2575         This typo caused coreutils/tests/dd/misc to fail on Darwin 8.7.0.
2576
2577 2006-09-25  Eric Blake  <ebb9@byu.net>
2578
2579         * gnulib-tool (func_import, func_create_testdir): Fix typos in
2580         exec's in 2006-09-18 patch when shuffling fds.
2581
2582 2006-09-25  Bruno Haible  <bruno@clisp.org>
2583
2584         * m4/getloadavg.m4 (gl_GETLOADAVG): Fix directory in error message.
2585         Reported by Jim Meyering.
2586
2587 2006-09-24  Jim Meyering  <jim@meyering.net>
2588
2589         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Don't use '>' to
2590         compare a pointer against a literal "0".  That caused failures with
2591         at least HP-UX's hpcc.
2592
2593 2006-09-22  Simon Josefsson  <jas@extundo.com>
2594
2595         * modules/gc-sha1:
2596         * modules/gc-md4:
2597         * modules/gc-hmac-sha1:
2598         * modules/gc-hmac-md5:
2599         * modules/gc-des:
2600         * modules/gc-arcfour: Distribute more files.
2601
2602 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2603
2604         * lib/gl_anylinked_list2.h [lint] (gl_linked_iterator)
2605         (gl_linked_iterator_from_to): Initialize struct completely.
2606         * lib/gl_anytree_list2.h [lint] (gl_tree_iterator): Likewise.
2607         (gl_tree_iterator_from_to): Likewise
2608         * lib/gl_anytree_oset.h [lint] (gl_tree_iterator): Likewise.
2609         * lib/gl_array_list.c [lint] (gl_array_iterator)
2610         (gl_array_iterator_from_to): Likewise.
2611         * lib/gl_array_oset.c [lint] (gl_array_iterator): Likewise.
2612         * lib/gl_carray_list.c [lint] (gl_carray_iterator)
2613         (gl_carray_iterator_from_to): Likewise.
2614
2615         * lib/gc-gnulib.c [GC_USE_HMAC_SHA1]: include hmac.h for hmac_sha1.
2616         * lib/md4.c (md4_process_block): Remove unused variable.
2617         * lib/rijndael-api-fst.c (rijndaelBlockDecrypt): GCC suggests
2618         parentheses for clarity.
2619
2620 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2621
2622         * modules/bison-i18n (Depends-on): Add gettext.
2623
2624 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2625
2626         * m4/fsusage.m4 (gl_STATFS_TRUNCATES): Avoid unused variable.
2627         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): Likewise.
2628         * m4/jm-winsz1.m4 (gl_HEADER_TIOCGWINSZ_IN_TERMIOS_H): Likewise;
2629         also add missing comma that caused broken test.
2630         * m4/link-follow.m4 (gl_AC_FUNC_LINK_FOLLOWS_SYMLINK): Include
2631         stdlib.h, for `abort'.
2632         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Avoid unused
2633         variables.
2634         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Check for and
2635         include unistd.h if present, for `rmdir'.
2636         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): Avoid unused
2637         variables.
2638         * m4/putenv.m4 (gl_FUNC_PUTENV): Rewrite using AC_RUN_IFELSE, and
2639         in the process include standard headers for prototypes.
2640         * m4/readutmp.m4 (gl_READUTMP): Require AC_GNU_SOURCE, so utmpxname
2641         gets declared on GNU/Linux.
2642         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Check for and include
2643         unistd.h, for `rmdir'.
2644         * m4/time_r.m4 (gl_TIME_R): Avoid unused variables.
2645
2646         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Avoid expression that is
2647         always true.
2648         * m4/strndup.m4 (gl_FUNC_STRNDUP): include stdlib.h, for `free'.
2649
2650         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Avoid gcc -Wall warnings.
2651
2652 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2653
2654         * gnulib-tool (func_version): Create output all at once.  This
2655         may help avoid triggering unnecessary SIGPIPEs, and at any
2656         rate it doesn't hurt.
2657
2658 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2659             Bruno Haible  <bruno@clisp.org>
2660
2661         * m4/lock.m4 (gl_LOCK_BODY): Avoid unused variables warning.
2662         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
2663         * m4/signed.m4 (bh_C_SIGNED): Likewise.
2664
2665         * m4/vasprintf.m4 (gl_PREREQ_VASPRINTF_H): New macro.
2666         (gl_FUNC_VASPRINTF): Invoke it.
2667
2668 2006-09-22  Bruno Haible  <bruno@clisp.org>
2669
2670         * m4/getloadavg.m4 (gl_GETLOADAVG): Expect the directory of
2671         getloadavg.c as first argument.
2672
2673 2006-09-22  Bruno Haible  <bruno@clisp.org>
2674
2675         * gnulib-tool (func_import, func_create_testdir): Set gl_source_base
2676         at the beginning of the gl_INIT macro.
2677         * modules/getloadavg (configure.ac): Pass $gl_source_base to
2678         gl_GETLOADAVG.
2679
2680 2006-09-22  Bruno Haible  <bruno@clisp.org>
2681
2682         * gnulib-tool (func_create_megatestdir): Don't include the config-h
2683         module.
2684         Suggested by Ralf Wildenhues.
2685
2686 2006-09-20  Paul Eggert  <eggert@cs.ucla.edu>
2687
2688         Import this patch from libc:
2689
2690         2006-09-06  Jakub Jelinek  <jakub@redhat.com>
2691
2692         * lib/regex_internal.c (re_string_reconstruct): Handle
2693         offset < pstr->valid_raw_len && pstr->offsets_needed case.
2694         Ensure no bytes read before raw_mbs array.  Pass a saved copy of
2695         pstr->valid_len - 1 rather than pstr->valid_raw_len - 1 to
2696         re_string_context_at.
2697
2698         * m4/regex.m4 (gl_REGEX): Check for locale.h, since the test
2699         now requires it.
2700         (gl_PREREQ_REGEX): Don't check for locale.h any more, since
2701         gl_REGEX now does it for us.
2702         (gl_REGEX): Add test taken from
2703         http://sourceware.org/ml/libc-hacker/2006-09/msg00008.html.
2704
2705         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Require AC_SYS_LARGEFILE.
2706         Check that large offsets work.  Modernize Autoconf usages.
2707         Prefer "yes" to mean a good thing rather than a bad.
2708         Don't put "#define mkstemp" in config.h, as this might interfere
2709         with standard system headers that "#define mkstemp mkstemp64".
2710
2711         * modules/mkstemp (Depends-on): Add extensions, so that
2712         mkstemp is visible on some platforms.
2713         (Makefile.am): Add mkstemp.h to EXTRA_DIST.
2714         (Include): Change to "mkstemp.h" from <stdlib.h>.
2715         (Files): Add mkstemp.h.
2716
2717         * lib/mkstemp.h: New file, since some standard headers
2718         #define mkstemp.
2719         * lib/mkstemp.c: Revamp to put the !_LIBC code together.
2720         Include "mkstemp.h".
2721         Make the _LIBC code resemble glibc original more,
2722         e.g., use K&R style.
2723         * lib/mkstemp-safer.c: Include "mkstemp.h" instead of <stdlib.h>.
2724         (mkstemp): Remove, since mkstemp.h does this for us.
2725         * lib/stdlib--.h: Include mkstemp.h.
2726
2727         Import this patch from libc:
2728
2729         2006-04-07  Ulrich Drepper  <drepper@redhat.com>
2730
2731         * lib/tempname.c (__gen_tempname): Change attempts_min
2732         into a macro.  Use preprocessor to decide how to initialize
2733         attempts [Coverity CID 67].
2734
2735 2006-09-20  Bruno Haible  <bruno@clisp.org>
2736
2737         * lib/mkdtemp.c: Import from libc.
2738         2006-04-07  Ulrich Drepper  <drepper@redhat.com>
2739                 * sysdeps/posix/tempname.c (__gen_tempname): Change
2740                 attempts_min into a macro.  Use preprocessor to decide how to
2741                 initialize attempts [Coverity CID 67].
2742         2001-11-27  Paul Eggert  <eggert@twinsun.com>
2743                 * sysdeps/posix/tempname.c (__gen_tempname): Try at least
2744                 ATTEMPTS_MIN or TMP_MAX times, whichever is greater.
2745
2746 2006-09-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2747
2748         * gnulib-tool (func_exit): New function, to allow to pass the
2749         exit status portably through the trap.  Use everywhere.
2750         (--help, --version): Signal a write error.
2751         (trap): catch SIGPIPE, for write errors.
2752         Exit at the end of the trap, with the correct exit status.
2753
2754 2006-09-19  Karl Berry  <karl@gnu.org>
2755
2756         * doc/gnulib.texi: note about the license texinfo files.
2757
2758 2006-09-19  Eric Blake  <ebb9@byu.net>
2759
2760         * gnulib-tool: Avoid space-tab.
2761
2762 2006-09-18  Paul Eggert  <eggert@cs.ucla.edu>
2763
2764         * lib/getaddrinfo.c (getaddrinfo) [defined HAVE_IPV6]: Fix typo
2765         that prevented coreutils 6.1 from building.  Problem reported
2766         by Petter Reinholdtsen.
2767
2768 2006-09-18  Paul Eggert  <eggert@cs.ucla.edu>
2769
2770         * gnulib-tool (avoidlist): Fix typo that broke options like
2771         --avoid=lock that are used by coreutils bootstrap.
2772
2773 2006-09-18  Mark D. Baushke  <mdb@gnu.org>
2774
2775         * m4/inttypes.m4 (gl_INTTYPES_H): Quote "test" args
2776         more systematically.
2777
2778 2006-09-18  Jim Meyering  <jim@meyering.net>
2779
2780         * lib/savewd.c (savewd_restore): Don't shadow: s/status/child_status/.
2781
2782 2006-09-18  Bruno Haible  <bruno@clisp.org>
2783
2784         * modules/inttypes (Files): Remove m4/inttypes-h.m4.
2785
2786 2006-09-18  Bruno Haible  <bruno@clisp.org>
2787
2788         * m4/inttypes-h.m4 (gl_HEADER_INTTYPES_H): Remove macro.
2789         * m4/inttypes-pri.m4: Require autoconf >= 2.52.
2790         (gt_INTTYPES_PRI): Invoke AC_CHECK_HEADERS on inttypes.h. Test
2791         ac_cv_header_inttypes_h instead of gl_cv_header_inttypes_h.
2792         * m4/gettext.m4: Require autoconf >= 2.52.
2793         (gt_INTL_SUBDIR_CORE): Invoke AC_CHECK_HEADERS on inttypes.h.
2794         * m4/inttypes.m4 (gl_INTTYPES_H): Test ac_cv_header_inttypes_h instead
2795         of gl_cv_header_inttypes_h.
2796
2797 2006-09-18  Bruno Haible  <bruno@clisp.org>
2798
2799         * lib/javaversion.c: Include configmake.h.
2800
2801 2006-09-18  Bruno Haible  <bruno@clisp.org>
2802
2803         * gnulib-tool (func_import, func_create_testdir): Use exec tricks to
2804         avoid that the while loops be executed in a subshell.
2805
2806 2006-09-18  Bruno Haible  <bruno@clisp.org>
2807
2808         * MODULES.html.sh (func_module): Break long lines.
2809         Suggested by Bruce Korb <bkorb@gnu.org>.
2810
2811 2006-09-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2812
2813         Speed up by a factor of 1.12.
2814         * gnulib-tool (nl): New variable.
2815         (func_import): Rewrite include directive extraction to only read each
2816         directive once.
2817
2818 2006-09-17  Bruno Haible  <bruno@clisp.org>
2819
2820         * modules/javaversion (Makefile.am): Remove DEFS setting.
2821         (Depends-on): Add configmake, for PKGDATADIR definition.
2822
2823 2006-09-17  Bruno Haible  <bruno@clisp.org>
2824
2825         * gnulib-tool (func_create_testdir): Rewrite all files at once.
2826
2827 2006-09-17  Bruno Haible  <bruno@clisp.org>
2828
2829         * gnulib-tool (func_append): New function, stolen from libtool.m4.
2830         (func_modules_transitive_closure, func_modules_add_dummy,
2831         func_modules_to_filelist, func_import, func_create_testdir,
2832         func_create_megatestdir, ...): Use it wherever possible.
2833         Suggested by Ralf Wildenhues.
2834
2835 2006-09-16  Karl Berry  <karl@gnu.org>
2836
2837         * doc/fdl.texi (ADDENDUM): switch to @heading from @appendixsubsec,
2838         to avoid sectioning errors.
2839         * doc/lgpl.texi, gpl.texi (Copying): downcase @unnumbered title.
2840         [ifinfo]: blank line after @center-ed titles.
2841         * doc/lgpl.texi (Library Copying): Rename main node to GNU LGPL.
2842         Spell FSF address consistently with others.
2843         (These changes approved by rms.)
2844
2845 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2846
2847         Speed up by a factor of 1.61.
2848         * gnulib-tool (func_modules_transitive_closure): Rewrite to not check
2849         already checked module names again.
2850
2851 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2852
2853         Speed up by a factor of 1.13.
2854         * gnulib-tool (func_import): Rewrite all old_files at once; likewise
2855         for new_files, and the input to func_add_or_update.
2856
2857 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2858
2859         * gnulib-tool (func_all_modules, func_modules_to_filelist, func_import,
2860         func_create_testdir, ...): Change 'sort | uniq' to 'sort -u'.
2861
2862 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
2863
2864         * modules/mkancesdirs (Depends-on): Add fcntl.
2865         * modules/savewd: New file.
2866         * MODULES.html.sh (File system functions): Add savewd.
2867
2868         * modules/configmake (Makefile.am): Add support for the
2869         Automake-supplied PKGLIBDIR, PKGINCLUDEDIR, PKGDATADIR.
2870
2871 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
2872
2873         * m4/savewd.m4: New file.
2874
2875 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
2876
2877         * lib/dirchownmod.c: Don't include fcntl.h; no longer needed.
2878         (dirchownmod): New arg FD.  All callers changed.
2879         Use FD rather than opening the directory ourself, as opening is
2880         now the caller's responsibility.
2881         * lib/dirchownmod.h: Likewise.
2882         * lib/mkancesdirs.c: Include <sys/types.h>, for portability to older
2883         hosts that require <sys/types.h> before <sys/stat.h>.  Include
2884         fcntl.h, savewd.h, and unistd.h, not dirname.h and stat-macros.h.
2885         (test_dir): Remove.
2886         (mkancesdirs): Return length of prefix of FILE that has already
2887         been made, or -2 if there is a child doing the work.  Redo
2888         algorithm so that it is O(N) rather than O(N**2).  Optimize away
2889         ".", and treat ".." specially since it might stray back into
2890         already-created areas.  Use a subprocess if necessary.  New arg
2891         WD; all users changed.  MAKE_DIR function should now return 1
2892         if it creates a directory that is not readable.  Return -2 if
2893         a child process is spun off.
2894         * lib/mkancesdirs.h: Include <stddef.h>, for ptrdiff_t.
2895         Adjust signature to match code.
2896         * lib/mkdir-p.c: Include dirname.h, for IS_ABSOLUTE_FILE_NAME.
2897         (make_dir_parents): Use a subprocess if necessary.  New arg WD;
2898         all users changed.
2899         * lib/savewd.c, lib/savewd.h: New files.
2900
2901 2006-09-15  Jim Meyering  <jim@meyering.net>
2902
2903         * modules/rename-dest-slash: New module.
2904         * MODULES.html.sh (posix_compat): Add it here.
2905
2906         * modules/rename: Reflect vb_FUNC_RENAME -> gl_FUNC_RENAME change.
2907
2908 2006-09-15  Jim Meyering  <jim@meyering.net>
2909
2910         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH): New
2911         file.
2912
2913         * m4/rename.m4 (gl_FUNC_RENAME): Rename from vb_FUNC_RENAME.
2914
2915 2006-09-15  Jim Meyering  <jim@meyering.net>
2916
2917         * lib/rename-dest-slash.c (has_trailing_slash): Use
2918         FILE_SYSTEM_PREFIX_LEN, for non-POSIX systems.
2919         (rpl_rename_dest_slash): Perform the cheaper trailing slash
2920         test before testing whether SRC is a directory.
2921         Suggestions from Bruno Haible.
2922
2923         Avoid a warning about an unused variable.
2924         * lib/regex_internal.c (re_dfa_add_node): Move declaration of "type"
2925         into the #ifdef block where it's used.
2926
2927         * lib/rename-dest-slash.c: New file.
2928
2929 2006-09-14  Bruno Haible  <bruno@clisp.org>
2930
2931         * lib/allocsa.c: Include <config.h> unconditionally.
2932         * lib/asnprintf.c: Likewise.
2933         * lib/asprintf.c: Likewise.
2934         * lib/c-strcasecmp.c: Likewise.
2935         * lib/c-strcasestr.c: Likewise.
2936         * lib/c-strncasecmp.c: Likewise.
2937         * lib/c-strstr.c: Likewise.
2938         * lib/classpath.c: Likewise.
2939         * lib/clean-temp.c: Likewise.
2940         * lib/concatpath.c: Likewise.
2941         * lib/copy-file.c: Likewise.
2942         * lib/csharpcomp.c: Likewise.
2943         * lib/csharpexec.c: Likewise.
2944         * lib/execute.c: Likewise.
2945         * lib/fatal-signal.c: Likewise.
2946         * lib/findprog.c: Likewise.
2947         * lib/fwriteerror.c: Likewise.
2948         * lib/gl_array_list.c: Likewise.
2949         * lib/gl_array_oset.c: Likewise.
2950         * lib/gl_avltree_list.c: Likewise.
2951         * lib/gl_avltree_oset.c: Likewise.
2952         * lib/gl_avltreehash_list.c: Likewise.
2953         * lib/gl_carray_list.c: Likewise.
2954         * lib/gl_linked_list.c: Likewise.
2955         * lib/gl_linkedhash_list.c: Likewise.
2956         * lib/gl_list.c: Likewise.
2957         * lib/gl_oset.c: Likewise.
2958         * lib/gl_rbtree_list.c: Likewise.
2959         * lib/gl_rbtree_oset.c: Likewise.
2960         * lib/gl_rbtreehash_list.c: Likewise.
2961         * lib/imaxabs.c: Likewise.
2962         * lib/imaxdiv.c: Likewise.
2963         * lib/javacomp.c: Likewise.
2964         * lib/javaexec.c: Likewise.
2965         * lib/javaversion.c: Likewise.
2966         * lib/linebreak.c: Likewise.
2967         * lib/localcharset.c: Likewise.
2968         * lib/lock.c: Likewise.
2969         * lib/mbchar.c: Likewise.
2970         * lib/mbswidth.c: Likewise.
2971         * lib/mkdtemp.c: Likewise.
2972         * lib/pipe.c: Likewise.
2973         * lib/printf-args.c: Likewise.
2974         * lib/printf-parse.c: Likewise.
2975         * lib/progname.c: Likewise.
2976         * lib/progreloc.c: Likewise.
2977         * lib/readlink.c: Likewise.
2978         * lib/sh-quote.c: Likewise.
2979         * lib/stpcpy.c: Likewise.
2980         * lib/stpncpy.c: Likewise.
2981         * lib/strcasecmp.c: Likewise.
2982         * lib/strcasestr.c: Likewise.
2983         * lib/strcspn.c: Likewise.
2984         * lib/striconv.c: Likewise.
2985         * lib/strncasecmp.c: Likewise.
2986         * lib/strnlen1.c: Likewise.
2987         * lib/strstr.c: Likewise.
2988         * lib/strtok_r.c: Likewise.
2989         * lib/tls.c: Likewise.
2990         * lib/tmpdir.c: Likewise.
2991         * lib/unicodeio.c: Likewise.
2992         * lib/unsetenv.c: Likewise.
2993         * lib/vasnprintf.c: Likewise.
2994         * lib/vasprintf.c: Likewise.
2995         * lib/wait-process.c: Likewise.
2996         * lib/xallocsa.c: Likewise.
2997         * lib/xsetenv.c: Likewise.
2998         * lib/xstriconv.c: Likewise.
2999
3000 2006-09-13  Simon Josefsson  <jas@extundo.com>
3001
3002         * m4/getdate.m4: Don't AC_LIBOBJ([getdate]), automake takes care of
3003         that internally, suggested by Ralf Wildenhues
3004         <Ralf.Wildenhues@gmx.de>.
3005
3006 2006-09-13  Simon Josefsson  <jas@extundo.com>
3007
3008         * gnulib-tool (func_emit_lib_Makefile_am): Use $(LIBOBJS), not
3009         @LIBOBJS@.
3010         Suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
3011
3012 2006-09-13  Paul Eggert  <eggert@cs.ucla.edu>
3013
3014         * lib/_fpending.c: Include <config.h> unconditionally, since we no
3015         longer worry about uses that don't define HAVE_CONFIG_H.
3016         * lib/acl.c, lib/alloca.c, lib/argmatch.c, lib/atexit.c:
3017         * lib/backupfile.c, lib/basename.c, lib/c-stack.c, lib/c-strtod.c:
3018         * lib/calloc.c,lib/ canon-host.c, lib/canonicalize.c, lib/chdir-long.c:
3019         * lib/chdir-safer.c, lib/chown.c, lib/cloexec.c, lib/close-stream.c:
3020         * lib/closeout.c, lib/creat-safer.c, lib/cycle-check.c, lib/diacrit.c:
3021         * lib/dirchownmod.c, lib/dirfd.c, lib/dirname.c, lib/dup-safer.c:
3022         * lib/dup2.c, lib/error.c, lib/euidaccess.c, lib/exclude.c:
3023         * lib/exitfail.c, lib/fchmodat.c, lib/fchown-stub.c, lib/fd-safer.c:
3024         * lib/file-type.c, lib/fileblocks.c, lib/filemode.c, lib/filenamecat.c:
3025         * lib/fnmatch.c, lib/fopen-safer.c, lib/fprintftime.c, lib/free.c:
3026         * lib/fsusage.c, lib/ftruncate.c, lib/fts-cycle.c, lib/fts.c:
3027         * lib/full-write.c, lib/gai_strerror.c, lib/getcwd.c, lib/getdate.y:
3028         * lib/getdomainname.c, lib/getgroups.c, lib/gethostname.c:
3029         * lib/gethrxtime.c, lib/getloadavg.c, lib/getlogin_r.c:
3030         * lib/getndelim2.c, lib/getnline.c, lib/getopt.c, lib/getopt1.c:
3031         * lib/getpass.c, lib/gettime.c, lib/gettimeofday.c, lib/getugroups.c:
3032         * lib/getusershell.c, lib/glob.c, lib/group-member.c:
3033         * lib/hard-locale.c, lib/hash-pjw.c, lib/hash.c, lib/human.c:
3034         * lib/idcache.c, lib/inet_ntop.c, lib/inet_pton.c, lib/inttostr.c:
3035         * lib/isdir.c, lib/lchown.c, lib/linebuffer.c, lib/long-options.c:
3036         * lib/lstat.c, lib/malloc.c, lib/md5.c, lib/memcasecmp.c, lib/memchr.c:
3037         * lib/memcmp.c, lib/memcoll.c, lib/memcpy.c, lib/memmove.c:
3038         * lib/memrchr.c, lib/mkancesdirs.c, lib/mkdir-p.c, lib/mkdir.c:
3039         * lib/mkdirat.c, lib/mkstemp-safer.c, lib/mkstemp.c, lib/modechange.c:
3040         * lib/mountlist.c, lib/nanosleep.c, lib/obstack.c, lib/open-safer.c:
3041         * lib/openat-die.c, lib/openat.c, lib/pagealign_alloc.c, lib/physmem.c:
3042         * lib/pipe-safer.c, lib/posixtm.c, lib/posixver.c, lib/putenv.c:
3043         * lib/quote.c, lib/quotearg.c, lib/raise.c, lib/readtokens.c:
3044         * lib/readtokens0.c, lib/readutmp.c, lib/realloc.c, lib/regex.c:
3045         * lib/rename.c, lib/rmdir.c, lib/rpmatch.c, lib/safe-read.c:
3046         * lib/same.c, lib/save-cwd.c, lib/savedir.c, lib/setenv.c:
3047         * lib/settime.c, lib/sha1.c, lib/sig2str.c, lib/snprintf.c:
3048         * lib/strdup.c, lib/strerror.c, lib/strftime.c, lib/stripslash.c:
3049         * lib/strndup.c, lib/strnlen.c, lib/strpbrk.c, lib/strtod.c:
3050         * lib/strtoimax.c, lib/strtol.c, lib/strverscmp.c, lib/tempname.c:
3051         * lib/time_r.c, lib/timegm.c, lib/tmpfile-safer.c, lib/unlinkdir.c:
3052         * lib/userspec.c, lib/utime.c, lib/utimecmp.c, lib/utimens.c:
3053         * lib/version-etc-fsf.c, lib/version-etc.c, lib/xalloc-die.c:
3054         * lib/xgetcwd.c, lib/xgethostname.c, lib/xmalloc.c, lib/xmemcoll.c:
3055         * lib/xnanosleep.c, lib/xreadlink.c, lib/xstrtod.c, lib/xstrtoimax.c:
3056         * lib/xstrtol.c, lib/xstrtoumax.c, lib/yesno.c:
3057         Likewise.
3058
3059 2006-09-13  Eric Blake  <ebb9@byu.net>
3060
3061         * lib/getopt.c: Fix typo in last commit.
3062
3063 2006-09-12  Sergey Poznyakoff  <gray@gnu.org.ua>
3064
3065         * lib/argp-help.c (argp_doc): Make sure NULL is not passed to
3066         dgettext.
3067
3068 2006-09-12  Jim Meyering  <jim@meyering.net>
3069
3070         * lib/nanosleep.c: Include <sys/types.h> before sys/select.h, to avoid
3071         compilation failure (due to use of pid_t in latter) on NetBSD 1.6.
3072         Reported by Nelson H. F. Beebe.
3073
3074 2006-09-10  Sergey Poznyakoff  <gray@gnu.org.ua>
3075
3076         * lib/argp-parse.c (__argp_parse) [!_LIBC]: Make sure
3077         program_invocation_name and program_invocation_short_name are
3078         initialized.
3079         * lib/argp-namefrob.h: Move declarations of program_invocation_name
3080         and program_invocation_short_name to argp.h, so they are visible
3081         to user programs.
3082         * lib/argp.h: Likewise
3083
3084 2006-09-10  Bruno Haible  <bruno@clisp.org>
3085
3086         * modules/mkdtemp (Files): Remove m4/ulonglong.m4, m4/stdint_h.m4,
3087         m4/inttypes_h.m4, m4/uintmax_t.m4.
3088
3089 2006-09-10  Bruno Haible  <bruno@clisp.org>
3090
3091         * m4/mkdtemp.m4 (gl_PREREQ_MKDTEMP): Don't require
3092         gl_AC_TYPE_UINTMAX_T.
3093
3094 2006-09-10  Bruno Haible  <bruno@clisp.org>
3095
3096         * lib/mkdtemp.c: Include <stdint.h> always. Don't include <inttypes.h>.
3097
3098 2006-09-09  Sergey Poznyakoff  <gray@gnu.org.ua>
3099
3100         * lib/argp.h (struct argp): Document the N_("..") "\v" N_("..")
3101         convention.  Text proposed by Bruno Haible.
3102         (struct argp_option): Document the use of N_() wrappers.
3103
3104         * lib/argp-help.c (argp_doc): Split the untranslated doc string on
3105         '\v', and translate the two parts separately, instead of feeding
3106         the whole string to gettext.  This allows to exclude
3107         '\v' from the strings visible to the translator by writing doc
3108         strings as N_("..") "\v" N_("..").
3109
3110 2006-09-09  Paul Eggert  <eggert@cs.ucla.edu>
3111
3112         * config/srclist.txt: Undo latest change; the bug was fixed.
3113
3114 2006-09-09  Bruno Haible  <bruno@clisp.org>
3115
3116         * gnulib-tool (func_emit_lib_Makefile_am): Eliminate lib_LDFLAGS
3117         assignments if building a library without libtool.
3118         (func_emit_tests_Makefile_am): Likewise. Handle lib_* variables as
3119         in func_emit_lib_Makefile_am.
3120         (func_import): When building a static library libfoo.a, arrange to
3121         define variables LIBFOO_LIBDEPS and LIBFOO_LTLIBDEPS.
3122         (func_create_testdir): Likewise.
3123         * modules/gc (configure.ac, Makefile.am): If building statically,
3124         augment gl_libdeps and gl_ltlibdeps instead of lib_LDFLAGS.
3125         * modules/iconvme (configure.ac, Makefile.am): Likewise.
3126         * modules/striconv (configure.ac, Makefile.am): Likewise.
3127         Based on a suggestion by Ralf Wildenhues.
3128
3129 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
3130
3131         * m4/mktime.m4 (AC_FUNC_MKTIME): Sync from Autoconf.
3132         Check for unistd.h too, since Autoconf doesn't assume POSIX.
3133         Also:
3134
3135         2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
3136         Add year_2050_test to catch glibc bug 2821
3137         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
3138
3139         2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
3140         Prefer #ifdef to #if.
3141
3142         2006-04-02  Paul Eggert  <eggert@cs.ucla.edu>
3143         Return from 'main' instead of calling 'exit'.
3144
3145 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
3146
3147         * lib/mktime.c (guess_time_tm): Fix bug where mktime
3148         returned the maximum time_t value rather than (time_t) -1.
3149         Problem originally reported by William Bardwell
3150         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
3151
3152         * lib/isapipe.h (HAVE_FIFO_PIPES) [!defined HAVE_FIFO_PIPES]:
3153         Moved to here ...
3154         * lib/isapipe.c (HAVE_FIFO_PIPES) [!defined HAVE_FIFO_PIPES]:
3155         ... from here.
3156
3157 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
3158
3159         * config/srclist.txt: Temporarily comment out mktime.c until glibc bug
3160         2821 is fixed.
3161
3162 2006-09-08  Jim Meyering  <jim@meyering.net>
3163
3164         Don't make generated files read-only.  That would bother too many
3165         people.  However, do retain the ability to work when targets are
3166         read-only: remove the destination and temporary files before writing
3167         them (when generated via sed or echo), or by using the -f option for
3168         both cp and mv commands.  Suggestion to use -f from Paul Eggert.
3169         * modules/alloca-opt, modules/argz, modules/arpa_inet:
3170         * modules/byteswap, modules/configmake, modules/fcntl:
3171         * modules/fnmatch, modules/getopt, modules/glob, modules/inttypes:
3172         * modules/localcharset, modules/netinet_in, modules/poll:
3173         * modules/stdbool, modules/stdint, modules/sys_select:
3174         * modules/sys_socket, modules/sys_stat, modules/sysexits:
3175
3176 2006-09-08  Jim Meyering  <jim@meyering.net>
3177
3178         Avoid new build failure on FreeBSD 6.0.
3179         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Include
3180         <sys/param.h> when testing whether getmntinfo uses statvfs.  Patch by
3181         Pavel Tsekov, in <http://savannah.gnu.org/bugs/?17643>.
3182
3183 2006-09-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3184
3185         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Don't use plain echo.
3186
3187 2006-09-07  Jim Meyering  <jim@meyering.net>
3188
3189         Fix global typo in last change: use chmod u-w, not chmod u-x.
3190         Spotted by Paul Eggert and Bruce Korb.
3191         * modules/alloca-opt, modules/argz, modules/arpa_inet:
3192         * modules/byteswap, modules/configmake, modules/fcntl:
3193         * modules/fnmatch, modules/getopt, modules/glob, modules/inttypes:
3194         * modules/localcharset, modules/netinet_in, modules/poll:
3195         * modules/stdbool, modules/stdint, modules/sys_select:
3196         * modules/sys_socket, modules/sys_stat, modules/sysexits:
3197
3198 2006-09-06  Jim Meyering  <jim@meyering.net>
3199
3200         Make generated files be read-only.
3201         * modules/alloca-opt (Makefile.am): Work also when $@ is read-only.
3202         Ensure that each generated file is now read-only.
3203         * modules/argz: Likewise.
3204         * modules/arpa_inet: Likewise.
3205         * modules/byteswap: Likewise.
3206         * modules/configmake: Likewise.
3207         * modules/fcntl: Likewise.
3208         * modules/fnmatch: Likewise.
3209         * modules/getopt: Likewise.
3210         * modules/glob: Likewise.
3211         * modules/inttypes: Likewise.
3212         * modules/netinet_in: Likewise.
3213         * modules/poll: Likewise.
3214         * modules/stdbool: Likewise.
3215         * modules/stdint: Likewise.
3216         * modules/sys_select: Likewise.
3217         * modules/sys_socket: Likewise.
3218         * modules/sys_stat: Likewise.
3219         * modules/sysexits: Likewise.
3220         * modules/localcharset: Same as above, but continue using temporary
3221         file named "t-$@" (why different?) rather than the "$@-t" used
3222         everywhere else.
3223
3224         * modules/sysexits (Makefile.am): Replace literal occurrences
3225         of "sysexit.h" more readable, and more consistent, "$@".
3226
3227 2006-09-06  Bruno Haible  <bruno@clisp.org>
3228
3229         * modules/striconv: New file.
3230         * modules/xstriconv: New file.
3231         * MODULES.html.sh (Internationalization functions): Add striconv,
3232         xstriconv.
3233
3234 2006-09-06  Bruno Haible  <bruno@clisp.org>
3235
3236         * modules/gc (Makefile.am): Augment lib_LDFLAGS, not lib_LIBADD.
3237         * modules/iconvme (Makefile.am): Likewise. Also handle the case of
3238         not using libtool correctly.
3239
3240 2006-09-06  Bruno Haible  <bruno@clisp.org>
3241
3242         * lib/striconv.h: New file.
3243         * lib/striconv.c: New file, merging iconvme.c with GNU gettext's
3244         iconvstring.c.
3245         * lib/xstriconv.h: New file.
3246         * lib/xstriconv.c: New file.
3247
3248 2006-09-06  Bruno Haible  <bruno@clisp.org>
3249
3250         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
3251         lib_..._LDFLAGS.
3252
3253 2006-09-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3254
3255         * lib/argz_.h: Sync from Libtool.
3256
3257         2006-09-04  George Bosilca <bosilca@cs.utk.edu>
3258                 and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3259
3260         * lib/libltdl/argz_.h: It's __cplusplus, not _cplusplus.
3261
3262 2006-09-05  Davide Angelocola  <davide.angelocola@tiscali.it>
3263
3264         * modules/trim: New file.
3265
3266 2006-09-05  Davide Angelocola  <davide.angelocola@tiscali.it>
3267
3268         * lib/trim.h: New file.
3269         * lib/trim.c: New file.
3270
3271 2006-09-05  Bruno Haible  <bruno@clisp.org>
3272
3273         * MODULES.html.sh (String handling): Add trim.
3274
3275 2006-09-04  Karl Berry  <karl@gnu.org>
3276
3277         * config/srclist.txt (signed.m4, gettext.m4): changes not propagated
3278         until next release.
3279
3280 2006-09-03  Bruno Haible  <bruno@clisp.org>
3281
3282         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Locate mingw shared libraries
3283         correctly.
3284
3285 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
3286
3287         * m4/getloadavg.m4 (gl_GETLOADAVG): Use CONFIGURING_GETLOADAVG,
3288         not gl_GETLOADAVG.  Omit unneeded semicolons.
3289         Problems reported by Ralf Wildenhues in
3290         <http://lists.gnu.org/archive/html/bug-gnulib/2006-09/msg00000.html>.
3291         (gl_PREREQ_GETLOADAVG): Use AC_DEFUN, not m4_define.  Put
3292         at the end, which is the usual gnulib style.
3293
3294         * m4/fstypename.m4 (gl_FSTYPENAME): Use AC_CHECK_MEMBERS instead
3295         of doing all the work ourselves.
3296         * m4/fsusage.m4 (gl_PREREQ_FSUSAGE_EXTRA): Don't check for
3297         sys/statvfs.h since the code doesn't use HAVE_SYS_STATVFS_H.
3298
3299 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
3300
3301         * lib/getloadavg.c: Use CONFIGURING_GETLOADAVG, not gl_GETLOADAVG.
3302         Problem reported by Ralf Wildenhues in
3303         <http://lists.gnu.org/archive/html/bug-gnulib/2006-09/msg00000.html>.
3304
3305         * lib/mountlist.c: All uses of HAVE_F_FSTYPENAME_IN_STATFS replaced by
3306         HAVE_STRUCT_STATFS_F_FSTYPENAME.
3307
3308 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
3309
3310         * gnulib-tool (func_emit_lib_Makefile_am): Fix typos in
3311         yesterday's patch by changing test -n to test -z.
3312
3313 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
3314
3315         * modules/getloadavg (Files): Add m4/getloadavg.m4.
3316         (configure.ac): AC_FUNC_GETLOADAVG -> gl_GETLOADAVG, as
3317         the former is now obsolescent.
3318
3319         * modules/chdir-long (Depends-on): Add fcntl.
3320
3321 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
3322
3323         * m4/fnmatch.m4: Add comment that Autoconf AC_FUNC_FNMATCH is
3324         obsolescent, and programs should use gnulib instead.
3325         * m4/getloadavg.m4: New file, with contents taken from Autoconf
3326         but with prefixes changed.
3327
3328 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
3329
3330         * lib/getloadavg.c [defined gl_GETLOADAVG]: Don't include config.h
3331         or stdbool.h, because they might not exist while configuring.
3332
3333         * lib/chdir-long.c: Include <fcntl.h>, for O_DIRECTORY.
3334         Don't include unistd.h or limits.h; not needed, since chdir-long.h
3335         does that for us.
3336         (O_DIRECTORY): Remove.
3337
3338 2006-08-31  Eric Blake  <ebb9@byu.net>
3339
3340         * gnulib-tool: Don't let emacs change spaces to TAB.
3341
3342 2006-08-31  Bruno Haible  <bruno@clisp.org>
3343
3344         * gnulib-tool: When calling func_import more than once, do it in a
3345         subshell.
3346         Reported by Eric Blake <ebb9@byu.net>.
3347
3348 2006-08-31  Bruno Haible  <bruno@clisp.org>
3349
3350         * gnulib-tool (nl): Remove variable.
3351         (sed_transform_lib_file): Use more robust test for config-h module.
3352         (func_import): Fix typo in 2006-08-25 patch.
3353
3354 2006-08-31  Bruno Haible  <bruno@clisp.org>
3355
3356         * gnulib-tool (func_emit_lib_Makefile_am): When --makefile-name was
3357         specified, augment Makefile.am variables instead of assigning them.
3358
3359 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
3360
3361         Work around a bug in both the Linux and SunOS 64-bit kernels:
3362         nanosleep mishandles sleeps for longer than 2**31 seconds.
3363         Problem reported by Frank v Waveren in
3364         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00298.html>.
3365         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Require gl_CLOCK_TIME.
3366         Check for nanosleep bug.
3367         (LIB_NANOSLEEP): Append clock_gettime library if needed.
3368
3369 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
3370
3371         Work around a bug in both the Linux and SunOS 64-bit kernels:
3372         nanosleep mishandles sleeps for longer than 2**31 seconds.
3373         Problem reported by Frank v Waveren in
3374         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00298.html>.
3375         * lib/nanosleep.c (BILLION): New constant.
3376         (getnow) [HAVE_BUG_BIG_NANOSLEEP]: New functions.
3377         (rpl_nanosleep) [HAVE_BUG_BIG_NANOSLEEP]: Completely new
3378         implementation.
3379
3380 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
3381
3382         * modules/nanosleep (Depends-on): Add gettime.
3383
3384 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
3385         and Simon Josefsson  <jas@extundo.com>
3386         and Oskar Liljeblad  <oskar@osk.mine.nu>
3387
3388         * MODULES.html.sh (Support for building documentation): Add gpl, lgpl.
3389         * gnulib-tool (func_import): New license type 'unmodifiable license
3390         text'.
3391         * modules/fdl: Use it.  Longer description.
3392         * module/gpl, module/lgpl: New files.
3393
3394 2006-08-30  Jim Meyering  <jim@meyering.net>
3395
3396         * lib/isapipe.c (isapipe): Rename local s/fd/fd_pair/ to avoid
3397         shadowing the parameter.
3398
3399 2006-08-29  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3400
3401         Sync from Libtool:
3402
3403         2006-08-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3404
3405         * lib/libltdl/argz.c: Use `#ifdef HAVE_CONFIG_H', to facilitate code
3406         sharing with gnulib.  Report by Eric Blake.
3407
3408 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
3409
3410         * modules/isapipe: New file.
3411         * MODULES.html.sh (File descriptor based Input/Output): Add isapipe.
3412
3413 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
3414
3415         * modules/configmake (Makefile.am): Add a comment, and omit
3416         the CONFIGMAKE_ prefix from generated macro names.  Suggested
3417         by Bruno Haible.
3418
3419 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
3420
3421         * m4/isapipe.m4: New file.
3422
3423 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
3424
3425         * lib/isapipe.c, lib/isapipe.h: New files.
3426
3427 2006-08-29  Jim Meyering  <jim@meyering.net>
3428
3429         * modules/configmake (Makefile.am): Make configmake.h depend on
3430         Makefile.  Otherwise, a stale configmake.h could hang around.
3431
3432 2006-08-29  Eric Blake  <ebb9@byu.net>
3433
3434         * lib/error.c (error_at_line, print_errno_message): Match libc, after
3435         resolution of upstream bug 3044.
3436
3437 2006-08-29  Bruno Haible  <bruno@clisp.org>
3438
3439         * modules/localcharset (Depends-on): Add configmake.
3440         (Makefile.am): Remove setting of LIBDIR through DEFS.
3441
3442 2006-08-29  Bruno Haible  <bruno@clisp.org>
3443
3444         * lib/localcharset.c: Include configmake.h in order to get LIBDIR
3445         defined.
3446
3447 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
3448
3449         * modules/fcntl: New file.
3450         * modules/chdir-safer (Depends-on): Add fcntl.
3451         * modules/fts: Likewise.
3452         * modules/mkdir-p: Likewise.
3453
3454         * modules/stdint (Makefile.am): Do not substitute ABSOLUTE_INTTYPES_H.
3455         This undoes the most recent change, since we're now addressing the
3456         problem in a different way.
3457
3458         * gnulib-tool (emit_lib_Makefile_am): Don't put $makefile_name
3459         into output, since the output might be called Makefile.am even
3460         if $makefile_name is something different.
3461         (func_import): Use $makefile_am rather than
3462         ${makefile_name-Makefile.am}, to fix a bug where makefile_name was
3463         empty.
3464
3465         * modules/inttypes (Files): Add m4/inttypes-h.m4.
3466
3467 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
3468
3469         * m4/inttypes.m4 (gl_INTTYPES_H): Move ABSOLUTE_INTTYPES_H code here...
3470         * m4/stdint.m4 (gl_STDINT_H): ... from here.  This undoes the most
3471         recent change to stdint.m4, since we're now addressing the problem in a
3472         different way.
3473
3474 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
3475
3476         * m4/fcntl_h.m4: New file.
3477
3478 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
3479
3480         * lib/fcntl_.h: New file.
3481         * lib/chdir-safer.c (O_DIRECTORY, O_NOFOLLOW): Remove, now that we have
3482         the fcntl module.
3483         * lib/dirchownmod.c: Likewise.
3484         * lib/fts.c: Likewise.
3485
3486         * lib/inttypes_.h [defined _GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H]:
3487         Include @ABSOLUTE_INTTYPES_H@ if available, but do nothing else.
3488         * lib/stdint_.h (_GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H): Define
3489         just before including <inttypes.h>, to avoid circular inclusion.
3490
3491 2006-08-28  Jim Meyering  <jim@meyering.net>
3492
3493         * doc/visibility.texi: Actually read and correct the grammar of the
3494         sentence affected by yesterday's change.
3495
3496 2006-08-28  Eric Blake  <ebb9@byu.net>
3497
3498         * modules/inttypes (Makefile.am): Fix sed error when inttypes.h
3499         needs wrapper.
3500
3501 2006-08-28  Eric Blake  <ebb9@byu.net>
3502
3503         * m4/inttypes.m4 (gl_INTTYPES_H): Fix missing #endif.
3504
3505 2006-08-28  Eric Blake  <ebb9@byu.net>
3506
3507         * m4/codeset.m4 (AM_LANGINFO_CODESET): Avoid compiler warning.
3508
3509 2006-08-28  Bruno Haible  <bruno@clisp.org>
3510
3511         * modules/c-strstr: New file, from GNU gettext.
3512         * MODULES.html.sh (String handling): Add c-strstr.
3513
3514 2006-08-28  Bruno Haible  <bruno@clisp.org>
3515
3516         * m4/inttypes.m4 (gl_INTTYPES_H): Don't test for the existence of SCNX*
3517         macros.
3518         Reported by Eric Blake.
3519
3520 2006-08-28  Bruno Haible  <bruno@clisp.org>
3521
3522         * lib/vasnprintf.c (EOVERFLOW): Remove definition.
3523         (VASNPRINTF): Return a string of length > INT_MAX without failing.
3524         * lib/vasprintf.c: Include errno.h, limits.h.
3525         (EOVERFLOW): New fallback definition.
3526         (vasprintf): Test here whether the string length is > INT_MAX.
3527         * lib/vsnprintf.c: Include errno.h, limits.h.
3528         (EOVERFLOW): New fallback definition.
3529         (vsnprintf): Fix bug when generated string was too long for the buffer.
3530         Test here whether the string length is > INT_MAX.
3531
3532 2006-08-28  Bruno Haible  <bruno@clisp.org>
3533
3534         * lib/inttypes_.h (SCNX*): Remove definitions.
3535         Reported by Eric Blake.
3536
3537 2006-08-28  Bruno Haible  <bruno@clisp.org>
3538
3539         * lib/c-strstr.h: New file, from GNU gettext.
3540         * lib/c-strstr.c: New file, from GNU gettext.
3541
3542 2006-08-28  Bruno Haible  <bruno@clisp.org>
3543
3544         * gnulib-tool: Reorder some statements.
3545
3546 2006-08-28  Bruno Haible  <bruno@clisp.org>
3547
3548         * gnulib-tool: New option --makefile-name.
3549         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am): Use
3550         $makefile_name.
3551         (func_import): Write $makefile_name to the cache file, and read it from
3552         there unless explicitly specified. Use $makefile_name as file name
3553         instead of Makefile.am. Adjust the recommendations accordingly.
3554
3555 2006-08-28  Bruno Haible  <bruno@clisp.org>
3556
3557         * gnulib-tool (func_verify_module): Check against misapplying patch.
3558
3559 2006-08-28  Bruno Haible  <bruno@clisp.org>
3560
3561         * gnulib-tool (func_relativize, func_relconcat): New functions.
3562         Give an error if --local-dir is given with --update.
3563         Remove trailing slashes from $local_gnulib_dir.
3564         (func_import): Store the relativized $local_gnulib_dir in
3565         gnulib-cache.m4, and read it from there if not specified explicitly.
3566
3567 2006-08-28  Bruno Haible  <bruno@clisp.org>
3568
3569         * gnulib-tool (func_get_tests_module): Don't assume that $gnulib_dir
3570         is the current directory. Respect also $local_gnulib_dir.
3571
3572 2006-08-28  Bruno Haible  <bruno@clisp.org>
3573             Simon Josefsson  <jas@extundo.com>
3574
3575         BeOS portability.
3576         * lib/getaddrinfo.c (PF_INET, PF_UNSPEC): New macros.
3577
3578 2006-08-27  Jim Meyering  <jim@meyering.net>
3579
3580         * doc/visibility.texi: Remove duplicate word: "pointer".
3581
3582 2006-08-26  Bruno Haible  <bruno@clisp.org>
3583
3584         * modules/inttypes (Files): Add lib/inttypes_.h, remove lib/inttypes.h.
3585         Add m4/inttypes.m4, remove m4/_inttypes_h.m4 and m4/include_next.m4.
3586         (Makefile.am): Create inttypes.h from inttypes_.h.
3587         * modules/stdint (Makefile.am): Substitute also ABSOLUTE_INTTYPES_H.
3588
3589         * modules/imaxabs: New file.
3590
3591         * modules/imaxdiv: New file.
3592
3593 2006-08-26  Bruno Haible  <bruno@clisp.org>
3594
3595         * m4/inttypes.m4: New file.
3596         * m4/_inttypes_h.m4: Remove file.
3597         * m4/inttypes-pri.m4 (gt_INTTYPES_PRI): Also AC_SUBST
3598         PRI_MACROS_BROKEN.
3599         * m4/stdint.m4 (gl_STDINT_H): Define also ABSOLUTE_INTTYPES_H.
3600
3601         * m4/imaxabs.m4: New file.
3602
3603         * m4/imaxdiv.m4: New file.
3604
3605 2006-08-26  Bruno Haible  <bruno@clisp.org>
3606
3607         * lib/inttypes_.h: New file.
3608         * lib/inttypes.h: Remove file.
3609         * lib/stdint_.h: Include <inttypes.h> through its absolute filename.
3610
3611         * lib/imaxabs.c: New file.
3612
3613         * lib/imaxdiv.c: New file.
3614
3615 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
3616
3617         New config-h module, so that "make" output needn't be cluttered
3618         by -DHAVE_CONFIG_H.
3619         * MODULES.html.sh (Support for building libraries and executables):
3620         Add config-h.
3621         * modules/config-h: New file.
3622         * gnulib-tool (nl, sed_transform_lib_file): New vars.
3623         (func_import): Turn "#ifdef HAVE_CONFIG_H" to "#if 1" if
3624         the config-h module is used.
3625
3626         New configmake module, so that "make" output needn't be cluttered
3627         by fluff like '-DLIBDIR=\"/usr/local/lib\"'.
3628         * MODULES.html.sh (Support for building libraries and executables):
3629         Add configmake.
3630         * modules/configmake: New file.
3631
3632 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
3633
3634         * m4/config-h.m4: New file.
3635
3636 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
3637
3638         * config/srclist.txt: Add elisp-comp.
3639
3640 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
3641
3642         * MODULES.html.sh (Support for building libraries and executables):
3643         Add elisp-comp.
3644         * build-aux/elisp-comp: New file.
3645         * modules/elisp-comp: New file.
3646
3647 2006-08-24  Bruno Haible  <bruno@clisp.org>
3648
3649         * gnulib-tool (func_create_testdir): Use non-default values of
3650         sourcebase and m4base.
3651
3652 2006-08-24  Bruno Haible  <bruno@clisp.org>
3653
3654         * MODULES.html.sh (Compatibility checks for POSIX:2001 functions: Fix
3655         HTML structure.
3656
3657 2006-08-23  Paul Eggert  <eggert@cs.ucla.edu>
3658
3659         * modules/openat (Depends-on): Add lchown.
3660
3661 2006-08-23  Bruno Haible  <bruno@clisp.org>
3662
3663         * gnulib-tool (func_import, func_create_testdir): Emit an invocation
3664         of gl_LOCK_EARLY instead of gl_LOCK.
3665
3666 2006-08-23  Bruno Haible  <bruno@clisp.org>
3667
3668         * m4/lock.m4 (gl_LOCK_BODY): Change the default value of gl_use_threads
3669         on OSF/1 to no.
3670         Reported by Stephen Cartwright <sgcartwr@ucalgary.ca>.
3671
3672 2006-08-23  Bruno Haible  <bruno@clisp.org>
3673
3674         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Don't consider BeOS statvfs
3675         as unusable.
3676
3677         * m4/lock.m4 (gl_LOCK_EARLY): Renamed from gl_LOCK.
3678         (gl_LOCK_BODY): Remove gl_PREREQ_LOCK invocation.
3679         (gl_LOCK): New macro.
3680
3681 2006-08-22  Simon Josefsson  <jas@extundo.com>
3682
3683         * modules/gc-md5 (Makefile.am): Need to add md5.h, after changes
3684         to md5 module.
3685
3686 2006-08-22  Simon Josefsson  <jas@extundo.com>
3687
3688         * MODULES.html.sh: Add "Support for maintaining and release
3689         projects".
3690
3691         * build-aux/gnupload: New file, from coreutils.
3692
3693 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
3694
3695         Avoid the need for AC_LIBSOURCES in m4 macros.
3696         * modules/arcfour (EXTRA_DIST): Add arcfour.h.
3697         * modules/arctwo (EXTRA_DIST): Add arctwo.h.
3698         * modules/check-version (EXTRA_DIST): Add check-version.h.
3699         * modules/crc (EXTRA_DIST): Add crc.h.
3700         * modules/des (EXTRA_DIST): Add des.h.
3701         * modules/gc (EXTRA_DIST): Add gc.h.
3702         * modules/getdelim (EXTRA_DIST): Add getdelim.h.
3703         * modules/getline (EXTRA_DIST): Add getline.h.
3704         * modules/getlogin_r (EXTRA_DIST): Add getlogin_r.h.
3705         * modules/hmac-md5 (EXTRA_DIST): Add hmac.h.
3706         * modules/hmac-sha1 (EXTRA_DIST): Add hmac.h.
3707         * modules/md2 (EXTRA_DIST): Add md2.h.
3708         * modules/md4 (EXTRA_DIST): Add md4.h.
3709         * modules/pagealign_alloc (EXTRA_DIST): Add pagealign_alloc.h.
3710         * modules/read-file (EXTRA_DIST): Add read-file.h.
3711         * modules/readline (EXTRA_DIST): Add readline.h.
3712         * modules/rijndael (EXTRA_DIST): Add rijndael-alg-fst.h,
3713         rijndael-api-fst.h.
3714
3715 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
3716
3717         * m4/rijndael.m4 (gl_ARCFOUR):
3718         * m4/arctwo.m4 (gl_ARCTWO):
3719         * m4/check-version.m4 (gl_CHECK_VERSION):
3720         * m4/crc.m4 (gl_CRC):
3721         * m4/des.m4 (gl_DES):
3722         * m4/gc-pbkdf2-sha1.m4 (gl_GC_PBKDF2_SHA1):
3723         * m4/gc.m4 (gl_GC):
3724         * m4/getdelim.m4 (gl_FUNC_GETDELIM):
3725         * m4/getline.m4 (gl_FUNC_GETLINE):
3726         * m4/getlogin_r.m4 (gl_GETLOGIN_R_SUBSTITUTE):
3727         * m4/hmac-md5.m4 (gl_HMAC_MD5):
3728         * m4/hmac-sha1.m4 (gl_HMAC_SHA1):
3729         * m4/md2.m4 (gl_MD2):
3730         * m4/md4.m4 (gl_MD4):
3731         * m4/pagealign_alloc.m4 (gl_PAGEALIGN_ALLOC):
3732         * m4/read-file.m4 (gl_FUNC_READ_FILE):
3733         * m4/readline.m4 (gl_FUNC_READLINE):
3734         * m4/rijndael.m4 (gl_RIJNDAEL):
3735         Don't use AC_LIBSOURCES; instead, rely on the files in ../modules/
3736         to get the necessary .h files and whatnot.
3737
3738 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
3739
3740         * config/srclist.txt: Remove gnupload, since coreutils now syncs from
3741         gnulib rather than the other way around.
3742         * config/srclistvars.sh (COREUTILS): Remove.
3743
3744 2006-08-22  Jim Meyering  <jim@meyering.net>
3745
3746         * modules/mkdir-p (Makefile.am): Fix typo: s/lib+SOURCES/lib_SOURCES/.
3747
3748         * modules/getpass-gnu (Makefile.am): Add getpass.h to EXTRA_DIST.
3749
3750 2006-08-22  Eric Blake  <ebb9@byu.net>
3751
3752         * modules/regexprops-generic: New file.
3753         * MODULES.html.sh (Support for building documentation): List it.
3754
3755 2006-08-22  Eric Blake  <ebb9@byu.net>
3756
3757         * m4/stdint_h.m4 (gl_AC_HEADER_STDINT_H): Avoid compiler warning.
3758         * m4/inttypes_h.m4 (gl_AC_HEADER_INTTYPES_H): Likewise.
3759         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Likewise.
3760         * m4/intmax_t.m4 (gt_AC_TYPE_INTMAX_T): Likewise.
3761
3762 2006-08-22  Bruno Haible  <bruno@clisp.org>
3763
3764         * gnulib-tool (func_emit_lib_Makefile_am): Don't treat lib_LIBRARIES
3765         and lib_LTLIBRARIES like the other lib_* variables.
3766
3767 2006-08-22  Bruno Haible  <bruno@clisp.org>
3768
3769         * build-aux/x-to-1.in: New file, from GNU gettext.
3770
3771 2006-08-22  Bruno Haible  <bruno@clisp.org>
3772
3773         * m4/readutmp.m4 (gl_READUTMP): Compile readutmp.c only if <utmp.h> or
3774         <utmpx.h> exists.
3775
3776 2006-08-22  Bruno Haible  <bruno@clisp.org>
3777
3778         * lib/readutmp.h: Skip most definitions if neither <utmp.h> nor
3779         <utmpx.h> exists.
3780
3781 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
3782
3783         BeOS portability.
3784         * lib/dirchownmod.c (dirchownmod): Don't use fchmod if it doesn't
3785         exist.
3786         Problem reported by Bruno Haible.
3787
3788 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
3789
3790         Avoid the need for AC_LIBSOURCES in m4 macros.
3791         * modules/acl (EXTRA_DIST): Add acl.h.
3792         * modules/argmatch (Files): Add m4/argmatch.m4.
3793         (configure.ac): Add gl_ARGMATCH.
3794         (EXTRA_DIST): Renamed from lib_SOURCES, for
3795         consistency with the other modules.  Remove argmatch.c.
3796         * modules/backupfile (EXTRA_DIST): Add backupfile.h.
3797         * modules/c-strtod (EXTRA_DIST): Add c-strtod.h.
3798         * modules/c-strtold (EXTRA_DIST): Add c-strtod.c, c-strtod.h.
3799         * modules/canonhost (EXTRA_DIST): Add c-canonhost.h.
3800         * modules/canonicalize (EXTRA_DIST): Add canonicalize.h.
3801         * modules/chdir-long (EXTRA_DIST): Add chdir-long.h.
3802         * modules/chdir-safer (EXTRA_DIST): Add chdir-safer.h.
3803         * modules/cloexec (EXTRA_DIST): Add cloexec.h.
3804         * modules/close-stream (EXTRA_DIST): Add close-stream.h.
3805         * modules/closeout (EXTRA_DIST): Add closeout.h.
3806         * modules/cycle-check (EXTRA_DIST): Add cycle-check.h.
3807         * modules/dev-ino (EXTRA_DIST): Add dev-ino.h.
3808         * modules/dirfd (EXTRA_DIST): Add dirfd.h.
3809         * modules/dirname (EXTRA_DIST): Renamed from lib_SOURCES.  Add
3810         dirname.h; remove basename.c and stripslash.c.
3811         * modules/exclude (EXTRA_DIST): Add exclude.h.
3812         * modules/exitfail (EXTRA_DIST): Add exitfail.h.
3813         * modules/fcntl-safer (EXTRA_DIST): Add fcntl-safer.h fcntl--.h.
3814         * modules/file-type (EXTRA_DIST): Add file-type.h.
3815         * modules/filemode (EXTRA_DIST): Add filemode.h.
3816         * modules/filenamecat (EXTRA_DIST): Add filenamecat.h.
3817         * modules/fopen-safer (EXTRA_DIST): Add stdio-safer.h stdio--.h.
3818         * modules/fpending (EXTRA_DIST): Add __fpending.h.
3819         * modules/fprintftime (EXTRA_DIST): Add fprintftime.h.
3820         * modules/fsusage (EXTRA_DIST): Add fsusage.h.
3821         * modules/fts (EXTRA_DIST): Add fts_.h fts-cycle.c.
3822         * modules/getcwd (EXTRA_DIST): Add getcwd.h.
3823         * modules/getdate (EXTRA_DIST): Add getdate.c.
3824         * modules/gethrxtime (EXTRA_DIST): Add gethrxtime.h xtime.h.
3825         * modules/getpagesize (EXTRA_DIST): Add getpagesize.h.
3826         * modules/getpass (EXTRA_DIST): Add getpass.h.
3827         * modules/glob (EXTRA_DIST): Add glob_.h glob-libc.h.
3828         * modules/group-member (EXTRA_DIST): Add group-member.h.
3829         * modules/hard-locale (EXTRA_DIST): Add hard-locale.h.
3830         * modules/hash (EXTRA_DIST): Add hash.h.
3831         * modules/human (EXTRA_DIST): Add human.h.
3832         * modules/inttypes (EXTRA_DIST): Add inttypes.h.
3833         * modules/lchmod (EXTRA_DIST): Add lchmod.h.
3834         * modules/lchown (EXTRA_DIST): Add lchown.h.
3835         * modules/long-options (EXTRA_DIST): Add long-options.h.
3836         * modules/lstat (EXTRA_DIST): Add lstat.h.
3837         * modules/md5 (EXTRA_DIST): Add memcasecmp.h.
3838         * modules/memcoll (EXTRA_DIST): Add memcoll.h.
3839         * modules/mempcpy (EXTRA_DIST): Add mempcpy.h.
3840         * modules/memrchr (EXTRA_DIST): Add memrchr.h.
3841         * modules/memxor (EXTRA_DIST): Add memxor.h.
3842         * modules/mkancesdirs (EXTRA_DIST): Add mkancesdirs.h.
3843         * modules/mkdir-p (EXTRA_DIST): Add modechange.h.
3844         * modules/mountlist (EXTRA_DIST): Add mountlist.h.
3845         * modules/openat (EXTRA_DIST): Add at-func.c openat.h openat-priv.h.
3846         * modules/pathmax (EXTRA_DIST): Add pathmax.h.
3847         * modules/physmem (EXTRA_DIST): Add physmem.h.
3848         * modules/posixtm (EXTRA_DIST): Add posixtm.h.
3849         * modules/posixver (EXTRA_DIST): Add posixver.h.
3850         * modules/quote (EXTRA_DIST): Add quote.h.
3851         * modules/quotearg (EXTRA_DIST): Add quotearg.h.
3852         * modules/readtokens (EXTRA_DIST): Add readtokens.h.
3853         * modules/readutmp (EXTRA_DIST): Add readutmp.h.
3854         * modules/regex (EXTRA_DIST): Add regcomp.c regex.h regex_internal.c
3855         regex_internal.h regexec.c.
3856         * modules/safe-read (EXTRA_DIST): Add safe-read.h.
3857         * modules/safe-write (EXTRA_DIST): Add safe-write.h.
3858         * modules/same (EXTRA_DIST): Add same.h.
3859         * modules/same-inode (EXTRA_DIST): Add same-inode.h.
3860         * modules/save-cwd (EXTRA_DIST): Add save-cwd.h.
3861         * modules/savedir (EXTRA_DIST): Add savedir.h.
3862         * modules/sha1 (EXTRA_DIST): Add sha1.h.
3863         * modules/sig2str (EXTRA_DIST): Add sig2str.h.
3864         * modules/stat-macros (EXTRA_DIST): Add stat-macros.h.
3865         * modules/stat-time (EXTRA_DIST): Add stat-time.h.
3866         * modules/stdlib-safer (EXTRA_DIST): Add stdlib-safer.h stdlib--.h.
3867         * modules/strdup (EXTRA_DIST): Add strdup.h.
3868         * modules/strftime (EXTRA_DIST): Add strftime.h.
3869         * modules/strndup (EXTRA_DIST): Add strndup.h.
3870         * modules/strnlen (EXTRA_DIST): Add strnlen.h.
3871         * modules/strverscmp (EXTRA_DIST): Add strverscmp.h.
3872         * modules/time_r (EXTRA_DIST): Add time_r.h.
3873         * modules/timespec (EXTRA_DIST): Add timespec.h.
3874         * modules/tmpfile-safer (EXTRA_DIST): Add stdio-safer.h stdio--.h.
3875         * modules/unistd-safer (EXTRA_DIST): Add unistd-safer.h unistd--.h.
3876         * modules/unlinkdir (EXTRA_DIST): Add unlinkdir.h.
3877         * modules/unlocked-io (EXTRA_DIST): Add unlocked-io.h.
3878         * modules/userspec (EXTRA_DIST): Add userspec.h.
3879         * modules/utimecmp (EXTRA_DIST): Add utimecmp.h.
3880         * modules/utimens (EXTRA_DIST): Add utimens.h.
3881         * modules/xalloc (EXTRA_DIST): Add xalloc.h.
3882         * modules/xgetcwd (EXTRA_DIST): Add xgetcwd.h.
3883         * modules/xnanosleep (EXTRA_DIST): Add xnanosleep.h.
3884         * modules/xreadlink (EXTRA_DIST): Add xreadlink.h.
3885         * modules/xstrtod (EXTRA_DIST): Add xstrtod.h.
3886         * modules/xstrtol (EXTRA_DIST): Add xstrtol.h.
3887         * modules/xstrtold (EXTRA_DIST): Add xstrtod.c xstrtod.h.
3888         * modules/yesno (EXTRA_DIST): Add yesno.h.
3889
3890 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
3891
3892         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Check for fchmod.
3893
3894         * m4/argmatch.m4: New file, from coreutils with AC_LIBSOURCES removed.
3895         * m4/dev-ino.m4, same-inode.m4: Remove.
3896
3897         * m4/_inttypes_h.m4 (gl_INTTYPES_H):
3898         * m4/acl.m4 (AC_FUNC_ACL):
3899         * m4/backupfile.m4 (gl_BACKUPFILE):
3900         * m4/c-strtod.m4 (gl_C99_STRTOLD):
3901         * m4/canon-host.m4 (gl_CANON_HOST):
3902         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME):
3903         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG):
3904         * m4/chdir-safer.m4 (gl_CHDIR_SAFER):
3905         * m4/cloexec.m4 (gl_CLOEXEC):
3906         * m4/close-stream.m4 (gl_CLOSE_STREAM):
3907         * m4/closeout.m4 (gl_CLOSEOUT):
3908         * m4/dirfd.m4 (gl_FUNC_DIRFD):
3909         * m4/dirname.m4 (gl_DIRNAME):
3910         * m4/exclude.m4 (gl_EXCLUDE):
3911         * m4/exitfail.m4 (gl_EXITFAIL):
3912         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER):
3913         * m4/file-type.m4 (gl_FILE_TYPE):
3914         * m4/filemode.m4 (gl_FILEMODE):
3915         * m4/filenamecat.m4 (gl_FILE_NAME_CONCAT):
3916         * m4/fpending.m4 (gl_FUNC_FPENDING):
3917         * m4/fprintftime.m4 (gl_FPRINTFTIME):
3918         * m4/fts.m4 (gl_FUNC_FTS):
3919         * m4/getcwd.m4 (gl_FUNC_GETCWD_NULL):
3920         * m4/getdate.m4 (gl_GETDATE):
3921         * m4/gethrxtime.m4 (gl_GETHRXTIME):
3922         * m4/getpagesize.m4 (gl_GETPAGESIZE):
3923         * m4/getpass.m4 (gl_FUNC_GETPASS):
3924         * m4/gettime.m4 (gl_GETTIME):
3925         * m4/getugroups.m4 (gl_GETUGROUPS):
3926         * m4/glob.m4 (gl_GLOB_SUBSTITUTE):
3927         * m4/group-member.m4 (gl_FUNC_GROUP_MEMBER):
3928         * m4/hard-locale.m4 (gl_HARD_LOCALE):
3929         * m4/hash.m4 (gl_HASH):
3930         * m4/idcache.m4 (gl_IDCACHE):
3931         * m4/lchmod.m4 (gl_FUNC_LCHMOD):
3932         * m4/lchown.m4 (gl_FUNC_LCHOWN):
3933         * m4/long-options.m4 (gl_LONG_OPTIONS):
3934         * m4/lstat.m4 (gl_FUNC_LSTAT):
3935         * m4/md5.m4 (gl_MD5):
3936         * m4/memcasecmp.m4 (gl_MEMCASECMP):
3937         * m4/memcoll.m4 (gl_MEMCOLL):
3938         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY):
3939         * m4/memrchr.m4 (gl_FUNC_MEMRCHR):
3940         * m4/memxor.m4 (gl_MEMXOR):
3941         * m4/mkancesdirs.m4 (gl_MKANCESDIRS):
3942         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS):
3943         * m4/modechange.m4 (gl_MODECHANGE):
3944         * m4/mountlist.m4 (gl_MOUNTLIST):
3945         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
3946         * m4/openat.m4 (gl_FUNC_OPENAT):
3947         * m4/pathmax.m4 (gl_PATHMAX):
3948         * m4/physmem.m4 (gl_PHYSMEM):
3949         * m4/posixtm.m4 (gl_POSIXTM):
3950         * m4/posixver.m4 (gl_POSIXVER):
3951         * m4/quote.m4 (gl_QUOTE):
3952         * m4/quotearg.m4 (gl_QUOTEARG):
3953         * m4/readtokens.m4 (gl_READTOKENS):
3954         * m4/readutmp.m4 (gl_READUTMP):
3955         * m4/regex.m4 (gl_REGEX):
3956         * m4/safe-read.m4 (gl_SAFE_READ):
3957         * m4/safe-write.m4 (gl_SAFE_WRITE):
3958         * m4/same.m4 (gl_SAME):
3959         * m4/save-cwd.m4 (gl_SAVE_CWD):
3960         * m4/savedir.m4 (gl_SAVEDIR):
3961         * m4/settime.m4 (gl_SETTIME):
3962         * m4/sha1.m4 (gl_SHA1):
3963         * m4/sig2str.m4 (gl_FUNC_SIG2STR):
3964         * m4/stat-macros.m4 (gl_STAT_MACROS):
3965         * m4/stat-time.m4 (gl_STAT_TIME):
3966         * m4/stdio-safer.m4 (gl_FOPEN_SAFER):
3967         * m4/stdlib-safer.m4 (gl_STDLIB_SAFER):
3968         * m4/strdup.m4 (gl_FUNC_STRDUP):
3969         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME):
3970         * m4/strndup.m4 (gl_FUNC_STRNDUP):
3971         * m4/strnlen.m4 (gl_FUNC_STRNLEN):
3972         * m4/strverscmp.m4 (gl_FUNC_STRVERSCMP):
3973         * m4/time_r.m4 (gl_TIME_R):
3974         * m4/timespec.m4 (gl_TIMESPEC):
3975         * m4/unistd-safer.m4 (gl_UNISTD_SAFER):
3976         * m4/unlinkdir.m4 (gl_UNLINKDIR):
3977         * m4/unlocked-io.m4 (gl_FUNC_GLIBC_UNLOCKED_IO):
3978         * m4/userspec.m4 (gl_USERSPEC):
3979         * m4/utimecmp.m4 (gl_UTIMECMP):
3980         * m4/utimens.m4 (gl_UTIMENS):
3981         * m4/xalloc.m4 (gl_XALLOC):
3982         * m4/xgetcwd.m4 (gl_XGETCWD):
3983         * m4/xnanosleep.m4 (gl_XNANOSLEEP):
3984         * m4/xreadlink.m4 (gl_XREADLINK):
3985         * m4/xstrtod.m4 (gl_XSTRTOD):
3986         * m4/yesno.m4 (gl_YESNO):
3987         Don't use AC_LIBSOURCES; instead, rely on the files in ../modules/
3988         to get the necessary .h files and whatnot.
3989
3990 2006-08-21  Mark D. Baushke  <mdb@gnu.org>
3991             Bruno Haible  <bruno@clisp.org>
3992
3993         * gnulib-tool (func_verify_module): Work around Sun's non-POSIX 1003.2
3994         /bin/sh understanding of '!' conditional negation.
3995
3996 2006-08-21  Jim Meyering  <jim@meyering.net>
3997
3998         * modules/openat (Depends-on): Really alphabetize.
3999
4000         * modules/acl (Depends-on): Add error and quote.
4001
4002         * check-module (find_included_lib_files): Add at-func.c to the
4003         ok-to-include-more-than-once white list.
4004
4005         * modules/openat (Depends-on): Add lstat.  Alphabetize.
4006
4007 2006-08-21  Bruno Haible  <bruno@clisp.org>
4008
4009         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
4010         Emit a pkgdata_DATA variable only if some snippets add contents to it.
4011         Reported by Martin Lambers <marlam@marlam.de>.
4012
4013 2006-08-21  Bruno Haible  <bruno@clisp.org>
4014
4015         * gnulib-tool (func_emit_lib_Makefile_am): If the snippets already
4016         specify an installation location, don't emit a noinst_LIBRARIES or
4017         noinst_LTLIBRARIES assignment.
4018
4019 2006-08-21  Bruno Haible  <bruno@clisp.org>
4020
4021         BeOS portability.
4022         * modules/mbchar (Include): Don't test HAVE_WCTYPE_H any more, since
4023         BeOS has mbrtowc() but no <wctype.h>.
4024
4025 2006-08-21  Bruno Haible  <bruno@clisp.org>
4026
4027         BeOS portability.
4028         * m4/mbchar.m4 (gl_MBCHAR): Compile mbchar.c also if <wctype.h> doesn't
4029         exist.
4030
4031 2006-08-21  Bruno Haible  <bruno@clisp.org>
4032
4033         BeOS portability.
4034         * lib/mbchar.h: Include <wctype.h> only if it exists.
4035
4036 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
4037
4038         Remove files that are no longer needed by their respective modules.
4039         * m4/obstack.m4: Remove.
4040         * m4/strerror_r.m4: Remove.
4041         * m4/uint32_t.m4: Remove.
4042         * m4/uintptr_t.m4: Remove.
4043         * m4/ullong_max.m4: Remove.
4044         * m4/xstrtoimax.m4: Remove.
4045         * m4/xstrtoumax.m4: Remove.
4046
4047         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Do not require
4048         gl_AC_TYPE_UINTMAX_T, gl_STRUCT_DEV_INO, or gl_SAME_INODE, since gnulib
4049         dependencies now capture this.
4050
4051         * m4/cycle-check.m4 (gl_CYCLE_CHECK):
4052         Do not use AC_LIBSOURCES, since gnulib modules now do this.
4053         * m4/fsusage.m4 (gl_FSUSAGE): Likewise.
4054         * m4/human.m4 (gl_HUMAN): Likewise.
4055         * m4/inttostr.m4 (gl_INTTOSTR): Likewise.
4056         * m4/xstrtol.m4 (gl_XSTRTOL): Likewise.
4057
4058         * m4/filemode.m4 (gl_FILEMODE): Require AC_STRUCT_ST_DM_MODE.
4059
4060         * m4/filemode.m4 (gl_PREREQ_FSUSAGE_EXTRA): Do not require
4061         gl_AC_TYPE_INTMAX_T or gl_AC_TYPE_UINTMAX_T, since we now require
4062         stdint.
4063         * m4/human.m4 (gl_HUMAN): Likewise.
4064         * m4/inttostr.m4 (gl_PREREQ_INTTOSTR): Likewise.
4065         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Likewise.
4066         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Likewise.
4067         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Likewise.
4068         * m4/xstrtol (gl_XSTRTOL): Likewise.
4069
4070         * m4/gethrxtime.m4 (gl_XTIME): gl_AC_TYPE_LONG_LONG ->
4071         AC_TYPE_LONG_LONG_INT.
4072         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Likewise.
4073         * m4/strtoll.m4 (gl_FUNC_STRTOLL): Likewise.
4074         * m4/strtoull.m4 (gl_FUNC_STRTOULL): Likewise, for unsigned long.
4075         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Likewise.
4076
4077         * m4/human.m4 (gl_HUMAN): Do not require AM_STDBOOL_H since we depend
4078         on stdbool.
4079
4080         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL_H, gl_PREREQ_XSTRTOL): Remove.
4081         (gl_PREREQ_XSTRTOUL): Remove.
4082
4083         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Check for hasmntopt.
4084
4085         * m4/posixver.m4: Fix comment since head -1 now works even in POSIX
4086         mode.
4087
4088 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
4089
4090         Add and change modules to make it easier for coreutils to use
4091         gnulib-tool.
4092         * modules/backupfile (Files): Remove m4/d-ino.m4.
4093         (Depends-on): Add d-ino.
4094         * modules/cycle-check (Depends-on): Add stdint.
4095         (lib_SOURCES): Add cycle-check.h.
4096         * modules/d-ino: New module.
4097         * modules/d-type: New module.
4098         * modules/error (Files): Remove m4/strerror_r.m4.
4099         * modules/filemode (Files): Add m4/st_dm_mode.m4.
4100         * modules/fsuage (Files): Remove m4/ulonglong.m4, m4/stdint_h.m4,
4101         m4/inttypes_h.m4, m4/uintmax_t.m4.
4102         (Depends-on): Add stdint.
4103         (lib_SOURCES): Add fsusage.h.
4104         * modules/getcwd (Files): Remove d-ino.m4.
4105         (Depends-on): Add d-ino.
4106         * modules/getndelim2 (Depends-on): Add stdint.
4107         * modules/glob (Files): Remove m4/d-type.m4.
4108         (Depends-on): Add d-type.
4109         * modules/host-os: New module.
4110         * modules/human (Files):  Remove m4/ulonglong.m4, m4/stdint_h.m4,
4111         m4/inttypes_h.m4, m4/uintmax_t.m4.
4112         * Depends-on: Add stdint.
4113         (lib_SOURCES): Add human.h.
4114         * modules/inttostr (Files): Remove m4/intmax_t.m4,
4115         m4/inttostr.m4, m4/inttypes_h.m4, m4/longlong.m4, m4/stdint_h.m4,
4116         m4/uintmax_t.m4, m4/ulonglong.m4.
4117         (Depends-on): Add stdint.
4118         (EXTRA_DIST): Add inttostr.h.
4119         * modules/lchmod: New module.
4120         * modules/link-follow: New module.
4121         * modules/mkdir-p (Files): Remove lib/lchmod.h, m4/lchmod.m4.
4122         (Depends-on): Add lchmod.
4123         * modules/mkstemp (Files): Remove m4/ulonglong.m4,
4124         m4/stdint_h.m4, m4/inttypes_h.m4, m4/uintmax_t.m4.
4125         (Depends-on): Add stdint.
4126         * modules/obstack (Files): Remove m4/inttypes_h.m4, m4/obstack.m4,
4127         m4/stdint_h.m4, m4/uintmax_t.m4, m4/ulonglong.m4.
4128         (Depends-on): Add stdint.
4129         (configure.ac): Change gl_OBSTACK to AC_FUNC_OBSTACK.
4130         * modules/perl: New module.
4131         * modules/regex (Depends-on): Add stdint.
4132         * modules/rmdir-errno: New module.
4133         * modules/strtoimax (Files): Remove m4/stdint_h.m4, m4/inttypes_h.m4,
4134         m4/intmax_t.m4.
4135         (Depends-on): Add stdint.
4136         * modules/strtoumax (Files): Remove m4/stdint_h.m4, m4/inttypes_h.m4,
4137         m4/uintmax_t.m4.
4138         (Depends-on): Add stdint.
4139         * modules/unlink-busy: New module.
4140         * modules/utimecmp (Depends-on): Add stdint.
4141         * modules/uptime: New module.
4142         * modules/winsz-ioctl: New module.
4143         * modules/winsz-termios: New module.
4144         * modules/xnanosleep (Depends-on): Add nanosleep.
4145         * modules/ullong_max: Remove.
4146         * modules/xstrtoimax (Files): Remove m4/xstrtoimax.m4.
4147         (configure.ac): Remove gl_XSTRTOIMAX; no action needed now.
4148         * modules/xstrtol (Files): Remove m4/ulonglong.m4, m4/longlong.m4,
4149         m4/stdint_h.m4, m4/inttypes_h.m4, m4/uintmax_t.m4, m4/intmax_t.m4.
4150         (Depends-on): Add inttypes.
4151         (lib_SOURCES): Add xstrtol.h.
4152         * modules/xstrtoumax (Files): Remove m4/xstrtoumax.m4.
4153         (configure.ac): Remove gl_XSTRTOUMAX; no action needed now.
4154         * MODULES.html.sh: Move 'assert' into the assert section.
4155         Move 'dummy' into the linking section.
4156         Remove ullong_max.
4157         Add section for compatibility checks for POSIX:2001 functions,
4158         and put d-ino, d-type, link-follow, rmdir-errno, unlink-busy,
4159         winsz-ioctl, and winsz-termios into it.
4160         Add lchmod.
4161         Add top-level Misc section and put host-os, perl, and uptime
4162         into it.
4163
4164 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
4165
4166         * lib/cycle-check.h: Include <stdint.h> unconditionally, since we
4167         now assume the stdint module.  Do not include inttypes.h.
4168         * lib/fsusage.h: Likewise.
4169         * lib/getndelim2.c: Likewise.
4170         * lib/human.h: Likewise.
4171         * lib/inttostr.h: Likewise.
4172         * lib/obstack.c: Likewise.
4173         * lib/regex_internal.h: Likewise.
4174         * lib/tempname.c: Likewise.
4175         * lib/utimecmp.c: Likewise.
4176         * lib/xstrtol.h: Likewise.
4177
4178         * lib/stat_.h: Fix typo: HAVE_FUNC_LSTAT -> HAVE_LSTAT.
4179
4180         * lib/strtoimax.c: Adjust to macro name changes in Autoconf,
4181         e.g., HAVE_LONG_LONG -> HAVE_LONG_LONG_INT.
4182         * lib/xtime.h: Likewise.
4183
4184 2006-08-19  Paul Eggert  <eggert@cs.ucla.edu>
4185
4186         * modules/openat (Files): Add lib/fchmodat.c.
4187         Fixes problem reported by Jay Youngman.
4188
4189 2006-08-19  Paul Eggert  <eggert@cs.ucla.edu>
4190
4191         * lib/fchmodat.c: New file, from coreutils.  This was inadvertently
4192         omitted in the 2006-08-17 update.  Problem reported by Jay Youngman.
4193
4194 2006-08-18  Paul Eggert  <eggert@cs.ucla.edu>
4195             Bruno Haible  <bruno@clisp.org>
4196
4197         * m4/bison-i18n.m4 (BISON_I18N): Also handle the case where yacc exists
4198         and is a script that invokes bison. Tighten the code. Add comments.
4199
4200 2006-08-18  Jim Meyering  <jim@meyering.net>
4201
4202         * m4/gethrxtime.m4 (gl_PREREQ_GETHRXTIME): Also check for
4203         CLOCK_REALTIME, since gethrxtime may revert to using clock_gettime via
4204         gettime.c.  Gabor Z. Papp reported that gethrxtime-using programs
4205         failed to link due to unresolved clock_gettime on a linux-2.4.x system.
4206
4207 2006-08-18  Bruno Haible  <bruno@clisp.org>
4208
4209         * modules/bison-i18n: New file.
4210         * MODULES.html.sh (Internationalization functions): Add it.
4211
4212 2006-08-18  Bruno Haible  <bruno@clisp.org>
4213
4214         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Also check for
4215         sys/statvfs.h. When getmntinfo was found, check its declaration and
4216         set either MOUNTED_GETMNTINFO or MOUNTED_GETMNTINFO2 depending on it.
4217
4218 2006-08-18  Bruno Haible  <bruno@clisp.org>
4219
4220         * m4/bison-i18n.m4: New file, from bison.
4221
4222 2006-08-18  Bruno Haible  <bruno@clisp.org>
4223
4224         * lib/mountlist.c [MOUNTED_GETMNTINFO2]: Include sys/statvfs.h.
4225         (ME_DUMMY): Treat "kernfs" as a dummy.
4226         (read_file_system_list) [MOUNTED_GETMNTINFO2]: Implement.
4227
4228 2006-08-17  Paul Eggert  <eggert@cs.ucla.edu>
4229
4230         Update from coreutils.
4231
4232         2006-08-15  Jim Meyering  <jim@meyering.net>
4233
4234         * m4/openat.m4 (gl_FUNC_OPENAT): Add at-func.c via AC_LIBSOURCES.
4235
4236         2006-01-17  Jim Meyering  <jim@meyering.net>
4237
4238         * m4/fts.m4 (gl_FUNC_FTS_CORE): Depend on gl_FUNC_OPENAT.
4239
4240         2006-01-11  Jim Meyering  <jim@meyering.net>
4241
4242         * m4/openat.m4 (gl_FUNC_OPENAT): Require and compile fchmodat.c.
4243         Check for the lchmod function.
4244
4245 2006-08-17  Paul Eggert  <eggert@cs.ucla.edu>
4246
4247         Update from coreutils.
4248
4249         * lib/__fpending.h: Add copyright notice.
4250         * lib/fprintftime.h: Likewise.
4251         * lib/savedir.c: Use (C) in copyright notice.
4252         * lib/savedir.h: Likewise.
4253
4254         2006-08-15  Jim Meyering  <jim@meyering.net>
4255
4256         * lib/at-func.c: New file, with the logic of all emulated at-functions.
4257         * lib/openat-priv.h: Include <errno.h> and define ENOSYS,
4258         in support of the EXPECTED_ERRNO macro.
4259         * lib/openat.c (fstatat, unlinkat, fchownat): Remove function
4260         definitions.  Instead, define the appropriate symbols and include
4261         "at-func.c".
4262         * lib/mkdirat.c (mkdirat): Likewise.
4263         * lib/fchmodat.c (fchmodat): Likewise.
4264         (ENOSYS): Remove definition.
4265         * lib/openat.c: Don't include <errno.h>, now that "openat-priv.h" does
4266         it.  Don't include "unistd--.h" -- it wasn't ever used.
4267
4268         2006-01-17  Jim Meyering  <jim@meyering.net>
4269
4270         Rewrite fts.c not to change the current working directory,
4271         by using openat, fstatat, fdopendir, etc..
4272
4273         * lib/fts.c [! _LIBC]: Include "openat.h" and "unistd--.h".
4274         (HAVE_OPENAT_SUPPORT): Define.
4275         [_LIBC] (fchdir): Don't undef or define; no longer used.
4276         (FCHDIR): Define in terms of cwd_advance_fd rather than fchdir.
4277         Now, this `function' always succeeds, and consumes its file descriptor
4278         parameter -- so callers must not close such FDs.  Update callers.
4279         (diropen_fd, opendirat, cwd_advance_fd): New functions.
4280         (diropen): Add parameter, SP.  Adjust all callers.
4281         Implement using diropen_fd, rather than open.
4282         (fts_open): Initialize new member, fts_cwd_fd.
4283         Remove fts_rft-setting code.
4284         (fts_close): Close fts_cwd_fd, if necessary.
4285         (__opendir2): Define in terms of opendir or opendirat,
4286         depending on whether the FST_NOCHDIR flag is set.
4287         (fts_build): Since fts_safe_changedir consumes its FD, and since
4288         this code must do `closedir(dirp)', dup the dirfd(dirp) argument,
4289         and close the dup'd file descriptor upon failure.
4290         (fts_stat): Use fstatat(...AT_SYMLINK_NOFOLLOW) in place of lstat.
4291         (fts_safe_changedir): Tweak semantics to reflect that this function
4292         now calls cwd_advance_fd and hence consumes its FD argument.
4293         * lib/fts_.h [struct FTS] (fts_cwd_fd): New member.
4294         [struct FTS] (fts_rft): Remove now-unused member.
4295         [struct FTS] (fts_cycle.state): Improve comment.
4296
4297         * lib/openat.c (openat_needs_fchdir): New function.
4298         * lib/openat.h (openat_needs_fchdir): Declare it.
4299
4300 2006-08-16  Paul Eggert  <eggert@cs.ucla.edu>
4301
4302         * lib/memcoll.c (memcoll): Set errno = 0 in the shortcut case, too.
4303         Problem and fix reported by Pádraig Brady in
4304         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00099.html>.
4305
4306 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
4307
4308         * modules/cycle-check (configure.ac): Add gl_CYCLE_CHECK.
4309
4310 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
4311
4312         * lib/memcoll.c (memcoll): Optimize for the common case where the
4313         arguments are bytewise equal.
4314
4315 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
4316
4317         * doc/regexprops-generic.texi: Add a copyright notice.
4318
4319 2006-08-15  Bruno Haible  <bruno@clisp.org>
4320
4321         * modules/tmpdir (License): Change to LGPL.
4322
4323 2006-08-15  Bruno Haible  <bruno@clisp.org>
4324
4325         * gnulib-tool (func_all_modules, func_verify_module): COPYING is not a
4326         module.
4327
4328 2006-08-14  Simon Josefsson  <jas@extundo.com>
4329
4330         * config/srclist.txt: Add gnupload.
4331
4332 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
4333
4334         Change copyright notice from LGPL 2 to GPL 2, since that's the
4335         standard form used in the gnulib repository.
4336         * tests/test-lock.c: Likewise.
4337         * tests/test-stdint.c: Likewise.
4338         * tests/test-tls.c: Likewise.
4339
4340         * users.txt: Add bison, diffutils, libprelude, prelude-lml,
4341         prelude-manager.  User shorter URLs for GNU projects, without '?'.
4342         Add copyright notice.
4343
4344         * check-module: Add copyright notice.  Output a copyright
4345         notice if "--version" is specified.
4346         * modules/COPYING: New file.
4347         * tests/test-getaddrinfo.c: Add copyright notice.
4348         * tests/test-verify.c: Likewise.
4349
4350 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
4351
4352         Change copyright notice from LGPL 2 to GPL 2, since that's the
4353         standard form used in the gnulib repository.
4354         * lib/lock.c: LGPL -> GPL.
4355         * lib/lock.h: Likewise.
4356         * lib/strnlen1.c: Likewise.
4357         * lib/strnlen1.h: Likewise.
4358         * lib/tls.c: Likewise.
4359         * lib/tls.h: Likewise.
4360         * lib/tmpdir.c: Likewise.
4361
4362         * lib/TODO: Remove; this belongs only in coreutils.
4363
4364 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
4365
4366         Add copyright notices to long-enough files that lack them, since
4367         otherwise the files aren't clearly free.  Use the same notice that
4368         getdate.texi already uses.
4369         * doc/alloca-opt.texi: Add copyright notice.
4370         * doc/alloca.texi: Likewise.
4371         * doc/ctime.texi: Likewise.
4372         * doc/functions.texi: Likewise.
4373         * doc/gcd.texi: Likewise.
4374         * doc/gnulib-tool.texi: Likewise.
4375         * doc/inet_ntoa.texi: Likewise.
4376         * doc/visibility.texi: Likewise.
4377
4378         * doc/getdate.texi: Update FDL version from 1.1 to 1.2.
4379         * doc/quote.texi: Add copyright notice.
4380
4381         * doc/solaris-versions: Add SunOS 5.10, SunOS 1.x, SunOS 4.0, SunOS
4382         4.0.x, SunOS 4.1.1.1, SunOS 4.1.1_U1, SunOS 4.1.3B.  SunOS 4.1.3
4383         was Solaris 1.1A.  Remove space before B in Solaris 1.1.1B.
4384         Mention SunOS 5.11.  Mention that everything before SunOS 5.7
4385         is now obsolete, and give a pointer to the Sun list.
4386         Add copyright notice.
4387
4388 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
4389
4390         * config/srclistvars.sh: Add copyright notice.
4391
4392 2006-08-14  Eric Blake  <ebb9@byu.net>
4393
4394         Import the following change from libc:
4395
4396         2006-08-12  Ulrich Drepper  <drepper@redhat.com>
4397
4398         Upstream bug 2997.
4399         * lib/misc/error.c: Add space between program name and message if file
4400         name is missing.
4401
4402 2006-08-12  Karl Berry  <karl@gnu.org>
4403
4404         * config/srclist.txt (ssize_t.m4, sig_atomic_t.m4, signalblocking.m4):
4405         remove, these originate in gnulib now.
4406
4407 2006-08-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4408
4409         * doc/Makefile (standards.info standards.html standards.dvi):
4410         Also depend on make-stds.texi.
4411
4412 2006-08-11  Paul Eggert  <eggert@cs.ucla.edu>
4413
4414         * lib/pipe-safer.c (pipe_safer): Fix misspelling: HAVE_FUNC_PIPE ->
4415         HAVE_PIPE.  Fix a file descriptor leak when fd_safer fails.
4416
4417         * lib/regex_internal.c (re_string_skip_chars): Don't assume WEOF fits
4418         in wchar_t.  Problem reported by Eric Blake.
4419
4420         * lib/snprintf.c (snprintf): memcpy LEN bytes, not SIZE - 1, when
4421         LEN is smaller than SIZE.  Suggested by Bruno Haible.
4422         Also, help the compiler to keep LEN in a register.
4423
4424 2006-08-11  Eric Blake  <ebb9@byu.net>
4425
4426         * users.txt: Sort.  Add tar.
4427
4428 2006-08-11  Bruno Haible  <bruno@clisp.org>
4429
4430         * users.txt: New file.
4431
4432 2006-08-11  Bruno Haible  <bruno@clisp.org>
4433
4434         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Include <stdio.h> and <time.h>
4435         before <wchar.h>. Needed for OSF/1 and BSD/OS.
4436
4437 2006-08-10  Paul Eggert  <eggert@cs.ucla.edu>
4438
4439         * modules/snprintf (Depends-on): Remove minmax.
4440         (Maintainer): Add self and Bruno.
4441
4442 2006-08-10  Paul Eggert  <eggert@cs.ucla.edu>
4443
4444         * lib/.cppi-disable: Add snprintf.h, socket_.h.
4445         * lib/snprintf.c: Include <errno.h> and <limits.h>.
4446         (EOVERFLOW): Define if the system does not.
4447         Do not include "minmax.h"; it wasn't used.
4448         (snprintf): Don't assume size_t promotes to an unsigned type.
4449         Fix bug when generated string was too long for the buffer: the
4450         buffer's contents are supposed to be the initial prefix of the
4451         output.  Don't assume vasnprintf returns EOVERFLOW if the size
4452         exceeds INT_MAX; do the check ourselves.
4453
4454         Import the following changes from libc:
4455
4456         2006-06-02  Jakub Jelinek  <jakub@redhat.com>
4457
4458         * lib/posix/regex_internal.c (re_string_skip_chars): If no character
4459         has been converted at all, set *last_wc to WEOF.  If mbrtowc failed,
4460         set wc to the byte which couldn't be converted.
4461         (re_string_reconstruct): Don't clear valid_raw_len before calling
4462         re_string_skip_chars.  If wc is WEOF after re_string_skip_chars, set
4463         tip_context using re_string_context_at.
4464
4465         2006-05-02  Ulrich Drepper  <drepper@redhat.com>
4466
4467         * lib/posix/regex.h: g++ still cannot handled [restrict].
4468
4469         2006-04-21  Ulrich Drepper  <drepper@redhat.com>
4470
4471         * lib/posix/regex.h: Remove special handling for VMS.
4472
4473 2006-08-10  Jim Meyering  <jim@meyering.net>
4474
4475         * modules/same-inode: New module.
4476         * modules/dev-ino: New module.
4477         * modules/cycle-check: Depend on these modules, rather than simply
4478         including their .h files.
4479         (Makefile.am): Don't list cycle-check.[ch] here, now that they're
4480         required via m4/cycle-check.m4.
4481         * modules/same: Depend on new same-inode module, rather than
4482         including same-inode.h.
4483         * modules/chdir-safer: New file.
4484
4485         * modules/chown (Depends-on): Add stat-macros.
4486
4487 2006-08-10  Jim Meyering  <jim@meyering.net>
4488
4489         * m4/cycle-check.m4: New file.
4490         Require gl_STRUCT_DEV_INO and gl_SAME_INODE.
4491         * m4/dev-ino.m4, m4/same-inode.m4: New files.
4492
4493 2006-08-10  Eric Blake  <ebb9@byu.net>
4494
4495         * modules/verror (Depends-on): Remove bogus gl_VERROR that snuck
4496         in from original proposal.
4497
4498 2006-08-10  Eric Blake  <ebb9@byu.net>
4499         and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4500
4501         * gnulib-tool (func_import): Detect unexpanded macros in gnulib
4502         namespace.
4503
4504 2006-08-10  Bruno Haible  <bruno@clisp.org>
4505
4506         * gnulib-tool (func_create_testdir): Detect unexpanded macros here
4507         as well.
4508
4509 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
4510
4511         Sync from coreutils.
4512
4513         2006-07-19  Mike Frysinger  <vapier@gentoo.org>
4514
4515         * lib/mountlist.c [ME_REMOTE]: Filter out cifs.
4516         Reported by Toralf Förster in <http://bugs.gentoo.org/141012>.
4517
4518 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
4519
4520         * modules/restrict: Remove; no longer needed now that we assume
4521         Autoconf 2.59 or later.
4522         * MODULES.html.sh: Remove 'restrict'.
4523         * modules/argp (Depends-on): Remove 'restrict'.
4524         * modules/base64 (Depends-on): Likewise.
4525         * modules/gc (Depends-on): Likewise.
4526         * modules/getaddrinfo (Depends-on): Likewise.
4527         * modules/glob (Depends-on): Likewise.
4528         * modules/inet_ntop (Depends-on): Likewise.
4529         * modules/inet_pton (Depends-on): Likewise.
4530         * modules/memxor (Depends-on): Likewise.
4531         * modules/regex (Depends-on): Likewise.
4532         * modules/strtok_r (Depends-on): Likewise.
4533         * modules/time_r (Depends-on): Likewise.
4534
4535 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
4536
4537         * m4/argp.m4 (gl_ARGP): Require AC_C_RESTRICT.
4538         * m4/gc.m4 (gl_PREREQ_GC): Likewise.
4539         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
4540         * m4/inet_ntop.m4 (gl_PREREQ_INET_NTOP): Likewise.
4541         * m4/inet_pton.m4 (gl_PREREQ_INET_PTON): Likewise.
4542         * m4/memxor.m4 (gl_MEMXOR): Likewise.
4543         * m4/restrict.m4: Remove; no longer needed.  All remaining uses of
4544         gl_C_RESTRICT replaced by AC_C_RESTRICT.
4545
4546         Merge from coreutils.
4547         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_C_RESTRICT, not
4548         gl_C_RESTRICT, now that we assume Autoconf 2.59 or later.
4549         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
4550         * m4/time_r.m4 (gl_TIME_R): Likewise.
4551
4552 2006-08-09  Karl Berry  <karl@gnu.org>
4553
4554         * config/srclist.txt: no more gettext-tools, per Bruno.
4555
4556 2006-08-08  Eric Blake  <ebb9@byu.net>
4557
4558         * modules/verror: New module.
4559         * MODULES.html.sh: Document it.
4560
4561 2006-08-08  Eric Blake  <ebb9@byu.net>
4562
4563         * lib/verror.h, lib/verror.c: New files.
4564
4565 2006-08-08  Eric Blake  <ebb9@byu.net>
4566
4567         * lib/verror.c (verror_at_line): Work around glibc bug 2997, so that
4568         verror_at_line output complies with GNU Coding Standards even when
4569         file is NULL.
4570
4571 2006-08-07  Bruno Haible  <bruno@clisp.org>
4572
4573         * lib/allocsa.h (sa_alignof) [_AIX]: Also consider 'long long' in newer
4574         versions of AIX.
4575         Reported by Ralf Wildenhues.
4576
4577 2006-08-07  Bruno Haible  <bruno@clisp.org>
4578
4579         * gnulib-tool (func_create_testdir): Wrap the set of autoconf snippets
4580         in an AC_DEFUN. Needed so that the autoconf snippets can use
4581         AC_REQUIRE.
4582
4583 2006-08-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4584
4585         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
4586         Initialize pkgdata_DATA.
4587         * modules/javaversion (Makefile.am): Add to pkgdata_DATA, rather than
4588         overriding it.
4589
4590 2006-08-06  Eric Blake  <ebb9@byu.net>
4591
4592         * lib/error.h: Fold in some upstream changes from glibc.
4593         * lib/error.c: Likewise.
4594
4595 2006-08-04  Bruno Haible  <bruno@clisp.org>
4596
4597         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
4598         Make the mostlyclean-local rule depend on mostlyclean-generic.
4599         Reported by Jim Meyering. Solution suggested by Ralf Wildenhues.
4600
4601 2006-07-31  Bruno Haible  <bruno@clisp.org>
4602
4603         * m4/localcharset.m4 (gl_LOCALCHARSET): Remove tests for <stddef.h>,
4604         <stdlib.h>, <string.h>.
4605
4606 2006-07-30  Bruno Haible  <bruno@clisp.org>
4607
4608         * modules/readlink (License): Change to LGPL.
4609
4610 2006-07-30  Bruno Haible  <bruno@clisp.org>
4611
4612         * modules/javaversion (Makefile.am): Distribute javaversion.java and
4613         javaversion.class. Also install javaversion.class in $(pkgdatadir) and
4614         set PKGDATADIR to point to it.
4615
4616 2006-07-30  Bruno Haible  <bruno@clisp.org>
4617
4618         * modules/csharpexec (configure.ac): Comment out macro invocation.
4619         * modules/javaexec (configure.ac): Likewise.
4620         * modules/javacomp-script (configure.ac): Likewise.
4621
4622         * modules/csharpcomp-script (configure.ac): Use AC_REQUIRE.
4623
4624 2006-07-30  Bruno Haible  <bruno@clisp.org>
4625
4626         * modules/clean-temp (Depends-on): Add linkedhash-list, remove
4627         linked-list.
4628
4629 2006-07-30  Bruno Haible  <bruno@clisp.org>
4630
4631         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Assume <string.h> exists.
4632
4633 2006-07-30  Bruno Haible  <bruno@clisp.org>
4634
4635         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
4636         Initialize MOSTLYCLEANFILES to core and *.stackdump, so that core dumps
4637         get removed.
4638
4639 2006-07-29  Bruno Haible  <bruno@clisp.org>
4640
4641         Make it possible for gnulib-tool to work with locally modified or
4642         augmented gnulib repositories.
4643         * gnulib-tool (func_usage): Document --local-dir option.
4644         (local_gnulib_dir): New variable.
4645         Handle --local-dir option.
4646         (func_lookup_file): New function.
4647         (func_all_modules, func_verify_module): Look also in $local_gnulib_dir.
4648         (func_get_description, func_get_filelist, func_get_description,
4649         func_get_filelist, func_get_dependencies, func_get_autoconf_snippet,
4650         func_get_automake_snippet, func_get_include_directive,
4651         func_get_license, func_get_maintainer): Use func_lookup_file.
4652         (func_import, func_create_testdir): Use func_lookup_file.
4653
4654 2006-07-29  Bruno Haible  <bruno@clisp.org>
4655
4656         * modules/setenv (Depends-on): Add unistd.
4657
4658 2006-07-29  Bruno Haible  <bruno@clisp.org>
4659
4660         * lib/setenv.c: Undo unintended modification done on 2006-02-27.
4661
4662 2006-07-29  Bruno Haible  <bruno@clisp.org>
4663
4664         * lib/localcharset.c: Assume <stddef.h>, <stdlib.h>, <string.h> exist.
4665
4666 2006-07-29  Bruno Haible  <bruno@clisp.org>
4667
4668         * gnulib-tool (import, update): If there is no Makefile.am, look at
4669         aclocal.m4, instead of bailing out.
4670
4671 2006-07-29  Bruno Haible  <bruno@clisp.org>
4672
4673         * gnulib-tool (func_usage): Revert most of the 2006-07-15 change.
4674         Categorize the options by when they are useful.
4675
4676 2006-07-29  Bruno Haible  <bruno@clisp.org>
4677
4678         * gnulib-tool (func_usage): Document option --no-libtool.
4679         Handle option --no-libtool.
4680         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am): Update
4681         for changed semantics of $libtool variable.
4682         (func_import): Likewise. If libtool is not used, show this through
4683         an option --no-libtool.
4684         (func_create_testdir): Update.
4685
4686 2006-07-29  Bruno Haible  <bruno@clisp.org>
4687
4688         * gnulib-tool (func_import): Extend error message about missing
4689         --doc-base.
4690
4691 2006-07-29  Bruno Haible  <bruno@clisp.org>
4692
4693         * gnulib-tool (func_import): Don't create the $docbase directory if
4694         there is no file to store there.
4695
4696 2006-07-29  Bruno Haible  <bruno@clisp.org>
4697
4698         * gnulib-tool (autoconf_minversion): If a --dir option is given and
4699         relevant, look for configure.ac there, not in the current directory.
4700         Also use a simple search for AC_PREREQ, not "autoconf --trace".
4701
4702 2006-07-29  Bruno Haible  <bruno@clisp.org>
4703
4704         * gnulib-tool (SORT): New variable.
4705         (func_usage): Undocument --assume-autoconf option.
4706         Remove --assume-autoconf option handling.
4707         (autoconf_minversion): Determine from the contents of configure.ac.
4708         (func_import): Remove autoconf_minversion handling.
4709         Suggested by Eric Blake.
4710
4711 2006-07-29  Bruno Haible  <bruno@clisp.org>
4712
4713         * doc/gnulib-tool.texi (gl_LIBTOOL): Mention --no-libtool option.
4714
4715 2006-07-29  Bruno Haible  <bruno@clisp.org>
4716
4717         * config/srclist.txt (*setenv.[ch]): Remove rules.
4718
4719 2006-07-28  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
4720
4721         * m4/inet_pton.m4, inet_ntop.m4: Check for netinet/in.h too.
4722
4723 2006-07-28  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
4724
4725         * lib/inet_ntop.h, inet_pton.h: Need to include netinet/in.h before
4726         arpa/inet.h.
4727
4728 2006-07-28  Simon Josefsson  <jas@extundo.com>
4729
4730         * modules/inet_ntop (Depends-on): Depend on arpa_inet.
4731         * modules/inet_pton (Depends-on): Likewise.
4732
4733 2006-07-28  Simon Josefsson  <jas@extundo.com>
4734
4735         * m4/netinet_in_h.m4: New file.
4736
4737 2006-07-28  Simon Josefsson  <jas@extundo.com>
4738
4739         * lib/inet_ntop.h, inet_pton.h: No need to guard netinet/in.h
4740         #include's.
4741
4742 2006-07-28  Simon Josefsson  <jas@extundo.com>
4743
4744         * lib/inet_ntop.h, inet_pton.h: No need to guard arpa/inet.h
4745         #include's.
4746
4747 2006-07-28  Paul Eggert  <eggert@cs.ucla.edu>
4748
4749         * lib/modechange.c (mode_compile): Numeric modes now affect setuid and
4750         setgid on directories only if they set these bits.
4751         * lib/modechange.h: Remove obsolete comment about masks.
4752
4753 2006-07-28  Eric Blake  <ebb9@byu.net>
4754
4755         * lib/regex_internal.h (struct re_dfa_t) [!_LIBC]: Avoid invalid C89
4756         macro expansion.
4757
4758 2006-07-28  Bruno Haible  <bruno@clisp.org>
4759
4760         * lib/inet_ntop.h, inet_pton.h: Use #if HAVE* instead of #ifdef HAVE*.
4761
4762 2006-07-28  Bruno Haible  <bruno@clisp.org>
4763
4764         * m4/mbchar.m4 (gl_MBCHAR): Also test for iswcntrl.
4765
4766 2006-07-28  Bruno Haible  <bruno@clisp.org>
4767
4768         * lib/mbchar.h (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit,
4769         iswgraph, iswlower, iswprint, iswpunct, iswspace, iswupper, iswxdigit):
4770         Define fallbacks.
4771         Avoids link error on FreeBSD 4.x.
4772         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
4773
4774         * lib/wcwidth.h (iswprint): Assume an ASCII compatible wide character
4775         encoding.
4776         * lib/mbswidth.c (iswcntrl): Likewise.
4777
4778 2006-07-27  Bruno Haible  <bruno@clisp.org>
4779
4780         * m4/stdint.m4 (gl_STDINT_H): Define __STDC_CONSTANT_MACROS during the
4781         test.
4782
4783 2006-07-27  Bruno Haible  <bruno@clisp.org>
4784
4785         * lib/stdint_.h (INT*_C, UINT*_C) [C++]: Define these if
4786         __STDC_CONSTANT_MACROS is defined, not if __STDC_LIMIT_MACROS is
4787         defined.
4788
4789 2006-07-26  Eric Blake  <ebb9@byu.net>
4790
4791         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Check for missing pipe.
4792
4793 2006-07-26  Eric Blake  <ebb9@byu.net>
4794
4795         * lib/mkstemp-safer.c [! HAVE_MKSTEMP]: Add prototype for platforms
4796         like mingw that lack mkstemp.
4797         * lib/pipe-safer.c (pipe_safer) [!HAVE_FUNC_PIPE]: Provide fallback to
4798         avoid compilation warning on mingw.
4799
4800 2006-07-26  Bruno Haible  <bruno@clisp.org>
4801
4802         * m4/stdint.m4 (gl_STDINT_H): Also verify the existence of the macros
4803         INT*_MIN, INT_LEAST*_MAX, INT_LEAST*_MIN, UINT_LEAST*_MAX,
4804         INT_FAST*_MIN, INTPTR_MIN.
4805
4806 2006-07-25  Bruno Haible  <bruno@clisp.org>
4807
4808         * modules/version-etc (Depends-on): Add stdarg.
4809
4810 2006-07-25  Bruno Haible  <bruno@clisp.org>
4811
4812         * m4/stdint.m4 (gl_INTEGER_TYPE_SUFFIX): Avoid 'eval' in front of
4813         complex commands.
4814
4815 2006-07-25  Bruno Haible  <bruno@clisp.org>
4816
4817         * lib/version-etc.c (version_etc_va): Use va_copy, assumed to be
4818         defined in <stdarg.h> or config.h.
4819
4820 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
4821
4822         * m4/stdio-safer.m4 (gl_FOPEN_SAFER, gl_TMPFILE_SAFER): New macros.
4823         (gl_STDIO_SAFER): Remove.
4824
4825 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
4826
4827         * MODULES.html.sh (File stream based Input/Output):
4828         Add fopen-safer, tmpfile-safer; remove stdio-safer.
4829         * modules/getusershell (Depends-on): Change stdio-safer to fopen-safer.
4830         * modules/fopen-safer, modules/tmpfile-safer: New files.
4831         * modules/stdio-safer: Remove.
4832
4833 2006-07-24  Bruno Haible  <bruno@clisp.org>
4834
4835         * modules/tmpdir: New file.
4836         * MODULES.html.sh (File system functions): Add it.
4837
4838 2006-07-24  Bruno Haible  <bruno@clisp.org>
4839
4840         * modules/javacomp (Depends-on): Add unistd, javaversion, binary-io,
4841         getline, pathname, fwriteerror, clean-temp, xvasprintf, strstr.
4842
4843 2006-07-24  Bruno Haible  <bruno@clisp.org>
4844
4845         * modules/clean-temp: New file.
4846
4847 2006-07-24  Bruno Haible  <bruno@clisp.org>
4848
4849         * m4/tmpdir.m4: New file, from GNU gettext.
4850
4851 2006-07-24  Bruno Haible  <bruno@clisp.org>
4852
4853         * lib/tmpdir.h: New file, from GNU gettext.
4854         * lib/tmpdir.c: New file, from GNU gettext.
4855
4856 2006-07-24  Bruno Haible  <bruno@clisp.org>
4857
4858         * lib/clean-temp.h: New file, from GNU gettext.
4859         * lib/clean-temp.c: New file, from GNU gettext.
4860
4861 2006-07-23  Eric Blake  <ebb9@byu.net>
4862
4863         * modules/stdio-safer (Files): Add tmpfile-safer.c.
4864         (Depends-on): Add binary-io.
4865
4866 2006-07-23  Eric Blake  <ebb9@byu.net>
4867
4868         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Add tmpfile-safer.c.
4869
4870 2006-07-23  Eric Blake  <ebb9@byu.net>
4871
4872         * lib/tmpfile-safer.c: New file.
4873         * lib/stdio-safer.h (fopen_safer): Add prototype.
4874         * lib/stdio--.h (tmpfile): Make safer.
4875
4876 2006-07-23  Bruno Haible  <bruno@clisp.org>
4877
4878         * lib/gl_anylinked_list2.h (ASYNCSAFE): New macro.
4879         (gl_linked_add_first, gl_linked_add_last, gl_linked_add_before,
4880         gl_linked_add_after, gl_linked_add_at, gl_linked_remove_node,
4881         gl_linked_remove_at): Use it.
4882
4883 2006-07-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
4884         and Simon Josefsson <jas@extundo.com>
4885
4886         * lib/getaddrinfo.h (AI_PASSIVE): Make sure it is defined.
4887
4888         * lib/getaddrinfo.c (getaddrinfo): Support AI_PASSIVE.
4889
4890 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
4891
4892         * modules/close-stream: New file.
4893         * modules/closeout (Description): Make it clear that it exits
4894         with a diagnostic on error.
4895         (Depends-on): Add close-stream.  Remove fpending, stdbool.
4896         * MODULES.html.sh (File stream based Input/Output): Add close-stream.
4897
4898 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
4899
4900         * m4/close-stream.m4: New file.
4901
4902 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
4903
4904         * lib/close-stream.c, lib/close-stream.h: New files.
4905
4906 2006-07-22  Bruno Haible  <bruno@clisp.org>
4907
4908         Merge from GNU gettext 0.15.
4909
4910         2006-05-01  Bruno Haible  <bruno@clisp.org>
4911
4912                 * build-aux/javacomp.sh.in: Update for changed javacomp.m4.
4913
4914         2006-07-22  Bruno Haible  <bruno@clisp.org>
4915
4916                 * modules/javaversion: New file.
4917                 * MODULES.html.sh (Java): Add javaversion.
4918
4919         2006-03-12  Bruno Haible  <bruno@clisp.org>
4920
4921                 * build-aux/javaexec.sh.in: Update for changed javaexec.m4.
4922
4923         2005-12-04  Bruno Haible  <bruno@clisp.org>
4924
4925                 * build-aux/csharpexec.sh.in: Add support for 'clix' launcher
4926                 (untested).
4927
4928         2006-06-21  Bruno Haible  <bruno@clisp.org>
4929
4930                 Avoid warnings from recent versions of mcs.
4931                 * build-aux/csharpcomp.sh.in (options_mcs): Don't use options
4932                 -o, -L, -r any more. Use options documented since mcs-1.0
4933                 instead. Similarly for -g.
4934
4935         2005-12-04  Bruno Haible  <bruno@clisp.org>
4936
4937                 * build-aux/csharpcomp.sh.in: Suffix for resources is
4938                 .resources, not .resource.
4939
4940         2005-07-09  Bruno Haible  <bruno@clisp.org>
4941
4942                 * build-aux/csharpcomp.sh.in (options_csc): For -l option,
4943                 add a .dll suffix.
4944                 Reported by Mark Junker <mjscod@gmx.de>.
4945
4946         2006-07-22  Bruno Haible  <bruno@clisp.org>
4947
4948                 * modules/gettext: Upgrade to gettext-0.15.
4949                 (Files): Remove m4/isc-posix.m4. Add m4/lock.m4,
4950                 m4/visibility.m4.
4951                 Replace m4/inttypes.m4 with m4/inttypes-h.m4.
4952
4953 2006-07-22  Bruno Haible  <bruno@clisp.org>
4954
4955         Merge from GNU gettext 0.15.
4956
4957         2006-03-25  Bruno Haible  <bruno@clisp.org>
4958
4959                 * lib-link.m4 (AC_LIB_LINKFLAGS_FROM_LIBS): New macro.
4960
4961         2006-07-21  Bruno Haible  <bruno@clisp.org>
4962
4963                 * javacomp.m4 (gt_JAVACOMP): Convert target_version "null" to
4964                 "1.1".
4965
4966         2006-05-09  Bruno Haible  <bruno@clisp.org>
4967
4968                 * javacomp.m4 (gt_JAVACOMP): On Cygwin, set
4969                 CLASSPATH_SEPARATOR to a semicolon. Use CLASSPATH_SEPARATOR
4970                 for the conftestver execution.
4971
4972         2006-05-01  Bruno Haible  <bruno@clisp.org>
4973
4974                 * javacomp.m4 (gt_JAVACOMP): Accept a source-version and an
4975                 optional target-version argument. Verify that the compiler
4976                 groks source of the specified source-version, or add -source
4977                 option as necessary. Verify that the compiler produces
4978                 bytecode in the specified target-version, or add -target and
4979                 -source options as necessary. Make the result of the test
4980                 available as variable CONF_JAVAC. Also log error output in
4981                 config.log.
4982
4983         2006-03-11  Bruno Haible  <bruno@clisp.org>
4984
4985                 * javacomp.m4 (gt_JAVACOMP): Treat gcj-4.x like gcj-3.x.
4986
4987         2006-05-09  Bruno Haible  <bruno@clisp.org>
4988
4989                 * javaexec.m4 (gt_JAVAEXEC): On Cygwin, set
4990                 CLASSPATH_SEPARATOR to a semicolon.
4991
4992         2006-03-12  Bruno Haible  <bruno@clisp.org>
4993
4994                 * javaexec.m4 (gt_JAVAEXEC): Make the result of the test
4995                 available as variable CONF_JAVA, for subsequent autoconf
4996                 tests. Also log error output in config.log.
4997
4998         2006-07-19  Bruno Haible  <bruno@clisp.org>
4999
5000                 * getline.m4 (AM_FUNC_GETLINE): When cross-compiling, assume
5001                 that getline works on glibc2 systems. Needed to avoid trouble
5002                 in relocatable.c.
5003                 Reported by Nils Magnus Larsgard <nmlarsgaard@atmel.no>.
5004
5005         2005-12-04  Bruno Haible  <bruno@clisp.org>
5006
5007                 * csharpexec.m4 (gt_CSHARPEXEC): Add support for 'clix'
5008                 launcher (untested).
5009
5010         2005-12-04  Bruno Haible  <bruno@clisp.org>
5011
5012                 * csharpcomp.m4 (gt_CSHARPCOMP): Also set CSHARPCOMPFLAGS.
5013
5014         2006-07-22  Bruno Haible  <bruno@clisp.org>
5015
5016                 * gettext.m4: Update from GNU gettext-0.15.
5017                 * nls.m4: Likewise.
5018                 * po.m4: Likewise.
5019                 * inttypes-pri.m4: Likewise.
5020                 * inttypes-h.m4: Renamed from inttypes.m4.
5021                 (gl_HEADER_INTTYPES_H): Renamed from gt_HEADER_INTTYPES_H.
5022
5023 2006-07-22  Bruno Haible  <bruno@clisp.org>
5024
5025         Merge from GNU gettext 0.15.
5026
5027         2005-07-05  Bruno Haible  <bruno@clisp.org>
5028
5029                 * printf-args.c (printf_fetchargs): Work around broken
5030                 definition of wint_t on mingw.
5031
5032         2005-02-12  Bruno Haible  <bruno@clisp.org>
5033
5034                 * xallocsa.h: Add extern "C" for C++.
5035
5036         2006-05-17  Bruno Haible  <bruno@clisp.org>
5037
5038                 Cygwin portability.
5039                 * progreloc.c (WIN32_NATIVE): Renamed from WIN32.
5040
5041         2006-04-30  Bruno Haible  <bruno@clisp.org>
5042
5043                 * progreloc.c: Include <mach-o/dyld.h> if available.
5044                 (find_executable): Use _NSGetExecutablePath when possible.
5045
5046         2006-05-06  Charles Wilson  <cygwin@cwilson.fastmail.fm>
5047
5048                 * progreloc.c (maybe_executable) [CYGWIN]: Use the access()
5049                 function.
5050
5051         2005-12-29  Bruno Haible  <bruno@clisp.org>
5052
5053                 * progreloc.c (set_program_name_and_installdir): Fix
5054                 compilation error.
5055
5056         2005-12-04  Bruno Haible  <bruno@clisp.org>
5057
5058                 Cygwin portability.
5059                 * progreloc.c: Include <windows.h> also on Cygwin.
5060                 (find_executable): Add support for Cygwin.
5061                 (set_program_name_and_installdir): Handle also platforms with
5062                 nonempty EXEEXT.
5063
5064         2006-07-11  Bruno Haible  <bruno@clisp.org>
5065
5066                 * javacomp.c: Fix a comment.
5067                 Reported by Jim Meyering.
5068
5069         2006-04-30  Bruno Haible  <bruno@clisp.org>
5070
5071                 * javacomp.h (compile_java_class): Add source_version,
5072                 target_version arguments.
5073                 * javacomp.c: Rewritten to choose only a compiler that
5074                 respects the specified source_version and target_version.
5075
5076         2006-06-27  Bruno Haible  <bruno@clisp.org>
5077
5078                 Assume correct S_ISDIR macro.
5079                 * mkdtemp.c: Remove test of STAT_MACROS_BROKEN.
5080
5081         2006-07-22  Bruno Haible  <bruno@clisp.org>
5082
5083                 * javaversion.h: New file, from GNU gettext.
5084                 * javaversion.c: New file, from GNU gettext.
5085                 * javaversion.java: New file, from GNU gettext.
5086                 * javaversion.class: New file, from GNU gettext.
5087
5088         2006-05-17  Bruno Haible  <bruno@clisp.org>
5089
5090                 Cygwin portability.
5091                 * javaexec.c (execute_java_class): Test for jview program
5092                 also on Cygwin.
5093
5094         2006-04-09  Bruno Haible  <bruno@clisp.org>
5095
5096                 * fatal-signal.c: Don't include string.h.
5097                 (at_fatal_signal): Use a copying loop instead of memcpy.
5098
5099         2005-12-04  Bruno Haible  <bruno@clisp.org>
5100
5101                 * csharpexec.c: Add support for 'clix' launcher (untested).
5102                 (execute_csharp_using_sscli): New function.
5103                 (execute_csharp_program): Call it.
5104
5105         2006-06-21  Bruno Haible  <bruno@clisp.org>
5106
5107                 Avoid warnings from recent versions of mcs.
5108                 * csharpcomp.c (compile_csharp_using_mono): Don't use options
5109                 -o, -L, -r any more. Use options documented since mcs-1.0
5110                 instead. Similarly for -g.
5111
5112         2005-07-09  Bruno Haible  <bruno@clisp.org>
5113
5114                 * csharpcomp.c (compile_csharp_using_sscli): For -l option,
5115                 add a .dll suffix.
5116                 Reported by Mark Junker <mjscod@gmx.de>.
5117
5118         2006-06-17  Bruno Haible  <bruno@clisp.org>
5119
5120                 * config.charset: Update for NetBSD 3.0.
5121
5122         2006-05-17  Bruno Haible  <bruno@clisp.org>
5123
5124                 Cygwin portability.
5125                 * localcharset.c (WIN32_NATIVE): Renamed from WIN32.
5126
5127         2006-05-16  Bruno Haible  <bruno@clisp.org>
5128
5129                 * localcharset.c [CYGWIN]: Include <windows.h>.
5130                 (get_charset_aliases): For Cygwin, return the same CPxxx
5131                 aliases list as under WIN32.
5132                 (locale_charset) [CYGWIN]: Try to retrieve the encoding from
5133                 the environment variables. Fall back to GetACP().
5134
5135         2006-04-05  Bruno Haible  <bruno@clisp.org>
5136
5137                 * config.charset: Update Juan Manuel Guerrero's address.
5138
5139         2005-02-12  Bruno Haible  <bruno@clisp.org>
5140
5141                 * allocsa.h: Add extern "C" for C++.
5142
5143         2005-02-10  Bruno Haible  <bruno@clisp.org>
5144
5145                 * allocsa.h (sa_alignof): Define differently with AIX xlc, to
5146                 avoid a bug of this compiler on AIX 3.2.5 dealing with enums.
5147
5148         2006-07-22  Bruno Haible  <bruno@clisp.org>
5149
5150                 * gettext.h: Update to GNU gettext-0.15.
5151
5152 2006-07-22  Bruno Haible  <bruno@clisp.org>
5153
5154         * config/srclist.txt: Resync printf-args.c, vasnprintf.c,
5155         localcharset.c, mkdtemp.c, config.rpath, lib-ld.m4, lib-link.m4,
5156         lib-prefix.m4, longdouble.m4, ssize_t.m4.
5157
5158 2006-07-21  Eric Blake  <ebb9@byu.net>
5159
5160         * modules/stdlib-safer: New file.
5161         * MODULES.html.sh (File stream based Input/Output): Add
5162         stdlib-safer.
5163
5164 2006-07-21  Eric Blake  <ebb9@byu.net>
5165
5166         * lib/stdlib-safer.h: New file from coreutils, required by
5167         stdlib--.h.
5168
5169 2006-07-20  Paul Eggert  <eggert@cs.ucla.edu>
5170
5171         * gnulib-tool (func_usage): Document --assume-autoconf='latest-stable'.
5172
5173 2006-07-20  Bruno Haible  <bruno@clisp.org>
5174
5175         * gnulib-tool: Recognize new option --assume-autoconf.
5176         (autoconf_minversion): New variable.
5177         (func_get_filelist): Use it to decide whether to add onceonly_2_57.m4.
5178
5179 2006-07-20  Bruno Haible  <bruno@clisp.org>
5180
5181         * MODULES.html.sh (func_all_modules): Add a missing func_begin_table.
5182
5183 2006-07-19  Derek R. Price  <derek@ximbiot.com>
5184
5185         * lib/getaddrinfo.h: Don't define unimplemented AI_* flags.
5186         Reindent and repaginate.
5187
5188 2006-07-19  Derek Price  <derek@ximbiot.com>
5189
5190         * doc/gnulib.texi (Libtool and Windows):  Eliminate passive voice.
5191         Correct grammar.
5192
5193 2006-07-17  Bruno Haible  <bruno@clisp.org>
5194
5195         * modules/list: New file.
5196         * modules/array-list: New file.
5197         * modules/carray-list, modules/carray-list-tests: New files.
5198         * modules/linked-list, modules/linked-list-tests: New files.
5199         * modules/avltree-list, modules/avltree-list-tests: New files.
5200         * modules/rbtree-list, modules/rbtree-list-tests: New files.
5201         * modules/linkedhash-list, modules/linkedhash-list-tests: New files.
5202         * modules/avltreehash-list, modules/avltreehash-list-tests: New files.
5203         * modules/rbtreehash-list, modules/rbtreehash-list-tests: New files.
5204         * modules/oset: New file.
5205         * modules/array-oset: New file.
5206         * modules/avltree-oset, modules/avltree-oset-tests: New files.
5207         * modules/rbtree-oset, modules/rbtree-oset-tests: New files.
5208         * tests/test-carray_list.c: New file.
5209         * tests/test-linked_list.c: New file.
5210         * tests/test-avltree_list.c: New file.
5211         * tests/test-rbtree_list.c: New file.
5212         * tests/test-linkedhash_list.c: New file.
5213         * tests/test-avltreehash_list.c: New file.
5214         * tests/test-rbtreehash_list.c: New file.
5215         * tests/test-avltree_oset.c: New file.
5216         * tests/test-rbtree_oset.c: New file.
5217         * MODULES.html.sh (Container data structures): New section.
5218
5219 2006-07-17  Bruno Haible  <bruno@clisp.org>
5220
5221         * m4/gl_list.m4: New file.
5222
5223 2006-07-17  Bruno Haible  <bruno@clisp.org>
5224
5225         * lib/gl_list.h: New file.
5226         * lib/gl_list.c: New file.
5227         * lib/gl_array_list.h: New file.
5228         * lib/gl_array_list.c: New file.
5229         * lib/gl_carray_list.h: New file.
5230         * lib/gl_carray_list.c: New file.
5231         * lib/gl_linked_list.h: New file.
5232         * lib/gl_linked_list.c: New file.
5233         * lib/gl_anylinked_list1.h: New file.
5234         * lib/gl_anylinked_list2.h: New file.
5235         * lib/gl_avltree_list.h: New file.
5236         * lib/gl_avltree_list.c: New file.
5237         * lib/gl_anyavltree_list1.h: New file.
5238         * lib/gl_anyavltree_list2.h: New file.
5239         * lib/gl_rbtree_list.h: New file.
5240         * lib/gl_rbtree_list.c: New file.
5241         * lib/gl_anyrbtree_list1.h: New file.
5242         * lib/gl_anyrbtree_list2.h: New file.
5243         * lib/gl_anytree_list1.h: New file.
5244         * lib/gl_anytree_list2.h: New file.
5245         * lib/gl_linkedhash_list.h: New file.
5246         * lib/gl_linkedhash_list.c: New file.
5247         * lib/gl_anyhash_list1.h: New file.
5248         * lib/gl_anyhash_list2.h: New file.
5249         * lib/gl_avltreehash_list.h: New file.
5250         * lib/gl_avltreehash_list.c: New file.
5251         * lib/gl_rbtreehash_list.h: New file.
5252         * lib/gl_rbtreehash_list.c: New file.
5253         * lib/gl_anytreehash_list1.h: New file.
5254         * lib/gl_anytreehash_list2.h: New file.
5255
5256         * lib/gl_oset.h: New file.
5257         * lib/gl_oset.c: New file.
5258         * lib/gl_array_oset.h: New file.
5259         * lib/gl_array_oset.c: New file.
5260         * lib/gl_avltree_oset.h: New file.
5261         * lib/gl_avltree_oset.c: New file.
5262         * lib/gl_rbtree_oset.h: New file.
5263         * lib/gl_rbtree_oset.c: New file.
5264         * lib/gl_anytree_oset.h: New file.
5265
5266 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
5267
5268         * m4/mkancesdirs.m4: New file.
5269         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Mention dirchownmod.c,
5270         dirchownmod.h.  Don't require AC_FUNC_ALLOCA, gl_AFS, gl_CHDIR_SAFER;
5271         no longer needed.  Require gl_FUNC_LCHOWN, since dirchownmod.c needs
5272         it.
5273
5274 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
5275
5276         * lib/dirchownmod.c, lib/dirchownmod.h, lib/mkancesdirs.c:
5277         * lib/mkancesdirs.h: New files.
5278         * lib/mkdir-p.c: Don't include alloca.h, stdio.h, sys/types.h,
5279         unistd.h, string.h, chdir-safer.h, dirname.h, lchmod.h, lchown.h,
5280         save-cwd.h.  Instead, include dirchownmod.h and mkancesdirs.h.
5281         (make_dir_parents): New args MAKE_ANCESTOR, OPTIONS, ANNOUNCE,
5282         MODE_BITS.  Remove options VERBOSE_FMT_STRING, CWD_ERRNO.  All
5283         callers changed.  Revamp internals significantly, by not
5284         attempting to create directories that are temporarily more
5285         permissive than the final results.  Do not attempt to use
5286         save_cwd/restore_cwd; it isn't worth it for mkdir and install.
5287         This removes some race conditions, fixes some bugs, and simplifies
5288         things.  Use new dirchownmod function to do owner and mode changes.
5289         * lib/mkdir-p.h: Likewise.
5290         * lib/modechange.c (octal_to_mode): New function.
5291         (struct mode_change): New member mentioned.
5292         (make_node_op_equals): New arg mentioned.  All callers changed.
5293         (mode_compile): Keep track of which mode bits the user has explicitly
5294         mentioned.
5295         (mode_adjust): New arg DIR, so that we implement the X op correctly.
5296         New arg PMODE_BITS, to keep track of which mode bits the user
5297         mentioned; it treats S_ISUID and S_ISGID speciall.
5298         All callers changed.
5299         * lib/modechange.h: Likewise.
5300
5301 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
5302
5303         * MODULES.html.sh: Add mkancestors.
5304         * modules/mkancesdirs: New module.
5305         * modules/mkdir-p (Files): Remove lib/chdir-safer.c, lib/chdir-safer.h,
5306         lib/same-inode.h, m4/afs.m4, m4/chdir-safer.m4.
5307         The chdir-safer and afs files are now orphans; I'll remove them
5308         unless someone speaks up.
5309         Add lib/dirchownmod.c, lib/dirchownmod.h.
5310         (Depends-on): Remove alloca, chown, save-cwd, dirname.
5311         Add lchown, mkancesdirs.
5312         (Maintainer): Add self.
5313
5314 2006-07-15  Karl Berry  <karl@gnu.org>
5315
5316         * gnulib-tool: help message wording/arrangement.
5317
5318 2006-07-14  Simon Josefsson  <jas@extundo.com>
5319
5320         * doc/gnulib.texi (Libtool and Windows): New section.
5321
5322 2006-07-12  Simon Josefsson  <jas@extundo.com>
5323
5324         * modules/gendocs (License): Fix license, approved by Karl.
5325
5326 2006-07-12  Eric Blake  <ebb9@byu.net>
5327
5328         * MODULES.html.sh: Add gendocs.
5329
5330 2006-07-11  Eric Blake  <ebb9@byu.net>
5331
5332         * modules/fdl: New module, to install doc/fdl.texi.
5333         * MODULES.html.sh: Add new section for documentation modules.
5334         * gnulib-tool: Avoid space-tab.
5335         (--doc-base): New option, to manage files from doc.
5336
5337 2006-07-11  Eric Blake  <ebb9@byu.net>
5338
5339         * m4/absolute-header.m4: Fix comments to match recent change.
5340
5341 2006-07-11  Eric Blake  <ebb9@byu.net>
5342
5343         * gnulib-tool: List --doc-base before --tests-base.
5344
5345 2006-07-11  Derek R. Price  <derek@ximbiot.com>
5346
5347         * lib/glob.c: s/NAMLEN/_D_EXACT_NAMLEN/.
5348
5349 2006-07-11  Bruno Haible  <bruno@clisp.org>
5350
5351         * README: Mention where to put documentation.
5352
5353 2006-07-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5354
5355         * doc/functions.texi, gnulib-tool.texi, gnulib.texi: Fix some typos.
5356
5357 2006-07-10  Paul Eggert  <eggert@cs.ucla.edu>
5358
5359         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Like today's change
5360         to stdint.m4.
5361
5362 2006-07-10  Paul Eggert  <eggert@cs.ucla.edu>
5363
5364         * m4/stdint.m4 (gl_STDINT_H): Like yesterday's change to
5365         absolute-header.m4.  Also, set ABSOLUTE_STDINT_H to a string
5366         "no/such/file/stdint.h" when there is no such file, so that
5367         the resulting C code can be parsed by dodgy compilers.
5368         Problems reported by Bob Proulx.
5369
5370 2006-07-10  Derek R. Price  <derek@ximbiot.com>
5371
5372         * lib/backupfile.c, dirfd.h, fts.c, getcwd.c, glob.c, glob_.h:
5373         Ignore the obsolescent !HAVE_DIRENT_H case.  Consolidate NAMLEN
5374         macros into the GNU _D_EXACT_NAMLEN.
5375         * lib/savedir.c:  Likewise.
5376         (savedirstream): Use _D_EXACT_NAMLEN in preference to strlen.
5377
5378 2006-07-10  Derek R. Price  <derek@ximbiot.com>
5379         and Paul Eggert  <eggert@cs.ucla.edu>
5380
5381         * m4/backupfile.m4, d-ino.m4, d-type.m4, dirfd.m4, fts.m4, getcwd.m4:
5382         * m4/savedir.m4:
5383         Ignore the obsolescent !HAVE_DIRENT_H case.  Consolidate NAMLEN
5384         macros into the GNU _D_EXACT_NAMLEN.
5385
5386 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
5387
5388         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Use "" rather than <>
5389         around the absolute name, to work around a problem with the HP-UX
5390         11.23 native C compiler, reported by Bob Proulx.
5391
5392 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
5393
5394         * doc/maintain.texi, make-stds.texi: Sync from
5395         <http://savannah.gnu.org/projects/gnustandards>.
5396
5397 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
5398
5399         * build-aux/depcomp, build-aux/install-sh: Sync from Automake.
5400
5401 2006-07-09  Jim Meyering  <jim@meyering.net>
5402
5403         * m4/glob.m4: Remove a doubled word in a comment.
5404
5405 2006-07-09  Jim Meyering  <jim@meyering.net>
5406
5407         * lib/argp-pv.c: Remove a doubled word in a comment.
5408         * lib/check-version.c (check_version): Likewise.
5409         * lib/javacomp.c (compile_java_class): Likewise.
5410
5411 2006-07-08  Paul Eggert  <eggert@cs.ucla.edu>
5412
5413         * gnulib-tool (func_get_filelist): Don't echo m4/onceonly_2_57.m4,
5414         for the benefit of people using Autoconf 2.60.  If you want to
5415         support older Autoconf versions you can copy m4/onceonly_2_57.m4
5416         (or m4/onceonly.m4, if pre-2.57) manually.
5417
5418 2006-07-08  Jim Meyering  <jim@meyering.net>
5419
5420         * m4/link-follow.m4: Remove one of two adjacent "whether"s in a
5421         comment.
5422         * m4/getopt.m4: Remove one of two adjacent "your"s in a comment.
5423         * m4/regex.m4 (gl_REGEX): Remove one of two adjacent "the"s in a
5424         comment.
5425
5426 2006-07-08  Jim Meyering  <jim@meyering.net>
5427
5428         * lib/getndelim2.h (getndelim2): Remove doubled "after" in comment.
5429
5430 2006-07-07  Simon Josefsson  <jas@extundo.com>
5431
5432         * tests/test-crc.c: Change expected crc value, the test vector
5433         were probably computed using the old broken crc.c?
5434
5435 2006-07-06  Simon Josefsson  <jas@extundo.com>
5436
5437         * modules/sys_socket (Files): Add m4/sockpfaf.m4 (this module is
5438         now the canonical place for the M4 file).
5439
5440         * modules/getaddrinfo (Files): Remove m4/sockpfaf.m4, we get it
5441         from the sys_socket dependency now.
5442
5443         * modules/inet_pton (Files): Ditto.
5444
5445         * modules/inet_ntop (Files): Ditto.
5446
5447 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
5448
5449         * modules/getusershell (configure.ac): Use gl_FUNC_GETUSERSHELL,
5450         not gl_PREREQ_GETUSERSHELL.
5451
5452 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5453
5454         * m4/_inttypes_h.m4 (gl_INTTYPES_H): Use AC_CHECK_DECLS_ONCE
5455         with only one argument, for Autoconf 2.60.
5456         * m4/fileblocks.m4 (gl_PREREQ_FILEBLOCKS): AC_CHECK_DECLS_ONCE may
5457         expand to nothing, so add a shell command to avoid syntax error.
5458         * m4/getpass.m4 (gl_PREREQ_GETPASS): Likewise.
5459
5460 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5461
5462         * lib/strtod.c (strtod): cast the argument of tolower to unsigned char.
5463
5464 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
5465
5466         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Don't check for getenv decl;
5467         no longer needed.  Check for isblank decl.
5468         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Don't check for getenv decl.
5469         * m4/regex.m4 (gl_PREREQ_REGEX): Dheck for isblank decl instead
5470         of existence.
5471
5472 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
5473
5474         * lib/getloadavg.c: Use __VMS, not VMS.
5475         * lib/getopt.c: Likewise.
5476         * lib/getpagesize.h: Likewise.
5477         * lib/glob.c: Remove most VMS cruft; it hasn't been tested for a while
5478         and probably does not work.
5479
5480 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
5481
5482         * lib/.cppi-disable: Add wcwidth.
5483         * lib/fnmatch.c (ISBLANK): Remove.  All uses changed to isblank.
5484         (isblank) [! (defined isblank || HAVE_DECL_ISBLANK)]: New macro.
5485         (ISGRAPH): Remove.  All uses changed to isgraph.
5486         (FOLD) [!defined _LIBC]: Remove special case.
5487         * lib/getdate.y (lookup_word): Remove no-longer-needed call to islower.
5488         * lib/regex_internal.h (isblank): Depend on HAVE_DECL_ISBLANK, not
5489         HAVE_ISBLANK.
5490         * lib/strftime.c (TOLOWER, TOUPPER) [!defined _LIBC]: Remove special
5491         case.
5492
5493 2006-07-06  Jim Hyslop  <jhyslop@dreampossible.ca>  (tiny change)
5494
5495         * lib/getaddrinfo.c: Changes to compile under MSVC6: changed
5496         '#if WIN32_NATIVE' to '#ifdef' & moved WSAAPI macro inside
5497         brackets.  Other minor changes to suppress some compiler
5498         warnings.
5499
5500 2006-07-06  Derek R. Price  <derek@ximbiot.com>
5501         and Paul Eggert  <eggert@cs.ucla.edu>
5502
5503         * m4/backupfile.m4 (gl_BACKUPFILE): Check for dirent.h, instead
5504         of invoking obsolescent AC_HEADER_DIRENT macro.
5505         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Likewise.
5506         * m4/d-type.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Likewise.
5507         * m4/dirfd.m4 (gl_FUNC_DIRFD): Likewise.
5508         * m4/fts.m4 (gl_FUNC_FTS_CORE): Likewise.
5509         * m4/getcwd.m4 (gl_PREREQ_GETCWD): Likewise.
5510         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
5511         * m4/savedir.m4 (gl_SAVEDIR): Likewise.
5512         * m4/readdir.m4: Remove; no longer needed.
5513
5514 2006-07-06  Derek R. Price  <derek@ximbiot.com>
5515         and Paul Eggert  <eggert@cs.ucla.edu>
5516
5517         * lib/backupfile.c [HAVE_DIRENT_H && ! HAVE_NDIR_H]:
5518         Don't worry about this obsolete case any more.
5519         (HAVE_DIR): Remove.  All uses removed; we now assume you can read
5520         directories.
5521         * lib/dirfd.h [HAVE_DIRENT_H && ! HAVE_NDIR_H]: Don't
5522         worry about this obsolete case any more.
5523         * lib/fts.c: Likewise.
5524         * lib/getcwd.c: Likewise.
5525         * lib/glob.h: Likewise.
5526         * lib/savedir.c: Likewise.
5527
5528 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
5529
5530         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Use AC_CHECK_DECLS_ONCE
5531         rather than AC_CHECK_DECLS for strtoimax and strtoumax.
5532         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Remove; no longer
5533         needed.
5534         All uses removed.
5535         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
5536         * m4/strtoul.m4 (gl_PREREQ_STRTOUL): Likewise.
5537         * m4/exclude.m4 (gl_EXCLUDE): Don't check for isascii; no longer
5538         needed.
5539         * m4/getdate.m4 (gl_GETDATE): Likewise.
5540         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Likewise.
5541         * m4/memcasecmp.m4 (gl_MEMCASECMP): Likewise.
5542         * m4/strtod.m4 (gl_FUNC_STRTOD): Likewise.
5543         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
5544         * m4/strtoul.m4 (gl_PREREQ_STRTOUL): Likewise.
5545         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
5546         * m4/exclude.m4 (gl_EXCLUDE): Don't require AC_C_INLINE; no longer
5547         needed.
5548
5549 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
5550
5551         * lib/memcasecmp.c: Include <limits.h>.
5552         (memcasecmp): Don't assume UCHAR_MAX <= INT_MAX.
5553         * lib/strtod.c (strtod): Don't assume isspace works on negative chars.
5554         Don't assume isdigit succeeds only on '0' through '9'.
5555
5556 2006-07-05  Eric Blake  <ebb9@byu.net>
5557
5558         * modules/getaddrinfo (Depends-on): Add snprintf.
5559
5560 2006-07-05  Eric Blake  <ebb9@byu.net>
5561
5562         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Use gl_HEADER_SYS_SOCKET
5563         to avoid 'header present but could not be compiled' on cygwin.
5564
5565 2006-07-05  Eric Blake  <ebb9@byu.net>
5566
5567         * lib/getaddrinfo.h (NI_NUMERICHOST, NI_NUMERICSERV): Define if
5568         missing from netdb.h.
5569         * lib/getaddrinfo.c (includes): Include inet_ntop and snprintf.
5570
5571 2006-07-05  Derek R. Price  <derek@ximbiot.com>
5572
5573         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Don't require AC_HEADER_STDC;
5574         no longer needed.
5575         * m4/exclude.m4 (gl_EXCLUDE): Likewise.
5576         * m4/getdate.m4 (gl_GETDATE): Likewise.
5577         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Likewise.
5578         * m4/memcasecmp.m4 (gl_MEMCASECMP): Likewise.
5579         * m4/strtod.m4 (gl_FUNC_STRTOD): Likewise.
5580         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
5581         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
5582
5583 2006-07-05  Derek R. Price  <derek@ximbiot.com>
5584
5585         * lib/exclude.c (IN_CTYPE_DOMAIN, is_space): Remove; no longer needed.
5586         All uses of is_space replaced by isspace.
5587         * lib/exit.h: Don't talk about STDC_HEADERS.
5588         * lib/fnmatch.c (ISASCII): Remove; no longer needed.  All uses removed.
5589         (ISPRINT, ISDIGIT, ISALNUM, ISALPHA, ISCNTRL, ISLOWER, ISPUNCT):
5590         (ISSPACE, ISUPPER, ISXDIGIT): Remove; no longer needed.  All uses
5591         replaced by isprint etc.
5592         * lib/getdate.y (IN_CTYPE_DOMAIN, ISSPACE, ISALPHA, ISLOWER): Likewise.
5593         * lib/getusershell.c (IN_CTYPE_DOMAIN, ISSPACE): Likewise.
5594         * lib/memcasecmp.c (IN_CTYPE_DOMAIN, ISLOWER, TOUPPER): Likewise.
5595         * lib/strtod.c (IN_CTYPE_DOMAIN, ISSPACE, ISDIGIT, TOLOWER): Likewise.
5596         * lib/strtol.c (IN_CTYPE_DOMAIN): Likewise.
5597         * lib/xstrtol.c (IN_CTYPE_DOMAIN, ISSPACE): Likewise.
5598
5599 2006-07-05  Bruno Haible  <bruno@clisp.org>
5600
5601         * m4/strndup.m4 (gl_FUNC_STRNDUP): When cross-compiling, check whether
5602         the function exists, before testing against AIX.
5603         Reported by Martin Lambers <marlam@marlam.de>.
5604
5605 2006-07-04  Paul Eggert  <eggert@cs.ucla.edu>
5606
5607         * modules/cycle-check (lib_SOURCES): Add same-inode.h.
5608         From Mark D. Baushke.
5609
5610 2006-07-04  Paul Eggert  <eggert@cs.ucla.edu>
5611
5612         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Prepend three slashes
5613         to the absolute name, not just one, to bypass Sun C 5.8's
5614         "warning: #include of /usr/include/... may be non-portable".
5615
5616 2006-07-04  Eric Blake  <ebb9@byu.net>
5617
5618         * modules/dirname-tests: New test module.
5619         * tests/test-dirname.c: New file, replacing dirname.c
5620         TEST_DIRNAME section that was recently deleted.
5621
5622 2006-07-04  Bruno Haible  <bruno@clisp.org>
5623
5624         Assume ANSI C header files and <ctype.h> functions.
5625         * lib/mbswidth.c (IN_CTYPE_DOMAIN, ISPRINT, ISCNTRL): Remove macros.
5626         (mbsnwidth): Use isprint, iscntrl instead.
5627
5628 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
5629
5630         Merge from coreutils.
5631         * MODULES.html.sh: Add xstrtold.
5632         * modules/xstrtold: New file.
5633         * modules/cycle-check (Files): Add lib/same-inode.h.
5634         * modules/dirname (Files): Add m4/double-slash-root.m4.
5635         * modules/getcwd (Files): Add m4/getcwd-abort-bug.m4.
5636         * modules/mkdir-p (Files): Add lib/same-inode.h.
5637         * modules/same (Files): Add lib/same-inode.h.
5638
5639 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
5640
5641         * m4/absolute-header.m4: Renamed from full-header-path.m4.
5642         This is to keep the terminology clean; POSIX talks about
5643         "absolute pathnames", not "full pathnames", but the GNU
5644         Coding Standards say to use "path" for something else;
5645         so use "absolute" to keep both sides happy.
5646         (gl_ABSOLUTE_HEADER): Renamed from gl_FULL_HEADER_PATH.
5647         Set gl_absolute_header, not gl_full_header_path.
5648         Set gl_cv_absolute_<header>, not gl_full_path_<header>.
5649         Define ABSOLUTE_<HEADER>, not FULL_PATH_<HEADER>.
5650         All uses changed.
5651
5652         Merge from coreutils.
5653
5654         2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
5655
5656         * m4/c-strtod.m4 (gl_C_STRTOLD): Add c-strtod.c to LIBSOURCES.
5657         Require gl_USE_SYSTEM_EXTENSIONS, not gl_C_STRTOD, since we don't
5658         want to require the building of c-strtod.o.
5659         * m4/lib-check.m4 (cu_LIB_CHECK): Remove SEQ_LIBM, since seq no longer
5660         needs -lm directly.
5661         * m4/xstrtod.m4 (gl_XSTRTOLD): New macro.
5662
5663         2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
5664
5665         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Prefer binutils's
5666         --as-needed option if available.  Problem reported by Albert Chin in
5667         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00114.html>.
5668         However, use -Wl,--as-needed, not bare --as-needed, since HP-UX 11.11
5669         cc merely issues a bunch of annoying warnings for --as-needed
5670         (this problem was reported by Bob Proulx).  Also, try linking with
5671         -lm to detect a bug in binutils 2.16 (this problem was reported
5672         by Ralf Wildenhues).
5673
5674         2006-06-18  Jim Meyering  <jim@meyering.net>
5675
5676         Test for a bug that causes glibc's getcwd to suffer a failed assertion.
5677         * m4/getcwd-abort-bug.m4 (gl_FUNC_GETCWD_ABORT_BUG): New file and
5678         macro.
5679         * m4/getcwd.m4 (gl_FUNC_GETCWD): If we detect support for getcwd_null,
5680         also check for glibc-2.4's abort-inducing bug.
5681
5682         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Fix typo.
5683         Low-probability clean-up should be to use rmdir to get rid of
5684         the just-created directory, not unlink.
5685
5686         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): If ftruncate is missing, make
5687         configure fail, and request a bug report to inform us about it.
5688         Add a comment that, barring reports to the contrary, in 2007 we'll
5689         assume ftruncate is universally available.
5690
5691         2006-04-17  Paul Eggert  <eggert@cs.ucla.edu>
5692
5693         * m4/filemode.m4 (gl_FILEMODE): Check for strmode declaration.
5694
5695         2006-03-12  Jim Meyering  <jim@meyering.net>
5696
5697         * m4/chdir-safer.m4 (gl_CHDIR_SAFER): Add same-inode.h to the list.
5698         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Likewise.
5699         * m4/same.m4 (gl_SAME): Likewise.
5700         * m4/root-dev-ino.m4 (gl_ROOT_DEV_INO): Likewise.
5701
5702         2006-03-11  Eric Blake  <ebb9@byu.net>
5703
5704         * m4/double-slash-root.m4: New file, provides gl_DOUBLE_SLASH_ROOT.
5705         * m4/dirname.m4 (gl_DIRNAME): Use gl_DOUBLE_SLASH_ROOT.
5706         * m4/dos.m4 (FILE_SYSTEM_PREFIX_LEN): Move from here to dirname.h.
5707         (FILE_SYSTEM_DRIVE_PREFIX_CAN_BE_RELATIVE): New define.
5708
5709 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
5710
5711         * lib/stdint_.h: Include <sys/types.h> after @FULL_PATH_STDINT_H@, for
5712         MacOS X 10.4.6.  Don't mention <sys/int_types.h>.  Problems
5713         reported by Mark D. Baushke, one in
5714         <http://lists.gnu.org/archive/html/bug-gnulib/2006-07/msg00015.html>.
5715
5716         Merge from coreutils.
5717
5718         * lib/.cppi-disable: Add stdint_.h.
5719         * lib/.cvsignore: Add stdint.h.
5720
5721         2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
5722
5723         * lib/xstrtod.c (XSTRTOD, DOUBLE): New macros, so that we can support
5724         both double and long double versions.
5725         (XSTRTOD): Renamed from xstrtod.  Use DOUBLE internally.
5726         * lib/xstrtold.c: New file.
5727         * lib/xstrtod.h (xstrtold): New decl.
5728
5729         2006-05-22  Paul Eggert  <eggert@cs.ucla.edu>
5730
5731         * lib/filemode.c (setst): Remove.
5732         (strmode): Rewrite to avoid setst.  This makes the code shorter,
5733         (arguably) clearer, and the generated code is a bit smaller on my
5734         Debian GNU/Linux stable x86 host.
5735
5736         2006-04-17  Paul Eggert  <eggert@cs.ucla.edu>
5737
5738         * lib/filemode.c: Include "filemode.h" first, to test the interface.
5739         Assume that filemode.h includes sys/types.h and sys/stat.h.
5740         (HAVE_ST_DM_MODE): New macro, moved here from ls.c.
5741         (ftypelet): Reorder to put common cases first, for efficiency.
5742         Add 'P', 'w'.  Remove 'M', since it's now the caller's responsibility
5743         to do 'M'.
5744         (strmode): Renamed from mode_string, and now stores 12 bytes instead
5745         of 10, for compatibility with FreeBSD.  All callers changed.
5746         (filemodestring): Now stores 12 bytes instead of 10, and sets file
5747         types that can't be deduced solely from st_mode.  First arg is now a
5748         const pointer.
5749         * lib/filemode.h (HAVE_DECL_STRMODE): Include <string.h> for strmode.
5750         (strmode): Renamed from mode_string.
5751         (filemodestring): New decl.
5752         * lib/stat-macros.h: Don't undef S_ISDOOR, since it's never buggy.
5753         (S_ISDOOR): Don't bother with S_IFDOOR, since that code is never
5754         needed.
5755         (S_ISPORT, S_ISWHT): New macros, if not already defined.
5756
5757         2006-04-12  Paul Eggert  <eggert@cs.ucla.edu>
5758
5759         * lib/fsusage.c: Don't include <inttypes.h> or <stdint.h>, since
5760         fsusage.h now does that.  Include fsusage.h first, to test interface.
5761         Prefer statvfs if it works, since it's blessed by POSIX.  Attempt
5762         at most one method (the old code could have generated decls that
5763         didn't conform to C89, not that this was ever exercised).
5764         * lib/fsusage.h: Include <inttypes.h> and <stdint.h> if they exist.
5765
5766         2006-03-19  Jim Meyering  <jim@meyering.net>
5767
5768         Work even in a chroot where d_ino values for entries in "/"
5769         don't match the stat.st_ino values for the same names.
5770         * lib/getcwd.c (__getcwd): When no d_ino value matches the target inode
5771         number, iterate through all entries again, using lstat instead.
5772         Reported by Kenshi Muto in http://bugs.debian.org/355810, and by
5773         Zouhir Hafidi in https://bugzilla.redhat.com/bugzilla/190656.
5774
5775         * lib/getcwd.c (__getcwd): Clarify a comment.
5776         Use memcpy in place of a call to strcpy.
5777
5778         2006-03-12  Jim Meyering  <jim@meyering.net>
5779
5780         * lib/fts-cycle.c (leave_dir): If cycle-check's saved dev-ino pair
5781         matches that of the current directory (which we're about to chdir ".."
5782         out of), then save the dev-ino of the parent, instead.
5783
5784         * lib/same-inode.h (SAME_INODE): New file/macro.
5785         * lib/chdir-safer.c (SAME_INODE): Remove definition.
5786         Include "same-inode.h", instead.
5787         * lib/same.c: Likewise.
5788         * lib/cycle-check.h: Include "same-inode.h".
5789         (CYCLE_CHECK_REFLECT_CHDIR_UP): Define.
5790         * lib/cycle-check.c (SAME_INODE): Remove definition.
5791         * lib/root-dev-ino.h: Include "same-inode.h".
5792
5793         2006-03-11  Eric Blake  <ebb9@byu.net>
5794
5795         * lib/same.c (same_name): s/base_name/last_component/
5796         * lib/backupfile.c (check_extension, numbered_backup): Likewise.
5797         * lib/filenamecat.c (file_name_concat): Likewise.
5798
5799         2006-03-11  Eric Blake  <ebb9@byu.net>,
5800                     Paul Eggert  <eggert@cs.ucla.edu>
5801
5802         * lib/dirname.h (FILE_SYSTEM_PREFIX_LEN): Move here from dos.m4.
5803         [FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]: Don't treat 1: as a
5804         drive prefix.
5805         (IS_ABSOLUTE_FILE_NAME): Treat all drive letters as absolute on
5806         platforms like cygwin with FILE_SYSTEM_DRIVE_PREFIX_IS_ABSOLUTE.
5807         (last_component): New method.
5808         * lib/dirname.c (dir_len): Determine when drive letters need a
5809         subsequent slash.  Preserve // when it is special.
5810         (dir_name): Don't append dot when drive letter is absolute.
5811         [TEST_DIRNAME]: Move into a full-blown gnulib test.
5812         * lib/basename.c (base_name): New semantics - malloc the result.
5813         Preserve // when it is special.  Preserve relative files that look
5814         like drive letters.
5815         (base_len): Preserve // when it is special.
5816         (last_component): New method, similar to old base_name semantics.
5817         * lib/stripslash.c (strip_trailing_slashes): Use last_component, not
5818         base_name.  Strip redundant slashes from ///.
5819
5820 2006-07-03  Jim Meyering  <jim@meyering.net>
5821
5822         * lib/cycle-check.h (CYCLE_CHECK_REFLECT_CHDIR_UP): Abort if this
5823         macro is used before the first cycle_check call.
5824
5825 2006-07-03  Eric Blake  <ebb9@byu.net>
5826
5827         * modules/dirname (Depends-on): Add xstrndup.
5828
5829 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
5830
5831         * m4/stdint.m4 (gl_STDINT_H): Use more-mnemonic identifiers for
5832         test cases, so that config.log is a bit easier to follow.
5833
5834 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
5835
5836         * lib/stdint_.h (intmax_t, uintmax_t): Prefer long to long long if
5837         both are 64 bits, since this seems to be the tradition, and this
5838         prevents gcc -Wformat from warning about usages with PRIuMAX.  If
5839         we ever run into a host that prefers long long to long in this
5840         case, we'll need another configure-time test.  Problem reported by
5841         Jim Meyering.
5842
5843 2006-07-02  Eric Blake  <ebb9@byu.net>
5844
5845         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Simplify by using AC_CHECK_DECLS.
5846
5847 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
5848
5849         * modules/inttypes (Depends-on): No longer depends on stdint.
5850         * modules/stdint (Description): Say more about assumptions.
5851         Say that the fast types might differ.  Say macros are used.
5852         (Files): Remove m4/size_max.m4, m4/wchar_t.m4.  Add m4/longlong.m4.
5853         (Makefile.am): Revise list of substituted symbols to match
5854         new stdint.m4.
5855         * modules/stdint-tests (Files): Add m4/wchar_t.m4, m4/wint_t.m4.
5856         (configure.ac): Add gt_TYPE_WCHAR_T, gt_TYPE_WINT_T.
5857         * tests/test-stdint.c (verify_same_types)
5858         [! (__GNUC__ >= 2 && DO_PEDANTIC)]: Put in a decl, so that
5859         the code conforms to C99/C89.
5860         Test for WCHAR_MIN and WCHAR_MAX only if HAVE_WCHAR_T.
5861         Test for WINT_MIN and WINT_MAX only if HAVE_WINT_T.
5862
5863 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
5864
5865         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Backport from Autoconf 2.60,
5866         but fix a bug, by requiring at least 64 bits.
5867         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Likewise.
5868         * m4/longlong.m4 (gl_AC_TYPE_LONG_LONG): Now just call
5869         AC_TYPE_LONG_LONG_INT.  This macro is obsolete and will go soon.
5870         * m4/ulonglong.m4 (gl_AC_TYPE_UNSIGNED_LONG_LONG) Likewise.
5871
5872         * m4/stdint.m4 (gl_STDINT_H): Rewrite to accommodate stdint_.h
5873         changes.  Make 2.59 a prerequisite.  Check and substitute for
5874         HAVE_LONG_LONG_INT.  Rely on Autoconf to check for stdint.h and
5875         inttypes.h.  Do not use special include files; just use the
5876         defaults.  Check for sys/inttypes.h and sys/bitypes.h in the usual
5877         way now.  Remove no-longer-needed tests for HAVE_LONG_64BIT,
5878         HAVE_LONG_LONG_64BIT, int8_t, int16_t, int32_t, int64_t, uint8_t,
5879         uint16_t, uint32_t uint64_t, int_least8_t, int_least16_t,
5880         int_least32_t, int_least64_t, uint_least8_t, uint_least16_t,
5881         uint_least32_t, uint_least64_t, int_fast8_t, int_fast16_t,
5882         int_fast32_t, int_fast64_t, uint_fast8_t uint_fast16_t,
5883         uint_fast32_t, uint_fast64_t, intptr_t, uintptr_t, intmax_t,
5884         uintmax_t, INT8_MIN, INT8_MAX, UINT8_MAX, INT16_MIN, INT16_MAX,
5885         UINT16_MAX, INT32_MIN, INT32_MAX, UINT32_MAX, INT64_MIN,
5886         INT64_MAX, UINT64_MAX, INT_LEAST8_MIN, INT_LEAST8_MAX,
5887         UINT_LEAST8_MAX, INT_LEAST16_MIN, INT_LEAST16_MAX,
5888         UINT_LEAST16_MAX, INT_LEAST32_MIN, INT_LEAST32_MAX,
5889         UINT_LEAST32_MAX, INT_LEAST64_MIN, INT_LEAST64_MAX,
5890         UINT_LEAST64_MAX, INT_FAST8_MIN, INT_FAST8_MAX, UINT_FAST8_MAX,
5891         INT_FAST16_MIN, INT_FAST16_MAX, UINT_FAST16_MAX, INT_FAST32_MIN,
5892         INT_FAST32_MAX, UINT_FAST32_MAX, INT_FAST64_MIN, INT_FAST64_MAX,
5893         UINT_FAST64_MAX, INTPTR_MIN, INTPTR_MAX, UINTPTR_MAX, INTMAX_MIN,
5894         INTMAX_MAX, UINTMAX_MAX, PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN,
5895         SIG_ATOMIC_MAX, SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN,
5896         WINT_MAX.  Check for C99 conformance more strictly, by detecting
5897         bugs in glibc 2.4, Solaris 10, and OpenBSD 3.9.  On the other hand do
5898         not check for things that C99 does not require, e.g., int8_t.  If
5899         a test isn't needed unless <stdint.h> isn't working, and is
5900         unlikely to be needed for any other reason, then don't do it
5901         unless <stdint.h> isn't working.  Do not check for ptrdiff_t or
5902         size_t, since we assume C89 freestanding at least.  Do not check
5903         for sig_atomic_t, wchar_t, or wint_t, since the code now does
5904         the right thing even if the types are not defined.  Instead use:
5905         (gl_STDINT_TYPE_PROPERTIES): New macro.
5906         (gl_HEADER_STDINT_H, gl_HEADER_INTTYPES_H): Remove.  Don't bother
5907         testing whether <sys/types.h> clashes, as Autoconf does this for
5908         us now.  All uses removed.
5909         (gl_STDINT_CHECK_TYPES, gl_STDINT_MISSING_BOUND):
5910         (gl_STDINT_MISSING_BOUNDS, gl_STDINT_MISSING_BOUNDS2):
5911         (gl_CHECK_TYPE_SAME):
5912         Remove; no longer needed.
5913         (gl_STDINT_BITSIZEOF): Don't bother to check whether the type
5914         exists, since we'll return 0 anyway in that case.
5915         (gl_INTEGER_TYPE_SUFFIX, gl_STDINT_INCLUDES): New macros.
5916
5917 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
5918
5919         * lib/stdint_.h (_GL_STDINT_H): Renamed from _STDINT_H, to avoid
5920         possible collision with system files.
5921         (<stdio.h>, <time.h>, <wchar.h>) [defined __cplusplus && ! defined
5922         __STDC_CONSTANT_MACROS)]: Do not include, since we don't need
5923         WCHAR_MIN and WCHAR_MAX in this case.
5924         (<stddef.h>): Do not include; no longer needed.
5925         (<sys/types.h>): Include if @HAVE_SYS_TYPES_H@, not if
5926         (defined(__OpenBSD__) || defined(__bsdi__) || defined(__sgi)).
5927         (<sys/inttypes.h>): Include if @HAVE_SYS_INTTYPES_H@ &&
5928         !@HAVE_INTTYPES_H@, not if (defined(__FreeBSD__)
5929         && (__FreeBSD__ >= 3) && (__FreeBSD__ <= 4)).
5930         (__STDINT_H__) [@HAVE_STDINT_H@ && defined __sgi && ! defined
5931         __c99]: Define, to work around IRIX <stdint.h> incompatibility.
5932         (@FULL_PATH_STDINT_H@) [!(defined(__sgi) && @HAVE_INTTYPES_H@ &&
5933         !defined(__c99))]: Include in this case too, since it's harmless
5934         now.
5935         (<inttypes.h>) [@HAVE_INTTYPES_H@]: Include, since it's no longer
5936         dangerous to do so.
5937         (@FULL_PATH_INTTYPES_H@) [(defined(__hpux) || defined(_AIX)) &&
5938         @HAVE_INTTYPES_H@]: Do not include, since we now include <inttypes.h>.
5939         (_STDINT_MIN, _STDINT_MAX): New macros.
5940         (int8_t, uint8_t, int16_t, uint16_t, int32_t, uint32_t, int64_t):
5941         (uint64_t, int_least8_t, uint_least8_t, int_least16_t):
5942         (uint_least16_t, int_least32_t, uint_least32_t, int_least64_t):
5943         (uint_least64_t, int_fast8_t, uint_fast8_t, int_fast16_t):
5944         (uint_fast16_t, int_fast32_t, uint_fast32_t, int_fast64_t):
5945         (uint_fast64_t, intptr_t, uintptr_t, intmax_t, uintmax_t): Now
5946         macros, not typedefs; this simplifies things quite a bit.
5947         Use long int for all types narrower than int64_t.
5948         (intmax_t, uintmax_t, INTMAX_C, UINTMAX_C):
5949         Define in terms of long long int or int64_t or long int,
5950         not int64_t or int32_t.  This saves some compile-time testing.
5951         (INT8_MIN, INT8_MAX, UINT8_MAX, INT16_MIN, INT16_MAX, UINT16_MAX):
5952         (INT32_MIN, INT32_MAX, UINT32_MAX, INT64_MIN, INT64_MAX):
5953         (UINT64_MAX, INT_LEAST8_MIN, INT_LEAST8_MAX, UINT_LEAST8_MAX):
5954         (INT_LEAST16_MIN, INT_LEAST16_MAX, UINT_LEAST16_MAX):
5955         (INT_LEAST32_MIN, INT_LEAST32_MAX, UINT_LEAST32_MAX):
5956         (INT_LEAST64_MIN, INT_LEAST64_MAX, UINT_LEAST64_MAX, INT_FAST8_MIN):
5957         (INT_FAST8_MAX, UINT_FAST8_MAX, INT_FAST16_MIN, INT_FAST16_MAX):
5958         (UINT_FAST16_MAX, INT_FAST32_MIN, INT_FAST32_MAX, UINT_FAST32_MAX):
5959         (INT_FAST64_MIN, INT_FAST64_MAX, UINT_FAST64_MAX, INTPTR_MIN):
5960         (INTPTR_MAX, UINTPTR_MAX, INTMAX_MIN, INTMAX_MAX, UINTMAX_MAX):
5961         (PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX):
5962         (SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN, WINT_MAX):
5963         undef any previous version and define our own version, for
5964         simplicity and consistency with the new macros for types.
5965         (PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX):
5966         (SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN, WINT_MAX):
5967         Simplify definitions by using _STDINT_MIN and _STDINT_MAX
5968         where appropriate.  Rely on new symbols @PTRDIFF_T_SUFFIX@,
5969         @SIG_ATOMIC_T_SUFFIX@, @SIZE_T_SUFFIX@, @WCHAR_T_SUFFIX@,
5970         @WINT_T_SUFFIX@ to keep things simple here.
5971         (UINT8_C, UINT16_C, UINT32_C, INT64_C, UINT64_C):
5972         Simplify by assuming typical 8/16/32/64 host, since we're
5973         already doing that elsewhere anyway.
5974         Use (LONG_MAX >> 31 >> 31 == 1) rather than @HAVE_LONG_64BIT@,
5975         and assume long long int is 64 bits if available.  This
5976         speeds up 'configure'.
5977
5978 2006-07-01  Eric Blake  <ebb9@byu.net>
5979
5980         * m4/stdarg.m4 (gl_STDARG_H): Use proper AH_VERBATIM.
5981         Reported by Andreas Buening.
5982
5983 2006-07-01  Eric Blake  <ebb9@byu.net>
5984
5985         * m4/stdarg.m4 (gl_STDARG_H): Properly parenthesize gl_va_copy.
5986
5987 2006-06-30  Jim Hyslop  <jhyslop@dreampossible.ca>  (tiny change)
5988
5989         * lib/getaddrinfo.c: fixed typo
5990
5991 2006-06-29  Jim Meyering  <jim@meyering.net>
5992
5993         * modules/strftime (Maintainer): Add my name, since with the
5994         FPRINTFTIME changes strftime.c has forked from glibc.
5995
5996 2006-06-29  Eric Blake  <ebb9@byu.net>
5997
5998         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Use AC_C_INLINE.
5999
6000 2006-06-29  Eric Blake  <ebb9@byu.net>
6001
6002         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): New file.
6003
6004 2006-06-29  Eric Blake  <ebb9@byu.net>
6005
6006         * lib/stat_.h: New file.
6007
6008 2006-06-29  Eric Blake  <ebb9@byu.net>
6009
6010         * lib/stat_.h (rpl_mkdir): Declare inline, to avoid warnings about
6011         unused static function.
6012
6013 2006-06-29  Eric Blake  <ebb9@byu.net>
6014
6015         * doc/functions.texi (Function Portability): Document missing lstat
6016         on mingw.
6017
6018 2006-06-29  Eric Blake  <ebb9@byu.net>
6019
6020         * MODULES.html.sh: Add sys_stat.
6021         * modules/sys_stat: New module.
6022         * modules/mkstemp (Depends-on): Add sys_stat.
6023
6024 2006-06-29  Derek R. Price  <derek@ximbiot.com>
6025
6026         * m4/strftime.m4: Don't call AC_FUNC_STRFTIME.
6027
6028 2006-06-29  Derek R. Price  <derek@ximbiot.com>
6029
6030         * m4/c-bs-a.m4: Removed.
6031
6032 2006-06-29  Derek R. Price  <derek@ximbiot.com>
6033
6034         * lib/strftime.c: Assume strftime() exists.
6035
6036 2006-06-29  Derek Price  <derek@ximbiot.com>
6037
6038         * modules/c-bs-a: Removed - \a is C89.
6039         * MODULES.html.sh: Remove c-bs-a.
6040
6041 2006-06-29  Bruno Haible  <bruno@clisp.org>
6042
6043         * modules/wcwidth (License): Change to LGPL.
6044
6045 2006-06-28  Simon Josefsson  <jas@extundo.com>
6046
6047         * tests/test-getaddrinfo.c: Test getnameinfo too.  Call WSAStartup
6048         on _WIN32.
6049
6050         * modules/getaddrinfo (Depends-on): Add inet_ntop, needed by
6051         getnameinfo.
6052
6053 2006-06-28  Simon Josefsson  <jas@extundo.com>
6054
6055         * m4/getaddrinfo.m4: Look for getnameinfo prototypes too.
6056
6057 2006-06-28  Simon Josefsson  <jas@extundo.com>
6058
6059         * lib/getaddrinfo.c: Try to load ws2_32.dll on Windows, to find the
6060         functions there.  It will succeed on Windows XP, but on Windows
6061         2000 and (presumably) earlier, it will fail, and use the internal
6062         re-implementation.
6063         (use_win32_p): New function.
6064         (getaddrinfo): Use strtoul on servname, to support numeric ports.
6065         Support AI_NUMERICSERV to disable getservbyname.
6066         (getnameinfo): New function, only supports
6067         NI_NUMERICHOST|NI_NUMERICSERV for now.
6068
6069         * lib/getaddrinfo.h: Test and check for AI_* flags separately, MinGW
6070         only have some of them.  Add AI_NUMERICSERV.  Add prototype for
6071         getnameinfo.
6072
6073 2006-06-28  Eric Blake  <ebb9@byu.net>
6074
6075         * modules/wcwidth: New file.
6076         * modules/mbchar (Depends-on): Add wcwidth.
6077         * modules/mbswidth (Depends-on): Add wcwidth.
6078         * MODULES.html.sh: Add wcwidth.
6079
6080 2006-06-28  Eric Blake  <ebb9@byu.net>
6081
6082         * m4/mbswidth.m4 (gl_MBSDWIDTH): Move wcwidth from here...
6083         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): ...to this new file.
6084
6085 2006-06-28  Eric Blake  <ebb9@byu.net>
6086
6087         * lib/xvasprintf.h: Fix comments.
6088
6089 2006-06-28  Eric Blake  <ebb9@byu.net>
6090
6091         * lib/mbchar.h (wcwidth): Include wcwidth.h.
6092         * lib/mbswidth.c (wcwidth): Move from here...
6093         * lib/wcwidth.h: ...to this new file.
6094
6095 2006-06-28  Derek R. Price  <derek@ximbiot.com>
6096
6097         * m4/savedir.m4: Remove AC_FUNC_CLOSEDIR_VOID requirement.
6098
6099         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Don't require AC_C_CONST, since
6100         it's obsolete.
6101         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME): Likewise.
6102
6103 2006-06-28  Derek R. Price  <derek@ximbiot.com>
6104
6105         * lib/savedir.c (CLOSEDIR): Remove.  All uses changed to closedir.
6106         Autoconf 2.60 says this stuff was obsolete.
6107
6108 2006-06-28  Bruno Haible  <bruno@clisp.org>
6109
6110         * modules/wcwidth (Files): Add m4/wchar_t.m4.
6111
6112 2006-06-28  Bruno Haible  <bruno@clisp.org>
6113
6114         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Also require AC_C_INLINE and
6115         gt_TYPE_WCHAR_T.
6116
6117 2006-06-28  Bruno Haible  <bruno@clisp.org>
6118
6119         * lib/wcwidth.h: Declare nothing if !HAVE_WCHAR_T. Provide a fallback
6120         declaration for wcwidth.
6121         * lib/mbswidth.c: Restore the includes of <wchar.h> and <wctypes.h>.
6122
6123 2006-06-28  Bruno Haible  <bruno@clisp.org>
6124
6125         * lib/mkdtemp.c [MINGW]: Include <io.h>.
6126         (mkdir): Define using _mkdir.
6127
6128 2006-06-28  Bruno Haible  <bruno@clisp.org>
6129
6130         * lib/getaddrinfo.h: Fix POSIX URL.
6131         * lib/getaddrinfo.c (WIN32_NATIVE): New macro. Use it instead of
6132         _WIN32.
6133         (use_win32_p): Make static.
6134         (getaddrinfo): Reject service name if it is empty or does not consist
6135         solely of decimal digits, or if its value is > 65535.
6136         (getnameinfo): Remove useless casts.
6137
6138 2006-06-27  Simon Josefsson  <jas@extundo.com>
6139
6140         * modules/sys_select: New file, suggested by Bruno Haible, Paul
6141         Eggert and Martin Lambers.
6142
6143 2006-06-27  Simon Josefsson  <jas@extundo.com>
6144
6145         * m4/sys_select_h.m4: New file, suggested by Bruno Haible, Paul
6146         Eggert and Martin Lambers.
6147
6148 2006-06-27  Bruno Haible  <bruno@clisp.org>
6149
6150         * m4/stdint.m4 (gl_STDINT_BITSIZEOF): For nonexistent types, set the
6151         result to 0, not to empty.
6152         Reported by Martin Neitzel <neitzel@sco.gaertner.de>.
6153
6154 2006-06-27  Bruno Haible  <bruno@clisp.org>
6155
6156         * lib/stdint_.h (intmax_t, uintmax_t): Undefine before typedef.
6157
6158 2006-06-26  Simon Josefsson  <jas@extundo.com>
6159
6160         * m4/inet_ntop.m4: Don't check for sys/types.h, we assume it is
6161         present.
6162
6163 2006-06-26  Paul Eggert  <eggert@cs.ucla.edu>
6164
6165         * lib/base64.c (B64): Use _ as the formal parameter, not x, to avoid
6166         bug in IBM C V6 for AIX.  Problem reported by Larry Jones in
6167         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00181.html>.
6168
6169 2006-06-26  Mark D. Baushke  <mdb@gnu.org>
6170
6171         * m4/stdint.m4 (gl_STDINT_H): Treat BSD/OS like OpenBSD.
6172
6173 2006-06-26  Bruno Haible  <bruno@clisp.org>
6174
6175         * modules/stdint (Makefile.am): Also substitute HAVE_WCHAR_H.
6176
6177 2006-06-26  Bruno Haible  <bruno@clisp.org>
6178
6179         * m4/stdint.m4 (gl_STDINT_H): Test also for <wchar.h>.
6180
6181 2006-06-26  Bruno Haible  <bruno@clisp.org>
6182
6183         * m4/stdint.m4 (gl_STDINT_H): Don't include <stdint.h> when using the
6184         SGI C compiler in pre-C99 mode.
6185         Suggested by Mark D. Baushke and Larry Jones.
6186
6187 2006-06-26  Bruno Haible  <bruno@clisp.org>
6188
6189         * lib/stdint_.h: Include <wchar.h> if necessary for WCHAR_MIN or
6190         WCHAR_MAX.
6191         Reported by Mark D. Baushke and Larry Jones.
6192
6193 2006-06-26  Bruno Haible  <bruno@clisp.org>
6194
6195         * lib/stdint_.h: Don't include <stdint.h> when using the SGI C compiler
6196         in pre-C99 mode.
6197         Suggested by Mark D. Baushke and Larry Jones.
6198
6199 2006-06-23  Simon Josefsson  <jas@extundo.com>
6200             Bruno Haible  <bruno@clisp.org>
6201
6202         * gnulib-tool (func_emit_lib_Makefile_am): Define MOSTLYCLEANDIRS.
6203         Emit mostlyclean-local rule.
6204         (func_emit_tests_Makefile_am): Likewise.
6205         * modules/sys_socket (Makefile.am): Use MOSTLYCLEANDIRS.
6206
6207 2006-06-23  Mark D. Baushke  <mdb@gnu.org>
6208
6209         * lib/stdint_.h: Treat BSD/OS like OpenBSD.
6210
6211 2006-06-23  Bruno Haible  <bruno@clisp.org>
6212
6213         * tests/test-stdint.c: Update to match ISO C 99 Technical
6214         Corrigendum 1.
6215
6216 2006-06-23  Bruno Haible  <bruno@clisp.org>
6217
6218         * m4/stdint.m4 (gl_STDINT_H): Treat IRIX like OpenBSD.
6219
6220 2006-06-23  Bruno Haible  <bruno@clisp.org>
6221
6222         * lib/stdint_.h: Treat IRIX like OpenBSD.
6223
6224 2006-06-23  Bruno Haible  <bruno@clisp.org>
6225
6226         * lib/stdint_.h (UINT8_C, UINT16_C, UINT32_C): Define according to
6227         ISO C 99 Technical Corrigendum 1.
6228
6229 2006-06-22  Simon Josefsson  <jas@extundo.com>
6230
6231         * m4/sockpfaf.m4: Include winsock2.h too, to make it work under
6232         MinGW.
6233
6234 2006-06-22  Paul Eggert  <eggert@cs.ucla.edu>
6235
6236         * lib/glob.c (collated_compare): Remove 'const' uses that weren't
6237         needed.  Some compiler complained about some of them.  Problem reported
6238         by Larry Jones in
6239         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00172.html>.
6240
6241 2006-06-21  Simon Josefsson  <jas@extundo.com>
6242
6243         * tests/test-getaddrinfo.c: New file.
6244
6245         * modules/getaddrinfo-tests: New file.
6246
6247         * MODULES.html.sh: Add inet_pton.
6248
6249         * modules/inet_pton: New file.
6250
6251 2006-06-21  Simon Josefsson  <jas@extundo.com>
6252
6253         * m4/getaddrinfo.m4: Don't define WINVER.  Look for gethostbyname in
6254         -lws2_32 too.  Fixes getaddrinfo on Windows 2000, with the price
6255         of using the (limited) gnulib implementation on Windows XP.
6256
6257         * m4/inet_pton.m4: New file.
6258
6259 2006-06-21  Simon Josefsson  <jas@extundo.com>
6260
6261         * lib/getaddrinfo.c (getaddrinfo): Set ai_family in the return
6262         variable.
6263
6264         * lib/socket_.h: Don't define WINVER.
6265
6266         * lib/inet_pton.h, inet_pton.c: New file, taken from glibc but
6267         slightly modified to work in gnulib.
6268
6269 2006-06-21  Simon Josefsson  <jas@extundo.com>
6270
6271         * doc/gnulib.texi (Windows sockets): Add.
6272
6273 2006-06-21  Paul Eggert  <eggert@cs.ucla.edu>
6274
6275         * lib/read-file.c (fread_file): Start with buffer allocation of
6276         0 bytes rather than 1 byte; this simplifies the code.
6277         Don't invoke feof; it's not needed.  Refactor to avoid duplicate
6278         code to free buffer and save/restore errno.
6279         (internal_read_file): Remove unused local.
6280
6281 2006-06-20  Paul Eggert  <eggert@cs.ucla.edu>
6282
6283         * lib/openat.c (openat): Use ?:, not if, to work around GCC bug 4210
6284         <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=4210>.
6285         Problem reported by Denis Excoffier in
6286         <http://lists.gnu.org/archive/html/bug-tar/2006-06/msg00023.html>.
6287
6288 2006-06-19  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
6289
6290         * modules/sys_socket, modules/socklen: Include sys/types since
6291         FreeBSD 4.x's sys/socket.h needs it.
6292
6293 2006-06-19  Simon Josefsson  <jas@extundo.com>
6294
6295         * lib/inet_ntop.c: Always build inet_ntop4, since inet_ntop6 calls it.
6296
6297 2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
6298
6299         * lib/alloca_.h (alloca) [defined alloca]: Don't define or declare.
6300
6301 2006-06-19  Bruno Haible  <bruno@clisp.org>
6302
6303         * m4/stdint.m4 (gl_STDINT_H): Enclose the values of FULL_PATH_STDINT_H
6304         and FULL_PATH_INTTYPES_H in angle brackets.
6305         Reported by Mark D. Baushke <mdb@gnu.org>.
6306
6307 2006-06-17  Eric Blake  <ebb9@byu.net>
6308
6309         * m4/rmdir-errno.m4 (gl_FUNC_FMDIR_NOTEMPTY): Assume errno.h declares
6310         errno.
6311
6312 2006-06-17  Bruno Haible  <bruno@clisp.org>
6313
6314         * m4/stdint.m4 (gl_STDINT_H) [FreeBSD >= 5]: Don't include
6315         <sys/inttypes.h>.
6316
6317 2006-06-17  Bruno Haible  <bruno@clisp.org>
6318
6319         * m4/setenv.m4 (gl_PREREQ_SETENV, gl_PREREQ_UNSETENV): Remove test
6320         whether errno is declared. Assume <errno.h> declares errno.
6321
6322 2006-06-17  Bruno Haible  <bruno@clisp.org>
6323
6324         * lib/stdint_.h [FreeBSD >= 5]: Don't include <sys/inttypes.h>.
6325
6326 2006-06-17  Bruno Haible  <bruno@clisp.org>
6327
6328         * lib/stdint_.h (_UINT8_T, _UINT32_T, _UINT64_T): New macros. Fixes a
6329         problem on Solaris 2.5.1.
6330
6331 2006-06-16  Eric Blake  <ebb9@byu.net>
6332
6333         * lib/unsetenv.c [!defined errno]: Assume errno.h declares errno.
6334         * lib/unicodeio.c [!defined errno]: Likewise.
6335         * lib/strtol.c [!defined errno]: Likewise.
6336         * lib/strtod.c [!defined errno]: Likewise.
6337
6338 2006-06-15  Eric Blake  <ebb9@byu.net>
6339
6340         * m4/ssize_t.m4 (gt_TYPE_SSIZE_T): Work in spite of -Werror.
6341
6342 2006-06-15  Eric Blake  <ebb9@byu.net>
6343
6344         * config/srclist.txt (ssize_t.m4): Lose sync.
6345
6346 2006-06-15  Bruno Haible  <bruno@clisp.org>
6347
6348         * modules/stdint (Files): Include m4/full-header-path.m4,
6349         m4/size_max.m4, m4/wchar_t.m4.
6350         (Makefile.am): Many more substitutions.
6351         * modules/stdint-tests: New file.
6352         * tests/test-stdint.c: New file.
6353
6354 2006-06-15  Bruno Haible  <bruno@clisp.org>
6355
6356         * m4/stdint.m4 (gl_STDINT_H): Rewritten to produce a complete stdint.h.
6357         (gl_HEADER_STDINT_H, gl_HEADER_INTTYPES_H, gl_STDINT_CHECK_TYPES,
6358         gl_STDINT_MISSING_BOUND, gl_STDINT_MISSING_BOUNDS,
6359         gl_STDINT_MISSING_BOUNDS2, gl_STDINT_BITSIZEOF, gl_CHECK_TYPES_SIGNED,
6360         gl_CHECK_TYPE_SAME): New macros.
6361
6362 2006-06-15  Bruno Haible  <bruno@clisp.org>
6363
6364         * m4/size_max.m4 (gl_SIZE_MAX): Make it work also when cross-compiling.
6365
6366 2006-06-15  Bruno Haible  <bruno@clisp.org>
6367
6368         * lib/stdint_.h: Rewritten to be fully auto-configured.
6369         Fixes bug on HP-UX/IA64.
6370
6371 2006-06-11  Paul Eggert  <eggert@cs.ucla.edu>
6372
6373         * lib/getdate.y (__attribute__): Don't define if already defined.
6374         Problem reported by Larry Jones.
6375         * lib/utimens.c (__attribute__): Likewise.
6376
6377 2006-06-04  Paul Eggert  <eggert@cs.ucla.edu>
6378
6379         * lib/regexec.c (group_nodes_into_DFAstates): Fix a buffer overrun
6380         reported by Andreas Schwab.
6381
6382 2006-05-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6383             Bruno Haible  <bruno@clisp.org>
6384
6385         * m4/strndup.m4 (gl_FUNC_STRNDUP): Replace the AC_REPLACE_FUNCS with a
6386         check for the declaration of strnlen and a run test that exposes the
6387         AIX 5.1 strnlen bug.  In the failure case, #define strndup to
6388         rpl_strndup.
6389
6390 2006-05-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6391             Bruno Haible  <bruno@clisp.org>
6392
6393         * lib/strndup.c (strndup) [!_LIBC]: Don't undefine macro definition.
6394
6395 2006-05-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6396
6397         * m4/c-strtod.m4 (gl_C99_STRTOLD): Use a link test rather than a
6398         compile test, for Tru64 4.0D.
6399
6400 2006-05-28  Karl Berry  <karl@gnu.org>
6401
6402         * config/srclist.txt (printf-args.c): lose sync.
6403
6404 2006-05-26  Martin Lambers  <marlam@marlam.de>
6405
6406         * lib/getpass.c: Updates the test for the native W32 API, and adds
6407         missing includes, thus fixing compilation warnings.
6408
6409 2006-05-25  Sergey Poznyakoff  <gray@gnu.org.ua>
6410
6411         * lib/exclude.c (exclude_fnmatch): New function.
6412         (excluded_file_name): Call exclude_fnmatch.
6413         * lib/exclude.h (excluded_file_name): New prototype
6414
6415 2006-05-25  Paul Eggert  <eggert@cs.ucla.edu>
6416
6417         * lib/tempname.c (small_open, large_open): New macros.
6418         (__open, __open64) [!_LIBC]: Remove.
6419         (__gen_tempname): Use small_open and large_open instead of __open
6420         and __open64.  This fixes a portability bug on HP-UX 11.11i
6421         reported by Simon Wing-Tang in
6422         <http://lists.gnu.org/archive/html/bug-coreutils/2006-05/msg00114.html>.
6423
6424 2006-05-24  Bruno Haible  <bruno@clisp.org>
6425
6426         * lib/printf-args.c (printf_fetchargs): Turn NULL pointers for
6427         TYPE_STRING and TYPE_WIDE_STRING into a non-NULL replacement.
6428         Reported by Thorsten Maerz <torte@netztorte.de> via
6429         Aaron Stone <aaron@serendipity.cx>.
6430
6431 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
6432
6433         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Rename cache variables to use
6434         gl_ rather than jm_.  Link, don't run, so that cross-compiles are
6435         allowed.  Check that resulting type is arithmetic.  Move AC_REQUIRE
6436         and AC_CHECK_HEADERS_ONCE outside of AC_CACHE_CHECK, since they're
6437         not really conditional on the cache.
6438         (gl_PREREQ_NANOSLEEP): Check for sys/select.h.
6439
6440 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
6441
6442         * lib/nanosleep.c [HAVE_SYS_SELECT_H]: Include <sys/select.h>.
6443         Use the usual Autoconf way to include <time.h> and/or sys/time.h.
6444         (my_usleep): Don't mishandle maximum value.
6445
6446 2006-05-19  Jim Meyering  <jim@meyering.net>
6447
6448         * lib/getugroups.c: Correct an outdated comment.  From Bruno Haible.
6449
6450 2006-05-17  Bruno Haible  <bruno@clisp.org>
6451
6452         Cygwin portability.
6453         * lib/classpath.c (PATH_SEPARATOR) [CYGWIN]: Define as ':'.
6454
6455 2006-05-17  Bruno Haible  <bruno@clisp.org>
6456
6457         * lib/stdint_.h: Fix recognition of Cygwin.
6458
6459 2006-05-15  Bruno Haible  <bruno@clisp.org>
6460
6461         * build-aux/config.rpath: Improve support for Sun C 5.9 on Linux, based
6462         on libtool patch by Ralf Wildenhues.
6463
6464 2006-05-14  Paul Eggert  <eggert@cs.ucla.edu>
6465
6466         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Fix overly-picky
6467         test for C99 conformance; (bool) 0.5 is an integer constant
6468         expression, but (bool) -0.5 is not.  Problem reported by Fedor
6469         Sergeev in <http://forum.sun.com/jive/thread.jspa?threadID=96202>.
6470
6471 2006-05-11  Simon Josefsson  <jas@extundo.com>
6472
6473         * m4/xvasprintf.m4: Fix obvious typo.
6474
6475 2006-05-11  Jim Meyering  <jim@meyering.net>
6476
6477         * lib/sha1.c (sha1_buffer): Correct comment: s/MD5/SHA1/.  From
6478         James Lemley.
6479
6480 2006-05-10  Simon Josefsson  <jas@extundo.com>
6481
6482         * lib/md4.c: Typo fix, update copyright years.
6483         (K1, K2): Don't use L because it turn computations into 64-bit on
6484         64-bit platforms.
6485
6486 2006-05-10  Paul Eggert  <eggert@cs.ucla.edu>
6487
6488         * lib/crc.c (crc32_update): Remove unnecessary L suffix.
6489         * lib/md4.c (rol): Cast right-shift arg to uint32_t to prevent
6490         unwanted sign propagation, e.g., on hosts with 64-bit int.
6491         There still are some problems with reeelly weird theoretical hosts
6492         (e.g., 33-bit int) but it's not worth worrying about now.
6493         * lib/sha1.c (rol): Likewise.
6494         (K1, K2, K3, K4): Remove unnecessary L suffix.
6495
6496 2006-05-10  Bruno Haible  <bruno@clisp.org>
6497
6498         * lib/des.c: Cast to avoid warnings.
6499
6500 2006-05-09  Bruno Haible  <bruno@clisp.org>
6501
6502         * modules/xvasprintf (Files): Add m4/xvasprintf.m4.
6503         (Depends-on): Depend also on xsize, stdarg.
6504         (configure.ac): Add gl_XVASPRINTF.
6505
6506 2006-05-09  Bruno Haible  <bruno@clisp.org>
6507
6508         * m4/xvasprintf.m4: New file.
6509
6510 2006-05-09  Bruno Haible  <bruno@clisp.org>
6511
6512         * lib/xvasprintf.c: Include limits.h, string.h, xsize.h.
6513         (EOVERFLOW): Define fallback value.
6514         (xstrcat): New function.
6515         (xvasprintf): Recognize the special case of a string concatenation.
6516
6517 2006-05-08  Eric Blake  <ebb9@byu.net>
6518
6519         * gnulib-tool (func_version): Base copyright year on CVS date.
6520         (func_emit_copyright_notice): New function.
6521         (func_emit_lib_Makefile_am): Use it.
6522         (func_emit_tests_Makefile_am): Likewise.
6523         (func_import): Likewise.
6524
6525 2006-05-08  Bruno Haible  <bruno@clisp.org>
6526
6527         * modules/stdarg: New file.
6528         * MODULES.html.sh (func_all_modules): Add section for <stdarg.h>.
6529
6530 2006-05-08  Bruno Haible  <bruno@clisp.org>
6531
6532         * m4/stdarg.m4: New file, from GNU gettext.
6533
6534 2006-05-08  Bruno Haible  <bruno@clisp.org>
6535
6536         * config/srclist.txt (build-aux/config.rpath): different from latest
6537         release.
6538
6539 2006-05-08  Bruno Haible  <bruno@clisp.org>
6540
6541         * build-aux/config.rpath: Add support for Sun C 5.9 on Linux.
6542
6543 2006-05-05  Jim Meyering  <jim@meyering.net>
6544
6545         * m4/warning.m4: New file, derived from bison's file by the same name.
6546
6547 2006-05-03  Bruno Haible  <bruno@clisp.org>
6548
6549         * lib/stdint_.h: Shorter URL.
6550         * lib/inttypes.h: Likewise.
6551
6552 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
6553
6554         * modules/inttypes (Maintainer): Change from Derek Price to 'all'.
6555
6556 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
6557
6558         * lib/verify.h: Document the internals better.  Most of this change
6559         was written by Bruno Haible.
6560
6561 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
6562
6563         * doc/verify.texi: New file, partly based on a proposal by
6564         Bruno Haible.
6565
6566 2006-05-02  Bruno Haible  <bruno@clisp.org>
6567
6568         * m4/full-header-path.m4 (gl_FULL_HEADER_PATH): Move the include_next
6569         test from here...
6570         * m4/_inttypes_h.m4 (gl_INTTYPES_H): ... to here.
6571
6572 2006-04-29  Bruno Haible  <bruno@clisp.org>
6573
6574         * lib/gcd.c: Use WORD_T and GCD instead of unsigned long and gcd.
6575         Suggested by Oskar Liljeblad <oskar@osk.mine.nu>.
6576
6577 2006-04-29  Bruno Haible  <bruno@clisp.org>
6578
6579         * gnulib-tool: Make --update option actually work.
6580
6581 2006-04-29  Bruno Haible  <bruno@clisp.org>
6582
6583         * doc/gcd.texi: New file.
6584         * doc/gnulib.texi: Include it.
6585
6586 2006-04-25  Paul Eggert  <eggert@cs.ucla.edu>
6587
6588         * lib/getdate.y (get_date): When adding relative date, start with the
6589         initial time, not with the result of the first mktime call.
6590
6591 2006-04-25  Bruno Haible  <bruno@clisp.org>
6592
6593         * gnulib-tool (func_import): Output the include directives in three
6594         blocks, sorted separately.
6595         Reported by Ben Pfaff <blp@cs.stanford.edu>.
6596
6597 2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
6598
6599         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Use prototype
6600         to define main with arguments, for C++.  Reported by Eric Blake.
6601         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC):
6602         Prefer 'int main ()' to 'int main (void)', for C++.
6603         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Likewise.
6604         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Specify a return type
6605         for 'main', for C99 and C++.
6606
6607 2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
6608
6609         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Use return, not exit.
6610         Don't assume that exit status -1 is valid.
6611         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
6612         * m4/putenv.m4 (gl_FUNC_PUTENV): Likewise.
6613         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Likewise.
6614         * m4/readdir.m4 (GL_FUNC_READDIR): Include <stdlib.h>.
6615         * m4/rename.m4 (vb_FUNC_RENAME): Likewise.
6616         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Use AC_RUN_IFELSE,
6617         not AC_TRY_RUN.  Use return, not exit.  Don't assume that
6618         functions can be used without declaring them, or that you can
6619         exit with status -1.
6620         * m4/utimes-null.m4 (gl_FUNC_UTIMES_NULL): Likewise.
6621
6622 2006-04-24  Karl Berry  <karl@gnu.org>
6623
6624         * config/srclist.txt (longdouble.m4): sync lost.
6625
6626 2006-04-24  Eric Blake  <ebb9@byu.net>
6627
6628         * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Avoid unused variable warning.
6629
6630 2006-04-24  Bruno Haible  <bruno@clisp.org>
6631
6632         * m4/poll.m4 (gl_FUNC_POLL): When cross-compiling, reject also the
6633         poll() implementation in AIX.
6634         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
6635
6636 2006-04-24  Bruno Haible  <bruno@clisp.org>
6637
6638         * m4/poll.m4 (gl_FUNC_POLL): Rearrange code, so that POLL_H gets
6639         assigned exactly once.
6640
6641 2006-04-23  Claudio Fontana  <claudio@gnu.org>
6642             Bruno Haible  <bruno@clisp.org>
6643
6644         * modules/gettext (Makefile.am): Add a -I flag for <libintl.h>.
6645         * gnulib-tool (func_emit_lib_Makefile_am): Emit empty default value
6646         for AM_CPPFLAGS.
6647
6648 2006-04-23  Bruno Haible  <bruno@clisp.org>
6649
6650         * modules/copy-file: Depend on unistd.
6651         * modules/execute: Likewise.
6652         * modules/fatal-signal: Likewise.
6653         * modules/findprog: Likewise.
6654         * modules/mkdtemp : Likewise.
6655         * modules/pipe: Likewise.
6656         * modules/wait-process: Likewise.
6657
6658 2006-04-23  Bruno Haible  <bruno@clisp.org>
6659
6660         * lib/fwriteerror.c (fwriteerror): Call fclose also when an error
6661         condition was already detected.
6662         Reported by Ben Pfaff <blp@cs.stanford.edu>.
6663
6664 2006-04-23  Bruno Haible  <bruno@clisp.org>
6665
6666         * lib/copy-file.c: Include <unistd.h> unconditionally.
6667         * lib/execute.c: Likewise.
6668         * lib/fatal-signal.c: Likewise.
6669         * lib/findprog.c: Likewise.
6670         * lib/mkdtemp.c: Likewise.
6671         * lib/pipe.h: Likewise.
6672         * lib/pipe.c: Likewise.
6673         * lib/wait-process.h: Likewise.
6674
6675 2006-04-23  Bruno Haible  <bruno@clisp.org>
6676
6677         * gnulib-tool (func_usage): Fix --import description. Document
6678         --update.
6679         (func_import): Create temporary file in a temporary directory, if
6680         --dry-run is specified. Silence errors from 'grep' when there are no
6681         m4 files in $m4dir.
6682         (func_create_testdir): Silence errors from 'grep' when there are no
6683         m4 files in $m4dir.
6684         Reported by Karl Berry <karl@freefriends.org>.
6685
6686 2006-04-20  Bruno Haible  <bruno@clisp.org>
6687
6688         * m4/argp.m4 (gl_ARGP): Don't call AC_CHECK_DECLS_ONCE with more than
6689         one argument, so that the code will be portable to Autoconf 2.60.
6690         * m4/getlogin_r.m4 (gl_PREREQ_GETLOGIN_R): Likewise.
6691         * m4/getpass.m4 (gl_PREREQ_GETPASS): Likewise.
6692         * m4/unlocked-io.m4 (gl_FUNC_GLIBC_UNLOCKED_IO): Likewise.
6693
6694 2006-04-19  Derek Price  <derek@ximbiot.com>
6695             Eric Blake  <ebb9@byu.net>
6696
6697         * m4/full-header-path.m4 (gl_FULL_HEADER_PATH): Use </full/path.h>
6698         rather than "/full/path.h".  Update comment to match.  Shorten &
6699         generalize m4_translit call via AS_TR_CPP.
6700
6701 2006-04-19  Derek Price  <derek@ximbiot.com>
6702             Eric Blake  <ebb9@byu.net>
6703
6704         * lib/inttypes.h: Correct grammar in comment.
6705
6706 2006-04-18  Derek Price  <derek@ximbiot.com>
6707             Paul Eggert  <eggert@cs.ucla.edu>
6708
6709         * modules/inttypes: New file.
6710         * modules/strtoimax, modules/strtoumax: Depend on inttypes.
6711
6712 2006-04-18  Derek Price  <derek@ximbiot.com>
6713             Paul Eggert  <eggert@cs.ucla.edu>
6714
6715         * m4/_inttypes_h.m4, m4/full-header-path.m4, m4/include_next.m4:
6716         New files.
6717
6718 2006-04-18  Derek Price  <derek@ximbiot.com>
6719             Paul Eggert  <eggert@cs.ucla.edu>
6720
6721         * lib/inttypes.h: New file.
6722         * lib/strtoimax.c: Assume <inttypes.h>.
6723
6724 2006-04-15  Paul Eggert  <eggert@cs.ucla.edu>
6725
6726         * lib/utimens.c (futimens): glibc futimesat messes up if /proc
6727         isn't mounted.  Problem reported by Kir Kolyshkin.
6728
6729 2006-04-13  Paul Eggert  <eggert@cs.ucla.edu>
6730
6731         * lib/regcomp.c (init_dfa): Don't use wchar_t or wctype_t if
6732         RE_ENABLE_I18N is not defined.  Problem reported by Mark D. Baushke via
6733         Derek R. Price.
6734         * lib/regex.h (RE_DUP_MAX): Update comment to match current
6735         implementation.
6736
6737 2006-04-12  Eric Blake  <ebb9@byu.net>
6738
6739         * modules/time_r (Makefile.am): Remove lib_SOURCES line, as this
6740         is now done automatically by the corresponding Autoconf macro.
6741
6742 2006-04-11  Paul Eggert  <eggert@cs.ucla.edu>
6743
6744         * m4/time_r.m4 (gl_TIME_R): Add AC_LIBSOURCES for time_r.c and
6745         time_r.h.
6746
6747 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
6748
6749         Merge regex changes from libc, removing some of our
6750         POSIX-conformance changes that were rejected and redoing them in a
6751         less-intrusive way.
6752
6753         * lib/regcomp.c (re_compile_internal, init_dfa):
6754         Length arg is now size_t, not Idx.  All uses changed.
6755         (peek_token): Forward decl now says internal_function.
6756         (__re_error_msgid, __re_error_msgid_idx):
6757         Now static rather than extern with attribute_hidden.
6758         (re_compile_pattern) [!defined _LIBC]: Use K&R-style defn.
6759         For some reason libc prefers K&R style defns for external functions.
6760         (regerror) [!defined _LIBC]: Likewise.
6761         (re_set_syntax, re_compile_fastmap, regcomp, regfree, re_comp):
6762         (seek_collating_symbol_entry, lookup_collation_sequence_value):
6763         (build_range_exp, build_collating_symbol):
6764         Use K&R-style defn.
6765         (re_compile_fastmap): Use '\0' to memset, not 0.
6766         (utf8_sb_map): Make the calculations more obvious.
6767         (init_dfa, parse_bracket_exp, build_charclass_op):
6768         Call calloc and cast result, as glibc does.
6769         (init_word_char, fetch_token, peek_token, peek_token_bracket):
6770         (build_range_exp, build_collating_symbol):
6771         Now internal functions.
6772
6773         * lib/regex.c [!defined _LIBC]: Allow compiling with C++ compilers.
6774
6775         * lib/regex.h (__USE_GNU_REGEX): New macro.  Don't depend on
6776         _REGEX_SOURCE any more; depend on _GNU_SOURCE instead.
6777         Don't depend on VMS; depend on __VMS instead, for POSIX
6778         namespace cleanness.
6779         (regoff_t): Define to ssize_t, not long int.
6780
6781         Remove the REG_ macros named below.  Instead, make the old names
6782         (e.g., RE_BACKSLASH_ESCAPE_IN_LISTS) visible only if
6783         __USE_GNU_REGEX.
6784         (REG_BACKSLASH_ESCAPE_IN_LISTS):
6785         (REG_BK_PLUS_QM, REG_CHAR_CLASSES, REG_CONTEXT_INDEP_ANCHORS):
6786         (REG_CONTEXT_INDEP_OPS, REG_CONTEXT_INVALID_OPS):
6787         (REG_DOT_NEWLINE, REG_DOT_NOT_NULL, REG_HAT_LISTS_NOT_NEWLINE):
6788         (REG_INTERVALS, REG_LIMITED_OPS, REG_NEWLINE_ALT):
6789         (REG_NO_BK_BRACES, REG_NO_BK_PARENS, REG_NO_BK_REFS):
6790         (REG_NO_BK_VBAR, REG_NO_EMPTY_RANGES):
6791         (REG_UNMATCHED_RIGHT_PAREN_ORD, REG_NO_POSIX_BACKTRACKING):
6792         (REG_NO_GNU_OPS, REG_DEBUG, REG_INVALID_INTERVAL_ORD):
6793         (REG_IGNORE_CASE, REG_CARET_ANCHORS_HERE):
6794         (REG_CONTEXT_INVALID_DUP, REG_NO_SUB, REG_SYNTAX_EMACS):
6795         (REG_SYNTAX_AWK, REG_SYNTAX_GNU_AWK, REG_SYNTAX_POSIX_AWK):
6796         (REG_SYNTAX_GREP, REG_SYNTAX_EGREP, REG_SYNTAX_POSIX_EGREP):
6797         (REG_SYNTAX_ED, REG_SYNTAX_SED, _REG_SYNTAX_POSIX_COMMON):
6798         (REG_SYNTAX_POSIX_BASIC, REG_SYNTAX_POSIX_MINIMAL_BASIC):
6799         (REG_SYNTAX_POSIX_EXTENDED, REG_SYNTAX_POSIX_MINIMAL_EXTENDED):
6800         (REG_DUP_MAX, REG_UNALLOCATED, REG_REALLOCATE, REG_FIXED):
6801         (REG_NREGS):
6802         Remove.  All uses replaced by the old RE_* names.
6803         (RE_BACKSLASH_ESCAPE_IN_LISTS):
6804         (RE_BK_PLUS_QM, RE_CHAR_CLASSES, RE_CONTEXT_INDEP_ANCHORS):
6805         (RE_CONTEXT_INDEP_OPS, RE_CONTEXT_INVALID_OPS):
6806         (RE_DOT_NEWLINE, RE_DOT_NOT_NULL, RE_HAT_LISTS_NOT_NEWLINE):
6807         (RE_INTERVALS, RE_LIMITED_OPS, RE_NEWLINE_ALT):
6808         (RE_NO_BK_BRACES, RE_NO_BK_PARENS, RE_NO_BK_REFS):
6809         (RE_NO_BK_VBAR, RE_NO_EMPTY_RANGES):
6810         (RE_UNMATCHED_RIGHT_PAREN_ORD, RE_NO_POSIX_BACKTRACKING):
6811         (RE_NO_GNU_OPS, RE_DEBUG, RE_INVALID_INTERVAL_ORD):
6812         (RE_IGNORE_CASE, RE_CARET_ANCHORS_HERE):
6813         (RE_CONTEXT_INVALID_DUP, RE_NO_SUB):
6814         Don't bother having these macros be independent of each others'
6815         values, since they no longer exist in the POSIX name space.
6816
6817         Rename the following member names back to their old names,
6818         unless !__USE_GNU_REGEX.  All uses changed back.
6819         (buffer): Renamed from re_buffer.
6820         (allocated): Renamed from re_allocated.
6821         (used): Renamed from re_used.
6822         (syntax): Renamed from re_syntax.
6823         (fastmap): Renamed from re_fastmap.
6824         (translate): Renamed from re_translate.
6825         (can_be_null): Renamed from re_can_be_null.
6826         (regs_allocated): Renamed from re_regs_allocated.
6827         (fastmap_accurate): Renamed from re_fastmap_accurate.
6828         (no_sub): Renamed from re_no_sub.
6829         (not_bol): Renamed from re_not_bol.
6830         (not_eol): Renamed from re_not_eol.
6831         (newline_anchor): Renamed from re_newline_anchor.
6832         (num_regs): Renamed from rm_num_regs.
6833         (start): Renamed from rm_start.
6834         (end): Renamed from rm_end.
6835
6836         (free_state): Move up a bit.
6837
6838         * lib/regex_internal.h (inline) [__GNUC__ < 3 && defined _LIBC]:
6839         #define to be empty.
6840         (ASCII_CHARS): New macro, replacing all uses of 0x80 and/or SBC_MAX / 2
6841         when that is what is intended.
6842         (SBC_MAX): Define to UCHAR_MAX + 1, not 256.
6843         (__re_error_msgid, __re_error_msgid_idx): Remove decls; not needed.
6844         (MAX): New macro.
6845         (re_xmalloc, re_calloc, re_xrealloc, re_x2realloc): Remove.
6846         All uses changed back to re_malloc, etc.  It's now the caller's
6847         responsibility to check for overflow; all callers changed.
6848         (re_alloc_oversized, re_x2alloc_oversized, re_xnmalloc, re_xnrealloc):
6849         (re_x2nrealloc): Remove.
6850         (free_state): Remove decl.
6851
6852         * lib/regexc.c (regexec, re_match, re_search, re_match_2, re_search_2):
6853         (re_set_registers, re_exec):
6854         Use K&R-style defn.
6855
6856         2006-01-31  Roland McGrath  <roland@redhat.com>
6857
6858         * lib/regcomp.c (calc_eclosure_iter): Remove dead variables.
6859         Reported by Mike Frysinger <vapier@gentoo.org>.
6860
6861         2006-01-15  Andreas Jaeger  <aj@suse.de>
6862
6863         [BZ #1950]
6864         * lib/regex_internal.c (re_string_reconstruct): Adjust for
6865         build_wcs_upper_buffer change.
6866         (build_wcs_upper_buffer): Change return type.
6867
6868         2005-12-10  Ulrich Drepper  <drepper@redhat.com>
6869
6870         * lib/regex_internal.h: Include <stdint.h> if available.
6871
6872         2005-12-06  Paolo Bonzini  <bonzini@gnu.org>
6873
6874         * lib/regex_internal.h (SIZE_MAX): Provide a default definition.
6875
6876         2005-10-14  Ulrich Drepper  <drepper@redhat.com>
6877
6878         * lib/regcomp.c: Adjust for changed secondary hash function.
6879
6880         2005-09-30  Ulrich Drepper  <drepper@redhat.com>
6881
6882         * lib/regex.h: Pretty printing.
6883         Clean up namespace a bit.
6884
6885         2005-09-30  Jakub Jelinek  <jakub@redhat.com>
6886
6887         * lib/regexec.c (update_cur_sifted_state, check_arrival,
6888         check_arrival_add_next_nodes): Avoid using uninitialized variable.
6889
6890         2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
6891                     Ulrich Drepper  <drepper@redhat.com>
6892
6893         [BZ #1302]
6894         * lib/regex_internal.h (bitset_t): Renamed from bitset.  All uses
6895         changed.
6896         (bitset_word_t): Renamed from bitset_word.  All uses changed.
6897
6898         2005-09-22  Ulrich Drepper  <drepper@redhat.com>
6899
6900         [BZ #281]
6901         * lib/regex.h: Define RE_TRANSLATE_TYPE as unsigned char *.
6902         * lib/regcomp.c: Remove unnecessary uses of
6903         unsigned RE_TRANSLATE_TYPE.
6904         * lib/regex_internal.h: Likewise.
6905         * lib/regex_internal.c: Likewise.
6906         * lib/regexec.c: Likewise.
6907         Based on a patch by Stepan Kasal <kasal@ucw.cz>.
6908
6909         2005-09-07  Ulrich Drepper  <drepper@redhat.com>
6910
6911         * lib/regexec.c (find_recover_state): Remove unnecessary
6912         initialization.
6913         (transit_state_bkref): Make DFA a const pointer.
6914         (get_subexp): Likewise.
6915         (check_arrival): Likewise.
6916         (update_cur_sifted_state): Likewise.
6917         (re_search_internal): Likewise.
6918         (prune_impossible_nodes): Likewise.
6919         (acquire_init_state_context): Likewise.
6920         (proceed_next_node): Likewise.
6921         (set_regs): Likewise.
6922         (free_fail_stack_return): Likewise.
6923         (check_arrival_expand_ecl): Mark DFA parameter as const.
6924         (check_arrival_expand_ecl_sub): Likewise.
6925         (check_subexp_limits): Likewise.
6926         (sub_epsilon_src_nodes):  Likewise.
6927         (add_epsilon_src_nodes):  Likewise.
6928         (merge_state_array): Likewise.
6929         (update_regs): Likewise.
6930         (build_trtable): Likewise.
6931         (sift_states_backward): Mark MCTX parameter as const.
6932         (build_sifted_states): Likewise.
6933         (update_cur_sifted_state): Likewise.
6934         (sift_states_mkref): Likewise.
6935         (check_arrival_expand_ecl): Mark eclosure as const.
6936         (check_dst_limits_calc_pos_1): Likewise.
6937         * lib/regex_internal.h (re_match_context_t): Make dfa a const
6938         pointer.
6939
6940         2005-09-06  Ulrich Drepper  <drepper@redhat.com>
6941
6942         * lib/regexec.c (merge_state_with_log): Define dfa as const pointer.
6943         (transit_state_sb): Likewise.
6944         (transit_state_mb): Likewise.
6945         (sift_states_iter_mb): Likewise.
6946         (check_arrival_add_next_nodes): Likewise.
6947         (check_node_accept_bytes): Change first parameter to pointer-to-const.
6948         [_LIBC] (re_search_2_stub): Use mempcpy.
6949
6950         * lib/regex_internal.c (re_string_reconstruct): Avoid calling
6951         mbrtowc for very simple UTF-8 case.
6952
6953         * lib/regex_internal.c (re_acquire_state): Make DFA pointer arg
6954         a pointer-to-const.
6955         (re_acquire_state_context): Likewise.
6956         * lib/regex_internal.h: Adjust prototypes.
6957
6958         * lib/regex.c: Prevent using C++ compilers.
6959
6960         * lib/regex_internal.c (re_acquire_state): Minor code rearrangement.
6961         (re_acquire_state_context): Likewise.
6962
6963 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
6964
6965         * modules/regex (Depends-on): Add ssize_t.
6966
6967 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
6968
6969         * m4/regex.m4 (gl_REGEX): Check for new glibc interface to
6970         translation table.
6971
6972 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
6973
6974         * doc/gnulib-tool.texi (Modified imports): pathname -> file name.
6975
6976 2006-03-29  Mark D. Baushke  <mdb@gnu.org>
6977             Bruno Haible  <bruno@clisp.org>
6978
6979         * lib/stdint_.h: On OpenBSD, don't redefine types already included in
6980         <sys/types.h> and <inttypes.h>.
6981
6982 2006-03-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6983
6984         * m4/argz.m4 (gl_FUNC_ARGZ): If we define `error_t', also define
6985         `__error_t_defined', so argp.h will not typedef the former.
6986
6987 2006-03-25  Paul Eggert  <eggert@cs.ucla.edu>
6988
6989         * m4/regex.m4 (gl_REGEX): Don't insist on REG_SYNTAX_POSIX_EGREP,
6990         REG_SYNTAX_EMACS, and REG_IGNORE_CASE.  Settle for the traditional
6991         glibc names.  Even if glibc is changed to conform to POSIX, the
6992         traditional names will be available anyway, since regex depends on
6993         the extensions module.  Also, fix a longstanding typo in the
6994         implementation of Spencer ERE test #75 from grep 2.3.  Problems
6995         reported by Emanuele Giaquinta.  Also, change sense of cached
6996         variable, so that the message makes sense.
6997
6998 2006-03-24  Simon Josefsson  <jas@extundo.com>
6999
7000         * lib/base64.c: Fix problems reported by Eric Blake <ebb9@byu.net>,
7001         including some doc fixes.
7002         (base64_encode_alloc): Fix +1 bug on allocation failures.
7003
7004 2006-03-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7005
7006         * lib/base64.c (base64_encode): Do not read past end of array with
7007         unsanitized input on systems with CHAR_BIT > 8.
7008
7009 2006-03-24  Eric Blake  <ebb9@byu.net>
7010
7011         * lib/time_r.c (copy_string_result): Remove, as it is no longer used.
7012
7013 2006-03-22  Karl Berry  <karl@gnu.org>
7014
7015         * config/srclist.txt (*setenv.[ch]): get from coreutils.
7016         * config/srclistvars.sh (COREUTILS): new var.
7017
7018 2006-03-17  Jim Meyering  <jim@meyering.net>
7019
7020         * m4/regex.m4 (gl_REGEX): Fix typo in last change:
7021         s/_REGEX_WIDE_OFFSETS/_REGEX_LARGE_OFFSETS/.
7022
7023 2006-03-16  Paul Eggert  <eggert@cs.ucla.edu>
7024
7025         * m4/regex.m4 (gl_REGEX): Don't check for off_t, since the code
7026         no longer needs it.  Instead, check that regoff_t is as least
7027         as wide as ptrdiff_t.
7028
7029         Don't define _REGEX_WIDE_OFFSETS unless using the included regex,
7030         so that our regex.h stays compatible with the installed regex.
7031         This is helpful for installers who configure --without-included-regex.
7032         Problem reported by Emanuele Giaquinta.
7033
7034 2006-03-16  Paul Eggert  <eggert@cs.ucla.edu>
7035
7036         * lib/regex.h (regoff_t) [defined _REGEX_LARGE_OFFSETS]:
7037         Typedef to long int, not to off_, as POSIX will likely change
7038         in that direction.
7039
7040 2006-03-15  Eric Blake  <ebb9@byu.net>
7041
7042         * m4/dirfd.m4 (gl_FUNC_DIRFD): Use AC_REQUIRE for AC_HEADER_DIRENT.
7043
7044 2006-03-13  Sergey Poznyakoff  <gray@gnu.org.ua>
7045
7046         * lib/argp-help.c (validate_uparams): Fix typo
7047         * lib/argp-parse.c (argp_default_options): Consistently begin help
7048         messages with a lowercase letter.
7049
7050 2006-03-11  Paul Eggert  <eggert@cs.ucla.edu>
7051
7052         * lib/time_r.h (asctime_r, ctime_r): Remove.  These functions can
7053         overrun buffers and shouldn't be used (much as gets shouldn't be
7054         used).
7055         * lib/time_r.c (asctime_r, ctime_r): Likewise.
7056
7057 2006-03-08  Simon Josefsson  <jas@extundo.com>
7058
7059         * m4/gc-random.m4: Permit 'no' as variable values and fix warnings,
7060         suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
7061
7062 2006-03-08  Simon Josefsson  <jas@extundo.com>
7063
7064         * m4/gc-random.m4: Call AC_CANONICAL_HOST and use $host_os instead of
7065         $target, suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
7066
7067 2006-03-08  Simon Josefsson  <jas@extundo.com>
7068
7069         * lib/gc-gnulib.c (randomize): Don't open files called 'no', they
7070         signal that configure disabled the device.
7071
7072 2006-03-08  Simon Josefsson  <jas@extundo.com>
7073
7074         * build-aux/maint.mk: Fix refresh-po, to handle no translated
7075         languages.
7076
7077 2006-03-07  Simon Josefsson  <jas@extundo.com>
7078
7079         * modules/getopt (Depends-on): Add unistd.
7080
7081         * modules/unistd: New file.
7082
7083 2006-03-07  Simon Josefsson  <jas@extundo.com>
7084
7085         * modules/gc-random: New file.
7086
7087 2006-03-07  Simon Josefsson  <jas@extundo.com>
7088
7089         * m4/unistd_h.m4: New file.
7090
7091 2006-03-07  Simon Josefsson  <jas@extundo.com>
7092
7093         * m4/readline.m4 (gl_FUNC_READLINE): Rewrite the cached part of the
7094         test to be side-effect free by storing the result in the cache
7095         variable gl_cv_lib_readline, and moving the assignment of
7096         LIBREADLINE and LTLIBREADLINE outside the COMMANDS-TO-SET-IT.
7097         From Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
7098
7099 2006-03-07  Simon Josefsson  <jas@extundo.com>
7100
7101         * m4/gc-random.m4: New file, mostly from gc.m4.  Warn instead of
7102         error on missing devices (the functions will return an error).
7103
7104         * m4/gc.m4: Move random stuff to gc-random.m4
7105
7106 2006-03-07  Simon Josefsson  <jas@extundo.com>
7107
7108         * lib/unistd_.h: New file.
7109
7110 2006-03-07  Simon Josefsson  <jas@extundo.com>
7111
7112         * lib/gc-libgcrypt.c, gc-gnulib.c: Use GC_USE_RANDOM.
7113
7114 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
7115
7116         * m4/unistd_h.m4 (gl_HEADER_UNISTD): Rename, to match modules file.
7117         Problem reported by Juan Manuel Guerrero.
7118
7119 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
7120
7121         * lib/c-stack.c: Include unistd.h unconditionally, since we now assume
7122         the unistd module.
7123         * lib/getlogin_r.c: Likewise.
7124         * lib/getlogin_r.h: Likewise.
7125         * lib/glob.c: Likewise.
7126         * lib/pagealign_alloc.c: Likewise.
7127         * lib/unistd_.h: Remove; no longer needed.
7128
7129 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
7130
7131         * MODULES.html.sh (Support for systems lacking POSIX:2001):
7132         Add unistd.
7133         * modules/c-stack (Depends-on): Add unistd.
7134         * modules/getlogin_r: Likewise.
7135         * modules/glob: Likewise.
7136         * modules/pagealign_alloc: Likewise.
7137         * modules/unistd (Files): Remove lib/unistd_.h.
7138         (EXTRA_DIST): Remove.
7139         (unistd.h): Create using 'echo' rather than 'cp', so that we don't
7140         need unistd_.h.
7141         (MOSTLYCLEANFILES): Remove unistd.h-t.
7142
7143 2006-03-03  Simon Josefsson  <jas@extundo.com>
7144
7145         * build-aux/maint.mk: Add several syntax checks from CoreUtils.
7146
7147 2006-03-03  Simon Josefsson  <jas@extundo.com>
7148
7149         * build-aux/maint.mk: Add refresh-po rule, based on ideas from
7150         libidn and bison.
7151
7152 2006-03-03  Simon Josefsson  <jas@extundo.com>
7153
7154         * build-aux/maint.mk: Add indent target.
7155
7156 2006-03-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de> (tiny change)
7157
7158         * m4/poll.m4 (gl_FUNC_POLL): If we deem poll(2) unacceptable, use
7159         our replacement poll.h in any case, to avoid a differing
7160         declaration from a system header.  Seen on AIX.
7161
7162 2006-03-01  Simon Josefsson  <jas@extundo.com>
7163
7164         * lib/readline.c: Fix typo, tiny patch from Stepan Kasal
7165         <kasal@ucw.cz>.
7166
7167 2006-03-01  Paul Eggert  <eggert@cs.ucla.edu>
7168
7169         * modules/gettime (Depends-on): Add extensions module.
7170         * modules/nanosleep (Depends-on): Likewise.
7171         * modules/settime (Depends-on): Likewise.
7172
7173 2006-03-01  Paul Eggert  <eggert@cs.ucla.edu>
7174
7175         * m4/clock_time.m4 (gl_CLOCK_TIME): Require gl_USE_SYSTEM_EXTENSIONS,
7176         not merely AC_GNU_SOURCE, for the benefit of Solaris 10 when compiled
7177         pedantically.
7178         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
7179         * m4/timespec.m4 (gl_TIMESPEC): Likewise.
7180
7181         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Use "=" with "test",
7182         not "==".  Reported by Ralf Wildenhues.
7183
7184 2006-03-01  Karl Berry  <karl@gnu.org>
7185
7186         * doc/Copyright/request-*: new files, synced from gnuorg.
7187
7188 2006-03-01  Karl Berry  <karl@gnu.org>
7189
7190         * config/srclist.txt (Copyright/*): new entries.
7191
7192 2006-02-28  Simon Josefsson  <jas@extundo.com>
7193
7194         * lib/getopt.c: Protect #include of unistd.h, for MSVS.
7195
7196 2006-02-27  Simon Josefsson  <jas@extundo.com>
7197
7198         * lib/base64.h: Indent #define's.  From Jim Meyering
7199         <jim@meyering.net>.
7200
7201 2006-02-27  Jim Meyering  <jim@meyering.net>
7202
7203         Revert the change of 2006-02-24, so these files can continue
7204         to be sync'd from gettext.
7205         * lib/mkdtemp.c, setenv.c, unsetenv.c: *Un*-normalize inclusion
7206         of `config.h'.
7207
7208 2006-02-26  Paul Eggert  <eggert@cs.ucla.edu>
7209
7210         * modules/intprops: New file.
7211         * MODULES.html.sh (Numeric conversion functions <stdlib.h>):
7212         Add intprops.
7213         * modules/getloadavg (Files): Remove lib/intprops.h.
7214         (Depends-on): Add intprops.
7215         * modules/human: Likewise.
7216         * modules/inttostr: Likewise.
7217         * modules/openat: Likewise.
7218         * modules/sig2str: Likewise.
7219         * modules/userspec: Likewise.
7220         * modules/utimecmp: Likewise.
7221         * modules/xnanosleep: Likewise.
7222         * modules/xstrtol: Likewise.
7223
7224 2006-02-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny changes)
7225
7226         * modules/xstrtod: Omit xstrtod.h, xstrtod.c; they're in LIB_SOURCES.
7227         * modules/lock-tests (TESTS): Use $(EXEEXT).
7228         * modules/tls-tests: Likewise.
7229         * modules/argp-tests: Likewise.
7230         (check_PROGRAMS): New var, replacing...
7231         (noinst_PROGRAMS, test_argp_SOURCES): Remove.
7232
7233 2006-02-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7234
7235         * lib/mkdtemp.c, lib/setenv.c, lib/unsetenv.c: Normalize inclusion of
7236         `config.h'.
7237
7238 2006-02-24  Paul Eggert  <eggert@cs.ucla.edu>
7239
7240         * lib/glob.c: Say "invalid" rather than "illegal" in comments.
7241
7242 2006-02-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7243
7244         Sync from coreutils.
7245         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Require gl_FUNC_LCHMOD and
7246         gl_CHDIR_SAFER.
7247
7248 2006-02-22  Jim Meyering  <jim@meyering.net>
7249
7250         Sync from coreutils.
7251         * m4/chdir-safer.m4: New file.
7252
7253 2006-02-20  Paul Eggert  <eggert@cs.ucla.edu>
7254
7255         * lib/getcwd.c (AT_FDCWD): Work around a bug in Solaris 9 and 10, where
7256         AT_FDCWD exceeds INT_MAX.
7257         * lib/openat.h (AT_FDCWD): Likewise.
7258
7259 2006-02-17  Eric Blake  <address@hidden>
7260
7261         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Fix caching error.
7262
7263 2006-02-16  Simon Josefsson  <jas@extundo.com>
7264
7265         * modules/getaddrinfo (Depends-on): Add sys_socket.
7266
7267 2006-02-15  Simon Josefsson  <jas@extundo.com>
7268
7269         * build-aux/maint.mk: Add dsyntax-check rule.
7270
7271 2006-02-15  Eric Blake  <ebb9@byu.net>
7272
7273         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Don't attempt using
7274         winsock2.h or ws2tcpip.h when sys/socket.h is present. Fixes
7275         'present but cannot compile' warnings on cygwin.
7276         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Use gl_HEADER_SYS_SOCKET.  Don't
7277         use ws2tcpip.h if sys/socket.h works.
7278         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Use gl_HEADER_SYS_SOCKET.
7279         (gl_GETADDRINFO): Don't use ws2tcpip.h when sys/socket.h is present.
7280
7281 2006-02-14  Simon Josefsson  <jas@extundo.com>
7282
7283         * modules/maintainer-makefile (Files): Rename.
7284
7285         * build-aux/GNUmakefile: Rename Makefile.maint to maint.mk
7286         and (the local) Makefile.cfg to maint-cfg.mk.
7287
7288         * build-aux/Makefile.maint, build-aux/maint.mk: Renamed the former
7289         to the latter.
7290
7291         * modules/maintainer-makefile: New module.
7292
7293         * build-aux/Makefile.maint: New file, from GNU CoreUtils, although
7294         severaly stripped to make it possible to build it up from scratch
7295         with reliable tests.
7296
7297         * build-aux/GNUmakefile: New file, from GNU CoreUtils with some
7298         fixes to permit overriding the default actions when configure and
7299         makefile are not available.
7300
7301 2006-02-14  Paul Eggert  <eggert@cs.ucla.edu>
7302
7303         Sync from coreutils.
7304         * modules/lstat (Depends-on): Don't depend on xalloc.
7305         (License): Change from GPL to LGPL, since this is now simply a
7306         replacement for a libc function.
7307
7308 2006-02-14  Jim Meyering  <jim@meyering.net>
7309
7310         Sync from coreutils.
7311
7312         Eliminate the unwelcome (albeit unlikely) possibility of xmalloc
7313         failure on deficient systems, and simplify gnulib lgpl dependencies.
7314         * lib/lstat.c (rpl_lstat): Rewrite to use stat() in place of the
7315         xmalloc/lstat combination.  Based on a patch from Bruno Haible.
7316
7317         * lib/xalloc-die.c: Remove unused definition of N_.
7318
7319 2006-02-14  Jim Meyering  <jim@meyering.net>
7320
7321         Sync from coreutils.
7322         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Invoke
7323         AC_CHECK_FUNCS(getmntent) unconditionally so that tests of
7324         $ac_cv_func_getmntent (e.g., in gl_LIST_MOUNTED_FILE_SYSTEMS) need not
7325         double-quote uses of that variable, to accommodate the rare case in
7326         which getmntent is available in none of the libraries checked.  This
7327         happens at least on FreeBSD 5.0.
7328
7329 2006-02-13  Simon Josefsson  <jas@extundo.com>
7330
7331         * gnulib-tool (Usage): Fix --import, from
7332         karl@freefriends.org (Karl Berry).
7333
7334 2006-02-13  Sergey Poznyakoff  <gray@gnu.org.ua>
7335
7336         * lib/argp-fmtstream.c: Restore another bugfix lost on 2005-12-12
7337
7338 2006-02-07  Sergey Poznyakoff  <gray@gnu.org.ua>
7339
7340         * lib/argp-namefrob.h: Restore changes accidentally lost during the
7341         "autoupdate" on 2005-12-12.
7342
7343 2006-02-07  Paul Eggert  <eggert@cs.ucla.edu>
7344
7345         * modules/closeout (Depends-on): Remove atexit.
7346
7347 2006-02-07  Paul Eggert  <eggert@cs.ucla.edu>
7348
7349         * lib/closeout.c (close_stdout): Don't assume 'bool' converts nonzero
7350         ints to 0 or 1, as this isn't true for the stdbool.h substitute.
7351
7352 2006-02-05  Paul Eggert  <eggert@cs.ucla.edu>
7353
7354         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Don't #define
7355         __EXTENSIONS__ if this causes compilation to fail.  Problem
7356         reported by Nelson H. F. Beebe with Solaris 10 and Sun C 5.7
7357         c89 -D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED.
7358
7359 2006-01-27  Paul Eggert  <eggert@cs.ucla.edu>
7360
7361         * lib/fnmatch.c (L_): Renamed from L, to work around a bug in
7362         Mac OS X 10.3.9 with GCC 3 reported by Claudio Fontana in
7363         <http://lists.gnu.org/archive/html/bug-gnulib/2006-01/msg00074.html>.
7364         All uses changed.
7365
7366 2006-01-26  Simon Josefsson  <jas@extundo.com>
7367
7368         * lib/socket_.h: Set WINVER to 0x0501, to make sure getaddrinfo
7369         prototype is visible on mingw32.
7370
7371         * lib/getaddrinfo.h: Define EAI_ADDRFAMILY and EAI_SYSTEM if not set,
7372         for mingw32.
7373
7374         * lib/gai_strerror.c, getaddrinfo.h: Protect netdb.h #include (for
7375         mingw32).
7376
7377 2006-01-26  Paul Eggert  <eggert@cs.ucla.edu>
7378
7379         * lib/fts.c (diropen): Open with O_NOCTTY | O_NONBLOCK too.  Don't
7380         attempt to open for write; this always fails, at least on POSIX
7381         hosts.  This reinstates the 2006-01-09 change, which was
7382         inadvertently removed.
7383
7384 2006-01-26  Bruno Haible  <bruno@clisp.org>
7385
7386         * gnulib-tool (func_import): Use "trap 'exit $?' instead of "trap :".
7387         Reported by Paul Eggert.
7388
7389 2006-01-26  Bruno Haible  <bruno@clisp.org>
7390             Paul Eggert  <eggert@cs.ucla.edu>
7391
7392         * lib/stdbool_.h (_Bool)
7393         [(! (defined __cplusplus || defined __BEOS__)
7394           && !defined __GNUC__
7395           && !(defined __HP_cc || defined __xlc__
7396                || (defined __SUNPRO_C && (__SUNPRO_C < 0x550 || __STDC__ == 1))
7397                || defined __sgi))]:
7398         #define to signed char in these cases too; this simplifies
7399         the code (so that we don't have to worry about HP-UX, AIX, SunPRO,
7400         etc., separately) and makes it more conservative.
7401
7402 2006-01-25  Simon Josefsson  <jas@extundo.com>
7403
7404         * m4/getaddrinfo.m4: Look for getaddrinfo inside ws2tcip.h and
7405         -lws2_32.  Protect sys/socket.h and netdb.h #include's.  Include
7406         ws2tcpip.h with WINVER=0x0501.  All for mingw32.
7407
7408 2006-01-25  Sergey Poznyakoff  <gray@gnu.org.ua>
7409
7410         * lib/argp-namefrob.h: Bugfix. Remove stray #
7411
7412 2006-01-25  Paul Eggert  <eggert@cs.ucla.edu>
7413
7414         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check for xlc bug if __GCC__ too,
7415         so that we test the test.
7416         Check for yet another HP-UX cc bug involving *bool |= bool.
7417
7418 2006-01-25  Karl Berry  <karl@gnu.org>
7419
7420         * config/srclist.txt (vasnprintf.c): sync lost.
7421
7422 2006-01-25  Jim Meyering  <jim@meyering.net>
7423
7424         Sync from the stable (b5) branch of coreutils:
7425
7426         * lib/fts.c (fts_children): Don't let close() clobber errno from
7427         failed fchdir().
7428
7429         * lib/fts.c (fts_stat): When following a symlink-to-directory,
7430         don't necessarily interpret stat-fails+lstat-succeeds as indicating
7431         a dangling symlink.  That can also happen at least for ELOOP.
7432         The fix: return FTS_SLNONE only when the stat errno is ENOENT.
7433         FYI, this bug predates the inclusion of fts.c in coreutils.
7434
7435         * lib/fts.c (fts_open): Put new maxarglen declaration and uses
7436         in their own block, so pre-c99 compilers don't object.
7437
7438         Avoid the double-free (first in fts_read, second in fts_close) that
7439         would occur when an `active' directory is made inaccessible (e.g.,
7440         via chmod a-x) during a traversal.
7441         * lib/fts.c (fts_read): After a failed fchdir, update sp->fts_cur
7442         before returning.  Reproduce this failure by
7443         mkdir -p a/b; cd a; chmod a-x . b
7444         Reported by Stavros Passas.
7445
7446 2006-01-25  Jim Meyering  <jim@meyering.net>
7447
7448         * lib/fileblocks.c: Remove more useless parentheses.
7449         * lib/readutmp.h: Likewise.
7450
7451 2006-01-25  Bruno Haible  <bruno@clisp.org>
7452
7453         * lib/stdbool_.h (_Bool) [IRIX cc]: Define as 'signed char', to avoid
7454         warnings.
7455         Reported by Paul Eggert.
7456
7457 2006-01-25  Bruno Haible  <bruno@clisp.org>
7458
7459         * gnulib-tool (func_import): Use "trap :" instead of "trap -" to get
7460         rid of a trap command. For Solaris sh.
7461         Reported by Mark D. Baushke <mdb@gnu.org>.
7462
7463 2006-01-24  Simon Josefsson  <jas@extundo.com>
7464
7465         * lib/socket_.h (SHUT_WR, SHUT_RDWR): Don't hardcode, suggested by
7466         Bruno.
7467
7468 2006-01-24  Karl Berry  <karl@gnu.org>
7469
7470         * config/srclist.txt (argp-namefrob.h): sync lost.
7471
7472 2006-01-24  Jim Meyering  <jim@meyering.net>
7473
7474         * modules/openat (Files): Add lib/intprops.h.
7475         From Mark D. Baushke.
7476
7477 2006-01-24  Jim Meyering  <jim@meyering.net>
7478
7479         * m4/openat.m4 (gl_FUNC_OPENAT): Add AC_LIBSOURCES([intprops.h]).
7480         Reported by Mark D. Baushke.
7481
7482 2006-01-24  Jim Meyering  <jim@meyering.net>
7483
7484         * lib/socket_.h: Remove useless parentheses in uses of cpp `defined'.
7485
7486 2006-01-24  Bruno Haible  <bruno@clisp.org>
7487
7488         * modules/strnlen (Maintainer): Change from glibc to all.
7489
7490 2006-01-24  Bruno Haible  <bruno@clisp.org>
7491
7492         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check for IBM and HP-UX bugs.
7493         Patch by Paul Eggert.
7494
7495 2006-01-24  Bruno Haible  <bruno@clisp.org>
7496
7497         * lib/stdbool_.h (_Bool) [__cplusplus]: Don't define if the compiler
7498         already has it.
7499         Report and patch by Albert Chin-A-Young  <china@thewrittenword.com> on
7500         2005-11-26.
7501
7502         * lib/stdbool_.h (_Bool) [HP-UX cc, AIX cc,xlc]: Define as
7503         'signed char' to avoid problems with the built-in _Bool type.
7504         Reported by Paul Eggert on 2005-11-26.
7505
7506 2006-01-24  Bruno Haible  <bruno@clisp.org>
7507
7508         * gnulib-tool (func_import): Avoid constructing complicated sed
7509         expressions inside backquote.
7510         Report and solution by Mark D. Baushke <mdb@gnu.org>.
7511
7512 2006-01-23  Ulrich Drepper  <drepper@redhat.com>
7513
7514         These changes imported from libc.
7515         * lib/getopt.c: Use __fxprintf instead of inline stream orientation
7516         test and two separate function calls.
7517         * lib/strndup.c (__strndup): Add libc_hidden_def.
7518
7519 2006-01-23  Simon Josefsson  <jas@extundo.com>
7520
7521         * modules/lock-tests: Use check_PROGRAMS instead of noinst_PROGRAMS.
7522         Remove the test_*_SOURCES variable: automake infers it by default.
7523         * modules/tls-tests: Likewise.
7524
7525 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
7526
7527         Work around porting bugs reported by Dieter in
7528         <http://lists.gnu.org/archive/html/bug-bison/2006-01/msg00049.html>.
7529         * lib/getopt.c (_NOPROTO): Remove; no longer needed.
7530         Include <stdlib.h> and <unistd.h> in all environments; it's safe now.
7531         Include "getopt.h" first, to check interface.
7532         (getenv): Declare only if defined HAVE_DECL_GETENV &&
7533         !HAVE_DECL_GETENV.
7534         * lib/strndup.c [!_LIBC]: Include "strndup.h" to get prototype.
7535         (__strndup): Revert to K&R-style function dfns, the glibc style.
7536         * lib/strnlen.c: Don't claim it's taken from glibc; it's not.
7537         (strnlen, __strnlen): Remove #defines and #undefs; not needed.
7538         Include strnlen.h first, to get prototype properly.
7539         (strnlen): Renamed from __strnlen.
7540         Remove weak alias.
7541
7542 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
7543
7544         * m4/getopt.m4 (gl_PREREQ_GETOPT): Check for getenv decl.
7545
7546 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
7547
7548         * config/srclist.txt: Adjust to reflect glibc reorganization.
7549         This affects only comments.
7550
7551 2006-01-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
7552
7553          * gnulib-tool, build-aux/csharpcomp.sh.in: Do not pass `-q' to mktemp.
7554          Reported by Bruce Korb <bkorb@gnu.org>.
7555
7556 2006-01-22  Paul Eggert  <eggert@cs.ucla.edu>
7557
7558         * lib/quotearg.c (quotearg_buffer_restyled): Add "default: break;"
7559         to pacify gcc -Wswitch-default.
7560
7561 2006-01-22  Bruno Haible  <bruno@clisp.org>
7562
7563         * lib/vasnprintf.c (VASNPRINTF): In the computation of the size of the
7564         temporary buffer for sprintf, take into account the precision also
7565         for 'd', 'i', 'u', 'o', 'x', 'X'.
7566
7567 2006-01-21  Sergey Poznyakoff  <gray@gnu.org.ua>
7568
7569         * modules/argp-tests: New module
7570         * tests/test-argp.c: New file
7571         * tests/test-argp-2.sh: New file
7572
7573 2006-01-21  Sergey Poznyakoff  <gray@gnu.org.ua>
7574
7575         * lib/argp-help.c (usage_long_opt): Do not print DOC options.
7576         (__argp_base_name): Removed
7577         * lib/argp-namefrob.h (__argp_basename): Removed definition. Was a
7578         typo.
7579         (__argp_base_name): Provide macro definition or extern declaration
7580         depending on the configuration
7581
7582 2006-01-20  Simon Josefsson  <jas@extundo.com>
7583
7584         * modules/inet_ntop (Depends-on): Depend on sys_socket.
7585
7586 2006-01-20  Simon Josefsson  <jas@extundo.com>
7587
7588         * lib/inet_ntop.h: Unconditionally include sys/socket.h.
7589
7590 2006-01-20  Paul Eggert  <eggert@cs.ucla.edu>
7591
7592         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Use -Wl,-z,ignore
7593         rather than -Xlinker -z -Xlinker ignore, as it's more portable.
7594         Suggested by Bruno Haible.
7595
7596 2006-01-20  Karl Berry  <karl@gnu.org>
7597
7598         * config/srclist.txt (argp-fmtstream.h, localcharset.c): comment out
7599         until changes propagate, I guess.
7600
7601 2006-01-19  Simon Josefsson  <jas@extundo.com>
7602
7603         * m4/socklen.m4: Look in ws2tcpip.h too, for mingw32.
7604
7605 2006-01-19  Simon Josefsson  <jas@extundo.com>
7606
7607         * lib/socket_.h: Map SHUT_RD, SHUT_WR, SHUT_RDWR correctly.
7608
7609 2006-01-19  Simon Josefsson  <jas@extundo.com>
7610
7611         * gnulib-tool: Set check_PROGRAMS.
7612
7613         * modules/arcfour-tests, modules/arctwo-tests, modules/crc-tests,
7614         modules/des-tests, modules/gc-arcfour-tests,
7615         modules/gc-arctwo-tests, modules/gc-des-tests,
7616         modules/gc-hmac-md5-tests, modules/gc-hmac-sha1-tests,
7617         modules/gc-md2-tests, modules/gc-md4-tests, modules/gc-md5-tests,
7618         modules/gc-pbkdf2-sha1-tests, modules/gc-rijndael-tests,
7619         modules/gc-sha1-tests, modules/gc-tests, modules/hmac-md5-tests,
7620         modules/hmac-sha1-tests, modules/md2-tests, modules/md4-tests,
7621         modules/md5-tests, modules/readline, modules/rijndael-tests: Use
7622         check_PROGRAMS instead of noinst_PROGRAMS to be able to remove
7623         test_*_SOURCES.
7624
7625 2006-01-18  Simon Josefsson  <jas@extundo.com>
7626
7627         * modules/socklen (Depends-on): Depend on sys_socket.
7628
7629 2006-01-18  Simon Josefsson  <jas@extundo.com>
7630
7631         * modules/arcfour-tests, modules/arctwo-tests, modules/crc-tests,
7632         modules/des-tests, modules/gc-arcfour-tests,
7633         modules/gc-arctwo-tests, modules/gc-des-tests,
7634         modules/gc-hmac-md5-tests, modules/gc-hmac-sha1-tests,
7635         modules/gc-md2-tests, modules/gc-md4-tests, modules/gc-md5-tests,
7636         modules/gc-pbkdf2-sha1-tests, modules/gc-rijndael-tests,
7637         modules/gc-sha1-tests, modules/gc-tests, modules/hmac-md5-tests,
7638         modules/hmac-sha1-tests, modules/md2-tests, modules/md4-tests,
7639         modules/md5-tests, modules/readline, modules/rijndael-tests: Add
7640         $(EXEEXT) to automake TESTS variable, for mingw32.
7641
7642 2006-01-17  Simon Josefsson  <jas@extundo.com>
7643
7644         * modules/socklen (Include): Need sys/socket.h.
7645
7646 2006-01-17  Bruno Haible  <bruno@clisp.org>
7647
7648         * modules/ssize_t (Include): Add <sys/types.h>.
7649
7650 2006-01-16  Paul Eggert  <eggert@cs.ucla.edu>
7651
7652         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Don't use ldd, as
7653         it's not portable and it doesn't work with cross-compiles.
7654         Problem reported by Bruno Haible.  Fix missing-$ typo in
7655         'test "gl_cv_ignore_unused_libraries" ...' that prevented
7656         -zignore from being used with Sun's C compiler.
7657
7658 2006-01-12  Simon Josefsson  <jas@extundo.com>
7659
7660         * lib/base64.c: Fix warning, reported by Bruno Haible
7661         <bruno@clisp.org> and patch by Paul Eggert <eggert@CS.UCLA.EDU>.
7662
7663 2006-01-12  Bruno Haible  <bruno@clisp.org>
7664
7665         * modules/ldd: New file.
7666         * build-aux/ldd.sh.in: New file.
7667         * MODULES.html.sh (Support for building libraries and executables): Add
7668         ldd.
7669
7670 2006-01-12  Bruno Haible  <bruno@clisp.org>
7671
7672         * m4/ldd.m4: New file.
7673
7674 2006-01-12  Bruno Haible  <bruno@clisp.org>
7675
7676         * gnulib-tool (func_import, func_create_testdir): Don't go into an
7677         endless loop while replacing $auxdir with build-aux.
7678
7679 2006-01-11  Simon Josefsson  <jas@extundo.com>
7680
7681         * lib/stdint_.h (SIZE_MAX): Add missing (.
7682
7683 2006-01-11  Paul Eggert  <eggert@cs.ucla.edu>
7684
7685         Sync from coreutils.
7686         * lib/md5.c: Fix commentary typos.
7687         (alignof, UNALIGNED_P): No need for a GCC-specific version.
7688         * lib/md5.h (__attribute__): Remove; unused.
7689         * lib/sha1.c: Fix commentary to match md5 better.
7690         * lib/sha1.h (struct sha1_ctx): Use a word buffer, not a byte buffer,
7691         so that we don't need to worry about alignment.  All uses changed.
7692         This merges the 2005-10-28 md5 change into sha1.
7693
7694 2006-01-11  Jim Meyering  <jim@meyering.net>
7695
7696         Sync from coreutils.
7697         * lib/md5.c (OP): Fix spacing.
7698
7699 2006-01-11  Bruno Haible  <bruno@clisp.org>
7700
7701         Ensure automatic ordering between gl_LOCK and gl_ARGP.
7702         * m4/lock.m4 (gl_LOCK_BODY): Renamed from gl_LOCK.
7703         (gl_LOCK): New macro, requiring gl_LOCK_BODY.
7704
7705 2006-01-11  Bruno Haible  <bruno@clisp.org>
7706
7707         Ensure automatic ordering between gl_LOCK and gl_ARGP.
7708         * gnulib-tool (func_import, func_create_testdir): Put gl_LOCK into
7709         the "early" section as well.
7710
7711 2006-01-11  Bruno Haible  <bruno@clisp.org>
7712
7713         Avoid "ar: no archive members specified" error on MacOS X.
7714         * gnulib-tool (func_modules_add_dummy): New function.
7715         (func_import, func_create_testdir): Invoke it.
7716
7717 2006-01-11  Bruno Haible  <bruno@clisp.org>
7718
7719         * gnulib-tool (func_import, func_create_testdir): Replace build-aux
7720         with $auxdir in AC_CONFIG_FILES statements.
7721
7722 2006-01-11  Bruno Haible  <bruno@clisp.org>
7723
7724         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
7725         Initialize also noinst_HEADERS to empty.
7726
7727 2006-01-11  Bruno Haible  <bruno@clisp.org>
7728
7729         * gnulib-tool (AUTOMAKEPATH, AUTOCONF, ACLOCAL, AUTOMAKE): New
7730         variables.
7731         (func_create_megatestdir): Call aclocal, autoconf, automake here, not
7732         autoreconf.
7733
7734 2006-01-11  Bruno Haible  <bruno@clisp.org>
7735
7736         * gnulib-tool (AUTOCONF, ACLOCAL, AUTOMAKE, AUTORECONF): Make
7737         overridable by the user.
7738         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
7739
7740 2006-01-10  Simon Josefsson  <jas@extundo.com>
7741
7742         * modules/sys_socket: New file.
7743
7744 2006-01-10  Simon Josefsson  <jas@extundo.com>
7745
7746         * m4/sys_socket_h.m4: New file.
7747
7748 2006-01-10  Simon Josefsson  <jas@extundo.com>
7749
7750         * lib/socket_.h: New file.
7751
7752 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
7753
7754         * modules/readutmp (Maintainer): Add myself.
7755
7756 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
7757
7758         * m4/memcoll.m4 (gl_MEMCOLL): Don't require AC_FUNC_MEMCMP, undoing
7759         the 2002-12-31 change.  Problem and fix reported by Bruno Haible.
7760         People who are still concerned with buggy memcmp implementations
7761         can invoke gl_FUNC_MEMCMP themselves.
7762
7763 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
7764
7765         * lib/regex_internal.h (BITSET_WORD_BITS):
7766         Work around a bug in 64-bit PGC (before version 6.1-2), where the
7767         preprocessor mishandles large unsigned values as if they were signed.
7768         Problem reported by Claudio Fontana in
7769         <http://lists.gnu.org/archive/html/bug-gnulib/2005-12/msg00061.html>.
7770
7771 2006-01-10  Jim Meyering  <jim@meyering.net>
7772
7773         Avoid the double-free (first in fts_read, second in fts_close) that
7774         would occur when an `active' directory is made inaccessible (e.g.,
7775         via chmod a-x) during a traversal.
7776         * lib/fts.c (fts_read): After a failed fchdir, update sp->fts_cur
7777         before returning.  Reproduce this failure by
7778         mkdir -p a/b; cd a; chmod a-x . b
7779         Reported by Stavros Passas.
7780
7781         Sync from coreutils.
7782         * lib/sha1.c: Tweak grammar in a comment.
7783
7784 2006-01-10  Jim Meyering  <jim@meyering.net>
7785
7786         * m4/fpending.m4: Also include <stdio.h>, for Dragonfly.
7787         Patch by Joerg Sonnenberger.
7788
7789 2006-01-10  Bruno Haible  <bruno@clisp.org>
7790
7791         * modules/readutmp: Depend on module free.
7792         * modules/strtok_r: Depend on module restrict.
7793
7794 2006-01-10  Bruno Haible  <bruno@clisp.org>
7795
7796         * modules/gettext (configure.ac): Add an invocation of
7797         AM_GNU_GETTEXT_VERSION. Needed since autoreconf is used by gnulib-tool.
7798
7799 2006-01-10  Bruno Haible  <bruno@clisp.org>
7800
7801         * m4/localcharset.m4 (gl_LOCALCHARSET): Also test for getc_unlocked.
7802         Reported by Werner Lemberg <wl@gnu.org>.
7803
7804 2006-01-10  Bruno Haible  <bruno@clisp.org>
7805
7806         * lib/localcharset.c: Update from GNU gettext.
7807
7808 2006-01-10  Bruno Haible  <bruno@clisp.org>
7809
7810         * lib/argp.h (__const): Remove macro. Use const instead.
7811         * lib/argp-fmtstream.h (__const): Likewise.
7812         * lib/glob_.h (__const): Remove macro.
7813         * lib/glob-libc.h: Use const instead of __const.
7814
7815 2006-01-10  Bruno Haible  <bruno@clisp.org>
7816
7817         * gnulib-tool (func_emit_tests_Makefile_am): Emit an empty SUBDIR
7818         variable.
7819         Needed to avoid an automake error regarding the 'gettext' module.
7820
7821 2006-01-09  Simon Josefsson  <jas@extundo.com>
7822
7823         * modules/inet_ntop (Depends-on): Add restrict.
7824
7825 2006-01-09  Simon Josefsson  <jas@extundo.com>
7826
7827         * modules/gc-rijndael-tests (License): Put under LGPL.
7828
7829         * modules/gc-des-tests (License): Likewise.
7830
7831         * modules/gc-arcfour-tests (License): Likewise.
7832
7833         * modules/gc-arctwo-tests (License): Likewise.
7834
7835         * modules/gc-pbkdf2-sha1-tests (License): Likewise.
7836
7837         * modules/gc-hmac-sha1-tests (Files): Likewise.
7838
7839         * modules/gc-hmac-md5-tests (License): Likewise.
7840
7841         * modules/gc-sha1-tests (License): Likewise.
7842
7843         * modules/gc-md5-tests (License): Likewise.
7844
7845         * modules/gc-md4-tests (License): Likewise.
7846
7847         * modules/gc-md2-tests (License): Likewise.
7848
7849         * modules/gc-tests (License): Likewise.
7850
7851         * modules/des-tests (License): Likewise.
7852
7853         * modules/md4-tests (License): Likewise.
7854
7855         * modules/md2-tests (License): Likewise.
7856
7857 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
7858
7859         Sync from coreutils:
7860
7861         * MODULES.html.sh (build_lib): New section, with new lib-ignore module.
7862         * modules/lib-ignore: New file.
7863         * modules/mkdir-p (Files): Add chdir-safer.c, chdir-safer.h, lchmod.h,
7864         chdir-safer.m4, lchmod.m4.
7865         * modules/openat: Add mkdirat.c, openat-priv.h.
7866
7867 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
7868
7869         Sync from coreutils.
7870         * m4/lib-ignore.m4: New file.
7871         * m4/lchmod.m4: New file.
7872
7873 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
7874
7875         Sync from coreutils.
7876         * lib/chdir-long.c (cdb_free): Don't bother trying to open directory
7877         for write access: POSIX says that must fail.
7878         * lib/fts.c (diropen): Likewise.
7879         * lib/save-cwd.c (save_cwd): Likewise.
7880         * lib/chdir-long.c (cdb_free): Open with O_NOCTTY | O_NONBLOCK as
7881         well, for minor improvements on hosts that lack O_DIRECTORY.
7882         * lib/chown.c (rpl_chown) [CHOWN_MODIFIES_SYMLINK]:
7883         Don't try O_WRONLY unless O_RDONLY failed wth EACCES.
7884         Fall back on chown if open failed with EACCES.
7885
7886         * lib/gettime.c (gettime) [!defined OK_TO_USE_1S_CLOCK]:
7887         Report an error at compile-time if only a 1-second nominal clock
7888         resolution is found.
7889
7890         * lib/lchmod.h: New file.
7891         * lib/mkdir-p.c: Include lchmod.h, lchown.h.
7892         (make_dir_parents): Use lchown rather than chown, and
7893         lchmod rather than chmod.
7894
7895         * lib/mountlist.c (ME_DUMMY): "none" and "proc" file systems are
7896         dummies too.  Problem with "none" reported by Bob Proulx.  Problem with
7897         "proc" reported by n0dalus.
7898
7899         * lib/mountlist.c: Include <limits.h>.
7900         (dev_from_mount_options)
7901         [defined MOUNTED_GETMNTENT1 || defined MOUNTED_GETMNTENT2]:
7902         New function.  It no longer assumes "dev=" has the System V meaning
7903         on Linux (since it doesn't).  It also parses "dev=" more carefully.
7904         (read_file_system_list)
7905         [defined MOUNTED_GETMNTENT1 || defined MOUNTED_GETMNTENT2]: Use it.
7906         MOUNTED_GETMNTENT2 is new here; the code didn't used to look for
7907         dev= in that case.
7908
7909         * lib/posixtm.h (PDS_PRE_2000): New macro.
7910         * lib/posixtm.c (year): Arg is now syntax_bits rather than
7911         allow_century.  All usages changed.  Reject dates outside the range
7912         1969-1999 if PDS_PRE_2000 is used.
7913
7914 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
7915
7916         Sync from coreutils.
7917         * doc/getdate.texi (General date syntax): Invalid dates are rejected.
7918         (Time of day items): Mention the possibility of leap seconds.
7919         Problem reported by Dr. David Alan Gilbert.
7920
7921 2006-01-09  Jim Meyering  <jim@meyering.net>
7922
7923         Sync from coreutils.
7924
7925         * lib/version-etc.c (COPYRIGHT_YEAR): Update to 2006.
7926
7927         * lib/chdir-safer.h, lib/chdir-safer.c: New files.
7928
7929         * lib/modechange.c (mode_compile): Reject an invalid mode string
7930         that starts with an octal digit.  From Andreas Gruenbacher.
7931
7932         * lib/openat.c: Include "fcntl--.h" and "unistd--.h", to map open
7933         and dup to open_safer and dup_safer, respectively.
7934         (openat_permissive): Fix typo in comment.
7935
7936         * lib/openat.c: Don't include <stdlib.h>, <unistd.h>, <fcntl.h>,
7937         "gettext.h"; either no longer needed or are guaranteed by openat.h.
7938         (_): Remove; no longer needed.
7939         (openat): Renamed from rpl_openat; no need for rpl_openat
7940         since openat.h renames openat for us.
7941         Replace most of the body with a call to openat_permissive,
7942         to avoid duplicate code.
7943         Port to (probably hypothetical) environments were mode_t is
7944         wider than int.
7945         (openat_permissive): Require mode arg, so that we can check
7946         types better.  Put it just after flags.  Change cwd failure
7947         indicator from pointer-to-bool to pointer-to-errno-value.
7948         All callers changed.
7949         Invoke openat_save_fail and/or openat_restore_fail if
7950         cwd_errno is null, so that openat can call us.
7951         (openat_permissive, fdopendir, fstatat, unlinkat):
7952         Simplify errno handling to avoid some duplicate code,
7953         as it's OK to set errno on success.
7954         * lib/openat.h: Revamp code so that function macros depend on
7955         __OPENAT_PREFIX only, not also on AT_FDCWD.
7956         (openat_ro): Remove.  Caller changed to use openat_permissive.
7957         (openat_permissive): Now a macro, if not a function.
7958         (openat_restore_fail, openat_save_fail): Now always functions,
7959         since mkdirat needs them even if __OPENAT_PREFIX is defined.
7960
7961         * lib/openat-priv.h: New file, defining macros used by mkdirat.c
7962         and openat.c.
7963         * lib/mkdirat.c: Include openat-priv.h.
7964         Remove definitions of macros defined therein.
7965         * lib/openat.c: Likewise.
7966
7967         * lib/mkdirat.c (mkdirat): New file and function.
7968         * lib/openat.h (mkdirat): Declare.
7969
7970         * lib/openat.c (fdopendir): Don't change errno when returning non-NULL.
7971
7972         * lib/openat.h (openat_permissive): Declare.
7973         (openat_ro): Define.
7974
7975         * lib/openat.c (EXPECTED_ERRNO): New macro.
7976         (openat_permissive): New function -- used in remove.c rewrite.
7977         (all functions): Set errno just before returning, only if there
7978         was an actual failure.
7979         Use EXPECTED_ERRNO rather than comparing against only ENOTDIR.
7980
7981         Emulate openat-family functions using Linux's procfs, if possible.
7982         Idea and some code based on Ulrich Drepper's glibc changes.
7983
7984         * lib/openat.c: (BUILD_PROC_NAME): New macro.
7985         Include <stdio.h>, <string.h>, "alloca.h" and "intprops.h".
7986         (rpl_openat): Emulate by trying to open /proc/self/fd/%d/%s,
7987         before falling back on save_cwd and restore_cwd.
7988         (fdopendir, fstatat, unlinkat): Likewise.
7989
7990         * lib/openat.c (fstatat, unlinkat): Perform the syscall directly,
7991         skipping the save_cwd...restore_cwd overhead, if FILE is absolute.
7992
7993         * lib/openat.c (rpl_openat): Use the promoted type (int), not mode_t,
7994         as second argument to va_arg.  Otherwise, some versions of gcc
7995         warn that `if this code is reached, the program will abort'.
7996
7997 2006-01-09  Jim Meyering  <jim@meyering.net>
7998
7999         Sync from coreutils.
8000         * m4/openat.m4 (gl_FUNC_OPENAT): Require and compile mkdirat.c.
8001         Require openat-priv.h.
8002
8003 2006-01-09  Bruno Haible  <bruno@clisp.org>
8004
8005         * modules/strnlen (Include): Use strnlen.h.
8006
8007 2006-01-09  Bruno Haible  <bruno@clisp.org>
8008
8009         * m4/stdint.m4 (gl_STDINT_H): Also test for <sys/bitypes.h>.
8010
8011 2006-01-09  Bruno Haible  <bruno@clisp.org>
8012
8013         * lib/sysexit_.h (EX_OK): New macro.
8014         Suggested by Martin Lambers <marlam@marlam.de>.
8015
8016 2006-01-09  Bruno Haible  <bruno@clisp.org>
8017
8018         * lib/stdint_.h: On Linux libc4 and libc5, include <sys/bitypes.h> and
8019         don't define _STDINT_H_NEED_SIGNED_INT_TYPES.
8020
8021 2006-01-09  Bruno Haible  <bruno@clisp.org>
8022
8023         * lib/stdint_.h (SIZE_MAX): Write the value without involving negative
8024         numbers.
8025
8026 2006-01-09  Bruno Haible  <bruno@clisp.org>
8027
8028         * lib/javacomp.sh.in: Move to ../build-aux/javacomp.sh.in.
8029         * lib/javaexec.sh.in: Move to ../build-aux/javaexec.sh.in.
8030         * lib/csharpcomp.sh.in: Move to ../build-aux/csharpcomp.sh.in.
8031         * lib/csharpexec.sh.in: Move to ../build-aux/csharpexec.sh.in.
8032
8033 2006-01-09  Bruno Haible  <bruno@clisp.org>
8034
8035         * build-aux/javacomp.sh.in: New file, moved from lib/.
8036         * modules/javacomp-script (Files): Update.
8037         (configure.ac): Add AC_CONFIG_FILES invocation.
8038         (EXTRA_DIST): Remove variable.
8039
8040         * build-aux/javaexec.sh.in: New file, moved from lib/.
8041         * modules/javaexec (Files): Update.
8042         (configure.ac): Add AC_CONFIG_FILES invocation.
8043         (EXTRA_DIST): Remove javaexec.sh.in.
8044
8045         * build-aux/csharpcomp.sh.in: New file, moved from lib/.
8046         * modules/csharpcomp-script (Files): Update.
8047         (configure.ac): Add AC_CONFIG_FILES invocation.
8048         (EXTRA_DIST): Remove variable.
8049
8050         * build-aux/csharpexec.sh.in: New file, moved from lib/.
8051         * modules/csharpexec (Files): Update.
8052         (configure.ac): Add AC_CONFIG_FILES invocation.
8053         (EXTRA_DIST): Remove csharpexec.sh.in.
8054
8055 2006-01-09  Andreas Gruenbacher  <agruen@suse.de>
8056
8057         Sync from coreutils.
8058
8059         Add POSIX ACL support
8060         * lib/acl.h (copy_acl, set_acl): Add declarations.
8061         * lib/acl.c (acl_entries): Add fallback implementation for POSIX ACL
8062         systems other than Linux.
8063         (chmod_or_fchmod): New function: use fchmod when possible,
8064         and chmod otherwise.
8065         (file_has_acl): Add a POSIX ACL implementation, with a
8066         Linux-specific subcase.
8067         (copy_acl): Add: copy an acl and S_ISUID, S_ISGID, and
8068         S_ISVTX from one file to another.  Fall back to fchmod/chmod when
8069         acls are unsupported.
8070         (set_acl): Add: set a file's acl and S_ISUID, S_ISGID, and
8071         S_ISVTX to a defined value.  Fall back to fchmod/chmod when acls
8072         are unsupported.
8073
8074 2006-01-09  Andreas Gruenbacher  <agruen@suse.de>
8075
8076         Sync from coreutils.
8077         * m4/acl.m4 (AC_FUNC_ACL): Add POSIX ACL and Linux-specific acl tests.
8078
8079 2006-01-07  Bruno Haible  <bruno@clisp.org>
8080
8081         * gnulib-tool (func_import): Add an AC_PROG_RANLIB dependency to
8082         gl_EARLY.
8083
8084 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
8085
8086         * lib/strftime.c (tzname): Don't declare if it is already #defined.
8087         Problem reported for Mingw by Mark Junker.
8088
8089 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
8090
8091         * README: Gnulib normally doesn't generate a tarball.
8092
8093 2006-01-03  Paul Eggert  <eggert@cs.ucla.edu>
8094
8095         * lib/xtime.h (xtime_make, xtime_nonnegative_nsec, xtime_nsec): Use
8096         long int, not int, for nanosecond counts, so that people who are
8097         used to POSIX struct timespec won't be surprised.  Reported by Jim
8098         Meyering.
8099
8100 2005-12-28  Bruno Haible  <bruno@clisp.org>
8101
8102         * build-aux/config.rpath: Update from GNU gettext.
8103
8104 2005-12-16  Jim Meyering  <jim@meyering.net>
8105
8106         * modules/fprintftime: New module.
8107         * MODULES.html.sh (Date and time <time.h>): Add fprintftime.
8108
8109 2005-12-16  Jim Meyering  <jim@meyering.net>
8110
8111         * m4/fprintftime.m4: New file.
8112
8113 2005-12-16  Jim Meyering  <jim@meyering.net>
8114
8115         * lib/fprintftime.c, lib/fprintftime.h: New files.
8116
8117 2005-12-15  Simon Josefsson  <jas@extundo.com>
8118
8119         * modules/socklen (configure.ac): Fix M4 macro name, to align with
8120         new m4/socklen.m4.
8121
8122 2005-12-10  Sergey Poznyakoff  <gray@gnu.org.ua>
8123
8124         * m4/argp.m4: Define HAVE_DECL_PROGRAM_INVOCATION_NAME and
8125         HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME
8126
8127 2005-12-10  Sergey Poznyakoff  <gray@gnu.org.ua>
8128
8129         * lib/argp-fmtstream.c (__argp_fmtstream_update): Fix coredump
8130         * lib/argp-help.c (fill_in_uparams): Check if the constructed
8131         struct uparams is valid. Fall back to the default values if it is
8132         not.
8133
8134 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
8135
8136         * modules/argp (Files): Add argp-pin.c
8137         (Depends-on): dirname
8138         (lib_SOURCES): Add argp-pin.c
8139
8140 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
8141
8142         * m4/argp.m4:  Check if program_invocation_name and
8143         program_invocation_short_name are declared and define appropriate
8144         macros if they are not.
8145
8146 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
8147
8148         * lib/argp-help.c (__argp_base_name): New function
8149         (__argp_short_program_name): Rewrite using __argp_base_name
8150         * lib/argp-namefrob.h: Define program_invocation_name and
8151         program_invocation_short_name if requested
8152         (__argp_base_name): Add prototype
8153         * lib/argp-parse.c (argp_def): Use gettext wrappers
8154         (argp_default_parser): Use __argp_base_name
8155         * lib/argp-pin.c: New file. Defines program_invocation_name and
8156         program_invocation_short_name on systems that lack them.
8157
8158 2005-12-07  Paul Eggert  <eggert@cs.ucla.edu>
8159
8160         * m4/stat-time.m4 (gl_STAT_TIME): Add check for
8161         TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC, to fix IRIX 5.3
8162         porting problem reported by Georg Schwarz in
8163         <http://lists.gnu.org/archive/html/bug-coreutils/2005-12/msg00083.html>.
8164
8165 2005-12-07  Paul Eggert  <eggert@cs.ucla.edu>
8166
8167         * lib/stat-time.h (STATE_TIMESPEC, STAT_TIMESPEC_NS): Add check for
8168         TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC, to fix IRIX 5.3
8169         porting problem reported by Georg Schwarz in
8170         <http://lists.gnu.org/archive/html/bug-coreutils/2005-12/msg00083.html>.
8171
8172 2005-12-05  Bruno Haible  <bruno@clisp.org>
8173
8174         * lib/csharpcomp.sh.in (options_csc): For -l option, add a .dll suffix.
8175         * lib/csharpcomp.c (compile_csharp_using_sscli): Likewise.
8176         Reported by Mark Junker <mjscod@gmx.de>.
8177
8178 2005-12-02  Paul Eggert  <eggert@cs.ucla.edu>
8179
8180         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Renamed from gl_SOCKLEN_T.
8181         Use implementation from Albert Chin, with some
8182         comments/corrections by Stepan Kasal and myself.
8183
8184 2005-12-02  Bruno Haible  <bruno@clisp.org>
8185
8186         * gnulib-tool (func_import): Accept GPLed build tool modules when
8187         --lgpl is given.
8188         * modules/csharpcomp-script: New file.
8189         * modules/csharpcomp: Depend on it.
8190         * modules/javacomp-script: New file.
8191         * modules/javacomp: Depend on it.
8192         Suggested by Simon Josefsson.
8193
8194 2005-12-01  Paul Eggert  <eggert@cs.ucla.edu>
8195
8196         * m4/regex.m4 (gl_REGEX): Check whether off_t can be used in a switch
8197         statement, to work around an HP-UX 10.20 compiler bug reported by
8198         Peter O'Gorman.
8199
8200 2005-11-29  Paul Eggert  <eggert@cs.ucla.edu>
8201
8202         * modules/savedir (Depends-on): Add openat.
8203
8204 2005-11-29  Paul Eggert  <eggert@cs.ucla.edu>
8205
8206         * lib/stdint_.h (intmax_t) [defined intmax_t]: Do not declare.
8207         (uintmax_t) [defined uintmax_t]: Do not declare.
8208         (SIZE_MAX) [defined SIZE_MAX]: Do not define.
8209         This works around a problem if intmax_t.m4 and/or uintmax_t.m4
8210         and/or size_max.m4 are also used.  Problem reported by Mark D. Baushke.
8211         (SIZE_MAX): Define to ((size_t) -1), not (~(size_t)0), for the
8212         sake of portability to weird hosts that C allows (though we don't
8213         know of any practical examples).
8214
8215         * lib/savedir.h (fdsavedir): New decl.
8216         * lib/savedir.c (fdsavedir, savedirstream): New functions; the latter
8217         contains most of the former guts of savedir.
8218         (savedir): Use savedirstream.
8219         Include "openat.h".
8220
8221 2005-11-25  Paul Eggert  <eggert@cs.ucla.edu>
8222
8223         * modules/obstack (Files): Add m4/ulonglong.m4.
8224         Problem reported by Davide Angelocola.
8225
8226 2005-11-15  Paul Eggert  <eggert@cs.ucla.edu>
8227
8228         * lib/xstrtod.c: Don't bother with #pragma STDC FENV_ACCESS ON, as
8229         coreutils no longer futzes with rounding modes.
8230
8231 2005-11-14  Jim Meyering  <jim@meyering.net>
8232
8233         * lib/mkstemp-safer.c: Include <config.h>, required for possible
8234         replacement of mkstemp.
8235
8236 2005-11-10  Simon Josefsson  <jas@extundo.com>
8237
8238         * lib/readline.c: Remove EOL.
8239
8240 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
8241
8242         * modules/gethrxtime (Depends-on): Add gettime.
8243
8244 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
8245
8246         * m4/gethrxtime.m4 (gl_PREREQ_GETHRXTIME): Don't require AC_HEADER_TIME
8247         or gettimeofday; no longer needed.
8248
8249 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
8250
8251         * lib/gethrxtime.c: Include "timespec.h" rather than the sys/time /
8252         time business.
8253         (gethrxtime) [! (HAVE_NANOUPTIME
8254         || (defined CLOCK_MONOTONIC && HAVE_CLOCK_GETTIME)
8255         || HAVE_MICROUPTIME)]: Fall back on gettime rather than rolling
8256         our own approximation.
8257
8258 2005-11-08  Eric Blake  <ebb9@byu.net>
8259
8260         * lib/inet_ntop.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
8261
8262 2005-11-08  Eric Blake  <ebb9@byu.net>
8263
8264         * lib/getaddrinfo.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
8265
8266 2005-11-04  Bruno Haible  <bruno@clisp.org>
8267
8268         * gnulib-tool: Implement --update mode.
8269
8270 2005-10-30  Paul Eggert  <eggert@cs.ucla.edu>
8271
8272         Fix porting problem reported by Theodoros V. Kalamatianos.
8273         * lib/utimens.c (futimens) [HAVE_WORKING_UTIMES && HAVE_FUTIMES]:
8274         Don't assume that futimes failing means we must fail.
8275
8276 2005-10-30  Paul Eggert  <eggert@cs.ucla.edu>
8277
8278         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Revamp wording and local
8279         variables to suggest the intended function of the PATH_MAX check.
8280
8281 2005-10-30  Kean Johnston  <jkj@sco.com>
8282
8283         Trivial changes to support SCO systems.
8284         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Check for MAXPATHLEN as well
8285         as PATH_MAX.
8286         * m4/fpending.m4 (gl_FUNC_FPENDING): Correct check for SCO systems,
8287         where __ptr is null when no I/O is pending.
8288
8289 2005-10-29  Paul Eggert  <eggert@cs.ucla.edu>
8290
8291         * lib/getcwd.c (__getcwd): Don't assume that system calls after readdir
8292         leave errno alone.  Problem reported by Dmitry V. Levin.
8293
8294 2005-10-28  Simon Josefsson  <jas@extundo.com>
8295
8296         * tests/test-gc-md4.c, tests/test-gc-md5.c, tests/test-gc-sha1.c:
8297         Test more.
8298
8299         * tests/test-gc-md2.c, tests/test-md2.c: New files.
8300
8301         * modules/md2, modules/md2-tests: New files.
8302
8303 2005-10-28  Simon Josefsson  <jas@extundo.com>
8304
8305         * m4/inet_ntop.m4: More tests.
8306
8307         * m4/gc-md2.m4, md2.m4: New file.
8308
8309 2005-10-28  Simon Josefsson  <jas@extundo.com>
8310
8311         * lib/inet_ntop.h, inet_ntop.c: Make it work under mingw32: Add
8312         "restrict" keywords, as per POSIX.  Protect the function
8313         declaration around HAVE_DECL_INET_NTOP rather than HAVE_INET_NTOP.
8314         Don't use K&R prototypes.  Check the sprintf return values.
8315         Re-define EAFNOSUPPORT if not present.  Indent.
8316
8317         * lib/md5.h, md5.c: Simplify buffer handling visavi alignment,
8318         suggested by Bruno Haible <bruno@clisp.org>.
8319
8320         * lib/gc-gnulib.c, gc-libgcrypt.c: Check calloc return value.
8321
8322         * lib/gc.h: Add MD2 and RMD160 length defines.  Add prototypes.
8323
8324         * lib/gc-libgcrypt.c: Add MD2 (which is not available through
8325         libgcrypt).
8326
8327         * lib/gc-gnulib.c: Add MD2.  Implement gc_hash_* API.
8328
8329         * lib/md2.h, lib/md2.c: New files.
8330
8331 2005-10-28  Paul Eggert  <eggert@cs.ucla.edu>
8332
8333         * lib/savedir.c (savedir): Don't assume that xrealloc etc. leave
8334         errno alone.  Problem reported by Frederic Jolliton.
8335
8336 2005-10-27  Paul Eggert  <eggert@cs.ucla.edu>
8337
8338         * modules/verify (License): Change from GPL to LGPL.  This is a
8339         tiny module and there are apparently near-equivalents that are
8340         under the BSD license.
8341
8342 2005-10-24  Simon Josefsson  <jas@extundo.com>
8343
8344         * modules/sha1: Relicense to LGPL.
8345
8346 2005-10-24  Simon Josefsson  <jas@extundo.com>
8347
8348         * lib/md4.h: Shrink buffer size, now that we changed the type.
8349
8350 2005-10-23  Simon Josefsson  <jas@extundo.com>
8351
8352         * gnulib-tool (func_import): Fix --tests-base.
8353
8354 2005-10-22  Simon Josefsson  <jas@extundo.com>
8355
8356         * modules/arcfour (Depends-on): Need stdint.
8357
8358 2005-10-22  Simon Josefsson  <jas@extundo.com>
8359
8360         * m4/gc.m4: Don't be fooled by --disable-*random-device parameters,
8361         suggested by Bruno Haible <bruno@clisp.org>.  Fix error messages.
8362
8363 2005-10-22  Simon Josefsson  <jas@extundo.com>
8364
8365         * lib/md4.h, md4.c: Simplify buffer handling visavi alignment,
8366         suggested by Bruno Haible <bruno@clisp.org>.
8367
8368 2005-10-22  Simon Josefsson  <jas@extundo.com>
8369
8370         * lib/crc.h: Include stddef.h, for size_t.
8371
8372 2005-10-22  Simon Josefsson  <jas@extundo.com>
8373
8374         * lib/arcfour.h, arcfour.c: Use fixed size indices in the
8375         arcfour_context struct (simplify test vector testing in GNU
8376         Shishi).
8377
8378 2005-10-21  Simon Josefsson  <jas@extundo.com>
8379
8380         * modules/des, modules/des-tests: New files.
8381
8382         * modules/gc-des, modules/gc-des-tests: New files.
8383
8384         * tests/test-des.c, tests/test-gc-des.c: New file.
8385
8386 2005-10-21  Simon Josefsson  <jas@extundo.com>
8387
8388         * modules/arctwo, modules/arctwo-tests: New files.
8389
8390         * tests/test-arctwo.c: New file.
8391
8392         * modules/gc-arctwo, modules/gc-arctwo-tests: New files.
8393
8394         * tests/test-gc-arctwo.c: New file.
8395
8396 2005-10-21  Simon Josefsson  <jas@extundo.com>
8397
8398         * m4/gc.m4: Don't use libgcrypt if gcrypt.h isn't found, suggested by
8399         Bruno Haible <bruno@clisp.org>.
8400
8401         * m4/gc-des.m4: New file.
8402
8403 2005-10-21  Simon Josefsson  <jas@extundo.com>
8404
8405         * m4/arctwo.m4: New file.
8406
8407         * m4/gc-arctwo.m4: New file.
8408
8409 2005-10-21  Simon Josefsson  <jas@extundo.com>
8410
8411         * lib/rijndael-api-fst.c: Fix bugs in CBC mode for more than one
8412         block.
8413
8414 2005-10-21  Simon Josefsson  <jas@extundo.com>
8415
8416         * lib/hmac-md5.c (hmac_md5): Add comments, suggested by Bruno Haible
8417         <bruno@clisp.org>.
8418
8419         * lib/hmac-sha1.c (hmac_sha1): Likewise.
8420
8421         * lib/crc.c (crc32_update): Actually use crc parameter, suggested by
8422         Bruno Haible <bruno@clisp.org>.
8423
8424         * lib/crc.h: Include stdint.h directly, suggested by Bruno Haible
8425         <bruno@clisp.org>.
8426
8427 2005-10-21  Simon Josefsson  <jas@extundo.com>
8428
8429         * lib/gc-libgcrypt.c (gc_cipher_open): Handle ECB.
8430
8431 2005-10-21  Simon Josefsson  <jas@extundo.com>
8432
8433         * lib/gc-gnulib.c: Support ARCTWO in CBC mode.
8434
8435 2005-10-21  Simon Josefsson  <jas@extundo.com>
8436
8437         * lib/des.h, lib/des.c: New files.
8438
8439         * lib/gc-gnulib.c: Support DES.c
8440
8441 2005-10-21  Simon Josefsson  <jas@extundo.com>
8442
8443         * lib/arctwo.h, lib/arctwo.c: New files.
8444
8445         * lib/gc-gnulib.c: Support ARCTWO.
8446
8447 2005-10-21  Simon Josefsson  <jas@extundo.com>
8448
8449         * lib/arctwo.h (arctwo_setkey): Protect variable in CPP macro,
8450         suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
8451
8452 2005-10-21  Simon Josefsson  <jas@extundo.com>
8453
8454         * gnulib-tool (func_import, func_create_testdir): Define automake
8455         conditional GL_COND_LIBTOOL if libtool is used (to be used by modules
8456         Makefile.am snippet),
8457         suggested by Bruno Haible <bruno@clisp.org>.
8458
8459         * modules/gc (Makefile.am): Use it.
8460
8461 2005-10-21  Bruno Haible  <bruno@clisp.org>
8462
8463         * gnulib-tool (func_import, func_create_testdir): Add quoting to last
8464         patch.
8465
8466 2005-10-19  Simon Josefsson  <jas@extundo.com>
8467
8468         * tests/test-gc-rijndael.c: New file.
8469
8470         * modules/gc-rijndael, modules/gc-rijndael-test: New files.
8471
8472 2005-10-19  Simon Josefsson  <jas@extundo.com>
8473
8474         * tests/test-gc-md4.c, tests/test-gc-md5.c: Test gc_hash_buffer
8475         interface too.
8476
8477 2005-10-19  Simon Josefsson  <jas@extundo.com>
8478
8479         * tests/test-gc-arcfour.c: New file.
8480
8481         * modules/gc-arcfour, modules/gc-arcfour-tests: New files.
8482
8483 2005-10-19  Simon Josefsson  <jas@extundo.com>
8484
8485         * modules/gc-md4, modules/gc-md4-tests: New file.
8486
8487         * tests/test-gc-md4.c: New file.
8488
8489 2005-10-19  Simon Josefsson  <jas@extundo.com>
8490
8491         * m4/gc-md4.m4: New file.
8492
8493 2005-10-19  Simon Josefsson  <jas@extundo.com>
8494
8495         * m4/gc-hmac-md5.m4, gc-hmac-sha1.m4, gc-md4.m4,
8496         gc-md5.m4, gc-sha1.m4: Fix typo, suggested by Stepan Kasal
8497         <kasal@ucw.cz>.
8498
8499 2005-10-19  Simon Josefsson  <jas@extundo.com>
8500
8501         * m4/gc-arcfour.m4: New file.
8502
8503         * m4/gc-rijndael.m4: New file.
8504
8505 2005-10-19  Simon Josefsson  <jas@extundo.com>
8506
8507         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Support MD4.
8508
8509 2005-10-19  Simon Josefsson  <jas@extundo.com>
8510
8511         * lib/gc-gnulib.c: Support ARCFOUR.
8512
8513 2005-10-19  Simon Josefsson  <jas@extundo.com>
8514
8515         * lib/gc-gnulib.c: Implement gc_cipher_* API, currently only with AES
8516         support.
8517
8518         * lib/gc.h: Add ECB enum type.
8519
8520         * lib/hmac-md5.c, hmac-sha1.c: Include memxor.h.
8521
8522 2005-10-18  Simon Josefsson  <jas@extundo.com>
8523
8524         * tests/test-md5.c: New file.
8525
8526         * modules/md5-tests: New file.
8527
8528 2005-10-18  Simon Josefsson  <jas@extundo.com>
8529
8530         * tests/test-md4.c: New file.
8531
8532         * modules/md4, modules/md4-tests: New files.
8533
8534 2005-10-18  Simon Josefsson  <jas@extundo.com>
8535
8536         * m4/md4.m4: New file.
8537
8538 2005-10-18  Simon Josefsson  <jas@extundo.com>
8539
8540         * lib/md4.h, lib/md4.c: New files, based on md5.?.
8541
8542 2005-10-17  Stepan Kasal  <kasal@ucw.cz>
8543
8544         * gnulib-tool (func_create_testdir): Omit the second check whether
8545         BUILT_SOURCES in nonempty.
8546
8547 2005-10-17  Simon Josefsson  <jas@extundo.com>
8548
8549         * tests/test-rijndael.c: New file.
8550
8551 2005-10-17  Simon Josefsson  <jas@extundo.com>
8552
8553         * modules/sha1: Depend on stdint instead of md5.
8554
8555         * modules/md5: Depend on stdint, remove uint32_t.
8556
8557 2005-10-17  Simon Josefsson  <jas@extundo.com>
8558
8559         * modules/gc-sha1-tests: New file.
8560
8561         * tests/test-gc-sha1.c: New file.
8562
8563 2005-10-17  Simon Josefsson  <jas@extundo.com>
8564
8565         * m4/md5.m4: Remove call to uint32_t.m4.
8566
8567 2005-10-17  Simon Josefsson  <jas@extundo.com>
8568
8569         * lib/sha1.c: Use uint32_t instead of md5_uint32.t
8570
8571         * lib/sha1.h: Use stdint.h and uint32_t instead of md5_uint32 from
8572         md5.h.
8573
8574         * lib/md5.c: Use uin32_t.  Fix non-gcc UNALIGNED_P macro.
8575
8576         * lib/md5.h: Use stdint.h and uint32_t.  Doc fix.
8577
8578 2005-10-17  Simon Josefsson  <jas@extundo.com>
8579
8580         * lib/gc.h, gc-libgcrypt.c: Add more hash types/functions.
8581
8582 2005-10-17  Simon Josefsson  <jas@extundo.com>
8583
8584         * lib/gc.h, gc-libgcrypt.c: Add ciphers.
8585
8586 2005-10-17  Simon Josefsson  <jas@extundo.com>
8587
8588         * lib/gc-libgcrypt.c (gc_hmac_sha1): Fix assert.
8589
8590         * lib/gc.h (gc_nonce, gc_pseudo_random, gc_random): Add prototypes.
8591
8592 2005-10-17  Bruno Haible  <bruno@clisp.org>
8593
8594         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Change the return statement so
8595         that it can also be used in a test.
8596
8597 2005-10-16  Bruno Haible  <bruno@clisp.org>
8598
8599         * gnulib-tool (func_emit_tests_Makefile_am): Also define
8600         TESTS_ENVIRONMENT, so that individual tests can augment it.
8601
8602         * gnulib-tool (func_create_testdir): Use an intermediate target for
8603         building $(BUILT_SOURCES). Needed because BUILT_SOURCES can contain
8604         macros, like $(ALLOCA_H), which cannot be passed through the command
8605         line.
8606
8607 2005-10-15  Simon Josefsson  <jas@extundo.com>
8608
8609         * modules/rijndael-tests: New file.
8610
8611         * modules/rijndael: New file.
8612
8613 2005-10-15  Simon Josefsson  <jas@extundo.com>
8614
8615         * m4/rijndael.m4: New file.
8616
8617 2005-10-15  Simon Josefsson  <jas@extundo.com>
8618
8619         * lib/rijndael-api-fst.h, lib/rijndael-api-fst.c: New files.
8620
8621         * lib/rijndael-alg-fst.h, lib/rijndael-alg-fst.c: New files.
8622
8623 2005-10-14  Simon Josefsson  <jas@extundo.com>
8624
8625         * tests/test-arcfour.c: New file.
8626
8627         * modules/arcfour, modules/arcfour-tests: New files.
8628
8629 2005-10-14  Simon Josefsson  <jas@extundo.com>
8630
8631         * m4/arcfour.m4: New file.
8632
8633 2005-10-14  Simon Josefsson  <jas@extundo.com>
8634
8635         * lib/arcfour.h, lib/arcfour.c: New files.
8636
8637 2005-10-14  Roland McGrath  <roland@redhat.com>
8638
8639         Import from libc.  [BZ #1331]
8640         * lib/obstack.h [!__STDC__] (obstack_int_grow_fast): Fix misnamed
8641         macro argument.
8642         Reported by Matej Vela <vela@debian.org>.
8643
8644 2005-10-14  Paul Eggert  <eggert@cs.ucla.edu>
8645
8646         * lib/obstack.c [defined _LIBC && defined USE_IN_LIBIO]: Don't
8647         include <wchar.h>; no longer needed.
8648
8649 2005-10-14  Paul Eggert  <eggert@cs.ucla.edu>
8650
8651         * config/srclist.txt: Add glibc bug 321 for obstack.c, obstack.h.
8652
8653 2005-10-14  Jakub Jelinek  <jakub@redhat.com>
8654         and  Ulrich Drepper  <drepper@redhat.com>
8655
8656         Import from libc.
8657         * lib/obstack.c (print_and_abort) [defined _LIBC]: Use __fxprintf
8658         instead of inline stream orientation test and two separate
8659         function calls.  Pay no attention to USE_IN_LIBIO.
8660
8661 2005-10-13  Simon Josefsson  <jas@extundo.com>
8662
8663         * modules/gc-hmac-md5-tests: New file.
8664
8665         * tests/test-gc-hmac-sha1.c: New file.
8666
8667         * tests/test-gc.c (main): Remove MD5 and HMAC-MD5 tests.
8668
8669         * modules/gc-hmac-md5-tests: New file.
8670
8671         * tests/test-gc-md5.c: New file.
8672
8673         * modules/gc-md5-tests: New file.
8674
8675 2005-10-13  Simon Josefsson  <jas@extundo.com>
8676
8677         * lib/gc-pbkdf2-sha1.c (gc_pbkdf2_sha1): Optimize CEIL computation.
8678         Move memory allocation outside of loop.
8679
8680 2005-10-13  Paul Eggert  <eggert@cs.ucla.edu>
8681
8682         * lib/mkdir-p.c (make_dir_parents): Don't report an error if an
8683         intermediate directory is in a read-only file system.  Problem
8684         reported by Eric Blake.
8685
8686 2005-10-13  Oskar Liljeblad  <oskar@osk.mine.nu>
8687
8688         * modules/human (Depends-on): Depend on xstrtoumax, not xstrtol.
8689
8690 2005-10-12  Simon Josefsson  <jas@extundo.com>
8691
8692         * tests/test-hmac-sha1.c: New file.
8693
8694         * modules/hmac-sha1-tests: New file.
8695
8696         * modules/hmac-sha1: New file.
8697
8698 2005-10-12  Simon Josefsson  <jas@extundo.com>
8699
8700         * modules/gc-sha1: New file.
8701
8702 2005-10-12  Simon Josefsson  <jas@extundo.com>
8703
8704         * modules/gc-pbkdf2-sha1, modules/gc-pbkdf2-sha1-tests: New files.
8705
8706         * tests/test-gc-pbkdf2-sha1.c: New file.
8707
8708 2005-10-12  Simon Josefsson  <jas@extundo.com>
8709
8710         * modules/gc-md5, modules/gc-hmac-md5: New files.
8711
8712         * modules/gc (Files): Remove md5, memxor and hmac files.
8713
8714 2005-10-12  Simon Josefsson  <jas@extundo.com>
8715
8716         * m4/gc-pbkdf2-sha1.m4: New file.
8717
8718         * m4/gc-hmac-sha1.m4: New file.
8719
8720         * m4/gc-sha1: New file.
8721
8722         * m4/hmac-sha1.m4: New file.
8723
8724 2005-10-12  Simon Josefsson  <jas@extundo.com>
8725
8726         * m4/gc-md5.m4, m4/gc-hmac-md5.m4: New files.
8727
8728         * m4/gc.m4: Don't call gl_MD5, gl_MEMXOR or gl_HMAC_MD5.
8729
8730 2005-10-12  Simon Josefsson  <jas@extundo.com>
8731
8732         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Use Gc_rc for return types,
8733         suggested by Bruno Haible <bruno@clisp.org>.
8734
8735 2005-10-12  Simon Josefsson  <jas@extundo.com>
8736
8737         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Support SHA-1.
8738
8739 2005-10-12  Simon Josefsson  <jas@extundo.com>
8740
8741         * lib/gc-pbkdf2-sha1.c: New file.
8742
8743         * lib/gc.h: Add gc_pbkdf2_sha1 prototype.
8744
8745 2005-10-12  Simon Josefsson  <jas@extundo.com>
8746
8747         * lib/gc-libgcrypt.c (gc_hmac_sha1): New function.
8748
8749         * lib/gc-gnulib.c (gc_hmac_sha1): New function.
8750
8751 2005-10-12  Simon Josefsson  <jas@extundo.com>
8752
8753         * lib/gc-gnulib.c: Condition MD5 and HMAC-MD5 use on GC_USE_MD5 and
8754         GC_USE_HMAC_MD5, respectively.
8755
8756         * lib/gc-libgcrypt.c (gc_md5): Fix assert call.
8757         (gc_md5): Fix typo.
8758
8759         * lib/gc.h (gc_hash_buffer): Use gc_hash in prototype.
8760
8761         * lib/gc-libgcrypt.c (gc_hash_buffer): Ditto.
8762
8763         * lib/gc-gnulib.c (gc_hash_buffer): Ditto.
8764
8765 2005-10-12  Bruno Haible  <bruno@clisp.org>
8766
8767         * m4/stdbool.m4 (gl_STDBOOL_H): Define as an alias of AM_STDBOOL_H.
8768         Reported by Stepan Kasal <kasal@ucw.cz>.
8769
8770 2005-10-11  Simon Josefsson  <jas@extundo.com>
8771
8772         * tests/test-crc.c: New file.
8773
8774         * modules/crc, modules/crc-tests: New files.
8775
8776 2005-10-11  Simon Josefsson  <jas@extundo.com>
8777
8778         * m4/crc.m4: New file.
8779
8780 2005-10-11  Simon Josefsson  <jas@extundo.com>
8781
8782         * lib/gc.h: Add gc_hash and gc_hash_buffer.
8783
8784         * lib/gc-gnulib.c (gc_hash_buffer): Add.  Reorder #include's.
8785
8786         * lib/gc-libgcrypt.c (gc_hash_buffer): Add.
8787
8788 2005-10-11  Simon Josefsson  <jas@extundo.com>
8789
8790         * lib/crc.h, lib/crc.c: New files.
8791
8792         * lib/gc.h (gc_hash_buffer): Add doc.
8793
8794 2005-10-11  Bruno Haible  <bruno@clisp.org>
8795
8796         * modules/c-strcasestr: New file.
8797         * MODULES.html.sh (String handling <string.h>): Add c-strcasestr.
8798
8799 2005-10-11  Bruno Haible  <bruno@clisp.org>
8800
8801         * modules/c-strcase: New file.
8802         * MODULES.html.sh (String handling <string.h>): Add c-strcase.
8803
8804 2005-10-11  Bruno Haible  <bruno@clisp.org>
8805
8806         * lib/strcasecmp.c: Include limits.h.
8807         (strcasecmp): Avoid integer overflow on exotic platforms.
8808         * lib/strncasecmp.c: Include limits.h.
8809         (strncasecmp): Avoid integer overflow on exotic platforms.
8810         Reported by Paul Eggert.
8811
8812 2005-10-11  Bruno Haible  <bruno@clisp.org>
8813
8814         * lib/c-strcasestr.h: New file, from GNU gettext.
8815         * lib/c-strcasestr.c: New file, from GNU gettext.
8816
8817 2005-10-11  Bruno Haible  <bruno@clisp.org>
8818
8819         * lib/c-strcase.h: New file, from GNU gettext.
8820         * lib/c-strcasecmp.c: New file, from GNU gettext.
8821         * lib/c-strncasecmp.c: New file, from GNU gettext.
8822
8823 2005-10-10  Paul Eggert  <eggert@cs.ucla.edu>
8824
8825         * modules/mempcpy (License): GPL -> LGPL.
8826         * modules/strchrnul (License): Likewise.
8827         * modules/sysexits (License): Likewise.
8828
8829 2005-10-08  Simon Josefsson  <jas@extundo.com>
8830
8831         * config/srclist.txt: Bug 1423 is closed, but 1439 remains.
8832
8833 2005-10-07  Simon Josefsson  <jas@extundo.com>
8834
8835         * m4/memxor.m4: Remove gl_C_RESTRICT call.
8836
8837 2005-10-06  Simon Josefsson  <jas@extundo.com>
8838
8839         * tests/test-hmac-md5.c: New file.
8840
8841         * modules/hmac-md5-tests: New file.
8842
8843         * modules/hmac-md5: New file.
8844
8845 2005-10-06  Simon Josefsson  <jas@extundo.com>
8846
8847         * m4/hmac-md5.m4: New file.
8848
8849         * m4/memxor.m4: Require gl_C_RESTRICT.
8850
8851 2005-10-06  Simon Josefsson  <jas@extundo.com>
8852
8853         * lib/memxor.c (memxor): Avoid casts and warnings.
8854
8855 2005-10-06  Simon Josefsson  <jas@extundo.com>
8856
8857         * lib/hmac-md5.c: New file.
8858
8859         * lib/hmac.h: New file.
8860
8861 2005-10-06  Paul Eggert  <eggert@cs.ucla.edu>
8862
8863         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check that bool
8864         promotes to int, not unsigned int, to catch the AIX 5.3
8865         compiler bug.
8866
8867 2005-10-05  Simon Josefsson  <jas@extundo.com>
8868
8869         * modules/memxor: New file.
8870
8871         * modules/iconv (Files): Move config.rpath to havelib, it is used
8872         there.
8873
8874         * modules/havelib (Files): Add config.rpath.
8875
8876 2005-10-05  Simon Josefsson  <jas@extundo.com>
8877
8878         * m4/memxor.m4: New file.
8879
8880 2005-10-05  Simon Josefsson  <jas@extundo.com>
8881
8882         * lib/memxor.c (memxor): Fix compiler error.
8883
8884         * lib/md5.h (MD5_DIGEST_SIZE, MD5_BLOCK_SIZE): Add, see also
8885         <http://sourceware.org/bugzilla/show_bug.cgi?id=1423>.
8886
8887         * lib/memxor.h, lib/memxor.c: New files.
8888
8889         * lib/getaddrinfo.h: Don't protect sys/types.h with HAVE_SYS_TYPES_H,
8890         we assume all systems have it, suggested by Jim Meyering
8891         <jim@meyering.net>.  Remove HAVE_SYS_SOCKET_H test too, to see if
8892         any systems lack sys/socket.h; mingw32 is known to lack it, but we
8893         don't support it yet anyway.  Also remove HAVE_NETDB_H test, for
8894         same reasons.
8895
8896 2005-10-05  Simon Josefsson  <jas@extundo.com>
8897
8898         * config/srclist.txt: Add glibc bug 1423 for md5.h.
8899
8900 2005-10-05  Paul Eggert  <eggert@cs.ucla.edu>
8901
8902         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Don't check for
8903         sys/socket.h, netdb.h, sys/types.h; the checks areno longer
8904         needed, since the source code now assumes these .h files.
8905
8906 2005-10-05  Derek Price  <derek@ximbiot.com>
8907
8908         * lib/getdelim.c (SIZE_MAX): New macro, if not already defined.
8909
8910 2005-10-05  Bruno Haible  <bruno@clisp.org>
8911
8912         * modules/stdint (License): Change to LGPL.
8913
8914 2005-10-04  Simon Josefsson  <jas@extundo.com>
8915
8916         * lib/getaddrinfo.h: Move sys/types.h include first, reported by "Mark
8917         D. Baushke" <mdb@gnu.org>.
8918
8919 2005-10-04  Bruno Haible  <bruno@clisp.org>
8920
8921         * lib/verify.h (verify_true): Provide alternative definition for C++.
8922
8923 2005-10-03  Paul Eggert  <eggert@cs.ucla.edu>
8924
8925         * lib/getdelim.c: Include getdelim.h first.  Include <limits.h>.
8926         (SSIZE_MAX): New macro, if not already defined.
8927         (getdelim): Fix buffer overrun on 64-bit hosts with lines longer
8928         than 2 GiB.
8929
8930 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
8931
8932         Sync from coreutils.
8933         * m4/openat.m4 (gl_FUNC_OPENAT): Check for fdopendir.
8934         * m4/ullong_max.m4 (gl_ULLONG_MAX): Simplify so that it merely
8935         defines ULONG_MAX_LT_ULLONG_MAX.  Thomas M.Ott reports that
8936         ULLONG_MAX doesn't work with 2.7.2.1.
8937
8938 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
8939
8940         * modules/xreadlink (Makefile.am): Remove lib_SOURCES.
8941         From Ben Pfaff.
8942
8943         * modules/exclude (Depends-on): Depend on verify.
8944         * modules/strtoimax (Depends-on): Likewise.
8945         * modules/utimecmp (Depends-on): Likewise.
8946
8947 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
8948
8949         * lib/exclude.c: Include verify.h.
8950         (verify): Remove.  All callers changed to use verify.h's version.
8951         * lib/strtoimax.c: Likewise.
8952         * lib/utimecmp.c: Likewis.e
8953
8954         Sync from coreutils.
8955         * lib/.cppi-disable: Add getaddrinfo.h, getdelim.h, getline.h,
8956         getpass.c, mbchar.h, mbuiter.h, strcase.h, strnlen.h, strnlen1.h.
8957         * lib/.cvsignore: Add fts.h, search.h, t-fpending.
8958         * lib/settime.c (settime): Fix { typo in previous patch.  Also, don't
8959         bother returning ENOSYS if settimeofday or stime fails; just let
8960         them return whatever errno they want to return.
8961         * lib/utimens.c: Include unistd.h, for dup2.
8962         (futimens): Fix typo: HAVE_FUTIMESAT was misspelled in an #if.
8963         (futimens) [! HAVE_FUTIMESAT]: If !file, set errno before returning -1.
8964
8965 2005-10-02  Jim Meyering  <jim@meyering.net>
8966
8967         Sync from coreutils.
8968         * m4/utimes.m4 (gl_FUNC_UTIMES): Detect the version of utimes
8969         from glibc-2.2.5 that fails for read-only files.
8970
8971 2005-10-02  Jim Meyering  <jim@meyering.net>
8972
8973         Sync from coreutils.
8974         * lib/fts-cycle.c [HAVE_CONFIG_H]: Include <config.h>.
8975         * lib/openat-die.c: Use `#ifdef HAVE_CONFIG_H', not
8976         `#if HAVE_CONFIG_H'.
8977         * lib/openat.c (fdopendir): Do not define if HAVE_FDOPENDIR.
8978         Remove AT_FDCWD test.
8979         Do not consume the fd unless successful.
8980         * lib/openat.h (fdopendir): Do not define if HAVE_FDOPENDIR.
8981         * lib/settime.c (settime): Move the HAVE_STIME block `up' into an #elif
8982         block, so that we don't even try to compile it if settimeofday is
8983         available.  This works around a compilation failure on OSF1 V5.1,
8984         due to stime requiring a `long int*' while tv_sec is `int'.
8985
8986 2005-10-02  Alfred M. Szmidt  <ams@gnu.org>
8987
8988         Sync from coreutils.
8989         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Compare $gl_have_path...
8990         against `yes', rather than just testing for nonempty.
8991
8992 2005-10-01  Simon Josefsson  <jas@extundo.com>
8993
8994         * m4/getaddrinfo.m4: Include sys/types.h for sys/socket.h, on FreeBSD
8995         and Darwin.
8996
8997         * m4/getaddrinfo.m4: Use AC_GNU_SOURCE, GNU only declare getaddrinfo
8998         as an (POSIX) extension.  Check for sys/types.h, sys/socket.h, and
8999         netdb.h too, needed by getaddrinfo.h.  Check if getaddrinfo,
9000         freeaddrinfo and gai_strerror are declared by the POSIX headers.
9001         Check if struct addrinfo is declared.
9002
9003 2005-10-01  Simon Josefsson  <jas@extundo.com>
9004
9005         * lib/getaddrinfo.h: Protect #include's of sys/socket.h and netdb.h.
9006         Only define struct addrinfo if !HAVE_STRUCT_ADDRINFO.  Protect
9007         AI_* and EAI_* definitions.  Protect function declarations.
9008
9009 2005-10-01  Jim Meyering  <jim@meyering.net>
9010
9011         Sync from coreutils.
9012
9013         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Look for getservbyname in these
9014         libraries [inet nsl socket xnet].  Nelson Beebe reported that with
9015         native cc on Solaris 7, getaddrinfo.c requires -lsocket.
9016         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Check for gethostbyname
9017         in the inet and nsl libraries.  Required on Solaris 5.7.
9018
9019 2005-10-01  Jim Meyering  <jim@meyering.net>
9020
9021         Sync from coreutils.
9022         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Check for gethostbyname
9023         in the inet and nsl libraries.  Required on Solaris 5.7.
9024
9025 2005-10-01  Eric Blake  <ebb9@byu.net>  (tiny change)
9026
9027         * lib/getdelim.c (getdelim): Remove unused variables.
9028
9029 2005-09-29  Paul Eggert  <eggert@cs.ucla.edu>
9030
9031         * lib/xtime.h (XTIME_PRECISION): Now of type int, not long long int,
9032         so that the code works even with ancient cpp.  Portability problem
9033         with GCC 2.7.2.1 reported by Thomas M.Ott.
9034
9035 2005-09-27  Paul Eggert  <eggert@cs.ucla.edu>
9036
9037         * modules/regex (Depends-on): Add strcase.
9038
9039         * modules/gethostname (Licence): Change from GPL to LGPL, since
9040         gethostname.c is a trivial implementation of a standard library
9041         function.
9042         * modules/poll (License): Change from GPL to LGPL, since it's
9043         derived from LGPL code.
9044
9045 2005-09-27  Jim Meyering  <jim@meyering.net>
9046
9047         * lib/getcwd.c: Change #ifdef<TAB>HAVE_CONFIG_H to #ifdef
9048         HAVE_CONFIG_H.
9049
9050         * lib/intprops.h (signed_type_or_expr__): Define.
9051         (INT_STRLEN_BOUND) [__GNUC__]: Use a slightly tighter bound
9052         for unsigned types.
9053
9054 2005-09-26  Paul Eggert  <eggert@cs.ucla.edu>
9055
9056         * lib/verify.h (verify_expr): Remove, replacing with:
9057         (verify_true): New macro that returns true instead of void.
9058         (verify_type__): Remove.
9059         (verify): Use verify_true rather than verify_type__.
9060
9061 2005-09-26  Bruno Haible  <bruno@clisp.org>
9062
9063         * modules/mbchar (Include): Mention that HAVE_WCHAR_H && HAVE_WCTYPE_H
9064         is necessary.
9065         (lib_SOURCES): Remove mbchar.c.
9066         * modules/mbfile (Include): Mention that HAVE_MBRTOWC is necessary.
9067         (Files): Add m4/mbrtowc.m4.
9068         * modules/mbiter: Likewise.
9069         * modules/mbuiter: Likewise.
9070
9071 2005-09-26  Bruno Haible  <bruno@clisp.org>
9072
9073         * m4/mbchar.m4 (gl_MBCHAR): Check for wchar.h and wctype.h. Don't
9074         compile mbchar.c if they are not both present.
9075         * m4/mbfile.m4 (gl_MBFILE): Require gl_FUNC_MBRTOWC.
9076         * m4/mbiter.m4 (gl_MBITER): Likewise.
9077         * m4/strstr.m4 (gl_PREREQ_STRSTR): Use AC_REQUIRE.
9078         * m4/strcasestr.m4 (gl_PREREQ_STRCASESTR): Likewise.
9079         * m4/strcase.m4 (gl_PREREQ_STRCASECMP): Likewise.
9080
9081 2005-09-25  Jim Meyering  <jim@meyering.net>
9082
9083         * modules/inet_ntop (Depends-on): Add socklen, since inet_ntop.c
9084         also uses socklen_t.
9085
9086 2005-09-24  Paul Eggert  <eggert@cs.ucla.edu>
9087
9088         * lib/utimens.c (ENOSYS): Define if not already defined.
9089         (futimens): Support having a null PATH if the file descriptor
9090         is nonnegative.
9091
9092         * lib/regex_internal.h (__GNUC_PREREQ, always_inline, inline, pure):
9093         Remove.
9094         (__attribute): Define to empty unless GCC 3.1 or later.
9095         This works around a core dump on OpenBSD 3.4, which has GCC
9096         2.95.3, which dumps core when given __attribute__(()).  It also
9097         simplifies other tests, since we really don't want to bother with
9098         worrying about which ancient version of GCC supported what.
9099         Original problem reported by Yoann Vandoorselaere, with part of
9100         the fix suggested by Derek Price.
9101
9102 2005-09-24  Jim Meyering  <jim@meyering.net>
9103
9104         * lib/verify.h (verify_type__): Use `unsigned int' as the bitfield type
9105         so we can once again use a positive bitfield width of 1 -- now we
9106         don't have to explain why we were using a bitfield width of 2.
9107
9108 2005-09-23  Paul Eggert  <eggert@cs.ucla.edu>
9109
9110         * m4/regex.m4 (gl_REGEX): If replacing, define regcomp to rpl_regcomp,
9111         and similarly for the other external symbols.  Problem reported
9112         by James Gallager.
9113
9114         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Catch Sun Studio 10u1 on Linux
9115         bug reported by Jim Meyering.
9116
9117         * m4/utimens.m4 (gl_UTIMENS): Check for futimesat.
9118         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Undo previous change;
9119         not needed, since socklen is a prerequisite module.
9120
9121 2005-09-23  Paul Eggert  <eggert@cs.ucla.edu>
9122
9123         * lib/getaddrinfo.c [HAVE_NETINET_IN_H]: Include <netinet/in.h>.
9124         Problem reported by Eric Blake.
9125         (getaddrinfo): Initialize se so that it's not garbage.
9126         Redo internal storage allocation so that it doesn't make unportable
9127         assumptions about alignment.
9128         Fix a memory leak.
9129
9130         * lib/utimens.c (futimens): Use futimesat if available.
9131         Prefer it to futimes since it doesn't have the futimes bug.
9132
9133         * lib/verify.h (GL_CONCAT0, GL_CONCAT): Remove.
9134         (verify): Don't use the __LINE__ trick, as it doesn't work in general.
9135         Instead, declare a function that returns a pointer to an array,
9136         and use verify_type__ to declare the size of the array.
9137         Problem and germ of a solution reported by Bruno Haible.
9138         (verify_type__): Use 2, not 1, for bitfield size, to avoid
9139         a warning with Irix 6.5 cc.  Problem reported by Bruno Haible.
9140
9141 2005-09-23  Jim Meyering  <jim@meyering.net>
9142
9143         Sync from coreutils.
9144         Correct build failure (socklen_t not defined) on at least
9145         mips-sgi-irix6.5 and alphaev67-dec-osf5.1.
9146         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Require gl_SOCKLEN_T.
9147
9148 2005-09-23  Jim Meyering  <jim@meyering.net>
9149
9150         * modules/getaddrinfo (Depends-on): Add socklen.
9151
9152 2005-09-23  Bruno Haible  <bruno@clisp.org>
9153
9154         * tests/test-verify.c: New file.
9155
9156 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
9157
9158         Sync from coreutils.
9159
9160         * modules/argmatch (Depends-on): Add verify.
9161         * modules/getloadavg (Depends-on): Depend on fcntl-safer, not
9162         unistd-safer.
9163         * modules/save-cwd (Depends-on): Likewise.
9164
9165         * modules/openat (Files): Add lib/openat-die.c.
9166         (Depends-on): Remove error, exitfail.
9167         Add dirname.
9168
9169         * modules/verify: New file.
9170         * MODULES.html.sh (Diagnostics <assert.h>): New section,
9171         with "verify" module.
9172
9173 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
9174
9175         Sync from coreutils.
9176
9177         * m4/backupfile.m4, calloc.m4, chown.m4, cloexec.m4, dup2.m4:
9178         * m4/fileblocks.m4, free.m4, ftruncate.m4, getcwd.m4, getpagesize.m4:
9179         * m4/getugroups.m4, group-member.m4, idcache.m4, link-follow.m4:
9180         * m4/mkstemp.m4, mktime.m4, mountlist.m4, nanosleep.m4, pathmax.m4:
9181         * m4/physmem.m4, posixver.m4, putenv.m4, safe-read.m4, same.m4:
9182         * m4/save-cwd.m4, stdio-safer.m4, unistd-safer.m4, unlinkdir.m4:
9183         * m4/userspec.m4, xgetcwd.m4, xreadlink.m4:
9184         Don't bother checking for string.h, stdlib.h, unistd.h.
9185         * m4/fts.m4 (gl_FUNC_FTS_CORE): Don't require
9186         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK; that's now the lstat
9187         module's job.
9188         * m4/jm-macros.m4 (gl_MACROS): Likewise.
9189         * m4/prereq.m4 (gl_PREREQ): Add gl_FUNC_LSTAT.
9190
9191         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): New macro.
9192         (gl_GETDATE): Use it.
9193
9194         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Don't bother checking for unistd.h.
9195
9196 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
9197
9198         Sync from coreutils.
9199
9200         * lib/.cppi-disable: Add regcomp.c, regex_internal.c, regex_internal.h,
9201         stat-time.h.
9202         * lib/argmatch.h: Include verify.h
9203         (ARGMATCH_VERIFY): Use verify rather than rolling our own.
9204         (ARGMATCH_ASSERT): Remove; unused.
9205         * lib/canonicalize.c: Assume STDC_HEADERS.
9206         * lib/exclude.c: Include "strcase.h".
9207         * lib/regex_internal.h [!defined _LIBC]: Likewise.
9208         * lib/getusershell.c: Include stdio--.h rather than stdio.h
9209         and stdio-safer.h.
9210         (getusershell): Call fopen, not fopen_safer.
9211         * lib/save-cwd.c: Include fcntl--.h rather than fcntl.h.
9212         Do not include unistd-safer.h.
9213         (save_cwd): Don't call fd_safer; no longer needed
9214         now that we include fcntl--.h.
9215
9216         * lib/getdate.y (relative_time): New type.
9217         (RELATIVE_TIME_0): New constant.
9218         (parser_control): Use relative_time instead of doing it ourselves.
9219         (%union): Add new relative_time rel member.
9220         (tYEAR_UNIT, tMONTH_UNIT, tHOUR_UNIT, tMINUTE_UNIT, tSEC_UNIT):
9221         Now typeless.
9222         (relunit, relunit_snumber): Now of type rel.
9223         (zone, rel, relunit, get_date): Adjust to above changes.
9224
9225         * lib/getloadavg.c: Include fcntl--.h rather than fcntl.h.
9226         Do not include unistd-safer.h.
9227         (getloadavg): Don't call fd_safer; no longer needed
9228         now that we include fcntl--.h.
9229
9230         * lib/mkdir-p.c (ENOSYS): Define to EEXIST if not defined.
9231         (make_dir_parents): Treat ENOSYS like EEXIST.
9232
9233         Improve quality of diagnostics on restore_cwd failure.
9234         * lib/mkdir-p.h (make_dir): Remove.  All uses replaced by mkdir.
9235         (make_dir_parents): Last arg is now int * (for errno), not bool *.
9236         * lib/mkdir-p.c (make_dir, make_dir_parents): Likewise.
9237         Rewrite "mkdir -p" algorithm to avoid the need for "stat"
9238         each time through the loop.  Do not diagnose restore_cwd failure;
9239         that is the caller's job (and perhaps the caller does not care).
9240
9241         * lib/mkdir-p.c (CLEANUP_CWD, CLEANUP): Remove.
9242         (make_dir_parents): Revamp to avoid need for CLEANUP_CWD, CLEANUP.
9243         If the file already exists but is not a directory, don't bother
9244         to try to make its parents.
9245         Close potential file descriptor leak if we can't chdir("/") (!).
9246         Don't always return true if chdir($PWD) fails; return true only
9247         if the requested action was done successfully (except for the
9248         chdir($PWD)).
9249         Don't log final directory unless we actually made it.
9250         Refactor to avoid duplicate code to fix up permissions.
9251         Don't attempt to fix up parent permissions if chdir($PWD) fails.
9252
9253         * lib/strftime.c (my_strftime): Rewrite the previous change slightly,
9254         to make it a bit faster and (I hope) clearer.
9255         * lib/strftime.c (my_strftime): Add support for %:z, %::z, %:::z.
9256         Fix bug in formats like %2N.
9257
9258         * lib/verify.h: New file.
9259
9260 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
9261
9262         Sync from coreutils.
9263         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Check for netinet/in.h.
9264
9265 2005-09-22  Jim Meyering  <jim@meyering.net>
9266
9267         Sync from coreutils.
9268
9269         * m4/lstat.m4 (gl_FUNC_LSTAT):
9270         Use AC_LIBSOURCES to require lstat.c and lstat.h.
9271         Remove obsolete comment.
9272         * m4/xreadlink.m4: Use AC_LIBSOURCES and AC_LIBOBJ.
9273         * m4/xstrtod.m4: Likewise.
9274
9275         * m4/openat.m4 (gl_FUNC_OPENAT): Add openat-die.c.
9276
9277 2005-09-22  Jim Meyering  <jim@meyering.net>
9278
9279         Sync from coreutils.
9280
9281         * lib/backupfile.c: Use ARGMATCH_VERIFY, just in case.
9282
9283         * lib/posixtm.c (posixtime) [lint]: Initialize *all* of tm0, not just
9284         the .tm_year member, since otherwise gcc-4.0 would now warn about
9285         tm_zone, tm_gmtoff, tm_isdst, tm_yday, tm_wday.
9286
9287         * lib/quotearg.c (quotearg_n_options): Change code to be suboptimal, in
9288         order to avoid an unsuppressible warning from gcc on 64-bit systems.
9289
9290         * lib/getdate.y (get_date): Undo part of the 2005-04-04 change, so that
9291         the command "date -d'2005-03-27 +1 day'" succeeds once again, even
9292         when run in a time zone for which daylight savings time is in effect
9293         for the starting date.
9294
9295         * lib/mkdir-p.c (make_dir_parents): Don't let a failed chdir($PWD)
9296         stop us from restricting permissions of just-created absolute-named
9297         directories.
9298         * lib/mkdir-p.c (CLEANUP_CWD): Return *true*, not false when failing
9299         to restore initial working directory.
9300         * lib/mkdir-p.c (make_dir_parents): New parameter:
9301         different_working_dir, to tell caller if/when we change the working
9302         directory and are unable to return to the initial one.
9303         * lib/mkdir-p.h (make_dir_parents): Update prototype.
9304         * lib/mkdir-p.c (CLEANUP_CWD): Change one more `return 1' to
9305         `return false'.  This fixes a bug introduced on 2004-07-30.
9306
9307         * lib/openat.c (fdopendir): Be sure to close the supplied
9308         file descriptor before returning.  This makes our replacement
9309         implementation a little closer to Solaris's, where fdopendir
9310         ties the file descriptor to the returned DIR* pointer.
9311         * lib/openat.c (unlinkat): New function.
9312         * lib/openat.h (unlinkat): Add prototype.
9313         * lib/openat-die.c (openat_save_fail): Rename from openat_save_die.
9314         (openat_restore_fail): Rename from openat_restore_die.
9315         * lib/openat.c, openat.h: Reflect s/_die/_fail/ renaming.
9316
9317         Provide an alternative to exiting immediately upon save_cwd or
9318         restore_cwd failure.  Now, an application can arrange e.g.,
9319         to perform a longjump in that case.
9320         * lib/openat.c: Include dirname.h.
9321         Use IS_ABSOLUTE_FILE_NAME rather than testing for leading slash.
9322         (rpl_openat, fdopendir, fstatat): Call openat_save_die
9323         and openat_restore_die rather than calling error directly.
9324         Don't include "error.h" or "exitfail.h"; they're no longer needed.
9325
9326         * lib/openat-die.c (openat_save_die, openat_restore_die): New file.
9327         * lib/openat.h (openat_save_die, openat_restore_die): Declare and
9328         define.
9329
9330         * lib/strftime.c [FPRINTFTIME] (fprintftime): Provide a new interface:
9331         size_t fprintftime (FILE *fp, char const *fmt, struct tm const *tm,
9332                             int utc, int nanoseconds);
9333         Background:
9334         date should not have to allocate a megabyte of virtual memory to
9335         handle a format argument like +%1048575T.  When implemented with
9336         strftime, it must allocate such a buffer, use strftime to fill it
9337         in, print it, then free it.
9338         With fprintftime, it simply prints everything and exits.
9339         With no need for memory allocation, that's one fewer way to fail.
9340         * lib/strftime.c (my_strftime): Parse the colons of %:::z *after* the
9341         optional field width, not before, so we accept %9:z, not %:9z.
9342         (my_strftime): Be sure to use L_('x') for literals.
9343
9344         * lib/backupfile.c, lib/canon-host.c, lib/canonicalize.c, lib/chown.c:
9345         * lib/cloexec.c, lib/dup-safer.c, lib/dup2.c, lib/euidaccess.c:
9346         * lib/fd-safer.c, lib/fileblocks.c, lib/fopen-safer.c, lib/fsusage.c:
9347         * lib/ftruncate.c, lib/getcwd.c, lib/getcwd.h, lib/getloadavg.c:
9348         * lib/getopt_.h, lib/getpagesize.h, lib/getugroups.c:
9349         * lib/group-member.c, lib/human.h, lib/idcache.c, lib/mkdir-p.c:
9350         * lib/mountlist.c, lib/nanosleep.c, lib/pathmax.h, lib/physmem.c:
9351         * lib/posixver.c, lib/putenv.c, lib/raise.c, lib/safe-read.c:
9352         * lib/same.c, lib/save-cwd.c, lib/setenv.c, lib/settime.c:
9353         * lib/tempname.c, lib/unlinkdir.c, lib/unsetenv.c, lib/userspec.c:
9354         * lib/xgethostname.c, lib/xreadlink.c:
9355         Assume HAVE_UNISTD_H, i.e., include <unistd.h> unconditionally.
9356
9357         * lib/chown.c, lib/cloexec.c, lib/dup-safer.c, lib/dup2.c:
9358         * lib/fsusage.c, lib/getcwd.c, lib/getloadavg.c, lib/mountlist.c:
9359         * lib/openat.h, lib/save-cwd.c, lib/tempname.c:
9360         Assume HAVE_FCNTL_H (i.e., include <fcntl.h> unconditionally,
9361         and don't include <sys/file.h>).
9362
9363 2005-09-22  Eric Blake  <ebb9@byu.net>  (tiny change)
9364
9365         Sync from coreutils.
9366
9367         * lib/getloadavg.c (getloadavg) [__CYGWIN__]: Port to cygwin.
9368         [__linux__]: Allocate a big enough buffer for /proc/loadavg.
9369         [!LDAV_DONE]: Avoid unused variable warning.
9370
9371 2005-09-21  Bruno Haible  <bruno@clisp.org>
9372
9373         * lib/unicodeio.h (unicode_to_mb): New declaration.
9374
9375 2005-09-20  Derek Price  <derek@ximbiot.com>
9376
9377         * lib/getaddrinfo.c: Don't include <netdb.h> included from
9378         getaddrinfo.h.
9379
9380 2005-09-20  Bruno Haible  <bruno@clisp.org>
9381
9382         * gnulib-tool: Remove trailing slashes from the values specified for
9383         --source-base, --m4-base, --tests-base, --aux-dir.
9384         Suggested by Simon Josefsson <jas@extundo.com>.
9385
9386 2005-09-20  Bruno Haible  <bruno@clisp.org>
9387
9388         * gnulib-tool (func_all_modules, func_modules_transitive_closure,
9389         func_modules_to_filelist, func_import, func_create_testdir): Make all
9390         sorting results locale-independent, so that gnulib-cache.m4 doesn't
9391         change when gnulib-tool is invoked in a different locale.
9392
9393 2005-09-19  Simon Josefsson  <jas@extundo.com>
9394
9395         * m4/socklen.m4: Fix typo.
9396
9397 2005-09-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9398
9399         Use a consistent style for including <config.h>.
9400         * lib/__fpending.c, lib/acl.c, lib/argmatch.c, lib/argp-help.c,
9401         lib/argp-parse.c, lib/argp-pvh.c, lib/backupfile.c, lib/basename.c,
9402         lib/c-stack.c, lib/calloc.c, lib/check-version.c, lib/cloexec.c,
9403         lib/closeout.c, lib/copy-file.c, lib/creat-safer.c, lib/cycle-check.c,
9404         lib/dirfd.c, lib/dirname.c, lib/dup-safer.c, lib/dup2.c,
9405         lib/euidaccess.c, lib/exclude.c, lib/exitfail.c, lib/fatal-signal.c,
9406         lib/fd-safer.c, lib/file-type.c, lib/fileblocks.c, lib/filemode.c,
9407         lib/filenamecat.c, lib/findprog.c, lib/fnmatch.c, lib/fopen-safer.c,
9408         lib/free.c, lib/fsusage.c, lib/ftruncate.c, lib/full-write.c,
9409         lib/fwriteerror.c, lib/getaddrinfo.c, lib/getcwd.c, lib/getdelim.c,
9410         lib/getline.c, lib/getlogin_r.c, lib/getndelim2.c, lib/getnline.c,
9411         lib/getopt1.c, lib/getpass.c, lib/group-member.c, lib/hard-locale.c,
9412         lib/hash-pjw.c, lib/hash.c, lib/human.c, lib/idcache.c,
9413         lib/inet_ntop.c, lib/isdir.c, lib/long-options.c, lib/malloc.c,
9414         lib/memcasecmp.c, lib/memcmp.c, lib/memcoll.c, lib/memcpy.c,
9415         lib/memmove.c, lib/mkdir-p.c, lib/modechange.c, lib/mountlist.c,
9416         lib/open-safer.c, lib/physmem.c, lib/pipe-safer.c, lib/pipe.c,
9417         lib/poll.c, lib/posixver.c, lib/progname.c, lib/progreloc.c,
9418         lib/putenv.c, lib/quote.c, lib/quotearg.c, lib/readline.c,
9419         lib/readlink.c, lib/realloc.c, lib/regex.c, lib/rename.c, lib/rmdir.c,
9420         lib/rpmatch.c, lib/safe-read.c, lib/same.c, lib/save-cwd.c,
9421         lib/savedir.c, lib/sig2str.c, lib/strcspn.c, lib/strerror.c,
9422         lib/stripslash.c, lib/strncasecmp.c, lib/strndup.c, lib/strnlen.c,
9423         lib/strnlen1.c, lib/strsep.c, lib/strstr.c, lib/strtod.c,
9424         lib/strtoimax.c, lib/strtol.c, lib/strverscmp.c, lib/tempname.c,
9425         lib/time_r.c, lib/userspec.c, lib/utimecmp.c, lib/version-etc-fsf.c,
9426         lib/version-etc.c, lib/wait-process.c, lib/xalloc-die.c, lib/xgetcwd.c,
9427         lib/xmalloc.c, lib/xmemcoll.c, lib/xnanosleep.c, lib/xreadlink.c,
9428         lib/xsetenv.c, lib/xstrndup.c, lib/xstrtoimax.c, lib/xstrtol.c,
9429         lib/xstrtoumax.c, lib/yesno.c:
9430         Standardize inclusion of config.h.
9431         * lib/__fpending.h, lib/dirfd.h, lib/getdate.h, lib/human.h,
9432         lib/inttostr.h:  Removed inclusion of config.h from header files.
9433         * lib/inttostr.c:  Adjusted in-tree users.
9434         * lib/timespec.h: Remove superfluous warning to include config.h.
9435         * lib/atexit.c, lib/chdir-long.c, lib/chown.c, lib/fchown-stub.c,
9436         lib/getgroups.c, lib/gettimeofday.c, lib/lchown.c, lib/lstat.c,
9437         lib/mkdir.c, lib/mkstemp.c, lib/nanosleep.c, lib/openat.c, lib/raise.c,
9438         lib/readtokens0.c, lib/readutmp.c, lib/unlinkdir.c: Guard inclusion of
9439         config.h with HAVE_CONFIG_H.
9440
9441 2005-09-19  Jim Meyering  <jim@meyering.net>
9442
9443         * modules/pathmax (License): Change to LGPL.
9444
9445 2005-09-19  Derek Price  <derek@ximbiot.com>
9446
9447         * config/srclist.txt: glibc's glob.h is now in lib/glob-libc.h.
9448
9449 2005-09-19  Bruno Haible  <bruno@clisp.org>
9450
9451         * gnulib-tool (import): Provide default for --tests-base.
9452
9453 2005-09-19  Bruno Haible  <bruno@clisp.org>
9454
9455         * doc/quote.texi: New file, extracted from gnulib.texi.
9456         * doc/ctime.texi: New file, extracted from gnulib.texi.
9457         * doc/inet_ntoa.texi: New file, extracted from gnulib.texi.
9458         * doc/gnulib-tool.texi: New file, extracted from gnulib.texi.
9459         * doc/gnulib.texi: Include them.
9460
9461 2005-09-18  Bruno Haible  <bruno@clisp.org>
9462
9463         Portability fix.
9464         * gnulib-tool (func_readlink): New function.
9465         (func_ln_if_changed): Use it.
9466
9467 2005-09-18  Bruno Haible  <bruno@clisp.org>
9468
9469         * gnulib-tool: Support --with-tests also with --import.
9470         (func_emit_tests_Makefile_am): Use variables $m4base and $testsbase.
9471         (func_import): Use variables $testsbase and $inctests. Emit a
9472         gl_TESTS_BASE form into gnulib-cache.m4. Create $testsbase/Makefile.am.
9473         Remind the user to add AC_CONFIG_FILES($testsdir/Makefile) and
9474         SUBDIRS += $testsdir.
9475         (func_create_testdir): Update.
9476
9477 2005-09-18  Bruno Haible  <bruno@clisp.org>
9478
9479         * gnulib-tool: Revise --dry-run implementation. Use variable $doit
9480         instead of $dry_run.
9481         (func_cp_if_changed, func_mv_if_changed): Remove functions.
9482         (func_ln_if_changed): Don't handle dry-run here.
9483         (func_import): In dry-run mode, detect more precisely which actions
9484         would be performed, and don't use "...ing" verbs.
9485
9486 2005-09-18  Bruno Haible  <bruno@clisp.org>
9487
9488         * gnulib-tool (func_tmpdir): New function, taken from GNU gettextize.
9489         (func_import): Use join on two temporary files instead of three nested
9490         loops, in order to determine which files are new or old.
9491
9492 2005-09-18  Bruno Haible  <bruno@clisp.org>
9493
9494         * gnulib-tool (func_import): Comment out code that spits out the
9495         new files with --dry-run.
9496
9497 2005-09-18  Bruno Haible  <bruno@clisp.org>
9498
9499         * doc/gnulib.texi (Invoking gnulib-tool): 50% rewritten.
9500
9501 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
9502
9503         * lib/stat-time.h: New file.
9504         * lib/timespec.h (ST_TIME_CMP_NS, ST_TIME_CMP, ATIME_CMP, CTIME_CMP):
9505         (MTIME_CMP, TIMESPEC_NS): Remove.  Now done by stat-time.h,
9506         in a different way.
9507         (timespec_cmp): New function.
9508         * lib/utimecmp.c: Include stat-time.h.
9509         (SYSCALL_RESOLUTION): Depend on whether various struct stat
9510         members exist, not on the obsolescent ST_MTIM_NSEC.
9511         (utimecmp): Use the new stat-time functions rater than TIMESPEC_NS.
9512
9513 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
9514
9515         * config/srclist.txt: Remove glibc bug 1033 and uncomment mktime.c.
9516
9517 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
9518
9519         * MODULES.html.sh (File system functions): Add stat-time.
9520         * modules/stat-time: New file.
9521         * modules/timespec (Files): Remove m4/st_mtim.m4; this
9522         is now done in a different way, by the stat-time module.
9523         * modules/utimecmp (Depends-on): Add stat-time.
9524
9525 2005-09-15  Paul Eggert  <eggert@cs.ucla.edu>
9526
9527         * m4/st_mtim.m4: Remove.  Superseded by...
9528         * m4/stat-time.m4: New file.
9529         * m4/timespec.m4 (gl_TIMESPEC): Require AC_C_INLINE.
9530         Do not invoke AC_STRUCT_ST_MTIM_NSEC; no longer needed.
9531
9532 2005-09-15  Derek Price  <derek@ximbiot.com>
9533
9534         * m4/strstr.m4 (gl_FUNC_STRSTR): Don't define strstr here.
9535
9536 2005-09-15  Derek Price  <derek@ximbiot.com>
9537
9538         * lib/regex_internal.h: Blank `pure' for GNUC < 3.
9539         * lib/regex_internal.c: Ditto, using this...
9540         (__GNUC_PREREQ): ...new macro.
9541         * lib/regcomp.c, regexec.c: Blank `always_inline' for GNUC < 3.1
9542         using...
9543         (__GNUC_PREREQ): ...this new macro.
9544
9545         * lib/strstr.h: Include string.h. Define strstr as a macro here.
9546
9547 2005-09-15  Derek Price  <derek@ximbiot.com>
9548             Paul Eggert  <eggert@cs.ucla.edu>
9549
9550         * lib/regcomp.c, regexec.c, regex_internal.c: Back out previous
9551         changes, consolidating in...
9552         * lib/regex_internal.h: ...this file.
9553
9554 2005-09-13  Jim Meyering  <jim@meyering.net>
9555
9556         * lib/canon-host.c: Filter through gnu indent and reword comments
9557         slightly.
9558         * lib/canon-host.h (ch_strerror_r): Tweak cpp indentation and spacing.
9559
9560 2005-09-13  Derek Price  <derek@ximbiot.com>
9561
9562         * lib/canon-host.c (canon_host_r): Set *cherror on memory allocation
9563         failure.
9564         Reported by Jim Meyering  <jim@meyering.net>.
9565
9566 2005-09-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
9567
9568         * lib/base64.c: Typo.
9569         (base64_encode): Put b64str in initialized data section.
9570
9571 2005-09-12  Paul Eggert  <eggert@cs.ucla.edu>
9572
9573         Merge glibc and coreutils changes into gnulib, plus a few
9574         extra fixes.
9575         * lib/md5.c: Use #error rather than a string.
9576         (CYCLIC): New macro, from glibc source.  Use it instead of rol.
9577         * lib/md5.h (__GNUC_PREREQ, __THROW): Define if not defined already.
9578         (__attribute__): Define to empty for non recent-GCC.
9579         (__md5_buffer, __md5_finish_ctx, __md5_init_ctx, __md5_process_block):
9580         (__md5_process_bytes, __md5_read_ctx, __md5_stream):
9581         Renamed from their non-__ counterparts, with new macros replacing
9582         them if not _LIBC.  Add __THROW attribute.
9583         (rol): Remove.
9584         (struct md5_ctx): Align buffer if using GCC.
9585         * lib/sha1.h (struct sha1_ctx): Likewise.
9586         * lib/sha1.c (SWAP): Renamed from the NOTSWAP.  All uses changed.
9587         The old name was backwards.
9588         (NOTSWAP): Remove; not used.
9589         (rol): New macro, moved here from md5.h.
9590         (sha1_process_block): Remove a FIXME that doesn't make sense.
9591
9592 2005-09-12  Derek Price  <derek@ximbiot.com>
9593
9594         Return usable errors from canon-host.
9595         * lib/canon-host.h: New file.
9596         * lib/canon-host.c (canon_host): Wrap...
9597         (canon_host_r): ...this new function, which now relies exclusively on
9598         getaddrinfo.
9599         (ch_strerror): New function.
9600         (last_cherror): New global.
9601         * lib/getaddrinfo.c: Move include of getaddrinfo.h first to test
9602         interface.
9603         (getaddrinfo): Add AI_CANONNAME functionality.  Don't do arithmetic on
9604         void *.
9605         (freeaddrinfo): Free ai->ai_canonname when set.
9606
9607 2005-09-12  Derek Price  <derek@ximbiot.com>
9608
9609         Make canon-host require getaddrinfo.
9610         * m4/canon-host.m4 (gl_CANON_HOST): Remove most dependencies.
9611         AC_LIBSOURCE canon-host.h.  Call...
9612         (gl_PREREQ_CANON_HOST): ...this new function, which requires
9613         gl_GETADDRINFO.
9614         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Compile gai_strerror when needed.
9615
9616 2005-09-12  Derek Price  <derek@ximbiot.com>
9617
9618         * modules/canon-host: Add canon-host.h.  Depend on getaddrinfo.  Make
9619         LGPL.
9620         * modules/getaddrinfo: Add link to opengroup spec.  Depend on strdup.
9621
9622 2005-09-12  Derek Price  <derek@ximbiot.com>
9623
9624         * lib/gai_strerror.c: Include config.h when available.  Include
9625         getaddrinfo.h before other headers to test interface.
9626         Reported by Larry Jones <lawrence.jones@ugs.com>.
9627
9628 2005-09-12  Derek Price  <derek@ximbiot.com>
9629             Paul Eggert  <eggert@cs.ucla.edu>
9630
9631         * modules/glob (Files): Add glob-libc.h.
9632
9633 2005-09-12  Derek Price  <derek@ximbiot.com>
9634             Paul Eggert  <eggert@cs.ucla.edu>
9635
9636         * m4/glob.m4 (gl_GLOB_SUBSTITUTE): AC_LIBSOURCES for glob.c,
9637         glob_.h, glob-libc.h.
9638         (gl_PREREQ_GLOB): Remove _SYS_CDEFS_H hack; no longer needed.
9639
9640 2005-09-12  Derek Price  <derek@ximbiot.com>
9641             Paul Eggert  <eggert@cs.ucla.edu>
9642
9643         * lib/glob-libc.h: Renamed from glob_.h.  The new version is
9644         taken from libc's glob.h, except with '#ifdef __GLOB_GNULIB'
9645         protecting things that should be done only in gnulib contexts.
9646         * lib/glob_.h: New file, containing only the glob things needed for
9647         gnulib.
9648         (GLOB_PREFIX): Remove.  All uses changed to look for __GLOB_GNULIB.
9649         (__GLOB_CONCAT, __GLOB_XCONCAT, __GLOB_ID): Remove; no longer needed.
9650         (glob, globfree, glob_pattern_p): Now defined simply in terms of
9651         rpl_glob, rpl_globfree, rpl_glob_pattern_p.
9652         (__GLOB_GNULIB): New macro, to keep the glob.h changes clearer
9653         and to respect the namespace rules better.
9654
9655 2005-09-08  Simon Josefsson  <jas@extundo.com>
9656
9657         * modules/socklen: New file.
9658
9659 2005-09-08  Simon Josefsson  <jas@extundo.com>
9660
9661         * m4/socklen.m4: New file.
9662
9663 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
9664
9665         * modules/utimens (Files): Add m4/utimbuf.m4, since
9666         m4/utimens.m4 requires gl_CHECK_TYPE_STRUCT_UTIMBUF.
9667         Reported by Sergey Poznyakoff.
9668
9669 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
9670
9671         * lib/glob.c (glob, globfree, __glob_pattern_p): Use old-style function
9672         definitions, since that's the preferred style in glibc.
9673         Fix a minor spacing issue, and update copyright notice to match
9674         glibc's.
9675
9676 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
9677
9678         * config/srclist.txt: Remove glibc bug 1061; it's been fixed.
9679
9680 2005-09-06  Simon Josefsson  <jas@extundo.com>
9681
9682         * lib/getpass.c (getpass): Fix typo, test for HAVE_TCSETATTR and not
9683         TCSETATTR.  Reported by Derek Price <derek@ximbiot.com>.
9684
9685 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
9686
9687         * lib/regex_internal.h (bitset_not): Add parens to avoid gcc -Wall
9688         warning.
9689
9690 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
9691
9692         * config/srclist.txt: Add glibc bug 1302.
9693
9694 2005-09-05  Paul Eggert  <eggert@cs.ucla.edu>
9695
9696         Change bitset word type from unsigned int to unsigned long int,
9697         as this has better performance on typical 64-bit hosts.
9698         Port bitset code to hosts with unusual word sizes.
9699         * lib/regcomp.c (build_equiv_class, build_charclass, build_range_exp):
9700         (build_collating_symbol):
9701         Prefer bitset to re_bitset_ptr_t in prototypes, when the actual
9702         argument is a bitset.  This is merely a style issue, but it makes
9703         it clearer that an entire array is expected.
9704         (re_compile_fastmap_iter, init_dfa, init_word_char, optimize_subexps):
9705         * lib/regcomp.c (lower_subexp, parse_bracket_exp, built_charclass_op):
9706         Port to the case where bitset_word is not the same as unsigned int.
9707         * lib/regex_internal.h (bitset_set, bitset_clear, bitset_contain):
9708         (bitset_not, bitset_merge, bitset_set_all, bitset_mask):
9709         Likewise.
9710         * lib/regexec.c (check_dst_limits_calc_pos_1,
9711         check_subexp_matching_top):
9712         (build_trtable, group_nodes_into_DFAstates):
9713         Likewise.
9714         * lib/regcomp.c (re_compile_fastmap_iter, utf8_sb_map, optimize_utf8):
9715         Don't assume that SBC_MAX is a multiple of BITSET_WORD_BITS.
9716         * lib/regex_internal.h (bitset_set_all, bitset_not): Likewise.
9717         * lib/regexec.c (group_nodes_into_DFAstates): Likewise.
9718         * lib/regcomp.c (utf8_sb_map): Don't assume UINT_MAX == 0xffffffff.
9719         * lib/regcomp.c (optimize_subexps, lower_subexp):
9720         Work even if bitset_word has holes in its bitwise representation.
9721         * lib/regex_internal.h (BITSET_WORD_BITS): Likewise.
9722         * lib/regexec.c (check_dst_limits_calc_pos_1,
9723         check_subexp_matching_top):
9724         Likewise.
9725         * lib/regex_internal.c (re_string_reconstruct):
9726         Don't assume UCHAR_MAX == 255.
9727         * lib/regex_internal.h (bitset_set_all): Likewise.
9728         * lib/regex_internal.h (BITSET_WORD_BITS): Renamed from UINT_BITS.
9729         All uses changed.
9730         (BITSET_WORDS): Renamed from BITSET_UINTS.  All uses changed.
9731         (bitset_word): New type, replacing 'unsigned int' for bitset uses.
9732         All uses changed.
9733         (BITSET_WORD_MAX): New macro.
9734         (bitset_set, bitset_clear, bitset_contain, bitset_empty):
9735         (bitset_set_all, bitset_copy):  Now inline functions, not macros.
9736         (bitset_empty, bitset_copy):
9737         Prefer sizeof (bitset) to multiplying it out ourselves.
9738         (bitset_not_merge): Remove; unused.
9739         (bitset_contain): Return bool, not unsigned int with one bit on.
9740         All callers changed.
9741         * lib/regexec.c (build_trtable): Don't assume bitset has no stricter
9742         alignment than re_node_set; do this by defining a new internal
9743         type struct dests_alloc and using it to allocate memory.
9744
9745 2005-09-05  Bruno Haible  <bruno@clisp.org>
9746
9747         * gnulib-tool (func_import): Fix comparison in handling of symbolic
9748         links.
9749
9750 2005-09-04  Martin Lambers  <marlam@marlam.de>  (tiny change)
9751
9752         * modules/size_max (Makefile.am): Add size_max.h
9753
9754 2005-09-04  Derek Price  <derek@ximbiot.com>
9755
9756         * gnulib-tool (func_import): Fix reversed $symbolic logic.
9757
9758 2005-09-03  Simon Josefsson  <jas@extundo.com>
9759
9760         * gnulib-tool: Fix typo.
9761
9762 2005-09-03  Simon Josefsson  <jas@extundo.com>
9763
9764         * config/srclist.txt: Add glibc bug 1293.
9765
9766 2005-09-03  Derek Price  <derek@ximbiot.com>
9767
9768         * m4/getlogin_r (gl_GETLOGIN_R): Fix cut & paste error.
9769         From Larry Jones <lawrence.jones@ugs.com>.
9770
9771 2005-09-02  Simon Josefsson  <jas@extundo.com>
9772
9773         * modules/socklen: New file.
9774
9775 2005-09-02  Simon Josefsson  <jas@extundo.com>
9776
9777         * modules/havelib: New module.
9778
9779         * modules/gettext, modules/iconv, modules/lock, modules/readline:
9780         Use havelib.
9781
9782 2005-09-02  Paul Eggert  <eggert@cs.ucla.edu>
9783
9784         Check for arithmetic overflow when calculating sizes, to prevent
9785         some buffer-overflow issues.  These patches are conservative, in the
9786         sense that when I couldn't determine whether an overflow was possible,
9787         I inserted a run-time check.
9788         * lib/regex_internal.h (re_xmalloc, re_xrealloc, re_x2realloc): New
9789         macros.
9790         (SIZE_MAX) [!defined SIZE_MAX]: New macro.
9791         (re_alloc_oversized, re_x2alloc_oversized, re_xnmalloc):
9792         (re_xnrealloc, re_x2nrealloc): New inline functions.
9793         * lib/regcomp.c (init_dfa, analyze, build_range_exp,
9794         parse_bracket_exp):
9795         (build_equiv_class, build_charclass): Check for arithmetic overflow
9796         in size expression calculations.
9797         * lib/regex_internal.c (re_string_realloc_buffers):
9798         (build_wcs_upper_buffer, re_node_set_add_intersect):
9799         (re_node_set_init_union, re_node_set_insert, re_node_set_insert_last):
9800         (re_dfa_add_node, register_state): Likewise.
9801         * lib/regexec.c (re_search_stub, re_copy_regs, re_search_internal):
9802         (prune_impossible_nodes, push_fail_stack, set_regs, check_arrival):
9803         (build_trtable, extend_buffers, match_ctx_init, match_ctx_add_entry):
9804         (match_ctx_add_subtop, match_ctx_add_sublast): Likewise.
9805
9806 2005-09-02  Paul Eggert  <eggert@cs.ucla.edu>
9807
9808         * modules/inttostr (Files): Add m4/inttypes_h.m4, m4/stdint_h.m4,
9809         m4/ulonglong.m4.  Problem reported by Martin Lambers.
9810
9811 2005-09-02  Bruno Haible  <bruno@clisp.org>
9812
9813         Support for lib vs. lib64 distinction on biarch platforms.
9814         * m4/lib-prefix.m4 (AC_LIB_PREPARE_MULTILIB): New macro.
9815         (AC_LIB_PREFIX): Require it. Use $acl_libdirstem instead of 'lib'.
9816         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Likewise.
9817
9818 2005-09-02  Bruno Haible  <bruno@clisp.org>
9819
9820         * gnulib-tool (import): In the other first-use case, provide defaults
9821         as well.
9822
9823 2005-09-02  Bruno Haible  <bruno@clisp.org>
9824
9825         * config/srclist.txt: lib-link.m4 and lib-prefix.m4 currently have
9826         patches not yet found in the latest gettext release.
9827
9828 2005-09-01  Paul Eggert  <eggert@cs.ucla.edu>
9829
9830         * lib/glob.c (GET_LOGIN_NAME_MAX): Renamed from LOGIN_NAME_MAX,
9831         to avoid a collision with bits/local_lim.h in glibc.
9832         All uses changed.  Problem reported by Dmitry V. Levin in
9833         <http://sources.redhat.com/bugzilla/show_bug.cgi?id=1060>.
9834
9835         * lib/regex_internal.c (build_wcs_upper_buffer): Fix portability
9836         bugs in int versus size_t comparisons.
9837         (re_string_context_at): Fix bug where the code assumed that
9838         Idx is signed.
9839
9840         Use bool where appropriate.
9841         * lib/regcomp.c (re_set_fastmap): ICASE arg is bool, not int.
9842         All callers changed.
9843         (calc_eclosure_iter): Likewise, for ROOT arg.
9844         (parse_bracket_element): Likewise, for ACCEPT_HYPHEN arg.
9845         (build_charclass_op): Likewise, for NON_MATCH arg.
9846         * lib/regex_internal.c (re_string_allocate, re_string_construct):
9847         (re_string_construct_common): Likewise, for ICASE arg.
9848         * lib/regexec.c (re_search_2_stub, re_search_stub):
9849         Likewise, for RET_LEN arg.
9850         (check_matching): Likewise, for FL_LONGEST_MATCH arg.
9851         (set_regs): Likewise, for FL_BACKTRACK arg.
9852         * lib/regcomp.c (re_compile_fastmap_iter, optimize_utf8):
9853         (duplicate_node_closure, calc_inveclosure, calc_eclosure):
9854         (calc_eclosure_iter, parse_bracket_exp):
9855         Use bool for internal variables that are booleans.
9856         * lib/regexec.c (re_search_internal, check_matching,
9857         proceed_next_node):
9858         (set_regs, build_sifted_states, sift_states_bkref):
9859         (check_arrival_add_next_nodes, check_arrival_expand_ecl_sub):
9860         (expand_bkref_cache, build_trtable, group_nodes_into_DFAstates):
9861         (find_collation_sequence_value):
9862         Likewise.
9863         * lib/regex_internal.c (re_node_set_insert, re_node_set_insert_last):
9864         (re_node_set_compare):
9865         Return bool, not int. All callers changed.
9866         * lib/regexec.c (check_halt_node_context, check_dst_limits):
9867         (build_trtable, check_node_accept): Likewise.
9868         * lib/regex_internal.h: Include stdbool.h.
9869
9870         Fix bugs uncovered when converting to bool.
9871         * lib/regcomp.c (calc_eclosure_iter): Check for storage allocation
9872         failure instead of charging ahead blindly.
9873         * lib/regex_internal.c (register_state): Likewise.
9874         * lib/regexec.c (re_search_2_stub): Use simpler method than boolean
9875         for freeing internal storage.
9876         (group_nodes_into_DFA_states): Use unsigned int, not int, for
9877         bitset pieces used as boolean, to avoid undefined behavior
9878         on hosts that do int overflow checking.
9879
9880 2005-09-01  Paul Eggert  <eggert@cs.ucla.edu>
9881
9882         * config/srclist.txt: Add glibc bugs 1285-1287.
9883
9884 2005-09-01  Jim Meyering  <jim@meyering.net>
9885
9886         * m4/lchown.m4: Require gl_FUNC_CHOWN, for the definition of
9887         CHOWN_MODIFIES_SYMLINK, which is used by lchown.c.
9888         Require gl_STAT_MACROS, too.
9889
9890 2005-09-01  Bruno Haible  <bruno@clisp.org>
9891
9892         * gnulib-tool (import): In the first-use case, provide defaults.
9893
9894 2005-09-01  Bruno Haible  <bruno@clisp.org>
9895
9896         * gnulib-tool (func_import): Remove the .tmp files.
9897
9898 2005-09-01  Bruno Haible  <bruno@clisp.org>
9899
9900         * gnulib-tool (func_import): Fix handling of symbolic links.
9901
9902 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
9903
9904         On 64-bit hosts (where size_t is 64 bits and int is 32 bits), the
9905         old glibc regex code mishandles strings longer than 2**31 bytes.
9906         This patch fixes this when the regex code is used in gnulib
9907         (i.e., outside glibc).
9908
9909         This patch should not affect the use of the regex code inside
9910         glibc.  No doubt this problem also needs to be handled for glibc
9911         as well, but the result will be an incompatible change to the
9912         glibc ABI, and the old ABI will have to be supported too.  That
9913         can be the the subject for another patch.
9914
9915         * lib/regex.h (_REGEX_LARGE_OFFSETS): New feature-test macro,
9916         governing whether the rest of this patch is active.  By default,
9917         the macro is disabled and the patch has no effect.
9918         (regoff_t) [defined _REGEX_LARGE_OFFSETS]: Define to off_t, not int.
9919         (__re_idx_t, __re_size_t, __re_long_size_t): New types.
9920         (struct re_pattern_buffer, re_search, re_search_2, re_match):
9921         (re_match_2, re_set_registers): Use the new types.
9922         * lib/regex_internal.h (Idx, re_hashval_t): New types.
9923         (REG_MISSING, REG_ERROR, REG_VALID_INDEX, REG_VALID_NONZERO_INDEX):
9924         New macros.
9925         (re_node_set, re_charset_t, re_token_t, re_string_realloc_buffers):
9926         (re_string_context_at, bin_tree_t, re_dfastate_t):
9927         (struct re_state_table_entry, state_array_t, re_sub_match_last_t):
9928         (re_sub_match_top_t, re_match_context_t, re_sift_context_t):
9929         (struct re_fail_stack_ent_t, struct re_fail_stack_t, struct re_dfa_t):
9930         (re_string_char_size_at, re_string_wchar_at):
9931         (re_string_elem_size_at):
9932         Use the new types and macros to port to 64-bit hosts.
9933         Use unsigned types for internal values, so that the code
9934         mostly works even for arrays larger than SSIZE_MAX.
9935         * lib/regcomp.c (re_compile_internal, init_dfa, duplicate_node):
9936         (search_duplicated_node, calc_eclosure_iter, fetch_number):
9937         (parse_reg_exp, parse_branch, parse_expression, parse_sub_exp):
9938         (build_equiv_class, build_charclass, re_compile_fastmap_iter):
9939         (free_dfa_content, create_initial_state, optimize_utf8, analyze):
9940         (optimize_subexps, calc_first, link_nfa_nodes, duplicate_node_closure):
9941         (calc_inveclosure, parse_dup_op, build_range_exp):
9942         (build_collating_symbol, parse_bracket_exp, build_charclass_op):
9943         (fetch_number, create_token_tree, mark_opt_subexp):
9944         Likewise.
9945         * lib/regex_internal.c (re_string_construct_common,
9946         create_ci_newstate):
9947         (create_cd_newstate, re_string_allocate, re_string_construct):
9948         (re_string_realloc_buffers, build_wcs_upper_buffer):
9949         (re_string_skip_chars, build_upper_buffer, re_string_translate_buffer):
9950         (re_string_reconstruct, re_string_peek_byte_case):
9951         (re_string_fetch_byte_case, re_string_context_at):
9952         (re_node_set_alloc, re_node_set_init_1, re_node_set_init_2):
9953         (re_node_set_init_copy, re_node_set_add_intersect):
9954         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
9955         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
9956         (re_node_set_remove_at, re_dfa_add_node, calc_state_hash):
9957         (re_acquire_state, re_acquire_state_context, register_state):
9958         Likewise.
9959         * lib/regex.c (match_ctx_init, match_ctx_add_entry,
9960         search_cur_bkref_entry):
9961         (match_ctx_add_subtop, match_ctx_add_sublast, sift_ctx_init):
9962         (re_search_internal, re_search_2_stub, re_search_stub)
9963         (re_copy_regs, check_matching, check_halt_state_context, update_regs):
9964         (push_fail_stack, sift_states_iter_mb, build_sifted_states):
9965         (update_cur_sifted_state, check_dst_limits):
9966         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
9967         (check_subexp_limits, sift_states_bkref, merge_state_array):
9968         (check_subexp_matching_top, get_subexp, get_subexp_sub):
9969         (find_subexp_node, check_arrival, check_arrival_add_next_nodes):
9970         (check_arrival_expand_ecl, check_arrival_expand_ecl_sub):
9971         (expand_bkref_cache, check_node_accept_bytes):
9972         (group_nodes_into_DFAstates, check_node_accept, regexec, re_match):
9973         (re_search, re_match_2, re_search_2, prune_impossible_nodes):
9974         (acquire_init_state_context, check_halt_node_context):
9975         (proceed_next_node, pop_fail_stack, set_regs, free_fail_stack_return):
9976         (sift_states_backward, clean_state_log_if_needed):
9977         (sub_epsilon_src_nodes, add_epsilone_src_nodes, merge_state_with_log):
9978         (find_recover_state, transit_state_sb, transit_state_mb):
9979         (transit_state_bkref, build_trtable, match_ctx_clean):
9980         Likewise.
9981         * lib/regcomp.c (parse_dup_op): Add an extra test if Idx is unsigned,
9982         to work around an assumption that REG_MISSING is negative.
9983
9984         * lib/regcomp.c (re_comp) [defined _REGEX_RE_COMP || defined _LIBC]:
9985         (seek_collating_symbol_entry) [defined _LIBC]:
9986         (lookup_collation_sequence_value) [defined _LIBC]:
9987         (build_range_exp, build_collating_symbol) [defined _LIBC]:
9988         Use prototypes rather than old-style function definitions.
9989         * lib/regexec.c (re_exec) [defined _REGEX_RE_COMP || defined _LIBC]:
9990         (transit_state_sb) [0]:
9991         (find_collation_sequence_value) [defined _LIBC]: Likewise.
9992
9993         * lib/regexec.c (re_search_internal): Simplify update of rm_so and
9994         rm_eo.
9995
9996         * lib/regcomp.c (re_compile_fastmap_iter, init_dfa, init_word_char):
9997         (optimize_subexps, lower_subexp):
9998         Don't assume 1<<31 has defined behavior on hosts with 32-bit int,
9999         since the signed shift might overflow.  Use 1u<<31 instead.
10000         * lib/regex_internal.h (bitset_set, bitset_clear, bitset_contain):
10001         Likewise.
10002         * lib/regexec.c (check_dst_limits_calc_pos_1,
10003         check_subexp_matching_top): Likewise.
10004
10005         * lib/regcomp.c (optimize_subexps, lower_subexp):
10006         Use CHAR_BIT rather than 8, for clarity.
10007         * lib/regexec.c (check_dst_limits_calc_pos_1):
10008         (check_subexp_matching_top): Likewise.
10009         * lib/regcomp.c (init_dfa): Make table_size unsigned, so that we don't
10010         have to worry about portability issues when shifting it left.
10011         Remove no-longer-needed test for table_size > 0.
10012         * lib/regcomp.c (parse_sub_exp): Do not shift more bits than there are
10013         in a word, as the resulting behavior is undefined.
10014         * lib/regexec.c (check_dst_limits_calc_pos_1): Likewise;
10015         in one case, a <= should have been an <, and in another case the
10016         whole test was missing.
10017         * lib/regex_internal.h (BYTE_BITS): Remove.  All uses changed to
10018         the standard name CHAR_BIT.
10019         * lib/regexec.c (match_ctx_add_entry): Don't assume that ~0 == -1;
10020         this is not true on one's complement and signed-magnitude hosts.
10021
10022         * lib/regex_internal.h (re_sub_match_top_t): Remove unused member
10023         next_last_offset.
10024         (struct re_dfa_t): Remove unused member states_alloc.
10025         * lib/regcomp.c (init_dfa): Don't initialize unused members.
10026
10027 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
10028
10029         * m4/regex.m4 (gl_REGEX): Require AC_SYS_LARGEFILE, Define
10030         _REGEX_LARGE_OFFSETS).  Test for regoff_t/off_t bug in 64-bit
10031         and large-file glibc and in 32-bit large-file Solaris.
10032
10033 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
10034
10035         * lib/regex_internal.c (re_string_reconstruct): Don't assume buffer
10036         lengths fit in regoff_t; this isn't true if regoff_t is the same
10037         width as size_t.
10038         * lib/regex.c (re_search_internal): 5th arg is LAST_START
10039         (= START + RANGE) instead of RANGE.  This avoids overflow
10040         problems when regoff_t is the same width as size_t.
10041         All callers changed.
10042         (re_search_2_stub): Check for overflow when adding the
10043         sizes of the two strings.
10044         (re_search_stub): Check for overflow when adding START
10045         to RANGE; if it occurs, substitute the extreme value.
10046
10047 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
10048
10049         * config/srclist.txt: Add glibc bugs 1273, 1278-1282, 1284.
10050
10051 2005-08-31  Jim Meyering  <jim@meyering.net>
10052
10053         * lib/regcomp.c (search_duplicated_node): Make first pointer arg
10054         a pointer-to-const.
10055         * lib/regex_internal.c (create_ci_newstate, create_cd_newstate):
10056         (register_state): Likewise.
10057         * lib/regexec.c (search_cur_bkref_entry, check_dst_limits):
10058         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
10059         (group_nodes_into_DFAstates): Likewise.
10060
10061 2005-08-31  Jim Meyering  <jim@meyering.net>
10062
10063         * check-module: Add a FIXME comment.
10064
10065 2005-08-31  Eric Blake  <ebb9@byu.net>
10066
10067         * modules/unistd-safer (Files): Add unistd--.h.
10068         * modules/stdio-safer (Files): Add stdio--.h.
10069
10070 2005-08-31  Derek Price  <derek@ximbiot.com>
10071
10072         * lib/getdelim.c (getdelim): Return EOF on EOF.
10073         Reported by Larry Jones <lawrence.jones@ugs.com>.
10074
10075 2005-08-31  Bruno Haible  <bruno@clisp.org>
10076
10077         Avoid unnecessary diffs in the generated lib/Makefile.am.
10078         * gnulib-tool (func_emit_lib_Makefile_am): Don't write the cmd into
10079         the generated files.
10080         (func_import): Don't set cmd.
10081
10082 2005-08-31  Bruno Haible  <bruno@clisp.org>
10083
10084         * lib/strstr.c: Include <stddef.h>, for NULL.
10085         * lib/strcasestr.c: Likewise.
10086         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
10087
10088 2005-08-31  Bruno Haible  <bruno@clisp.org>
10089
10090         * gnulib-tool: New option --macro-prefix.
10091         (func_import): Use macro_prefix.
10092         (import): Handle option --macro-prefix.
10093
10094 2005-08-31  Bruno Haible  <bruno@clisp.org>
10095
10096         * gnulib-tool (import): Rename most ac_* variables to cached_*.
10097         Also use new variables cached_lgpl, cached_libtool.
10098
10099 2005-08-31  Bruno Haible  <bruno@clisp.org>
10100
10101         * gnulib-tool (func_import): Require AC_GNU_SOURCE etc. instead of
10102         always instantiating them.
10103
10104 2005-08-31  Bruno Haible  <bruno@clisp.org>
10105
10106         * gnulib-tool (func_import): Read the previous cached settings
10107         from gnulib-cache.m4 and gnulib-comp.m4. Remove files that were
10108         earlier added by gnulib but are now dropped. Warn when a gnulib file
10109         overwrites a non-gnulib file.
10110
10111 2005-08-31  Bruno Haible  <bruno@clisp.org>
10112
10113         * gnulib-tool (func_import): Generate two files gnulib-cache.m4 and
10114         gnulib-comp.m4 instead of a single gnulib.m4, to make it easy for
10115         projects that don't keep autogenerated files in CVS. Put into
10116         actioncmd only the specified modules, not the transitive closure.
10117
10118 2005-08-31  Bruno Haible  <bruno@clisp.org>
10119
10120         * gnulib-tool (func_import): Fix defaulting of $libname and $libtool.
10121         Create directories that shall be filled.
10122         (import): Don't look for gl_* macros in configure.ac. Recurse across
10123         all directories containing a gnulib-cache.m4 files, if meaningful.
10124
10125 2005-08-31  Bruno Haible  <bruno@clisp.org>
10126
10127         * gnulib-tool (func_import): Emit also a stub for gl_LIBTOOL.
10128         (import): Set seen_libtool when we see gl_LIBTOOL.
10129
10130 2005-08-31  Bruno Haible  <bruno@clisp.org>
10131
10132         * gnulib-tool (func_import): Also copy m4/gnulib-tool.m4. Omit
10133         declaration macro definitions from generated gnulib.m4.
10134
10135 2005-08-30  "Oskar Liljeblad"  <oskar@osk.mine.nu>
10136
10137         * lib/iconvme.h: Add prototype for iconv_alloc.
10138
10139 2005-08-29  Simon Josefsson  <jas@extundo.com>
10140
10141         * lib/iconvme.c: Fix errno.
10142
10143 2005-08-29  Bruno Haible  <bruno@clisp.org>
10144
10145         * gnulib-tool: Enclose all occurrences of $destdir in "...", so
10146         that it works when the directory contains spaces.
10147
10148 2005-08-29  Bruno Haible  <bruno@clisp.org>
10149
10150         * gnulib-tool (import): Avoid unnecessary spaces in $avoidlist.
10151
10152 2005-08-29  Bruno Haible  <bruno@clisp.org>
10153
10154         * gnulib-tool (func_import): Emit more comments into gnulib.m4.
10155         Emit more advice.
10156
10157 2005-08-29  Bruno Haible  <bruno@clisp.org>
10158         and Stepan Kasal  <kasal@ucw.cz>
10159
10160         * check-module: If more parameters are given, check each of them
10161         separately; add more exceptions, as noted by Jim Meyering.
10162         (check_module): New procedure.
10163         (%exempt_header): Now contains all exceptions.
10164
10165 2005-08-29  Ben Pfaff  <blp@cs.stanford.edu>
10166
10167         * modules/byteswap (Makefile.am): Fix rule to not assume GNU make.
10168
10169 2005-08-29  "Oskar Liljeblad"  <oskar@osk.mine.nu>
10170
10171         * lib/iconvme.c: Split iconv_string into iconv_alloc.
10172
10173 2005-08-28  Bruno Haible  <bruno@clisp.org>
10174
10175         * m4/gnulib-tool.m4: New file.
10176
10177 2005-08-27  Jim Meyering  <jim@meyering.net>
10178
10179         * modules/unistd-safer (Files): Add pipe-safer.c.
10180         * modules/fcntl-safer (Files): Add creat-safer.c.
10181
10182 2005-08-27  Jim Meyering  <jim@meyering.net>
10183
10184         * m4/stdlib-safer.m4: New file.  From coreutils.
10185         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Add stdio--.h.
10186         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Add creat-safer.c to the
10187         AC_LIBSOURCES list and arrange to compile it via AC_LIBOBJ.
10188         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Likewise, add pipe-safer.c.
10189         Add pipe-safer.c and unistd--.h to the AC_LIBSOURCES list.
10190
10191 2005-08-27  Jim Meyering  <jim@meyering.net>
10192
10193         * lib/fopen-safer.c: Merge minor changes from coreutils.
10194         * lib/dup-safer.c: Likewise.
10195         * lib/fd-safer.c: Likewise.
10196
10197         Merge from coreutils.
10198         * lib/stdio--.h: New file.
10199         * lib/stdlib--.h: New file.
10200         * lib/mkstemp-safer.c: New file.
10201
10202         GNU tar needs these.
10203         * lib/pipe-safer.c: New file.
10204         * lib/creat-safer.c: New file.
10205         * lib/fcntl--.h (creat): Define to creat_safer.
10206         * lib/fcntl-safer.h: Include <sys/types.h> and declare creat_safer.
10207         * lib/unistd--.h (pipe): Define to pipe_safer.
10208         * lib/unistd-safer.h: Declare pipe_safer.
10209
10210 2005-08-26  Simon Josefsson  <jas@extundo.com>
10211
10212         * lib/getpass.c: Use _WIN32 instead of WIN32, suggested by Bruno
10213         Haible <bruno@clisp.org>.
10214
10215 2005-08-26  Paul Eggert  <eggert@cs.ucla.edu>
10216
10217         * lib/regex_internal.h: Remove all references to
10218         RE_NO_INTERNAL_PROTOTYPES; no longer neeeded now that we assume C89
10219         or better.
10220         (bitset_not, bitset_merge, bitset_not_merge):
10221         (bitset_mask, re_string_allocate, re_string_construct):
10222         (re_string_reconstruct, re_string_destruct, re_string_elem_size_at):
10223         (re_string_char_size_at, re_string_wchar_at, re_string_peek_byte_case):
10224         (re_string_fetch_byte_case, re_node_set_alloc, re_node_set_init_1):
10225         (re_node_set_init_2, re_node_set_init_copy, re_node_set_add_intersect):
10226         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
10227         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
10228         (re_node_set_remove_at, re_dfa_add_node, re_acquire_state):
10229         (re_acquire_state_context):
10230         Remove unnecessary forward decls.
10231         (re_string_char_size_at, re_string_wchar_at, re_string_elem_size_at):
10232         Put __attribute at function definition,
10233         now that the function decl has been removed.
10234         * lib/regex_internal.c (re_string_peek_byte_case):
10235         (re_string_fetch_byte_case, re_node_set_compare, re_node_set_contains):
10236         Likewise.
10237
10238 2005-08-25  Stepan Kasal  <kasal@ucw.cz>
10239
10240         * m4/regex.m4: Add AC_PREREQ(2.50).
10241         (gl_REGEX): If --with-included-regex was given, skip the autodetection.
10242
10243 2005-08-25  Simon Josefsson  <jas@extundo.com>
10244
10245         * m4/getpass.m4: Check for termios.h, tcgetattr, tcsetattr, and
10246         __fsetlocking.
10247
10248 2005-08-25  Simon Josefsson  <jas@extundo.com>
10249
10250         * lib/getpass.c: Add WIN32 implementation.  Conditionalize use of
10251         termios.h, tcgetattr, tcsetattr and __fsetlocking.  Remove some
10252         GLIBC specific code.
10253
10254 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
10255
10256         Make regex safe for g++.  This fixes one real bug (an "err"
10257         that should have been "*err").  g++ problem reported by
10258         Sam Steingold.
10259         * lib/regex_internal.h (re_calloc): New macro, consistent with
10260         re_malloc etc.  All callers of calloc changed to use re_calloc.
10261         * lib/regex_internal.c (build_wcs_upper_buffer): Return reg_errcode_t,
10262         not int.  All callers changed.
10263         * lib/regcomp.c (re_compile_fastmap_iter): Don't use
10264         alloca (mb_cur_max); just use an array of size MB_LEN_MAX.
10265         * lib/regexec.c (push_fail_stack): Use re_realloc, not realloc.
10266         (find_recover_state): Change "err" to "*err"; this fixes what
10267         appears to be a real bug.
10268         (check_arrival_expand_ecl_sub): Be consistent about reg_errcode_t
10269         versus int.
10270
10271 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
10272
10273         * modules/regex (Depends-on): Add malloc, since the code
10274         assumes that !malloc(0) means failure.
10275
10276 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
10277
10278         * lib/regexec.c (set_regs): Don't alloca with an unbounded size.
10279
10280         alloca modernization/simplification for regex.
10281         * lib/regex.c: Remove portability cruft for alloca.  This no longer
10282         needs to be at the start of the file, and can be moved into
10283         regex_internal.h and simplified.
10284         * lib/regex_internal.h: Include <alloca.h>.
10285         (__libc_use_alloca) [!defined _LIBC]: New macro.
10286         * lib/regexec.c (build_trtable): Remove "#ifdef _LIBC", since the code
10287         now works outside glibc.
10288
10289 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
10290
10291         * config/srclist.txt: Add glibc bugs 1241, 1245.
10292
10293 2005-08-25  Jim Meyering  <jim@meyering.net>
10294
10295         * lib/open-safer.c: Include <config.h>.
10296         Otherwise, we'd lose LARGEFILE support in any file using
10297         e.g. "fcntl--.h"
10298
10299 2005-08-25  Bruno Haible  <bruno@clisp.org>
10300
10301         * m4/minmax.m4: Require autoconf 2.52.
10302         (gl_MINMAX_IN_HEADER): Add comments. Use m4_pushdef/m4_popdef instead
10303         of define/undefine. Use AS_TR_SH and AS_TR_CPP as more robust
10304         alternatives of translit over the alphabet.
10305         Based on a patch from Stepan Kasal <kasal@ucw.cz>.
10306
10307 2005-08-24  Simon Josefsson  <jas@extundo.com>
10308
10309         * tests/test-getpass.c: New file.
10310
10311 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
10312
10313         * m4/regex.m4 (gl_REGEX): Use POSIX-compliant spellings when testing
10314         for GNU regex features.
10315
10316 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
10317
10318         * lib/regcomp.c (regerror): 2nd arg is 'restrict', as per POSIX.
10319         * lib/regex.h (regerror): Likewise.
10320
10321         * lib/regex.c: Do not include <sys/types.h>, as POSIX no longer
10322         requires this.  (The code never needed it.)
10323
10324         * lib/regcomp.c, regex_internal.c, regex_internal.h, regexec.c:
10325         All uses of recently-renamed identifiers changed to use the new,
10326         POSIX-compliant names.  The code will build and run just fine
10327         without these changes, but it's better to eat our own dog food
10328         and use the standard-conforming names.
10329
10330         * lib/regex.h: Fix a multitude of POSIX name space violations.
10331         These changes have an effect only for programs that define
10332         _POSIX_C_SOURCE, _POSIX_SOURCE, or _XOPEN_SOURCE; they
10333         do not change anything for programs compiled in the normal way.
10334         Also, there is no effect on the ABI.
10335
10336         (_REGEX_SOURCE): New macro.
10337         Do not include <stddef.h> if _XOPEN_SOURCE and VMS are both
10338         defined and _GNU_SOURCE is not; this fixes a name space violation.
10339
10340         Rename the following macros to obey POSIX requirements.
10341         The old names are still visible as macros if _REGEX_SOURCE is defined.
10342         (REG_BACKSLASH_ESCAPE_IN_LISTS): renamed from
10343         RE_BACKSLASH_ESCAPE_IN_LISTS.
10344         (REG_BK_PLUS_QM): renamed from RE_BK_PLUS_QM.
10345         (REG_CHAR_CLASSES): renamed from RE_CHAR_CLASSES.
10346         (REG_CONTEXT_INDEP_ANCHORS): renamed from RE_CONTEXT_INDEP_ANCHORS.
10347         (REG_CONTEXT_INDEP_OPS): renamed from RE_CONTEXT_INDEP_OPS.
10348         (REG_CONTEXT_INVALID_OPS): renamed from RE_CONTEXT_INVALID_OPS.
10349         (REG_DOT_NEWLINE): renamed from RE_DOT_NEWLINE.
10350         (REG_DOT_NOT_NULL): renamed from RE_DOT_NOT_NULL.
10351         (REG_HAT_LISTS_NOT_NEWLINE): renamed from RE_HAT_LISTS_NOT_NEWLINE.
10352         (REG_INTERVALS): renamed from RE_INTERVALS.
10353         (REG_LIMITED_OPS): renamed from RE_LIMITED_OPS.
10354         (REG_NEWLINE_ALT): renamed from RE_NEWLINE_ALT.
10355         (REG_NO_BK_BRACES): renamed from RE_NO_BK_BRACES.
10356         (REG_NO_BK_PARENS): renamed from RE_NO_BK_PARENS.
10357         (REG_NO_BK_REFS): renamed from RE_NO_BK_REFS.
10358         (REG_NO_BK_VBAR): renamed from RE_NO_BK_VBAR.
10359         (REG_NO_EMPTY_RANGES): renamed from RE_NO_EMPTY_RANGES.
10360         (REG_UNMATCHED_RIGHT_PAREN_ORD): renamed from
10361         RE_UNMATCHED_RIGHT_PAREN_ORD.
10362         (REG_NO_POSIX_BACKTRACKING): renamed from RE_NO_POSIX_BACKTRACKING.
10363         (REG_NO_GNU_OPS): renamed from RE_NO_GNU_OPS.
10364         (REG_DEBUG): renamed from RE_DEBUG.
10365         (REG_INVALID_INTERVAL_ORD): renamed from RE_INVALID_INTERVAL_ORD.
10366         (REG_IGNORE_CASE): renamed from RE_ICASE.  This renaming is a bit
10367         unusual, since we can't clash with the POSIX REG_ICASE.
10368         (REG_CARET_ANCHORS_HERE): renamed from RE_CARET_ANCHORS_HERE.
10369         (REG_CONTEXT_INVALID_DUP): renamed from RE_CONTEXT_INVALID_DUP.
10370         (REG_NO_SUB): renamed from RE_NO_SUB.
10371         (REG_SYNTAX_EMACS): renamed from RE_SYNTAX_EMACS.
10372         (REG_SYNTAX_AWK): renamed from RE_SYNTAX_AWK.
10373         (REG_SYNTAX_GNU_AWK): renamed from RE_SYNTAX_GNU_AWK.
10374         (REG_SYNTAX_POSIX_AWK): renamed from RE_SYNTAX_POSIX_AWK.
10375         (REG_SYNTAX_GREP): renamed from RE_SYNTAX_GREP.
10376         (REG_SYNTAX_EGREP): renamed from RE_SYNTAX_EGREP.
10377         (REG_SYNTAX_POSIX_EGREP): renamed from RE_SYNTAX_POSIX_EGREP.
10378         (REG_SYNTAX_ED): renamed from RE_SYNTAX_ED.
10379         (REG_SYNTAX_SED): renamed from RE_SYNTAX_SED.
10380         (_REG_SYNTAX_POSIX_COMMON): renamed from _RE_SYNTAX_POSIX_COMMON.
10381         (REG_SYNTAX_POSIX_BASIC): renamed from RE_SYNTAX_POSIX_BASIC.
10382         (REG_SYNTAX_POSIX_MINIMAL_BASIC): renamed from
10383         RE_SYNTAX_POSIX_MINIMAL_BASIC.
10384         (REG_SYNTAX_POSIX_EXTENDED): renamed from RE_SYNTAX_POSIX_EXTENDED.
10385         (REG_SYNTAX_POSIX_MINIMAL_EXTENDED): renamed from
10386         RE_SYNTAX_POSIX_MINIMAL_EXTENDED.
10387         (REG_DUP_MAX): renamed from RE_DUP_MAX.  No need to undef it.
10388         (REG_UNALLOCATED): Renamed from REGS_UNALLOCATED.
10389         (REG_REALLOCATE): Renamed from REGS_REALLOCATE.
10390         (REG_FIXED): Renamed from REGS_FIXED.
10391         (REG_NREGS): Renamed from RE_NREGS.
10392
10393         (REG_ICASE, REG_NEWLINE, REG_NOSUB): Do not depend on the values
10394         of other REG_* macros, since POSIX says the user is allowed to
10395         #undef these macros selectively.
10396
10397         (reg_errcode_t): Update comment stating what other tables need
10398         to be consistent.
10399
10400         Rename the following enum values to obey POSIX requirements.
10401         The old names are still visible as macros.
10402         (_REG_ENOSYS): Renamed from REG_ENOSYS.  Define even if _XOPEN_SOURCE
10403         is not defined, since GNU is supposed to be a superset of POSIX as
10404         much as possible, and since we want reg_errcode_t to be a signed
10405         type for implementation consistency.
10406         (_REG_NOERROR): Renamed from REG_NOERROR.
10407         (_REG_NOMATCH): Renamed from REG_NOMATCH.
10408         (_REG_BADPAT): Renamed from REG_BADPAT.
10409         (_REG_ECOLLATE): Renamed from REG_ECOLLATE.
10410         (_REG_ECTYPE): Renamed from REG_ECTYPE.
10411         (_REG_EESCAPE): Renamed from REG_EESCAPE.
10412         (_REG_ESUBREG): Renamed from REG_ESUBREG.
10413         (_REG_EBRACK): Renamed from REG_EBRACK.
10414         (_REG_EPAREN): Renamed from REG_EPAREN.
10415         (_REG_EBRACE): Renamed from REG_EBRACE.
10416         (_REG_BADBR): Renamed from REG_BADBR.
10417         (_REG_ERANGE): Renamed from REG_ERANGE.
10418         (_REG_ESPACE): Renamed from REG_ESPACE.
10419         (_REG_BADRPT): Renamed from REG_BADRPT.
10420         (_REG_EEND): Renamed from REG_EEND.
10421         (_REG_ESIZE): Renamed from REG_ESIZE.
10422         (_REG_ERPAREN): Renamed from REG_ERPAREN.
10423         (REG_ENOSYS, REG_NOERROR, REG_NOMATCH, REG_BADPAT, REG_ECOLLATE):
10424         (REG_ECTYPE, REG_EESCAPE, REG_ESUBREG, REG_EBRACK, REG_EPAREN):
10425         (REG_EBRACE, REG_BADBR, REG_ERANGE, REG_ESPACE, REG_BADRPT, REG_EEND):
10426         (REG_ESIZE, REG_ERPAREN): Now macros, not enum constants.
10427
10428         (_REG_RE_NAME, _REG_RM_NAME): New macros.
10429         (REG_TRANSLATE_TYPE): Renamed from RE_TRANSLATE_TYPE.  All uses
10430         changed.  But support the old name if the new one is not defined
10431         and if _REGEX_SOURCE.
10432
10433         Change the following member names in struct re_pattern_buffer.
10434         The old names are still supported if !_REGEX_SOURCE.
10435         The new names are always supported, regardless of _REGEX_SOURCE.
10436         (re_buffer): Renamed from buffer.
10437         (re_allocated): Renamed from allocated.
10438         (re_used): Renamed from used.
10439         (re_syntax): Renamed from syntax.
10440         (re_fastmap): Renamed from fastmap.
10441         (re_translate): Renamed from translate.
10442         (re_can_be_null): Renamed from can_be_null.
10443         (re_regs_allocated): Renamed from regs_allocated.
10444         (re_fastmap_accurate): Renamed from fastmap_accurate.
10445         (re_no_sub): Renamed from no_sub.
10446         (re_not_bol): Renamed from not_bol.
10447         (re_not_eol): Renamed from not_eol.
10448         (re_newline_anchor): Renamed from newline_anchor.
10449
10450         Change the following member names in struct re_registers.
10451         The old names are still supported if !_REGEX_SOURCE.
10452         The new names are always supported, regardless of _REGEX_SOURCE.
10453         (rm_num_regs): Renamed from num_regs.
10454         (rm_start): Renamed from start.
10455         (rm_end): Renamed from end.
10456
10457         (re_set_syntax, re_compile_pattern, re_compile_fastmap):
10458         (re_search, re_search_2, re_match, re_match_2, re_set_registers):
10459         Prepend __ to parameter names.
10460
10461         Undo yesterday's changes.
10462
10463 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
10464
10465         * config/srclist.txt: Remove glibc bug 1233 and add 1236, which
10466         supersedes it. Add glibc bugs 1237, 1238, 1240.  Comment out
10467         lib/regex.c.
10468
10469 2005-08-24  Jim Meyering  <jim@meyering.net>
10470
10471         Sync from coreutils.
10472         * m4/fcntl-safer.m4: New file.
10473
10474         * m4/xgetcwd.m4: Use AC_LIBSOURCES and AC_LIBOBJ to indicate source
10475         and object files for this module.
10476
10477 2005-08-24  Jim Meyering  <jim@meyering.net>
10478
10479         Sync from coreutils.
10480         * lib/fcntl--.h, lib/fcntl-safer.h, lib/open-safer.c: New files.
10481
10482 2005-08-24  Jim Meyering  <jim@meyering.net>
10483
10484         * modules/xgetcwd (Makefile.am): Remove `lib_SOURCES += ...' line,
10485         now that xgetcwd.m4 requires xgetcwd.c and xgetcwd.h.
10486
10487 2005-08-24  Jim Meyering  <jim@meyering.net>
10488
10489         * modules/fcntl-safer: New module.
10490         * modules/fts (Depends-on): Add fcntl-safer.
10491         * MODULES.html.sh (File descriptor based Input/Output):
10492         Add fcntl-safer.
10493
10494 2005-08-24  Bruno Haible  <bruno@clisp.org>
10495
10496         Support for unit test modules.
10497         * modules/README: Mention tests modules.
10498         * modules/TEMPLATE-TESTS: New file.
10499         * gnulib-tool: New options --extract-tests-module, --with-tests and
10500         --tests-base (unused for the moment).
10501         (testsbase, inctests): New variables.
10502         (func_all_modules): Exclude TEMPLATE-TESTS and *-tests.
10503         (func_verify_module): Exclude TEMPLATE-TESTS.
10504         (func_verify_nontests_module, func_verify_tests_module): New functions.
10505         (func_get_dependencies): Add implicit dependency for tests modules.
10506         (func_get_tests_module): New function.
10507         (func_modules_transitive_closure): When --with-tests was specified,
10508         include the unit tests as well, unless explicitly avoided.
10509         (func_emit_lib_Makefile_am): Ignore the tests modules here.
10510         (func_emit_tests_Makefile_am): New function.
10511         (func_create_testdir): When --with-tests was specified, emit a
10512         tests/ directory.
10513         * MODULES.html.sh (Future developments): Update.
10514
10515 2005-08-24  Bruno Haible  <bruno@clisp.org>
10516
10517         * modules/tls-tests: New file.
10518         * tests/test-tls.c: New file, from GNU gettext.
10519
10520 2005-08-24  Bruno Haible  <bruno@clisp.org>
10521
10522         * modules/lock-tests: New file.
10523         * tests/test-lock.c: New file, from GNU gettext.
10524
10525 2005-08-24  Bruno Haible  <bruno@clisp.org>
10526
10527         * lib/lock.h: Add multiple inclusion guard.
10528         * lib/tls.h: Add multiple inclusion guard.
10529
10530 2005-08-24  Bruno Haible  <bruno@clisp.org>
10531
10532         * gnulib-tool: Add support for the --aux-dir option to
10533         --create-testdir, --create-megatestdir, --test, --megatest.
10534         (func_create_testdir, func_create_megatestdir): Optionally emit a
10535         AC_CONFIG_AUX_DIR directive.
10536         (create-testdir, create-megatestdir, test, megatest): Provide a
10537         default value for $auxdir.
10538
10539 2005-08-24  Bruno Haible  <bruno@clisp.org>
10540
10541         * gnulib-tool (import): Use compound statement instead of subshell
10542         where possible.
10543
10544 2005-08-24  Bruno Haible  <bruno@clisp.org>
10545
10546         * gnulib-tool (import): Change --aux-dir default to "build-aux".
10547
10548 2005-08-24  Bruno Haible  <bruno@clisp.org>
10549
10550         * gnulib-tool (func_version): Update.
10551
10552 2005-08-24  Bruno Haible  <bruno@clisp.org>
10553
10554         * gnulib-tool (func_import, func_create_testdir,
10555         func_create_megatestdir): Quote all autoconf macro arguments.
10556
10557 2005-08-24  Bruno Haible  <bruno@clisp.org>
10558
10559         * gnulib-tool (func_create_megatestdir): Call autoreconf without the
10560         option --force, because --force causes the aclocal.m4 of each
10561         subdirectory to be newer than the corresponding config.h.in.
10562
10563 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
10564
10565         * m4/regex.m4 (gl_INCLUDED_REGEX): Remove; no longer used.
10566         All contents moved to gl_REGEX.
10567         (gl_REGEX): Don't bother checking whether lib/regex.c exists;
10568         assume that it does.
10569
10570 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
10571
10572         * lib/regex.h (REG_NOSYS)
10573         [!defined _XOPEN_SOURCE && 200112L <= _POSIX_C_SOURCE]:
10574         Define, since POSIX requires it as of 2001.
10575         (_REG_ENOSYS)
10576         [! (defined _XOPEN_SOURCE || 200112L <= _POSIX_C_SOURCE)]:
10577         New private symbol, used to keep the enum signed in all cases.
10578         * lib/regex.h (RE_NO_EMPTY_RANGES): Fix doc bug reported by James
10579         Youngman in
10580         <http://lists.gnu.org/archive/html/bug-gnulib/2005-07/msg00132.html>.
10581
10582         * lib/regex_internal.c (re_string_skip_chars, register_state):
10583         (calc_state_hash):
10584         Remove forward decls; no longer needed now that we use prototypes.
10585         * lib/regexec.c (acquire_init_state_context, check_halt_node_context):
10586         (proceed_next_node, pop_fail_stack, sub_epsilon_src_nodes):
10587         (clean_state_log_if_needed): Likewise.
10588
10589 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
10590
10591         * config/srclist.txt: Add glibc bugs 1231-1233.
10592
10593 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
10594
10595         Fix problems reported by Sam Steingold in
10596         <http://lists.gnu.org/archive/html/bug-gnulib/2005-08/msg00007.html>.
10597         * lib/regexec.c (sift_states_bkref): Fix portability bug: the code
10598         assumed that reg_errcode_t is a signed type, which is not
10599         necessarily true if _XOPEN_SOURCE is not defined.
10600         * lib/regex_internal.c (calc_state_hash): Put 'inline' before type,
10601         since some compilers warn about it otherwise.
10602
10603 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
10604
10605         * lib/regcomp.c (create_initial_state): Remove duplicate decl.
10606         (init_word_char, create_initial_state, duplicate_node_closure):
10607         (fetch_token, peek_token_bracket, build_range_exp):
10608         (build_collating_symbol): Remove forward decls; no longer needed
10609         now that we use prototypes.
10610
10611         * lib/regcomp.c:
10612         (re_compile_pattern, re_set_syntax, re_compile_fastmap):
10613         (re_compile_fastmap_iter, regcomp, regerror, regfree):
10614         (re_compile_internal, init_dfa, init_word_char, free_workarea_compile):
10615         (create_initial_state, optimize_utf8, analyze, postorder, preorder):
10616         (optimize_subexps, lower_subexps, lower_subexp, calc_first, calc_next):
10617         (link_nfa_nodes, duplicate_node_closure, search_duplicated_node):
10618         (duplicate_node, calc_inveclosure, calc_eclosure, calc_eclosure_iter):
10619         (fetch_token, peek_token, peek_token_bracket, parse, parse_reg_exp):
10620         (parse_branch, parse_expression, parse_sub_exp, parse_dup_op):
10621         (build_range_exp, build_collating_symbol, parse_bracket_exp):
10622         (parse_bracket_element, parse_bracket_symbol, build_equiv_class):
10623         (build_charclass, build_charclass_op, fetch_number, create_tree):
10624         (create_token_tree, mark_opt_subexp, duplicate_tree):
10625         Use prototypes rather than old-style definitions.
10626
10627         * lib/regex_internal.c:
10628         (re_string_allocate, re_string_construct, re_string_realloc_buffers):
10629         (re_string_construct_common, build_wcs_buffer, build_wcs_upper_buffer):
10630         (re_string_skip_chars, build_upper_buffer, re_string_translate_buffer):
10631         (re_string_reconstruct, re_string_peek_byte_case):
10632         (re_string_fetch_byte_case, re_string_destruct, re_string_context_at):
10633         (re_node_set_alloc, re_node_set_init_1, re_node_set_init_2):
10634         (re_node_set_init_copy, re_node_set_add_intersect):
10635         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
10636         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
10637         (re_node_set_remove_at, re_dfa_add_node, calc_state_hash):
10638         (re_acquire_state, re_acquire_state_context, register_state):
10639         (create_ci_newstate, create_cd_newstate, free_state):
10640         Likewise.
10641         * lib/regexec.c (regexec, re_match, re_search, re_match_2,
10642         re_search_2):
10643         (re_search_2_stub, re_search_stub, re_copy_regs, re_set_registers):
10644         (re_search_internal, prune_impossible_nodes):
10645         (acquire_init_state_context, check_matching, static):
10646         (check_halt_node_context, check_halt_state_context, proceed_next_node):
10647         (push_fail_stack, pop_fail_stack, set_regs, free_fail_stack_return):
10648         (update_regs, sift_states_backward, build_sifted_states):
10649         (clean_state_log_if_needed, merge_state_array):
10650         (update_cur_sifted_state, add_epsilon_src_nodes):
10651         (sub_epsilon_src_nodes, check_dst_limits, check_dst_limits_calc_pos_1):
10652         (check_dst_limits_calc_pos, check_subexp_limits, sift_states_bkref):
10653         (sift_states_iter_mb, transit_state, merge_state_with_log, static):
10654         (find_recover_state, check_subexp_matching_top, transit_state_mb):
10655         (transit_state_bkref, get_subexp, get_subexp_sub, find_subexp_node):
10656         (check_arrival, check_arrival_add_next_nodes):
10657         (check_arrival_expand_ecl, check_arrival_expand_ecl_sub):
10658         (expand_bkref_cache, build_trtable, group_nodes_into_DFAstates):
10659         (check_node_accept_bytes, check_node_accept, extend_buffers):
10660         (match_ctx_init, match_ctx_clean, match_ctx_free, match_ctx_add_entry):
10661         (search_cur_bkref_entry, match_ctx_add_subtop, match_ctx_add_sublast):
10662         (sift_ctx_init):
10663         Likewise.
10664
10665         * lib/regex_internal.h:
10666         (re_string_allocate, re_string_construct, re_string_reconstruct):
10667         (re_string_realloc_buffers, build_wcs_buffer, build_wcs_upper_buffer):
10668         (build_upper_buffer, re_string_translate_buffer, re_string_destruct):
10669         (re_string_elem_size_at, re_string_char_size_at, re_string_wchar_at):
10670         (re_string_context_at, re_string_peek_byte_case):
10671         (re_string_fetch_byte_case): Declare even if RE_NO_INTERNAL_PROTOTYPES
10672         is defined, since we now use prototypes always.
10673
10674         * lib/regex.h (_RE_ARGS): Remove.  No longer needed, since we assume
10675         C89 or better.  All uses removed.
10676
10677 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
10678
10679         * config/srclist.txt: Add glibc bugs 1220-1227.
10680
10681 2005-08-20  Jim Meyering  <jim@meyering.net>
10682
10683         * lib/regexec.c (regexec, re_search_stub) [!_LIBC]: Omit declaration
10684         of unused local, dfa.
10685
10686 2005-08-20  Bruno Haible  <bruno@clisp.org>
10687
10688         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_GNU_SOURCE.
10689
10690 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
10691
10692         * lib/regex_internal.c (re_string_realloc_buffers, re_node_set_insert):
10693         (re_node_set_insert_last, re_dfa_add_node):
10694         Rename local variables to avoid GCC shadowing warnings.
10695
10696 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
10697
10698         * lib/regex_internal.c (re_acquire_state, re_acquire_state_context)
10699         [defined lint]: Suppress bogus uninitialized-variable warnings.
10700
10701         * lib/regcomp.c (duplicate_node): Return new index, not an error code,
10702         and let the caller return REG_ESPACE if out of space.  This
10703         removes an uninitialied-variable warning with GCC 4.0.1, and also
10704         avoids taking the address of a local variable.  All callers
10705         changed.
10706
10707 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
10708
10709         * config/srclist.txt: Comment out $LIBCSRC/posix/regex_internal.c,
10710         $LIBCSRC/posix/regexec.c.
10711         Add glibc bug 1217 for regcomp.c.
10712
10713 2005-08-19  Jim Meyering  <jim@meyering.net>
10714
10715         * lib/regexec.c (proceed_next_node): Redo local variables to
10716         avoid GCC shadowing warnings.
10717
10718 2005-08-18  Bruno Haible  <bruno@clisp.org>
10719
10720         * lib/strstr.c (strstr): Fix return value in multibyte case.
10721         * lib/strcasestr.c (strcasestr): Likewise.
10722
10723 2005-08-17  Paul Eggert  <eggert@cs.ucla.edu>
10724
10725         * lib/regex.h: Remove useless space-before-tab.  From coreutils.
10726
10727 2005-08-17  Jim Meyering  <jim@meyering.net>
10728
10729         Make the %s format (seconds since the epoch) work for a negative
10730         number and when used with a zero-padded field width, e.g. %015s.
10731
10732         * lib/strftime.c (my_strftime): Move the `do_number_sign_and_padding'
10733         label so that it precedes the code to set `digits'.  Otherwise,
10734         %0Ns wouldn't work.  Before this change, `date -d @-22 +%05s' would
10735         print `00-22'.  Now, it prints `-0022', as it should.
10736
10737 2005-08-17  Bruno Haible  <bruno@clisp.org>
10738
10739         * modules/strstr (Files): Add m4/mbrtowc.m4.
10740         (Depends-on): Add mbuiter.
10741
10742 2005-08-17  Bruno Haible  <bruno@clisp.org>
10743
10744         * modules/strcasestr: New file.
10745         * MODULES.html.sh (String handling, based on ANSI C 89): Add
10746         strcasestr.
10747
10748 2005-08-17  Bruno Haible  <bruno@clisp.org>
10749
10750         * modules/strcase (Depends-on): Add mbuiter. Remove strnlen1, mbchar.
10751
10752 2005-08-17  Bruno Haible  <bruno@clisp.org>
10753
10754         * modules/mbuiter: New file.
10755         * MODULES.html.sh (Extended multibyte and wide character utilities):
10756         Add mbuiter.
10757
10758 2005-08-17  Bruno Haible  <bruno@clisp.org>
10759
10760         * m4/strstr.m4 (gl_FUNC_STRSTR): Use the replacement function always.
10761         (gl_PREREQ_STRSTR): Use gl_FUNC_MBRTOWC.
10762
10763 2005-08-17  Bruno Haible  <bruno@clisp.org>
10764
10765         * m4/strcasestr.m4: New file.
10766
10767 2005-08-17  Bruno Haible  <bruno@clisp.org>
10768
10769         * lib/strstr.h: Ignore HAVE_STRSTR, always declare the gnulib function.
10770         * lib/strstr.c: Completely rewritten, with multibyte locale support.
10771
10772 2005-08-17  Bruno Haible  <bruno@clisp.org>
10773
10774         * lib/strcasestr.h: New file.
10775         * lib/strcasestr.c: New file.
10776
10777 2005-08-17  Bruno Haible  <bruno@clisp.org>
10778
10779         * lib/strcasecmp.c: Use mbuiter.h.
10780
10781 2005-08-17  Bruno Haible  <bruno@clisp.org>
10782
10783         * lib/mbuiter.h: New file.
10784
10785 2005-08-16  Paul Eggert  <eggert@cs.ucla.edu>
10786
10787         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Do not override the results
10788         of gl_GETOPT_SUBSTITUTE.  That way, if both gl_GETOPT_SUBSTITUTE
10789         and gl_GETOPT are both invoked via different paths (as happens
10790         with GNU tar CVS because it uses both argp and getopt), the former
10791         wins.
10792
10793 2005-08-16  Bruno Haible  <bruno@clisp.org>
10794
10795         * modules/tls: New file.
10796         * MODULES.html.sh (Multithreading): Add tls.
10797
10798 2005-08-16  Bruno Haible  <bruno@clisp.org>
10799
10800         * modules/strnlen1: New file.
10801         * MODULES.html.sh (String handling): Add strnlen1.
10802
10803 2005-08-16  Bruno Haible  <bruno@clisp.org>
10804
10805         * modules/strcase (Files): Add m4/mbrtowc.m4.
10806         (Depends-on): Add strnlen1, mbchar.
10807
10808 2005-08-16  Bruno Haible  <bruno@clisp.org>
10809
10810         * modules/mbiter: New file.
10811         * MODULES.html.sh (Extended multibyte and wide character utilities):
10812         Add mbiter.
10813
10814 2005-08-16  Bruno Haible  <bruno@clisp.org>
10815
10816         * modules/mbfile: New file.
10817         * MODULES.html.sh (Extended multibyte and wide character utilities):
10818         Add mbfile.
10819
10820 2005-08-16  Bruno Haible  <bruno@clisp.org>
10821
10822         * modules/mbchar: New file.
10823         * MODULES.html.sh (Extended multibyte and wide character utilities):
10824         New section.
10825
10826 2005-08-16  Bruno Haible  <bruno@clisp.org>
10827
10828         * m4/tls.m4: New file, from GNU gettext.
10829
10830 2005-08-16  Bruno Haible  <bruno@clisp.org>
10831
10832         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Use the replacement function
10833         always.
10834         (gl_PREREQ_STRCASECMP): Use gl_FUNC_MBRTOWC.
10835
10836 2005-08-16  Bruno Haible  <bruno@clisp.org>
10837
10838         * m4/mbiter.m4: New file.
10839
10840 2005-08-16  Bruno Haible  <bruno@clisp.org>
10841
10842         * m4/mbfile.m4: New file.
10843
10844 2005-08-16  Bruno Haible  <bruno@clisp.org>
10845
10846         * m4/mbchar.m4: New file.
10847
10848 2005-08-16  Bruno Haible  <bruno@clisp.org>
10849
10850         * lib/tls.h: New file, from GNU gettext.
10851         * lib/tls.c: New file, from GNU gettext.
10852
10853 2005-08-16  Bruno Haible  <bruno@clisp.org>
10854
10855         * lib/strnlen1.h: New file.
10856         * lib/strnlen1.c: New file.
10857
10858 2005-08-16  Bruno Haible  <bruno@clisp.org>
10859
10860         * lib/strcasecmp.c (struct mbiter_multi): Remove at_end field.
10861         (mbi_init): Update.
10862         (mbi_avail, mbi_advance): Let the iteration end before the terminating
10863         NUL byte, not after it.
10864
10865 2005-08-16  Bruno Haible  <bruno@clisp.org>
10866
10867         * lib/strcase.h (strcasecmp): Add note in comments.
10868         * lib/strncasecmp.c: Use code from strcasecmp.c.
10869         * lib/strcasecmp.c: Use mbchar module. Define private mbiter variant.
10870         (strcasecmp): Work correctly in multibyte locales.
10871
10872 2005-08-16  Bruno Haible  <bruno@clisp.org>
10873
10874         * lib/mbiter.h: New file.
10875
10876 2005-08-16  Bruno Haible  <bruno@clisp.org>
10877
10878         * lib/mbfile.h: New file.
10879
10880 2005-08-16  Bruno Haible  <bruno@clisp.org>
10881
10882         * lib/mbchar.h: New file.
10883         * lib/mbchar.c: New file.
10884
10885 2005-08-16  Bruno Haible  <bruno@clisp.org>
10886
10887         * lib/mbchar.h (mb_cmp, mb_casecmp): Order the invalid characters after
10888         the valid ones. Makes the comparison operations transitive:
10889         cmp (a, b) < 0 && cmp (b, c) < 0 ==> cmp (a, c) < 0.
10890         * lib/strcasecmp.c (strcasecmp): Use mb_casecmp.
10891
10892 2005-08-15  Simon Josefsson  <jas@extundo.com>
10893
10894         * modules/ssize_t (License): Change to 'unlimited'.
10895
10896         * gnulib-tool (sed_extract_prog): Recognize 'unlimited' license.
10897
10898 2005-08-15  Paul Eggert  <eggert@cs.ucla.edu>
10899
10900         * config/srclist.txt: Comment out $LIBCSRC/posix/regex.h.
10901         Add comments for each pending glibc patch.
10902
10903 2005-08-15  Bruno Haible  <bruno@clisp.org>
10904
10905         * lib/regex.h (__restrict_arr): Don't define to __restrict if
10906         __cplusplus is defined.
10907
10908 2005-08-14  Jim Meyering  <jim@meyering.net>
10909
10910         Sync from coreutils.
10911
10912         * lib/fts-cycle.c (setup_dir, enter_dir, leave_dir, free_dir):
10913         Use the hash-table-based cycle-detection code not just when
10914         FTS_TIGHT_CYCLE_CHECK if specified, but also with FTS_LOGICAL.
10915         Reported by James Youngman in
10916         <http://lists.gnu.org/archive/html/bug-gnulib/2005-08/msg00011.html>.
10917         * lib/fts_.h: Mention that with FTS_LOGICAL, we use
10918         FTS_TIGHT_CYCLE_CHECK.
10919         * lib/fts.c (fts_cross_check) [FTS_DEBUG]:
10920         s/active_dir_ht/fts_cycle.ht/. This lets us compile with -DFTS_DEBUG,
10921         once again.
10922         * lib/fts.c [! _LIBC]: Include "lstat.h" rather than rolling our own.
10923         * lib/fts.c (fd_safer): Remove decl.
10924         Include fcntl--.h rather than unistd-safer.h
10925         (fts_safe_changedir): Don't call fd_safer; no longer needed
10926         now that we include fcntl--.h.
10927
10928 2005-08-12  Simon Josefsson  <jas@extundo.com>
10929
10930         * modules/getndelim2: Use ssize_t module.
10931         * modules/getnline: Likewise.
10932         * modules/safe-read: Likewise.
10933         * modules/xreadlink: Likewise.
10934
10935         * modules/ssize_t: New file.
10936
10937 2005-08-12  Simon Josefsson  <jas@extundo.com>
10938
10939         * m4/readline.m4: Look for termcap, curses or ncurses if required.
10940
10941 2005-08-12  Simon Josefsson  <jas@extundo.com>
10942
10943         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
10944         ssize_t.
10945
10946 2005-08-12  Simon Josefsson  <jas@extundo.com>
10947
10948         * MODULES.html.sh (Extra functions based on ANSI C 89: Misc): Add
10949         readline, getdelim and check_version.
10950         (Support for systems lacking ISO C 99: Sizes of integer types):
10951         Add size_max.
10952
10953 2005-08-12  Bruno Haible  <bruno@clisp.org>
10954
10955         * m4/readline.m4 (gl_FUNC_READLINE): Look for ncurses first.
10956
10957 2005-08-11  Simon Josefsson  <jas@extundo.com>
10958
10959         * modules/readline: New file.
10960
10961         * modules/strnlen (Files): Add strnlen.h.
10962
10963 2005-08-11  Simon Josefsson  <jas@extundo.com>
10964
10965         * m4/readline.m4: New file.
10966
10967 2005-08-11  Simon Josefsson  <jas@extundo.com>
10968
10969         * lib/readline.h, readline.c: New file.
10970
10971 2005-08-11  Simon Josefsson  <jas@extundo.com>
10972
10973         * doc/gnulib.texi (Initial import, Finishing touches): Mention
10974         gl_AVOID.
10975
10976 2005-08-11  Bruno Haible  <bruno@clisp.org>
10977
10978         * lib/strnlen.h (strnlen): Change parameter name to match comment.
10979
10980 2005-08-10  Stepan Kasal  <kasal@ucw.cz>
10981
10982         * m4/onceonly_2_57.m4: Really require Autoconf 2.57.
10983
10984 2005-08-10  Simon Josefsson  <jas@extundo.com>
10985
10986         * tests/test-iconvme.c: New file.
10987
10988 2005-08-10  Simon Josefsson  <jas@extundo.com>
10989
10990         * m4/strnlen.m4: New file.
10991
10992         * m4/strndup.m4: Don't check for strnlen declaration, done in
10993         strnlen.m4.
10994
10995 2005-08-10  Simon Josefsson  <jas@extundo.com>
10996
10997         * lib/strndup.c: Use strnlen.h.
10998
10999         * lib/strnlen.h: New file.
11000
11001 2005-08-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
11002
11003         * README: Typos.
11004
11005 2005-08-02  Simon Josefsson  <jas@extundo.com>
11006
11007         * modules/readline: New file.
11008
11009 2005-08-02  Simon Josefsson  <jas@extundo.com>
11010
11011         * modules/getdelim: New file.
11012
11013         * modules/getline: Rewrite, don't use getndelim2.
11014
11015 2005-08-02  Simon Josefsson  <jas@extundo.com>
11016
11017         * m4/getline.m4: Separate out getdelim stuff into separate module.
11018
11019         * m4/getdelim.m4: New file.
11020
11021 2005-08-02  Simon Josefsson  <jas@extundo.com>
11022
11023         * lib/getline.h, getline.c: Rewrite.
11024
11025         * lib/getdelim.h, lib/getdelim.c: New files, ported from glibc.
11026
11027 2005-07-31  Bruno Haible  <bruno@clisp.org>
11028
11029         * lib/lock.h (gl_lock_initializer): New macro.
11030         (gl_lock_define_initialized): Use it.
11031         (gl_rwlock_initializer): New macro.
11032         (gl_rwlock_define_initialized): Use it.
11033         (gl_recursive_lock_initializer): New macro.
11034         (gl_recursive_lock_define_initialized): Use it.
11035
11036 2005-07-30  Karl Berry  <karl@gnu.org>
11037
11038         * doc/gnulib.texi (Initial import): mention -I$(top_builddir)/lib.
11039         Report from Ben Pfaff, regarding getopt.
11040
11041 2005-07-26  Paul Eggert  <eggert@cs.ucla.edu>
11042
11043         Add support to getopt for Emacs, which doesn't use LIBOBJS in the
11044         normal way.
11045         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE_HEADER): New macro.
11046         (gl_GETOPT_SUBSTITUTE): Use it.  Invoke gl_PREREQ_GETOPT.
11047         (gl_GETOPT_IFELSE, gl_GETOPT_CHECK_HEADERS): New macros.
11048         (gl_GETOPT): Use the new macros.  Most of the implementation
11049         is moved to the new macros.  This is for programs like Emacs
11050         that don't want all the functionality of gl_GETOPT.
11051
11052 2005-07-26  Bruno Haible  <bruno@clisp.org>
11053
11054         * m4/lock.m4: Update from GNU gettext.
11055
11056 2005-07-26  Bruno Haible  <bruno@clisp.org>
11057
11058         * lib/lock.h: Update from GNU gettext.
11059         * lib/lock.c: Update from GNU gettext.
11060
11061 2005-07-25  Paul Eggert  <eggert@cs.ucla.edu>
11062
11063         * m4/regex.m4 (gl_INCLUDED_REGEX): Use AC_RUN_IFELSE instead of the
11064         obsolescent AC_TRY_RUN.  Include the default includes files, for
11065         'exit'.
11066
11067 2005-07-24  Bruno Haible  <bruno@clisp.org>
11068
11069         * modules/visibility: New file.
11070         * MODULES.html.sh (Misc): Add visibility.
11071
11072 2005-07-24  Bruno Haible  <bruno@clisp.org>
11073
11074         * m4/visibility.m4: New file.
11075
11076 2005-07-24  Bruno Haible  <bruno@clisp.org>
11077
11078         * doc/visibility.texi: New file.
11079
11080 2005-07-22  Bruno Haible  <bruno@clisp.org>
11081
11082         * modules/alloca-opt (Makefile.am): Remove explicit dependency on
11083         $(ALLOCA_H), redundant through BUILT_SOURCES.
11084         * modules/argz (Makefile.am): Remove explicit dependency on $(ARGZ_H),
11085         redundant through BUILT_SOURCES.
11086         * modules/byteswap (Makefile.am): Remove explicit dependency on
11087         $(BYTESWAP_H), redundant through BUILT_SOURCES.
11088         * modules/fnmatch (Makefile.am): Remove explicit dependency on
11089         $(FNMATCH_H), redundant through BUILT_SOURCES.
11090         * modules/getopt (Makefile.am): Remove explicit dependency on
11091         $(GETOPT_H), redundant through BUILT_SOURCES.
11092         * modules/glob (Makefile.am): Remove explicit dependency on $(GLOB_H),
11093         redundant through BUILT_SOURCES.
11094         * modules/poll (Makefile.am): Remove explicit dependency on $(POLL_H),
11095         redundant through BUILT_SOURCES.
11096         * modules/stdbool (Makefile.am): Remove explicit dependency on
11097         $(STDBOOL_H), redundant through BUILT_SOURCES.
11098         * modules/stdint (Makefile.am): Remove explicit dependency on
11099         $(STDINT_H), redundant through BUILT_SOURCES.
11100         * modules/sysexits (Makefile.am): Add $(SYSEXITS_H) to BUILT_SOURCES.
11101         Remove explicit dependency on $(SYSEXITS_H).
11102         Reported by Alexandre Duret-Lutz <adl@src.lip6.fr>.
11103
11104 2005-07-18  Simon Josefsson  <jas@extundo.com>
11105
11106         * lib/check-version.c (check_version): Accept identical versions too.
11107
11108 2005-07-18  Bruno Haible  <bruno@clisp.org>
11109
11110         * modules/lock: New file.
11111         * MODULES.html.sh (Multithreading): New section.
11112
11113 2005-07-18  Bruno Haible  <bruno@clisp.org>
11114
11115         * m4/lock.m4: New file, from GNU gettext.
11116
11117 2005-07-18  Bruno Haible  <bruno@clisp.org>
11118
11119         * lib/lock.h: New file, from GNU gettext.
11120         * lib/lock.c: New file, from GNU gettext.
11121
11122 2005-07-18  Bruno Haible  <bruno@clisp.org>
11123
11124         * lib/lock.h (gl_once_t): New type.
11125         (gl_once_define, gl_once): New macros.
11126         * lib/lock.c (fresh_once): New variable.
11127         (glthread_once, glthread_once_call, glthread_once_singlethreaded): New
11128         functions.
11129
11130 2005-07-16  Simon Josefsson  <jas@extundo.com>
11131
11132         * doc/gnulib.texi (Library version handling): Add ELF symbol collision
11133         workaround, suggested by Bruno.
11134
11135 2005-07-15  Paul Eggert  <eggert@cs.ucla.edu>
11136
11137         * modules/xalloc (Depends-on): Add xalloc-die.
11138         * modules/xvasprintf (Depends-on): Add xalloc-die.
11139
11140 2005-07-15  Paul Eggert  <eggert@cs.ucla.edu>
11141
11142         * lib/quotearg.c: Add translator comment suggested by Bruno Haible,
11143         with a minor change.
11144
11145 2005-07-15  Bruno Haible  <bruno@clisp.org>
11146
11147         * m4/poll.m4 (gl_FUNC_POLL): Check against MacOS X 10.4 poll() bug.
11148         When using lib/poll.c, define poll as rpl_poll.
11149
11150 2005-07-14  Paul Eggert  <eggert@cs.ucla.edu>
11151
11152         * modules/argp (Depends-on): Remove unlocked-io.
11153
11154 2005-07-14  Derek Price  <derek@ximbiot.com>
11155
11156         * m4/glob.m4 (gl_GLOB): Cache glob interface check result.  Add check
11157         for glob symlink bug.
11158
11159 2005-07-14  Bruno Haible  <bruno@clisp.org>
11160
11161         * m4/argp.m4 (gl_ARGP): Remove invocation of gl_FUNC_GLIBC_UNLOCKED_IO.
11162         Instead, test for *_unlocked function declarations directly.
11163
11164 2005-07-11  Simon Josefsson  <jas@extundo.com>
11165
11166         * modules/size_max: New file.
11167
11168         * modules/xsize: Depend on size_max module for size_max.m4.
11169
11170 2005-07-11  Simon Josefsson  <jas@extundo.com>
11171
11172         * lib/size_max.h: New file.
11173
11174 2005-07-11  Paul Eggert  <eggert@cs.ucla.edu>
11175
11176         * lib/version-etc-fsf.c (version_etc_copyright): Parameterize the
11177         copyright symbol and the year.
11178         * lib/version-etc.c (COPYRIGHT_YEAR): New constant.
11179         (version_etc_va): Use parameterized copyright notice.
11180         Reword to conform to the current GNU coding standards.
11181
11182 2005-07-11  Karl Berry  <karl@gnu.org>
11183
11184         * doc/gnulib.texi (Quoting): new node.
11185         (Initial import): more info, from Patrice.
11186
11187 2005-07-11  Bruno Haible  <bruno@clisp.org>
11188
11189         * gnulib-tool (func_usage): Document option --avoid.
11190         (Command line options): Handle --avoid.
11191         (func_acceptable): New function.
11192         (func_modules_transitive_closure): Use it.
11193
11194 2005-07-11  Bruno Haible  <bruno@clisp.org>
11195
11196         * MODULES.html.sh: Use shortcut URLs to the www.opengroup.org site.
11197         Reported by Jim Meyering.
11198
11199 2005-07-10  Bruno Haible  <bruno@clisp.org>
11200
11201         * m4/size_max.m4 (gl_SIZE_MAX): Cast ~(size_t)0 back to size_t.
11202         Needed when size_t is smaller than 'unsigned int'.
11203         Reported by Paul Eggert.
11204
11205 2005-07-09  Sergey Poznyakoff  <gray@gnu.org.ua>
11206
11207         * modules/argp (Depends-on): Add unlocked-io
11208
11209 2005-07-09  Sergey Poznyakoff  <gray@gnu.org.ua>
11210
11211         * lib/argp-namefrob.h: Include unlocked-io.h. Removed unnecessary
11212         block of defines.
11213
11214 2005-07-08  Paul Eggert  <eggert@cs.ucla.edu>
11215
11216         * config/srclist.txt: Comment out regcomp.c, since we have a porting
11217         fix now.
11218
11219 2005-07-08  Eric Blake  <ebb9@byu.net>  (tiny change)
11220         and Paul Eggert  <eggert@cs.ucla.edu>
11221
11222         * lib/regcomp.c (init_dfa, build_range_exp): Store __btowc value
11223         in wint_t, not wchar_t.  Remove now-unnecessary cast.
11224
11225 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
11226
11227         * modules/regex (Files): Add lib/regex_internal.c,
11228         lib/regex_internal.h, lib/regexec.c, lib/regcomp.c, m4/codeset.m4.
11229         (Depends-on): Add extensions.
11230         (Makefile.am): Remove lib_SOURCES; now done by m4 code.
11231
11232 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
11233
11234         * m4/backupfile.m4 (gl_BACKUPFILE): Use AC_CHECK_FUNCS_ONCE on
11235         pathconf.
11236         * m4/same.m4 (gl_SAME): Likewise.
11237         Require AC_SYS_LONG_FILE_NAMES; bug reported by Gerrit P. Haase.
11238
11239         * m4/regex.m4: Adjust to new libc regex implementation.
11240         (gl_INCLUDED_REGEX): Add AC_LIBSOURCES for
11241         all the .c and .h parts of (the new) regex.
11242         Quote the m4 stuff better.
11243         Check for RE_ICASE bug of old gnulib.
11244         Check for REG_STARTEND of recent libc.
11245         Rename local variables from jm_* to gl_*.
11246         Quote operand of "test -f".
11247         Say "recent enough" version of libc, not "version 2".
11248         (gl_PREREQ_REGEX): Remove AC_FUNC_ALLOCA, since alloca is a
11249         prerequisite module.  Remove AC_HEADER_STDC; no longer needed.
11250         Check for locale.h, isblank, mbrtowc, wcrtomb, wcscoll.
11251         Remove check for btowc, isascii.
11252         Require AM_LANGINFO_CODESET.
11253
11254 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
11255
11256         * lib/regex.c, regex.h: Sync from libc.
11257         * lib/regcomp.c, lib/regexec_internal.c, lib/regex_internal.h:
11258         * lib/regexec.c:
11259         New files, synced from libc, except that regex_internal.h
11260         currently has a small porting fix.
11261
11262 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
11263
11264         * config/srclist.txt: Add regcomp.c, regex.c, regex.h,
11265         regex_internal.c, regexec.c.
11266         Add regex_internal.h too, but as a comment, since the libc version
11267         is currently broken in gnulib mode.
11268
11269 2005-07-06  Paul Eggert  <eggert@cs.ucla.edu>
11270
11271         Support programs like Emacs that use gnulib but not gettext.
11272         * MODULES.html.sh (Internationalization functions): Add gettext-h.
11273         * modules/gettext-h: New file.
11274         * modules/gettext (Files): Remove lib/gettext.h.
11275         (Depends-on): Add gettext-h.
11276         (Makefile.am): Remove lib_SOURCES.
11277         * modules/argmatch, modules/c-stack, modules/closeout:
11278         * modules/copy-file, modules/csharpcomp, modules/csharpexec:
11279         * modules/execute, modules/file-type, modules/getaddrinfo:
11280         * modules/getopt, modules/human, modules/javacomp:
11281         * modules/javaexec, modules/mkdir-p, modules/obstack:
11282         * modules/openat, modules/pagealign_alloc, modules/pipe:
11283         * modules/quotearg, modules/regex, modules/rpmatch:
11284         * modules/unicodeio, modules/userspec, modules/version-etc:
11285         * modules/wait-process, modules/xalloc-die, modules/xmemcoll:
11286         * modules/xsetenv:
11287         Depend on gettext-h, not gettext.
11288
11289 2005-07-05  Paul Eggert  <eggert@cs.ucla.edu>
11290
11291         * gnulib-tool (func_import): Add support for 'public domain' license.
11292         * modules/alloca, modules/atexit, modules/memmove:
11293         Now public domain, not GPL.
11294         * modules/dup2, modules/getpagesize, modules/malloc, modules/memset:
11295         * modules/realloc, modules/strerror, modules/strtod:
11296         Now LGPL, not GPL.
11297
11298 2005-07-05  Bruno Haible  <bruno@clisp.org>
11299
11300         * m4/mbrtowc.m4 (gl_FUNC_MBRTOWC): Upgrade to version from current
11301         autoconf CVS. Needed for mingw.
11302
11303 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
11304
11305         Remove the dependency of the strftime module on the tzset module.
11306         * modules/strftime (Depends-on): Remove dependency on tzset.
11307
11308 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
11309
11310         Remove the dependency of the strftime module on the tzset module.
11311         * m4/strftime.m4 (gl_FUNC_STRFTIME): Don't require
11312         gl_FUNC_TZSET_CLOBBER.
11313
11314 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
11315
11316         Remove the dependency of the strftime module on the tzset module.
11317         * lib/strftime.c (my_strftime)
11318         [! defined _LIBC && ! HAVE_RUN_TZSET_TEST]:
11319         Copy the input structure, to work around some of the bug with
11320         Solaris 2.5.1 and Solaris 2.6.  If you still care about these old
11321         Solaris releases, you should also use the tzset module, but we won't
11322         require it as a dependency any more since we don't want LGPLed code
11323         to depend on GPLed code.
11324
11325 2005-07-02  Jim Meyering  <jim@meyering.net>
11326
11327         * m4/chown.m4, cloexec.m4, dup2.m4, fsusage.m4:
11328         * m4/getcwd-path-max.m4, getcwd.m4, mkstemp.m4, mountlist.m4:
11329         * m4/pagealign_alloc.m4, save-cwd.m4, unistd-safer.m4:
11330         Don't check for fcntl.h, and don't test for HAVE_FCNTL_H.
11331
11332 2005-07-02  Jim Meyering  <jim@meyering.net>
11333
11334         * lib/backupfile.c (backup_args): Change a `0' to NULL.
11335
11336 2005-07-01  Paul Eggert  <eggert@cs.ucla.edu>
11337
11338         * lib/xnanosleep.c: Include timespec.h, since OpenBSD 3.4 <time.h>
11339         declares only 'struct timespec;' (!).
11340
11341 2005-07-01  Jim Meyering  <jim@meyering.net>
11342
11343         * lib/chown.c, cloexec.c, dup-safer.c, dup2.c, fsusage.c, getcwd.c:
11344         * lib/getloadavg.c, mountlist.c, openat.h, pagealign_alloc.c:
11345         * lib/save-cwd.c, tempname.c:
11346         Assume HAVE_FCNTL_H (i.e., include <fcntl.h> unconditionally,
11347         and don't include <sys/file.h>).
11348
11349 2005-06-29  Jim Meyering  <jim@meyering.net>
11350
11351         * lib/mkdir-p.c (make_dir_parents): Don't apply sizeof to a hard-coded
11352         type name.  Use the variable name instead.
11353         * lib/idcache.c (getuser, getuidbyname, getgroup, getgidbyname):
11354         Likewise.
11355
11356 2005-06-28  Simon Josefsson  <jas@extundo.com>
11357
11358         * modules/check-version (Files): Add check-version.m4.
11359
11360 2005-06-28  Simon Josefsson  <jas@extundo.com>
11361
11362         * m4/check-version.m4: New file, suggested by Jim Meyering
11363         <jim@meyering.net>.
11364
11365 2005-06-28  Simon Josefsson  <jas@extundo.com>
11366
11367         * lib/check-version.h, lib/check-version.c: New files.
11368
11369 2005-06-28  Simon Josefsson  <jas@extundo.com>
11370
11371         * lib/base64.c (base64_encode): Indent.  Rename 'b64' to avoid
11372         collision with global variable.  Better indentation.  Don't
11373         increment buffer pointer beyond buffer end.  Based on comments
11374         from Paul Eggert <eggert@cs.ucla.edu>.
11375
11376         * lib/base64.h: Indent.
11377
11378 2005-06-28  Simon Josefsson  <jas@extundo.com>
11379
11380         * doc/gnulib.texi (Library version handling): New section.
11381
11382 2005-06-28  Jim Meyering  <jim@meyering.net>
11383
11384         * check-module (find_included_lib_files): Hard-code another
11385         pair of exceptions: fts.c includes fts-cycle.c and unistd-safer.h
11386         but modules/fts-lgpl (correctly) does not list those files.
11387
11388         * modules/canonicalize (Files): Add lib/pathmax.h.
11389
11390 2005-06-25  Simon Josefsson  <jas@extundo.com>
11391
11392         * modules/check-version: New file.
11393
11394 2005-06-24  Paul Eggert  <eggert@cs.ucla.edu>
11395
11396         * lib/canon-host.c (canon-host): Append trailing "," to 0 in
11397         initializer of struct addrinfo, as an indication that we don't
11398         care how many members the structure has.
11399
11400 2005-06-24  Derek Price  <derek@ximbiot.com>
11401         and Bruno Haible  <bruno@clisp.org>
11402
11403         Remove stat module & update lstat.
11404         * m4/lstat.m4 (gl_FUNC_LSTAT): Drop AC_FUNC_LSTAT in favor of
11405         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
11406         * m4/stat.m4: Remove this file.
11407
11408 2005-06-24  Derek Price  <derek@ximbiot.com>
11409         and Bruno Haible  <bruno@clisp.org>
11410
11411         Remove stat module & update lstat.
11412         * lib/stat.c: Remove this file...
11413         (slash_aware_lstat): ...moving this content and its support...
11414         * lib/lstat.c (rpl_lstat): ...into here.
11415         * lib/lstat.h: New file.
11416
11417 2005-06-24  Derek Price  <derek@ximbiot.com>
11418         and Bruno Haible  <bruno@clisp.org>
11419
11420         Remove stat module & update lstat.
11421         * config/srclist.txt (libc sources): Remove stat.
11422
11423 2005-06-24  Derek Price  <derek@ximbiot.com>
11424         and Bruno Haible  <bruno@clisp.org>
11425
11426         Remove stat module & update lstat.
11427         * MODULES.html.sh (stat): Remove.
11428         * MODULES.html: Regenerated.
11429         * modules/lstat (Description): Correct function name.
11430         (Files): Add "lstat.h".
11431         (Depends-on): Remove stat, add xalloc, stat-macros.
11432         * modules/stat: Remove this file.
11433         (Include): Add "lstat.h", remove <sys/stat.h>.
11434
11435 2005-06-23  Paul Eggert  <eggert@cs.ucla.edu>
11436
11437         * lib/mktime.c: Include <string.h> even if !DEBUG.  (From glibc.)
11438         (ranged_convert): Don't save conversion in a temporary struct.
11439         This causes a warning with GCC 4.0.0, and anyway in the typical
11440         case it's not worth the extra 100 bytes or so of code.
11441         (ranged_convert, __mktime_internal): When calling a function via a
11442         pointer P, use P () rather than (*P) (), as we now assume C89 or
11443         better.
11444
11445 2005-06-22  Paul Eggert  <eggert@cs.ucla.edu>
11446
11447         * lib/readutmp.c (desirable_utmp_entry): Fix bug where "who -b" and
11448         "who -r" failed to give output.  Problem reported by Tim Waugh.
11449
11450         * lib/xmalloc.c (HAVE_GNU_CALLOC): New constant.
11451         (xcalloc): Use it to avoid needless tests.
11452         Problem reported by Jim Meyering.
11453
11454 2005-06-20  Derek Price  <derek@ximbiot.com>
11455
11456         * m4/bison.m4: Note that precious decls of YACC & YFLAGS will be
11457         unnecessary for Autoconfs > 2.59c.
11458
11459 2005-06-16  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
11460
11461         * lib/argp.h (__option_is_short): Check upper limit of
11462         __key. Isprint() requires its argument to have the value
11463         of an unsigned char or EOF.
11464
11465 2005-06-16  Jim Meyering  <jim@meyering.net>
11466
11467         * lib/calloc.c (rpl_calloc): Allocate a 1-byte buffer (not 1xS or Nx1)
11468         when either N or S is zero.
11469
11470 2005-06-16  Derek Price  <derek@ximbiot.com>
11471
11472         * m4/bison.m4: Declare YACC & YFLAGS precious.
11473
11474 2005-06-10  Paul Eggert  <eggert@cs.ucla.edu>
11475
11476         * lib/fnmatch.c (fnmatch): If there is an encoding error in a
11477         multibyte string or pattern, fall back on unibyte matching.
11478         Problem reported by James Youngman.
11479
11480 2005-06-08  Bruno Haible  <bruno@clisp.org>
11481
11482         * modules/csharpcomp: New file.
11483         * MODULES.html.sh (C#): Add csharpcomp.
11484
11485 2005-06-08  Bruno Haible  <bruno@clisp.org>
11486
11487         * m4/csharpcomp.m4: New file, from GNU gettext.
11488
11489 2005-06-08  Bruno Haible  <bruno@clisp.org>
11490
11491         * lib/csharpcomp.h: New file, from GNU gettext.
11492         * lib/csharpcomp.c: New file, from GNU gettext.
11493         * lib/csharpcomp.sh.in: New file, from GNU gettext.
11494
11495 2005-06-08  Bruno Haible  <bruno@clisp.org>
11496
11497         * lib/binary-io.h (fileno): Undefine before defining it. Avoids a gcc
11498         warning on mingw.
11499
11500 2005-06-07  Derek Price  <derek@ximbiot.com>
11501
11502         Sync from CVS.
11503         * lib/glob_.h: Indent nested #ifdef.
11504
11505 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
11506
11507         Sync from coreutils.
11508         Use "file name" when talking about file names, instead of "filename"
11509         or "path", as per the GNU coding standards.
11510         * lib/mkdir-p.c: Renamed from makepath.c.
11511         (make_dir_parents): Renamed from make_path.  All callers changed.
11512         * lib/mkdir-p.h: Likewise.  All includers changed.
11513         * lib/filenamecat.c: Renamed from path-concat.c.
11514         (file_name_concat): Renamed from path_concat.  All callers changed.
11515         [TEST_FILE_NAME_CONCAT]: Renamed from TEST_PATH_CONCAT.
11516         * lib/filenamecat.h: Likewise.  All includers changed.
11517         * lib/acl.c: Don't use "path" or "filename" to mean "file name"
11518         in comments or local variable names.
11519         * lib/basename.c: Likewise.
11520         * lib/canonicalize.c, canonicalize.h: Likewise.
11521         * lib/dirname.c, dirname.h: Likewise.
11522         * lib/euidaccess.c: Likewise.
11523         * lib/exclude.c: Likewise
11524         * lib/fnmatch_.h, fnmatch_loop.c: Likewise.
11525         * lib/fsusage.c, fsuage.h: Likewise.
11526         * lib/fts.c, fts_.h: Likewise.
11527         * lib/getcwd.c: Likewise.
11528         * lib/getloadavg.c: Likewise.
11529         * lib/mkstemp.c: Likewise.
11530         * lib/mountlist.c, mountlist.h: Likewise.
11531         * lib/openat.c, openat.h: Likewise.
11532         * lib/readlink-stub.c: Likewise.
11533         * lib/readutmp.c, readutmp.h: Likewise.
11534         * lib/rename.c: Likewise.
11535         * lib/rmdir.c: Likewise.
11536         * lib/same.c: Likewise.
11537         * lib/savedir.c: Likewise.
11538         * lib/stripslash.c: Likewise.
11539         * lib/tempname.c: Likewise.
11540         * lib/xreadlink.c: Likewise.
11541         * lib/exclude.c (excluded_file_name): Renamed from excluded_filename.
11542         All uses changed.
11543         * lib/exclude.h: Likewise.
11544
11545         * lib/euidaccess.c (getuid, getgid, getuid, getegid)
11546         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
11547         * lib/idcache.c (getpwuid, getpwnam, getgrgid, getgrnam)
11548         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
11549         * lib/pathmax.h: Include <limits.h> unconditionally, since other
11550         files have been getting away with it for years (MORE/BSD 4.3
11551         is extinct now).
11552         * lib/userspec.c (getpwnam, getgrnam, getgrgid)
11553         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
11554
11555         * lib/pathmax.h (_POSIX_PATH_MAX) [!defined _POSIX_PATH_MAX]:
11556         Define to 256, not 255, as per modern POSIX.
11557
11558 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
11559
11560         Sync from coreutils.
11561         Use "file name" when talking about file names, instead of "filename"
11562         or "path", as per the GNU coding standards.
11563         * MODULES.html.sh: mkdir-p renamed from makepath.
11564         filenamecat renamed from path-concat.
11565         * modules/filenamecat: Renamed from modules/path-concat.
11566         (Files): filenamecat.h and filenamecat.c renamed from
11567         path-concat.h and path-concat.c.
11568         (configure.ac): gl_FILE_NAME_CONCAT, not gl_PATH_CONCAT.
11569         (Include): filenamecat.h, not path-concat.h.
11570         * modules/mkdir-p: Renamed from modules/makepath.
11571         (Files): mkdir-p.h and mkdir-p.c renamed from makepath.h and
11572         makepath.c.
11573         (configure.ac): gl_MKDIR_PARENTS, not gl_MAKEPATH.
11574         (Include): mkdir-p.h, not makepath.h.
11575
11576 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
11577
11578         Sync from coreutils.
11579         * m4/mkdir-p.m4: Renamed from makepath.m4.
11580         (gl_MKDIR_PARENTS): Renamed from gl_MAKEPATH.  All uses changed.
11581         Rename files from makepath.c to mkdir-p.c, and from
11582         makepath.h to mkdir-p.h.
11583         * m4/filenamecat.m4: Renamed from path-concat.m4.
11584         (gl_FILE_NAME_CONCAT): Renamed from gl_PATH_CONCAT.  All uses changed.
11585         Rename files from path-concat.c to filenamecat.c,
11586         and from path-concat.h to filenamecat.h.
11587         * m4/getcwd-path-max.m4: Don't use "path" or "filename" to mean
11588         "file name" in local variables or comments.
11589         * m4/rename.m4: Likewise.
11590
11591 2005-06-01  Bruno Haible  <bruno@clisp.org>
11592
11593         * modules/csharpexec: New file.
11594         * MODULES.html.sh (C#): New section.
11595
11596 2005-06-01  Bruno Haible  <bruno@clisp.org>
11597
11598         * m4/csharp.m4: New file, from GNU gettext.
11599         * m4/csharpexec.m4: New file, from GNU gettext.
11600
11601 2005-06-01  Bruno Haible  <bruno@clisp.org>
11602
11603         * lib/csharpexec.h: New file, from GNU gettext.
11604         * lib/csharpexec.c: New file, from GNU gettext.
11605         * lib/csharpexec.sh.in: New file, from GNU gettext.
11606
11607 2005-05-31  Derek Price  <derek@ximbiot.com>
11608             Paul Eggert  <eggert@cs.ucla.edu>
11609
11610         Sync from cvs.
11611         * m4/glob.m4: s/MISSING_SYS_CDEFS_H/_SYS_CDEFS_H/ and comment.
11612
11613 2005-05-31  Derek Price  <derek@ximbiot.com>
11614             Paul Eggert  <eggert@cs.ucla.edu>
11615
11616         Sync from cvs.
11617         * lib/glob_.h: s/MISSING_SYS_CDEFS_H/_SYS_CDEFS_H/ and comment.
11618
11619 2005-05-29  Derek Price  <derek@ximbiot.com>
11620
11621         * config/srclist.txt (glob_.h, glob.c): Add these files.
11622
11623 2005-05-29  Derek Price  <derek@ximbiot.com>
11624
11625         * MODULES.html.sh: Add glob to Enhanced POSIX.2001 section.
11626         * modules/glob: New file.
11627         * modules/getlogin_r: Add link to POSIX spec in description.
11628
11629 2005-05-29  Derek Price  <derek@ximbiot.com>
11630             Paul Eggert  <eggert@cs.ucla.edu>
11631
11632         * m4/glob.m4: New file.
11633
11634 2005-05-29  Derek Price  <derek@ximbiot.com>
11635             Paul Eggert  <eggert@cs.ucla.edu>
11636
11637         * lib/glob_.h, lib/glob.c: New files.
11638
11639 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
11640
11641         * modules/fts (Files): Remove m4/inttypes-pri.m4.
11642         * modules/fts-lgpl (Depends-on): Remove gettext.
11643
11644 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
11645
11646         * m4/fts.m4 (gl_FUNC_FTS_CORE): Don't check for inttypes.h or stdint.h,
11647         and don't require gt_INTTYPES_PRI.
11648
11649 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
11650
11651         * lib/getlogin_r.c (getlogin_r): Don't set errno to 0 on return.
11652
11653         * lib/fts.c: Don't worry about debugging on pre-C99-compatible hosts;
11654         the configuration hassle isn't worth it.
11655         Include inttypes.h and stdint.h unconditionally if FTS_DEBUG.
11656         (LONGEST_MODIFIER, PRIuMAX): Remove.
11657
11658 2005-05-27  Bruno Haible  <bruno@clisp.org>
11659
11660         * lib/getlogin_r.h: Remove second include of <stddef.h>.
11661
11662 2005-05-26  Paul Eggert  <eggert@cs.ucla.edu>
11663
11664         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Define
11665         _POSIX_PTHREAD_SEMANTICS for Solaris.
11666
11667 2005-05-25  Derek Price  <derek@ximbiot.com>
11668
11669         * MODULES.html.sh: Add getlogin_r to POSIX.2001 support section.
11670
11671 2005-05-25  Derek Price  <derek@ximbiot.com>
11672             Paul Eggert  <eggert@cs.ucla.edu>
11673
11674         * modules/getlogin_r, m4/getlogin_r.m4: New files.
11675         * lib/getlogin_r.c, getlogin_r.h: New files.
11676
11677 2005-05-25  Bruno Haible  <bruno@clisp.org>
11678             Derek Price  <derek@ximbiot.com>
11679
11680         * lib/getlogin_r.h: Simplify API documentation.
11681
11682 2005-05-23  Derek Price  <derek@ximbiot.com>
11683
11684         * modules/minmax (Files): Add m4/minmax.m4.
11685         (configure.ac): Add gl_MINMAX.
11686
11687 2005-05-22  Paul Eggert  <eggert@cs.ucla.edu>
11688
11689         * lib/fts.c (fd_safer) [_LGPL_PACKAGE]: New static function,
11690         so that unistd-safer.h (GPL'ed code) need not be included.
11691
11692 2005-05-22  Bruno Haible  <bruno@clisp.org>
11693
11694         * m4/minmax.m4: New file.
11695         Based on a patch by Derek Price <derek@ximbiot.com>.
11696
11697 2005-05-22  Bruno Haible  <bruno@clisp.org>
11698
11699         * lib/stdint_.h (_STDINT_H_HAVE_INT64): New macro. Use it in #ifdefs.
11700         (INT64_MIN): Fix definition.
11701         Suggested by Paul Eggert <eggert@cs.ucla.edu>.
11702
11703         * lib/stdint_.h (_STDINT_H_NEED_SIGNED_INT_TYPES): Renamed from
11704         NEED_SIGNED_INT_TYPES.
11705
11706         * lib/stdint_.h (_STDINT_H_HAVE_SYSTEM_INTTYPES): Renamed from
11707         HAVE_SYSTEM_INTTYPES.
11708
11709 2005-05-22  Bruno Haible  <bruno@clisp.org>
11710
11711         * lib/minmax.h: Include <limits.h> only when it defines MIN, MAX.
11712         Also include <sys/param.h> if it defines MIN, MAX.
11713         Based on a patch by Derek Price <derek@ximbiot.com>.
11714
11715 2005-05-21  Jim Meyering  <jim@meyering.net>
11716
11717         * modules/fts (Files): Add m4/inttypes-pri.m4.
11718         (Depends-on): Add lstat and remove gettext.  Alphabetize.
11719
11720 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
11721
11722         New fts module.
11723         * lib/fts.c: Don't include "cycle-check.h" or "hash.h".
11724         (setup_dir, free_dir): New functions.
11725         (enter_dir, leave_dir): Define trivial
11726         alternatives of _LGPL_PACKAGE.  Move to fts-cycle.c if !_LGPL_PACKAGE.
11727         (HT_INITIAL_SIZE, ENTER_DIR): Remove.  All uses removed.
11728         (LEAVE_DIR): Fix typo: pass Fts and Ent to leave_dir.
11729         (struct Active_dir, AD_compare, AD_hash, enter_dir, leave_dir):
11730         Move to fts-cycle.c.
11731         (fts_open): Use setup_dir.
11732         (fts_close): Use free_dir.
11733         (fts_read): Have just one copy of the ENTER_DIR code rather than three.
11734         This adds a label and some gotos, but the alternatives were messier.
11735         Check for memory allocation failure when entering a dir.
11736         (fts_stat) [_LGPL_PACKAGE]: Bring back glibc cycle detection code.
11737         * lib/fts_.h (_LGPL_PACKAGE) [defined _LIBC]: New macro.
11738         (FTS): New member fts_cycle, that is a union that contains the
11739         old active_dir_ht and cycle_state.  All uses changed to mention
11740         fts_cycle.ht and fts_cycle.state.
11741         * lib/fts-cycle.c: New file, containing GPL'ed code migrated out of
11742         fts.c, with the following changes:
11743         (setup_dir, free_dir): New functions.
11744         (enter_dir): Now returns bool.  Return true if successful, false
11745         if memory exhausted.  All callers changed.
11746         Do not bother partly cleaning up on
11747         memory allocation failure; that is free_dir's job.
11748         However, free ad if hash_insert fails, to avoid memory leak.
11749         (enter_dir, leave_dir): Accommodate change to FTS by inspecting
11750         fts->fts_options to see which union member to use.
11751
11752 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
11753
11754         * m4/fts.m4 (gl_FUNC_FTS_CORE): Renamed from gl_FUNC_FTS.
11755         (gl_FUNC_FTS, gl_FUNC_FTS_LGPL): New macros.
11756
11757 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
11758
11759         * MODULES.html.sh (File system functions): Add fts, fts-lgpl.
11760
11761 2005-05-20  Jim Meyering  <jim@meyering.net>
11762
11763         * lib/unlinkdir.h (cannot_unlink_dir) [UNLINK_CANNOT_UNLINK_DIR]:
11764         Now a macro, to pacify GCC.
11765
11766 2005-05-20  Eric Blake  <ebb9@byu.net>  (tiny change)
11767
11768         * m4/chown.m4 (gl_FUNC_CHOWN): Correct sense of test for honoring IDs
11769         of -1.
11770
11771 2005-05-20  Eric Blake  <ebb9@byu.net>  (tiny change)
11772
11773         * lib/chown.c (rpl_chown): Return -1 on failure.
11774
11775 2005-05-18  Paul Eggert  <eggert@cs.ucla.edu>
11776
11777         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME]):
11778         Don't check for stddef.h.
11779         * m4/fts.m4 (gl_FUNC_FTS): Don't require AC_HEADER_STDC, as we
11780         don't use its results.
11781         Don't check for fcntl.h, stddef.h, stdlib.h, string.h, unistd.h,
11782         since we include them unconditionally.  Don't require
11783         AM_STDBOOL_H, since stdbool is a prerequisite.
11784         Don't require AC_C_CONST, AC_TYPE_SIZE_T or check for ptrdiff_t
11785         since we assume C89 or better.
11786         Don't require AC_FUNC_CLOSEDIR_VOID, AC_FUNC_LSTAT, or AC_FUNC_STAT,
11787         as we don't use their results.
11788         Don't check for fchdir, memmove, memset, strrchr, as we use
11789         them unconditionally.
11790         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Don't define
11791         GETTIMEOFDAY_CLOBBERS_LOCALTIME_BUFFER, since nobody uses it.
11792
11793 2005-05-18  Paul Eggert  <eggert@cs.ucla.edu>
11794
11795         * lib/canonicalize.c: Include canonicalize.h first, to test interface.
11796         Include <stddef.h> unconditionally, since we assume C89 now.
11797         All uses of PTR_INT_TYPE replaced by ptrdiff_t.
11798         * lib/fts.c: Include fts_.h first, to check interface.
11799         Do not include intprops.h; no longer needed.
11800         Include cycle-check.h and hash.h, since fts_.h no longer does.
11801         Remove unnecessary casts of closedir to void.
11802         (fts_build): Use a simpler method (not involving TYPE_SIGNED) to
11803         decide whether to decrement nlinks.
11804         * lib/fts_.h: Do not include hash.h or cycle-check.h; no longer needed.
11805         (FTS): Use struct hash_table * instead of Hash_table, so that
11806         we no longer need to include hash.h here.
11807
11808 2005-05-18  Jim Meyering  <jim@meyering.net>
11809
11810         * modules/dirfd (License): Change to LGPL.  Most of the code
11811         is already in the public domain.
11812
11813 2005-05-18  Jim Meyering  <jim@meyering.net>
11814
11815         * m4/fts.m4 (AC_LIBSOURCES): Add intprops.h to the list.
11816         Reported by Yoann Vandoorselaere.
11817
11818 2005-05-17  Jim Meyering  <jim@meyering.net>
11819
11820         * m4/fts.m4: New file, from coreutils.
11821
11822 2005-05-17  Jim Meyering  <jim@meyering.net>
11823
11824         * lib/fts.c, lib/fts_.h: New files, from coreutils.
11825
11826 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
11827
11828         Sync from coreutils.
11829         * m4/unlinkdir.m4: New file.
11830
11831 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
11832
11833         Sync from coreutils.
11834         * lib/unlinkdir.c, lib/unlinkdir.h: New files.
11835         * lib/gethrxtime.c, lib/gethrxtime.h, lib/getpass.h, lib/mountlist.h,
11836         lib/path-concat.c, lib/regex.h, lib/unlocked-io.h, lib/xtime.h:
11837         White space changes only.
11838         * lib/makepath.c (make_path): Port to hosts where leading "//" is
11839         special.
11840         * lib/yesno.c: Include getline.h, not ctype.h.
11841         (yesno): Don't remove leading white space; POSIX doesn't allow it.
11842         Use getline to remove arbitrary restriction on response length.
11843
11844 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
11845
11846         * config/srclist-update: Spell out "Street" in FSF postal
11847         mail address; this is the style the FSF seems to prefer.
11848
11849         * build-aux/depcomp, build-aux/install-sh, build-aux/mdate-sh,
11850         build-aux/missing, build-aux/mkinstalldirs: Sync from Automake;
11851         this updates FSF postal mail address.
11852
11853         Sync from coreutils.
11854         * modules/unlinkdir: New file.
11855         * modules/yesno (Depends-on): Add getline.
11856         * MODULES.html.sh (File system functions): Add unlinkdir.
11857
11858 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
11859
11860         * lib/byteswap_.h, lib/getsubopt.h, lib/iconvme.h, lib/strsep.c,
11861         lib/strsep.h:
11862         Change the initial comment to refer to GPL, not LGPL.
11863         gnulib-tool will change it to LGPL as needed.
11864
11865         * lib/__fpending.c, lib/acl.c, lib/acl.h, lib/alloca_.h, lib/allocsa.c,
11866         lib/allocsa.h, lib/argmatch.c, lib/argmatch.h, lib/argp-ba.c,
11867         lib/argp-eexst.c, lib/argp-fmtstream.c, lib/argp-fmtstream.h,
11868         lib/argp-fs-xinl.c, lib/argp-help.c, lib/argp-namefrob.h,
11869         lib/argp-parse.c, lib/argp-pv.c, lib/argp-pvh.c, lib/argp-xinl.c,
11870         lib/argp.h, lib/argz.c, lib/argz_.h, lib/asnprintf.c, lib/asprintf.c,
11871         lib/atanl.c, lib/backupfile.c, lib/backupfile.h, lib/base64.c,
11872         lib/base64.h, lib/basename.c, lib/binary-io.h, lib/byteswap_.h,
11873         lib/c-ctype.c, lib/c-ctype.h, lib/c-stack.c, lib/c-stack.h,
11874         lib/c-strtod.c, lib/calloc.c, lib/canon-host.c, lib/canonicalize.c,
11875         lib/canonicalize.h, lib/ceill.c, lib/chdir-long.c, lib/chdir-long.h,
11876         lib/chown.c, lib/classpath.c, lib/classpath.h, lib/cloexec.c,
11877         lib/closeout.c, lib/closeout.h, lib/concatpath.c, lib/config.charset,
11878         lib/copy-file.c, lib/copy-file.h, lib/cycle-check.c, lib/cycle-check.h,
11879         lib/diacrit.c, lib/diacrit.h, lib/dirfd.c, lib/dirfd.h, lib/dirname.c,
11880         lib/dirname.h, lib/dummy.c, lib/dup-safer.c, lib/dup2.c, lib/eealloc.h,
11881         lib/error.c, lib/error.h, lib/euidaccess.c, lib/exclude.c,
11882         lib/exclude.h, lib/execute.c, lib/execute.h, lib/exit.h,
11883         lib/exitfail.c, lib/exitfail.h, lib/expl.c, lib/fatal-signal.c,
11884         lib/fatal-signal.h, lib/fd-safer.c, lib/file-type.c, lib/file-type.h,
11885         lib/fileblocks.c, lib/filemode.c, lib/filemode.h, lib/findprog.c,
11886         lib/findprog.h, lib/floorl.c, lib/fnmatch.c, lib/fnmatch_.h,
11887         lib/fnmatch_loop.c, lib/fopen-safer.c, lib/free.c, lib/frexpl.c,
11888         lib/fsusage.c, lib/fsusage.h, lib/full-read.c, lib/full-read.h,
11889         lib/full-write.c, lib/full-write.h, lib/fwriteerror.c,
11890         lib/fwriteerror.h, lib/gai_strerror.c, lib/gcd.c, lib/gcd.h,
11891         lib/getaddrinfo.c, lib/getaddrinfo.h, lib/getcwd.c, lib/getcwd.h,
11892         lib/getdate.h, lib/getdate.y, lib/getdomainname.c, lib/getdomainname.h,
11893         lib/getgroups.c, lib/gethostname.c, lib/gethrxtime.c, lib/gethrxtime.h,
11894         lib/getline.c, lib/getline.h, lib/getloadavg.c, lib/getndelim2.c,
11895         lib/getndelim2.h, lib/getnline.c, lib/getnline.h, lib/getopt.c,
11896         lib/getopt1.c, lib/getopt_.h, lib/getopt_int.h, lib/getpagesize.h,
11897         lib/getpass.c, lib/getpass.h, lib/getsubopt.c, lib/getsubopt.h,
11898         lib/gettext.h, lib/gettime.c, lib/gettimeofday.c, lib/getugroups.c,
11899         lib/getusershell.c, lib/group-member.c, lib/group-member.h,
11900         lib/hard-locale.c, lib/hard-locale.h, lib/hash-pjw.c, lib/hash-pjw.h,
11901         lib/hash.c, lib/hash.h, lib/human.c, lib/human.h, lib/iconvme.c,
11902         lib/iconvme.h, lib/idcache.c, lib/inet_ntop.h, lib/intprops.h,
11903         lib/inttostr.c, lib/inttostr.h, lib/isdir.c, lib/javacomp.c,
11904         lib/javacomp.h, lib/javacomp.sh.in, lib/javaexec.c, lib/javaexec.h,
11905         lib/javaexec.sh.in, lib/lbrkprop.h, lib/lchown.c, lib/ldexpl.c,
11906         lib/linebreak.c, lib/linebreak.h, lib/linebuffer.c, lib/linebuffer.h,
11907         lib/localcharset.c, lib/localcharset.h, lib/logl.c, lib/long-options.c,
11908         lib/long-options.h, lib/lstat.c, lib/makepath.c, lib/makepath.h,
11909         lib/malloc.c, lib/mathl.h, lib/mbswidth.c, lib/mbswidth.h, lib/md5.c,
11910         lib/md5.h, lib/memcasecmp.c, lib/memcasecmp.h, lib/memchr.c,
11911         lib/memcmp.c, lib/memcoll.c, lib/memcoll.h, lib/memcpy.c, lib/memmem.c,
11912         lib/memmem.h, lib/mempcpy.c, lib/mempcpy.h, lib/memrchr.c,
11913         lib/memrchr.h, lib/memset.c, lib/minmax.h, lib/mkdir.c, lib/mkdtemp.c,
11914         lib/mkdtemp.h, lib/mkstemp.c, lib/mktime.c, lib/modechange.c,
11915         lib/modechange.h, lib/mountlist.c, lib/mountlist.h, lib/nanosleep.c,
11916         lib/obstack.c, lib/obstack.h, lib/openat.c, lib/openat.h,
11917         lib/pagealign_alloc.c, lib/pagealign_alloc.h, lib/path-concat.c,
11918         lib/path-concat.h, lib/pathmax.h, lib/pathname.h, lib/physmem.c,
11919         lib/physmem.h, lib/pipe.c, lib/pipe.h, lib/poll.c, lib/poll_.h,
11920         lib/posixtm.c, lib/posixtm.h, lib/posixver.c, lib/printf-args.c,
11921         lib/printf-args.h, lib/printf-parse.c, lib/printf-parse.h,
11922         lib/progname.c, lib/progname.h, lib/progreloc.c, lib/putenv.c,
11923         lib/quote.c, lib/quote.h, lib/quotearg.c, lib/quotearg.h, lib/raise.c,
11924         lib/readlink.c, lib/readtokens.c, lib/readtokens.h, lib/readtokens0.c,
11925         lib/readtokens0.h, lib/readutmp.c, lib/readutmp.h, lib/realloc.c,
11926         lib/ref-add.sin, lib/ref-del.sin, lib/regex.c, lib/regex.h,
11927         lib/rename.c, lib/rmdir.c, lib/rpmatch.c, lib/safe-read.c,
11928         lib/safe-read.h, lib/safe-write.c, lib/safe-write.h, lib/same.c,
11929         lib/same.h, lib/save-cwd.c, lib/save-cwd.h, lib/savedir.c,
11930         lib/savedir.h, lib/setenv.c, lib/setenv.h, lib/settime.c,
11931         lib/sh-quote.c, lib/sh-quote.h, lib/sha1.c, lib/sha1.h, lib/sig2str.c,
11932         lib/sig2str.h, lib/sincosl.c, lib/snprintf.c, lib/snprintf.h,
11933         lib/sqrtl.c, lib/stat-macros.h, lib/stat.c, lib/stdbool_.h,
11934         lib/stdint_.h, lib/stdio-safer.h, lib/stpcpy.c, lib/stpcpy.h,
11935         lib/stpncpy.c, lib/stpncpy.h, lib/strcase.h, lib/strcasecmp.c,
11936         lib/strchrnul.c, lib/strchrnul.h, lib/strcspn.c, lib/strdup.c,
11937         lib/strdup.h, lib/strerror.c, lib/strftime.c, lib/strftime.h,
11938         lib/stripslash.c, lib/strndup.c, lib/strndup.h, lib/strnlen.c,
11939         lib/strpbrk.c, lib/strpbrk.h, lib/strsep.c, lib/strsep.h, lib/strstr.c,
11940         lib/strstr.h, lib/strtod.c, lib/strtoimax.c, lib/strtok_r.c,
11941         lib/strtok_r.h, lib/strtol.c, lib/strtoll.c, lib/strtoul.c,
11942         lib/strtoull.c, lib/strverscmp.c, lib/strverscmp.h, lib/sysexit_.h,
11943         lib/tempname.c, lib/time_r.c, lib/time_r.h, lib/timegm.c, lib/timegm.h,
11944         lib/timespec.h, lib/trigl.c, lib/trigl.h, lib/ucs4-utf16.h,
11945         lib/ucs4-utf8.h, lib/unicodeio.c, lib/unicodeio.h, lib/unistd-safer.h,
11946         lib/unlocked-io.h, lib/unsetenv.c, lib/userspec.c, lib/utf16-ucs4.h,
11947         lib/utf8-ucs4.h, lib/utime.c, lib/utimecmp.c, lib/utimecmp.h,
11948         lib/utimens.c, lib/vasnprintf.c, lib/vasnprintf.h, lib/vasprintf.c,
11949         lib/vasprintf.h, lib/version-etc-fsf.c, lib/version-etc.c,
11950         lib/version-etc.h, lib/vsnprintf.c, lib/vsnprintf.h, lib/w32spawn.h,
11951         lib/wait-process.c, lib/wait-process.h, lib/xalloc-die.c, lib/xalloc.h,
11952         lib/xallocsa.c, lib/xallocsa.h, lib/xasprintf.c, lib/xgetcwd.c,
11953         lib/xgetcwd.h, lib/xgetdomainname.c, lib/xgetdomainname.h,
11954         lib/xgethostname.c, lib/xmalloc.c, lib/xmemcoll.c, lib/xnanosleep.c,
11955         lib/xreadlink.c, lib/xreadlink.h, lib/xsetenv.c, lib/xsetenv.h,
11956         lib/xsize.h, lib/xstrndup.c, lib/xstrndup.h, lib/xstrtod.c,
11957         lib/xstrtod.h, lib/xstrtoimax.c, lib/xstrtol.c, lib/xstrtol.h,
11958         lib/xstrtoumax.c, lib/xtime.h, lib/xvasprintf.c, lib/xvasprintf.h,
11959         lib/yesno.c, lib/yesno.h:
11960         Update FSF postal mail address.
11961
11962 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
11963
11964         * MODULES.html.sh, README, gnulib-tool, tests/test-base64.c,
11965         tests/test-memmem.c, tests/test-stpncpy.c:
11966         Update FSF postal mail address.
11967
11968 2005-05-13  Bruno Haible  <bruno@clisp.org>
11969
11970         * lib/stdint_.h (int64_t, uint64_t, int_least64_t, uint_least64_t,
11971         int_fast64_t, uint_fast64_t, intmax_t, uintmax_t, INT64_MIN, INT64_MAX,
11972         UINT64_MAX, INT_LEAST64_MIN, INT_LEAST64_MAX, UINT_LEAST64_MAX,
11973         INT_FAST64_MIN, INT_FAST64_MAX, UINT_FAST64_MAX, INTMAX_MIN,
11974         INTMAX_MAX, UINTMAX_MAX, INT64_C, UINT64_C, INTMAX_C, UINTMAX_C):
11975         Add support for 64-bit integers in the MSVC compiler.
11976
11977 2005-05-12  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
11978
11979         * modules/getdate (Makefile.am): Add getdate.c to EXTRA_DIST
11980
11981 2005-05-12  Eric Blake  <ebb9@byu.net>  (tiny change)
11982
11983         * gnulib-tool (func_import): Sort and uniquify recommended includes.
11984
11985 2005-05-11  Paul Eggert  <eggert@cs.ucla.edu>
11986
11987         * doc/getdate.texi (General date syntax): Don't say that date
11988         date --iso-8601=ns generates acceptable dates; it doesn't yet.
11989         Problem reported by Nic Ferrier.
11990
11991 2005-05-10  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
11992
11993         * lib/getaddrinfo.c: Don't fail when SOCK_STREAM or SOCK_DGRAM are
11994         specified in ai_socktype. Fix invalid ai_protocol
11995         check. ai_protocol is usually set to 0 or depending on
11996         ai_family/ai_socktype to IPPROTO_TCP / IPPROTO_UDP.  Checking for
11997         SOCK_STREAM / SOCK_DGRAM in ai_protocol was invalid.  Set
11998         ai_socktype / ai_protocol in the returned addrinfo structure.
11999
12000 2005-05-10  Simon Josefsson  <jas@extundo.com>
12001
12002         * m4/getaddrinfo.m4: Look in libnsl/libsocket for getaddrinfo, from
12003         Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
12004
12005 2005-05-10  Karl Berry  <karl@gnu.org>
12006
12007         * doc/fdl.texi, gpl.texi, lgpl.texi, COPYING: update FSF address
12008         (from http://www.gnu.org/licenses).
12009         * doc/COPYING.LIB: also rename to COPYING.LESSER.
12010         * doc/COPYING.DOC: remove; per rms, only needed in doc files, so
12011         fdl.texi suffices.
12012
12013 2005-05-10  Karl Berry  <karl@gnu.org>
12014
12015         * config/srclist.txt (COPYING.LESSER): rename from COPYING.LIB.
12016         (COPYING.DOC): remove.
12017
12018         * config/srclist-update: new FSF address.
12019
12020 2005-05-10  Derek Price  <derek@ximbiot.com>
12021
12022         * m4/getopt.m4 (gl_GETOPT): Check for Solaris 10 bug, not decl, when
12023         possible.
12024
12025 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
12026             Bruno Haible  <bruno@clisp.org>
12027
12028         * modules/inet_ntop: New file.
12029         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
12030         inet_ntop.
12031
12032 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
12033             Bruno Haible  <bruno@clisp.org>
12034
12035         * m4/inet_ntop.m4: New file.
12036
12037 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
12038             Bruno Haible  <bruno@clisp.org>
12039
12040         * lib/inet_ntop.h: New file.
12041         * lib/inet_ntop.c: New file, from glibc with modifications.
12042
12043 2005-05-09  Paul Eggert  <eggert@cs.ucla.edu>
12044
12045         * modules/time_r (License): Change to LGPL.
12046         * modules/extensions (License): Change to LGPL.  Actually,
12047         the license is more permissive than that, but currently gnulib-tool
12048         doesn't know how to handle more-permissive licenses.
12049
12050         * modules/stat-macros (Depends-on): Don't depend on stat-macros (!).
12051         Problem reported by Dave Love.
12052
12053 2005-05-08  Jim Meyering  <jim@meyering.net>
12054
12055         * lib/classpath.c (PATH_SEPARATOR): Remove insignificant trailing
12056         blank.
12057
12058 2005-05-06  Paul Eggert  <eggert@cs.ucla.edu>
12059
12060         * modules/argmatch (Depends-on): Add stdbool.
12061         * modules/backupfile (Depends-on): Likewise.
12062         * modules/chdir-long (Depends-on): Likewise.
12063         * modules/closeout (Depends-on): Likewise.
12064         * modules/cycle-check (Depends-on): Likewise.
12065         * modules/dirname (Depends-on): Likewise.
12066         * modules/fnmatch (Depends-on): Likewise.
12067         * modules/fsusage (Depends-on): Likewise.
12068         * modules/fwriteerror (Depends-on): Likewise.
12069         * modules/getcwd (Depends-on): Likewise.
12070         * modules/getloadavg (Depends-on): Likewise.
12071         * modules/hard-locale (Depends-on): Likewise.
12072         * modules/makepath (Depends-on): Likewise.
12073         * modules/mountlist (Depends-on): Likewise.
12074         * modules/nanosleep (Depends-on): Likewise.
12075         * modules/posixtm (Depends-on): Likewise.
12076         * modules/quotearg (Depends-on): Likewise.
12077         * modules/readtokens (Depends-on): Likewise.
12078         * modules/readtokens0 (Depends-on): Likewise.
12079         * modules/readutmp (Depends-on): Likewise.
12080         * modules/save-cwd (Depends-on): Likewise.
12081         * modules/strftime (Depends-on): Likewise.
12082         * modules/userspec (Depends-on): Likewise.
12083         * modules/utimecmp (Depends-on): Likewise.
12084         * modules/xgetcwd (Depends-on): Likewise.
12085         * modules/xnanosleep (Depends-on): Likewise.
12086         * modules/xstrtod (Depends-on): Likewise.
12087         * modules/yesno (Depends-on): Likewise.
12088
12089 2005-05-05  Paul Eggert  <eggert@cs.ucla.edu>
12090
12091         * m4/getopt.m4 (gl_GETOPT): Check for Solaris 10 getopt, and avoid
12092         needless checks.
12093
12094 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
12095
12096         Merge from coreutils.  Among other things,
12097         add bulletproofing for cases where stdin, stdout, or stderr are closed.
12098         * lib/fd-safer.c: New file.
12099         * lib/fcntl-safer.h, open-safer.c: Remove.
12100         * lib/chdir-long.c: Fix comment "fetish" -> "coreutils".
12101         * lib/dup-safer.c: Include unistd-safer.h first.
12102         Don't include errno.h.
12103         (dup_safer) [!defined F_DUPFD]: Let fd_safer do the real work.
12104         * lib/file-type.h: Don't assume invoker included sys/stat.h first.
12105         * lib/file-type.c: Rely on file-type.h change.
12106         * lib/getloadavg.c: Include unistd-safer.h.
12107         (getloadavg): Use safer open.
12108         * lib/getusershell.c: Include "stdio-safer.h".
12109         (getusershell): Use safer fopen.
12110         * lib/long-options.c (long_options): Use NULL rather than 0.
12111         * lib/modechange.h (mode_free): Remove; all callers changed to invoke
12112         'free'.
12113         * lib/modechange.c: Likewise.
12114         xstrtol.h, stdbool.h, stddef.h: Don't include; no longer needed.
12115         (MODE_DONE): New constant.
12116         (struct mode_change): Remove 'next' member.
12117         (make_node_op_equals): New function; like the old one of the
12118         same name, except it allocates an array.
12119         (mode_compile, mode_create_from_ref): Use it.
12120         (mode_compile): Allocate result as an array, not a linked list.
12121         Parse octal string ourself, so that we catch mistakes like "+0".
12122         (mode_adjust): Arg is an array, not a linked list.
12123         * lib/modechange.c: Include stat-macros.h, xalloc.h.
12124         (S_ISDIR, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR):
12125         (S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH, S_IRXWU):
12126         (S_IRWXG, S_IRWXO, CHMOD_MODE_BITS):
12127         Remove.  This is now stat-macros.h's job.
12128         (talloc): Remove.  All callers replaced by xalloc, so that
12129         our invokers don't have to worry about reporting memory failures.
12130         (make_node_op_equals): Remove.
12131         (MODE_ORDINARY_CHAGE, MODE_X_IF_ANY_X, MODE_COPY_EXISTING):
12132         New constants.
12133         (struct mode_change): Moved here from modechange.h.
12134         (mode_append_entry): Remove.
12135         (mode_compile): Remove MASKED_OPS arg, since it encouraged
12136         apps to have incorrect behavior.  Use simpler algorithm for head
12137         and tail.  Don't futz with umask; that's now the job of mode_adjust.
12138         Detect more invalid usages rather than having somewhat-random behavior.
12139         Don't insert an "a=" action, as that leads to incorrect behavior.
12140         (mode_compile, mode_create_from_ref): Return NULL on error instead
12141         of an enum, since now there's only one way to have an error.  All
12142         callers changed.
12143         (mode_adjust): Accept new arg UMASK_VALUE, and interpret it
12144         at the correct time.  Simplify calculation of "+u" and its ilk.
12145         Don't mishandle "+X".
12146         (mode_free): Remove "register" and localize decls.
12147         * lib/modechange.h (MODE_X_IF_ANY_X, MODE_COPY_EXISTING):
12148         (struct mode_change): Move to modechange.c; callers don't
12149         need to see this stuff.
12150         (MODE_MASK_EQUALS, MODE_MASK_PLUS, MODE_MASK_MINUS, MODE_MASK_ALL):
12151         (MODE_INVALID, MODE_MEMORY_EXHAUSTED, MODE_BAD_REFERENCE): Remove.
12152         (mode_change, mode_adjust): Reflect the new signatures noted above.
12153         * lib/nanosleep.c (rpl_nanosleep): Include "timespec.h" before macros
12154         that might redefine system include files.
12155         (siginterrupt) [!HAVE_SIGINTERRUPT]: New macro.
12156         (my_usleep): Use NULL rather than (void *) 0.
12157         (rpl_nanosleep) [!defined SA_NOCLDSTOP]:
12158         Use siginterrupt to specify that system calls should be interrupted.
12159         (rpl_nanosleep): Move initialization of suspended closer to call of
12160         my_usleep.
12161         * lib/readutmp.h (read_utmp): New arg OPTIONS.  All uses changed.
12162         * lib/readutmp.c: Likewise.  Include signal.h, stdbool.h.
12163         (desirable_utmp_entry): New function.
12164         (read_utmp) [defined UTMP_NAME_FUNCTION]: Redo memory allocation
12165         using x2nrealloc, to simplify logic.
12166         (read_utmp) [!defined UTMP_NAME_FUNCTION]: Check for overflow in
12167         size calculation.  Do not assume utmp file is a regular file.
12168         * lib/readutmp.h (UT_PID): Moved here from ../src/who.c.
12169         (READ_UTMP_CHECK_PIDS): New constant.
12170         * lib/save-cwd.c: Include unistd-safer.h.
12171         (save_cwd): Use fd_safer.
12172         * lib/tempname.c (S_ISDIR, S_IRUSR, S_IRUSR, S_IWUSR, S_IXUSR): Remove.
12173         [!_LIBC] Include "stat-macros.h" instead.
12174         * lib/unistd-safer.h (fd_safer): New decl.
12175
12176 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
12177
12178         * modules/getloadavg (Depends-on): Add unistd-safer.
12179         * modules/getusershell (Depends-on): Add stdio-safer.
12180         * modules/lstat (Depends-on): Remove xalloc.
12181         * modules/mkstemp (Depends-on): Add stat-macros.
12182         * modules/modechange (Depends-on): Remove xstrtol.
12183         Add stat-macros, xalloc.
12184         * modules/save-cwd (Depends-on): Add unistd-safer.
12185         * modules/stdio-safer (Makefile.am): Remove lib_SOURCES.
12186         * modules/unistd-safer (Files): Add lib/fd-safer.c
12187         (Makefile.am): Remove lib_SOURCES.
12188
12189         * MODULES.html.sh (Enhancements for POSIX:2001 functions):
12190         Remove fcntl-safer; unistd-safer supersedes it.
12191
12192 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
12193
12194         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Don't require
12195         AC_HEADER_STAT.
12196         * m4/lchown.m4 (gl_FUNC_CHOWN): Likewise.
12197         (gl_PREREQ_CHOWN): Remove.
12198         * m4/lstat.m4 (gl_FUNC_LSTAT): Require AC_FUNC_LSTAT instead of calling
12199         it.  Don't require AC_HEADER_STAT.
12200         (gl_PREREQ_LSTAT): Remove.
12201         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Check stdint.h only once.
12202         Don't require AC_HEADER_STAT.
12203         * m4/rmdir.m4 (gl_FUNC_RMDIR): Don't require AC_HEADER_STAT.
12204         (gl_PREREQ_RMDIR): Remove.
12205         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Don't
12206         mention stat-macros.h or AC_HEADER_STAT, since we'll make
12207         the stat-macros module a prerequisite.
12208         * m4/file-type.m4 (gl_FILE_TYPE): Likewise.
12209         * m4/filemode.m4 (gl_FILEMODE): Likewise.
12210         * m4/makepath.m4 (gl_MAKEPATH): Likewise.
12211         * m4/modechange.m4 (gl_MODECHANGE): Likewise.
12212         * m4/clock_time.m4 (gl_CLOCK_TIME): Use gl_ rather than fetish_ for
12213         variable names.
12214         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Renamed from
12215         fetish_FUNC_RMDIR_NOTEMPTY.  All uses changed.  Use gl_ for
12216         variable prefixes.
12217         * m4/fcntl-safer.m4: Remove.
12218         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Use AC_LIBSOURCES and AC_LIBOBJ.
12219         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Likewise.
12220         Invoke gl_PREREQ_FD_SAFER.
12221         (gl_PREREQ_FD_SAFER): New macro.
12222         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): Check for siginterrupt.
12223         * m4/readutmp.m4 (gl_READUTMP): Require AC_C_INLINE.
12224         Use AC_CHECK_HEADERS_ONCE and AC_CHECK_FUNCS_ONCE when possible.
12225         Remove duplicate call to AC_LIBOBJ(readutmp).
12226         (gl_PREREQ_READUTMP): Remove.  All uses inlined.
12227
12228         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Check for message, not for
12229         MAP_ANON.  Problem reported by Moriyoshi Koizumi to bug-cvs.
12230
12231 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
12232
12233         * MODULES.html.sh (Misc): Add byteswap.
12234
12235 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
12236
12237         * modules/getcwd (Depends-on): Add extensions.
12238         * modules/openat (Depends-on): Likewise.
12239
12240 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
12241
12242         * modules/byteswap: New file.
12243
12244 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
12245
12246         * m4/byteswap.m4: New file.
12247
12248 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
12249
12250         * lib/byteswap_.h: New file.
12251
12252 2005-04-25  Karl Berry  <karl@gnu.org>
12253
12254         * m4/gettext.m4: Update from GNU gettext 0.14.4.
12255
12256 2005-04-25  Albert Chin  <china@thewrittenword.com>
12257
12258         * lib/regex.c: Include <stdio.h>, as a workaround to a Compaq Desktop
12259         Toolkit C bug.
12260
12261 2005-04-21  Oskar Liljeblad  <oskar@osk.mine.nu>
12262
12263         * gnulib-tool (Options): Add -s for --symlink/--symbolic.
12264         (func_ln_if_changed) Remove forcibly for no error message
12265         in case file does not exist.
12266
12267 2005-04-19  Simon Josefsson  <jas@extundo.com>
12268
12269         * gnulib-tool (Options): Make --symlink mean --symbolic.
12270
12271 2005-04-18  Oskar Liljeblad  <oskar@osk.mine.nu>
12272
12273         * doc/gnulib.texi (Initial import): Fix.  Mention --aux-dir.
12274
12275 2005-04-16  Simon Josefsson  <jas@extundo.com>
12276
12277         * modules/getpass-gnu (Makefile.am): Don't mention getpass.h.
12278
12279 2005-04-15  Simon Josefsson  <jas@extundo.com>
12280
12281         * m4/getpass.m4 (gl_FUNC_GETPASS): Use AC_LIBSOURCES.
12282
12283 2005-04-15  Simon Josefsson  <jas@extundo.com>
12284
12285         * gnulib-tool: Rename --symlink to --symbolic.
12286
12287 2005-04-15  Oskar Liljeblad  <oskar@osk.mine.nu>
12288
12289         * gnulib-tool: Add -s, --symlink option to gnulib-tool to make
12290         symbolic links to files instead of copying/moving.  Add --aux-dir,
12291         specifying directory relative --dir where auxiliary build tools
12292         are placed.
12293
12294 2005-04-14  Bruno Haible  <bruno@clisp.org>
12295
12296         * modules/allocsa (License): Change to LGPL.
12297         Requested by Yoann Vandoorselaere <yoann@prelude-ids.org>.
12298
12299 2005-04-13  Paul Eggert  <eggert@cs.ucla.edu>
12300
12301         * lib/getdate.y (zone): Allow relunit_snumber after tZONE, so
12302         that "UTC +1 second" continues to work.  Problem reported
12303         by Dmitry V. Levin.
12304         (relunit_snumber): New rule.
12305         (relunit): Use it.
12306
12307 2005-04-12  Paul Eggert  <eggert@cs.ucla.edu>
12308
12309         * lib/getdate.y (universal_time_zone_table): New constant.
12310         (time_zone_table): Remove GMT, UT, UTC entries; they're now in
12311         universal_time_zone_table.
12312         (lookup_zone): Prefer universal_time_zone_table to
12313         local_time_zone_table, so that "GMT" time stamps are allowed in
12314         London during the summer.  Problem reported by Ian Abbott.
12315
12316 2005-04-12  Jim Meyering  <jim@meyering.net>
12317
12318         * lib/human.c (humblock): Set *options even when returning due to
12319         xstrtoumax conversion failure.  Thanks to a used-uninitialized
12320         warning from gcc-4.
12321
12322 2005-04-09  Jim Meyering  <jim@meyering.net>
12323
12324         * lib/posixtm.c (posixtime) [lint]: Avoid spurious warning from gcc-4's
12325         -Wuninitialized: initialize tm0.tm_year.
12326
12327 2005-04-04  Paul Eggert  <eggert@cs.ucla.edu>
12328
12329         * lib/getdate.y (parser_control): rels_seen is now a boolean, not a
12330         count, since there's no maximum.  All uses changed.
12331         Add member dsts_seen.
12332         (local_zone): Accumulate dsts_seen rather than relying on tm_isdst
12333         not being INT_MAX.
12334         (get_date): Initialize dsts_seen, and check that it doesn't go over 1.
12335         Use pc_rels_seen to decide whther a date is absolute.
12336
12337         * lib/getdate.y (number): Don't overwrite year.
12338         (get_date): Initialize pc.year.digits to 0, not 4, to enable above
12339         check.
12340
12341 2005-04-02  Simon Josefsson  <jas@extundo.com>
12342
12343         * lib/getaddrinfo.h: Fix OpenBSD compilation failure, inspired by tiny
12344         patch from Yoann Vandoorselaere <yoann@prelude-ids.org>.
12345
12346 2005-03-28  Eric Blake  <ebb9@byu.net>  (tiny change)
12347
12348         * m4/getcwd-path-max.m4: Return success on systems such as Cygwin
12349         where no absolute path name can be longer than PATH_MAX.
12350
12351 2005-03-27  Jim Meyering  <jim@meyering.net>
12352
12353         * lib/argmatch.c: Clarify comment: null-terminated -> NULL-terminated.
12354
12355 2005-03-26  Paul Eggert  <eggert@cs.ucla.edu>
12356
12357         * lib/intprops.h (INT_STRLEN_BOUND, INT_BUFSIZE_BOUND):
12358         "one's complement" -> "ones' complement" in comment, as per Knuth.
12359         "value of type" -> "type or expression" in comment.
12360         * lib/mktime.c, strftime.c: Propagate intprops.h comment nits.
12361
12362 2005-03-26  Jim Meyering  <jim@meyering.net>
12363
12364         Comment nits.
12365         * lib/intprops.h: Add the apostrophe in `(one|two)'s complement'.
12366         Correct typos: s/or/of/.
12367
12368 2005-03-26  Jim Meyering  <jim@meyering.net>
12369
12370         * modules/check-include-files: Move to ../ and rename to...
12371         * check-module: ...this.
12372
12373 2005-03-25  Jim Meyering  <jim@meyering.net>
12374
12375         * modules/xvasprintf (Files): Add xalloc.h.
12376
12377 2005-03-23  Paul Eggert  <eggert@cs.ucla.edu>
12378
12379         * modules/gettext (Files): config/config.rpath ->
12380         build-aux/config.rpath
12381         * modules/iconv (Files): Likewise.
12382         Problem reported by Oskar Liljeblad.
12383
12384 2005-03-23  Jim Meyering  <jim@meyering.net>
12385
12386         * modules/check-include-files: New script to check for
12387         missing dependencies, multiple includes, etc.
12388
12389         * modules/c-strtold (Depends-on): Add xalloc.
12390         * modules/c-strtod (Depends-on): Add xalloc.
12391         * modules/hash (Depends-on): Add xalloc.
12392         (Files): Remove lib/xalloc.h.
12393
12394         * modules/gethrxtime (Files): Add lib/gethrxtime.h.
12395         * modules/userspec (Files): Add lib/inttostr.h.
12396
12397 2005-03-23  Jim Meyering  <jim@meyering.net>
12398
12399         * lib/canonicalize.c: Remove duplicate `#include "stat-macros.h"'.
12400
12401 2005-03-22  Jim Meyering  <jim@meyering.net>
12402
12403         * modules/stat-macros: New module.
12404         * modules/canonicalize, modules/euidaccess, modules/file-type,
12405         * modules/filemode, modules/lchown, modules/makepath,
12406         * modules/rmdir, modules/stat: Depend on new stat-macros module
12407         rather than listing lib/stat-macros.h manually.
12408         Don't add stat-macros.h to lib_SOURCES or list it in Files: section.
12409
12410 2005-03-22  Jim Meyering  <jim@meyering.net>
12411
12412         * m4/stat-macros.m4 (gl_STAT_MACROS): New file/macro.
12413
12414 2005-03-22  Bruno Haible  <bruno@clisp.org>
12415
12416         * config/srclist.txt: Replace target directory 'config' with
12417         'build-aux'.
12418         * config/config.guess, config.sub, config.rpath, depcomp, install-sh:
12419         * config/mdate-sh, missing, mkinstalldirs, texinfo.tex: Move to
12420         ../build-aux/.
12421
12422 2005-03-21  Paul Eggert  <eggert@cs.ucla.edu>
12423
12424         * modules/chdir-long (Depends-on): Add mempcpy.
12425
12426         * modules/acl, modules/backupfile, modules/c-strtod,
12427         modules/c-strtold, modules/canon-host, modules/canonicalize,
12428         modules/cloexec, modules/closeout, modules/dirfd, modules/dirname,
12429         modules/exclude, modules/exitfail, modules/file-type,
12430         modules/filemode, modules/fpending, modules/fsusage, modules/getcwd,
12431         modules/getdate, modules/getline, modules/getpagesize,
12432         modules/getpass, modules/getugroups, modules/group-member,
12433         modules/hard-locale, modules/hash, modules/human, modules/idcache,
12434         modules/inttostr, modules/long-options, modules/makepath,
12435         modules/md5, modules/memcasecmp, modules/memcoll,
12436         modules/modechange, modules/mountlist, modules/path-concat,
12437         modules/pathmax, modules/physmem, modules/posixtm, modules/posixver,
12438         modules/quote, modules/quotearg, modules/readtokens, modules/readutmp,
12439         modules/safe-read, modules/safe-write, modules/same, modules/savedir,
12440         modules/settime, modules/sha1, modules/sig2str, modules/strdup,
12441         modules/strftime, modules/strndup, modules/strverscmp,
12442         modules/timespec, modules/unlocked-io, modules/userspec,
12443         modules/utimecmp, modules/utimens, modules/xalloc, modules/xstrtol,
12444         modules/yesno:
12445         Remove lib_SOURCES line from Makefile.am section, as this is now
12446         done automatically by the corresponding Autoconf macro.
12447
12448 2005-03-21  Jim Meyering  <jim@meyering.net>
12449
12450         Changes imported from coreutils.
12451
12452         * lib/cycle-check.c: Don't include xalloc.h.
12453
12454         * lib/path-concat.c: Don't include assert.h.
12455         (path_concat): Remove assertion that would have triggered
12456         for ABASE starting with more than one slash.
12457         Reported by Andreas Schwab.
12458
12459         * lib/path-concat.c (path_concat): Set *BASE_IN_RESULT
12460         properly when ABASE is an absolute file name.
12461         Correct the description of this function.
12462         Include <assert.h>.
12463         Add an assertion and a test driver.
12464         This fixes a bug introduced on 2004-07-02.
12465         Andreas Schwab reported the resulting failure of cp --parents:
12466         http://lists.gnu.org/archive/html/bug-coreutils/2005-01/msg00130.html
12467
12468 2005-03-21  Jim Meyering  <jim@meyering.net>
12469
12470         * m4/chdir-long.m4 (gl_PREREQ_CHDIR_LONG): Invoke gl_FUNC_MEMRCHR.
12471         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Check for memrchr decl.
12472
12473 2005-03-21  Jim Meyering  <jim@meyering.net>
12474         and  Paul Eggert  <eggert@cs.ucla.edu>
12475
12476         * m4/acl.m4, m4/backupfile.m4, m4/c-strtod.m4, m4/canon-host.m4,
12477         m4/canonicalize.m4, m4/cloexec.m4, m4/closeout.m4, m4/dirfd.m4,
12478         m4/dirname.m4, m4/exclude.m4, m4/exitfail.m4, m4/file-type.m4,
12479         m4/filemode.m4, m4/fpending.m4, m4/fsusage.m4, m4/getcwd.m4,
12480         m4/getdate.m4, m4/getline.m4, m4/getpagesize.m4, m4/getpass.m4,
12481         m4/getugroups.m4, m4/group-member.m4, m4/hard-locale.m4, m4/hash.m4,
12482         m4/human.m4, m4/idcache.m4, m4/inttostr.m4, m4/long-options.m4,
12483         m4/makepath.m4, m4/md5.m4, m4/memcasecmp.m4, m4/memcoll.m4,
12484         m4/modechange.m4, m4/mountlist.m4, m4/nanosleep.m4, m4/path-concat.m4,
12485         m4/pathmax.m4, m4/physmem.m4, m4/posixtm.m4, m4/posixver.m4,
12486         m4/quote.m4, m4/quotearg.m4, m4/readtokens.m4, m4/readutmp.m4,
12487         m4/safe-read.m4, m4/safe-write.m4, m4/same.m4, m4/savedir.m4,
12488         m4/settime.m4, m4/sha1.m4, m4/sig2str.m4, m4/strdup.m4, m4/strftime.m4,
12489         m4/strndup.m4, m4/strverscmp.m4, m4/timespec.m4, m4/unlocked-io.m4,
12490         m4/userspec.m4, m4/utimecmp.m4, m4/utimens.m4, m4/xalloc.m4,
12491         m4/xnanosleep.m4, m4/xstrtol.m4, m4/yesno.m4:
12492         Use AC_LIBSOURCES and AC_LIBOBJ to indicate source and object files
12493         for these modules.
12494
12495 2005-03-18  Paul Eggert  <eggert@cs.ucla.edu>
12496
12497         * lib/strftime.c (my_strftime): If the underlying strftime returns 0
12498         (which shouldn't happen), generate nothing instead of returning 0
12499         immediately, so that nstrftime (NULL, ...) doesn't return 0.
12500
12501 2005-03-16  Bruno Haible  <bruno@clisp.org>
12502
12503         * modules/stdint (Makefile.am): Use HAVE_LONG_LONG_64BIT instead of
12504         HAVE_LONGLONG_64BIT.
12505
12506 2005-03-16  Bruno Haible  <bruno@clisp.org>
12507
12508         * m4/stdint.m4 (gl_STDINT_H): Define HAVE_LONG_LONG_64BIT instead of
12509         HAVE_LONGLONG_64BIT.
12510
12511 2005-03-16  Bruno Haible  <bruno@clisp.org>
12512
12513         * lib/stdint_.h: Use HAVE_LONG_LONG_64BIT instead of
12514         HAVE_LONGLONG_64BIT.
12515
12516 2005-03-15  Paul Eggert  <eggert@cs.ucla.edu>
12517
12518         * lib/strftime.c (my_strftime): Prepend space to format so that we can
12519         reliably distinguish strftime failure from empty output on POSIX
12520         hosts.
12521
12522 2005-03-15  Paul Eggert  <eggert@cs.ucla.edu>
12523
12524         * lib/iconvme.c (SIZE_MAX): New macro, if not already defined.
12525         (iconv_string): Don't guess a size-zero buffer, as that might cause
12526         buffer overrun.  Instead, avoid multiplying by MB_LEN_MAX if the
12527         result would be 'too large', where 'too large' is (heuristically)
12528         the square root of SIZE_MAX, divided by MB_LEN_MAX to allay
12529         overflow concerns.  This will prevent some unwanted malloc failures
12530         when the inputs are very large.
12531
12532 2005-03-15  Karl Berry  <karl@gnu.org>
12533
12534         * config/srclist.txt (config.rpath): from gettext.
12535         * config/config.rpath: update.
12536
12537 2005-03-15  Bruno Haible  <bruno@clisp.org>
12538
12539         * lib/regex.c (byte_re_match_2_internal): Rename local variable 'not'
12540         to 'negate'.
12541
12542         * lib/regex.c (byte_re_match_2_internal): Reduce scope of same_str_p
12543         variable.
12544
12545         * lib/regex.c (EXTEND_BUFFER, regcomp): Cast the realloc/malloc
12546         results.
12547
12548 2005-03-14  Simon Josefsson  <jas@extundo.com>
12549
12550         * lib/timegm.h: Use proper prototype CPP guards, reported by Dave Love
12551         <fx@gnu.org>.
12552
12553 2005-03-14  Paul Eggert  <eggert@cs.ucla.edu>
12554
12555         * lib/mktime.c (TYPE_TWOS_COMPLEMENT, TYPE_ONES_COMPLEMENT,
12556         TYPE_SIGNED_MAGNITUDE, TYPE_MINIMUM, TYPE_MAXIMUM): Sync from
12557         intprops.h.
12558         * lib/strtol.c: Likewise.
12559
12560 2005-03-14  Jim Meyering  <jim@meyering.net>
12561
12562         * lib/strftime.c (my_strftime) [HAVE_STRFTIME && ! (_NL_CURRENT
12563         && HAVE_STRUCT_ERA_ENTRY)]: Initialize the first byte of ubuf[]
12564         to be nonzero so that we (and caller) can detect the difference
12565         between a valid zero-length expansion and an error return, even
12566         when the underlying strftime fails before writing anything into
12567         that location.
12568
12569 2005-03-14  Bruno Haible  <bruno@clisp.org>
12570
12571         * m4/lib-link.m4, gettext.m4, nls.m4, po.m4:
12572         Update from GNU gettext 0.14.3.
12573
12574 2005-03-10  Jim Meyering  <jim@meyering.net>
12575
12576         * m4/save-cwd.m4 (gl_SAVE_CWD): Check for fchdir.
12577
12578 2005-03-10  Jim Meyering  <jim@meyering.net>
12579
12580         * lib/save-cwd.c [!HAVE_FCHDIR]: Define open, fchdir, and chdir_long
12581         so that this module works on systems without fchdir.
12582
12583 2005-03-09  Paul Eggert  <eggert@cs.ucla.edu>
12584
12585         Factor int-properties macros into a single file, except for
12586         glibc-related files.
12587         * lib/intprops.h: New file.
12588         * lib/getloadavg.c: Include it instead of limits.h.
12589         (INT_STRLEN_BOUND): Remove.
12590         * lib/human.c: Include intprops.h.
12591         (group_number): Use INT_STRLEN_BOUND instead of rolling it ourself.
12592         * lib/human.h (LONGEST_HUMAN_READABLE): Use 146/485 rather than
12593         302/1000.
12594         * lib/inttostr.h: Include intprops.h instead of limits.h.
12595         (INT_STRLEN_BOUND, INT_BUFSIZE_BOUND): Remove.
12596         * lib/mktime.c (TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT): New macros,
12597         for consistency with intprops.h.
12598         (time_t_is_integer, twos_complement_arithmetic): Use them.
12599         * lib/sig2str.h: Include <signal.h>, intprops.h.
12600         (INT_STRLEN_BOUND): Remove.
12601         * lib/strftime.c (TYPE_SIGNED): Remove.
12602         (INT_STRLEN_BOUND): Switch to same implementation as intprops.h.
12603         * lib/strtol.c: Adjust comments to match intprops.h.
12604         * lib/userspec.c: Include intprops.h.
12605         (TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Remove.
12606         * lib/utimecmp.c, xnanosleep.c, xstrtol.c: Likewise.
12607         * lib/utimecmp.c (utimecmp): Use TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT
12608         instead of rolling our own expressions.
12609         * lib/xstrtol.c: Include xstrtol.h first, to test interface.
12610
12611         * lib/strftime.c: Include <stdbool.h>.  Use bool where appropriate,
12612         instead of int.
12613         (my_strftime): Do not mishandle years close to INT_MAX, by doing
12614         the right thing even if adding 1900 would overflow.  Similarly
12615         for tm_mon + 1 and tm_yday + 1.
12616         Make %Y always equivalent to %C%y, and similarly for %G and %g.
12617         (DO_NUMBER, DO_NUMBER_SPACEPAD): Set digits to d, not a conditional.
12618         (DO_SIGNED_NUMBER): New macro.
12619         (my_strftime) [HAVE_TZNAME]: Don't dump core if tp->tm_dst > 1.
12620
12621 2005-03-07  Bruno Haible  <bruno@clisp.org>
12622
12623         * m4/mmap-anon.m4 (MAP_FILE, MAP_FAILED): Remove definitions.
12624
12625 2005-03-07  Bruno Haible  <bruno@clisp.org>
12626
12627         * lib/pagealign_alloc.c (MAP_FILE, MAP_FAILED): Define fallbacks.
12628
12629 2005-03-04  Derek R. Price  <derek@ximbiot.com>
12630
12631         * gnulib-tool (func_cp_if_changed, func_mv_if_changed): New functions.
12632         (func_import): Only replace files via --import when they have actually
12633         changed.
12634
12635 2005-03-03  Derek R. Price  <derek@ximbiot.com>
12636
12637         * m4/mmap-anon.m4: New file.
12638         * m4/pagealign_alloc.m4: New file.
12639
12640 2005-03-03  Derek R. Price  <derek@ximbiot.com>
12641             Bruno Haible  <bruno@clisp.org>
12642
12643         * modules/pagealign_alloc: New file.
12644         * MODULES.html.sh (Memory management functions): Add pagealign_alloc.
12645
12646 2005-03-03  Derek R. Price  <derek@ximbiot.com>
12647             Bruno Haible  <bruno@clisp.org>
12648
12649         * lib/pagealign_alloc.h: New file.
12650         * lib/pagealign_alloc.c: New file.
12651
12652 2005-03-03  Bruno Haible  <bruno@clisp.org>
12653
12654         * m4/inttypes.m4, isc-posix.m4, once-only.m4:
12655         Use an all-permissive copyright notice, recommended by RMS.
12656
12657 2005-03-02  Bruno Haible  <bruno@clisp.org>
12658
12659         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Undo the replacement here. Because
12660         of AIX, the replacement has to be done only after <string.h> is
12661         included, therefore not in config.h. stpncpy.h does the replacement,
12662         and stpncpy.c uses it.
12663
12664 2005-03-02  Bruno Haible  <bruno@clisp.org>
12665
12666         * lib/stpncpy.h (stpncpy): Define as a macro without arguments, so that
12667         stpncpy.c uses it.
12668
12669 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
12670
12671         Remove workaround for bug in Linux kernel 2.6.8 or thereabouts.
12672         The workaround isn't strictly needed for POSIX conformance, and
12673         it's too much of a pain to configure and maintain.  We'll ask
12674         people to fix their kernels instead.
12675         * lib/xnanosleep.c: Don't include gethrxtime.h or xtime.h.
12676         (NANOSLEEP_BUG_WORKAROUND): Remove.
12677         (xnanosleep): Remove the workaround.
12678
12679 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
12680
12681         * modules/gettime (Makefile.am): Remove lib_SOURCES line.
12682         Reported by Derek Price.
12683         (Include): Add "timespec.h".
12684
12685         * modules/xnanosleep (Depends-on): Remove gethrxtime.
12686
12687 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
12688
12689         * m4/xnanosleep.m4 (gl_XNANOSLEEP): Remove configuration attempting
12690         to detect nanosleep bug.
12691
12692 2005-03-01  Bruno Haible  <bruno@clisp.org>
12693
12694         * lib/vasnprintf.c (EOVERFLOW): Define to a fallback if needed.
12695
12696 2005-02-26  Paul Eggert  <eggert@cs.ucla.edu>
12697
12698         * modules/gethrxtime: New file.
12699         * modules/xnanosleep (Files): Add m4/xnanosleep.m4.
12700         (Depends-on): Add gethrxtime.
12701         (configure.ac): Add gl_XNANOSLEEP.
12702         (Makefile.am): Remove lib_SOURCES line.
12703
12704 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
12705
12706         * m4/gethrxtime.m4, m4/xnanosleep.m4: New files.
12707         * m4/gettime.m4 (gl_GETTIME): Check for nanotime.
12708
12709 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
12710
12711         * lib/gethrxtime.h, lib/gethrxtime.c, lib/xtime.h: New files.
12712         * lib/timespec.h (gettime): Return void, since it always
12713         succeeds now.  All uses changed.
12714         * lib/gettime.c (gettime) Likewise.
12715         [HAVE_NANOTIME]: Prefer nanotime.
12716         Assume gettimeofday succeeds, as POSIX requires.
12717         Assime time () succeeds, since other code already does.
12718         * lib/xnanosleep.c: Include xtime.h and gethrxtime.h, not xalloc.h.
12719         (timespec_subtract): Remove.
12720         (NANOSLEEP_BUG_WORKAROUND): New constant.
12721         (xnanosleep): Use gethrxtime rather than gettime; this simplifies
12722         things considerably.  Use it only on GNU/Linux hosts, since the
12723         workaround shouldn't be needed elsewhere.
12724
12725 2005-02-24  Bruno Haible  <bruno@clisp.org>
12726
12727         * modules/gettext (Files): Add m4/glibc2.m4.
12728
12729 2005-02-24  Bruno Haible  <bruno@clisp.org>
12730
12731         * m4/gettext.m4, intdiv0.m4, intmax.m4, inttypes-pri.m4, lcmessage.m4:
12732         * m4/lib-link.m4, lib-prefix.m4, nls.m4, po.m4, printf-posix.m4:
12733         * m4/progtest.m4:
12734         Update from GNU gettext 0.14.2.
12735         * m4/glibc2.m4: New file, from GNU gettext 0.14.2.
12736
12737 2005-02-24  Bruno Haible  <bruno@clisp.org>
12738
12739         * lib/localcharset.c: Update from GNU gettext 0.14.2.
12740         * lib/config.charset: Update from GNU gettext 0.14.2.
12741
12742 2005-02-24  Bruno Haible  <bruno@clisp.org>
12743
12744         * lib/gettext.h: Update from GNU gettext 0.14.2.
12745
12746 2005-02-23  Simon Josefsson  <jas@extundo.com>
12747
12748         * m4/iconvme.m4: New file.
12749
12750 2005-02-23  Jim Meyering  <jim@meyering.net>
12751
12752         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Revert yesteday's
12753         change.
12754         Thanks to Bruno Haible for catching it.
12755
12756 2005-02-22  Simon Josefsson  <jas@extundo.com>
12757
12758         * modules/iconvme: New file.
12759
12760         * MODULES.html.sh: Add iconvme.
12761
12762 2005-02-22  Simon Josefsson  <jas@extundo.com>
12763
12764         * lib/iconvme.h, lib/iconvme.c: New files, from libc.
12765
12766 2005-02-22  Simon Josefsson  <jas@extundo.com>
12767
12768         * config/srclist.txt: Sync iconvme.h, iconvme.c from libc.
12769
12770 2005-02-22  Jim Meyering  <jim@meyering.net>
12771
12772         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Fix typo:
12773         s/ifndef/ifdef/.
12774
12775 2005-02-20  Neil Conway  <neilc@samurai.com>
12776
12777         * lib/xgethostname.c (xgethostname): Check for ENOMEM, which is
12778         returned by OSX/Darwin if the specified buffer is not large
12779         enough for the hostname.
12780
12781 2005-02-03  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
12782
12783         * lib/argp-help.c (__argp_help): Create a fake struct argp_state and
12784         pass it to _help, otherwise the latter coredumps trying to
12785         dereference state.root_argp.
12786
12787 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
12788
12789         * modules/chdir-long (Depends-on): Add memrchr.
12790         * modules/memrchr (Files): Add lib/memrchr.h.
12791         (Include): "memrchr.h".
12792
12793 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
12794
12795         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Add AC_LIBSOURCES, for memrchr.h.
12796
12797 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
12798
12799         * lib/memrchr.h: New file.
12800         * lib/chdir-long.c: Include it.
12801         * lib/memrchr.c [!defined _LIBC]: Include it rather than <string.h>
12802         Don't bother including stddef.h.
12803
12804 2005-02-01  Paul Eggert  <eggert@cs.ucla.edu>
12805
12806         * lib/mountlist.h (MOUNTLIST_H_): New macro, to protect against double
12807         inclusion.
12808         Include <sys/types.h>, for dev_t.
12809         (ME_DUMMY, ME_REMOTE): Move from here....
12810         * lib/mountlist.c (ME_DUMMY, ME_REMOTE): To here.
12811         (ME_DUMMY): Count "subfs" as a dummy.  Problem reported by
12812         Dmitry V. Levin.
12813         Include mountlist.h first, to test the interface.
12814
12815 2005-01-29  Bruno Haible  <bruno@clisp.org>
12816
12817         * lib/progname.c (program_name): Initialize.
12818         Needed when linking statically on MacOS X.
12819
12820 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
12821
12822         Sync from coreutils.
12823         * modules/getloadavg (Files): Remove m4/getloadavg.m4.
12824         (Depends-on): Add c-strtod.
12825         (configure.ac): Replace gl_FUNC_GETLOADAVG with AC_FUNC_GETLOADAVG.
12826
12827 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
12828
12829         Sync from coreutils.
12830         * m4/getloadavg.m4, glibc.m4, search-libs.m4: Remove.
12831
12832         Remove files that are specific to coreutils.
12833         * m4/check-decl.m4, jm-macros.m4, lib-check.m4, prereq.m4: Remove.
12834
12835 2005-01-28  Bruno Haible  <bruno@clisp.org>
12836
12837         * modules/javacomp: New file.
12838         * MODULES.html.sh (Java): Add javacomp.
12839
12840 2005-01-28  Bruno Haible  <bruno@clisp.org>
12841
12842         * m4/javacomp.m4: New file, from GNU gettext.
12843
12844 2005-01-28  Bruno Haible  <bruno@clisp.org>
12845
12846         * lib/javacomp.sh.in: New file, from GNU gettext.
12847         * lib/javacomp.h: New file, from GNU gettext.
12848         * lib/javacomp.c: New file, from GNU gettext.
12849
12850 2005-01-26  Simon Josefsson  <jas@extundo.com>
12851
12852         * lib/gai_strerror.c: Use GPL in header.
12853
12854 2005-01-26  Bruno Haible  <bruno@clisp.org>
12855
12856         * modules/javaexec: New file.
12857         * MODULES.html.sh (Java): Add javaexec.
12858
12859 2005-01-26  Bruno Haible  <bruno@clisp.org>
12860
12861         * m4/javaexec.m4: New file, from GNU gettext.
12862
12863 2005-01-26  Bruno Haible  <bruno@clisp.org>
12864
12865         * lib/javaexec.sh.in: New file, from GNU gettext.
12866         * lib/javaexec.h: New file, from GNU gettext.
12867         * lib/javaexec.c: New file, from GNU gettext.
12868
12869 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
12870
12871         * modules/lchown (Depends-on): Remove lchown.h
12872
12873 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
12874
12875         * m4/sysexits.m4 (gl_SYSEXITS): Reverted logic. SYSEXITS_H
12876         must be defined if the header file was not found, in order
12877         to provide a replacement. Reported by Todd Vierling <tv@duh.org>
12878
12879 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
12880
12881         * lib/argp-help.c (hol_entry_help): Avoid using non-constant
12882         initializers for struct pentry_state.
12883         (__argp_error): Check return value of __asprintf
12884         (__argp_failure): Translate error message
12885
12886         * lib/argp-parse.c: Removed braces around the expansion of N_()
12887
12888 2005-01-23  Paul Eggert  <eggert@cs.ucla.edu>
12889
12890         * m4/acl.m4, afs.m4, alloca.m4, argp.m4, assert.m4, atexit.m4,
12891         backupfile.m4, base64.m4, bison.m4, c-bs-a.m4, c-stack.m4,
12892         c-strtod.m4, calloc.m4, canon-host.m4, canonicalize.m4,
12893         clock_time.m4, cloexec.m4, closeout.m4, d-ino.m4, d-type.m4,
12894         dirfd.m4, dirname.m4, dos.m4, dup2.m4, error.m4, euidaccess.m4,
12895         exclude.m4, exitfail.m4, extensions.m4, fcntl-safer.m4,
12896         file-type.m4, fileblocks.m4, filemode.m4, fnmatch.m4, fpending.m4,
12897         free.m4, fstypename.m4, fsusage.m4, ftruncate.m4, getaddrinfo.m4,
12898         getcwd-path-max.m4, getcwd.m4, getdate.m4, getdomainname.m4,
12899         getgroups.m4, gethostname.m4, getline.m4, getndelim2.m4,
12900         getnline.m4, getopt.m4, getpagesize.m4, getpass.m4, getsubopt.m4,
12901         gettime.m4, gettimeofday.m4, getugroups.m4, getusershell.m4,
12902         group-member.m4, hard-locale.m4, hash.m4, host-os.m4, human.m4,
12903         idcache.m4, inttostr.m4, isdir.m4, jm-winsz1.m4, jm-winsz2.m4,
12904         link-follow.m4, long-options.m4, ls-mntd-fs.m4, lstat.m4,
12905         makepath.m4, mathl.m4, md5.m4, memcasecmp.m4, memchr.m4,
12906         memcmp.m4, memcoll.m4, memcpy.m4, memmem.m4, memmove.m4,
12907         memrchr.m4, memset.m4, mkdir-slash.m4, mkstemp.m4, mktime.m4,
12908         modechange.m4, mountlist.m4, nanosleep.m4, obstack.m4,
12909         path-concat.m4, pathmax.m4, perl.m4, physmem.m4, poll.m4,
12910         posixtm.m4, posixver.m4, putenv.m4, quote.m4, quotearg.m4,
12911         readdir.m4, readtokens.m4, readutmp.m4, regex.m4, rename.m4,
12912         restrict.m4, rmdir-errno.m4, rmdir.m4, rpmatch.m4, same.m4,
12913         savedir.m4, settime.m4, sha1.m4, sig2str.m4, snprintf.m4,
12914         sockpfaf.m4, st_dm_mode.m4, st_mtim.m4, stat.m4, stdint.m4,
12915         stdio-safer.m4, strchrnul.m4, strdup.m4, strerror.m4,
12916         strerror_r.m4, strftime.m4, strndup.m4, strnlen.m4, strsep.m4,
12917         strtod.m4, strtoimax.m4, strtok_r.m4, strtol.m4, strtoll.m4,
12918         strtoul.m4, strtoull.m4, strtoumax.m4, strverscmp.m4, sysexits.m4,
12919         time_r.m4, timegm.m4, timespec.m4, tm_gmtoff.m4, tzset.m4,
12920         uint32_t.m4, uintptr_t.m4, unistd-safer.m4, unlink-busy.m4,
12921         unlocked-io.m4, uptime.m4, userspec.m4, utimbuf.m4, utime.m4,
12922         utimecmp.m4, utimens.m4, utimes-null.m4, vsnprintf.m4, xalloc.m4,
12923         xgetcwd.m4, xreadlink.m4, xstrndup.m4, xstrtod.m4, xstrtoimax.m4,
12924         xstrtol.m4, xstrtoumax.m4, yesno.m4:
12925         Use an all-permissive copyright notice, recommended by RMS.
12926
12927 2005-01-21  Paul Eggert  <eggert@cs.ucla.edu>
12928
12929         * modules/chdir-long (Depends-on): Remove mempcpy.
12930
12931 2005-01-21  Jim Meyering  <jim@meyering.net>
12932
12933         * lib/openat.h (AT_SYMLINK_NOFOLLOW): Define to 4096, so it's the
12934         same value as for Solaris 9.
12935
12936         * lib/chdir-long.c (chdir_long): Rewrite to remove limitation on
12937         component length.  This included changing the parameter to be
12938         of type `char *' rather than `char const *'.
12939         * lib/chdir-long.h (chdir_long): Update prototype.
12940
12941         * lib/openat.c (fdopendir, fstatat): New functions.
12942         * lib/openat.h: Include headers required for use of DIR and struct
12943         stat.
12944         [AT_SYMLINK_NOFOLLOW]: Define.
12945         (fdopendir, fstatat): Add prototypes.
12946
12947 2005-01-21  Bruno Haible  <bruno@clisp.org>
12948
12949         * modules/classpath: New file.
12950         * MODULES.html.sh (Java): Add classpath.
12951
12952 2005-01-21  Bruno Haible  <bruno@clisp.org>
12953
12954         * lib/classpath.h: New file, from GNU gettext.
12955         * lib/classpath.c: New file, from GNU gettext.
12956
12957 2005-01-20  Simon Josefsson  <jas@extundo.com>
12958
12959         * modules/version-etc-fsf: New file.
12960
12961 2005-01-20  Simon Josefsson  <jas@extundo.com>
12962
12963         * lib/version-etc-fsf.c: New file, with version_etc_copyright.
12964         * lib/version-etc.c: Remove version_etc_copyright.
12965         * lib/version-etc.h (version_etc_copyright): Use [] instead of * in
12966         prototype, suggested by Paul Eggert <eggert@CS.UCLA.EDU>.
12967
12968 2005-01-20  Simon Josefsson  <jas@extundo.com>
12969
12970         * lib/base64.h (isbase64): Add.
12971
12972         * lib/base64.c (isb64): Rename to isbase64, use to_uchar instead of
12973         using a unsigned prototype, don't inline.
12974         (base64_decode): Use it.
12975
12976 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
12977
12978         * m4/save-cwd.m4 (gl_SAVE_CWD): Remove check for fcntl; we now assume
12979         it.
12980
12981 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
12982
12983         * lib/save-cwd.c (save_cwd): Remove code to support the case
12984         where fchdir is missing or flaky.
12985
12986 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
12987
12988         * MODULES.html.sh (Command-line arguments): Add version-etc-fsf.
12989
12990 2005-01-19  Paul Eggert  <eggert@cs.ucla.edu>
12991
12992         * modules/mempcpy (Makefile.am): Remove mention of mempcpy.h;
12993         AC_LIBSOURCES now does this.
12994         * MODULES.html.sh (Sizes of integer types <limits.h>): New element,
12995         with new ullong_max module.
12996
12997 2005-01-19  Bruno Haible  <bruno@clisp.org>
12998
12999         * modules/sh-quote: New file.
13000         * MODULES.html.sh (Executing programs): Add sh-quote.
13001
13002 2005-01-19  Bruno Haible  <bruno@clisp.org>
13003
13004         * lib/sh-quote.h: New file, from GNU gettext.
13005         * lib/sh-quote.c: New file, from GNU gettext.
13006
13007 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
13008
13009         Merge from coreutils.
13010         * m4/ullong_max.m4: New file.
13011         * m4/jm-macros.m4 (gl_MACROS): Require gl_ULLONG_MAX.
13012         (gl_MACROS): Assume localeconv exists.
13013
13014 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
13015
13016         Merge changes from coreutils, as described below in several
13017         changelogs dated today.
13018
13019         * lib/save-cwd.c: Include "save-cwd.h" before other include files.
13020         (O_DIRECTORY): Remove; not needed here, since "." must be
13021         a directory.  All uses removed.
13022         (save_cwd): Use __sgi || __sun, not sun || __sun.  __sun is
13023         universal on Suns, and we also need to test for IRIX.
13024         Revamp code to use 'if' rather than '#if'.
13025         Avoid unnecessary comparison of cwd->desc to 0.
13026
13027         * lib/utimens.c (futimens): Robustify the previous patch, by checking
13028         for known valid error numbers rather than observed invalid ones.
13029
13030 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
13031
13032         * modules/ullong_max: New file.
13033
13034         * modules/chdir-long, modules/openat: New files.
13035         * modules/save-cwd (Depends-on): Depend on chdir-long.
13036         (Makefile.am): Remove lib_SOURCES; now handled by AC_LIBSOURCES.
13037
13038 2005-01-18  Jim Meyering  <jim@meyering.net>
13039
13040         Merge from coreutils.
13041         * m4/chdir-long.m4, m4/openat.m4: New files.
13042         * m4/save-cwd.m4 (gl_SAVE_CWD): Add AC_LIBSOURCES for save-cwd.c,
13043         save-cwd.h.  Add AC_LIBOBJ for save-cwd.
13044         * m4/chown.m4 (gl_FUNC_CHOWN): When cross-compiling, assume that chown
13045         is sane and DOES follow symlinks.  Besides, testing 20 different
13046         systems found no broken chown implementations.
13047         Prompted by a change in rsync's copy of this macro.
13048         * m4/jm-macros.m4 (gl_MACROS): Require gl_FUNC_CHDIR_LONG.
13049
13050         * m4/lchown.m4 (gl_FUNC_LCHOWN): Use AC_LIBSOURCES.
13051
13052         * m4/utimes.m4: Work around tests/touch/empty-file failure on a system
13053         (sparc64, Linux-2.4.28, glibc-2.3.3) that didn't honor utimes'
13054         NULL-means-set-to-current-time semantics.
13055         Remove temporary file immediately, rather than waiting
13056         for configure's at-exit trap code to do it.
13057
13058 2005-01-18  Jim Meyering  <jim@meyering.net>
13059
13060         * lib/version-etc.c (version_etc_copyright): Update copyright date.
13061
13062         * lib/utimens.c (futimens): Account for the fact that futimes
13063         can also fail with errno == ENOSYS or errno == ENOENT.
13064         Patch from Dmitry V. Levin.
13065
13066         Change the name of the robust chdir function from chdir to chdir_long.
13067         * lib/save-cwd.c: Include chdir-long.h rather than chdir.h.
13068         (restore_cwd): Use chdir_long, not chdir.
13069         * lib/chdir-long.c: Renamed from chdir.c.
13070         * lib/chdir-long.h: Renamed from chdir.h.
13071         [!defined PATH_MAX]: Define chdir_long to chdir on systems like the
13072         Hurd.
13073
13074 2005-01-18  Bruno Haible  <bruno@clisp.org>
13075
13076         * m4/allocsa.m4, m4/codeset.m4, m4/copy-file.m4, m4/eaccess.m4:
13077         * m4/eealloc.m4, m4/eoverflow.m4, m4/execute.m4, m4/fatal-signal.m4:
13078         * m4/findprog.m4, m4/glibc21.m4, m4/iconv.m4, m4/intmax_t.m4:
13079         * m4/inttypes_h.m4, m4/lib-ld.m4, m4/lib-link.m4, m4/lib-prefix.m4:
13080         * m4/linebreak.m4, m4/localcharset.m4, m4/longdouble.m4:
13081         * m4/longlong.m4, m4/mbrtowc.m4, m4/mbstate_t.m4, m4/mbswidth.m4:
13082         * m4/mkdtemp.m4, m4/pipe.m4, m4/readlink.m4, m4/safe-read.m4:
13083         * m4/safe-write.m4, m4/setenv.m4, m4/sig_atomic_t.m4:
13084         * m4/signalblocking.m4, m4/signed.m4, m4/size_max.m4, m4/ssize_t.m4:
13085         * m4/stdbool.m4, m4/stdint_h.m4, m4/stpcpy.m4, m4/stpncpy.m4:
13086         * m4/strcase.m4, m4/strcspn.m4, m4/strpbrk.m4, m4/strstr.m4:
13087         * m4/ucs4-utf.m4, m4/uintmax_t.m4, m4/ulonglong.m4, m4/unicodeio.m4:
13088         * m4/utf-ucs4.m4, m4/vasnprintf.m4, m4/vasprintf.m4:
13089         * m4/wait-process.m4, m4/wchar_t.m4, m4/wint_t.m4, m4/xsize.m4:
13090         Use an all-permissive copyright notice, recommended by RMS.
13091
13092 2005-01-18  Bob Proulx  <bob@proulx.com>
13093
13094         * lib/obstack.c [DEFAULT_ALIGNMENT]: Use an intermediate type to
13095         simplify offsetof() macro construct to avoid compile failure with
13096         native HP-UX 11.0 ANSI C compiler.
13097
13098 2005-01-17  Bruno Haible  <bruno@clisp.org>
13099
13100         * lib/stpncpy.c: Remove HAVE_STPNCPY and gnu_stpncpy renaming,
13101         redundant because stpncpy.m4 takes care of it.
13102
13103 2005-01-17  Bruno Haible  <bruno@clisp.org>
13104
13105         * lib/progreloc.c: Include xalloc.h instead of xmalloc.h.
13106
13107 2005-01-17  Bruno Haible  <bruno@clisp.org>
13108
13109         * lib/progreloc.c (xstrdup): Define as strdup if no xmalloc should be
13110         used.
13111
13112 2005-01-17  Bruno Haible  <bruno@clisp.org>
13113
13114         * lib/fwriteerror.h (fwriteerror): Change specification to include
13115         fclose.
13116         * lib/fwriteerror.c: Include <stdbool.h>.
13117         (fwriteerror): At the end, close the file stream. Record whether
13118         stdout was already closed.
13119
13120 2005-01-17  Bruno Haible  <bruno@clisp.org>
13121
13122         * lib/execute.c (environ): Declare if needed.
13123         * lib/pipe.c (environ): Likewise.
13124         Reported by Michael Schloh von Bennewitz <michael.schloh@cw.com>.
13125
13126 2005-01-11  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
13127
13128         * modules/argp: Depend on vsnprintf
13129
13130 2005-01-10  Jim Meyering  <jim@meyering.net>
13131
13132         * modules/closeout (Depends-on): Add atexit.
13133
13134 2005-01-06  Bruno Haible  <bruno@clisp.org>
13135
13136         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Rename stpncpy to gnu_stpncpy here.
13137
13138 2005-01-04  Paul Eggert  <eggert@cs.ucla.edu>
13139
13140         * lib/human.c (SIZE_MAX, UINTMAX_MAX): Move these conditional
13141         definitions to be after all include files, to avoid collisions.
13142         Problem reported by Bob Proulx.
13143
13144 2005-01-04  Jim Meyering  <jim@meyering.net>
13145
13146         Changes imported from coreutils.
13147         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Rather than using "conftestXXXXXX"
13148         as the mkstemp template, use a temporary directory and an
13149         8.3-friendly template to avoid trouble on systems like DJGPP.
13150         Reported by Juan M. Guerrero via Stepan Kasal.
13151         * m4/(gl_FUNC_MKSTEMP): Include <unistd.h> for the declaration of
13152         close. Remove the temporary directory right away, rather than waiting
13153         for configure's at-exit trap code to do it.
13154         Suggestion from Stepan Kasal.
13155
13156 2005-01-01  Simon Josefsson  <jas@extundo.com>
13157
13158         * gnulib-tool: Print #include directives when --import'ing.
13159
13160 2004-12-28  Simon Josefsson  <jas@extundo.com>
13161
13162         * tests/test-base64.c: Include required header files.  Remove
13163         unused variables.
13164
13165 2004-12-28  Paul Eggert  <eggert@cs.ucla.edu>
13166
13167         * modules/error (Depends-on): Remove gettext.
13168
13169 2004-12-28  Paul Eggert  <eggert@cs.ucla.edu>
13170
13171         * lib/error.c [!_LIBC && !ENABLE_NLS]: Do not include "gettext.h";
13172         not needed.  This removes a dependency on the gettext module.
13173         [defined _LIBC]: Do not include <libintl.h>; not needed.
13174
13175 2004-12-24  Paul Eggert  <eggert@cs.ucla.edu>
13176
13177         * m4/c-strtod.m4 (gl_C99_STRTOLD): New macro.
13178         (gl_C_STRTOD): Use it instead of AC_CHECK_DECLS_ONCE(strtold).
13179
13180 2004-12-24  Paul Eggert  <eggert@cs.ucla.edu>
13181
13182         * lib/c-strtod.c (STRTOD): Depend on HAVE_C99_STRTOLD, not
13183         HAVE_DECL_STRTOLD.
13184
13185 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
13186
13187         * modules/getdate (Depends-on): Remove alloca-opt.
13188
13189 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
13190
13191         * m4/getdate.m4 (gl_GETDATE): Remove AC_FUNC_ALLOCA.
13192
13193 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
13194
13195         * lib/argp-parse.c: Include <stddef.h>.
13196         (alignof, alignto): New macros.
13197         (parser_init): Don't assume that void * is aligned sufficiently
13198         for struct option.
13199
13200         * lib/getdate.y (YYSTACK_USE_ALLOCA): Define to 0, since there's no
13201         need to extend the stack.
13202         (YYINITDEPTH): New macro, so that the initial stack isn't overly
13203         large.
13204
13205 2004-12-22  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
13206
13207         * lib/argp-parse.c (parser_init): Avoid arithmetics on void pointers.
13208
13209 2004-12-19  Paul Eggert  <eggert@cs.ucla.edu>
13210
13211         * modules/regex (lib_SOURCES): Remove regex.c, undoing previous
13212         (2004-10-24) change.  Apparently this was a false alarm.
13213
13214         * modules/getdate: Depend on alloca-opt, not alloca.
13215
13216 2004-12-19  Paul Eggert  <eggert@cs.ucla.edu>
13217
13218         * lib/alloca_.h: Conditionalize on _GNULIB_ALLOCA_H, not _ALLOCA_H.
13219         Remove now-obsolete comment about AIX.
13220         * lib/getdate.y: Include <alloca.h> only if HAVE_ALLOCA.
13221         (YYSTACK_USE_ALLOCA): Define to 0 if !HAVE_ALLOCA.
13222         (YYMAXDEPTH): New macro.
13223
13224 2004-12-18  Simon Josefsson  <jas@extundo.com>
13225
13226         * modules/alloca: Depend on alloca-opt, instead of duplicating it.
13227
13228 2004-12-18  Bruno Haible  <bruno@clisp.org>
13229
13230         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Also test for sigaction.
13231
13232 2004-12-18  Bruno Haible  <bruno@clisp.org>
13233
13234         * lib/fatal-signal.c (fatal_signals): Make non-const.
13235         (init_fatal_signals): New function.
13236         (uninstall_handlers, install_handlers): Ignore signals that were set to
13237         SIG_IGN.
13238         (at_fatal_signal): Call init_fatal_signals.
13239         (init_fatal_signal_set): Likewise. Ignore signals that were set to
13240         SIG_IGN.
13241         Reported by Paul Eggert.
13242
13243 2004-12-18  Bruno Haible  <bruno@clisp.org>
13244
13245         * doc/alloca.texi: New file.
13246         * doc/alloca-opt.texi: New file.
13247
13248 2004-12-17  Jim Meyering  <jim@meyering.net>
13249
13250         * config/install-sh: Use `(exit N); exit N', not `(exit N); exit'.
13251         Otherwise, install-sh could exit with improper exit status when
13252         exiting via a trapped interrupt.  Thanks to a report from Bob Proulx.
13253
13254 2004-12-16  Simon Josefsson  <jas@extundo.com>
13255
13256         * tests/test-base64.c: Add license.
13257
13258 2004-12-15  Stepan Kasal  <address@hidden>
13259
13260         * gnulib-tool (func_emit_lib_Makefile_am): Shorten a long sed command.
13261
13262 2004-12-12  Paul Eggert  <eggert@cs.ucla.edu>
13263
13264         * modules/getcwd (Files): Add m4/d-ino.m4.
13265         Suggested by Mark D. Baushke.
13266
13267 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
13268
13269         * lib/getdate.y (textint): New member "negative".
13270         (time_zone_hhmm): New function.
13271         Expect 14 shift-reduce conflicts, not 13.
13272         (o_colon_minutes): New rule.
13273         (time, zone): Use it to add support for +HH:MM, UTC+HH:MM.
13274         (yylex): Set the "negative" member of signed numbers.
13275
13276 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
13277
13278         * doc/getdate.texi (Time of day items, Time zone items):
13279         Describe new formats +00:00, UTC+00:00.
13280
13281 2004-12-07  Paul Eggert  <eggert@cs.ucla.edu>
13282
13283         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Fix typo in previous change:
13284         spurious "-l"s.  Problem reported by Stepan Kasal.
13285
13286 2004-12-06  Paul Eggert  <eggert@cs.ucla.edu>
13287
13288         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): New macro, to work around bug
13289         in Autoconf 2.59.  Problem reported by Mark D. Baushke.
13290
13291 2004-12-04  Simon Josefsson  <jas@extundo.com>
13292
13293         * modules/getaddrinfo (License): Add LGPL, reported by Yoann
13294         Vandoorselaere <yoann@prelude-ids.org>.
13295
13296 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
13297
13298         Changes imported from coreutils.
13299         * m4/hard-locale.m4 (gl_HARD_LOCALE): Assume locale.h and setlocale
13300         exist.
13301         * m4/human.m4 (gl_HUMAN): Assume locale.h and localeconv exist.
13302
13303 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
13304
13305         Changes imported from coreutils.
13306         * lib/hard-locale.c: Assume <locale.h> exists.
13307         Include "strdup.h".
13308         (GLIBC_VERSION): New macro.
13309         (hard_locale): Assume setlocale exists.
13310         Rewrite to avoid #ifdef.
13311         Use strdup rather than malloc + strcpy.
13312         * lib/human.c: Assume <locale.h> exists.
13313         (human_readable): Assume localeconv exists.
13314
13315 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
13316
13317         * modules/hard-locale (Depends-on): Add strdup.
13318
13319 2004-12-01  Jakub Jelinek  <jakub@redhat.com>
13320
13321         * lib/mktime.c (__mktime_internal): If SEC_REQUESTED != SEC,
13322         convert T2, not T.  (Imported from libc.)
13323
13324 2004-11-30  Simon Josefsson  <jas@extundo.com>
13325
13326         * modules/restrict (License): Change to LGPL.
13327
13328 2004-11-30  Simon Josefsson  <jas@extundo.com>
13329
13330         * m4/restrict.m4: Add copyright and copying conditions.
13331
13332 2004-11-30  Simon Josefsson  <jas@extundo.com>
13333
13334         * m4/base64.m4: New file.
13335
13336 2004-11-30  Simon Josefsson  <jas@extundo.com>
13337
13338         * MODULES.html.sh (Extra functions based on ANSI C 89): Add
13339         base64.
13340
13341         * tests/test-base64.c: New file.
13342
13343         * modules/base64: New file.
13344
13345 2004-11-30  Paul Eggert  <eggert@cs.ucla.edu>
13346
13347         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX):
13348         Define HAVE_PARTLY_WORKING_GETCWD if getcwd is partly working.
13349
13350         * m4/readutmp.m4 (gl_READUTMP): Don't check for sys/param.h.
13351
13352 2004-11-30  Paul Eggert  <eggert@cs.ucla.edu>
13353
13354         * lib/getcwd.c (is_ENAMETOOLONG): New macro.
13355         (__getcwd.c): Don't restore errno; glibc doesn't.
13356         [HAVE_PARTLY_WORKING_GETCWD && !defined AT_FDCWD]: Try system getcwd
13357         first, falling back to our code only if its results look suspicious.
13358         Ensure that the resulting buffer is only as large as necessary.
13359
13360         * lib/readutmp.c: Include readutmp.h first.
13361         Include <errno.h>, since readutmp.h no longer does that.
13362         * lib/readutmp.h: Don't include <errno.h>,
13363         <sys/param.h>, <time.h>; not needed to establish interface.
13364         (errno): Remove decl.
13365         (HAVE_STRUCT_XTMP_UT_TYPE): Remove; no longer needed.
13366         (UT_TYPE_EQ, UT_TYPE_NOT_DEFINED, UT_TYPE_BOOT_TIME,
13367         UT_TYPE_USER_PROCESS, IS_USER_PROCESS): New macros.
13368
13369 2004-11-28  Simon Josefsson  <jas@extundo.com>
13370
13371         * lib/base64.h, base64.c: New file.
13372
13373 2004-11-27  Paul Eggert  <eggert@cs.ucla.edu>
13374
13375         * lib/getcwd.h: New file, which I forgot to check in on 2004-11-25.
13376
13377 2004-11-26  Paul Eggert  <eggert@cs.ucla.edu>
13378
13379         * modules/getcwd (Files): Add lib/getcwd.h, m4/getcwd.m4.
13380         (Depends-on): Remove pathmax, same.  Add mempcpy.
13381         (configure.ac): GL_FUNC_GETCWD_PATH_MAX -> gl_FUNC_GETCWD.
13382         (Makefile.am): Append getcwd.h to lib_SOURCES.
13383         (Include): Add getcwd.h.
13384         (Maintainer): Change from Jim Meyering to "all, glibc",
13385         since getdate now uses intended-for-glibc code.
13386         * modules/xgetcwd (Files): Remove m4/getcwd.m4.
13387         (Depends-on): Depend on getcwd.  Do not depend on pathmax.
13388
13389 2004-11-25  Paul Eggert  <eggert@cs.ucla.edu>
13390
13391         Fix problems reported by Scott S. Tinsley for HP-UX 11.11 using
13392         HP's ANSI C compiler.
13393         * lib/fsusage.c (statvfs) [HAVE_SYS_STATVFS_H]: Remove decl.
13394         Declaring int functions causes warnings on some modern systems and
13395         shouldn't be needed to compile on ancient ones.
13396         * lib/same.c (MIN) [defined MIN]: Don't define, since it's already
13397         defined.
13398
13399         * lib/getcwd.c: Replace by a copy of glibc/sysdeps/posix/getcwd.c, but
13400         with the following changes.
13401         (__set_errno): Parenthesize properly.
13402         Include <stdbool.h>.
13403         (MIN, MAX, MATCHING_INO): New macros.
13404         (__getcwd): Define with prototype, not K&R form.
13405         Use heuristics to allocate default buffer on stack if possible.
13406         If AT_FDCWD is defined, use openat and fstatat to avoid O(N**2)
13407         behavior, and to avoid the PATH_MAX limit when computing
13408         ../../../../...
13409         Use MATCHING_INO to compare inode number to file.
13410         Check for arithmetic overflow in size calculations.
13411         Fix bug in reallocation of dot array that caused getcwd to fail
13412         on directories nested deeper than 75.
13413         Be more careful about saving errno on error.
13414         Do not use realloc; use only free+malloc, as this is a bit
13415         more flexible and avoids a needless copy operation.
13416         Do not inspect st_dev and st_ino for symbolic links; POSIX
13417         doesn't specify the latter.
13418         Check for closedir errors.
13419         Avoid needless casts.
13420         Use "#ifdef weak_alias" around weak_alias, to be like other
13421         glibc code.
13422         The following changes to getcwd.c have effect only when used in
13423         gnulib; they have no effect inside glibc proper.
13424         (#pragma alloca) [defined _AIX && !defined __GNUC__]: Remove,
13425         as alloca isn't used.
13426         (alloca, __alloca): Likewise.
13427         [!_LIBC]: Include "getcwd.h", "mempcpy.h".
13428         Include <stddef.h>, <stdlib.h>, <string.h>, <limits.h>
13429         unconditionally, as gnulib assumes C89 or better.
13430         Do not include <sys/param.h>.
13431         (errno) [!defined __GNU_LIBRARY__ && !defined STDC_HEADERS]: Remove
13432         no-longer-necessary 'extern int errno' decl; gnulib assumes C89 or
13433         better.
13434         (NULL) [!defined NULL]: Remove; we assume C89 or better.
13435         Include <dirent.h> in a way that is compatible with modern Autoconf.
13436         (_D_ALLOC_NAMELEN, _D_EXACT_NAMLEN):
13437         New macros, if not already defined.
13438         Include <unistd.h> if _LIBC, not if __GNU_LIBRARY__.
13439         Use "_LIBC", not "defined _LIBC", for consistency.
13440         (HAVE_MEMPCPY): Remove; no longer needed now that gnulib has
13441         a mempcpy module.
13442         (__lstat, __closedir, __opendir, __readdir) [!_LIBC]: New macros.
13443         (GETCWD_RETURN_TYPE): Remove.  All uses replaced by char *.
13444         * lib/xgetcwd.c: David MacKenzie's old code was removed, so give
13445         credit only to Jim Meyering and adjust the copyright dates.
13446         Do not include <limits.h>, <stdio.h>, <sys/types.h>,
13447         <stdlib.h>, <unistd.h>, "pathmax.h".
13448         Instead, include "xgetcwd.h" (first) and "getcwd.h".
13449         (INITIAL_BUFFER_SIZE): Remove.
13450         (xgetcwd): Rely on getcwd, since we now depend on a reliable one.
13451
13452 2004-11-25  Paul Eggert  <eggert@cs.ucla.edu>
13453
13454         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Renamed from
13455         GL_FUNC_GETCWD_PATH_MAX for consistency.  All uses changed.
13456         Use the _ONCE methods, for efficiency.
13457         Check for fcntl.h.  In test program, include <errno.h>
13458         and <fcntl.h> if available.  Remove old K&R cruft from
13459         test program.  Check for common errors in GNU/Linux,
13460         OpenBSD, and Solaris.  Just set gl_cv_func_getcwd_path_max;
13461         don't do AC_LIBOBJ, as that's getcwd.m4's job.
13462         * m4/getcwd.m4 (gl_FUNC_GETCWD_NULL): Renamed from
13463         AC_FUNC_GETCWD_NULL.  All used changed.  Change cache variable
13464         name accordingly.
13465         (gl_FUNC_GETCWD, gl_PREREQ_GETCWD): New macros.  Revamp to
13466         accommodate new getcwd.c.
13467         * m4/jm-macros.m4 (gl_MACROS): Don't require GL_FUNC_GETCWD_PATH_MAX.
13468         * m4/prereq.m4 (gl_PREREQ): Add gl_FUNC_MEMPCPY.
13469         * m4/xgetcwd.m4 (gl_XGETCWD): Replace with gl_FUNC_GETCWD, since
13470         that's all we need now.
13471
13472 2004-11-23  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
13473
13474         * m4/argp.m4 (gl_ARGP): Require gl_GETOPT_SUBSTITUTE unconditionally:
13475         argp-parse.c depends on getopt internals, that means we should
13476         always use our getopt, to be on the safe side.
13477         * m4/getopt.m4 (gl_GETOPT): Check if GETOPT_H is already set, in
13478         order not to spoil the result of an eventual previous invocation
13479         of gl_GETOPT_SUBSTITUTE.
13480
13481 2004-11-23  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
13482
13483         * lib/getopt_.h: Re-addition of __getopt_argv_const caused
13484         redefinition warnings. To avoid them, include the defines
13485         in `#if !defined __need_getopt ... #endif'. The only place
13486         where __getopt_argv_const is used is in definitions
13487         of getopt_long and getopt_long_only below, which are as well
13488         protected by `#ifndef __need_getopt'.
13489         [defined __GETOPT_PREFIX && !defined __need_getopt]: Undef
13490         __need_getopt after including <stdio.h> and <unistd.h> These
13491         headers might have defined it.
13492
13493 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
13494
13495         * m4/utimens.m4 (gl_UTIMENS): Check for futimes function.
13496
13497 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
13498
13499         * lib/utimens.c (__attribute__, ATTRIBUTE_UNUSED): New macros.
13500         (futimens): New function, which uses futimes if available.
13501         (futimens, utimens): Support timespec==NULL, with same semantics
13502         as utime and utimens.
13503         * lib/utimens.h (futimens): New decl.
13504
13505 2004-11-23  Jim Meyering  <jim@meyering.net>
13506
13507         * lib/getopt_.h: Remove trailing blanks.
13508
13509 2004-11-23  Jim Meyering  <jim@meyering.net>
13510
13511         * lib/__fpending.c: Add comment.
13512
13513 2004-11-22  Paul Eggert  <eggert@cs.ucla.edu>
13514
13515         * modules/canonicalize (Depends-on): Add xreadlink.
13516         Problem reported by James Youngman.
13517
13518 2004-11-20  Paul Eggert  <eggert@cs.ucla.edu>
13519
13520         * lib/getopt_.h (__GETOPT_CONCAT, __GETOPT_XCONCAT, __GETOPT_ID):
13521         New macros.
13522         (getopt, getopt_long, getopt_long_only, optarg, opterr, optind,
13523         optopt): Use them instead of invoking ## directly; otherwise, the
13524         symbols will be __GETOPT_PREFIXgetopt rather than rpl_getopt.
13525
13526 2004-11-19  Bruno Haible  <bruno@clisp.org>
13527
13528         * lib/strtok_r.c: Move comments from here...
13529         * lib/strtok_r.h: ... to here.
13530
13531 2004-11-17  Paul Eggert  <eggert@cs.ucla.edu>
13532
13533         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Check for buggy calloc
13534         implementations that mishandle size_t overflow.
13535
13536 2004-11-17  Paul Eggert  <eggert@cs.ucla.edu>
13537
13538         * lib/realloc.c (rpl_realloc): Call 'free' if n==0, since realloc
13539         might fail.  Problem reported by Yoann Vandoorselaere.
13540         * lib/calloc.c (rpl_calloc): Defend against buggy calloc
13541         implementations that mishandle size_t overflow.
13542
13543 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
13544
13545         * modules/canon-host (Depends-on): Add strdup.
13546
13547 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
13548
13549         * m4/canon-host.m4 (gl_CANON_HOST): Check for getaddrinfo.
13550
13551 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
13552
13553         * lib/canon-host.c: Include "strdup.h".
13554         (canon_host): Use getaddrinfo if available, so that IPv6 works.
13555         Use strdup instead of malloc/strcpy to duplicate strings.
13556
13557         * lib/human.h (LONGEST_HUMAN_READABLE): Add 1 for space before unit.
13558         (human_space_before_unit): New constant.
13559         * lib/human.c (human_readable): Support it.
13560
13561         * lib/xgetcwd.c: Include <limits.h>, for PATH_MAX.
13562         (xgetcwd): Set errno correctly when failing.
13563         Work around Solaris 9 bug: getcwd sets errno==ERANGE even though
13564         the failure is actually due to a PATH_MAX problem.
13565
13566         Further getopt changes to make it more likely that glibc will
13567         buy the changes back.
13568         * lib/getopt.c (POSIXLY_CORRECT): New constant.
13569         (getopt): Use it, so to preserve glibc semantic
13570         * lib/getopt1.c (getopt_long, getopt_long_only): Arg is char * const *
13571         when compiling for libc.
13572         * lib/getopt_.h (__getopt_argv_const): Bring it back.
13573         (getopt_long, getopt_long_only): Use it.
13574
13575         * lib/getopt.c (_getopt_initialize, _getopt_internal_r,
13576         _getopt_internal): New arg POSIXLY_CORRECT.  All callers changed.
13577         (getopt): Argv is now char * const *, as per standard.
13578         (_getopt_internal_r, _getopt_internal): Argv is now char **,
13579         not char *__getopt_argv_const *.
13580         * lib/getopt1.c (getopt_long, _getopt_long_r, getopt_long_only,
13581         _getopt_long_only_r): Likewise.
13582         * lib/getopt_.h (getopt, getopt_long, geopt_long_only): Likewise.
13583         * lib/getopt_int.h (_getopt_internal, _getopt_internal_r,
13584         _getopt_long_r, _getopt_long_only_r): Likewise.
13585         * lib/getopt_.h (__getopt_argv_const): Remove.
13586         (getopt): Argv is now char * const *, as per standard.
13587
13588         * lib/getdate.y (tORDINAL): New token.
13589         (day, relunit): Allow it for relative times.
13590         (relative_time_table): Use tORDINAL for ordinals.
13591
13592 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
13593
13594         * doc/getdate.texi (General date syntax): "next" is 1, not 2.
13595         Document that "second" isn't allowed as an ordinal number.
13596
13597 2004-11-16  Jim Meyering  <jim@meyering.net>
13598
13599         * modules/closeout (Depends-on): Add fpending.
13600
13601 2004-11-15  Jim Meyering  <jim@meyering.net>
13602
13603         * lib/closeout.c: Include "__fpending.h" once again.
13604         Include <stdbool.h>.
13605         (close_stdout): Don't fail just because stdout was closed initially,
13606         since some programs don't write to stdout in the normal course of
13607         operation (other than --version and --help), and we don't want this
13608         function to make e.g. `touch file >&-' fail.
13609         But do fail if it was closed and someone has tried to write to it.
13610         E.g., `printf foo >&-' must fail.
13611
13612 2004-11-13  Jim Meyering  <jim@meyering.net>
13613
13614         * m4/jm-macros.m4: Do require gl_FUNC_FPENDING.
13615
13616 2004-11-12  Simon Josefsson  <jas@extundo.com>
13617
13618         * config/srclist.txt: Add strtok_r.c, glibc bought our changes, but a
13619         small doc fix is still pending.
13620
13621 2004-11-11  Simon Josefsson  <jas@extundo.com>
13622
13623         * modules/strtok_r: New file.
13624
13625         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
13626         strtok_r.
13627
13628 2004-11-11  Simon Josefsson  <jas@extundo.com>
13629
13630         * m4/strtok_r.m4: New file.
13631
13632         * m4/getopt.m4: Replace opterr.
13633
13634 2004-11-11  Simon Josefsson  <jas@extundo.com>
13635
13636         * lib/strtok_r.h, strtok_r.c: New file.
13637
13638 2004-11-11  Paul Eggert  <eggert@cs.ucla.edu>
13639
13640         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): Define __GETOPT_PREFIX instead
13641         of replacing opterr, getopt, etc.  This should handle the
13642         powerpc-apple-darwin5.5 problem recently noted by Simon Josefsson.
13643
13644 2004-11-11  Paul Eggert  <eggert@cs.ucla.edu>
13645
13646         * lib/getopt_.h (__getopt_argv_const): New macro, to be used so that
13647         we can stop lying to compilers about the constness of argv when we
13648         are compiled outside glibc.
13649         (getopt, getopt_long, getopt_long_only): Use it.
13650         * lib/getopt.c (_getopt_initialize, _getopt_internal_r,
13651         _getopt_internal, getopt): Likewise.
13652         * lib/getopt1.c (getopt_long, _getopt_long_r, getopt_long_only,
13653         _getopt_long_only_r): Likewise.
13654         * lib/getopt_int.h (_getopt_internal, _getopt_internal_r,
13655         _getopt_long_r, _getopt_long_only_r): Likewise.
13656
13657         * lib/getopt_.h [defined __GETOPT_PREFIX && !defined __need_getopt]:
13658         Include <stdlib.h> and <stdio.h>, and <unistd.h> if available.
13659         Then rename getopt to __GETOPT_PREFIX##getopt, and so forth for
13660         the other external symbols.
13661         (getopt) [!defined __GNU_LIBRARY]: Use prototype, not old-style
13662         declaration, since the above renaming now works around collisions.
13663
13664 2004-11-11  Jim Meyering  <jim@meyering.net>
13665
13666         * lib/linebreak.c: Remove trailing blanks.
13667         * lib/alloca_.h: Likewise.
13668         * lib/acosl.c: Likewise.
13669         * lib/euidaccess.c: Likewise.
13670         * lib/allocsa.h: Likewise.
13671
13672 2004-11-10  Simon Josefsson  <jas@extundo.com>
13673
13674         * m4/getaddrinfo.m4: New file.
13675
13676 2004-11-10  Simon Josefsson  <jas@extundo.com>
13677
13678         * lib/getaddrinfo.h, lib/getaddrinfo.c: New files.
13679
13680 2004-11-10  Simon Josefsson  <jas@extundo.com>
13681
13682         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
13683         getaddrinfo.
13684
13685         * modules/getaddrinfo: New file.
13686
13687 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
13688
13689         * m4/prereq.m4 (gl_PREREQ): Require gt_FUNC_SETENV.
13690
13691 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
13692
13693         * lib/mktime.c (SHR): New macro, which is a portable
13694         substitute for >> that should work even on Crays.
13695         (TIME_T_MIDPOINT, ydhms_diff, __mktime_internal): Use it.
13696         Problem reported by Mark D. Baushke in
13697         <http://lists.gnu.org/archive/html/bug-gnulib/2004-11/msg00071.html>.
13698         * lib/getdate.y (SHR): Likewise.
13699         (tm_diff): Use it.
13700         * lib/strftime.c (SHR): Likewise.
13701         (tm_diff): Use it.
13702         * lib/quotearg.c (struct quoting_options): Use unsigned int for
13703         quote_these_too, so that right shifts are well defined.  All uses
13704         changed.
13705
13706 2004-11-10  Jim Meyering  <jim@meyering.net>
13707
13708         Ensure that no close failure goes unreported.
13709         * lib/closeout.c (close_stdout): Always close stdout.  I.e., don't
13710         return early when it seems there's nothing to flush.
13711         Don't include __fpending.h.
13712
13713 2004-11-10  Jim Meyering  <jim@meyering.net>
13714
13715         * modules/closeout (Depends-on): Remove fpending.
13716
13717 2004-11-10  Jim Meyering  <jim@meyering.net>
13718
13719         * m4/jm-macros.m4 (gl_MACROS): Don't require gl_FUNC_FPENDING.
13720
13721 2004-11-09  Paul Eggert  <eggert@cs.ucla.edu>
13722
13723         * m4/strftime.m4 (_gl_STRFTIME_PREREQS): Remove.  Move its body to
13724         gl_FUNC_STRFTIME.
13725         (gl_FUNC_STRFTIME): Use AC_CHECK_FUNCS_ONCE and AC_CHECK_HEADERS_ONCE
13726         and AC_REQUIRE when possible, to avoid duplicate checks.
13727         Check for <wchar.h>.
13728
13729 2004-11-09  Paul Eggert  <eggert@cs.ucla.edu>
13730
13731         * lib/strftime.c (DO_MULTIBYTE): Check for wchar.h, too.
13732
13733 2004-11-09  Bruno Haible  <bruno@clisp.org>
13734
13735         * m4/sockpfaf.m4: New file.
13736
13737 2004-11-05  Bruno Haible  <bruno@clisp.org>
13738
13739         * lib/readlink.c: Include stddef.h, needed for size_t on Woe32.
13740         Reported by Mark D. Baushke <mdb@cvshome.org>.
13741
13742 2004-11-04  Bruno Haible  <bruno@clisp.org>
13743
13744         2004-09-11  Bruno Haible  <bruno@clisp.org>
13745                 * allocsa.valgrind: New file.
13746         2004-02-06  Bruno Haible  <bruno@clisp.org>
13747                 * allocsa.h (sa_alignof): Define differently with HP-UX cc, to
13748                 avoid a bug of this cc on HP-UX 10.20 dealing with enums.
13749                 Reported by Christopher Seip <chris.seip@hp.com>.
13750
13751 2004-11-04  Bruno Haible  <bruno@clisp.org>
13752
13753         * modules/allocsa (Files): Add lib/allocsa.valgrind.
13754         (Makefile.am): Distribute it.
13755
13756 2004-11-03  Paul Eggert  <eggert@cs.ucla.edu>
13757
13758         * lib/xreadlink.c (xreadlink): AIX and HP-UX readlink return -1
13759         with errno == ERANGE if the buffer is too small.
13760         Problem reported by Mark D. Baushke.
13761
13762 2004-11-03  Albert Chin  <china@thewrittenword.com>
13763             Paul Eggert  <eggert@cs.ucla.edu>
13764
13765         * m4/uint32_t.m4 (gl_AC_TYPE_UINT32_T): When determining uint32_t
13766         equivalent, substitute $ac_type for equivalent type rather than
13767         blindly using uint32_t *always* which won't work if uint32_t is not
13768         available.  Define _UINT32_T to work around typedef of uint32_t if
13769         <sys/sched.h>, <pthread.h>, or <semaphore.h> used on Solaris
13770         2.5.1.
13771
13772 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
13773
13774         * m4/jm-macros.m4: Sync from coreutils.
13775         (gl_MACROS): Check for mbrlen, for pathchk.
13776         (gl_CHECK_ALL_TYPES): Require AC_TYPE_MBSTATE_T, for pathchk.
13777
13778 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
13779
13780         * lib/xreadlink.c (MAXSIZE): New macro.
13781         (xreadlink): Use it instead of SSIZE_MAX.  Ensure initial buffer
13782         size does not exceed MAXSIZE.  Avoid cast.
13783         As suggested by Mark D. Baushke in
13784         <http://lists.gnu.org/archive/html/bug-gnulib/2004-11/msg00009.html>,
13785         if readlink fails with buffer size just under MAXSIZE, try again
13786         with MAXSIZE.
13787
13788 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
13789
13790         * config/srclist.txt: Add mktime.c; glibc bought all our changes.
13791
13792 2004-11-02  Derek R. Price  <derek@ximbiot.com>
13793         and  Paul Eggert  <eggert@cs.ucla.edu>
13794
13795         * lib/getdate.y [!TEST]: Include <stdio.h>, since we use sprintf now.
13796         (get_date): Overparenthesize to avoid GCC warning.
13797
13798 2004-11-02  Bruno Haible  <bruno@clisp.org>
13799
13800         * m4/setenv.m4 (gt_FUNC_SETENV): Define VOID_UNSETENV if unsetenv()
13801         returns void.
13802
13803 2004-11-02  Bruno Haible  <bruno@clisp.org>
13804
13805         * lib/setenv.h (unsetenv): Define as a macro if the system's unsetenv()
13806         function returns void.
13807
13808 2004-11-01  Paul Eggert  <eggert@cs.ucla.edu>
13809
13810         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for declarations of
13811         fflush_unlocked, flockfile, funlockfile, funlockfile,
13812         fputs_unlocked, putc_unlocked.
13813
13814 2004-11-01  Paul Eggert  <eggert@cs.ucla.edu>
13815
13816         * lib/getpass.c (fflush_unlocked, flockfile, funlockfile)
13817         (funlockfile, fputs_unlocked, putc_unlocked): Don't define if
13818         already declared.
13819
13820 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
13821
13822         * modules/getdate (Files): Add doc/getdate.texi.
13823         (Depends-on): Add setenv, xalloc.
13824
13825 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
13826
13827         * lib/getdate.y: Add support for TZ="foo" within a date string.
13828         Fix some bugs near time_t boundaries.  Reject dates with
13829         out-of-range components, e.g., "Sept 31".
13830         Include <stdlib.h>, "setenv.h", "xalloc.h".
13831         (ISDIGIT_LOCALE): Remove; unused.
13832         Note that the TZ and time functions used here are not reentrant.
13833         (mktime_ok, get_tz): New functions.
13834         (TZBUFSIZE): New constant.
13835         (get_date): Parse leading TZ="foo".  Reject out-of-range components;.
13836         This requires that we sometimes generate our own TZ="XXX..." setting.
13837
13838 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
13839
13840         * doc/getdate.texi: New file, from coreutils with modifications for
13841         the new TZ parsing.
13842
13843 2004-10-27  Derek R. Price  <derek@ximbiot.com>
13844
13845         * lib/mktime.c (not_equal_tm): Remove redundant check.
13846
13847 2004-10-24  Paul Eggert  <eggert@cs.ucla.edu>
13848
13849         * modules/regex (lib_SOURCES): Add regex.c.
13850         Reported by James Youngman in
13851         <http://lists.gnu.org/archive/html/bug-gnulib/2004-10/msg00199.html>.
13852
13853 2004-10-24  Paul Eggert  <eggert@cs.ucla.edu>
13854
13855         * lib/getdate.y: Use Bison 1.875 features, and some minor
13856         code cleanups.  This change does not affect semantics.
13857         Don't include <stdlib.h>; no longer needed.
13858         Don't include unlocked-io.h; only the "#if TEST" code uses
13859         stdio, and performance isn't crucial there.
13860         (PC, YYLEX_PARAM, YYPARSE_PARAM): Remove; replaced by
13861         Bison 1.875 features as described below.
13862         All uses of "PC." replaced by "pc->".
13863         (YYSTYPE): Add a forward declaration.
13864         (yylex, yyerror): Use full prototypes in forward decls.
13865         Use "%pure-parser" rather than obsolescent "%pure_parser".
13866         Use %parse-param and %lex-param instead of obsolescent
13867         YYPARSE_PARAM and YYLEX_PARAM.
13868         (meridian_table, month_and_day_table, time_units_table,
13869         relative_time_table, time_zone_table, military_table,
13870         lookup_zone, lookup_word, get_date):
13871         Use NULL instead of 0 where appropriate.
13872         (to_hour): Avoid abort (), to avoid a dependency on
13873         stdlib.h.
13874         (yyerror, yylex): Now accepts parser_control * arg.
13875         (main) [TEST]: Use '\0' rather than 0 for char.
13876
13877 2004-10-22  Paul Eggert  <eggert@cs.ucla.edu>
13878
13879         * m4/getpagesize.m4 (gl_GETPAGESIZE): Check for <sys/param.h>.
13880
13881 2004-10-22  Paul Eggert  <eggert@cs.ucla.edu>
13882
13883         * lib/getpagesize.c (getpagesize): Don't assume <sys/param.h> exists.
13884         It's now the caller's responsibility to handle the case where
13885         !HAVE_GETPAGESIZE && !defined getpagesize.
13886
13887         * lib/mktime.c (leapyear): Arg is long int, not int.
13888
13889 2004-10-18  Paul Eggert  <eggert@cs.ucla.edu>
13890
13891         * lib/argp-fs-xinl.c, argp-xinl.c: Update from glibc.
13892
13893 2004-10-17  Paul Eggert  <eggert@cs.ucla.edu>
13894
13895         * gnulib-tool (func_emit_lib_Makefile_am): Fix typo: a $ was
13896         missing.  Problem reported by James Youngman.
13897
13898 2004-10-16  Simon Josefsson  <jas@extundo.com>
13899
13900         * gnulib-tool: Fix comments.  Fix parse problem.
13901         (func_emit_lib_Makefile_am): Don't hard code a in libgl_a_SOURCES.
13902
13903 2004-10-15  Paul Eggert  <eggert@cs.ucla.edu>
13904
13905         * m4/getopt.m4 (gl_GETOPT): Detect and reject the incompatible BSD
13906         implementation of getopt_long.  Problem reported by Alexander Taler in:
13907         http://lists.gnu.org/archive/html/bug-gnulib/2004-10/msg00103.html
13908
13909 2004-10-15  Bruno Haible  <bruno@clisp.org>
13910
13911         * gnulib-tool: Untabify. Initialize supplied_libname.
13912         (func_usage): More homogenous output.
13913         (func_modules_transitive_closure, func_modules_to_filelist,
13914         func_emit_lib_Makefile_am): New functions.
13915         (func_import): New function, extracted from big case statement. Use
13916         func_get_license, func_modules_transitive_closure,
13917         func_modules_to_filelist, func_emit_lib_Makefile_am. Initialize
13918         opt_lgpl. Don't use test -a, as it's not portable.
13919         (func_create_testdir): Use func_modules_transitive_closure,
13920         func_modules_to_filelist, func_emit_lib_Makefile_am.
13921
13922 2004-10-15  Bruno Haible  <bruno@clisp.org>
13923
13924         * gnulib-tool (func_import): Let gl_INIT define LTALLOCA when needed.
13925
13926 2004-10-15  Bruno Haible  <bruno@clisp.org>
13927
13928         * gnulib-tool (func_emit_lib_Makefile_am): Add markers to separate
13929         the portions belonging to each module.
13930         Suggested by Derek Robert Price <derek@ximbiot.com>.
13931
13932 2004-10-12  Simon Josefsson  <jas@extundo.com>
13933
13934         * lib/getpass.c (fflush_unlocked, flockfile, funlockfile)
13935         (fputs_unlocked, putc_unlocked) [!_LIBCS && !USE_UNLOCKED_IO]: Map
13936         to real functions.
13937
13938 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
13939
13940         * modules/vsnprintf: New file.
13941
13942 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
13943
13944         * m4/vsnprintf.m4: New file.
13945
13946 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
13947
13948         * lib/vsnprintf.h: New file.
13949         * lib/vsnprintf.c: New file.
13950
13951 2004-10-11  Bruno Haible  <bruno@clisp.org>
13952
13953         * MODULES.html.sh (Support for systems lacking ISO C 99): Add
13954         vsnprintf.
13955
13956 2004-10-10  Paul Eggert  <eggert@cs.ucla.edu>
13957
13958         * config/srclistvars.sh: Add GNUSTANDARDS (for eggert only).
13959
13960 2004-10-07  Bruno Haible  <bruno@clisp.org>
13961
13962         * lib/snprintf.c (snprintf): Avoid a memory allocation if the result
13963         fits into the provided buffer.
13964
13965 2004-10-06  Paul Eggert  <eggert@cs.ucla.edu>
13966
13967         * lib/diacrit.c, diacrit.h: Add GPL notice.
13968
13969         * lib/atanl.c, logl.c: Add GPL notice, to match glibc's added LGPL
13970         notice.
13971         * lib/atanl.c (atanl): Keep the code as similar to glibc as possible.
13972         * lib/logl.c (logl): Keep the code as similar to glibc as possible.
13973         This avoids a potential constant-folding bug.
13974
13975 2004-10-05  Bruno Haible  <bruno@clisp.org>
13976
13977         * m4/strsep.m4 (gl_FUNC_STRSEP): Require AC_GNU_SOURCE. Don't check
13978         for the declaration of strsep.
13979
13980 2004-10-05  Bruno Haible  <bruno@clisp.org>
13981
13982         * lib/strsep.h: Don't declare strsep() if HAVE_STRSEP.
13983
13984 2004-10-04  Simon Josefsson  <jas@extundo.com>
13985
13986         * modules/memmem: New file.
13987         * tests/test-memmem.c: New file.
13988         * MODULES.html.sh (Extra functions based on ANSI C 89): Add memmem.
13989
13990 2004-10-04  Simon Josefsson  <jas@extundo.com>
13991
13992         * m4/memmem.m4: New file.
13993
13994 2004-10-04  Simon Josefsson  <jas@extundo.com>
13995
13996         * lib/memmem.h: New file.
13997         * lib/memmem.c: New file, taken from glibc.
13998
13999 2004-10-04  Simon Josefsson  <jas@extundo.com>
14000
14001         * lib/error.c, md5.c, regex.c: Use '#if USE_UNLOCKED_IO' instead of
14002         '#ifdef USE_UNLOCKED_IO'.
14003
14004 2004-10-04  Simon Josefsson  <jas@extundo.com>
14005
14006         * config/srclist.txt: Add memmem from glibc.
14007
14008 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
14009
14010         * modules/xalloc (Files, Makefile.am): Remove xstrdup.c.
14011
14012         * modules/argmatch, modules/argp, modules/closeout, modules/error,
14013         modules/exclude, modules/getdate, modules/getline,
14014         modules/getndelim2, modules/getpass, modules/getpass-gnu,
14015         modules/getusershell, modules/linebuffer, modules/md5,
14016         modules/mountlist, modules/posixtm, modules/readtokens,
14017         modules/readutmp, modules/regex, modules/sha1,
14018         modules/version-etc, modules/yesno:
14019         Remove dependency on unlocked-io.
14020
14021 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
14022
14023         * m4/xalloc.m4 (gl_PREREQ_XSTRDUP): Remove.  All uses removed.
14024
14025         * m4/unlocked-io.m4: Add copyright notice.
14026         (gl_FUNC_GLIBC_UNLOCKED_IO): Define USE_UNLOCKED_IO.
14027
14028 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
14029
14030         * lib/xalloc.h (xmemdup): Renamed from xclone.  All uses changed.
14031         * lib/xmalloc.c (xmemdup): Likewise.
14032         * lib/xalloc.h (CCLONE, CLONE, NEW, XCALLOC, XMALLOC, XREALLOC,
14033         XFREE): Remove these long-obsolescent macros.
14034         * lib/xmalloc.c (xstrdup): Implementation moved here from xstrdup.c
14035         * lib/xstrdup.c: Remove.
14036
14037         * lib/regex.c (re_comp): Cast gettext return value to char *,
14038         Problem reported by Martin Neitzel via Mark D. Baushke.
14039
14040 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
14041
14042         * lib/argmatch.c, closeout.c, error.c, exclude.c, getdate.y,
14043         getndelim2.c, getpass.c, getusershell.c, linebuffer.c,
14044         md5.c, mountlist.c, posixtm.c, readtokens.c, readutmp.c,
14045         regex.c, sha1.c, version-etc.c, yesno.c:
14046         Include "unlocked-io.h" only if USE_UNLOCKED_IO.
14047         * lib/unlocked-io.h: Don't worry about USE_UNLOCKED_IO; that's now
14048         the includer's responsibility.
14049
14050         Sync from coreutils.
14051
14052         * lib/modechange.c (mode_compile): Don't decrement a pointer that
14053         points to the start of a string, as the C Standard says the
14054         resulting behavior is undefined.
14055
14056         * lib/backupfile.h (enum backuptype): Rename none -> no_backups,
14057         simple -> simple_backups, numbered_existing ->
14058         numbered_existing_backups, numbered -> numbered_backups
14059         to avoid shadowing problems.  All uses changed.
14060         * lib/argmatch.c (enum backuptype) [defined TEST]: Likewise.
14061         * lib/backupfile.c (check_extension, numbered_backup):
14062         Rename locals to avoid shadowing 'basename'.
14063         * lib/backupfile.h (VALID_BACKUP_TYPE): Don't evaluate arg more than
14064         once.
14065
14066         * lib/.cppi-disable: Add getopt_.h, getopt_int.h.
14067         * lib/.cvsignore: Add getopt.h.
14068
14069 2004-10-04  Bruno Haible  <bruno@clisp.org>
14070
14071         * modules/README: New file.
14072         * gnulib-tool (func_all_modules, func_verify_module): modules/README is
14073         not a module.
14074
14075 2004-10-02  Jim Meyering  <jim@meyering.net>
14076
14077         * lib/dirfd.h, getpagesize.h: Add copyright notice.
14078
14079 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
14080
14081         * modules/strsep: New file.
14082
14083 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
14084
14085         * m4/strsep.m4: New file.
14086
14087 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
14088
14089         * lib/strsep.h: New file.
14090         * lib/strsep.c: New file.
14091
14092 2004-10-01  Simon Josefsson  <jas@extundo.com>
14093
14094         * lib/snprintf.c (snprintf): Handle size==0.
14095
14096 2004-10-01  Simon Josefsson  <jas@extundo.com>
14097             Bruno Haible  <bruno@clisp.org>
14098
14099         * lib/snprintf.c: Include <stdarg.h>, <stdlib.h>, <string.h>.
14100         (snprintf): Declare 'args'.
14101
14102 2004-10-01  Paul Eggert  <eggert@cs.ucla.edu>
14103
14104         * lib/snprintf.c: Remove comments as to why each header is needed.
14105
14106 2004-10-01  Bruno Haible  <bruno@clisp.org>
14107
14108         * MODULES.html.sh: Add strsep.
14109
14110 2004-09-30  Simon Josefsson  <jas@extundo.com>
14111
14112         * modules/snprintf: New file.
14113
14114 2004-09-30  Simon Josefsson  <jas@extundo.com>
14115
14116         * m4/snprintf.m4: New file.
14117
14118 2004-09-30  Simon Josefsson  <jas@extundo.com>
14119
14120         * lib/snprintf.h, lib/snprintf.c: New files.
14121
14122 2004-09-30  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
14123
14124         * lib/argp-help.c (canon_doc_option): Fixed coredump if *name==NULL
14125         (hol_entry_help): Never translate an empty string.
14126         Do not translate option tag (opt->name) if OPTION_NO_TRANS is set
14127         * lib/argp.h (OPTION_NO_TRANS): New option.
14128
14129 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
14130
14131         * modules/argp (Maintainer): Replace Simon Josefsson
14132         by Sergey Poznyakoff.
14133
14134 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
14135
14136         * config/srclist.txt: Comment-out argp/argp.h, until we get the argp
14137         changes merged back into glibc.
14138
14139 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
14140
14141         * MODULES.html.sh (Support for systems lacking ISO C 99): Add snprintf.
14142
14143 2004-09-29  Oskar Liljeblad  <oskar@osk.mine.nu>
14144
14145         * lib/xvasprintf.c: Include xalloc.h.
14146         (xvasprintf): Use xalloc_die, not xmalloc_die.
14147
14148 2004-09-29  Bruno Haible  <bruno@clisp.org>
14149
14150         * modules/alloca-opt: New file, derived from modules/alloca.
14151         * modules/allocsa: Depend on alloca-opt instead of alloca.
14152         * modules/setenv: Likewise.
14153         * modules/vasnprintf: Likewise.
14154         * MODULES.html.sh: Add alloca-opt.
14155
14156 2004-09-28  Simon Josefsson  <jas@extundo.com>
14157
14158         * gnulib-tool: New parameter --lgpl, to asseert that modules are
14159         LGPL, and to replace license template from GPL to LGPL.
14160
14161 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
14162
14163         * modules/dummy: Change license to LGPL.
14164
14165 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
14166
14167         * lib/dummy.c: Change copyright notice to FSF, and license to GPL.
14168
14169 2004-09-24  Simon Josefsson  <jas@extundo.com>
14170
14171         * modules/minmax (License): Change from GPL to LGPL.
14172
14173 2004-09-23  Simon Josefsson  <jas@extundo.com>
14174
14175         * gnulib-tool (--import): Typo.
14176
14177 2004-09-23  Simon Josefsson  <jas@extundo.com>
14178
14179         * gnulib-tool (--import): Make sure *.m4 end up in m4/ by default.
14180
14181 2004-09-22  Bruno Haible  <bruno@clisp.org>
14182
14183         * modules/*: Add 'License' field.
14184         * gnulib-tool: Accept --extract-license option.
14185         (func_get_license): New function.
14186
14187 2004-09-21  Bruno Haible  <bruno@clisp.org>
14188
14189         * modules/vasnprintf (Files): Add m4/stdint_h.m4, m4/inttypes_h.m4.
14190         Reported by Simon Josefsson.
14191
14192 2004-09-20  Paul Eggert  <eggert@cs.ucla.edu>
14193
14194         * modules/inttostr (Files): Add m4/longlong.m4, since it uses
14195         gl_AC_TYPE_LONG_LONG.
14196
14197 2004-09-20  Paul Eggert  <eggert@cs.ucla.edu>
14198
14199         * config/srclist.txt: Add getsubopt.c, since libc bought our changes.
14200
14201 2004-09-18  Simon Josefsson  <jas@extundo.com>
14202         and  Paul Eggert  <eggert@cs.ucla.edu>
14203
14204         * gnulib-tool: Replace various ad-hoc automake/autoconf/aclocal
14205         calls with autoreconf.  Define GL_LIB.
14206
14207 2004-09-14  Karl Berry  <karl@gnu.org>
14208
14209         * config/srclist.txt: unsync setenv.c, sigh.
14210
14211 2004-09-13  Paul Eggert  <eggert@cs.ucla.edu>
14212
14213         * lib/argp-pvh.c (argp_program_version_hook): Provide initial value.
14214         Problem reported by Bruno Haible in:
14215         http://lists.gnu.org/archive/html/bug-tar/2004-09/msg00023.html
14216
14217 2004-09-13  Paul Eggert  <eggert@cs.ucla.edu>
14218
14219         * config/srclist.txt: Comment out argp-pvh.c.
14220
14221 2004-09-11  Paul Eggert  <eggert@cs.ucla.edu>
14222
14223         * lib/mempcpy.h: Wrap the entire include file inside #ifndef mempcpy,
14224         in case some system header has #define'd it.  Problem reported by
14225         Soeren D. Schulze in
14226         <http://lists.gnu.org/archive/html/bug-gnulib/2004-09/msg00017.html>.
14227
14228 2004-09-09  Karl Berry  <karl@gnu.org>
14229
14230         * regex.[ch]: delete from the root.  These were supposed to be
14231                 synced with emacs cvs, but this has not happened for about
14232                 a year, and anyway nothing else uses emacs regex.[ch].
14233                 bug-gnulib mail from Jeff Bailey, 9 Sep 2004 15:49:24 -0700.
14234                 lib/regex[.ch] is untouched.
14235
14236 2004-09-09  Bruno Haible  <bruno@clisp.org>
14237
14238         * modules/vasnprintf (Files): Add m4/eoverflow.m4.
14239
14240 2004-09-09  Bruno Haible  <bruno@clisp.org>
14241
14242         * m4/eoverflow.m4: New file, taken from GNU libiconv eilseq.m4 with
14243         modifications.
14244         * m4/vasnprintf.m4 (gl_FUNC_VASNPRINTF): Require gl_EOVERFLOW.
14245
14246 2004-09-08  Oskar Liljeblad  <oskar@osk.mine.nu>
14247
14248         * modules/xvasprintf: New file.
14249         * MODULES.html.sh (Extra functions based on ANSI C 89): Add vasprintf.
14250
14251 2004-09-08  Oskar Liljeblad  <oskar@osk.mine.nu>
14252
14253         * lib/xvasprintf.h: New file.
14254         * lib/xvasprintf.c: New file.
14255         * lib/xasprintf.c: New file.
14256
14257 2004-09-08  Bruno Haible  <bruno@clisp.org>
14258
14259         * m4/stdint.m4: New file, taken from GNU clisp with modifications.
14260
14261 2004-09-08  Bruno Haible  <bruno@clisp.org>
14262
14263         * lib/vasnprintf.c (VASNPRINTF): Signal EOVERFLOW if the resulting
14264         length is > INT_MAX.
14265         * lib/vasprintf.c (vasprintf): Don't test for length > INT_MAX any
14266         more.
14267
14268 2004-09-08  Bruno Haible  <bruno@clisp.org>
14269
14270         * lib/stdint_.h: New file, taken from GNU clisp.
14271
14272 2004-09-08  Bruno Haible  <bruno@clisp.org>
14273             Oskar Liljeblad  <oskar@osk.mine.nu>
14274
14275         * modules/stdint: New file.
14276         * MODULES.html.sh (Support for systems lacking ISO C 99): Add stdint.
14277
14278 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
14279
14280         Import from coreutils.
14281         * lib/userspec.c: Don't use <alloca.h>, so that we don't use alloca on
14282         strings on unbounded length.  alloca's performance benefits aren't
14283         that important here.
14284         (V_STRDUP): Remove.
14285         (parse_with_separator): New function, with most of the internals
14286         of the old parse_user_spec.  Allow user to omit both user and group,
14287         for compatibility with FreeBSD.
14288         Clone only the user name, not the entire spec.
14289         Do not set *uid, *gid unless entirely successful.
14290         Avoid memory leak in some failing cases.
14291         Fix regression for USER.GROUP reported by Dmitry V. Levin in
14292         <http://lists.gnu.org/archive/html/bug-coreutils/2004-08/msg00102.html>
14293         (parse_user_spec): Rewrite to use parse_with_separator.
14294
14295 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
14296
14297         * modules/userspec: Don't depend on alloca.
14298
14299 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
14300
14301         * m4/userspec.m4 (gl_USERSPEC): Don't require AC_FUNC_ALLOCA.
14302
14303 2004-08-17  Paul Eggert  <eggert@cs.ucla.edu>
14304
14305         * MODULES.html.sh: Add xalloc-die, c-strtod, c-strtold, raise,
14306         readtokens0, getcwd, fcntl-safer, canonicalize, cycle-check,
14307         utimecmp, utimens, xnanosleep.  Rename sha to sha1.
14308
14309 2004-08-16  Simon Josefsson  <jas@extundo.com>
14310
14311         * gnulib-tool: Use sed instead of autoconf --trace, inspired by
14312         libtoolize behaviour by "Gary V. Vaughan" <gary@gnu.org>.
14313         Add --dry-run for --import.
14314         Let user provided command line parameters override configure.ac
14315         settings.
14316
14317 2004-08-12  Simon Josefsson  <jas@extundo.com>
14318
14319         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): New macro,
14320         as discussed with Paul Eggert in threads rooted at
14321         <http://lists.gnu.org/archive/html/bug-gnulib/2004-06/msg00039.html>
14322         and
14323         <http://lists.gnu.org/archive/html/bug-gnulib/2004-07/msg00001.html>.
14324         Before, the test was empty, and relied on ELIDE_CODE in source
14325         code.)
14326         (gl_PREREQ_GETOPT): New macro.
14327         (gl_GETOPT): Use them.
14328
14329 2004-08-12  Simon Josefsson  <jas@extundo.com>
14330
14331         * lib/getopt.c, getopt1.c: Remove ELIDE_CODE hack.
14332         * lib/getopt_.h: Renamed from getopt.h.
14333
14334 2004-08-12  Simon Josefsson  <jas@extundo.com>
14335
14336         * gnulib-tool: Add --source-base, --m4-base, --libtool options.
14337         Change default library name from libfoo to libgnu.
14338         Now, if you have a configure.ac that says:
14339                 gl_SOURCE_BASE(gl)
14340                 gl_M4_BASE(gl/m4)
14341                 gl_MODULES(error getopt etcetera)
14342                 gl_INIT
14343         you can import all you need by running:
14344                 ../gnulib/gnulib-tool --import
14345
14346         * modules/getopt (Files): Rename getopt.h to getopt_.h.
14347         (Makefile.am): Rewrite, use logic from argz.
14348         (Include): Use <getopt.h> instead of "getopt.h".
14349
14350 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
14351
14352         * modules/argp (Files): Add m4/unlocked-io.m4.
14353         (Depends-on): Add extensions.
14354
14355 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
14356
14357         * m4/argp.m4 (gl_ARGP): Do not check for argp.h or argp_parse; nobody
14358         uses HAVE_ARGP_H or HAVE_ARGP_PARSE.
14359         Require gl_FUNC_GLIBC_UNLOCKED_IO, gl_USE_SYSTEM_EXTENSIONS.
14360         Check for program_invocation_name, program_invocation_short_name,
14361         flockfile, funlockfile, features.h, _getopt_long_only_r.
14362
14363 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
14364
14365         * lib/argp-help.c, argp-parse.c: Use "gettext.h" instead of
14366         its complicated substitute.
14367         * lib/argp-help.c: Include <errno.h>, for program_invocation_short_name
14368         and program_invocation_name.
14369         (__argp_basename) [!_LIBC]: Remove; the only use was
14370         replaced by its body.
14371         (__argp_short_program_name): Change condition from
14372         !defined __argp_short_program_name to
14373         ! (defined _LIBC || HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME),
14374         to match argp-namefrob.h.
14375         (__argp_failure): Don't assume strerror_r returns char *.
14376         * lib/argp-parse.c (N_): Define unconditionally.
14377         (argp_default_options): Fill out initializers with 0 to avoid
14378         gcc warnings.
14379
14380 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
14381
14382         * config/srclist.txt: Remove getopt.c, getopt.h (renamed to getopt_.h),
14383         getopt1.c.
14384
14385 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
14386
14387         Merge from coreutils.
14388
14389         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for wmemchr and wmemcpy.
14390
14391         * m4/obstack.m4 (gl_PREREQ_OBSTACK): Require
14392         gl_AC_HEADER_INTTYPES_H, gl_AC_HEADER_STDINT_H, gl_AC_TYPE_UINTMAX_T.
14393
14394 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
14395
14396         Merge from coreutils.
14397
14398         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Don't set to 1 if missing
14399         wmemchr or wmemcpy.  Problem reported by Robert Dahlem
14400         for Reliant Unix 5.43.
14401
14402         * lib/obstack.c: Include <inttypes.h> and <stdint.h> if available.
14403         (union fooround): Use uintmax_t, not long int.
14404         The rest is a merge from libc:
14405         [defined _LIBC]: Include <shlib-compat.h>.
14406         (_obstack) [defined _LIBC]: Remove after 2.3.4.
14407
14408         * lib/settime.c (settime): Recode to avoid warning with
14409         Sun Forte C 6U2.
14410
14411         * lib/strverscmp.c: Convert to UTF-8.
14412
14413 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
14414
14415         * modules/obstack (Files): Add m4/inttypes_h.m4, m4/stdint_h.m4,
14416         m4/uintmax_t.m4.
14417
14418 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
14419
14420         * modules/xalloc-die: New file.
14421         * modules/xalloc: Remove dependencies on error, gettext, exitfail.
14422
14423         * modules/md5 (Files): Add m4/uint32_t.m4.
14424         * modules/sha1: Renamed from modules/sha.
14425         (Files):
14426         Rename lib/sha.h to lib/sha1.h.
14427         Rename lib/sha.c to lib/sha1.c.
14428         Rename m4/sha.m4 to m4/sha1.m4.
14429         (lib_SOURCES): Likewise.
14430         (configure.ac): Rename gl_SHA to gl_SHA1.
14431         (Include): sha.h -> sha1.h.
14432
14433 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
14434
14435         * m4/uint32_t.m4, m4/uintptr_t.m4: New files.
14436         * m4/sha1.m4: Renamed from sha.m4.
14437         (gl_SHA1): Renamed from gl_SHA.  All uses changed.
14438
14439 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
14440
14441         * lib/obstack.h (obstack_empty_p):
14442         Don't assume that chunk->contents is suitably aligned.
14443         * lib/obstack.c (_obstack_begin, _obstack_begin_1, _obstack_newchunk):
14444         Likewise. Problem reported by Benno in
14445         <http://sources.redhat.com/ml/libc-alpha/2004-08/msg00055.html>.
14446
14447         * lib/chown.c (rpl_chown): Work even if the file is writeable but not
14448         readable.  This could be improved further but it'd take some work.
14449
14450 2004-08-08  Simon Josefsson  <jas@extundo.com>
14451
14452         * modules/xgethostname (Depends-on): Remove exit and error (not
14453         used).
14454
14455         * modules/getpass-gnu: Add getpass.h.
14456         (Depends-on): Add stdbool.
14457         * modules/getpass: Add getpass.h.
14458
14459 2004-08-08  Simon Josefsson  <jas@extundo.com>
14460
14461         * m4/getpass.m4 (gl_FUNC_GETPASS, gl_FUNC_GETPASS_GNU):
14462         Check getpass declaration.
14463
14464 2004-08-08  Simon Josefsson  <jas@extundo.com>
14465
14466         * lib/xgethostname.c: Don't include error.h (not used).
14467
14468         * lib/getpass.h: Add.
14469         * lib/getpass.c: Include getpass.h first.
14470
14471 2004-08-08  Paul Eggert  <eggert@cs.ucla.edu>
14472
14473         * lib/xalloc-die.c: New file.
14474         * lib/xalloc.h (xalloc_fail_func, xalloc_msg_memory_exhausted): Remove.
14475         All uses removed.
14476         * lib/xmalloc.c (xalloc_fail_func, xalloc_msg_memory_exhausted):
14477         Likewise. Move inclusions of gettext.h, error.h, exitfail.h to
14478         xalloc-die.c.
14479         (_, N_, xalloc_die): Move to xalloc-die.c.
14480         * lib/userspec.c (parse_user_spaec): Use xstrdup rather than strdup,
14481         so that we needn't mess with xalloc_msg_memory_exhausted.
14482
14483         * lib/sha1.h: Renamed from sha.h.
14484         (SHA1_H): Renamed from _SHA_H.
14485         (sha1_ctx): Renamed from sha_ctx.
14486         (sha1_init_ctx): Renamed from sha_init_ctx.
14487         (sha1_process_block): Renamed from sha_process_block.
14488         (sha1_process_bytes): Renamed from sha_process_bytes.
14489         (sha1_finish_ctx): Renamed from sha_finish_ctx.
14490         (sha1_read_ctx): Renamed from sha_read_ctx.
14491         (sha1_stream): Renamed from sha_stream.
14492         (sha1_buffer): Renamed from sha_buffer.
14493         * lib/sha1.c: Likewise; renamed from sha.c.
14494         Do not include <sys/types.h>.
14495         Include <stddef.h> rather than <stdlib.h>.
14496
14497 2004-08-08  Bruno Haible  <bruno@clisp.org>
14498
14499         * lib/pathname.h (FILE_SYSTEM_PREFIX_LEN): Renamed from
14500         FILESYSTEM_PREFIX_LEN.
14501         * lib/progreloc.c: Likewise.
14502         * lib/concatpath.c (concatenated_pathname): Use FILE_SYSTEM_PREFIX_LEN.
14503
14504 2004-08-06  Simon Josefsson  <jas@extundo.com>
14505
14506         * modules/progname (Depends-on): Don't depend on stdbool.
14507
14508 2004-08-06  Simon Josefsson  <jas@extundo.com>
14509
14510         * modules/getsubopt: New file.
14511         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
14512         getsubopt.
14513
14514 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
14515
14516         More merge from coreutils.
14517
14518         * m4/utimens.m4, m4/utimecmp.m4: New files.
14519         * m4/backupfile.m4, euidacces.m4, acl.m4, afs.m4, calloc.m4, dirfd.m4,
14520         fsusage.m4, jm-macros.m4, ls-mntd-fs.m4, md5.m4, mountlist.m4,
14521         prereq.m4, sha.m4: Import changes from coreutils.
14522
14523 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
14524
14525         More merge from coreutils.
14526         * modules/raise, modules/readtokens0, modules/utimens:
14527         * modules/utimecmp, module/xnanosleep: New files.
14528         * modules/strftime: Add lib/strftime.h.
14529         Change include from <time.h> to "strftime.h".
14530         * modules/yesno: Add lib/yesno.h.
14531         * modules/backupfile: Remove lib/addext.c.
14532         * modules/euidaccess: Add stat-macros.h.
14533         * modules/canonicalize, modules/euidaccess,
14534         modules/filemode, modules/lchown, modules/makepath,
14535         modules/rmdir, modules/stat: Likewise.
14536
14537 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
14538
14539         Merge from tar.
14540         * lib/argp-help.c (make_hol, hol_append): Don't assume that
14541         SIZE_MAX is a valid preprocessor constant.
14542         (__argp_basename): Change from "#ifndef _LIBC"
14543         to "#ifndef __argp_short_program_name", so that
14544         we don't compile these functions for tar.
14545
14546         More merges from coreutils.
14547         * lib/raise.c, lib/readtokens0.h, lib/readtokens0.c, lib/strftime.h:
14548         * lib/utimens.h, lib/utimens.c, lib/utimecmp.h, lib/utimecmp.c:
14549         * lib/xnanosleep.h, lib/xnanosleep.c, lib/yesno.h: New files.
14550         * lib/addext.c: Remove; no longer needed.
14551         * lib/yesno.c, lib/argmatch.h, lib/argmatch.c, lib/backupfile.h,
14552         lib/backupfile.c, lib/euidaccess.c, lib/filemode.c, lib/closeout.c,
14553         lib/dup2.c, lib/exclude.c, lib/fileblocks.c, lib/filemode.c,
14554         lib/fnmatch.c, lib/fnmtahc_loop.c, lib/fopen-safer.c, lib/fsusage.c,
14555         lib/fsusage.h, lib/ftruncate.c, lib/full-write.c, lib/getdate.y,
14556         lib/getloadavg.c, lib/getugroups.c, lib/hard-locale.c,
14557         lib/hard-locale.h, lib/hash.c, lib/human.c, lib/human.h, lib/lchown.c,
14558         lib/lchown.h, lib/makepath.c, lib/makepath.h, lib/md5.c, lib/md5.h,
14559         lib/memchr.c, lib/memcoll.c, lib/memrchr.c, lib/modechange.c,
14560         lib/modechange.h, lib/mountlist.c, lib/mountlist.h, lib/nanosleep.c,
14561         lib/posixtm.c, lib/putenv.c, quotearg.c, lib/quotearg.h,
14562         lib/readtokens.c, lib/readutmp.c, lib/readutmp.h, lib/rmdir.c,
14563         lib/safe-read.c, lib/save-cwd.c, lib/savedir.c, lib/setenv.c,
14564         lib/sig2str.c, lib/stat.c, lib/strtoimax.c, lib/strverscmp.c,
14565         lib/userspec.c, lib/utime.c, lib/version-etc.c., lib/xgethostname.c,
14566         lib/xmemcoll.c, lib/xreadlink.c, lib/xstrtod.c, lib/xstrtod.h,
14567         lib/xstrtoimax.c, lib/xstrtol.c, lib/xstrtol.h, lib/xstrtoumax.c:
14568         Import changes from coreutils.
14569
14570 2004-08-05  Simon Josefsson  <jas@extundo.com>
14571
14572         * m4/strdup.m4: Always run gl_PREREQ_STRDUP, since strdup.h need it.
14573
14574 2004-08-05  Simon Josefsson  <jas@extundo.com>
14575
14576         * m4/getsubopt.m4: New file.
14577
14578 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
14579
14580         Merge from coreutils.
14581
14582         * m4/c-strtod.m4, m4/canonicalize.m4, m4/fcntl-safer.m4:
14583         * m4/getcwd-path-max.m4: New files.
14584
14585         * m4/dos.m4 (gl_AC_DOS): filesystem -> file system renaming.
14586         FILESYSTEM_PREFIX_LEN ->
14587         FILE_SYSTEM_PREFIX_LEN.
14588         FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX ->
14589         FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX.
14590         FILESYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR ->
14591         FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR.
14592
14593         * m4/path-concat.m4 (gl_PATH_CONCAT): Don't require gl_AC_DOS, the
14594         prerequisite modules now handle the DOS stuff.
14595         Don't check for unistd.h.
14596
14597 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
14598
14599         Merge from coreutils.
14600
14601         * lib/.gdb-history: Remove; this doesn't belong here.
14602
14603         * lib/c-strtod.c, lib/c-strtod.h, lib/c-strtold.c, lib/cycle-check.c:
14604         * lib/cycle-check.h, lib/dev-ino.h, lib/canonicalize.h:
14605         * lib/canonicalize.c, lib/fcntl-safer.h, lib/fcntl-safer.c:
14606         * lib/getcwd.c: New files.
14607
14608         * lib/dirname.h: Include <stdbool.h>.
14609         (FILE_SYSTEM_PREFIX_LEN): Renamed from FILESYSTEM_PREFIX_LEN,
14610         for consistency with POSIX terminology.  All uses changed.
14611         (IS_ABSOLUTE_FILE_NAME, IS_RELATIVE_FILE_NAME): New macros.
14612         (strip_trailing_slashes): Use bool for booleans.
14613         * lib/stripslash.c (strip_trailing_slashes): Likewise.
14614
14615         * lib/error.c: Work around bug in OpenBSD 3.4 sterror_r: it
14616         sometimes returns a positive errno value even when it succeeds.
14617         (print_errno_message) [!LIBC]: Fall back on strerror if
14618         __strerror_r fails.
14619
14620         * lib/path-concat.c (mempcpy): Don't define if a system header defines
14621         it. Don't include stdio.h, stdlib.h, unistd.h, strdup.h.
14622         (longest_relative_suffix): New function.
14623         (path_concat): Use it.  Assume first argument is not NULL.
14624         Port to DOS.  Omit redundant separators.
14625         Report an error instead of returning NULL.
14626         Use mempcpy instead of memcpy.
14627         (xpath_concat): Remove: not declared or used.
14628
14629         * lib/same.h: Include <stdbool.h>
14630         (same_name): Return bool, not int.
14631         * lib/same.c (same_name): Likewise.
14632         (errno): Don't declare; we assume C89 or better now.
14633
14634         * lib/stat-macros (S_ISCTG, S_ISOFD, S_ISOFL): New macros,
14635         if not already defined.
14636
14637         * lib/xgetcwd.c (errno): Don't declare; we assume C89 or better now.
14638         * lib/dup-safer.c (errno): Likewise.
14639
14640 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
14641
14642         Merge from coreutils.
14643         * modules/c-strtod, modules/c-strtold, modules/canonicalize:
14644         * modules/cycle-check, modules/fcntl-safer, modules/getcwd: New files.
14645         * modules/path-concat: Don't depend on strdup.
14646
14647 2004-08-03  Simon Josefsson  <jas@extundo.com>
14648
14649         * lib/strdup.h: Only use HAVE_DECL_STRDUP if defined.
14650         * lib/progname.h: Don't include stdbool.h.
14651
14652 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
14653
14654         * modules/fatal: Remove, as the "fatal" module wasn't used or working.
14655         * MODULES.html.sh (func_all_modules): Remove fatal.
14656
14657 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
14658
14659         * m4/fatal.m4: Remove, as the "fatal" module wasn't used or working.
14660
14661 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
14662
14663         * lib/fatal.c, fatal.h: Remove as the "fatal" module wasn't used or
14664         working.
14665
14666 2004-08-02  Simon Josefsson  <jas@extundo.com>
14667
14668         * lib/getsubopt.h: New file, with comments from Bruno Haible.
14669         * lib/getsubopt.c: New file, from glibc, but slightly modified based on
14670         suggestions from Paul Eggert <eggert@cs.ucla.edu>.
14671
14672 2004-08-01  Simon Josefsson  <jas@extundo.com>
14673
14674         * lib/xgetdomainname.c: Include stdlib.h, for free().
14675
14676 2004-07-19  Bruno Haible  <bruno@clisp.org>
14677
14678         * MODULES.html.sh (func_all_modules): Add dummy.
14679
14680 2004-07-16  Simon Josefsson  <jas@extundo.com>
14681
14682         * modules/dummy: New file.
14683
14684 2004-07-16  Simon Josefsson  <jas@extundo.com>
14685
14686         * lib/dummy.c: New file.
14687
14688 2004-07-16  Bruno Haible  <bruno@clisp.org>
14689
14690         * lib/backupfile.h: Add extern "C" for C++.
14691         * lib/closeout.h: Likewise.
14692         * lib/copy-file.h: Likewise.
14693         * lib/findprog.h: Likewise.
14694         * lib/full-write.h: Likewise.
14695         * lib/pathname.h: Likewise.
14696         * lib/progname.h: Likewise.
14697         * lib/stpcpy.h: Likewise.
14698         * lib/stpncpy.h: Likewise.
14699         * lib/strcase.h: Likewise.
14700         * lib/strstr.h: Likewise.
14701         * lib/xalloc.h: Likewise.
14702
14703         * lib/mbswidth.h: Add extern "C" for C++.
14704         Reported by Albert Chin-A-Young <china@thewrittenword.com>.
14705
14706 2004-07-13  Robert Millan  <robertmh@gnu.org>
14707
14708         * m4/host-os.m4: s/KNetBSD/kNetBSD/g and s/KFreeBSD/kFreeBSD/g.
14709
14710 2004-07-09  Simon Josefsson  <jas@extundo.com>
14711
14712         * lib/getndelim2.c: Include stddef.h, for ptrdiff_t.  (FreeBSD 4.9
14713         failed without this.)
14714
14715 2004-07-09  Paul Eggert  <eggert@cs.ucla.edu>
14716
14717         * modules/chown (Files): Add lib/fchown-stub.c, since
14718         gl_PREREQ_CHOWN invokes AC_LIBOBJ(fchown-stub).
14719
14720 2004-07-09  Paul Eggert  <eggert@cs.ucla.edu>
14721
14722         * lib/fchown-stub.c: New file.
14723
14724 2004-06-24  Jim Meyering  <jim@meyering.net>
14725
14726         * lib/obstack.h (obstack_base): Cast to (void *), per documentation.
14727
14728 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
14729
14730         * modules/argz: Omit "#include".
14731
14732         * MODULES.html.sh (func_all_modules): Add calloc, to match
14733         2004-06-01 addition of calloc module.
14734
14735 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
14736
14737         * m4/argz.m4: New file, which is autoupdated from libtool.
14738
14739 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
14740
14741         * lib/argz.c, lib/argz_.h: New files, which are autoupdated from
14742         libtool.
14743
14744 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
14745
14746         * config/srclist-update: Don't insist on "USA." before the
14747         close-comment, as libtool omits the period and puts the */ on a
14748         separate line.
14749         * config/srclist.txt: Add argz.c, argz_.h, argz.m4.
14750         * config/srclistvars.sh: Add LIBTOOL (for eggert only).
14751
14752 2004-06-22  Gary V. Vaughan  <gary@gnu.org>
14753
14754         * modules/argz: New file.
14755         * MODULES.html.sh (func_all_modules): Add argz.
14756
14757 2004-06-12  Jim Meyering  <jim@meyering.net>
14758         and  Paul Eggert  <eggert@cs.ucla.edu>
14759
14760         * modules/hash (Files): Add lib/xalloc.h.
14761         * modules/pipe (Depends-on): Add wait-process.
14762         * modules/stat (Depends-on): Add xalloc.
14763         * modules/userspec (Files): Add lib/userspec.h.
14764         * modules/xstrto
14765
14766         Upgrade from gettext-0.13.
14767         * modules/gettext (Files): Add m4/intmax.m4, m4/longdouble.m4,
14768         m4/longlong.m4, m4/printf-posix.m4, m4/signed.m4, m4/size_max.m4,
14769         m4/wchar_t.m4, m4/wint_t.m4, m4/xsize.m4.
14770
14771 2004-06-10  Jim Meyering  <jim@meyering.net>
14772
14773         * lib/calloc.c: New file.
14774
14775 2004-06-06  Paul Eggert  <eggert@cs.ucla.edu>
14776
14777         * lib/getdate.y (yylex): Allow space between sign and number.
14778         Problem reported by Dan Jacobson.
14779
14780 2004-06-01  Paul Eggert  <eggert@cs.ucla.edu>
14781
14782         Merge from coreutils CVS.
14783
14784         * m4/backupfile.m4, dirname.m4, human.m4, inttypes.m4, longlong.m4,
14785         makepath.m4, memchr.m4, memcmp.m4, mountlist.m4, path-concat.m4,
14786         putenv.m4, quotearg.m4, readutmp.m4, strtoimax.m4, strtoll.m4,
14787         strtoull.m4, strtoumax.m4, ulonglong.m4, vasnprintf.m4,
14788         xstrtol.m4: Fix copyright date and/or serial number.
14789
14790         * m4/chown.m4 (gl_PREREQ_CHOWN): Check for fcntl.h.
14791         See if we need an fchown replacement.
14792         (gl_FUNC_CHOWN_FOLLOWS_SYMLINK): New macro.
14793         (gl_FUNC_CHOWN): Require gl_FUNC_CHOWN_FOLLOWS_SYMLINK,
14794         and use the replacement function if we detect either defect.
14795
14796         * m4/prereq.m4 (gl_PREREQ): Add gl_ALLOCSA, gl_CLOEXEC, gl_INTTOSTR,
14797         gl_UTIMECMP.
14798
14799 2004-06-01  Paul Eggert  <eggert@cs.ucla.edu>
14800         and  Jim Meyering  <jim@meyering.net>
14801
14802         Merge from coreutils CVS.
14803
14804         * lib/stat-macros.h: New file, with contents from file-type.h
14805         and coreutils' system.h.
14806         * lib/file-type.c: Include "stat-macros.h".
14807         * lib/file-type.h (file_type): Move all macro definitions to new file,
14808         stat-macros.h.
14809
14810         * lib/chown.c (rpl_chown) [CHOWN_FAILS_TO_HONOR_ID_OF_NEGATIVE_ONE]:
14811         Wrap old code with this conditional.
14812         [CHOWN_MODIFIES_SYMLINK]: Try to work around a chown
14813         function that does not dereference symlinks.
14814         * lib/lchown.c (lchown) [CHOWN_MODIFIES_SYMLINK]: Just call chown.
14815
14816         * lib/xreadlink.c: Include xreadlink.h first, to catch .h file
14817         dependency problems.
14818         (xreadlink): Accept new arg SIZE, for efficiency.
14819         All decls and uses changed.
14820         * lib/xreadlink.h: Include <stddef.h>, for size_t.
14821
14822         * lib/.cppi-disable: Add alloca_.h, allocsa.h, exit.h, getndelim2.h,
14823         gettext.h, localcharset.h, strdup.h, strndup.h, strtoul.c, time_r.h.
14824
14825         * lib/.cvsignore: Add alloca.h, fnmatch.h, poll.h, stdbool.h,
14826         sysexits.h.
14827
14828 2004-06-01  Jim Meyering  <jim@meyering.net>
14829
14830         * m4/calloc.m4: New file.
14831
14832 2004-05-31  Paul Eggert  <eggert@cs.ucla.edu>
14833
14834         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Detect _Bool bug in HP aC++/ANSI
14835         C B3910B A.05.55 [Dec 04 2003].  Problem reported by Jim Meyering.
14836         Also, fix a typo in a diagnostic.
14837
14838 2004-05-30  Paul Eggert  <eggert@cs.ucla.edu>
14839
14840         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Do not require AC_FUNC_MALLOC
14841         or AC_FUNC_REALLOC.
14842
14843 2004-05-30  Paul Eggert  <eggert@cs.ucla.edu>
14844
14845         * lib/xmalloc.c (HAVE_MALLOC, HAVE_REALLOC): Do not require these
14846         macros to be defined.
14847         (xnmalloc_inline, xnrealloc_inline, xcalloc): Do not die if
14848         the allocator returns NULL because the requested size is zero.
14849
14850 2004-05-20  Paul Eggert  <eggert@cs.ucla.edu>
14851
14852         * lib/malloc/obstack.c (_obstack) [defined _LIBC]: Bring back this
14853         var.  Add comment explaining why libc still defines it.  This
14854         merges the following patch from glibc:
14855         http://sources.redhat.com/ml/libc-alpha/2004-05/msg00157.html
14856
14857 2004-05-20  Andreas Schwab  <schwab@suse.de>
14858
14859         * m4/free.m4: Replace free if it not known to work, not the other
14860         way round.
14861
14862 2004-05-19  Paul Eggert  <eggert@cs.ucla.edu>
14863
14864         * lib/obstack.c (_obstack): Remove unused variable.  It hasn't been
14865         present in glibc since revision 1.1 of this file.
14866         * lib/obstack.h (_obstack_free, obstack_1grow, obstack_1grow_fast,
14867         obstack_alignment_mask, obstack_alloc, obstack_base,
14868         obstack_blank, obstack_blank_fast, obstack_chunk_size,
14869         obstack_copy, obstack_copy0, obstack_finish, obstack_grow,
14870         obstack_grow0, obstack_init, obstack_int_grow,
14871         obstack_int_grow_fast, obstack_make_room, obstack_memory_used,
14872         obstack_next_free, obstack_object_size, obstack_ptr_grow,
14873         obstack_ptr_grow_fast, obstack_room): Remove declarations of
14874         nonexistent functions.
14875
14876 2004-05-18  Karl Berry  <karl@gnu.org>
14877
14878         * config/srclist.txt: break link for vasnprintf.c.
14879
14880 2004-05-17  Paul Eggert  <eggert@cs.ucla.edu>
14881
14882         Port obstack to the AS/400, where pointers are 16 bytes wide and
14883         you cannot cast an integer to a valid pointer.  This patch is
14884         currently waiting to be integrated into glibc; see
14885         <http://sources.redhat.com/ml/libc-alpha/2004-05/msg00073.html>.
14886
14887         * lib/obstack.h (__PTR_TO_INT, __INT_TO_PTR): Remove.
14888         All uses of __INT_TO_PTR (PTR_TO_INT ...) replaced by __PTR_ALIGN.
14889         (__BPTR_ALIGN, __PTR_ALIGN): New macros.
14890         (struct obstack): temp member is now a union of a pointer and
14891         an integer, instead of an integer.  All integer uses changed.
14892         This does not affect the physical layout of struct obstack,
14893         except on hosts (like the AS/400) where the size or alignment of
14894         void * is greater than that of ptrdiff_t.
14895         (obstack_finish) [! (defined __GNUC__ && defined __STDC__ &&
14896         __STDC__)]: Store temporary in pointer member of union, not
14897         integer member.
14898         * lib/obstack.c: Include <stddef.h>, for offsetof.
14899         (struct fooalign): Remove; it doesn't need a name.
14900         (union fooround): Change double to long double, and add void *.
14901         (DEFAULT_ALIGNMENT): Use offsetof to compute.
14902         (DEFAULT_ALIGNMENT, DEFAULT_ROUNDING): Now an enum constant,
14903         not a macro.  Hence the values are always int; so remove all
14904         casts-to-int in uses.
14905
14906 2004-05-17  Paul Eggert  <eggert@cs.ucla.edu>
14907
14908         * config/srclist.txt: Break link for argp-help.c and argp-parse.c until
14909         we can get this patch merged into glibc.
14910
14911 2004-05-17  Derek R. Price  <derek@ximbiot.com>
14912             Paul Eggert  <eggert@cs.ucla.edu>
14913
14914         * m4/argp: Depend on alloca.
14915
14916 2004-05-17  Derek R. Price  <derek@ximbiot.com>
14917             Paul Eggert  <eggert@cs.ucla.edu>
14918
14919         * lib/argp-help.c, argp-parse.c: Assume <alloca.h> rather than
14920         freecoding.
14921
14922 2004-05-17  Bruno Haible  <bruno@clisp.org>
14923
14924         * lib/vasnprintf.c (VASNPRINTF): Correctly handle the case of a
14925         precision that consists of a '.' followed by an empty digit string.
14926         Patch by Tor Lillqvist <tml@iki.fi>.
14927
14928 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
14929
14930         * m4/alloca.m4 (gl_FUNC_ALLOCA): Define HAVE_ALLOCA_H always,
14931         for backward compatibility with older code.  We need our own
14932         alloca.h if _AIX is defined.  Define HAVE_ALLOCA if we discover
14933         it under some other name, and our alloca.h will define it.
14934
14935 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
14936             Derek Price  <derek@ximbiot.com>
14937
14938         * lib/alloca.c: Include <alloca.h>, to get our interface.
14939         * lib/alloca_.h: Use __alloca on AIX, so that we don't have to
14940         include <alloca.h> first.  Use C89 prototype for alloca; this
14941         requires including <stddef.h> for size_t.  Use extern "C" if C++.
14942         Use #elif for simplicity, since we can assume C89 now.
14943         Don't try to source the system alloca.h since it will not be found
14944         and to prevent recursively including its replacement.
14945         * lib/fnmatch.c: Include <alloca.h> instead of opencoding.
14946         * lib/regex.c: Likewise.
14947
14948 2004-05-16  Derek Price  <derek@ximbiot.com>
14949             Paul Eggert  <eggert@cs.ucla.edu>
14950
14951         getline cleanup.  This changes the getndelim2 API: both order of
14952         arguments, and meaning of delim2 (now uses EOF, not 0, to indicate
14953         no delimiter).
14954
14955         * lib/getline.c: Don't include stddef.h or stdio.h, since our
14956         interface does that.
14957         (getline): Always use getdelim, so that we don't have two
14958         copies of this code.
14959         * lib/getndelim2.c: Include <limits.h>, <inttypes.h>, <stdint.h>
14960         if available.
14961         (PTRDIFF_MAX, SIZE_MAX, SSIZE_MAX): Define if not defined.
14962         (GETNDELIM2_MAXIMUM): New macro.
14963         (getndelim2): Reorder arguments.  delim==EOF now means no delimiter,
14964         instead of the old practice of delim2==0.  All callers changed.
14965         Return -1 on overflow, instead of returning junk.
14966         Do not set *linesize unless allocation succeeds.
14967         * lib/getndelim2.h: Do not include stddef.h; no longer needed, now
14968         that we include sys/types.h.
14969         * lib/getnline.h: Likewise.
14970         * lib/getndelim2.h (GETNLINE_NO_LIMIT): New macro.
14971         (getndelim2): Reorder arguments.
14972         * lib/getnline.c (getnline, getndelim):
14973         Don't discard the NMAX argument.
14974         (getnline): Invoke getndelim, to avoid code duplication.
14975         * lib/getnline.h (GETNLINE_NO_LIMIT): New macro, used instead
14976         of (size_t) -1 by callers of the getnline family.
14977
14978 2004-05-13  Paul Eggert  <eggert@cs.ucla.edu>
14979
14980         * m4/gettime.m4 (gl_GETTIME): Require gl_TIMESPEC.
14981         Check for gettimeofday.
14982         * m4/settime.m4 (gl_SETTIME): Require gl_TIMESPEC.
14983         Check for settimeofday, stime.
14984
14985 2004-05-13  Paul Eggert  <eggert@cs.ucla.edu>
14986
14987         * lib/nanosleep.c (suspended): Change its type from int to
14988         sig_atomic_t volatile.
14989         (first_call): Make it private to rpl_nanosleep, and have it
14990         be zero initially as that's a bit faster.
14991         (my_usleep): Round up fractional times instead of truncating them,
14992         as this is the usual meaning for 'sleep'.
14993
14994         * lib/gettime.c (gettime): Fall back on `time' if `gettimeofday'
14995         doesn't work.
14996         * lib/settime.c: Include <unistd.h>, for stime (on Solaris 8, anyway).
14997         (ENOSYS): Define if not defined.
14998         (settime): Fall back on stime if it exists and settimeofday fails.
14999         But don't bother with fallbacks if a method fails with errno == EPERM.
15000
15001 2004-05-11  Jim Meyering  <jim@meyering.net>
15002
15003         Prior to this change, the save_cwd caller required read access to the
15004         current directory on most systems (ones with the fchdir function).
15005
15006         * lib/save-cwd.c (save_cwd) [HAVE_FCHDIR]: If opening `.' read-only
15007         fails, try write-only, and finally, resort to using xgetcwd.
15008
15009 2004-05-06  Paul Eggert  <eggert@cs.ucla.edu>
15010
15011         * lib/obstack.c, obstack.h: Import changes from libc.
15012
15013 2004-04-28  Bruno Haible  <bruno@clisp.org>
15014
15015         * lib/findprog.c (find_in_path): Treat Cygwin like Windows, since it
15016         also implicitly appends .exe to executables.
15017         * lib/localcharset.c (ISSLASH): Treat Cygwin like Windows, since it now
15018         accepts Windows pathnames.
15019         * lib/pathname.h (ISSLASH, IS_PATH_WITH_DIR, FILESYSTEM_PREFIX_LEN):
15020         Treat Cygwin like Windows, since it now accepts Windows pathnames.
15021         * lib/progreloc.c (ISSLASH, IS_PATH_WITH_DIR, FILESYSTEM_PREFIX_LEN):
15022         Treat Cygwin like Windows, since it now accepts Windows pathnames.
15023         Reported by Derek Robert Price <derek@ximbiot.com>.
15024
15025 2004-04-21  Karl Berry  <karl@gnu.org>
15026
15027         * config/srclist.txt (localcharset.c): break sync.
15028
15029 2004-04-20  Paul Eggert  <eggert@twinsun.com>
15030
15031         * m4/host-os.m4: Add a copyright notice.
15032
15033 2004-04-20  Jim Meyering  <jim@meyering.net>
15034
15035         Change UTILS_ to gl_ in AC_DEFINE'd names.
15036         Change utils_- and jm_-prefixed variables, too.
15037         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Renamed from
15038         UTILS_FUNC_MKDIR_TRAILING_SLASH.
15039         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Renamed from UTILS_FUNC_MKSTEP.
15040
15041         * m4/dirfd.m4 (gl_FUNC_DIRFD): Rename from UTILS_FUNC_DIRFD.
15042         Don't emit trailing blanks.
15043         Also rename jm_-prefixed variables to have gl_ prefix.
15044
15045         * m4/host-os.m4 (gl_HOST_OS): Rename from UTILS_HOST_OS.
15046         Also rename jm_-prefixed variables to have gl_ prefix.
15047
15048         * m4/jm-macros.m4: Reflect the renamings.
15049         * m4/prereq.m4: Likewise.
15050
15051 2004-04-20  Jim Meyering  <jim@meyering.net>
15052
15053         * lib/getndelim2.c (getndelim2): Upon realloc failure, don't leak
15054         memory.
15055
15056 2004-04-20  Jim Meyering  <jim@meyering.net>
15057             Bruno Haible  <bruno@clisp.org>
15058
15059         * lib/localcharset.c (get_charset_aliases) [!VMS && !WIN32]: Don't leak
15060         memory when realloc fails.
15061
15062 2004-04-19  Jim Meyering  <jim@meyering.net>
15063
15064         * m4/readutmp.m4 (gl_PREREQ_READUTMP): Require gl_FUNC_FREE,
15065         now that readutmp.c may call `free (0)'.
15066
15067 2004-04-19  Bruno Haible  <bruno@clisp.org>
15068
15069         * m4/mbrtowc.m4: Change jm_ to gl_ in cache variables as well.
15070         * m4/inttypes_h.m4: Likewise.
15071         * m4/stdint_h.m4: Likewise.
15072         * m4/intmax_t.m4: Likewise.
15073         * m4/uintmax_t.m4: Likewise.
15074
15075 2004-04-18  Jim Meyering  <jim@meyering.net>
15076
15077         * m4/prereq.m4: Don't forbid jm_ prefix.
15078
15079         * m4/afs.m4, m4/allocsa.m4, m4/assert.m4, m4/backupfile.m4:
15080         * m4/bison.m4, m4/check-decl.m4, m4/chown.m4, m4/d-ino.m4:
15081         * m4/d-type.m4, m4/dirname.m4, m4/dos.m4, m4/error.m4, m4/fpending.m4:
15082         * m4/fstypename.m4, m4/fsusage.m4, m4/ftruncate.m4, m4/getdate.m4:
15083         * m4/getgroups.m4, m4/gettext.m4, m4/glibc21.m4, m4/group-member.m4:
15084         * m4/human.m4, m4/intmax.m4, m4/intmax_t.m4, m4/inttostr.m4:
15085         * m4/inttypes.m4, m4/inttypes_h.m4, m4/jm-macros.m4, m4/jm-winsz1.m4:
15086         * m4/jm-winsz2.m4, m4/lchown.m4, m4/lib-check.m4, m4/link-follow.m4:
15087         * m4/localcharset.m4, m4/longlong.m4, m4/ls-mntd-fs.m4, m4/lstat.m4:
15088         * m4/makepath.m4, m4/mbrtowc.m4, m4/mbswidth.m4, m4/memchr.m4:
15089         * m4/memcmp.m4, m4/mkdtemp.m4, m4/mkstemp.m4, m4/mountlist.m4:
15090         * m4/nanosleep.m4, m4/path-concat.m4, m4/perl.m4, m4/prereq.m4:
15091         * m4/putenv.m4, m4/quotearg.m4, m4/regex.m4, m4/stat.m4:
15092         * m4/stdint_h.m4, m4/strftime.m4, m4/strtoimax.m4, m4/strtoll.m4:
15093         * m4/strtoull.m4, m4/strtoumax.m4, m4/timespec.m4, m4/uintmax_t.m4:
15094         * m4/ulonglong.m4, m4/unlink-busy.m4, m4/unlocked-io.m4, m4/uptime.m4,
15095         * m4/utimbuf.m4, m4/utime.m4, m4/utimes-null.m4, m4/vasnprintf.m4:
15096         * m4/xstrtoimax.m4, m4/xstrtol.m4, m4/xstrtoumax.m4:
15097         Change jm_ to gl_ in AC_DEFINE'd names. Update all uses.
15098
15099 2004-04-18  Jim Meyering  <jim@meyering.net>
15100
15101         * lib/readutmp.c (read_utmp) [UTMP_NAME_FUNCTION]: Upon realloc
15102         failure, don't leak memory and do call END_UTMP_ENT.
15103
15104 2004-04-16  Jim Meyering  <jim@meyering.net>
15105
15106         * m4/prereq.m4 (jm_PREREQ_STAT): Remove macro.  It is specific to
15107         coreutils' stat program.
15108         (gl_PREREQ): Don't require jm_PREREQ_STAT.
15109
15110 2004-04-11  Paul Eggert  <eggert@twinsun.com>
15111
15112         * lib/inttostr.h: Include <limits.h> unconditionally, since we assume
15113         C89.
15114         (CHAR_BIT): Remove, since we assume C89.
15115         Include <stdint.h> if available, as per current Autoconf CVS advice.
15116
15117 2004-03-31  Jim Meyering  <jim@meyering.net>
15118
15119         * m4/prereq.m4: Require AC_FUNC_MALLOC, not jm_FUNC_MALLOC.
15120         Require AC_FUNC_REALLOC, not jm_FUNC_REALLOC.
15121         * m4/xalloc.m4: Likewise.
15122
15123 2004-03-30  Paul Eggert  <eggert@twinsun.com>
15124
15125         Merge from coreutils.
15126
15127         * m4/inttostr.m4: New file.
15128         * m4/getdate.m4 (gl_GETDATE): Remove time-related stuff.
15129         Require AM_STDBOOL_H and gl_TIMESPEC instead.
15130         Require gl_CLOCK_TIME.
15131         * m4/clock_time.m4 (gl_CLOCK_TIME): Require AC_GNU_SOURCE.
15132
15133 2004-03-30  Paul Eggert  <eggert@twinsun.com>
15134
15135         * lib/cloexec.h, cloexec.c (set_cloexec_flag): Return int
15136         not bool, to be more consistent with Unix conventions.
15137         Suggested by Bruno Haible.
15138
15139         Merge from coreutils.
15140
15141         * lib/imaxtostr.c, lib/inttostr.c, lib/inttostr.h, lib/offtostr.c:
15142         * lib/umaxtostr.c: New files.
15143
15144         * lib/getdate.h: Include stdbool.h, and timespec.h instead of
15145         the usual <time.h> dance.
15146         (get_date): Change signature to support fractional time stamps.
15147         All callers changed.
15148         * lib/getdate.y: Include "getdate.h" first, as we can now
15149         assume C89 and don't need to worry about 'const'.
15150         Similarly, include "unlocked-io.h" near start, not in middle.
15151         Include <limits.h>.
15152         (textint.value): Use long int rather than int.
15153         (textint.digits): Use size_t rather than int.
15154         (BILLION, LOG10_BILLION): New constants.
15155         (parser_control): New member rel_ns.  Members day_ordinal,
15156         time_zone, month, day, hour, minutes, rel_year, rel_month,
15157         rel_day, rel_hour, rel_minutes, rel_seconds
15158         are now long int, not int.  Member seconds is now struct timespec,
15159         not int.  New member timespec_seen.  Members dates_seen, days_seen,
15160         local_zones_seen, rels_seen, times_seen, zones_seen are now size_t,
15161         not int.
15162         (%union.intval): Now long int, not int.
15163         New member timespec.
15164         (tSDECIMAL_NUMBER, tUDECIMAL_NUMBER): New tokens.
15165         (seconds, signed_seconds, unsigned_seconds): New nonterminals.
15166         (spec): Now is a timespec or an item list.
15167         (timespec, items): New nonterminals.
15168         (time, rel, relunit, number, get_date):
15169         Add support for fractional seconds.
15170         (time): Fix bug: seconds weren't cleared in "00:00 +0000" syntax.
15171         (gmtime, localtime, mktime): Remove decls; not needed with C89.
15172         (to_hour): First arg is now long int, not int.
15173         (to_year): Returns long int, not int.
15174         Don't treat year -70 like 70.
15175         (tm_diff): Returns long int, not int.
15176         (lookup_word): Use bool instead of int when appropriate.
15177         (yylex): Use size_t for count, not int.
15178         Detect overflow when parsing large integer constants.
15179         Add support for fractions.
15180         (get_date): Make pointers 'const' if possible.
15181         Use more-portable code to detect integer overflow.
15182         (main) [TEST]: Adjust to above changes.  Test for localtime failure.
15183         Don't use ctime; it's not reliable if the year has >4 digits.
15184
15185         * lib/human.c (humblock): Inspect BLOCKSIZE if BLOCK_SIZE isn't set.
15186         This is for compatibility with BSD.
15187
15188         * lib/timespec.h (ST_TIME_CMP_NS, ST_TIME_CMP): Define.
15189         (ATIME_CMP, CTIME_CMP, MTIME_CMP, TIMESPEC_NS): Likewise.
15190         From coreutils' system.h.
15191
15192         * lib/userspec.c: Don't include "posixver.h".
15193         (parse_user_spec): Fall back on USER.GROUP parsing, regardless
15194         of POSIX version, as POSIX 1003.1-2001 allows that behavior as a
15195         compatible extension.  Simplify code by removing a boolean int
15196         that was always nonzero if a string was nonnull.
15197
15198 2004-03-30  Jim Meyering  <jim@meyering.net>
15199
15200         Merge from coreutils.
15201
15202         Avoid a configure-time warning about sys/ucred.h on OSF V4.0.
15203         * m4/ls-mntd-fs.m4: Test for sys/ucred.h separately, since
15204         on some systems one must include <grp.h> before it.
15205         Reported by Christian Krackowizer.
15206
15207 2004-03-30  Jim Meyering  <jim@meyering.net>
15208
15209         Merge from coreutils.
15210
15211         * lib/mountlist.c [HAVE_SYS_UCRED_H]: Include grp.h before sys/ucred.h.
15212
15213         * lib/readtokens.c (readtoken): Don't leak 64 bytes when reading
15214         an empty input stream.
15215
15216         * lib/readtokens.c: Include <stdbool.h>.
15217         (readtoken): Use `size_t' rather than int/long.
15218         All callers adjusted.
15219         Use `bool' rather than `int' where appropriate.
15220         Use memset rather than an explicit loop.
15221         Use x2nrealloc rather than xrealloc.
15222         Allow the use of `\0' as a delimiter.
15223         (readtokens): Likewise.
15224         * lib/readtokens.h (readtoken, readtokens): Update prototypes.
15225
15226 2004-03-30  Jim Meyering  <jim@meyering.net>
15227
15228         * m4/realloc.m4: Remove file, since now it does no more than
15229         AC_REQUIRE([AC_FUNC_REALLOC]), and that can be done via
15230         the `configure.ac' section of module/realloc.
15231         * m4/malloc.m4: Likewise, but for AC_FUNC_MALLOC.
15232
15233 2004-03-30  Bruno Haible  <bruno@clisp.org>
15234
15235         * lib/getloadavg.c (getloadavg): Don't assume setlocale returns
15236         nonnull.
15237
15238 2004-03-29  Paul Eggert  <eggert@twinsun.com>
15239
15240         Merge changes to getloadavg.c from coreutils and Emacs.
15241
15242         * lib/getloadavg.c [!defined HAVE_SETLOCALE] (setlocale):
15243         Define to an expression, not to the empty string.
15244         Include cloexec.h and xalloc.h.
15245         (getloadavg): Restore LC_NUMERIC locale after setting it temporarily.
15246         Use set_cloexec_flag rather than rolling our own.
15247         * lib/cloexec.c, lib/cloexec.h: New files.
15248
15249 2004-03-29  Paul Eggert  <eggert@twinsun.com>
15250
15251         * m4/cloexec.m4: New file.
15252
15253 2004-03-18  Paul Eggert  <eggert@twinsun.com>
15254
15255         * lib/getopt.h: Sync with libc CVS.
15256
15257 2004-03-18  Paul Eggert  <eggert@twinsun.com>
15258             Bruno Haible  <bruno@clisp.org>
15259
15260         * m4/mbswidth.m4 (gl_MBSWIDTH): Also test whether <wchar.h> declares
15261         mbswidth.
15262
15263 2004-03-18  Paul Eggert  <eggert@twinsun.com>
15264             Bruno Haible  <bruno@clisp.org>
15265
15266         * lib/mbswidth.h: Include <wchar.h> only if
15267         HAVE_DECL_MBSWIDTH_IN_WCHAR_H, not on all platforms that have
15268         <wchar.h>.
15269         * lib/mbswidth.c: Include <stdio.h> and <time.h> before <wchar.h>.
15270
15271 2004-03-09  Paul Eggert  <eggert@twinsun.com>
15272
15273         * lib/argp-parse.c, getopt.c, getopt.h, getopt1.c:
15274         Sync with libc CVS.
15275         * lib/getopt_int.h: New file, also synced from libc.
15276
15277 2004-03-09  Paul Eggert  <eggert@twinsun.com>
15278
15279         * config/srclistvars.sh: Add GNUWWWLICENSES for eggert.
15280         * config/srclist.txt: Sync getopt with libc.  Add getopt_int.h.
15281         Bring back getopt.c, getopt.h, getopt1.c.
15282
15283 2004-03-07  Paul Eggert  <eggert@twinsun.com>
15284
15285         * m4/c-stack.m4 (gl_PREREQ_C_STACK): Renamed from jm_PREREQ_C_STACK.
15286         All uses changed.  Check for sa_sigaction member; this fixes
15287         a bug first reported by Jason Andrade in
15288         <http://mail.gnu.org/archive/html/bug-textutils/2003-03/msg00027.html>.
15289
15290 2004-03-07  Paul Eggert  <eggert@twinsun.com>
15291
15292         * lib/c-stack.c (SIGACTION_WORKS): New macro.  Use it instead of long
15293         '#if' expressions.  Unlike the code it replaces, it does not
15294         depend on (defined _SC_PAGESIZE).  However, it does depend on
15295         HAVE_STRUCT_SIGACTION_SA_SIGACTION; this last change fixes a bug
15296         first reported by Jason Andrade in
15297         <http://mail.gnu.org/archive/html/bug-textutils/2003-03/msg00027.html>.
15298
15299 2004-02-25  Simon Josefsson  <jas@extundo.com>
15300
15301         * m4/strdup.m4 (gl_PREREQ_STRDUP): Check whether strdup is declared.
15302
15303 2004-02-25  Simon Josefsson  <jas@extundo.com>
15304
15305         * lib/strdup.h: New file.
15306         * lib/strdup.c: Include it.
15307         * lib/path-concat.c: Include strdup.h. Drop strdup declaration.
15308         * lib/userspec.c: Include strdup.h. Drop strdup declaration.
15309
15310 2004-02-23  Karl Berry  <karl@gnu.org>
15311
15312         * doc/maintain.texi, doc/standards.texi, doc/make-stds.texi: new files
15313         (from fencepost.gnu.org:/gd/gnuorg).
15314
15315 2004-02-23  Karl Berry  <karl@gnu.org>
15316
15317         * config/srclistvars.sh (GNUORG) [karl]: redefine.
15318         * config/srclist.txt: add maintain/standards documents.
15319
15320 2004-02-18  Bruno Haible  <bruno@clisp.org>
15321
15322         * m4/xsize.m4 (gl_XSIZE): Require AC_C_INLINE.
15323         Reported by Derek Robert Price <derek@ximbiot.com>.
15324
15325 2004-02-16  Karl Berry  <karl@gnu.org>
15326
15327         * config/mkinstalldirs, install-sh: update from automake.
15328
15329 2004-02-06  Karl Berry  <karl@gnu.org>
15330
15331         * m4/po.m4: update from gettext 0.14.1.
15332
15333 2004-02-06  Karl Berry  <karl@gnu.org>
15334
15335         * lib/config.charset: update from gettext 0.14.1.
15336
15337 2004-02-05  Paul Eggert  <eggert@twinsun.com>
15338
15339         Add comments and code, prompted by suggestions from Bruno Haible
15340         for sh-quote.
15341         * lib/quotearg.h (quotearg_alloc): New decl.  Improve the comments
15342         describing the enum quoting_style values.
15343         * lib/quotearg.c (quotearg_alloc): New function.
15344         (quotearg_buffer_restyled): Treat lone { and } as special.
15345         Treat = as special.  Work around bug with older shells
15346         that "see" a '\' that is really the 2nd byte of a multibyte char.
15347         Quote empty string with shell_quoting_style.
15348
15349 2004-02-03  Bruno Haible  <bruno@clisp.org>
15350
15351         * m4/pipe.m4: New file, from GNU gettext.
15352
15353 2004-02-03  Bruno Haible  <bruno@clisp.org>
15354
15355         * lib/pipe.h: New file, from GNU gettext.
15356         * lib/pipe.c: New file, from GNU gettext.
15357
15358 2004-01-27  Bruno Haible  <bruno@clisp.org>
15359
15360         * m4/execute.m4: New file, from GNU gettext.
15361
15362 2004-01-27  Bruno Haible  <bruno@clisp.org>
15363
15364         * lib/execute.h: New file, from GNU gettext.
15365         * lib/execute.c: New file, from GNU gettext.
15366         * lib/w32spawn.h: New file, from GNU gettext.
15367
15368 2004-01-24  Paul Eggert  <eggert@twinsun.com>
15369
15370         Merge from diffutils.
15371
15372         * lib/file-type.c (file_type): Add typed memory objects.
15373         * lib/file-type.h (S_TYPEISTMO): New macro.
15374
15375         * lib/c-stack.h (c_stack_action): Remove argv argument.
15376         * lib/c-stack.c (c_stack_action): Likewise.  All uses changed.
15377         (die): Don't calculate message unless segv_action returns.
15378         (get_stack_location, min_address_from_argv, max_address_from_argv,
15379         volatile stack_base, volatile_stack_size): Remove.
15380         (segv_handler): If ! HAVE_XSI_STACK_OVERFLOW_HEURISTIC, assume
15381         that every segmentation violation is a stack overflow.  (Ouch!)
15382         See Debian bug 136249 (still outstanding) for more info about why
15383         HAVE_XSI_STACK_OVERFLOW_HEURISTIC fails on Linux kernels.
15384
15385 2004-01-24  Paul Eggert  <eggert@twinsun.com>
15386
15387         Exit-status fix from coreutils.
15388
15389         Use exit_failure consistently in place of EXIT_FAILURE,
15390         so that program exit statuses are consistent on failure.
15391
15392         * lib/argmatch.c (ARGMATCH_DIE) [! defined ARGMATCH_DIE]:
15393         Include "exitfail.h", and use exit_failure rather than EXIT_FAILURE.
15394         * lib/argmatch.h: Comment fix to match the above.
15395         * lib/obstack.c (obstack_exit_failure) [!defined _LIBC]:
15396         Now a macro referring to exit_failure, instead of a separate
15397         variable.  Include "exitfail.h" to get it.
15398         * lib/xstrtol.h: Include "exitfail.h".
15399         (STRTOL_FATAL_ERROR): Exit with status exit_failure, not 2.
15400
15401         * lib/long-options.c (parse_long_options): Use prototype
15402         for usage function arg.  Pass it EXIT_SUCCESS rather than 0,
15403         for clarity.
15404
15405 2004-01-21  Jim Meyering  <jim@meyering.net>
15406
15407         * lib/mktime.c (__mktime_internal) [!_LIBC]: Define to mktime_internal
15408         so as not to conflict with a different-sized __mktime_internal
15409         function in GNU libc.
15410         * lib/timegm.c (__mktime_internal) [!_LIBC]: Likewise.
15411         Problem building statically-linked `ls' reported by Michael Brunnbauer.
15412
15413 2004-01-20  Karl Berry  <karl@gnu.org>
15414
15415         * config/config.guess: update from config.
15416
15417         * config/srclistvars.sh: GNUWWWLICENSES for karl.
15418
15419 2004-01-20  Bruno Haible  <bruno@clisp.org>
15420
15421         Safer stack allocation.
15422         * lib/setenv.c: Include allocsa.h.
15423         (alloca): Remove fallback definition.
15424         (freea): Remove macro.
15425         (__add_to_environ) [!_LIBC]: Use allocsa instead of alloca. Use freesa
15426         instead of freea.
15427
15428 2004-01-20  Bruno Haible  <bruno@clisp.org>
15429
15430         * m4/eealloc.m4: New file, from GNU gettext.
15431
15432 2004-01-20  Bruno Haible  <bruno@clisp.org>
15433
15434         * m4/allocsa.m4: New file, from GNU gettext.
15435
15436 2004-01-20  Bruno Haible  <bruno@clisp.org>
15437
15438         * lib/xallocsa.h: New file, from GNU gettext.
15439         * lib/xallocsa.c: New file, from GNU gettext.
15440
15441 2004-01-20  Bruno Haible  <bruno@clisp.org>
15442
15443         * lib/wait-process.c: On Windows, include windows.h. Needed on mingw.
15444
15445 2004-01-20  Bruno Haible  <bruno@clisp.org>
15446
15447         * lib/wait-process.c (wait_subprocess): Add ignore_sigpipe argument.
15448         * lib/wait-process.c (wait_subprocess): Likewise. Handle SIGPIPE
15449         specially.
15450
15451 2004-01-20  Bruno Haible  <bruno@clisp.org>
15452
15453         * lib/wait-process.c (wait_process): Disable the 2003-10-31 waitid()
15454         patch.
15455
15456 2004-01-20  Bruno Haible  <bruno@clisp.org>
15457
15458         * lib/wait-process.c (cleanup_slaves): Use ANSI C declaration.
15459
15460 2004-01-20  Bruno Haible  <bruno@clisp.org>
15461
15462         * lib/eealloc.h: New file.
15463
15464 2004-01-20  Bruno Haible  <bruno@clisp.org>
15465
15466         * lib/binary-io.h: Avoid warnings on Cygwin.
15467
15468 2004-01-20  Bruno Haible  <bruno@clisp.org>
15469
15470         * lib/allocsa.h: New file, from GNU gettext.
15471         * lib/allocsa.c: New file, from GNU gettext.
15472
15473 2004-01-18  Karl Berry  <karl@gnu.org>
15474
15475         * doc/gpl.texi, doc/lgpl.texi: new files.
15476
15477 2004-01-18  Karl Berry  <karl@gnu.org>
15478
15479         * config/srclistvars.sh (GNUWWWLICENSES): new variable.
15480         * config/srclist.txt ({fdl,gpl,lgpl}.text): get from there.
15481
15482 2004-01-15  Paul Eggert  <eggert@twinsun.com>
15483
15484         Merge from coreutils.
15485
15486         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for uintptr_t.
15487         * m4/posixver.m4 (gl_POSIXVER): Require gl_DEFAULT_POSIX2_VERSION.
15488         (gl_DEFAULT_POSIX2_VERSION): Move
15489         the documentation from 'configure' into 'config.hin',
15490         so that 'configure --help' isn't burdened by it and
15491         we don't have to worry about its formatting there.
15492         Reword the documentation so that it's more succinct
15493         and can be run together into a single paragraph.
15494         * m4/same.m4 (gl_SAME): Check for pathconf.
15495
15496 2004-01-15  Paul Eggert  <eggert@twinsun.com>
15497
15498         Merge from coreutils.
15499
15500         * lib/posixver.c: Include posixver.h.
15501
15502         * lib/same.c: Include <stdbool.h>, <limits.h>.
15503         (_POSIX_NAME_MAX): Define if not defined.
15504         (MIN): New macro.
15505         (same_name): If file names are silently truncated, report
15506         that the file names are the same if they are the same after
15507         the silent truncation.
15508
15509         * lib/xstrtod.h (xstrtod): Accept an extra arg, specifying the
15510         conversion function.
15511         * lib/xstrtod.c (xstrtod): Likewise.  All callers changed to
15512         include c-strtod.h and use c_strtod.  Don't include stdlib.h; no
15513         longer needed.
15514
15515 2004-01-15  Jim Meyering  <jim@meyering.net>
15516
15517         Merge from coreutils.
15518
15519         * m4/clock_time.m4 (gl_CLOCK_TIME): Don't set LIB_CLOCK_GETTIME
15520         if no library is required.
15521         * m4/jm-macros.m4: Don't require UTILS_SYS_OPEN_MAX.
15522         * m4/jm-macros.m4 (jm_MACROS): Require gl_FUNC_FREE.
15523         * m4/jm-macros.m4 (jm_MACROS): Require autoconf-2.58.
15524         (AC_LANG_SOURCE): Remove definition, now that we require autoconf-2.58.
15525         * m4/jm-macros.m4 (jm_MACROS): Don't require AC_FUNC_FTW.
15526         * m4/lib-check.m4 (jm_LIB_CHECK): Do not set LIB_CRYPT to the
15527         value, $ac_cv_search_crypt, if it's "none required".
15528         * m4/posixver.m4 (gl_DEFAULT_POSIX2_VERSION): New macro.
15529         * m4/prereq.m4 (jm_PREREQ): Require AC_FUNC_GETLOADAVG,
15530         not gl_FUNC_GETLOADAVG.
15531         * m4/prereq.m4 (jm_PREREQ): Require gl_READTOKENS, gl_MD5, gl_MAKEPATH,
15532         gl_LONG_OPTIONS, and gl_IDCACHE, gl_GETUGROUPS.
15533
15534 2004-01-15  Jim Meyering  <jim@meyering.net>
15535
15536         Merge from coreutils.
15537
15538         * lib/md5.h (rol) [__GNUC__ && __i386__]: Don't use `asm' code.  These
15539         days, gcc-3.x does better all by itself.  Patch from Dean Gaudet:
15540         http://mail.gnu.org/archive/html/bug-coreutils/2003-11/msg00144.html
15541
15542         * lib/posixver.c (DEFAULT_POSIX2_VERSION): Use definition of new,
15543         optional configure-time default.
15544
15545         * lib/version-etc.c (version_etc_copyright): Update copyright date.
15546
15547         * lib/xreadlink.c (xreadlink): Correct outdated comment.
15548
15549 2004-01-15  Alexandre Duret-Lutz  <adl@gnu.org>
15550
15551         Merge from coreutils.
15552
15553         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Do not set LIB_NANOSLEEP to the
15554         value, $ac_cv_search_nanosleep, if it's "none required".
15555
15556 2004-01-14  Paul Eggert  <eggert@twinsun.com>
15557
15558         * lib/fnmatch_loop.c (ALLOCA_LIMIT): Remove macro, which collided
15559         with like-named macro in fnmatch.c.
15560         (EXT): Use an internal constant instead.
15561
15562         Merge fnmatch patches from glibc.
15563         * lib/fnmatch.c (mbsinit): Remove define.
15564         Add libc_hidden_ver (__fnmatch, fnmatch).
15565         * lib/fnmatch_loop.c (FCT): Cast to int32_t and UCHAR when appropriate.
15566         Adjust to renaming of collseq_table_lookup to __collseq_table_lookup.
15567
15568 2004-01-14  Karl Berry  <karl@gnu.org>
15569
15570         * config/install-sh: update from automake.
15571
15572 2004-01-13  Karl Berry  <karl@gnu.org>
15573
15574         * config/install-sh: update from automake.
15575
15576 2004-01-09  Karl Berry  <karl@gnu.org>
15577
15578         * config/install-sh: update from automake.
15579
15580 2004-01-05  Karl Berry  <karl@gnu.org>
15581
15582         * config/config.{sub,guess}: update from config.
15583
15584 2003-12-31  Karl Berry  <karl@gnu.org>
15585
15586         * config/depcomp: update from automake.
15587
15588 2003-12-14  Karl Berry  <karl@gnu.org>
15589
15590         * lib/config.charset: update from gettext-runtime.
15591
15592 2003-12-03  Paul Eggert  <eggert@twinsun.com>
15593
15594         * lib/getgroups.c (getgroups): xmalloc takes one argument, not two.
15595         Bug reported by Alfred M. Szmidt.
15596
15597 2003-12-03  Bruno Haible  <bruno@clisp.org>
15598
15599         * m4/gettext.m4: Upgrade from gettext-0.13.
15600         * m4/po.m4: Upgrade from gettext-0.13.
15601         * m4/size_max.m4 (gl_SIZE_MAX): Don't use the _ONCE macros here.
15602         * m4/intmax.m4: New file, from gettext-0.13.
15603         * m4/printf-posix.m4: New file, from gettext-0.13.
15604
15605 2003-11-29  Karl Berry  <karl@gnu.org>
15606
15607         * lib/argp-{help.c,parse.c,namefrob.h}, argp.h: update from libc.
15608
15609 2003-11-25  Paul Eggert  <eggert@twinsun.com>
15610             Bruno Haible  <bruno@clisp.org>
15611
15612         * lib/printf-parse.h: Don't include sys/types.h.
15613         (ARG_NONE): New macro.
15614         (char_directive): Change type of *arg_index fields to size_t.
15615         * lib/printf-parse.c: Don't include sys/types.h.
15616         (SSIZE_MAX): Remove macro.
15617         (PRINTF_PARSE): Change the type of the arg_index variables to size_t.
15618         Remove unnecessary overflow check.
15619         * lib/vasnprintf.c (VASNPRINTF): Update for type change of *arg_index
15620         fields.
15621
15622 2003-11-25  Bruno Haible  <bruno@clisp.org>
15623
15624         * modules/vasnprintf (Files): Remove m4/ssize_t.m4.
15625
15626 2003-11-25  Bruno Haible  <bruno@clisp.org>
15627
15628         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Don't require
15629         gt_TYPE_SSIZE_T.
15630
15631 2003-11-24  Paul Eggert  <eggert@twinsun.com>
15632
15633         * modules/alloca: Remove dependency on xalloc.
15634
15635 2003-11-24  Paul Eggert  <eggert@twinsun.com>
15636
15637         * lib/alloca.c: Remove dependency on xalloc module.
15638         (xalloc_die): Remove.
15639         (memory_full) [!defined emacs]: New macro.
15640         [!defined emacs]: Don't include xalloc.h.
15641         (alloca): Invoke memory_full, not xalloc_die, if malloc fails or
15642         address arithmetic overflows.  Change datatypes a bit to avoid
15643         unnecessary casts.
15644
15645 2003-11-22  Jim Meyering  <jim@meyering.net>
15646
15647         * lib/xmalloc.c (x2nrealloc_inline): Fix typos in comments:
15648         s/size/size_t/.
15649
15650 2003-11-21  Karl Berry  <karl@gnu.org>
15651
15652         * config/config.{sub,guess}: update from config.
15653
15654 2003-11-18  Karl Berry  <karl@gnu.org>
15655
15656         * config/config.{sub,guess}: update from config.
15657
15658         * config/(printf-{parse,args}.[ch]): sync broken, sigh.
15659
15660 2003-11-17  Paul Eggert  <eggert@twinsun.com>
15661
15662         * README: Mention that S+T cannot overflow if S is the size of
15663         an existing object and T is sufficiently small.
15664
15665 2003-11-17  Jim Meyering  <jim@meyering.net>
15666
15667         On systems without utime and without a utimes function capable of
15668         dealing with a NULL struct utimbuf* argument, this utime replacement
15669         could -- in unusual circumstances -- leak a file descriptor.
15670         * lib/utime.c: Include <unistd.h> and <errno.h>.
15671         (utime_null): Be sure to close `fd' and to preserve errno.
15672         Reported by Geoff Collyer via Arnold Robbins.
15673
15674 2003-11-17  Bruno Haible  <bruno@clisp.org>
15675
15676         * modules/vasnprintf (Files): Add m4/ssize_t.m4.
15677         (Depends-on): Add xsize.
15678
15679 2003-11-17  Bruno Haible  <bruno@clisp.org>
15680
15681         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Require gt_TYPE_SSIZE_T.
15682
15683 2003-11-17  Bruno Haible  <bruno@clisp.org>
15684
15685         * lib/vasnprintf.c (alloca): Remove fallback definition.
15686         (freea): Remove definition.
15687         (VASNPRINTF): Use alloca only for small sizes, say <= 4000 bytes.
15688         Reported by Paul Eggert.
15689
15690 2003-11-16  Paul Eggert  <eggert@twinsun.com>
15691             Bruno Haible  <bruno@clisp.org>
15692
15693         Protect against address arithmetic overflow.
15694         * lib/printf-args.h: Include stddef.h.
15695         (arguments): Change type of field 'count' to size_t.
15696         * lib/printf-args.c (printf_fetchargs): Use size_t instead of
15697         'unsigned int' where appropriate.
15698         * lib/printf-parse.h: Include sys/types.h.
15699         (char_directive): Change type of *arg_index fields to ssize_t.
15700         (char_directives): Change type of fields 'count', max_*_length to
15701         size_t.
15702         * lib/printf-parse.c: Include sys/types.h and xsize.h.
15703         (SSIZE_MAX): Define fallback value.
15704         (PRINTF_PARSE): Use size_t instead of 'unsigned int' and ssize_t
15705         instead of 'int' where appropriate. Check a_allocated, d_allocated
15706         against overflow. Reject %m$ argument numbers > SSIZE_MAX + 1.
15707         * lib/vasnprintf.c: Include xsize.h.
15708         (VASNPRINTF): Use size_t instead of 'unsigned int' where appropriate.
15709         Check alloca, malloc, realloc, ENSURE_ALLOCATION arguments against
15710         overflow. Avoid wraparound when converting a width or precision from
15711         decimal to binary.
15712
15713 2003-11-16  Bruno Haible  <bruno@clisp.org>
15714
15715         Update from GNU gettext.
15716         * lib/printf-parse.c: Generalize to it can be compiled for wide
15717         strings.
15718         (PRINTF_PARSE, CHAR_T, DIRECTIVE, DIRECTIVES): New macros.
15719         * lib/vasnprintf.c: Generalize to it can be compiled for wide strings.
15720         (VASNPRINTF, CHAR_T, DIRECTIVE, DIRECTIVES, PRINTF_PARSE, USE_SNPRINTF,
15721         SNPRINTF): New macros.
15722         Don't include <alloca.h> if the file is used inside libintl.
15723         (local_wcslen): New function, for Solaris 2.5.1.
15724         (VASNPRINTF): Use it instead of wcslen.
15725
15726 2003-11-16  Bruno Haible  <bruno@clisp.org>
15727
15728         * lib/xsize.h (xmax): New function.
15729         (xsum, xsum3, xsum4): Declare as "pure" functions.
15730
15731 2003-11-12  Paul Eggert  <eggert@twinsun.com>
15732
15733         * modules/xalloc (Files): Undo latest change, since xalloc.h
15734         no longer needs SIZE_MAX or PTRDIFF_MAX.
15735
15736 2003-11-12  Paul Eggert  <eggert@twinsun.com>
15737
15738         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Do not require gl_SIZE_MAX or
15739         gl_PTRDIFF_MAX.
15740
15741 2003-11-12  Paul Eggert  <eggert@twinsun.com>
15742
15743         * lib/xstrtol.c (__xstrtol): Remove "break" immediately after
15744         "return", to pacify some unknown compiler.  Problem reported
15745         by Joerg Schilling.
15746
15747 2003-11-12  Paul Eggert  <eggert@twinsun.com>
15748
15749         * lib/xalloc.h: Do not include <limits.h> or <stdint.h>.
15750         (xalloc_oversized): Use sizeof (ptrdiff_t) and sizeof (size_t) for
15751         the heuristic, rather than PTRDIFF_MAX and SIZE_MAX.  This
15752         heuristic is just as accurate as far as we know, and it removes a
15753         dependency on size_max.m4 and ptrdiff_max.m4.
15754
15755 2003-11-11  Bruno Haible  <bruno@clisp.org>
15756
15757         * modules/xsize (Files): Add m4/size_max.m4.
15758         * modules/xalloc (Files): Add m4/size_max.m4, m4/ptrdiff_max.m4.
15759
15760 2003-11-11  Bruno Haible  <bruno@clisp.org>
15761
15762         * m4/size_max.m4: New file.
15763         * m4/ptrdiff_max.m4: New file.
15764         * m4/xsize,m4 (gl_XSIZE): Require gl_SIZE_MAX.
15765         * m4/xalloc.m4 (gl_PREREQ_XALLOC): New macro.
15766         (gl_XALLOC): Invoke it.
15767
15768 2003-11-11  Bruno Haible  <bruno@clisp.org>
15769
15770         * lib/xsize.h (SIZE_MAX): Remove fallback definition.
15771         * lib/xalloc.h: Include limits.h. Assume SIZE_MAX and PTRDIFF_MAX are
15772         defined.
15773
15774 2003-11-10  Paul Eggert  <eggert@twinsun.com>
15775
15776         * lib/xalloc.h (xalloc_oversized): [! (defined PTRDIFF_MAX &&
15777         PTRDIFF_MAX < SIZE_MAX)]: Fix off-by-one error that would have
15778         rejected some allocations of exactly SIZE_MAX - 2 bytes.
15779         From Bruno Haible.
15780         [defined PTRDIFF_MAX && PTRDIFF_MAX < SIZE_MAX]: Use SIZE_MAX,
15781         not (size_t) -1, since it's defined here.
15782
15783 2003-11-09  Karl Berry  <karl@gnu.org>
15784
15785         * config/mkinstalldirs, depcomp, mdate-sh: update from automake.
15786
15787 2003-11-06  Paul Eggert  <eggert@twinsun.com>
15788
15789         * lib/xalloc.h [HAVE_STDINT_H]: Include <stdint.h>.
15790         (xalloc_oversized) [! (PTRDIFF_MAX < SIZE_MAX)]:
15791         Reject sizes of exactly SIZE_MAX bytes.
15792         * lib/xreadlink.c: Include "xalloc.h" before checking whether SIZE_MAX
15793         is defined, since "xalloc.h" now defines SIZE_MAX on modern hosts.
15794
15795 2003-11-05  Bruno Haible  <bruno@clisp.org>
15796
15797         * lib/xsize.h: Include limits.h, to avoid a possible collision with
15798         SIZE_MAX defined in <limits.h> on Solaris.
15799
15800 2003-11-04  Jim Meyering  <jim@meyering.net>
15801
15802         * modules/sysexits: Use the `$(VAR)' notation for AC_SUBST'd
15803         variable names, rather than @VAR@.
15804         * modules/poll: Likewise.
15805
15806 2003-11-04  Bruno Haible  <bruno@clisp.org>
15807
15808         * modules/xsize: New file.
15809         * modules/linebreak: Depend on xsize.
15810         * MODULES.html.sh (func_all_modules): Add xsize.
15811
15812 2003-11-04  Bruno Haible  <bruno@clisp.org>
15813
15814         * m4/xsize.m4: New file.
15815
15816 2003-11-04  Bruno Haible  <bruno@clisp.org>
15817
15818         * lib/xsize.h: New file.
15819         * lib/linebreak.c: Include xsize.h.
15820         (mbs_possible_linebreaks, mbs_width_linebreaks): Check malloc()
15821         argument for overflow.
15822         Suggested by Paul Eggert.
15823
15824 2003-11-03  Karl Berry  <karl@gnu.org>
15825
15826         * config/config.{guess,sub}: update from config.
15827
15828 2003-11-03  Jim Meyering  <jim@meyering.net>
15829
15830         * modules/userspec (lib_SOURCES): Add userspec.h.
15831         (Include): Add "userspec.h".
15832         Improve description.
15833
15834 2003-11-03  Jim Meyering  <jim@meyering.net>
15835
15836         * lib/userspec.c: Include "userspec.h".
15837         * lib/userspec.h: New file.
15838
15839 2003-11-03  Bruno Haible  <bruno@clisp.org>
15840
15841         * m4/wait-process.m4 (gl_WAIT_PROCESS): Also check for waitid.
15842
15843 2003-11-03  Bruno Haible  <bruno@clisp.org>
15844
15845         * lib/wait-process.c (wait_process): Use waitid with WNOWAIT if
15846         available, to avoid (extremely rare) race condition.
15847         Suggested by Paul Eggert.
15848
15849 2003-11-02  Karl Berry  <karl@gnu.org>
15850
15851         * config/srclist.txt (vasprintf.c): sync broken, sigh.
15852
15853 2003-10-31  Paul Eggert  <eggert@twinsun.com>
15854
15855         * lib/mountlist.h (struct mount_entry.me_type_malloced): New member.
15856         * lib/mountlist.c (SIZE_MAX): Define if not defined already.
15857         (read_filesystem_list): Set and use me_type_malloced.
15858         Use "sizeof *me" rather than "sizeof (struct mount_entry)" (or
15859         whatever the type happens to be), for brevity and consistency.
15860         Check for size calculation overflow on Alphas running OSF/1.
15861
15862 2003-10-31  Jim Meyering  <jim@meyering.net>
15863
15864         * lib/hash.c: Include "xalloc.h" for use of xalloc_oversized.
15865
15866         * lib/linebuffer.c: Include <string.h> for declaration of memset.
15867
15868 2003-10-30  Paul Eggert  <eggert@twinsun.com>
15869             Bruno Haible  <bruno@clisp.org>
15870
15871         * lib/vasprintf.c: Include <limits.h>, <stdlib.h>.
15872         (vasprintf): Fail if the resulting length doesn't fit in an 'int'.
15873
15874 2003-10-30  Paul Eggert  <eggert@cs.ucla.edu>
15875
15876         * m4/host-os.m4 (UTILS_HOST_OS): Change netbsd*-gnu pattern back to
15877         netbsd*-gnu*.  Suggested by Robert Millan.
15878
15879 2003-10-29  Paul Eggert  <eggert@twinsun.com>
15880
15881         * modules/group-member: Depend on stdbool.
15882
15883 2003-10-29  Paul Eggert  <eggert@twinsun.com>
15884
15885         * m4/xalloc.m4 (gl_XALLOC): Undo previous change.
15886
15887 2003-10-29  Paul Eggert  <eggert@twinsun.com>
15888
15889         * m4/host-os.m4 (UTILS_HOST_OS): Resurrect netbsd*-gnu.  Add comments
15890         to it, and to knetbsd*-gnu and kfreebsd*-gnu.  Remove the '*' from
15891         after the 'gnu' in these cases.  This fixes some bugs in the
15892         previous change, and is based on suggestions by Robert Millan.
15893
15894 2003-10-29  Paul Eggert  <eggert@twinsun.com>
15895
15896         * lib/xalloc.h (xalloc_oversized): Now a macro, not a function,
15897         so that it works even if SIZE_MAX < N.  Do not include <stdbool.h>;
15898         no longer needed.
15899         * lib/quotearg.c (quotearg_n_options): Use it.
15900         * lib/group-member.c: Include <stdbool.h>.
15901         (free_group_info): Arg is now const *; don't free arg.
15902         (get_group_info): Now returns bool and accepts struct group_info *,
15903         rather than returning a malloc'ed struct group_info *.
15904         All uses changed.  Check for overflow in internal size calculation.
15905
15906         * lib/getusershell.c (readname): Simplify the code by using x2nrealloc
15907         rather than xmalloc/xrealloc.
15908         * lib/linebuffer.c (initbuffer, readlinebuffer): Simplify the code by
15909         using x2realloc rather than xmalloc/xrealloc.  Also, fix a C
15910         conformance bug: the old code used a pointer after freeing the
15911         storage that it addressed.
15912         * lib/hash.c (hash_initialize): Simplify the code by using
15913         xalloc_oversized rather than doing it by hand.
15914         * lib/getgroups.c (getgroups): Don't use xrealloc, since we don't need
15915         the buffer preserved.  Use free and xmalloc instead.
15916         * lib/quotearg.c (quotearg_n_options): Likewise.
15917         Use a simpler test for size overflow.  Don't use xalloc_oversized
15918         because unsigned int might be wider than size_t (!); this suggests
15919         that we should switch from unsigned int to size_t for slot numbers.
15920
15921 2003-10-28  Paul Eggert  <eggert@twinsun.com>
15922
15923         * m4/host-os.m4 (UTILS_HOST_OS): Identify GNU/KFreeBSD and
15924         GNU/KNetBSD.  These implementations use glibc atop the FreeBSD and
15925         NetBSD kernels.  Requested by Richard Stallman.
15926
15927 2003-10-27  Paul Eggert  <eggert@twinsun.com>
15928
15929         * lib/exclude.c (new_exclude): Use xzalloc rather than xmalloc
15930         to allocate the returned structure.  Do not allocate a subarray,
15931         as x2nrealloc will do that.
15932         (add_exclude): Use x2nrealloc to reallocate ex->exclude,
15933         instead of xnrealloc.
15934         (add_exclude_file): Use x2realloc instead of malloc + xnrealloc.
15935
15936 2003-10-27  Bruno Haible  <bruno@clisp.org>
15937
15938         * lib/stdbool_.h: Better support for BeOS.
15939
15940 2003-10-26  Paul Eggert  <eggert@twinsun.com>
15941
15942         * m4/xalloc.m4 (gl_XALLOC): Requore AC_C_INLINE, since xalloc.h
15943         now uses inline.
15944
15945 2003-10-26  Paul Eggert  <eggert@twinsun.com>
15946
15947         * lib/xalloc.h (xalloc_oversized): New static inline function, for
15948         callers that want to do their own size-overflow checking.  Include
15949         <stdbool.h>, since xalloc_oversized returns bool.
15950         * lib/xalloc.c (array_size_overflow): Remove.  All callers changed
15951         to use xalloc_oversized.
15952
15953         Add two functions x2realloc, x2nrealloc, for programs that grow
15954         arrays dynamically by doubling their sizes.
15955         * lib/xalloc.h (x2realloc, x2nrealloc): New decls.
15956         * lib/xmalloc.c (x2nrealloc_inline, x2nrealloc, x2realloc):
15957         New functions.
15958
15959         Port to C99 semantics for 'inline' of external functions.
15960         Bug reported by Bruno Haible.
15961         * lib/xmalloc.c (xnmalloc_inline): New static inline function,
15962         with the old contents of xnmalloc.
15963         (xnmalloc, xmalloc): Use it.
15964         (xnrealloc_inline): New static inline function,
15965         with the old contents of xnrealloc.
15966         (xnrealloc, xrealloc): Use it.
15967
15968         * lib/alloc.c (alloca): xmalloc cannot return NULL, so don't test for
15969         that.
15970
15971 2003-10-26  Karl Berry  <karl@gnu.org>
15972
15973         * config/srclist.txt (COPYING.DOC): no longer available from
15974         /gd/gnuorg; don't know where the ultimate source is.
15975
15976 2003-10-25  Paul Eggert  <eggert@twinsun.com>
15977
15978         Fix several address-calculation bugs in the hash modules,
15979         plus some minor code cleanup.
15980
15981         * lib/hash.h: Include <stdbool.h>, for bool.
15982         * lib/hash.c: Don't include <stdbool.h>, since hash.h does it now.
15983         * lib/hash.h (Hash_hasher, hash_get_n_buckets, hash_get_n_buckets_used,
15984         hash_get_n_entries, hash_get_max_bucket_length,
15985         hash_get_entries, hash_do_for_each, hash_string, hash_initialize,
15986         hash_rehash): Use size_t rather than unsigned.
15987         * lib/hash.c (struct hash_table, hash_get_n_buckets,
15988         hash_get_n_buckets_used, hash_get_n_entries,
15989         hash_get_max_bucket_length, hash_table_ok, hash_print_statistics,
15990         hash_get_entries, hash_do_for_each, hash_string, is_prime,
15991         next_prime, hash_initialize, hash_rehash, hash_delete, hash_print):
15992         Likewise.
15993         (SIZE_MAX): Define if not defined.
15994         (hash_get_max_bucket_length, hash_table_ok, hash_lookup,
15995         hash_get_first, hash_get_next, hash_get_entries, hash_do_for_each,
15996         hash_print):
15997         Use const * when possible.
15998         (hash_string): Use (unsigned char) *P rather than *(unsigned char *) P.
15999         (check_tuning): Fix bug: if tuning parameters were very close to
16000         0 or 1, rounding errors could have caused subscript violations.
16001         (hash_initialize, allocate_entry, hash_print): Remove unnecessary cast.
16002         (hash_initialize): Add 'fail:' label
16003         to free table and return NULL, and use it to simplify code.
16004         Use calloc rather than clearing the storage ourself.
16005         (hash_initialize, hash_rehash): Check for arithmetic overflow in
16006         buffer size calculations.
16007         * lib/hash-pjw.h (hash_pjw): Use size_t, not unsigned.
16008         Include <stddef.h>, for size_t.
16009         * lib/hash-pjw.c (hash_pjw): Likewise.
16010         Switch to method described by Bruno Haible.
16011         Include <limits.h>, for CHAR_BIT.
16012         (SIZE_BITS): New macro.
16013
16014 2003-10-23  Paul Eggert  <eggert@twinsun.com>
16015
16016         * m4/getline.m4 (AM_FUNC_GETLINE):
16017         Don't include getndelim2.o twice into LIBOBJS; this breaks on some
16018         hosts.  Problem reported by Derek Robert Price in
16019         <http://mail.gnu.org/archive/html/bug-gnulib/2003-10/msg00092.html>.
16020         This patch can be withdrawn after Autoconf 2.58 is required for gnulib.
16021         * m4/getndelim2.m4 (gl_GETNDELIM2): Likewise.
16022
16023 2003-10-21  Paul Eggert  <eggert@twinsun.com>
16024
16025         * lib/getndelim2.c (getndelim2): When size calculation overflows,
16026         ceiling the allocation at NMAX bytes rather than silently
16027         discarding input bytes before NMAX is reached.  This makes
16028         a difference only if NMAX exceeds SIZE_MAX / 2.
16029
16030         * lib/obstack.c: Merge from glibc.
16031         [defined _LIBC]: Include <obstack.h>, not "obstack.h".
16032         Add libc_hidden_def (_obstack_newchunk).
16033         (_obstack_free) [! defined _LIBC]: Remove.
16034         [defined _LIBC]: Make a strong alias from obstack_free, rather than
16035         a clone of the function body.
16036         (fputs) [defined _LIBC && defined USE_IN_LIBIO]: Remove.
16037         [defined _LIBC && !defined USE_IN_LIBIO]: Include <libio/iolibio.h>.
16038
16039         * lib/obstack.h: Indenting cleanup, to make it easier to merge with
16040         glibc.
16041         (obstack_grow, obstack_grow0): Remove unnecessary parentheses around
16042         arg to memcpy.
16043
16044         * lib/obstack.h (obstack_1grow_fast): Properly parenthesize arg.
16045         (obstack_ptr_grow_fast, obstack_int_grow_fast):
16046         Don't use lvalue casts, as GCC plans to remove support for them
16047         in GCC 3.5.  Reported by Joseph S. Myers.  This bug
16048         was also present in the non-GCC version, indicating that this
16049         code had always been buggy and had never been widely used.
16050         (obstack_1grow, obstack_ptr_grow, obstack_int_grow, obstack_blank):
16051         Use the fast variant of each macro, rather than copying the
16052         definiens of the fast variant; that way, we'll be more likely to
16053         catch future bugs in the fast variants.
16054
16055 2003-10-20  Bruno Haible  <bruno@clisp.org>
16056
16057         * modules/wait-process: New file.
16058         * MODULES.html.sh (func_all_modules): Add wait-process.
16059
16060 2003-10-20  Bruno Haible  <bruno@clisp.org>
16061
16062         * m4/wait-process.m4: New file.
16063
16064 2003-10-20  Bruno Haible  <bruno@clisp.org>
16065
16066         * lib/wait-process.h: New file, from GNU gettext.
16067         * lib/wait-process.c: New file, from GNU gettext.
16068
16069 2003-10-19  Jim Meyering  <jim@meyering.net>
16070
16071         * lib/vasnprintf.c (vasnprintf): Work around losing snprintf on
16072         HPUX 10.20.
16073
16074 2003-10-18  Karl Berry  <karl@gnu.org>
16075
16076         * config/config.guess: update from config.
16077
16078 2003-10-16  Paul Eggert  <eggert@twinsun.com>
16079
16080         * lib/getgroups.c: Include <errno.h>, <stdlib.h>.
16081         (getgroups): First arg is int, not size_t.
16082         Don't let 'free' mangle errno.
16083
16084 2003-10-16  Paul Eggert  <eggert@twinsun.com>
16085
16086         * README: Mention that gnulib assumes that (foo *) NULL + 0 == NULL.
16087
16088 2003-10-16  Karl Berry  <karl@gnu.org>
16089
16090         * config/config.{guess,sub}: update from config.
16091
16092 2003-10-16  Jim Meyering  <jim@meyering.net>
16093
16094         * lib/xmalloc.c: Include <string.h>, for declarations of memset and
16095         memcpy.
16096
16097 2003-10-15  Paul Eggert  <eggert@twinsun.com>
16098
16099         * lib/exclude.c: Do not include <inttypes.h> or <stdint.h>.
16100         (SIZE_MAX): Remove.
16101         (new_exclude, add_exclude_file): Initial size no longer needs to
16102         be a power of 2.
16103         (add_exclude, add_exclude_file): Use xnrealloc instead of rolling
16104         our own address arithmetic overflow checking.
16105
16106         * lib/fnmatch.c (SIZE_MAX): Define if standard headers don't.
16107         (fnmatch): Do not alloca more than 2000 wide characters;
16108         instead, use malloc for large buffers.
16109         Check for address arithmetic overflow, and return -1
16110         with errno set to ENOMEM in that case.
16111         * lib/fnmatch_loop.c (ALLOCA_LIMIT): New macro.
16112         (NEW_PATTERN): Do not alloca more than 8000 bytes;
16113         instead, return -1.  Check for address arithmetic overflow.
16114
16115 2003-10-14  Paul Eggert  <eggert@twinsun.com>
16116
16117         Handle invalid suffixes and overflow independently, so that
16118         callers can treat them independently as needed.  Fix some bugs in
16119         suffix handling, e.g., "100k@" was not diagnosed as an invalid
16120         suffix for a human-readable blocksize.  The major caller-visible
16121         change is the addition of a new
16122         LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW enum value, indicating
16123         that both overflow and suffix chars were found.
16124
16125         * lib/human.c (humblock): Don't check separately for invalid suffix
16126         char; that is xstrtoumax's job (now that its bug is fixed).
16127         * lib/xstrtoimax.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM) [defined
16128         INTMAX_MAX]: New macros.
16129         * lib/xstrtol.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM, TYPE_MINIMUM,
16130         TYPE_MAXIMUM): New macros.
16131         (bkm_scale, bkm_scale_by_power): Return strtol_error, not int.
16132         (bkm_scale, bkm_scale_by_power, __xstrtol): Return maximal values
16133         if overflow occurs, as it's what __strtol does and it's more useful
16134         in practice.
16135         (__xstrtol): If __strtol reports some error other than ERANGE,
16136         reflect it to the caller as LONGINT_INVALID.  If it reports
16137         ERANGE, continue the rest of parsing, and report LONGINT_OVERFLOW
16138         | LONGINT_INVALID_SUFFIX_CHAR if both errors occur.
16139         * lib/xstrtol.h (LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW): New enum
16140         value.
16141         (_STRTOL_ERROR): Handle it.  Abort when given unknown error codes.
16142         * lib/xstrtoul.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM): New macros.
16143         * lib/xstrtoumax.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM)
16144         [defined UINTMAX_MAX]: New macros.
16145
16146 2003-10-14  Bruno Haible  <bruno@clisp.org>
16147
16148         * modules/fatal-signal: Add m4/sig_atomic_t.m4 to file list.
16149
16150 2003-10-14  Bruno Haible  <bruno@clisp.org>
16151
16152         * m4/sig_atomic_t: New file, from GNU gettext.
16153         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Require gt_TYPE_SIG_ATOMIC_T.
16154
16155 2003-10-14  Bruno Haible  <bruno@clisp.org>
16156
16157         * lib/fatal-signal.h: Improved comments. Suggested by Paul Eggert.
16158         * lib/fatal-signal.c: Use sig_atomic_t. Suggested by Paul Eggert.
16159         Also use volatile where needed.
16160
16161 2003-10-12  Paul Eggert  <eggert@twinsun.com>
16162
16163         * modules/xalloc: Do not depend on 'exit'.  Depend on 'stdbool'.
16164         Change maintainer from Bruno Haible to 'all'.
16165
16166 2003-10-12  Paul Eggert  <eggert@twinsun.com>
16167
16168         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Require AC_C_INLINE.
16169
16170 2003-10-12  Paul Eggert  <eggert@twinsun.com>
16171
16172         * lib/xalloc.h (xnmalloc, xzalloc, xnrealloc, xclone): New decls.
16173         (XMALLOC, XCALLOC, XREALLOC, XFREE, CCLONE, CLONE): Deprecate,
16174         and define in terms of the other primitives.
16175         * lib/xmalloc.c: Include stdbool.h; do not include exit.h.
16176         (SIZE_MAX): Define if not already defined.
16177         (array_size_overflow): New function.
16178         (xalloc_die): Abort instead of exiting if 'error' returns.
16179         (xnmalloc, xnrealloc, xzalloc, xclone): New functions.
16180         (xmalloc, xrealloc): Use them.
16181         (xcalloc): Check for address arithmetic overflow.
16182         * lib/xstrdup.c (xstrdup): Use xclone, since memcpy should be
16183         a bit faster than strcpy.
16184
16185 2003-10-10  Simon Josefsson  <jas@extundo.com>
16186
16187         * modules/argp (Depends-on): Add restrict and strcase.
16188
16189 2003-10-10  Simon Josefsson  <jas@extundo.com>
16190
16191         * m4/argp.m4: Add AC_C_INLINE.
16192
16193 2003-10-08  Paul Eggert  <eggert@twinsun.com>
16194
16195         Merge getpass from libc, plus a few fixes.
16196
16197         * lib/getpass.c (HAVE_STDIO_EXT) [_LIBC]: Define to 1.
16198         Include <stdbool.h>.
16199         Include <stdio_ext.h> if HAVE_STDIO_H, otherwise define
16200         __fsetlocking to empty.
16201         [_LIBC]: Do not include "getline.h" or "unlocked-io.h", but
16202         do include <bits/libc-lock.h>.
16203         Do not include <fcntl.h>; not needed.
16204         [_LIBC]: Include <wchar.h>.
16205         (NOTCANCEL_MODE): New macro.
16206         (flockfile, funlockfile) [_LIBC]: New macros.
16207         (__libc_cleanup_push, __libc_cleanup_pop, __getline, __tcgetattr)
16208         [!_LIBC]: New macros.
16209         (call_fclose): New function.
16210         (getpass): Use it.  Save tty stream separately; this simplifies the
16211         code and makes it more reliable if stdin happens to equal stdout.
16212         Invoke __fsetlocking on tty.
16213         Handle thread cancellation if needed.
16214         Namespace cleanup (use __tcgetattr, __getline).
16215         Use bool for Booleans.
16216         [USE_IN_LIBIO]: Handle wide streams.
16217         [!_LIBC]: Unconditionally do the fseek, since we don't know what
16218         stream might go where.
16219
16220         * lib/unlocked-io.h: Include <stdio.h>, so that the caller
16221         doesn't have to include <stdio.h> before us.
16222         (clearerr_unlocked, feof_unlocked, ferror_unlocked,
16223         fflush_unlocked, fgets_unlocked, fputc_unlocked, fputs_unlocked,
16224         fread_unlocked, fwrite_unlocked, getc_unlocked, getchar_unlocked,
16225         putc_unlocked, putchar_unlocked): Define to the unlocked counterpart
16226         if not declared, so that we can use getpass.c code from libc without
16227         rewriting it.
16228         (flockfile, ftrylockfile, funlockfile): New macros.
16229
16230 2003-10-08  Paul Eggert  <eggert@twinsun.com>
16231
16232         * modules/getpass: Depend on stdbool.
16233
16234 2003-10-08  Paul Eggert  <eggert@twinsun.com>
16235
16236         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for stdio_ext.h.
16237
16238 2003-10-07  Karl Berry  <karl@gnu.org>
16239
16240         * config/config.{guess,sub}: update from config.
16241
16242 2003-10-06  Jim Meyering  <jim@meyering.net>
16243             Bruno Haible  <bruno@clisp.org>
16244
16245         This lets translators provide better translations for the
16246         "Written by ..." part of --version output.
16247         * lib/version-etc.h: Include stdarg.h.
16248         (version_etc_copyright): Declare as readonly.
16249         (version_etc): Make this function variadic with a NULL-terminated list
16250         of author name strings.
16251         (version_etc_va): New declaration.
16252         * lib/version-etc.c: Include stdarg.h, stdlib.h.
16253         (version_etc_copyright): Declare as readonly.
16254         (version_etc_va): New function. Provide a different translatable string
16255         for each possible number of authors < 10. Abbreviate when there are 10
16256         authors or more.
16257         (version_etc): Make this function variadic. Call version_etc_va.
16258         Suggestion from Gary V. Vaughan.
16259
16260         * lib/long-options.h (parse_long_options): Change prototype: the
16261         authors string is moved to the end and becomes variadic.
16262         * lib/long-options.c: Include stdarg.h.
16263         (parse_long_options): Make this function variadic, too.
16264         Call version_etc_va, not version_etc.
16265
16266 2003-10-06  Bruno Haible  <bruno@clisp.org>
16267
16268         * modules/version-etc-2: Remove file.
16269         * MODULES.html.sh (func_all_modules): Remove version-etc-2.
16270
16271 2003-10-06  Bruno Haible  <bruno@clisp.org>
16272
16273         * modules/fatal-signal: New file.
16274         * MODULES.html.sh (func_all_modules): Add fatal-signal.
16275
16276 2003-10-06  Bruno Haible  <bruno@clisp.org>
16277
16278         * m4/fatal-signal.m4: New file.
16279         * m4/signalblocking.m4: New file, from GNU gettext.
16280
16281 2003-10-06  Bruno Haible  <bruno@clisp.org>
16282
16283         * lib/version-etc-2.h: Remove file.
16284         * lib/version-etc-2.c: Remove file.
16285
16286 2003-10-06  Bruno Haible  <bruno@clisp.org>
16287
16288         * lib/fatal-signal.h: New file, from GNU gettext.
16289         * lib/fatal-signal.c: New file, from GNU gettext.
16290
16291 2003-10-05  Paul Eggert  <eggert@twinsun.com>
16292
16293         * README: Rework advice for preventing empty .o files.
16294         Don't recommend ELIDE constructs.  Recommend <stddef.h>,
16295         not <sys/types.h>.
16296
16297 2003-10-04  Karl Berry  <karl@gnu.org>
16298
16299         * lib/argp*: update from libc.
16300
16301 2003-10-04  Karl Berry  <karl@gnu.org>
16302
16303         * config/config.{guess,sub}: update from config.
16304
16305 2003-10-02  Bruno Haible  <bruno@clisp.org>
16306
16307         * modules/lchown (Include): Add lchown.h.
16308         * modules/time_r (Include): Use "..." syntax.
16309         * modules/xgetdomainname (Include): Add xgetdomainname.h.
16310
16311 2003-10-01  Simon Josefsson  <jas@extundo.com>
16312
16313         * MODULES.html.sh (func_all_modules): Move gethostname from section
16314         'based on' to section 'lacking' POSIX:2001.
16315
16316 2003-10-01  Larry Jones  <lawrence.jones@eds.com>
16317
16318         * lib/getpass.c (getpass): Use a no-op fseek when switching from input
16319         to output mode on the same stream.
16320
16321 2003-09-29  Paul Eggert  <eggert@twinsun.com>
16322
16323         * lib/strftime.c (tm_diff) [! HAVE_TM_GMTOFF]:
16324         Fix arg typo in previous patch.
16325
16326 2003-09-28  Jim Meyering  <jim@meyering.net>
16327
16328         * lib/error.c: Correct cpp indentation.
16329
16330 2003-09-27  Paul Eggert  <eggert@twinsun.com>
16331
16332         * modules/free: New file.
16333
16334 2003-09-27  Paul Eggert  <eggert@twinsun.com>
16335
16336         * m4/free.m4: New file.
16337
16338 2003-09-27  Paul Eggert  <eggert@twinsun.com>
16339
16340         * lib/minmax.h (MIN, MAX)
16341         [__STDC__ && defined __GNUC__ && __GNUC__ >= 2]:
16342         Omit the special code that used __typeof__, since we worry that
16343         it could be more trouble than it's worth.  See:
16344         http://mail.gnu.org/archive/html/bug-gnulib/2003-01/msg00090.html
16345         http://mail.gnu.org/archive/html/bug-gnulib/2003-01/msg00095.html
16346
16347         * lib/free.c: New file.
16348
16349 2003-09-27  Oskar Liljeblad  <oskar@osk.mine.nu>
16350
16351         Trivial fixes to Makefile.am parts of module listings.
16352         * modules/strstr: Append strstr.h to lib_SOURCES.
16353         * modules/strcase: Likewise, for strcase.h.
16354
16355 2003-09-27  Karl Berry  <karl@gnu.org>
16356
16357         * config/mkinstalldirs: update from automake.
16358
16359 2003-09-26  Paul Eggert  <eggert@twinsun.com>
16360
16361         * lib/error.c (SIZE_MAX) [!defined SIZE_MAX]: Define.
16362         (error_tail): Do not loop, reallocating temporary buffer, since
16363         the output cannot contain more wide characters than the input
16364         contains bytes, the size must be big enough already.  This avoids
16365         one potential size overflow calculation.  Check for size overflow
16366         when calculating temporary buffer size.  Free temporary buffer
16367         when done, if it was allocated with malloc; this plugs a memory
16368         leak.  Remove casts from void * to pointers, that are no longer
16369         needed now that we're assuming C89 or better.
16370
16371         Merge error changes from glibc.
16372
16373         * lib/error.c, error.h: Update copyright notice header to match glibc.
16374         * lib/error.c [defined _LIBC]: Include <errno.h>, <bits/libc-lock.h>.
16375         (error, error_at_line) [defined _LIBC && defined __libc_ptf_call]:
16376         Disable cancellation while printing error.
16377         * lib/error.h: Prepend __ to parameter names.
16378
16379 2003-09-26  Jim Meyering  <jim@meyering.net>
16380
16381         * lib/error.c (error_tail): Move some declarations
16382         into inner scope where the local variables are used.
16383
16384 2003-09-26  Bruno Haible  <bruno@clisp.org>
16385
16386         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Add comments about the AIX
16387         stpncpy().
16388         Don't define stpncpy through config.h; it's now done through stpncpy.h.
16389
16390 2003-09-26  Bruno Haible  <bruno@clisp.org>
16391
16392         * lib/stpncpy.h (gnu_stpncpy): New declaration.
16393         (stpncpy): Define as alias for gnu_stpncpy.
16394         * lib/stpncpy.c [!_LIBC]: Define gnu_stpncpy, not stpncpy.
16395
16396 2003-09-25  Simon Josefsson  <jas@extundo.com>
16397
16398         * lib/xgetdomainname.h: New file.
16399         * lib/xgetdomainname.c: New file.
16400
16401 2003-09-25  Simon Josefsson  <jas@extundo.com>
16402             Bruno Haible  <bruno@clisp.org>
16403
16404         * modules/getdomainname: New file.
16405         * modules/xgetdomainname: New file.
16406         * MODULES.html.sh (func_all_modules): Add getdomainname,
16407         xgetdomainname.
16408
16409 2003-09-25  Simon Josefsson  <jas@extundo.com>
16410             Bruno Haible  <bruno@clisp.org>
16411
16412         * m4/getdomainname.m4: New file.
16413
16414 2003-09-25  Simon Josefsson  <jas@extundo.com>
16415             Bruno Haible  <bruno@clisp.org>
16416
16417         * lib/getdomainname.h: New file.
16418         * lib/getdomainname.c: New file.
16419
16420 2003-09-25  Karl Berry  <karl@gnu.org>
16421
16422         * lib/argp-fmtstream.c, argp-help.c: update from libc.
16423
16424 2003-09-25  Karl Berry  <karl@gnu.org>
16425
16426         * config/install-sh: update from automake.
16427
16428 2003-09-25  Bruno Haible  <bruno@clisp.org>
16429
16430         * modules/version-etc-2: New file, from modules/version-etc with
16431         modifications.
16432         * MODULES.html.sh (func_all_modules): Add version-etc-2.
16433
16434 2003-09-25  Bruno Haible  <bruno@clisp.org>
16435
16436         * lib/version-etc-2.h: New file, from version-etc.h with modifications.
16437         * lib/version-etc-2.c: New file, from version-etc.c with modifications.
16438
16439 2003-09-24  Simon Josefsson  <jas@extundo.com>
16440
16441         * modules/xgethostname: Add xgethostname.h.
16442
16443 2003-09-24  Paul Eggert  <eggert@twinsun.com>
16444
16445         * lib/linebuffer.c (freebuffer): Don't free the argument, just
16446         the buffer associated with the argument.  Bug reported by
16447         Simon Josefsson.
16448
16449 2003-09-24  Paul Eggert  <eggert@twinsun.com>
16450
16451         * README: Document assumptions that 'int' is at least 32 bits
16452         wide, that integer arithmetic is 2's complement without overflow,
16453         that there are no holes in integer values, that adding sizes of
16454         two nonoverlapping objects can't overflow, and that all-bits-zero
16455         yields scalar zero.  Fix spelling and capitalization typos.
16456
16457 2003-09-19  Karl Berry  <karl@gnu.org>
16458
16459         * lib/argp.h: update from libc.
16460
16461 2003-09-17  Paul Eggert  <eggert@twinsun.com>
16462
16463         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Call AC_BEFORE first,
16464         to avoid spurious warnings like "AC_RUN_IFELSE was called before
16465         gl_USE_SYSTEM_EXTENSIONS" from autoreconf.
16466
16467 2003-09-17  Paul Eggert  <eggert@twinsun.com>
16468
16469         * gnulib-tool: Use "test -h", not "test -L", for portability
16470         to Solaris 8 /bin/sh.  (This bug is fixed in Solaris 9.)
16471         (tags_regexp): Remove, since \| doesn't conform to POSIX.
16472         (sed_extract_prog): Issue s commands one-by-one, rather than
16473         using \| in one s command.
16474
16475 2003-09-16  Paul Eggert  <eggert@twinsun.com>
16476
16477         * lib/linebuffer.c (readlinebuffer): Return NULL immediately upon
16478         input error, instead of returning NULL the next time we are called
16479         (and therefore losing track of errno).
16480
16481 2003-09-16  Bruno Haible  <bruno@clisp.org>
16482
16483         * gnulib-tool (func_create_testdir): Warn about duplicated
16484         dependencies.
16485
16486 2003-09-15  Paul Eggert  <eggert@twinsun.com>
16487
16488         * modules/argmatch, modules/fatal, modules/obstack,
16489         modules/xalloc, modules/xgethostname: Sort dependencies by
16490         importance, not alphabetically.
16491
16492 2003-09-15  Paul Eggert  <eggert@twinsun.com>
16493
16494         * lib/getndelim2.c (getndelim2): Don't trash errno when a read
16495         fails, so that the caller gets the proper errno.
16496
16497         * lib/readutmp.c (read_utmp): Likewise.
16498         Check for fstat error.  Close stream and free storage
16499         when failing.
16500
16501 2003-09-14  Karl Berry  <karl@gnu.org>
16502
16503         * config/srclist.txt (strdup.c): disable for c89 changes.
16504
16505 2003-09-14  Jim Meyering  <jim@meyering.net>
16506
16507         * lib/getloadavg.c: Correct cpp indentation.
16508         * lib/strdup.c: Likewise.
16509         * lib/vasnprintf.c: Likewise.
16510
16511 2003-09-14  Bruno Haible  <bruno@clisp.org>
16512
16513         * modules/fwriteerror: New file.
16514         * MODULES.html.sh (func_all_modules): Add fwriteerror.
16515
16516 2003-09-14  Bruno Haible  <bruno@clisp.org>
16517
16518         * lib/fwriteerror.h: New file.
16519         * lib/fwriteerror.c: New file.
16520
16521 2003-09-12  Paul Eggert  <eggert@twinsun.com>
16522
16523         * modules/argmatch, modules/exitfail, modules/fatal, modules/obstack,
16524         modules/xgethostname, modules/xalloc: Depend on exit.
16525
16526 2003-09-12  Paul Eggert  <eggert@twinsun.com>
16527
16528         * m4/error.m4: Require AC_FUNC_STRERROR_R rather than invoking it.
16529
16530         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Require AC_AIX
16531         and AC_MINIX, too, so that their extensions are available.
16532
16533         * m4/prereq.m4 (jm_PREREQ_ADDEXT): Remove.  All uses removed.
16534         This macro has been superseded by gl_BACKUPFILE.
16535
16536         More patches to assume C89 or better.
16537
16538         * m4/error.m4 (gl_ERROR): Don't check for vprintf.
16539
16540         * m4/check-decl.m4 (jm_CHECK_DECLS): Include <string.h>, <stdlib.h>
16541         unconditionally.
16542         * m4/closeout.m4 (gl_CLOSEOUT): Don't check for stdlib.h.
16543         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER):
16544         Include <string.h>, <stdlib.h> unconditionally.
16545         * m4/lstat.m4 (gl_PREREQ_LSTAT): Don't check for stdlib.h, free.
16546         * m4/readdir.m4 (GL_FUNC_READDIR): Don't check for string.h.
16547         * m4/readutmp.m4 (gl_PREREQ_READUTMP): Don't check for standard C
16548         headers or for string.h.
16549         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Don't check for stdlib.h
16550         or strtoul.
16551
16552         * m4/mkstemp.m4 (jm_PREREQ_TEMPNAME): Do not require standard C
16553         headers.
16554         * m4/strdup.m4 (gl_PREREQ_STRDUP): Likewise.
16555         * m4/userspec.m4 (gl_USERSPEC): Likewise.
16556         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Likewise.
16557         * m4/xstrtod.m4 (gl_XSTRTOD): Likewise.
16558         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
16559         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't check for limits.h,
16560         memcpy, memset.
16561         (jm_FUNC_GNU_STRFTIME): Don't require standard C headers.
16562         * m4/strtod.m4 (gl_FUNC_STRTOD): Do not check for float.h.
16563         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Do not check for stdlib.h,
16564         strtol.
16565         * m4/strtol.m4 (gl_FUNC_STRTOL): Do not check for limits.h.
16566         * m4/userspec.m4 (gl_USERSPEC): Do not check for string.h.
16567         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Do not check for string.h, strtol,
16568         strtoul.
16569
16570 2003-09-12  Paul Eggert  <eggert@twinsun.com>
16571
16572         * lib/argmatch.c, fatal.c, xgethostname.c, xmalloc.c: Include exit.h.
16573         * lib/obstack.c [!defined _LIBC]: Likewise.
16574         * lib/argmatch.c (EXIT_FAILURE): Remove; now done by exit.h
16575         * lib/exitfail.c, fatal.c, xgethostname.c, xmalloc.c: Likewise.
16576         * lib/exitfail.c: Don't include stdlib.h; no longer needed.
16577
16578         More changes to assume C89 or better.
16579
16580         * lib/error.c (error_tail): Assume vprintf.
16581
16582         * lib/argmatch.c (getenv): Remove decl.
16583         * lib/progreloc.c (get_full_program_name): Define via prototype.
16584         * lib/setenv.c (clearenv): Likewise.
16585         * lib/stpncpy.c: Do not include <string.h> or <sys/types.h>; not
16586         needed.
16587         * lib/strdup.c: Include <stdlib.h>, <string.h> unconditionally.
16588         (malloc, memcpy): Remove decls.
16589         * lib/strftime.c (HAVE_LIMITS_H, STDC_HEADERS) [defined _LIBC]: Remove.
16590         (HAVE_MEMCPY) [defined emacs && !defined HAVE_BCOPY]: Remove.
16591         Include <limits.h>, <stddef.h>, <stdlib.h>, <string.h> unconditionally.
16592         (memcpy): Remove macro.
16593         (MEMCPY) [!defined COMPILE_WIDE]: Define to memcpy unconditionally.
16594         (__P): Remove.  All uses removed.
16595         (PTR): Remove.  All uses changed to void *.
16596         (CHAR_BIT, NULL): Remove.
16597         (spaces, zeros, memset_space, memset_zero)
16598         [!defined memset && !defined HAVE_MEMSET && !defined _LIBC]:
16599         Remove.
16600         (LOCALE_PARAM, LOCALE_PARAM_DECL): Remove.
16601         (memcpy_lowcase, memcpy_uppcase, tm_diff, iso_week_days):
16602         Define with prototype.
16603         Remove now-unnecessary prototype decl.
16604         (extra_args_spec): Assume ANSI C.  All uses changed.
16605         (extra_args_spec_iso): Remove.
16606         (my_strftime, emacs_strftimeu): Define via prototype.
16607         * lib/strtod.c: Include <float.h>, <stdlib.h>, <string.h>
16608         unconditionally.
16609         (DBL_MAX, DBL_MIN, HUGE_VAL, NULL): Remove decls.
16610         * lib/strtoimax.c: Include <stdlib.h> unconditionally.
16611         (strtoul, strtol): Remove decls.
16612         * lib/strtol.c (STDC_HEADERS, HAVE_LIMITS_H, NULL, ULONG_MAX,
16613         LONG_MAX): Remove.
16614         Include <limits.h>, <stddef.h>, <stdlib.h>, <string.h> unconditionally.
16615         (LOCALE_PARAM_DECL): Remove.  All uses changed to LOCALE_PARAM_PROTO.
16616         (LOCALE_PARAM_PROTO): New macro.
16617         (INTERNAL, INTERNAL1, WEAKNAME): Assume ANSI C, not K&R.
16618         (INTERNAL (strtol), strtol): Define with a prototype.
16619         (PARAMS): Remove.  All uses removed.
16620         * lib/tempname.c: Include <string.h> unconditionally.
16621         * lib/userspec.c: Include <stdlib.h>, <string.h> unconditionally.
16622         * lib/xgethostname.c (main): Define with a prototype.
16623         * lib/xmalloc.c: Include "xalloc.h" first, to check interface.
16624         Include <stdlib.h> unconditionally.
16625         (calloc, malloc, realloc, free): Remove decls.
16626         * lib/xstrtod.c: Include "xstrtod.h" first, to check interface.
16627         Include <stdlib.h> unconditionally.  Sort include file names.
16628         (strtod): Remove.
16629         (xstrtod): Define with a prototype.
16630         * lib/xstrtol.c: Include <stdlib.h>, <string.h> unconditionally.
16631         (strtol, strtoul): Remove decls.
16632
16633 2003-09-11  Paul Eggert  <eggert@twinsun.com>
16634
16635         More patches to assume C89 or better.
16636         * m4/strndup.m4 (gl_PREREQ_STRNDUP): Remove STDC_HEADERS check.
16637         * m4/strnlen.m4 (gl_PREREQ_STRNLEN): Don't check for memory.h,
16638         string.h, memchr, STDC_HEADERS.
16639
16640 2003-09-11  Paul Eggert  <eggert@twinsun.com>
16641
16642         * lib/strndup.c: Don't include <stdio.h>, <sys/types.h>.
16643         Include <stdlib.h>, <string.h> unconditionally.
16644         Remove now-unnecessary cast to char *.
16645         * lib/strnlen.c: Include <string.h> unconditionally.
16646         * lib/yesno.c (yesno): Define with a prototype.
16647
16648 2003-09-11  Bruno Haible  <bruno@clisp.org>
16649
16650         * config/srclist.txt (setenv.c, unsetenv.c): Disable for the moment.
16651
16652 2003-09-10  Jim Meyering  <jim@meyering.net>
16653
16654         * lib/error.c: Correct indentation of cpp directives.
16655
16656 2003-09-10  Bruno Haible  <bruno@clisp.org>
16657
16658         * m4/strcspn.m4 (gl_PREREQ_STRCSPN): Remove <string.h> check.
16659         * m4/strpbrk.m4 (gl_PREREQ_STRPBRK): Remove <string.h> check.
16660         * m4/strstr.m4 (gl_PREREQ_STRSTR): Remove <string.h> check.
16661         * m4/unicodeio.m4 (gl_UNICODEIO): Remove <string.h> check.
16662         * m4/setenv.m4 (gl_PREREQ_SETENV, gl_PREREQ_UNSETENV): Remove
16663         <stdlib.h> and <string.h> checks.
16664         * m4/xreadlink.m4 (gl_XREADLINK): Remove <stdlib.h> check.
16665         * m4/yesno.m4 (gl_YESNO): Remove <stdlib.h> check.
16666
16667 2003-09-10  Bruno Haible  <bruno@clisp.org>
16668
16669         * lib/strcspn.c: Include <string.h> unconditionally.
16670         * lib/strpbrk.c: Include <string.h> unconditionally.
16671         * lib/strstr.c: Include <string.h> unconditionally.
16672         * lib/unicodeio.c: Include <string.h> unconditionally.
16673         * lib/setenv.c: Include <stdlib.h> and <string.h> unconditionally.
16674         * lib/unsetenv.c: Likewise.
16675         * lib/xreadlink.c: Include <stdlib.h> unconditionally.
16676         * lib/yesno.c: Include <stdlib.h> unconditionally.
16677         (rpmatch): Add prototype.
16678
16679 2003-09-09  Paul Eggert  <eggert@twinsun.com>
16680
16681         More patches to assume C89 or better.
16682         * m4/getcwd.m4 (AC_FUNC_GETCWD_NULL): Don't check for stdlib.h.
16683         * m4/getopt.m4 (gl_GETOPT): Don't check for string.h.
16684         * m4/getugroups.m4 (gl_GETUGROUPS): Do not check for standard C headers
16685         or for string.h.
16686         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Do not check for
16687         stdlib.h.
16688         * m4/group-member.m4 (gl_PREREQ_GROUP_MEMBER): Do not require standard
16689         C headers.
16690         * m4/hard-locale.m4 (gl_HARD_LOCALE): Do not check for stdlib.h,
16691         string.h.
16692         * m4/hash.m4 (gl_HASH): Do not check for stdlib.h, malloc, free.
16693         * m4/human.m4 (gl_HUMAN): Do not check for stdlib.h, string.h, getenv.
16694         * m4/idcache.m4 (gl_IDCACHE): Do not check for standard C headers,
16695         or for string.h.
16696         * m4/long-options.m4 (gl_LONG_OPTIONS): Do not check for stdlib.h.
16697         * m4/makepath.m4 (gl_MAKEPATH): Do not check for string.h or standard
16698         C headers.
16699         * m4/md5.m4 (gl_MD5): Don't check for limits.h, standard C headers,
16700         memcpy.
16701         * m4/sha.m4 (gl_SHA): Don't check for standard Cheaders, memcpy.
16702         * m4/memchr.m4 (jm_PREREQ_MEMCHR): Don't check for limits.h, stdlib.h.
16703         * m4/memcmp.m4 (gl_PREREQ_MEMCMP): Don't check for string.h.
16704         * m4/memcoll.m4 (gl_MEMCOLL): Likewise.
16705         * m4/memrchr.c (gl_PREREQ_MEMRCHR): Don't check for limits.h.
16706         * m4/mkdir-slash.m4 (gl_PREREQ_MKDIR): Don't check for stdlib.h,
16707         string.h, free.
16708         * m4/mktime.m4 (gl_PREREQ_MKTIME): Don't check for standard C headers.
16709         * m4/modechange.m4 (gl_MODECHANGE): Don't check for standard C headers.
16710         * m4/mountlist.m4 (gl_PREREQ_MOUNTLIST_EXTRA): Don't check for standard
16711         C headers, or for string.h.
16712         * m4/obstack.m4 (gl_OBSTACK): Don't check for stddefe.h, string.h.
16713         (gl_PREREQ_OBSTACK): Don't check for stdlib.h.
16714         * m4/path-concat.m4 (gl_PATH_CONCAT): Don't check for standard C
16715         headers, memory.h, stdlib.h, string.h, strings.h.
16716         * m4/posixtm.m4 (gl_POSIXTM): Don't check for stdlib.h, string.h.
16717         * m4/posixver.m4 (gl_POSIXVER): Don't check for getenv.
16718         * m4/putenv.m4 (gl_PREREQ_PUTENV): Don't check for string.h, memcpy,
16719         strchr.
16720         * m4/readtokens.m4 (gl_READTOKENS): Don't check for standard C
16721         headers, memory.h, string.h.
16722         * m4/regex.m4 (jm_PREREQ_REGEX): Do not check for limits.h, string.h.
16723         * m4/rename.m4 (gl_PREREQ_RENAME): Do not check for stdlib.h, string.h,
16724         free.
16725         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Don't check for standard C
16726         headers.
16727         * m4/same.m4 (gl_SAME): Don't check for stdlib.h, string.h, free.
16728         * m4/save-cwd.m4 (gl_SAVE_CWD): Don't check for standard C headers.
16729         * m4/savedir.m4 (gl_SAVEDIR): Don't check for standard C headers.
16730         * m4/strchrnul.m4 (gl_PREREQ_STRCHRNUL): Don't check for string.h.
16731         * m4/xgetcwd.m4 (gl_XGETCWD): Don't check for stdlib.h.
16732
16733 2003-09-09  Paul Eggert  <eggert@twinsun.com>
16734
16735         More K&R removal.
16736
16737         * lib/acosl.c (main): Use a prototype.
16738         * lib/asinl.c, cosl.c, expl.c, frexpl.c, ldexpl.c, sinl.c,
16739         tanl.c: Likewise.
16740
16741         * lib/getloadavg.c (getloadavg, main): Define via prototypes.
16742
16743         * lib/getopt.h (struct option.name): Assume C89, and use 'const'.
16744         (getopt, etopt_long, getopt_long_only, _getopt_internal)
16745         [defined __GNU_LIBRARY__]: Assume C89, so we can always declare
16746         with a prototype.
16747         * lib/getopt.c (const): Remove macro.
16748         Include <string.h> unconditionally.
16749         (my_index): Remove; all uses changed to strchr.
16750         (strlen): Remove decl.
16751         (exchange): Remove forward decl; no longer needed.
16752         (exchange, _getopt_initialize, _getopt_internal, getopt, main):
16753         Define with prototype.
16754         * lib/getopt1.c (const): Remove macro.
16755         (getopt_long, getopt_long_only, main): Define with prototype.
16756
16757         * lib/getugroups.c: Include <string.h> unconditionally.
16758
16759         * lib/getusershell.c: Include <stdlib.h> unconditionally.
16760         (getusershell, setusershell, endusershell, readname, main):
16761         Define with prototypes.
16762
16763         * lib/group-member.c: Include group-member.h first.
16764         Include <stdlib.h> unconditionally.
16765
16766         * lib/hard-locale.c: Include hard-locale.h first.
16767         Include <stdlib.h>, <string.h> unconditionally.
16768
16769         * lib/hash.c (free, malloc): Remove decls.
16770         Include <stdlib.h> unconditionally.
16771
16772         * lib/human.c: Include <stdlib.h>, <string.h> unconditionally.
16773         (getenv): Do not declare.
16774
16775         * lib/idcache.c: Include <string.h> unconditionally.
16776
16777         * lib/long-options.c: Include long-options.h first, to test interface.
16778         Include <stdlib.h> unconditionally.
16779
16780         * lib/makepath.c: Include makepath.h first, to test interface.
16781         Include <stdlib.h> and <string.h> unconditionally.
16782
16783         * lib/linebuffer.c: Include <stdlib.h>.
16784         (free): Remove decl.
16785
16786         * lib/malloc.c: Include <stdlib.h>, for malloc; don't bother with
16787         stddef.h. rpl_malloc returns void *, not char *.
16788         * lib/realloc.c (rpl_realloc): Likewise.  Also, define with a
16789         prototype.
16790
16791         * lib/md5.h: Include <limits.h> unconditionally.
16792         (UINT_MAX_32_BITS): Don't worry about non-__STDC__ case.
16793         (__P): Remove; all uses removed.
16794         * lib/md5.c: Include "md5.h" first.
16795         (md5_init_ctx, md5_read_ctx, md5_finish_ctx, md5_stream,
16796         md5_buffer, md5_process_bytes, md5_process_block):
16797         Define with prototypes.
16798         * lib/sha.h (__P): Remove all uses.  (It wasn't defined??)
16799         * lib/sha.c: Include "sha.h" first.
16800         Include <stdlib.h>, <string.h> unconditionally.
16801
16802         * lib/memchr.c (__ptr_t): Remove; all uses changed to void *.
16803         * lib/memcmp.c (__ptr_t): Likewise.
16804         * lib/memrchr.c (__ptr_t): Likewise.
16805         * lib/memchr.c, memcmp.c, memcoll.c, memrchr.c:
16806         Include <string.h> unconditionally.
16807         * lib/memchr.c, memrchr.c: Include <limits.h> unconditionally.
16808         * lib/memchr.c: Include <stdlib.h> unconditionally.
16809         * lib/memchr.c (LONG_MAX): Remove.
16810         * lib/memrchr.c (LONG_MAX): Likewise.
16811         * lib/memchr.c (__memchr): Define via a prototype.
16812         * lib/memrchr.c (__memrchr): Likewise.
16813         * lib/memcmp.c (__P): Remove, and remove all uses.
16814         (memcmp_bytes, memcmp_common_alignment, memcmp_not_common_alignment):
16815         Remove forward decls; no longer needed.
16816         * lib/memcpy.c, memmove.c, memset.c: Include <stddef.h>.
16817         Use types required by C89 in prototype.
16818
16819         * lib/mkdir.c: Include <stdlib.h>, <string.h> unconditionally.
16820         * lib/savedir.c: Likewise.
16821         * lib/mkdir.c (free): Remove decl.
16822         * lib/rmdir.c (rmdir): Define with a prototype.
16823         * lib/savedir.c: Include savedir.h first, to test interface.
16824
16825         * lib/mktime.c (STDC_HEADERS): Remove.
16826         Include <stdlib.h>, <string.h> unconditionally.
16827
16828         * lib/modechange.c: Include <stdlib.h> unconditionally.
16829         (malloc): Remove decl.
16830
16831         * lib/mountlist.c: Include <stdlib.h>, <string.h> unconditionally.
16832         (free): Remove decl.
16833
16834         * lib/obstack.h (PTR_INT_TYPE) [!defined __PTRDIFF_TYPE__]:
16835         Define to ptrdiff_t, without bothering to check HAVE_STDDEF_H.
16836         (This type really should be intptr_t, but that's a C99ism.)
16837         (_obstack_memcpy): Remove: all uses changed to memcpy.
16838         Include <string.h> unconditionally.
16839         (struct obstack): Assume __STDC__ for types of members
16840         chunkfun, freefun, extra_arg.
16841         (_obstack_newchunk, _obstack_free, _obstack_begin, _obstack_begin_1,
16842         _obstack_memory_used, obstack_alloc_failed_handler, obstack_init,
16843         obstack_begin, obstack_specify_allocation,
16844         obstack_specify_allocation_with_arg, obstack_chunkfun,
16845         obstack_freefun, obstack_free) [! (defined __STDC__ && __STDC__)]:
16846         Remove unprototyped decls and the macros that use them.
16847         * lib/obstack.c (POINTER): Remove.  All uses changed to void *.
16848         (obstack_alloc_failed_handler, CALL_CHUNKFUN, CALL_FREEFUN,
16849         _obstack_begin, _obstack_begin_1, _obstack_allocated_p)
16850         (defined __STDC__ && __STDC__)]:
16851         Remove nonprototyped code.
16852         Include <stdlib.h> unconditionally.
16853         (_obstack_begin, _obstack_begin_1, _obstack_newchunk,
16854         _obstack_allocated_p, _obstack_free, obstack_free,
16855         _obstack_memory_used, print_and_abort):
16856         Define using prototypes.
16857         (obstack_1grow, obstack_1grow_fast, obstack_alloc, obstack_base,
16858         obstack_blank, obstack_blank_fast, obstack_copy, obstack_copy0,
16859         obstack_finish, obstack_grow, obstack_grow0, obstack_make_room,
16860         obstack_next_free, obstack_object_size, obstack_room) [0]:
16861         Remove unused, unprototyped code.
16862
16863         * lib/path-concat.c: Include <stdlib.h>, <string.h> unconditionally.
16864
16865         * lib/physmem.c (physmem_total, physmem_available, main): Define
16866         with prototypes.
16867
16868         * lib/posixtm.c: Include <stdlib.h>, <string.h> unconditionally.
16869         (main): Define with a prototype.
16870
16871         * lib/posixver.c (getenv): Remove decl.
16872
16873         * lib/putenv.c (malloc): Returns void *, not char *.
16874         Include <string.h> unconditionally.
16875         (strchr, memcpy, NULL): Do not define.
16876
16877         * lib/readtokens.c: Include readtokens.h first, to test interface.
16878         Include <stdlib.h>, <string.h> unconditionally.
16879         (init_tokenbuffer): Define with a prototype.
16880
16881         * lib/regex.c (PARAMS): Remove.  All uses removed.
16882         All uses of _RE_ARGS removed, too.
16883         Include <stddef.h>, <stdlib.h>, <string.h>, <limits.h>
16884         unconditionally.
16885         (bzero): Assume memset exists.
16886         (memcmp, memcpy, NULL): Remove.
16887         (SIGN_EXTEND_CHAR): Remove; all uses replaced by casts to signed
16888         char, or assignments to local vars of type signed char.
16889         (init_syntax_once, PREFIX(extract_number_and_incr),
16890         PREFIX(print_partial_compiled_pattern),
16891         PREFIX(print_compiled_pattern), PREFIX(print_double_string),
16892         convert_mbs_to_wcs, print_fastmap, re_set_syntax,
16893         PREFIX(regex_grow_registers), PREFIX(regex_compile),
16894         PREFIX(store_op1), PREFIX(store_op2), PREFIX(insert_op1),
16895         PREFIX(insert_op2), PREFIX(at_begline_loc_p),
16896         PREFIX(at_endline_loc_p), group_in_compile_stack, insert_space,
16897         wcs_compile_range, byte_compile_range, truncate_wchar,
16898         PREFIX(re_compile_fastmap), re_compile_fastmap, re_set_registers,
16899         re_search, re_search_2, PREFIX(re_search_2), re_match, re_match_2,
16900         count_mbs_length, wcs_re_match_2_internal,
16901         byte_re_match_2_internal, PREFIX(group_match_null_string_p),
16902         PREFIX(alt_match_null_string_p),
16903         PREFIX(common_op_match_null_string_p), PREFIX(bcmp_translate),
16904         re_compile_pattern, re_comp, re_exec, regcomp, regexec, regerror,
16905         regfree, PREFIX(extract_number)): Define with prototype.  Remove
16906         now-unnecessary declaration, if any.
16907         (byte_compile_range, PREFIX(regex_compile), re_comp, re_exec,
16908         regcomp, regexec):
16909         Remove now-unnecessary casts among pointer types.
16910         * lib/regex.h (_RE_ARGS): Remove.  All uses removed.
16911
16912         * lib/rename.c: Include <stdlib.h>, <string.h> unconditionally.
16913         (free): Remove decl.
16914
16915         * lib/rpmatch.c: Include <stdlib.h> unconditionally.
16916
16917         * lib/same.c: Include <stdlib.h>, <string.h> unconditionally.
16918         (free): Remove decl.
16919
16920         * lib/save-cwd.c: Include <stdlib.h> unconditionally.
16921         * lib/xgetcwd.c: Likewise.
16922
16923         * lib/stat.c: Include <stdlib.h>, <string.h> unconditionally.
16924         (free): Remove decl.
16925
16926         * lib/strchrnul.c (strchrnul): Define with a prototype.
16927         Fix bug: c_in was not converted to char before searching.
16928
16929         The following changes are not K&R related:
16930
16931         * lib/group-member.h: Include <sys/types.h>, so that this file is
16932         self-contained.
16933         * lib/makepath.h: Likewise.
16934
16935         * lib/getusershell.c (readname, default_index, line_size, readname):
16936         Use size_t, not int, for sizes.
16937         (readname): If the size overflows, report an error instead of
16938         looping forever.
16939
16940 2003-09-09  Paul Eggert  <eggert@twinsun.com>
16941
16942         * config/srclist.txt: Do not get getopt.h, getopt1.c, or regex.h from
16943         libc.
16944
16945 2003-09-09  Paul Eggert  <eggert@twinsun.com>
16946
16947         * README: New section: portability guidelines.
16948
16949 2003-09-09  Derek Robert Price  <derek@ximbiot.com>
16950
16951         * m4/getndelim2.m4 (gl_PREREQ_GETNDELIM2): Assume stdlib.h per the
16952         C89 spec.
16953
16954 2003-09-09  Derek Robert Price  <derek@ximbiot.com>
16955
16956         * lib/getndelim2.c: Assume stdlib.h per the C89 spec.
16957
16958 2003-09-08  Paul Eggert  <eggert@twinsun.com>
16959
16960         Assume C89 or better; remove K&R cruft.
16961         A few of these changes were first proposed by Derek Robert Price
16962         in <http://mail.gnu.org/archive/html/bug-gnulib/2003-07/msg00105.html>.
16963
16964         * lib/addext.c: Include <string.h> unconditionally.
16965         * lib/backupfile.c: Include <string.h>, <stdlib.h> unconditionally.
16966         Don't declare getenv or malloc.
16967
16968         * lib/alloca.c: Include <string.h>, <stdlib.h> unconditionally.
16969         (POINTER_TYPE, pointer): Remove; all uses changed to void *.
16970         (NULL): Remove.
16971         (find_stack_direction, alloca): Use prototypes.
16972
16973         * lib/atexit.c (atexit): Define using a prototype.
16974
16975         * lib/basename.c, dirname.c, stripslash.c:
16976         Include <string.h> unconditionally.
16977
16978         * lib/bcopy.c: Include <stddef.h>.
16979         (bcopy): Define with prototype, using 'const' and 'void' and 'size_t'.
16980
16981         * lib/canon-host.c: Include <stdlib.h>, <string.h> unconditionally.
16982
16983         * lib/error.h (error, error_at_line, error_print_progname)
16984         [! (defined (__STDC__) && __STDC__)]: Remove decls.
16985         * lib/error.c: Include error.h first, to check interface.
16986         Include <stdarg.h>, <stdlib.h>, <string.h> unconditionally.
16987         (VA_START): Remove; all uses changeed to va_start.
16988         (exit, strerror): Remove decls.
16989         (error_print_progname): Prototype uncondionally.
16990         Don't include <errno.h>; no longer needed.
16991         (private_strerror): Remove.
16992         (error_tail): Always define.
16993         (error, error_at_line): Assume C89 or better; always use prototypes.
16994         * lib/fatal.c: Include "fatal.h" first, to test interface.
16995         Include <stdarg.h>, <stdlib.h>, <string.h> unconditionally.
16996         (VA_START): Remove; all uses changed to va_start.
16997         [! (HAVE_VPRINTF || HAVE_DOPRNT || _LIBC)]: Remove support for
16998         this case.
16999         (exit): Remove decl.
17000         (fatal): Prototype unconditionally.  Assume va_start works.
17001         Abort at end, to pacify gcc.
17002
17003         * lib/euidaccess.c (main): Define with a prototype.
17004
17005         * lib/exclude.c: Include <stdlib.h>, <string.h> unconditionally.
17006
17007         * lib/exitfail.c: Include <stdlib.h> unconditionally.
17008
17009         * lib/fnmatch_.h (__P): Remove.  All uses changed to assume
17010         prototypes.
17011         * lib/fnmatch.c: Include fnmatch.h first, to test interface.
17012         Include <string.h>, <stddef.h>, <stdlib.h> unconditionally.
17013         (getenv): Remove decl.
17014         (fnmatch): Define using a prototype.
17015         * lib/fnmatch_loop.c (FCT): Remove forward decl; no longer needed.
17016         (FCT): Define using a prototype.
17017
17018         * lib/getdate.y: Include <stdlib.h>, <string.h> unconditionally.
17019
17020         * lib/gethostname.c: Include <stddef.h>.
17021         (gethostname): Define with prototype.  Length is size_t, not int.
17022
17023 2003-09-08  Paul Eggert  <eggert@twinsun.com>
17024
17025         Assume C89 or better; remove K&R cruft.
17026         * m4/alloca.m4 (gl_PREREQ_ALLOCA): Don't check for stdlib.h, string.h.
17027         * m4/backupfile.m4 (gl_BACKUPFILE): Don't check for stdlib.h,
17028         string.h, getenv, malloc.
17029         * m4/dirname.m4 (gl_DIRNAME): Don't check for string.h or C standard
17030         headers.
17031         * m4/canon-host.m4 (gl_CANON_HOST): Don't check for string.h, stdlib.h.
17032         * m4/error.m4 (jm_PREREQ_ERROR): Do not require STDC headers, and
17033         do not check for strerror.
17034         * m4/exclude.m4: Do not check for stdlib.h, string.h, strings.h.
17035         * m4/exitfail.m4 (gl_EXITFAIL): Do not check for stdlib.h.
17036         * m4/fatal.m4 (gl_FATAL): Do not require STDC headers, and
17037         do not check for doprnt or vprintf.
17038         * m4/fnmatch.m4 (gl_PREREQ_FNMATCH_EXTRA): Remove.  All uses removed.
17039         * m4/getdate.m4 (gl_GETDATE): Don't check for stdlib.h or string.h.
17040
17041 2003-09-08  Paul Eggert  <eggert@twinsun.com>
17042
17043         * lib/getversion.c: Remove; was migrated to backupfile.c in 1997.
17044         getversion.c should have been removed then, but was accidentally
17045         preserved.
17046
17047         * lib/utime.c [!HAVE_UTIMES_NULL]: Include <sys/stat.h>, <fcntl.h>.
17048         (utime_null): Fix typo: 'st' was sometimes called 'sb'.
17049
17050 2003-09-08  Karl Berry  <karl@gnu.org>
17051
17052         * config/config.sub, config.guess, srclistvars.sh: update from savannah
17053                 config, forget about prep.
17054
17055         * config/depcomp, missing: update from automake.
17056
17057 2003-09-07  Paul Eggert  <eggert@twinsun.com>
17058
17059         * modules/time_r: Depend on 'restrict'.  Fix from Simon Josefsson in
17060         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00028.html>.
17061
17062 2003-09-07  Paul Eggert  <eggert@twinsun.com>
17063
17064         * lib/time_r.c (gmtime_r, localtime_r): Fix silly typo: missing arg to
17065         copy_tm_result.  Bug reported by Simon Josefsson in
17066         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00028.html>.
17067
17068 2003-09-06  Paul Eggert  <eggert@twinsun.com>
17069
17070         * m4/time_r.m4: New file.
17071         * m4/mktime.m4 (gl_PREREQ_MKTIME): Remove check for limits.h.
17072         * m4/timegm.m4 (gl_FUNC_TIMEGM): Assume that timegm is buggy if mktime
17073         is. Check for timegm declaration.
17074         (gl_PREREQ_TIMEGM): Require gl_FUNC_MKTIME.
17075         Do not check for gmtime_r.
17076         Replace mktime if __mktime_internal does not exist and if mktime
17077         hasn't been replaced already.
17078
17079 2003-09-06  Paul Eggert  <eggert@twinsun.com>
17080
17081         * lib/time_r.c, lib/time_r.h: New files.
17082
17083         * lib/mktime.c (my_mktime_localtime_r): Remove; all uses changed to
17084         __localtime_r.
17085         (__localtime_r) [!defined _LIBC]: New macro.  Include <time_r.h>.
17086         (__mktime_internal) [!defined _LIBC]: Now extern, not static.
17087
17088         * lib/strftime.c (my_strftime_gmtime_r): Remove; all uses changed to
17089         __gmtime_r.
17090         (my_strftime_localtime_r): Remove; all uses changed to __localtime_r.
17091         (__gtime_r, __localtime_r) [!HAVE_TM_GMTOFF]: New macros.
17092         Include <time_r.h>.
17093
17094         * lib/timegm.c: Switch to glibc implementation, with the following
17095         changes:
17096         [defined HAVE_CONFIG_H]: Include <config.h>.
17097         [!defined _LIBC]: Include "timegm.h" rather than <time.h>.
17098         (__mktime_internal) [!defined _LIBC]: New decl.
17099         (__gmtime_r) [!defined _LIBC]: New macro and function.
17100         (timegm): Use a prototype, since gnulib assumes C89.
17101         Do not bother declaring tmp to be const, as it's not really usefu.
17102         * lib/timegm.h: Hoist "#include <time.h>" out of #ifdef.
17103         (timegm): Declare only if HAVE_DECL_TIMEGM.
17104
17105 2003-09-06  Paul Eggert  <eggert@twinsun.com>
17106
17107         * MODULES.html.sh (func_all_modules): Add time_r.
17108         * modules/time_r: New file.
17109         * modules/mktime, modules/strftime, modules/timegm: Depend on time_r.
17110         * modules/timegm: Depend on mktime.  Change maintainer to "all, glibc".
17111
17112 2003-09-03  Paul Eggert  <eggert@twinsun.com>
17113
17114         * lib/human.c (human_readable): Fix bug that rounded 10501 to 10k.
17115         Bug reported by Lute Kamstra in
17116         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00003.html>.
17117
17118         * lib/getdate.y (relative_time_table): Use tDAY_UNIT for "tomorrow",
17119         "yesterday", "today", and "now" rather than tMINUTE_UNIT.  Of
17120         course with correspondingly smaller numbers for tomorrow and
17121         yesterday.  From Tadayoshi Funaba.  Originally installed into
17122         sh-utils on 1999-08-07, but the patch got lost (I guess during the
17123         coreutils merge?).
17124
17125 2003-08-31  Simon Josefsson  <jas@extundo.com>
17126
17127         * modules/timegm: New file.
17128         * MODULES.html.sh (func_all_modules): Add timegm.
17129
17130 2003-08-31  Simon Josefsson  <jas@extundo.com>
17131
17132         * m4/timegm.m4: New file.
17133
17134 2003-08-31  Simon Josefsson  <jas@extundo.com>
17135
17136         * lib/timegm.h: New file.
17137         * lib/timegm.c: New file.  Based on
17138         wget-1.8.2/src/http.c:mktime_from_utc.
17139
17140 2003-08-31  Karl Berry  <karl@gnu.org>
17141
17142         * lib/argp.h: update from libc.
17143
17144 2003-08-28  Bruno Haible  <bruno@clisp.org>
17145
17146         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Remove AC_DEFINE of fnmatch here.
17147         This avoids havoc on compilers for which '#define fnmatch rpl_fnmatch'
17148         followed by '#define fnmatch fnmatch_posix' gives an error.
17149
17150 2003-08-28  Bruno Haible  <bruno@clisp.org>
17151
17152         * lib/binary-io.h: Undefine O_BINARY before defining it. This avoids a
17153         warning on QNX, which defines O_BINARY to 000000.
17154
17155 2003-08-27  Jim Meyering  <jim@meyering.net>
17156
17157         * m4/mkstemp.m4: Require that the system mkstemp be able to create
17158         70 temporary files, not just 30.  Tru64 V4.0F's mkstemp function
17159         would fail after 32.  Reported by Danny Levinson.  Details here:
17160         http://mail.gnu.org/archive/html/bug-coreutils/2003-08/msg00124.html
17161
17162 2003-08-24  Bruno Haible  <bruno@clisp.org>
17163
17164         * lib/binary-io.h: Include <stdio.h>, to avoid a compilation error when
17165         MSVC7 <stdio.h> is included later.
17166
17167 2003-08-22  Simon Josefsson  <jas@extundo.com>
17168
17169         * modules/strndup (Makefile.am): Add strndup.h to lib_SOURCES.
17170
17171 2003-08-20  Karl Berry  <karl@gnu.org>
17172
17173         * m4/lib-ld.m4: serial 1003 from gettext, no changes besides serial.
17174
17175 2003-08-20  Bruno Haible  <bruno@clisp.org>
17176
17177         * modules/progname: New file.
17178         * MODULES.html.sh (func_all_modules): Add progname.
17179
17180 2003-08-20  Bruno Haible  <bruno@clisp.org>
17181
17182         * lib/progname.h: New file, from GNU gettext.
17183         * lib/progname.c: New file, from GNU gettext.
17184         * lib/progreloc.c: New file, from GNU gettext.
17185
17186 2003-08-19  Jim Meyering  <jim@meyering.net>
17187
17188         * m4/lib-ld.m4: Revert yesterday's change, per Bruno's request here:
17189         http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00155.html
17190
17191 2003-08-19  Bruno Haible  <bruno@clisp.org>
17192
17193         * m4/xalloc.m4 (gl_PREREQ_XSTRDUP): Don't check for <string.h> any
17194         more.
17195
17196 2003-08-19  Bruno Haible  <bruno@clisp.org>
17197
17198         * lib/xstrdup.c: Assume <string.h> exists.
17199
17200 2003-08-18  Paul Eggert  <eggert@twinsun.com>
17201
17202         * modules/stdbool: Add BUILT_SOURCES.  Prefer $@ to target name
17203         in makefile rules.
17204
17205 2003-08-18  Jim Meyering  <jim@meyering.net>
17206
17207         * m4/getloadavg.m4: Use [\t ], not [ \t] (where \t is a literal TAB).
17208         * m4/lib-ld.m4: Likewise.
17209
17210 2003-08-18  Jim Meyering  <jim@meyering.net>
17211
17212         * lib/setenv.h: Indent nested cpp directive.
17213         * lib/vasnprintf.c: Remove trailing blanks.
17214
17215 2003-08-17  Simon Josefsson  <jas@extundo.com>
17216
17217         * modules/xstrndup: New file.
17218         * MODULES.html.sh (func_all_modules): Add xstrndup.
17219
17220 2003-08-17  Simon Josefsson  <jas@extundo.com>
17221
17222         * modules/argp: Fix autoconf macro name. Add more dependencies.
17223
17224 2003-08-17  Simon Josefsson  <jas@extundo.com>
17225
17226         * m4/xstrndup.m4: New file.
17227
17228 2003-08-17  Simon Josefsson  <jas@extundo.com>
17229
17230         * m4/argp.m4: New file.
17231
17232 2003-08-17  Simon Josefsson  <jas@extundo.com>
17233             Bruno Haible  <bruno@clisp.org>
17234
17235         * lib/xstrndup.h: New file.
17236         * lib/xstrndup.c: New file.
17237
17238 2003-08-17  Bruno Haible  <bruno@clisp.org>
17239
17240         * modules/strndup (Files, Include): Add lib/strndup.h.
17241
17242 2003-08-17  Bruno Haible  <bruno@clisp.org>
17243
17244         * modules/euidaccess (Files): Add lib/euidaccess.h.
17245
17246 2003-08-17  Bruno Haible  <bruno@clisp.org>
17247
17248         * lib/strndup.h: New file.
17249
17250 2003-08-17  Bruno Haible  <bruno@clisp.org>
17251
17252         * gnulib-tool (func_create_testdir): Handle gl_USE_SYSTEM_EXTENSIONS
17253         like AC_GNU_SOURCE.
17254         * modules/extensions (configure.ac): Comment out the invocation of
17255         gl_USE_SYSTEM_EXTENSIONS.
17256
17257 2003-08-16  Paul Eggert  <eggert@twinsun.com>
17258
17259         Merges from coreutils, etc.
17260         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Insert ':' to prevent a syntax
17261         error in gl_FUNC_MATCH.  This fixes a bug I introduced on 2003-05-28.
17262         * m4/readlink.m4 (gl_PREREQ_READLINK): Renamed from gl_PREREQ_READLINE,
17263         fixing a typo.
17264         * m4/host-os.m4 (UTILS_HOST_OS): Add GNU/NetBSD, GNU/FreeBSD.
17265         * m4/hash.m4 (gl_HASH): Use AM_STDBOOL_H, not AC_HEADER_STDBOOL.
17266
17267 2003-08-16  Paul Eggert  <eggert@twinsun.com>
17268
17269         Document merge from coreutils.
17270         * modules/alloca: Append $(ALLOCA_H) to BUILT_SOURCES.
17271         * modules/fnmatch: Append $(FNMATCH_H) to BUILT_SOURCES.
17272         * modules/utime: Add m4/utimes-null.m4.
17273
17274 2003-08-16  Paul Eggert  <eggert@twinsun.com>
17275
17276         * lib/regex.h, strdup.c, strtoll.c, strtoul.c: Do not normalize white
17277         space, undoing this 2003-08-12 change:
17278         <http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00080.html>
17279
17280 2003-08-16  Paul Eggert  <eggert@twinsun.com>
17281
17282         * config/srclist.txt: Get regex.h, strdup.c, strtoll.c,
17283         strtoul.c from libc, undoing this 2003-08-12 change:
17284         <http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00080.html>
17285
17286 2003-08-16  Jim Meyering  <jim@meyering.net>
17287
17288         Merges from coreutils.
17289         * m4/readdir.m4 (GL_FUNC_READDIR): Change name to have GL_ (not jm_)
17290         prefix.  Adjust cache variables similarly.  Create 500 rather than
17291         just 300 files, to exercise bug on Darwin6.5, too.
17292         * m4/perl.m4 (jm_PERL): Use $am_missing_run, not undefined
17293         $missing_dir.
17294         * m4/jm-winsz1.m4: Require AC_SYS_POSIX_TERMIOS, not
17295         AM_SYS_POSIX_TERMIOS.
17296         Reported by mkc@mathdogs.com.
17297         Also change use of $am_cv_sys_posix_termios
17298         to $ac_cv_sys_posix_termios.  Reported by Andreas Schwab.
17299         * m4/getgroups.m4 (jm_FUNC_GETGROUPS): Rewrite to use AC_FUNC_GETGROUPS
17300         and (if needed) to call AC_LIBOBJ and to set GETGROUPS_LIB.
17301         * m4/fsusage.m4 [__GLIBC__]: GNU libc's statvfs stats each mount point
17302         in /proc/mounts until it finds one with matching device number.  This
17303         is unnecessary when the FILE argument *is* a mount point.  No stat call
17304         is necessary in that case.  So, disable the statvfs-testing code on
17305         systems with GNU libc.  Reported by Andrei Gaponenko via Tim Waugh
17306         as RedHat bug# 84846.
17307         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size
17308         to 1MB, so as not to render systems with no stack size limit (e.g.,
17309         linux-2.2.x) unusable.  Suggestion and code from Bruno Haible.
17310         Include <unistd.h>.  On some systems,
17311         it is required for the definition of _SC_PAGESIZE.
17312
17313 2003-08-16  Jim Meyering  <jim@meyering.net>
17314
17315         Merge from coreutils.
17316         * lib/xstrtoimax.c: #else #if -> #elif.
17317         * lib/xstrtoumax.c: Likewise.
17318
17319 2003-08-16  Jim Meyering  <jim@meyering.net>
17320
17321         * m4/utimes.m4 (gl_FUNC_UTIMES): New file.
17322         * m4/utimes.m4: Removed.
17323         * m4/utimes-null.m4: Renamed from utimes.m4.
17324
17325         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size
17326         to 1MB, so as not to render systems with no stack size limit (e.g.,
17327         linux-2.2.x) unusable.  Suggestion and code from Bruno Haible.
17328         Include <unistd.h>.  On some systems,
17329         it is required for the definition of _SC_PAGESIZE.
17330
17331 2003-08-16  Jim Meyering  <jim@meyering.net>
17332         and Paul Eggert  <eggert@cs.ucla.edu>
17333
17334         Merges from coreutils, etc.
17335
17336         * m4/jm-macros.m4 (AC_LANG_SOURCE(C)): New macro, undefine, then define
17337         using the latest version from cvs.  This avoids problems with #line
17338         directives using a vendor (Sun) compiler.
17339         (jm_MACROS): Bump prerequisite from 2.52g to 2.57.
17340         Don't set GETGROUPS_LIB here; now it's
17341         done via getgroups.m4's wrapper function.
17342         AC_SUBST OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, and MAN here,
17343         rather than just in sh-util/configure.in, so that the
17344         now-shared-by-fileutils-and-textutils lib/Makefile.am are all the
17345         same.
17346         Use AC_CONFIG_LIBOBJ_DIR(lib) to tell the new
17347         AC_FUNC_GETLOADAVG where to find getloadavg.c.
17348         Require AC_FUNC_FTW, gt_INTTYPES_PRI, gl_CLOCK_TIME,
17349         UTILS_SYS_OPEN_MAX, GL_FUNC_GETCWD_PATH_MAX, GL_FUNC_READDIR,
17350         gl_FSUSAGE, gl_MOUNTLIST, AC_FUNC_CANONICALIZE_FILE_NAME.
17351         Remove code that is now done by the newly-required macros.
17352         Append $(EXEEXT) to DF_PROG.
17353         AC_LIBOBJ fchdir-stub if fchdir doesn't exist; similarly for fchown.
17354         Do not invoke or require the following here,
17355         since prereq.m4 or some gnulib .m4 now does this for us:
17356         gl_REGEX, UTILS_FUNC_MKDIR_TRAILING_SLASH, jm_BISON, gl_FUNC_MKTIME,
17357         jm_FUNC_LSTAT, jm_FUNC_STAT, jm_FUNC_REALLOC, jm_FUNC_MALLOC,
17358         jm_FUNC_NANOSLEEP, jm_FUNC_READDIR, jm_FUNC_MEMCMP,
17359         jm_FUNC_GLIBC_UNLOCKED_IO, AC_FUNC_FNMATCH_GNU, jm_FUNC_PUTENV,
17360         jm_AC_PREREQ_XSTRTOUMAX, jm_AC_PREREQ_XSTRTOIMAX,
17361         AC_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, AC_FUNC_VPRINTF,
17362         vb_FUNC_RENAME, UTILS_FUNC_MKSTEP, jm_FUNC_UTIME, AM_FUNC_GETLINE,
17363         AC_FUNC_OBSTACK.
17364         Do not replace the following functions, as this is now the job
17365         of some gnulib .m4: strcasecmp, strncasecmp, dup2, gethostname,
17366         getusershell, sig2str, strcspn, stpcpy, strstr, strtol, strtoul
17367         strpbrk, euidaccess, memcmp, rmdir, rpmatch, strndup, strverscmp,
17368         atexit getpass, strdup, getpagesize.
17369         Replace 'raise'.
17370         Do not check for the following functions, as this is now the job
17371         of some gnulib .m4: bcopy, canonicalize_file_name, fchdir, ftime,
17372         getcwd, getmntinfo, resolvepath.  But check for sysctl, setreuid,
17373         setregid.
17374         (jm_CHECK_ALL_HEADERS): Do not check for fenv.h.
17375         Check for sys/sysctl.h.
17376         (jm_CHECK_ALL_TYPES): Do not require AC_STRUCT_TM, AC_STRUCT_TIMEZONE,
17377         jm_CHECK_TYPE_STRUCT_TIMESPEC.  Invoke gt_TYPE_SSIZE_T instead
17378         of checking for ssize_t ourselves.
17379
17380         * m4/prereq.m4 (jm_PREREQ): Don't invoke macros; AC_REQUIRE them.
17381         Require every macro that gnulib/modules/* suggests for us.
17382         (jm_PREREQ_ADDEXT): New macro.
17383         (jm_PREREQ_STAT): Check for 'struct statfs' on Ultrix 4.4.
17384         Require jm_AC_TYPE_LONG_LONG instead of invoking it.
17385
17386         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): New macro.
17387         (gl_PHYSMEM): Use it.
17388         Also check for `table' function.
17389         Check for new headers and functions.
17390         Add check for sys/sysmp.h.
17391         With suggestions from Kaveh Ghazi.
17392         Ignore headers that are present but cannot be compiled.  This
17393         avoids spurious warnings on Solaris 9 sparc with Forte Developer 7
17394         C 5.4.
17395
17396 2003-08-15  Paul Eggert  <eggert@twinsun.com>
17397
17398         Document merge from coreutils.
17399         * modules/userspec: Depend on posixver.
17400         * modules/strftime: Depend on tzset.
17401
17402 2003-08-15  Paul Eggert  <eggert@twinsun.com>
17403
17404         * lib/config.charset, ref-add.sin, ref-del.sin: Use three spaces,
17405         rather than tab, after '#' in shell-script copyright notices.
17406         Suggested by Bruno Haible.
17407
17408 2003-08-15  Paul Eggert  <eggert@twinsun.com>
17409
17410         * config/srclist-update: Use three spaces, rather than tab, after '#'
17411         in shell-script copyright notices.  Suggested by Bruno Haible.
17412         Remove unnecessary parenthesization in regular expression.
17413
17414 2003-08-15  Jim Meyering  <jim@meyering.net>
17415
17416         Merge from coreutils.
17417         * lib/xgethostname.c: Include <stdlib.h>.
17418         (xghostname): Don't exit for anything other than memory-related
17419         failure; just return NULL.
17420         * lib/userspec.c: Include "posixver.h".
17421         (parse_user_spec): Accept `.' as a separator only
17422         in pre-POSIX-200112 mode.
17423         * lib/strtoimax.c: Use #elif rather than #else #if.
17424         * lib/strftime.c (my_strftime) [!_LIBC && HAVE_TZNAME && HAVE_TZSET]:
17425         Remove function, now that we can rely on a working tzset function.
17426         [!_LIBC]: Ensure that the required autoconf test has been run.
17427         [!defined _NL_CURRENT && HAVE_STRFTIME]:
17428         Use underlying_strftime for %r.
17429         * lib/sha.c: Merge in some clean-up and optimization changes from
17430         glibc.
17431         * lib/sha.c (sha_stream) [BLOCKSIZE]: Move definition to top of file.
17432         Ensure that it is a multiple of 64.
17433         Rearrange loop exit tests so as to avoid performing an
17434         additional fread after encountering an error or EOF.
17435         * lib/realloc.c: Update copyright date.
17436
17437 2003-08-15  Jim Meyering  <jim@meyering.net>
17438         and Paul Eggert  <eggert@twinsun.com>
17439
17440         Merge from coreutils.
17441         * lib/readutmp.h (HAVE_UTMPX_H): Undef if struct utmp has the ut_exit
17442         member but strut utmpx does not.  Needed for AIX 4.3.3.
17443         (UT_EXIT_E_TERMINATION, UT_EXIT_E_EXIT): Define.
17444
17445 2003-08-15  Jim Meyering  <jim@meyering.net>
17446         and Paul Eggert  <eggert@cs.ucla.edu>
17447
17448         Merges from coreutils, etc.
17449         * m4/strftime.m4 (_jm_STRFTIME_PREREQS):
17450         Require gl_FUNC_TZSET_CLOBBER.
17451         * m4/readutmp.m4 (gl_READUTMP): Check for ut_exit.ut_exit,
17452         ut_exit.e_exit, ut_exit.ut_termination, and ut_exit.e_termination
17453         members.
17454
17455 2003-08-14  Paul Eggert  <eggert@twinsun.com>
17456
17457         Help the merge from coreutils.
17458         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): New macro.
17459         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Use it.
17460         * m4/tzset.m4: Use it too.
17461
17462 2003-08-14  Paul Eggert  <eggert@twinsun.com>
17463
17464         * modules/tzset: New file.
17465
17466 2003-08-14  Jim Meyering  <jim@meyering.net>
17467
17468         Merges from coreutils.
17469         * modules/fnmatch: Use the `$(FNMATCH_H)' notation for AC_REPLACED
17470         variable names, rather than @FNMATCH_H@.
17471         * modules/alloca: Likewise for $(ALLOCA_H).
17472
17473         * modules/fnmatch (fnmatch.h): Use `$@' in the commands, in place of
17474         the three copies of the literal target, `fnmatch.h'.
17475         * modules/alloca (alloca.h): Likewise.
17476
17477 2003-08-14  Jim Meyering  <jim@meyering.net>
17478
17479         Merge from coreutils.
17480         * m4/tzset.m4: New file.
17481         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Move the
17482         MOUNTED_VMOUNT test to precede the MOUNTED_GETMNTENT1 tests, since
17483         otherwise, AIX 5.1 systems would end up using the latter.
17484         MOUNTED_GETMNTENT1 support is inadequate on such systems: 1) detecting
17485         whether a file system is remote doesn't work  2) the MOUNTED_VMOUNT
17486         code reports the HOSTNAME:/MOUNT_POINT, while the MOUNTED_GETMNTENT1
17487         code reports merely /MOUNT_POINT.  Reported by Mike Jetzer.
17488
17489 2003-08-14  Jim Meyering  <jim@meyering.net>
17490
17491         Merge from coreutils.
17492         * lib/obstack.h: Whitespace changes.
17493         * lib/mountlist.c: Remove anachronistic casts of xmalloc, xrealloc,
17494         and xcalloc return values.
17495         (read_filesystem_list) [MOUNTED_GETFSSTAT]:
17496         Use MNT_NOWAIT, rather than MNT_WAIT.  Otherwise, `df DIR' could
17497         hang on OSF/1 5.1 for DIR on both local and remote file systems.
17498         Reported by (and fix confirmed by) Nelson H. F. Beebe.
17499         (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
17500         error from mntctl.
17501         Use mntctl's return value to drive the entry-processing loop, since
17502         we can't rely on the value of the vmt_length member in the last
17503         entry.  On some systems doing so could result in exhausting
17504         virtual memory.  Based in part on a patch from Mike Jetzer.
17505
17506 2003-08-14  Jim Meyering  <jim@meyering.net>
17507         and Paul Eggert  <eggert@twinsun.com>
17508
17509         Merges from coreutils, plus other fixes.
17510         * lib/physmem.c: Merge in portability changes from gcc/libiberty
17511         to support AIX, IRIX, Tru64, and Windows.  See the ChangeLog there
17512         for credits and details.  Thanks to Kaveh Ghazi for helping
17513         to keep these files in sync.
17514         (ARRAY_SIZE): Define it.
17515         (physmem_total, physmem_available): Add comments. From Kaveh Ghazi.
17516         * lib/memcasecmp.c: Remove unnecessary parentheses after 'defined'.
17517         (memcasecmp): Don't assume size_t fits in unsigned int.
17518         Remove casts and duplicate code.
17519         * lib/md5.c: Include <string.h> and <stdlib.h> unconditionally.
17520         (memcpy): Remove definition.
17521         Merge in some clean-up and optimization changes from glibc.
17522         [BLOCKSIZE]: Move definition to top of file.
17523         Ensure that it is a multiple of 64.
17524         Rearrange loop exit tests so as to avoid performing an
17525         additional fread after encountering an error or EOF.
17526         * lib/md5.h (md5_uintptr): Define.
17527         * lib/makepath.c (CLEANUP_CWD): Report an error if we failed to
17528         return to the initial working directory.  Preserve errno
17529         for caller.
17530         * lib/idcache.c: Include "xalloc.h".
17531         (xmalloc, xrealloc): Remove decls.
17532         (getuser): Remove casts no longer required in C89.
17533         * lib/human.c: Include stdio.h, for sprintf.
17534         * lib/group-member.c: Include "xalloc.h".
17535         (xmalloc, xrealloc): Remove decls.
17536         (get_group_info): Remove casts no longer required in C89.
17537         * lib/getusershell.c (readname): Remove casts no longer required in
17538         C89.
17539         * lib/gettimeofday.c (rpl_gmtime, rpl_tzset): New functions.
17540         * lib/getline.c: Whitespace fix, from coreutils.
17541
17542 2003-08-13  Paul Eggert  <eggert@twinsun.com>
17543
17544         * m4/exclude.m4 (gl_EXCLUDE): Require AC_C_INLINE, AC_HEADER_STDC.
17545         Check for isascii.
17546
17547         * m4/gettext.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, lib-link.m4,
17548         lib-prefix.m4, longdouble.m4, po.m4, progtest.m4, signed.m4:
17549         Undo previous (whitespace-only) change.
17550
17551 2003-08-13  Paul Eggert  <eggert@twinsun.com>
17552
17553         * lib/exclude.c: Include <ctype.h>
17554         (IN_CTYPE_DOMAIN): New macro.
17555         (is_space): New fn.
17556         (add_exclude_file): If LINE_END is a space, ignore trailing spaces
17557         and empty lines.
17558
17559         * lib/argp-help.c, argp-parse.c, config.charset, getopt.h:
17560         Undo previous (whitespace-only) change.
17561
17562 2003-08-13  Paul Eggert  <eggert@twinsun.com>
17563
17564         * config/srclist-update: Change update back to the old behavior,
17565         leaving whitespace alone.  Use one 'sed' command rather than a
17566         pipeline.
17567         (fixlicense): Now a variable, not a function.
17568         (remove_trailing_blanks): Remove.
17569         (fixfile): Don't invoke unexpand or cat, or remove trailing blanks.
17570         * config/config.guess, config.sub, install-sh, missing, texinfo.tex:
17571         Undo previous (whitespace-only) change.
17572
17573 2003-08-12  Paul Eggert  <eggert@twinsun.com>
17574
17575         Merge from coreutils.
17576         * modules/euidaccess: Add lib_SOURCES, include for new
17577         file euidaccess.h
17578
17579 2003-08-12  Paul Eggert  <eggert@twinsun.com>
17580
17581         * m4/gettext.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, lib-link.m4,
17582         lib-prefix.m4, longdouble.m4, po.m4, progtest.m4, signed.m4:
17583         Normalize leading white space and remove trailing white space.
17584
17585         Merge from coreutils
17586         * m4/euidaccess.m4 (gl_FUNC_EUIDACCESS): Check for euidaccess decl.
17587
17588         * m4/lib-ld.m4, lib-link.m4, lib-prefix.m4: Regenerate from gettext
17589         0.12.1.  These files are now being upgraded automatically by
17590         ../config/srclist-update.
17591
17592 2003-08-12  Paul Eggert  <eggert@twinsun.com>
17593
17594         * lib/argp-help.c, argp-parse.c, config.charset, getopt.h:
17595         Normalize leading white space and remove trailing white space.
17596         * lib/ref-add.sin, ref-del.sin: Use '#' before empty line in copyright
17597         notice, as per ../config/srclist-update.
17598
17599         Merge from coreutils.
17600         * lib/euidaccess.h: New file.
17601         * lib/euidaccess.c: Include it.
17602         * lib/.cppi-disable: Add printf-args.h, printf-parse.h, stdbool_.h,
17603         vasnprintf.h, vasprintf.h.  Remove strdup.c, gettext.h.
17604         * lib/regex.h, strdup.c, strtoll.c, strtoul.c: Normalize white space.
17605
17606 2003-08-12  Paul Eggert  <eggert@twinsun.com>
17607
17608         * config/srclist-update: Add copyright notice.
17609         (remove_id_lines, remove_trailing_blanks): New constants.
17610         (fixfile): Use them to normalize spacing a bit in copied files.
17611         * config/config.guess, config.sub, install-sh, missing, texinfo.tex:
17612         Normalize leading white space and remove trailing white space.
17613
17614         * config/texinfo.tex: Sync with texinfo.
17615
17616         * config/srclist.txt: Don't get regex.h, strdup.c, strtoll.c,
17617         strtoul.c from libc, to merge coreutils whitespace changes.
17618
17619         * config/srclist.txt: Get the following m4 files from gettext:
17620         codeset.m4, gettext.m4, glibc21.m4, iconv.m4, intdiv0.m4,
17621         inttypes-pri.m4, lcmessage.m4, lib-ld.m4, lib-link.m4, lib-prefix.m4,
17622         longdouble.m4, nls.m4, po.m4, progtest.m4, signed.m4, wchar_t.m4,
17623         wint_t.m4.
17624
17625 2003-08-12  Karl Berry  <karl@gnu.org>
17626
17627         * config/srclist.txt: can't sync vasnprintf.c any more, changes have
17628         been made.
17629
17630 2003-08-11  Paul Eggert  <eggert@twinsun.com>
17631
17632         * modules/gnu-source, m4/gnu-source.m4:
17633         Remove; we're assuming Autoconf 2.54 or later now.
17634         Suggested by Bruno Haible.
17635         * MODULES.html.sh (func_all_modules): Remove gnu-source.
17636
17637 2003-08-11  Bruno Haible  <bruno@clisp.org>
17638
17639         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Also check for wcslen.
17640
17641 2003-08-11  Bruno Haible  <bruno@clisp.org>
17642
17643         * lib/vasnprintf.c (local_wcslen): New function, for Solaris 2.5.1.
17644         (vasnprintf): Use it instead of wcslen.
17645
17646 2003-08-11  Bruno Haible  <bruno@clisp.org>
17647
17648         * lib/stdbool_.h (_Bool): Undo last change; instead use a negative enum
17649         value to ensure that _Bool promotes to int. Use #define for _Bool when
17650         using the Solaris C compiler. Adds comments suggested by Paul Eggert.
17651
17652 2003-08-10  Karl Berry  <karl@gnu.org>
17653
17654         * lib/regex.h: update from libc (whitespace fix).
17655
17656 2003-08-09  Paul Eggert  <eggert@twinsun.com>
17657
17658         Merge some files from coreutils.  These changes were
17659         originally made by Jim Meyering.
17660         * lib/acl.c: Include <sys/types.h> before <sys/stat.h>;
17661         many older Unixes require this.
17662         * lib/alloca.c (alloca): Remove cast to argument of free;
17663         no longer needed in C89.
17664         * lib/alloca_.h, regex.h: Fix white space to match
17665         what GNU indent does.
17666
17667 2003-08-09  Paul Eggert  <eggert@twinsun.com>
17668
17669         * m4/regex.m4 (jm_INCLUDED_REGEX): Change "\201" to "\371";
17670         apparently Emacs's Unicode mode got confused before my 2003-08-05
17671         checkin.
17672
17673 2003-08-08  Paul Eggert  <eggert@twinsun.com>
17674
17675         * m4/extensions.m4: New file.
17676         * m4/timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC):
17677         Require gl_USE_SYSTEM_EXTENSIONS.
17678         * m4/unlocked-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO):
17679         Require gl_USE_SYSTEM_EXTENSIONS rather than AC_GNU_SOURCE.
17680
17681 2003-08-08  Paul Eggert  <eggert@twinsun.com>
17682
17683         * MODULES.html.sh (func_all_modules): Add extensions, gnu-source.
17684         * modules/extensions, modules/gnu-source: New files.
17685         * modules/timespec, modules/unlocked-io: Depend on extensions.
17686
17687 2003-08-07  Paul Eggert  <eggert@twinsun.com>
17688
17689         * modules/restrict: New file.
17690         * MODULES.html.sh (func_all_modules): Add restrict.
17691         * modules/regex: Depend on restrict.
17692
17693 2003-08-07  Paul Eggert  <eggert@twinsun.com>
17694
17695         * m4/restrict.m4: New file.
17696         * m4/regex.m4 (jm_PREREQ_REGEX): Add gl_C_RESTRICT.
17697
17698 2003-08-07  Bruno Haible  <bruno@clisp.org>
17699
17700         * modules/getndelim2 (Makefile.am): Add the files to EXTRA_DIST, not
17701         lib_SOURCES, because getndelim2.m4 now uses AC_LIBOBJ(getndelim2).
17702
17703 2003-08-07  Bruno Haible  <bruno@clisp.org>
17704
17705         * m4/getndelim2.m4 (gl_GETNDELIM2): Use AC_LIBOBJ(getndelim2). This
17706         makes the module 'getndelim2' compatible with the module 'getline'.
17707
17708 2003-08-05  Paul Eggert  <eggert@twinsun.com>
17709
17710         * m4/regex.m4 (jm_INCLUDED_REGEX): Replace a single non-ASCII
17711         byte with "\201" to avoid glitches when editing that source file
17712         with multi-gnome-terminal.
17713
17714 2003-08-05  Paul Eggert  <eggert@twinsun.com>
17715
17716         * lib/bumpalloc.h: Remove.
17717
17718 2003-08-05  Paul Eggert  <eggert@twinsun.com>
17719
17720         * MODULES.html.sh (func_all_modules): Remove bumpalloc.
17721         * modules/bumpalloc: Remove.
17722
17723 2003-08-04  Paul Eggert  <eggert@twinsun.com>
17724
17725         * lib/getloadavg.c: Change copyright notice and spacing to conform to
17726         GNU coding style.
17727
17728         Merge from coreutils.
17729         * lib/error.c [!USE_IN_LIBIO]: Omit this case; assume USE_IN_LIBIO is
17730         1. From glibc.
17731         * lib/getdate.y (date): Also accept dates like May-23-2003; suggestion
17732         from Karl Berry, implemented by Jim Meyering.
17733         * lib/getgroups.c: Include "xalloc.h" instead of declaring xalloc fns;
17734         from Dmitry V. Levin.
17735         Remove anachronistic cast of xrealloc.
17736         * lib/fnmatch_.h (__const): Remove.  Use 'const'.
17737         * lib/fnmatch_loop.c (NEW_PATTERN): Cast alloca return value to proper
17738         type. Otherwise, it wouldn't compile with at least /bin/cc on
17739         ymp-cray-unicos9.0.2.X.
17740         Combine two mostly-identical uses of alloca into one.
17741         Thanks to the Cray-Cyber project for access to a Cray Y-MP.
17742
17743 2003-08-04  Dave Love  <d.love@dl.ac.uk>
17744
17745         [From Emacs.]
17746
17747         * lib/getloadavg.c: Check `__unix' as well as `unix'.  Use #ifdef, not
17748         #if.  Check HAVE_LIBKSTAT as well as LOAD_AVE_TYPE.  Check
17749         F_SETFD, not FD_SETFD.  Use HAVE_STRUCT_NLIST_N_UN_N_NAME, not
17750         obsolete NLIST_NAME_UNION.
17751         [__GNU__]: Undef BSD and FSCALE.
17752         [!NLIST_STRUCT]: Remove conditional definition of NLIST_STRUCT.
17753
17754 2003-08-03  Paul Eggert  <eggert@twinsun.com>
17755
17756         * lib/stdbool_.h (_Bool): Make it signed char, instead of
17757         an enum type, so that it's guaranteed to promote to int.  See:
17758         <http://mail.gnu.org/archive/html/bug-gnulib/2003-07/msg00124.html>
17759
17760 2003-08-03  Karl Berry  <karl@gnu.org>
17761
17762         * config/depcomp: update from automake.
17763
17764 2003-07-31  Paul Eggert  <eggert@twinsun.com>
17765
17766         * lib/strerror.c: Include config.h, limits.h.  Declare sprintf.
17767         (strerror): Don't assume that a printable int fits in 14 bytes.
17768
17769 2003-07-31  Bruno Haible  <bruno@clisp.org>
17770
17771         * modules/getpass-gnu: New file.
17772         * MODULES.html.sh (func_all_modules): Add getpass-gnu.
17773
17774 2003-07-31  Bruno Haible  <bruno@clisp.org>
17775
17776         * m4/getpass.m4 (gl_FUNC_GETPASS_GNU): New macro.
17777
17778 2003-07-24  Karl Berry  <karl@gnu.org>
17779
17780         * config/missing: update from automake.
17781
17782 2003-07-24  Derek Robert Price  <derek@ximbiot.com>
17783             Bruno Haible  <bruno@clisp.org>
17784
17785         * lib/getline.h (getline, getdelim): Change return type to ssize_t.
17786         * lib/getline.c (getline, getdelim): Likewise.
17787         Remove _GNU_SOURCE define; now it's defined in config.h through
17788         m4/getline.m4.
17789
17790 2003-07-23  Karl Berry  <karl@gnu.org>
17791
17792         * config/config.sub: update from prep.
17793
17794 2003-07-22  Paul Eggert  <eggert@twinsun.com>
17795
17796         * modules/xalloc (Depends-on): Add exitfail.
17797         * modules/xmemcoll: Likewise.
17798
17799 2003-07-22  Paul Eggert  <eggert@twinsun.com>
17800
17801         * lib/xalloc.h (XCALLOC, XREALLOC, CCLONE): Fix under- and
17802         over-parenthesization in macros.
17803
17804         Sync with coreutils.
17805
17806         * lib/xalloc.h (XMALLOC, XCALLOC, XREALLOC): Remove casts not
17807         required by C99.
17808
17809         Use `exit_failure' for xalloc and xmemcoll instead of their own
17810         private exit-failure variables.
17811         * lib/xalloc.h (xalloc_exit_failure): Remove.
17812         * lib/xmalloc.c: Likewise.  Include exitfail.h.
17813         (xalloc_die): Use exit_failure instead of xalloc_exit_failure.
17814         * lib/xmemcoll.h (xmemcoll_exit_failure): Remove.
17815         * lib/xmemcoll.c: Likewise.  Include exitfail.h.
17816         (xmemcoll): Use exit_failure instead of xalloc_exit_failure.
17817
17818 2003-07-20  Jim Meyering  <jim@meyering.net>
17819
17820         * modules/closeout (Depends-on): Add exitfail.
17821         Suggestion from Bruno Haible.
17822
17823 2003-07-19  Karl Berry  <karl@gnu.org>
17824
17825         * config/config.sub: update from prep.
17826
17827 2003-07-18  Paul Eggert  <eggert@twinsun.com>
17828
17829         * lib/closeout.h (close_stdout_set_status, close_stdout_status):
17830         Remove.
17831         * lib/closeout.c: Likewise.  Include "closeout.h" right after config.h,
17832         to test that it can stand by itself.  Include "exitfail.h".
17833         Clients should set exit_failure instead.
17834         (EXIT_FAILURE): Remove; no longer needed.  Do not include <stdlib.h>.
17835
17836 2003-07-18  Bruno Haible  <bruno@clisp.org>
17837
17838         * modules/getndelim2: New file.
17839         * modules/getline: Share files with module getndelim2.
17840         * modules/getnline: Depend on getndelim2 instead of sharing files with
17841         it. Add getnline.c to lib_SOURCES.
17842         * MODULES.html.sh (func_all_modules): Add getndelim2.
17843
17844 2003-07-18  Bruno Haible  <bruno@clisp.org>
17845
17846         * m4/getndelim2.m4: New file.
17847         * m4/getline.m4 (AM_FUNC_GETLINE): Add AC_LIBOBJ of getndelim2.c and
17848         invoke gl_PREREQ_GETNDELIM2.
17849         (gl_PREREQ_GETLINE): Drop AC_HEADER_STDC, now done by
17850         gl_PREREQ_GETNDELIM2.
17851         * m4/getnline.m4 (gl_GETNLINE): Drop AC_HEADER_STDC, now done by
17852         gl_GETNDELIM2.
17853
17854 2003-07-18  Bruno Haible  <bruno@clisp.org>
17855
17856         * lib/getndelim2.h: New file.
17857         * lib/getndelim2.c: Make into a module of its own. Include config.h,
17858         getndelim2.h.
17859         (getndelim2): Make non-static. Change return type to ssize_t.
17860         * lib/getline.h: Change argument names.
17861         * lib/getline.c: Include getndelim2.h instead of getndelim2.c.
17862         * lib/getnline.c: Include getndelim2.h.
17863
17864 2003-07-18  Andreas Schwab  <schwab@suse.de>
17865
17866         * lib/memcoll.c (memcoll) [!HAVE_STRCOLL]: Clear errno.
17867
17868 2003-07-17  Karl Berry  <karl@gnu.org>
17869
17870         * config/config.sub: update from prep.
17871
17872 2003-07-17  Bruno Haible  <bruno@clisp.org>
17873
17874         * modules/getnline: New file.
17875         * modules/getline: Add lib/getndelim2.c to source file list.
17876         * MODULES.html.sh (func_all_modules): Add getnline.
17877
17878 2003-07-17  Bruno Haible  <bruno@clisp.org>
17879
17880         * m4/getnline.m4: New file.
17881
17882 2003-07-17  Bruno Haible  <bruno@clisp.org>
17883
17884         * m4/Makefile.am.in: Remove file.
17885         * m4/Makefile.am: Remove file.
17886         * m4/Makefile.in: Remove file.
17887
17888 2003-07-17  Bruno Haible  <bruno@clisp.org>
17889
17890         * lib/getnline.h: New file.
17891         * lib/getnline.c: New file.
17892         * lib/getndelim2.c: New file, extracted from getline.c.
17893         (getndelim2): Renamed from getdelim2, with added nmax argument.
17894         * lib/getline.c: Include getndelim2.c.
17895         (getdelim2): Moved out to getndelim2.c.
17896         (getline, getdelim): Update.
17897
17898 2003-07-17  Bruno Haible  <bruno@clisp.org>
17899
17900         * lib/Makefile.am: Remove file.
17901         * lib/Makefile.in: Remove file.
17902
17903 2003-07-17  Bruno Haible  <bruno@clisp.org>
17904
17905         * configure.in: Remove file.
17906         * Makefile.in: Remove file.
17907
17908 2003-07-17  Bruno Haible  <bruno@clisp.org>
17909
17910         * MODULES.html.sh: Put the </BODY> right before </HTML>.
17911
17912 2003-07-16  Karl Berry  <karl@gnu.org>
17913
17914         * config/srclist-update: was running fixlicense twice, which caused
17915                 texinfo.tex to be nullified for some reason.  Simplify,
17916                 $gplsrc is no longer needed as far as I can see?
17917
17918 2003-07-16  Jim Meyering  <jim@meyering.net>
17919
17920         * modules/save-cwd: Depend on xgetcwd.  From Derek Price.
17921
17922 2003-07-15  Paul Eggert  <eggert@twinsun.com>
17923
17924         * config/srclist.txt: Get the following files from gettext-runtime/intl
17925         instead: config.charset, localcharset.c, localcharset.h, ref-add.sin,
17926         ref-del.sin.  From Bruno Haible.
17927         * config/srclist-update (fixfile): Change grep pattern again, since the
17928         previous fix didn't work (there was another trailing $).  Use
17929         '[$]' to escape the $s.
17930
17931 2003-07-15  Karl Berry  <karl@gnu.org>
17932
17933         * lib/vasnprintf.c: update from gettext.
17934
17935 2003-07-15  Karl Berry  <karl@gnu.org>
17936
17937         * config/srclist-update (fixfile): Change grep pattern, since 'Id'
17938         gets expanded when surrounded by '$'.
17939
17940 2003-07-15  Jim Meyering  <jim@meyering.net>
17941
17942         * modules/save-cwd: Don't depend on error.  From Derek Price.
17943
17944 2003-07-15  Jim Meyering  <jim@meyering.net>
17945
17946         * lib/makepath.c (make_path): Enclose diagnostic in _(...).
17947
17948 2003-07-14  Simon Josefsson  <jas@extundo.com>
17949
17950         * modules/mempcpy: New file.
17951         * MODULES.html.sh (func_all_modules): Add mempcpy.
17952
17953 2003-07-14  Simon Josefsson  <jas@extundo.com>
17954
17955         * m4/mempcpy.m4: New file.
17956
17957 2003-07-14  Simon Josefsson  <jas@extundo.com>
17958
17959         * lib/mempcpy.h: New file.
17960         * lib/mempcpy.c: New file.
17961
17962 2003-07-14  Paul Eggert  <eggert@twinsun.com>
17963
17964         * modules/getdate, modules/posixtm: Depend on mktime.
17965
17966 2003-07-14  Paul Eggert  <eggert@twinsun.com>
17967
17968         * lib/ceill.c, expl.c, floorl.c, frexpl.c, ldexpl.c, mathl.h,
17969         sincosl.c, sqrtl.c, trigl.c, trigl.h, poll.c, poll_.h, mkstemp.c,
17970         unicodeio.c, unicodeio.h, unlocked-io.h:
17971         Switch from LGPL to GPL.
17972
17973 2003-07-14  Paul Eggert  <eggert@twinsun.com>
17974
17975         * lib/asnprintf.c, asprintf.c, config.charset, gettext.h,
17976         localcharset.c, localcharset.h, mkdtemp.c, printf-args.c,
17977         printf-args.h, printf-parse.c, printf-parse.h, ref-add.sin,
17978         ref-del.sin, setenv.c, unsetenv.c, vasnprintf.c, vasnprintf.h,
17979         vasprintf.c, vasprintf.h: Regenerate.  These files are now being
17980         updated automatically by ../config/srclist-update.  This changes
17981         their license from LPGL to GPL.
17982
17983 2003-07-14  Paul Eggert  <eggert@twinsun.com>
17984
17985         * config/srclist.txt: Add tons more gettext files.  $GETTEXT is now
17986         assumed to refer to the root of the most recent stable gettext version.
17987         * config/srclistvars.sh: Add defaults for eggert.
17988         * config/srclist-update: Convert LGPL to GPL in shell scripts, too.
17989         Match "This program" as well as "The program".  This is needed
17990         for gettext.
17991
17992 2003-07-14  Jim Meyering  <jim@meyering.net>
17993
17994         Don't emit diagnostics.  Let callers do that.
17995         * lib/save-cwd.c: Don't include "error.h".
17996         (save_cwd): Don't call error.  Ensure that errno is valid
17997         when returning nonzero.
17998
17999         * lib/save-cwd.h (restore_cwd): Update prototype.
18000         * lib/save-cwd.c (restore_cwd): Remove two parameters.
18001         Simplify.  Don't call error upon failure.  Let callers do that.
18002         (save_cwd): Mention that Irix 5.3 has the same problem as SunOS 4
18003         when auditing is enabled.  But don't bother updating the #if.
18004
18005 2003-07-11  Alexandre Duret-Lutz  <adl@gnu.org>
18006
18007         * lib/obstack.h (__INT_TO_PTR): Revert change of 2003-03-13;
18008         it breaks C++ compilation.
18009         [!__GNUC__ || !__STDC__] (obstack_finish): Cast result to void*.
18010
18011 2003-07-10  Simon Josefsson  <jas@extundo.com>
18012
18013         * modules/strchrnul (Makefile.am): Add strchrnul.h.
18014
18015 2003-07-10  Jim Meyering  <jim@meyering.net>
18016
18017         * m4/clock_time.m4: Remove trailing blank.
18018         * m4/intmax_t.m4: Likewise.
18019
18020 2003-07-10  Jim Meyering  <jim@meyering.net>
18021
18022         * lib/vasnprintf.c: Remove trailing blanks.
18023         Make cpp indentation consistent.
18024
18025 2003-07-09  Paul Eggert  <eggert@twinsun.com>
18026
18027         * lib/alloca_.h, euidaccess.c, getpass.c, memrchr.c, obstack.h,
18028         posixver.c, strftime.c, strnlen.c, strverscmp.c:
18029         Switch from LGPL to GPL.
18030
18031 2003-07-09  Paul Eggert  <eggert@twinsun.com>
18032
18033         * config/srclist.txt: Sort sublists.  Add
18034         $LIBCSRC/sysdeps/generic/strtoul.c. In comments, add more libc files
18035         that differ from gnulib for one reason or another; we'd like this list
18036         to be smaller but for now let's document what we have.
18037
18038 2003-07-08  Paul Eggert  <eggert@twinsun.com>
18039
18040         * config/srclist-update: Port to POSIX 1003.1-2001 hosts by avoiding
18041         the use of GNU extensions.  Change "x=`eval echo $x`" to the shorter
18042         and sweeter "eval x=$x".
18043         * config/srclist.txt: Get lib/argp* from glibc.
18044
18045 2003-07-07  Paul Eggert  <eggert@twinsun.com>
18046
18047         * lib/mktime.c: Fix some boundary cases and remove need for floating
18048         point.
18049
18050         Issue a compile-time diagnostic if time_t is floating point, or if
18051         two's complement arithmetic is not in effect, or if arithmetic
18052         right shift does not propagate the sign.  These assumptions were
18053         all in the original code but they weren't checked.
18054
18055         (TIME_T_MIDPOINT, verify): New macros.
18056         (__isleap): Remove; it has integer overflow problems.
18057         (leapyear): New function, without those problems.
18058         (ydhms_tm_diff): Remove; splitting into two parts.
18059         (ydhms_diff): New function, containing the arithmetic part of
18060         the old ydhms_tm_diff function.  Issue a compile-time
18061         diagnostic if we are not using C99 integer division.
18062         Avoid casts when possible.
18063         (guess_time_tm): New function, containing the checking part of
18064         the old ydhms_tm_diff function.  Return the new value, rather than
18065         the difference between it and the old.  Accept a new argument T
18066         so that *T specifies the old value.  Check for overflow in the result.
18067
18068         (__mktime_internal): Use a time_t offset, not a long int offset.
18069         This undoes the 2003-06-04 change, which is no longer needed now
18070         that we have better overflow checking.
18071         (localtime_offset): Likewise.
18072
18073         (__mktime_internal): Avoid harmful overflow on hosts where time_t
18074         and long are 64-bit but int is only 32-bit.
18075         (ydhms_diff): Use long int to store year1 and yday1.
18076         Issue a compile-time diagnostic if long int is not wide enough.
18077
18078         (__mktime_internal): Use long int to store adjusted year and yday.
18079         Use plain C rather than preprocessor commands, if that doesn't
18080         affect efficiency.
18081         Check for overflow (and try to repair) after each probe
18082         rather than checking only at the very end.  This avoids some bugs
18083         (e.g., southern hemisphere, behind GMT, and GMT offset at minimum time
18084         does not equal GMT offset at maximum time).
18085         Use integer to check for overflow rather than floating point; this
18086         is more portable to non-IEEE hosts, and is a tad faster.
18087         When we detect that we are oscillating between two values,
18088         don't check whether tm_isdst has the requested value, since
18089         we already know the answer.  When tm_isdst has the wrong value,
18090         use a different heuristic to find the right one, based on the
18091         extreme values actually observed in practice in tz2003a,
18092         rather than the (overly optimistic) "previous 3 calendar quarters".
18093
18094         (not_equal_tm, print_tm, check_result): Use "const T" rather than
18095         "T const" to accommodate glibc style.
18096         (check_result): Use less-confusing report format.  "long" -> "long int.
18097         (main): Likewise.
18098         Don't loop if the iteration overflows time_t.
18099         Allow a negative step in the iteration.
18100
18101 2003-07-06  Karl Berry  <karl@gnu.org>
18102
18103         * config/depcomp: update from automake.
18104         * config/config.sub: update from prep.
18105
18106 2003-07-03  Karl Berry  <karl@gnu.org>
18107
18108         * config/config.guess: update from prep.
18109
18110 2003-07-01  Paul Eggert  <eggert@twinsun.com>
18111
18112         * m4/xreadlink.m4 (gl_XREADLINK): Don't check for sys/types.h, since
18113         xreadlink.c now includes it unconditionally.
18114
18115 2003-07-01  Paul Eggert  <eggert@twinsun.com>
18116
18117         * lib/xreadlink.c: Include <sys/types.h> unconditionally, instead of
18118         having it depend on HAVE_SYS_TYPES_H.
18119
18120 2003-07-01  Bruno Haible  <bruno@clisp.org>
18121
18122         * m4/ssize_t.m4 (gt_TYPE_SSIZE_T): Don't include <unistd.h>.
18123         <sys/types.h> should be sufficient.
18124         Reported by Paul Eggert.
18125
18126 2003-06-26  Karl Berry  <karl@gnu.org>
18127
18128         * config/depcomp: update from automake.
18129
18130 2003-06-26  Bruno Haible  <bruno@clisp.org>
18131
18132         * modules/human: Depend on module stdbool.
18133
18134 2003-06-25  Bruno Haible  <bruno@clisp.org>
18135
18136         * modules/readlink: New file.
18137         * modules/xreadlink: Depend on it.
18138         * MODULES.html.sh (func_all_modules): Add readlink.
18139
18140 2003-06-25  Bruno Haible  <bruno@clisp.org>
18141
18142         * m4/readlink.m4: New file.
18143
18144 2003-06-25  Bruno Haible  <bruno@clisp.org>
18145
18146         * lib/readlink.c: New file.
18147
18148 2003-06-22  Karl Berry  <karl@gnu.org>
18149
18150         * config/srclist.txt: update mkinstalldirs from automake.
18151         * config/mkinstalldirs: update.
18152
18153 2003-06-22  Bruno Haible  <bruno@clisp.org>
18154
18155         Portability to mingw32.
18156         * m4/ssize_t.m4: New file, from GNU gettext.
18157         * m4/safe-read.m4 (gl_PREREQ_SAFE_READ): Require gt_TYPE_SSIZE_T.
18158         * m4/xreadlink.m4 (gl_XREADLINK): Require gt_TYPE_SSIZE_T.
18159
18160 2003-06-22  Bruno Haible  <bruno@clisp.org>
18161
18162         * modules/safe-read: Add m4/ssize_t.m4.
18163         * modules/xreadlink: Add m4/ssize_t.m4.
18164
18165 2003-06-20  Bruno Haible  <bruno@clisp.org>
18166
18167         Assume C89, so PARAMS isn't needed.
18168         * lib/unicodeio.h (PARAMS): Remove.
18169         * lib/unicodeio.c: Don't use PARAMS.
18170
18171 2003-06-18  Karl Berry  <karl@gnu.org>
18172
18173         * config/config.{guess,sub}: update from prep.
18174
18175 2003-06-18  Jim Meyering  <jim@meyering.net>
18176
18177         Merge changes from coreutils.
18178         * lib/readutmp.c: Include <string.h> and <stdlib.h> unconditionally.
18179         Remove explicit declarations of xmalloc and realloc.
18180         Include xalloc.h.
18181         (read_utmp): Remove anachronistic cast of xmalloc.
18182
18183 2003-06-17  Paul Eggert  <eggert@twinsun.com>
18184
18185         Assume C89, so PARAMS isn't needed.
18186         * lib/backupfile.h (PARAMS): Remove.  All uses removed.
18187         * lib/closeout.h, lib/dirname.h, lib/filemode.h, lib/fsusage.h,
18188         lib/getdate.h, lib/getline.h, lib/group-member.h, lib/hard-locale.h,
18189         lib/hash.h, lib/linebuffer.h, lib/long-options.h, lib/makepath.h,
18190         lib/memcasecmp.h, lib/memcoll.h, lib/modechange.h, lib/mountlist.h,
18191         lib/path-concat.h, lib/physmem.h, lib/posixtm.h, lib/quote.h,
18192         lib/readutmp.h, lib/same.h, lib/save-cwd.h, lib/savedir.h,
18193         lib/stdio-safer.h, lib/strtoimax.c, lib/strverscmp.h,
18194         lib/unistd-safer.h, lib/version-etc.h, lib/xalloc.h, lib/xreadlink.h,
18195         lib/xstrtod.h, lib/xstrtol.h: Likewise.
18196         * lib/filemode.h, lib/hard-locale.h, lib/memcoll.h, lib/modechange.h,
18197         lib/physmem.h, lib/same.h, lib/strverscmp.h: Do not include config.h;
18198         no longer needed. Anyway, config.h should always be included before any
18199         other file.
18200
18201 2003-06-11  Simon Josefsson  <jas@extundo.com>
18202
18203         * modules/sysexits: New file.
18204         * MODULES.html.sh (func_all_modules): Add sysexits.
18205
18206 2003-06-11  Simon Josefsson  <jas@extundo.com>
18207
18208         * lib/sysexit_.h: New file.
18209
18210 2003-06-11  Derek Price  <derek@ximbiot.com>
18211
18212         * lib/stat.c [LSTAT]: Compile/use slash_aware_lstat only if it is
18213         necessary.
18214
18215 2003-06-11  Bruno Haible  <bruno@clisp.org>
18216
18217         * m4/sysexits.m4: New file.
18218
18219 2003-06-10  Simon Josefsson  <jas@extundo.com>
18220
18221         * lib/argp.h: New file, from glibc.
18222         * lib/argp-ba.c: New file, from glibc.
18223         * lib/argp-eexst.c: New file, from glibc.
18224         * lib/argp-fmtstream.c: New file, from glibc.
18225         * lib/argp-fmtstream.h: New file, from glibc.
18226         * lib/argp-fs-xinl.c: New file, from glibc.
18227         * lib/argp-help.c: New file, from glibc.
18228         * lib/argp-namefrob.h: New file, from glibc.
18229         * lib/argp-parse.c: New file, from glibc.
18230         * lib/argp-pv.c: New file, from glibc.
18231         * lib/argp-pvh.c: New file, from glibc.
18232         * lib/argp-xinl.c: New file, from glibc.
18233
18234 2003-06-10  Simon Josefsson  <jas@extundo.com>
18235
18236         * modules/strchrnul: New file.
18237
18238 2003-06-10  Simon Josefsson  <jas@extundo.com>
18239
18240         * modules/argp: New file.
18241
18242 2003-06-10  Simon Josefsson  <jas@extundo.com>
18243
18244         * m4/strchrnul.m4: New file.
18245
18246 2003-06-10  Simon Josefsson  <jas@extundo.com>
18247
18248         * lib/strchrnul.h: New file.
18249         * lib/strchrnul.c: New file.
18250
18251 2003-06-10  Bruno Haible  <bruno@clisp.org>
18252
18253         * MODULES.html.sh (func_all_modules): Add strchrnul and argp.
18254
18255 2003-06-07  Karl Berry  <karl@gnu.org>
18256
18257         * config/config.{guess,sub}: update from prep.
18258
18259 2003-06-07  Jim Meyering  <jim@meyering.net>
18260
18261         * modules/strtod: Use $(...) notation, not @...@ for
18262         AC_REPLACE'd variables.
18263         * modules/localcharset: Likewise.
18264
18265 2003-06-07  Jim Meyering  <jim@meyering.net>
18266
18267         * lib/readtokens.h: Put `Free Software Foundation, Inc.'
18268         in place of my name in the copyright comment.
18269         Remove definition and uses of __P.
18270
18271         From coreutils.
18272         * lib/stat.c: Don't declare xmalloc explicitly.
18273         Instead, include "xalloc.h".
18274         * lib/readtokens.c (readtokens): Remove anachronistic casts of xmalloc,
18275         xrealloc, and xcalloc return values.
18276         * lib/xgetcwd.c (xgetcwd): Include "xgetcwd.h".
18277         Improve comment.
18278         * lib/xgetcwd.h: Remove definition/uses of PARAMS.
18279
18280 2003-06-07  Bruno Haible  <bruno@clisp.org>
18281
18282         * modules/poll (Makefile.am): Use explicit creation rule for poll.h, to
18283         avoid AC_CONFIG_LINKS.
18284         * modules/fnmatch (Makefile.am): Use explicit creation rule for
18285         fnmatch.h, to avoid AC_CONFIG_LINKS.
18286         * modules/alloca (Makefile.am): Make creation of alloca.h Ctrl-C safe.
18287
18288 2003-06-07  Bruno Haible  <bruno@clisp.org>
18289
18290         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH, gl_FUNC_FNMATCH_POSIX,
18291         gl_FUNC_FNMATCH_GNU): Set FNMATCH_H instead of invoking
18292         AC_CONFIG_LINKS. Needed to allow for a different name of the lib
18293         directory.
18294         * m4/poll.m4 (gl_FUNC_POLL): Set POLL_H instead of invoking
18295         AC_CONFIG_LINKS. Needed to allow for a different name of the lib
18296         directory.
18297
18298 2003-06-06  Jim Meyering  <jim@meyering.net>
18299
18300         Merge from coreutils.
18301         * lib/same.c: (same_name): Declare *_basename locals to be `const'.
18302         Consolidate declarations and initializations of *_base* locals.
18303
18304         Merge from coreutils.
18305         This avoids a core dump on systems without GNU putenv,
18306         when running `env -u SOME_ALREADY_UNSET_VARIABLE'.
18307         * lib/putenv.c (__set_errno, LOCK, UNLOCK): Define.
18308         (unsetenv): New static function, from GNU libc.
18309         (rpl_putenv): Use it.
18310
18311         * lib/modechange.c: Remove trailing blanks.
18312
18313         Merge from coreutils.
18314         * lib/fsusage.c: Remove declaration of statfs.
18315         It conflicted with one from OSF/1 5.1 in <sys/mount.h>.
18316
18317         * lib/posixtm.c: Include <stdbool.h> unconditionally.
18318
18319 2003-06-06  Jim Meyering  <jim@meyering.net>
18320
18321         * lib/stdbool_.h: Renamed from stdbool.h.in.
18322
18323 2003-06-06  Jim Meyering  <jim@meyering.net>
18324             Bruno Haible  <bruno@clisp.org>
18325
18326         * modules/stdbool: Reflect renaming: stdbool.h.in -> stdbool_.h.
18327         Adjust Makefile.am snippet not to redirect directly to target.
18328         Use $(STDBOOL_H) notation, not @STDBOOL_H@ for AC_REPLACE'd variables.
18329
18330 2003-06-05  Paul Eggert  <eggert@twinsun.com>
18331
18332         * lib/mktime.c (__mktime_internal): When resolving a tm_isdst
18333         mismatch, look in future quarters as well as past.  This fixes a
18334         bug when processing fall-backwards gaps immediately after a long
18335         period of daylight-saving time.
18336
18337         * lib/mktime.c: Assume freestanding C89 or better.
18338         (HAVE_LIMITS_H): Remove.  Assume it's 1.
18339         (__P): Remove; not used.
18340         (CHAR_BIT, INT_MIN, INT_MAX): Remove; <limits.h> defines them.
18341         (mktime, not_equal_tm, print_tm, check_result,
18342         main): Use prototypes.  Use const * where appropriate.
18343         (main): Fix typo in testing code that uncovered by above changes.
18344         (Local Variables): Remove -DHAVE_LIMITS_H from compile-command.
18345
18346 2003-06-04  Paul Eggert  <eggert@twinsun.com>
18347
18348         * m4/human.m4 (gl_HUMAN): Require AM_STDBOOL_H.  Check for
18349         locale.h, localeconv.  This merges changes from coreutils.
18350
18351         * m4/mktime.m4 (AC_FUNC_MKTIME): New macro, taken from Autoconf CVS.
18352         It can be removed after the next Autoconf is released.
18353         * m4/exclude.m4 (gl_EXCLUDE): Don't check for sys/types.h; no loner
18354         needed.
18355
18356 2003-06-04  Paul Eggert  <eggert@twinsun.com>
18357
18358         * lib/mktime.c: Fix Debian bug 177940
18359         <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=177940>.
18360         (localtime_offset): Now long int, not time_t, because we want it
18361         to be guaranteed to be signed.  All uses changed.
18362         (__mktime_internal): If overflow would occur when adding offset,
18363         don't add it.
18364
18365         Merge 'human' changes from coreutils.  Rewrite to support
18366         locale-specific notations like thousands separators.
18367         * lib/human.c: Simplify authorship notice.
18368         Include human.h immediately after config.h.
18369         <sys/types.h>, <stdio.h>: Do not include; no longer needed.
18370         <limits.h>: Do not include, since human.h does.
18371         (SIZE_MAX, UINTMAX_MAX): New macros.
18372         <strings.h>: Include if HAVE_STRINGS_H, not if !HAVE_STRING_H.
18373         <locale.h>: Include if HAVE_LOCALE_H and HAVE_LOCALECONV.
18374         (HUMAN_READABLE_SUFFIX_LENGTH_MAX): New macro.
18375         (power_letter): Renamed from suffixes.
18376         (generate_suffix_backwards): Remove.
18377         (adjust_value): Now takes int style (because of human.h changes)
18378         and long double value (for greater precision on some platforms).
18379         (group_number): New function.
18380         (human_readable): Use it.  Use integer options, not enum.
18381         Put the options before the sizes in the arg list.
18382         Support all the new options.
18383         The old human_readable function has been removed;
18384         use inttostr.h instead.
18385         (human_readable, default_block_size, humblock):
18386         Use uintmax_t, not int, for block sizes.
18387         (human_readable_inexact, block_size_types): Remove.
18388         (block_size_opts): New constant.
18389         (human_options): Renamed from human_block_size, with new signature
18390         that allows block sizes up to UINTMAX_MAX.  All callers changed.
18391         * lib/human.h: Add copyright and authorship notice.
18392         Include <limits.h> and <stdbool.h> unconditionally.
18393         (PARAMS): Remove.  All uses removed.
18394         (LONGEST_HUMAN_READABLE): Add support for thousands separator.
18395         (enum human_inexact_style): Remove tag; now a nameless enum.
18396         (human_floor, human_ceiling, human_round_to_even): Now have
18397         values 2, 0, 1 rather than -1, 1, 0.
18398         (human_group_digits, human_suppress_point_zero, human_autoscale,
18399         human_base_1024, human_SI, human_B): New constants.
18400         (human_readable_inexact, human_block_size): Remove.
18401         (human_readable): Size args are now uintmax_t, not int.
18402         (human_options): New decl.
18403
18404         * lib/exclude.c: (new_exclude, add_exclude): Remove casts that are
18405         unnecessary now that we assume C89 or better.  This change
18406         imported from coreutils.
18407
18408         * lib/mktime.c (__mktime_internal): Do not reject negative timestamps
18409         arbitrarily.  This is the same patch as 2003-05-28, but it got lost
18410         in the 2003-05-30 sync from glibc.
18411
18412         .h files should stand alone, but we shouldn't include <sys/types.h>
18413         if we can get away with just <stddef.h>.
18414
18415         * lib/__fpending.h, addext.c, backupfile.c, exclude.c, getline.c,
18416         malloc.c, putenv.c, realloc.c, strcasecmp.c: Include <stddef.h>
18417         rather than <sys/types.h>, as we merely need size_t.
18418         * lib/dirname.h, memcoll.h, xalloc.h, xmemcoll.h: Include <stddef.h>,
18419         to get size_t.
18420         * lib/hash.h, linebuffer.h, readtokens.h, stdio-safer.h, version-etc.h:
18421         Include <stdio.h>, to get FILE.
18422         * lib/memcasecmp.c: Don't include <sys/types.h>, as we can assume
18423         memcasecmp.h has included <stddef.h> and all we need is size_t.
18424         * lib/memcoll.c: Include "memcoll.h", which gets us size_t and checks
18425         our interface, instead of including <sys/types.h>
18426
18427 2003-06-04  Paul Eggert  <eggert@twinsun.com>
18428
18429         * config/srclist.txt ($LIBCSRC/time/mktime.c lib gpl): Comment out for
18430         now, as glibc mktime is buggy on non-glibc systems.
18431
18432 2003-06-03  Karl Berry  <karl@gnu.org>
18433
18434         * config/config.sub: update from prep.
18435
18436 2003-06-02  Paul Eggert  <eggert@twinsun.com>
18437
18438         [from coreutils]
18439         Fix some minor time-related bugs with POSIX time arguments.
18440         Some valid time stamps were being rejected (notably -1, and
18441         time stamps before 1900 on 64-bit hosts).  And some invalid
18442         time stamps were being accepted, e.g. September 31.
18443
18444         * lib/posixtm.h (posixtime): Return bool instead of time_t, so
18445         that we can return (time_t) -1 successfully.
18446         * lib/posixtm.c: Likewise.
18447         [HAVE_STDBOOL_H]: Include <stdbool.h>.
18448         (bool, false, true) [!HAVE_STDBOOL_H]: New type.
18449         (t): Remove static var.
18450         (year, posix_time_parse): Now takes struct tm * arg to modify, instead
18451         of static var.  All uses changed.
18452         (year): Do not reject years before 1900; they can occur with
18453         64-bit time_t.
18454         (posix_time_parse): Do not check for out-of-range components;
18455         that is now the caller's responsibility, since our checks were
18456         only approximations.
18457         (posixtime): Use mktime to check for out-of-range components,
18458         since it knows them exactly.
18459         If mktime returns (time_t) -1, check whether an error actually occurred
18460         by invoking localtime on -1.
18461         (main) [TEST_POSIXTIME]: Check for input data errors, and report
18462         posixtime failures better.
18463         Improve the test data (in comments only).
18464
18465 2003-06-02  Karl Berry  <karl@gnu.org>
18466
18467         * config/mkinstalldirs (version): new variable.
18468         (--version): new option.
18469         (usage): improve message.
18470
18471 2003-05-30  Karl Berry  <karl@gnu.org>
18472
18473         * lib/mktime.c: update from libc.
18474
18475 2003-05-30  Bruno Haible  <bruno@clisp.org>
18476
18477         * modules/gettext: Add files m4/nls.m4 and m4/po.m4.
18478         * config/config.rpath: Upgrade to gettext-0.12.1.
18479
18480 2003-05-30  Bruno Haible  <bruno@clisp.org>
18481
18482         * m4/gettext.m4: Upgrade to gettext-0.12.1.
18483         * m4/nls.m4: New file, from gettext-0.12.1.
18484         * m4/po.m4: New file, from gettext-0.12.1.
18485         * m4/progtest.m4: Upgrade to gettext-0.12.1.
18486
18487 2003-05-30  Bruno Haible  <bruno@clisp.org>
18488
18489         * lib/config.charset: Upgrade to gettext-0.12.1 and libiconv-1.9.1.
18490         * lib/localcharset.h: Likewise.
18491         * lib/localcharset.c: Likewise.
18492
18493 2003-05-29  Karl Berry  <karl@gnu.org>
18494
18495         * config/config.rpath: update from gettext.
18496
18497 2003-05-28  Paul Eggert  <eggert@twinsun.com>
18498
18499         Assume the headers required for C89 freestanding compilers.
18500         * m4/backupfile.m4 (gl_BACKUPFILE): Don't check for limits.h.
18501         * m4/fsusage.m4 (gl_PREREQ_FSUSAGE_EXTRA): Likewise.
18502         * m4/human.m4 (gl_HUMAN): Likewise.
18503         * m4/pathmax.m4 (gl_PATHMAX): Likewise.
18504         * m4/rpmatch.m4 (gl_FUNC_RPMATCH): Likewise.
18505         * m4/userspec.m4 (gl_USERSPEC): Likewise.
18506         * m4/xreadlink.m4 (gl_XREADLINK): Likewise.
18507         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
18508         * m4/quote.m4 (gl_QUOTE): Don't check for stddef.h.
18509
18510 2003-05-28  Paul Eggert  <eggert@twinsun.com>
18511
18512         Assume the headers required for C89 freestanding compilers.
18513         * lib/addext.c, lib/backupfile.c, lib/fsusage.c, lib/human.c,
18514         lib/pathmax.h, lib/rpmatch.c, lib/userspec.c, lib/xreadlink.c,
18515         lib/xstrtol.c: Include <limits.h> without checking for HAVE_LIMITS_H.
18516         * lib/backupfile.c, lib/fsusage.c, lib/hash.c, lib/human.c,
18517         lib/safe-read.c, lib/userspec.c, lib/xstrtol.c (CHAR_BIT): Don't
18518         define, since <limits.h> is guaranteed to do that.
18519         * lib/fatal.c: Include <stdarg.h> without checking for __STDC__.
18520         * lib/exclude.c: Include <stdbool.h> unconditionally.
18521         * lib/tempname.c: Include <stddef.h> unconditionally.
18522         * lib/hash.c: Include <limits.h>, since we no longer define CHAR_BIT.
18523         * lib/modechange.c, rpmatch.c (NULL): Don't define, since
18524         <stddef.h> does that.
18525         * lib/quote.c: Dont include <stddef.h> or <sys/types.h>; not needed.
18526         * lib/safe-read.c (INT_MAX): Don't define, since <limits.h> does that.
18527         * lib/safe-read.c (TYPE_MINIMUM, TYPE_MAXIMUM): Remove; no longer
18528         needed.
18529         * lib/xstrtol.c: Likewise.
18530         * lib/safe-read.c: Remove TYPE_SIGNED; no longer needed.
18531         * lib/savedir.c: Include <stddef.h> instead of defining NULL.
18532
18533         * lib/addext.c (addext): Use assignment rather than cast, to avoid
18534         warnings on some platforms.
18535
18536         * lib/mktime.c (__mktime_internal): Do not reject negative timestamps
18537         arbitrarily.
18538
18539 2003-05-26  Jim Meyering  <jim@meyering.net>
18540
18541         Merge in a change from coreutils:
18542         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Test the cache variable, not one
18543         that is guaranteed to be `no'.  Use `no_such_member' to indicate
18544         that condition, rather than `-1' which is slightly misleading.
18545         Change the name of the cache variable to have the gl_ prefix.
18546         Prompted by a patch from Richard Dawe for DJGPP.
18547
18548 2003-05-24  Karl Berry  <karl@gnu.org>
18549
18550         * config/config.guess: update from prep.
18551
18552 2003-05-22  Karl Berry  <karl@gnu.org>
18553
18554         * gnulib-tool (func_usage): =LIBRARY not =libRARY in help msg.
18555
18556 2003-05-20  Karl Berry  <karl@gnu.org>
18557
18558         * config/config.guess: update from prep.
18559
18560 2003-05-18  Karl Berry  <karl@gnu.org>
18561
18562         * config/srclistvars.sh (TEXMF): use TEXMFROOT instead, since TEXMF
18563         might actually be set by the user.
18564
18565         * config/depcomp, install-sh, mdate-sh: update from automake.
18566
18567 2003-05-17  Bruno Haible  <bruno@clisp.org>
18568
18569         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Fix a quoting bug leading to an
18570         invalid expansion for AC_EGREP_CPP.
18571         * m4/strtoimax.m4 (gl_FUNC_STRTOIMAX): Likewise.
18572         * m4/strtoumax.m4 (gl_FUNC_STRTOUMAX): Likewise.
18573         Suggested by Akim Demaille <akim@epita.fr> in
18574         http://mail.gnu.org/archive/html/bug-autoconf/2003-05/threads.html
18575
18576 2003-05-12  Jim Meyering  <jim@meyering.net>
18577
18578         * lib/strftime.c (my_strftime): Let the `-' (no-pad) flag affect
18579         the space-padded-by-default conversion specifiers, %e, %k, %l.
18580
18581 2003-05-12  Bruno Haible  <bruno@clisp.org>
18582
18583         * lib/linebreak.c (iconv_string_length): Don't return -1 just because
18584         the string is longer than 4 KB.
18585
18586 2003-05-11  Karl Berry  <karl@gnu.org>
18587
18588         * config/config.{guess,sub}: update from prep.
18589
18590 2003-05-09  Bruno Haible  <bruno@clisp.org>
18591
18592         * modules/error: Add m4/strerror_r.m4 to file list.
18593
18594 2003-05-03  Bruno Haible  <bruno@clisp.org>
18595
18596         Upgrade to Unicode-4.0.
18597         * lib/linebreak.c (nonspacing_table_data): Change width of U+00AD,
18598         U+0350..U+0357, U+035D..U+035F, U+0600..U+0603, U+0610..U+0615,
18599         U+0656..U+0658, U+0A01, U+0AE2..U+0AE3, U+0CBC, U+17B4..U+17B5,
18600         U+17DD, U+1920..U+1922, U+1927..U+192B, U+1932, U+1939..U+193B
18601         from 1 to 0. Change width of U+0CBF, U+0CC6, U+180E from 0 to 1.
18602         (uc_width): Change width of U+4DC0..U+4DFF from 2 to 1. Change width
18603         of U+2A6D7..U+2F7FF, U+2FA1E..U+2FFFD, U+30000..U+3FFFD from 1 to 2.
18604         Change width of U+E0100..U+E01EF from 1 to 0.
18605
18606 2003-04-25  Jim Meyering  <jim@meyering.net>
18607
18608         * lib/copy-file.c (copy_file_preserving): Declare buf_size to be
18609         of type size_t, not int.
18610
18611 2003-04-25  Bruno Haible  <bruno@clisp.org>
18612
18613         * lib/copy-file.c: Include <stddef.h>, for size_t.
18614
18615 2003-04-21  Paul Eggert  <eggert@twinsun.com>
18616
18617         * m4/error.m4 (gl_ERROR): Do not put under dynamic conditions some
18618         code which expansion is under static control.  Patch imported from
18619         Akim Demaille's patch to Bison; see
18620         <http://mail.gnu.org/archive/html/bison-patches/2003-03/msg00057.html>.
18621
18622 2003-04-14  Bruno Haible  <bruno@clisp.org>
18623
18624         * m4/error.m4 (jm_PREREQ_ERROR): Use AC_FUNC_VPRINTF.
18625
18626 2003-04-11  Jim Meyering  <jim@meyering.net>
18627
18628         Merge changes from Coreutils.
18629
18630         2003-03-22  Jim Meyering  <jim@meyering.net>
18631
18632         * lib/strftime.c (widen): Cast alloca return value to proper type.
18633
18634         2003-01-19  Ulrich Drepper  <drepper@redhat.com>
18635
18636         From GNU libc.
18637         * lib/strftime.c (my_strftime): Handle very large width
18638         specifications for numeric values correctly.  Improve checks for
18639         overflow.
18640
18641         2003-01-19  Jim Meyering  <jim@meyering.net>
18642
18643         * lib/strftime.c (widen) [COMPILE_WIDE]: Merge nearly-identical
18644         definitions.
18645         (nl_get_alt_digit) [! defined my_strftime]: Define.
18646         (my_strftime) [_NL_CURRENT]: Merge nearly-identical uses of
18647         _nl_get_alt_digit and _nl_get_walt_digit.
18648
18649         * lib/strftime.c (my_strftime): Merge in locale-related changes from
18650         libc. These changes have no effect outside of _LIBC.
18651
18652 2003-04-10  Bruno Haible  <bruno@clisp.org>
18653
18654         * modules/findprog: New file.
18655         * MODULES.html.sh (func_all_modules): Add it.
18656
18657 2003-04-10  Bruno Haible  <bruno@clisp.org>
18658
18659         * m4/findprog.m4: New file.
18660         * m4/eaccess.m4: New file.
18661
18662 2003-04-10  Bruno Haible  <bruno@clisp.org>
18663
18664         * lib/findprog.h: New file, from GNU gettext.
18665         * lib/findprog.c: New file, from GNU gettext.
18666
18667 2003-04-05  Jim Meyering  <jim@meyering.net>
18668
18669         Merge changes from Coreutils.
18670
18671         * lib/exclude.h (PARAMS): Remove definition and uses.
18672         * lib/exclude.c: Remove uses of `PARAMS'.
18673
18674         * lib/dirname.c [TEST_DIRNAME]: Update build instructions for test.
18675         Add test-cases for DOS filenames. Declare program_name.
18676         (main): Set up program_name.  Patch by Rich Dawe.
18677
18678         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
18679         error from mntctl.
18680         Use mntctl's return value to drive the entry-processing loop, since
18681         we can't rely on the value of the vmt_length member in the last
18682         entry.  On some systems doing so could result in exhausting
18683         virtual memory.  Based in part on a patch from Mike Jetzer.
18684
18685 2003-04-04  Bruno Haible  <bruno@clisp.org>
18686
18687         * modules/linebreak: New file.
18688         * MODULES.html.sh (func_all_modules): Add it.
18689
18690 2003-04-04  Bruno Haible  <bruno@clisp.org>
18691
18692         * m4/linebreak.m4: New file.
18693
18694 2003-04-04  Bruno Haible  <bruno@clisp.org>
18695
18696         * lib/linebreak.h: New file, from GNU gettext.
18697         * lib/linebreak.c: New file, from GNU gettext with slight
18698         modifications.
18699         * lib/lbrkprop.h: New file, from GNU gettext.
18700
18701 2003-04-03  Bruno Haible  <bruno@clisp.org>
18702
18703         * modules/utf8-ucs4: New file.
18704         * modules/utf16-ucs4: New file.
18705         * modules/ucs4-utf8: New file.
18706         * modules/ucs4-utf16: New file.
18707         * MODULES.html.sh (func_all_modules): Add them.
18708
18709 2003-04-03  Bruno Haible  <bruno@clisp.org>
18710
18711         * m4/utf-ucs4.m4: New file.
18712         * m4/ucs4-utf.m4: New file.
18713
18714 2003-04-03  Bruno Haible  <bruno@clisp.org>
18715
18716         * lib/utf8-ucs4.h: New file, from GNU gettext.
18717         * lib/utf16-ucs4.h: New file, from GNU gettext.
18718         * lib/ucs4-utf8.h: New file, from GNU gettext.
18719         * lib/ucs4-utf16.h: New file, from GNU gettext.
18720
18721 2003-04-02  Bruno Haible  <bruno@clisp.org>
18722
18723         * modules/binary-io: New file.
18724         * MODULES.html.sh (func_all_modules): Add it.
18725
18726 2003-04-02  Bruno Haible  <bruno@clisp.org>
18727
18728         * lib/binary-io.h: New file, from GNU gettext.
18729
18730 2003-04-01  Bruno Haible  <bruno@clisp.org>
18731
18732         * modules/pathname: New file.
18733         * MODULES.html.sh (func_all_modules): Add it.
18734
18735 2003-04-01  Bruno Haible  <bruno@clisp.org>
18736
18737         * lib/pathname.h: New file, from GNU gettext.
18738         * lib/concatpath.c: New file, from GNU gettext.
18739
18740 2003-03-30  Bruno Haible  <bruno@clisp.org>
18741
18742         * m4/copy-file.m4 (gl_COPY_FILE): Add check for chown().
18743
18744 2003-03-30  Bruno Haible  <bruno@clisp.org>
18745
18746         * lib/copy-file.c (copy_file_preserving): Don't set owner if the
18747         function chown() doesn't exist.
18748
18749 2003-03-28  Bruno Haible  <bruno@clisp.org>
18750
18751         * modules/copy-file: New file.
18752         * MODULES.html.sh (func_all_modules): Add it.
18753
18754 2003-03-28  Bruno Haible  <bruno@clisp.org>
18755
18756         * m4/copy-file.m4: New file.
18757
18758 2003-03-28  Bruno Haible  <bruno@clisp.org>
18759
18760         * lib/copy-file.h: New file, from GNU gettext.
18761         * lib/copy-file.c: New file, from GNU gettext.
18762
18763 2003-03-18  Jim Meyering  <jim@meyering.net>
18764
18765         * lib/quote.c (quote_n): Fix typo in comment.
18766
18767 2003-03-18  Bruno Haible  <bruno@clisp.org>
18768
18769         * m4/onceonly.m4: Use m4_defn instead of defn, for better error
18770         checking.
18771         * m4/onceonly_2_57.m4: Likewise.
18772
18773 2003-03-17  Bruno Haible  <bruno@clisp.org>
18774
18775         * m4/onceonly.m4: Require autoconf 2.54 or newer.
18776         (m4_quote): Remove macro.
18777         * m4/onceonly_2_57.m4: Require autoconf 2.54 or newer.
18778
18779 2003-03-14  Jim Meyering  <jim@meyering.net>
18780
18781         Merge changes from Coreutils.
18782         * lib/obstack.h (obstack_object_size): Declare temporary, __o,
18783         to be const, in order to avoid warnings.
18784         (obstack_room): Likewise.
18785         (obstack_empty_p): Likewise.
18786
18787 2003-03-14  Bruno Haible  <bruno@clisp.org>
18788
18789         * m4/onceonly_2_57.m4 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE,
18790         AC_CHECK_DECLS_ONCE): Quote AC_FOREACH variable-expansions properly.
18791
18792 2003-03-13  Paul Eggert  <eggert@twinsun.com>
18793
18794         Merge changes from Bison.
18795         * lib/obstack.h: (__INT_TO_PTR) [__STDC__]: Cast result to
18796         (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
18797         when compiling Bison 1.875's `bitset bset = obstack_alloc
18798         (bobstack, bytes);'.  Problem reported by Nelson H. F. Beebe.
18799         * lib/hash.c: Include <stdbool.h> unconditionally.
18800
18801 2003-03-13  Paul Eggert  <eggert@twinsun.com>
18802
18803         * m4/onceonly.m4 (m4_quote): New macro.
18804         (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
18805         Quote AC_FOREACH variable-expansions properly.
18806
18807 2003-03-13  Paul Eggert  <eggert@twinsun.com>
18808
18809         * doc/COPYING.DOC, fdl.texi: Sync with latest FSF version.
18810
18811 2003-03-09  Paul Eggert  <eggert@twinsun.com>
18812
18813         * lib/argmatch.c (EXIT_FAILURE): Define if the system doesn't.
18814         Reported by Bruce Becker; see:
18815         http://mail.gnu.org/archive/html/bug-bison/2003-03/msg00017.html
18816
18817 2003-03-03  Paul Eggert  <eggert@twinsun.com>
18818             Bruno Haible  <bruno@clisp.org>
18819
18820         * lib/mbswidth.h: Include <wchar.h>. Needed for UnixWare 7.1.1.
18821         Reported by John Hughes, see
18822         http://mail.gnu.org/archive/html/bug-bison/2003-02/msg00030.html
18823
18824 2003-02-20  Bruno Haible  <bruno@clisp.org>
18825
18826         * MODULES.html.sh (func_all_modules): Add poll.
18827
18828 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
18829
18830         * modules/poll: New file.
18831
18832 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
18833
18834         * lib/poll_.h: New file.
18835         * lib/poll.c: New file.
18836
18837 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
18838
18839         * m4/poll.m4: New file.
18840
18841 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
18842
18843         * modules/mathl: New file.
18844
18845 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
18846
18847         * lib/mathl.h: New file.
18848         * lib/acosl.c: New file.
18849         * lib/asinl.c: New file.
18850         * lib/atanl.c: New file.
18851         * lib/ceill.c: New file.
18852         * lib/cosl.c: New file.
18853         * lib/expl.c: New file.
18854         * lib/floorl.c: New file.
18855         * lib/frexpl.c: New file.
18856         * lib/ldexpl.c: New file.
18857         * lib/logl.c: New file.
18858         * lib/sincosl.c: New file.
18859         * lib/sinl.c: New file.
18860         * lib/sqrtl.c: New file.
18861         * lib/tanl.c: New file.
18862         * lib/trigl.c: New file.
18863         * lib/trigl.h: New file.
18864
18865 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
18866
18867         * m4/mathl.m4: New file.
18868
18869 2003-02-18  Bruno Haible  <bruno@clisp.org>
18870
18871         * MODULES.html.sh (func_all_modules): Add mathl.
18872
18873 2003-02-17  Bruno Haible  <bruno@clisp.org>
18874
18875         * modules/mkdtemp: New module.
18876         * MODULES.html.sh (func_all_modules): Add it.
18877
18878 2003-02-17  Bruno Haible  <bruno@clisp.org>
18879
18880         * m4/mkdtemp.m4: New file, from GNU gettext with modifications.
18881
18882 2003-02-17  Bruno Haible  <bruno@clisp.org>
18883
18884         * lib/mkdtemp.h: New file, from GNU gettext.
18885         * lib/mkdtemp.c: New file, from GNU gettext.
18886
18887 2003-02-02  Jim Meyering  <jim@meyering.net>
18888
18889         * m4/regex.m4 (jm_INCLUDED_REGEX): Detect broken re_search in
18890         e.g. glibc-2.2.93.
18891
18892 2003-01-31  Bruno Haible  <bruno@clisp.org>
18893
18894         * m4/rename.m4 (vb_FUNC_RENAME): Add a redirection from 'rename' to
18895         'rpl_rename'.
18896         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Add a redirection from 'strnlen' to
18897         'rpl_strnlen'.
18898         * m4/strtod.m4 (gl_FUNC_STRTOD): Add a redirection from 'strtod' to
18899         'rpl_strtod'.
18900         * m4/utime.m4 (jm_FUNC_UTIME): Add a redirection from 'utime' to
18901         'rpl_utime'.
18902
18903 2003-01-31  Bruno Haible  <bruno@clisp.org>
18904
18905         * lib/rename.c: #undef rename before defining rpl_rename.
18906         * lib/strnlen.c: #undef strnlen, define rpl_strnlen instead of strnlen.
18907
18908 2003-01-30  Bruno Haible  <bruno@clisp.org>
18909
18910         * modules/vasnprintf, modules/vasprintf: New modules.
18911         * MODULES.html.sh (func_all_modules): Add them.
18912
18913 2003-01-30  Bruno Haible  <bruno@clisp.org>
18914
18915         * m4/signed.m4: New file, from GNU gettext.
18916         * m4/longdouble.m4: New file, from GNU gettext.
18917         * m4/wchar_t.m4: New file, from GNU gettext.
18918         * m4/wint_t.m4: New file, from GNU gettext.
18919         * m4/vasnprintf.m4: New file.
18920         * m4/vasprintf.m4: New file.
18921
18922 2003-01-30  Bruno Haible  <bruno@clisp.org>
18923
18924         * lib/printf-args.h: New file, from GNU gettext.
18925         * lib/printf-args.c: New file, from GNU gettext.
18926         * lib/printf-parse.h: New file, from GNU gettext.
18927         * lib/printf-parse.c: New file, from GNU gettext.
18928         * lib/vasnprintf.h: New file, from GNU gettext.
18929         * lib/vasnprintf.c: New file, from GNU gettext.
18930         * lib/asnprintf.c: New file, from GNU gettext.
18931         * lib/vasprintf.h: New file, from GNU gettext with modifications.
18932         * lib/vasprintf.c: New file, from GNU gettext.
18933         * lib/asprintf.c: New file, from GNU gettext.
18934
18935 2003-01-29  Bruno Haible  <bruno@clisp.org>
18936
18937         * modules/stpncpy: New module.
18938         * MODULES.html.sh (func_all_modules): Add it.
18939
18940 2003-01-29  Bruno Haible  <bruno@clisp.org>
18941
18942         * m4/stpncpy.m4: New file.
18943
18944 2003-01-29  Bruno Haible  <bruno@clisp.org>
18945
18946         * lib/stpncpy.h: New file, from GNU gettext with modifications.
18947         * lib/stpncpy.c: New file, from GNU gettext with modifications.
18948
18949 2003-01-28  Bruno Haible  <bruno@clisp.org>
18950
18951         * modules/c-ctype: New module.
18952         * MODULES.html.sh (func_all_modules): Add it.
18953
18954 2003-01-28  Bruno Haible  <bruno@clisp.org>
18955
18956         * lib/c-ctype.h: New file, from GNU gettext, with changes suggested by
18957         Paul Eggert.
18958         * lib/c-ctype.c: New file, from GNU gettext, with changes suggested by
18959         Paul Eggert.
18960
18961 2003-01-27  Bruno Haible  <bruno@clisp.org>
18962
18963         * modules/xsetenv: New module.
18964         * MODULES.html.sh (func_all_modules): Add it.
18965
18966 2003-01-27  Bruno Haible  <bruno@clisp.org>
18967
18968         * lib/xsetenv.h: New file, from GNU gettext.
18969         * lib/xsetenv.c: New file, from GNU gettext.
18970
18971 2003-01-23  Jim Meyering  <jim@meyering.net>
18972
18973         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Correct typo: s/-1/no/ that kept this
18974         from working on systems without dirfd (at least Irix and OSF1/Tru64).
18975
18976 2003-01-23  Bruno Haible  <bruno@clisp.org>
18977
18978         * modules/minmax: New module.
18979         * MODULES.html.sh (func_all_modules): Add it.
18980
18981 2003-01-23  Bruno Haible  <bruno@clisp.org>
18982
18983         * lib/minmax.h: New file, from GNU gettext, with comments from Paul
18984         Eggert.
18985
18986 2003-01-22  Bruno Haible  <bruno@clisp.org>
18987
18988         * modules/exit: New module.
18989         * MODULES.html.sh (func_all_modules): Add it.
18990
18991 2003-01-22  Bruno Haible  <bruno@clisp.org>
18992
18993         * lib/exit.h: New file, from GNU gettext.
18994
18995 2003-01-19  Bruno Haible  <bruno@clisp.org>
18996
18997         * gnulib-tool: Recognize option --extract-maintainer.
18998         (func_get_maintainer): New function.
18999         * modules/*: Add Maintainer entry.
19000
19001 2003-01-16  Jim Meyering  <jim@meyering.net>
19002
19003         * m4/regex.m4: The `regex' struct is both input and output.
19004         Initialize it before each use.  Patch by Tim Waugh.
19005
19006 2003-01-16  Bruno Haible  <bruno@clisp.org>
19007
19008         * MODULES.html.sh: Add a table of contents. Add the module name as
19009         leftmost column. Add hyperlinks.
19010
19011 2003-01-15  Bruno Haible  <bruno@clisp.org>
19012
19013         * m4/md5.m4 (gl_MD5): Require AC_C_INLINE.
19014
19015 2003-01-15  Bruno Haible  <bruno@clisp.org>
19016
19017         * m4/longlong.m4 (jm_AC_TYPE_LONG_LONG): Also test the LL suffix.
19018         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Also test the ULL
19019         suffix.
19020
19021 2003-01-15  Bruno Haible  <bruno@clisp.org>
19022
19023         * m4/alloca.m4 (gl_FUNC_ALLOCA): Invoke AC_EGREP_CPP prerequisites.
19024
19025 2003-01-15  Bruno Haible  <bruno@clisp.org>
19026
19027         * lib/stpcpy.h (stpcpy): Use ANSI C function declarations.
19028         * lib/strcase.h (strcasecmp, strncasecmp): Likewise.
19029
19030 2003-01-14  Jim Meyering  <jim@meyering.net>
19031
19032         * lib/same.c (same_name): Tweak a comment.
19033
19034 2003-01-14  Bruno Haible  <bruno@clisp.org>
19035
19036         * lib/same.c (same_name): Reorder tests so as to avoid calling stat()
19037         when a string comparison is sufficient.
19038
19039 2003-01-14  Bruno Haible  <bruno@clisp.org>
19040
19041         * lib/readtokens.c (readtoken): Cast character to 'unsigned char', not
19042         'unsigned int'.
19043
19044 2003-01-14  Bruno Haible  <bruno@clisp.org>
19045
19046         * lib/hash-pjw.c: Add comment about low quality of this function.
19047
19048 2003-01-13  Bruno Haible  <bruno@clisp.org>
19049
19050         * modules/stpcpy: Distribute lib/stpcpy.h.
19051         * modules/setenv: Depend on alloca. Distribute lib/setenv.h.
19052
19053 2003-01-13  Bruno Haible  <bruno@clisp.org>
19054
19055         * modules/*: Add a description.
19056         * modules/strpbrk: Fix Makefile.am snippet.
19057         * modules/strtoimax: Fix dependencies.
19058         * modules/strtoumax: Likewise.
19059
19060 2003-01-13  Bruno Haible  <bruno@clisp.org>
19061
19062         * gnulib-tool (func_create_testdir): Substitute lib_OBJECTS.
19063         * modules/alloca (Makefile.am): All object files depend on alloca.h.
19064         * modules/stdbool (Makefile.am): All object files depend on stdbool.h.
19065
19066 2003-01-13  Bruno Haible  <bruno@clisp.org>
19067
19068         * gnulib-tool (func_create_testdir): Store config/* files in the main
19069         directory.
19070         * config.rpath: Move to ...
19071         * config/config.rpath: ... here.
19072         * modules/gettext: Contains config/config.rpath, not config.rpath.
19073         * modules/iconv: Likewise.
19074
19075 2003-01-12  Paul Eggert  <eggert@twinsun.com>
19076
19077         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
19078         to avoid collisions with libcurses and libreadline.
19079
19080         * m4/getstr.m4: Remove.
19081         * m4/getline.m4 (gl_PREREQ_GETLINE): Require AC_HEADER_STDC.
19082
19083 2003-01-12  Paul Eggert  <eggert@twinsun.com>
19084
19085         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
19086         to avoid collisions with libcurses and libreadline.
19087
19088         * lib/Makefile.am (libfetish_a_SOURCES): Remove getstr.c, getstr.h.
19089         * lib/getstr.h, getstr.c: Remove.
19090         * lib/getline.c: Include "getline.h", to check interface.
19091         Move body of old getstr.c here: this defines MIN_CHUNK and
19092         declares getdelim2, which is renamed from getstr.
19093         (getline, getdelim): Adjust to renaming of getstr -> getdelim2.
19094
19095         * lib/linebuffer.c (readlinebuffer): Renamed from readline.
19096         All uses changed.
19097         * lib/linebuffer.h: Likewise.
19098         (readline): Remove backward-compatibility macro.
19099
19100 2003-01-12  Paul Eggert  <eggert@twinsun.com>
19101
19102         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
19103         to avoid collisions with libcurses and libreadline.
19104         * getstr: Remove.
19105         * MODULES.html.sh: Remove getstr.
19106         * modules/getline: Depend on unlocked-io, not getstr.
19107
19108 2003-01-12  Jim Meyering  <jim@meyering.net>
19109
19110         * lib/makepath.c: Don't test HAVE_ERRNO_H.  It's not necessary.
19111
19112 2003-01-10  Bruno Haible  <bruno@clisp.org>
19113
19114         * modules/alloca: Change Makefile.am requirements. Simplify Include
19115         requirements. Add lib/alloca_.h to file list.
19116
19117 2003-01-10  Bruno Haible  <bruno@clisp.org>
19118
19119         * m4/alloca.m4 (gl_FUNC_ALLOCA): Also define ALLOCA_H.
19120
19121 2003-01-10  Bruno Haible  <bruno@clisp.org>
19122
19123         * lib/alloca_.h: New file.
19124         * lib/getdate.y: Unconditionally include alloca.h.
19125         * lib/makepath.c: Likewise.
19126         * lib/setenv.c: Likewise.
19127         * lib/userspec.c: Likewise.
19128
19129 2003-01-09  Karl Berry  <karl@gnu.org>
19130
19131         * MODULES.html.sh: include `dirname $0` in PATH, to find
19132         gnulib-tool.
19133
19134 2003-01-09  Bruno Haible  <bruno@clisp.org>
19135
19136         * modules/stdbool: Change configure.ac, Makefile.am requirements.
19137         Simplify Include requirements. Add lib/stdbool.h.in to file list.
19138
19139 2003-01-09  Bruno Haible  <bruno@clisp.org>
19140
19141         * m4/stdbool.m4 (AM_STDBOOL_H): New macro.
19142
19143 2003-01-09  Bruno Haible  <bruno@clisp.org>
19144
19145         * lib/stdbool.h.in: New file.
19146
19147 2003-01-09  Bruno Haible  <bruno@clisp.org>
19148
19149         * gnulib-tool (func_all_modules): Ignore files ending in ~.
19150         * MODULES.html.sh: Likewise.
19151
19152 2003-01-08  Jim Meyering  <jim@meyering.net>
19153
19154         * lib/full-write.c: Undefine and define-away `const' after inclusion
19155         of errno.h, not before.  Suggestion from Bruno Haible.
19156
19157 2003-01-08  Bruno Haible  <bruno@clisp.org>
19158
19159         * modules/full-read: Depend on full-write.
19160
19161 2003-01-08  Bruno Haible  <bruno@clisp.org>
19162
19163         * lib/safe-read.c: Include specification header first, to ensure its
19164         selfcontainedness.
19165         * lib/full-write.c: Likewise.
19166
19167 2003-01-07  Jim Meyering  <jim@meyering.net>
19168
19169         * lib/full-write.c: Rework so that it may serve to define full_read,
19170         too.
19171         * lib/full-read.c: Simply #define FULL_READ and include full-write.c.
19172
19173 2003-01-07  Bruno Haible  <bruno@clisp.org>
19174
19175         * lib/strtoimax.c: Include <stdint.h> as an alternative to
19176         <inttypes.h>.
19177         * lib/xstrtol.h: Likewise.
19178         * lib/xstrtoimax.c: Likewise.
19179         * lib/xstrtoumax.c: Likewise.
19180         * lib/human.h: Likewise.
19181
19182         * lib/tempname.c: Include <inttypes.h> too. Avoids a compilation error
19183         on systems that have <inttypes.h> but not <stdint.h>.
19184
19185 2003-01-07  Bruno Haible  <bruno@clisp.org>
19186
19187         * MODULES.html.sh: Add copyright notice.
19188         (missed_files): Omit CVS directory entries.
19189         (func_module): Make it work with sed-3.02.
19190         * MODULES.txt: Remove file.
19191
19192 2003-01-06  Jim Meyering  <jim@meyering.net>
19193
19194         * lib/version-etc.c: Update year in translatable copyright string.
19195
19196 2003-01-03  Karl Berry  <karl@gnu.org>
19197
19198         * config/config.{guess,sub}: update from prep.
19199
19200 2003-01-02  Karl Berry  <karl@gnu.org>
19201
19202         * doc/COPYING.DOC: belatedly updated to 1.2.
19203
19204 2003-01-01  Karl Berry  <karl@gnu.org>
19205
19206         * gnulib-tool (func_verify_module): report module name $module in
19207         error message, not $1.
19208         * gnulib-tool (create-testdir): don't complain if destdir couldn't
19209         be created, only if it doesn't exist.
19210         * gnulib-tool (last_checkin_date): don't expand the $Date here.
19211
19212 2002-12-31  Paul Eggert  <eggert@twinsun.com>
19213
19214         * m4/memcoll.m4 (gl_MEMCOLL): Require AC_FUNC_MEMCMP.
19215
19216 2002-12-31  Paul Eggert  <eggert@twinsun.com>
19217
19218         * lib/memcoll.c (memcoll): Fall back on a simple algorithm using
19219         memcmp if strcoll doesn't work.
19220
19221 2002-12-31  Bruno Haible  <bruno@clisp.org>
19222
19223         * lib/utime.c (utime_null): No need to call ftruncate if the file was
19224         nonempty.
19225
19226 2002-12-31  Bruno Haible  <bruno@clisp.org>
19227
19228         * lib/memcoll.c (STRCOLL): New macro.
19229         (memcoll): Use it.
19230
19231 2002-12-31  Bruno Haible  <bruno@clisp.org>
19232
19233         * lib/localcharset.h: New file.
19234         * lib/localcharset.c: Include it.
19235         * lib/unicodeio.c: Likewise.
19236
19237 2002-12-31  Bruno Haible  <bruno@clisp.org>
19238
19239         * lib/getstr.h (getstr): Define, to avoid clash with libcurses.
19240         * lib/linebuffer.h (readline): Define, to avoid clash with libreadline.
19241
19242 2002-12-31  Bruno Haible  <bruno@clisp.org>
19243
19244         * lib/getline.h: Include <stddef.h>, for size_t.
19245
19246         * lib/unicodeio.h: Include <stddef.h>, for size_t.
19247         * lib/unicodeio.c: Don't include <stddef.h>.
19248
19249 2002-12-31  Bruno Haible  <bruno@clisp.org>
19250
19251         * lib/getdate.y (get_date): Test HAVE_STRUCT_TM_TM_ZONE, not
19252         HAVE_TM_ZONE.
19253
19254 2002-12-24  Karl Berry  <karl@gnu.org>
19255
19256         * config/config.guess: update from prep.
19257
19258 2002-12-24  Bruno Haible  <bruno@clisp.org>
19259
19260         General infrasructure.
19261         * m4/README: Rewritten.
19262         * m4/onceonly.m4: New file.
19263         * m4/onceonly_2_57.m4: New file.
19264
19265         Module atexit.
19266         * m4/atexit.m4: New file.
19267
19268         Module strtod.
19269         * m4/strtod.m4: New file.
19270
19271         Module strtol.
19272         * m4/strtol.m4: New file.
19273
19274         Module strtoul.
19275         * m4/strtoul.m4: New file.
19276
19277         Module memchr.
19278         * m4/memchr.m4: New file.
19279
19280         Module memcmp.
19281         * m4/memcmp.m4 (gl_PREREQ_MEMCMP): New macro.
19282         (jm_FUNC_MEMCMP): Invoke it.
19283
19284         Module memcpy.
19285         * m4/memcpy.m4: New file.
19286
19287         Module memmove.
19288         * m4/memmove.m4: New file.
19289
19290         Module memset.
19291         * m4/memset.m4: New file.
19292
19293         Module strcspn.
19294         * m4/strcspn.m4: New file.
19295
19296         Module strpbrk.
19297         * m4/strpbrk.m4: New file.
19298
19299         Module strstr.
19300         * m4/strstr.m4: New file.
19301
19302         Module strerror.
19303         * m4/strerror.m4: New file.
19304
19305         Module mktime.
19306         * m4/mktime.m4: Renamed from jm-mktime.m4.
19307         (gl_PREREQ_MKTIME): New macro.
19308         (gl_FUNC_MKTIME): Renamed from jm_FUNC_MKTIME. Invoke gl_PREREQ_MKTIME.
19309
19310         Module malloc.
19311         * m4/malloc.m4 (gl_PREREQ_MALLOC): New macro.
19312         (jm_FUNC_MALLOC): Use AC_FUNC_MALLOC. Invoke gl_PREREQ_MALLOC.
19313         Don't define HAVE_DONE_WORKING_MALLOC_CHECK, since nothing uses it.
19314
19315         Module realloc.
19316         * m4/realloc.m4 (gl_PREREQ_REALLOC): New macro.
19317         (jm_FUNC_REALLOC): Use AC_FUNC_REALLOC. Invoke gl_PREREQ_REALLOC.
19318         Don't define HAVE_DONE_WORKING_REALLOC_CHECK, since nothing uses it.
19319
19320         Module strftime.
19321         * m4/tm_gmtoff.m4: New file, extracted from strftime.m4.
19322         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Use AC_FUNC_STRFTIME.
19323         Don't test for bcopy (we are not emacs). Invoke AC_TYPE_MBSTATE_T and
19324         gl_TM_GMTOFF.
19325         (_jm_STRFTIME_PREREQS, jm_FUNC_GNU_STRFTIME): Use onceonly macros.
19326
19327         Module xalloc.
19328         * m4/xalloc.m4: New file.
19329
19330         Module alloca.
19331         * m4/alloca.m4: New file.
19332
19333         Module putenv.
19334         * m4/putenv.m4 (gl_PREREQ_PUTENV): New macro.
19335         (jm_FUNC_PUTENV): Invoke it.
19336
19337         Module setenv.
19338         * m4/setenv.m4 (gt_FUNC_SETENV): New macro.
19339         (gt_CHECK_VAR_DECL): Fix quoting error that led to infinite loop in m4
19340         when invoked twice.
19341         (gt_PREREQ_SETENV, gt_PREREQ_UNSETENV): New macros, replacing old
19342         gt_FUNC_SETENV.
19343
19344         Module memrchr.
19345         * m4/memrchr.m4: New file.
19346
19347         Module stpcpy.
19348         * m4/stpcpy.m4: New file.
19349
19350         Module strcase.
19351         * m4/strcase.m4: New file.
19352
19353         Module strdup.
19354         * m4/strdup.m4: New file.
19355
19356         Module strnlen.
19357         * m4/strnlen.m4: New file.
19358
19359         Module strndup.
19360         * m4/strndup.m4: New file.
19361
19362         Module xstrtod.
19363         * m4/xstrtod.m4: New file.
19364
19365         Module xstrtol.
19366         * m4/xstrtol.m4: New file.
19367
19368         Module getdate.
19369         * m4/getdate.m4: New file.
19370
19371         Module unlocked-io.
19372         * m4/unlocked-io.m4: Renamed from jm-glibc-io.m4.
19373         (jm_FUNC_GLIBC_UNLOCKED_IO): Invoke AC_GNU_SOURCE. Use onceonly macros.
19374         * m4/jm-glibc-io.m4n: Remove file.
19375
19376         Module long-options.
19377         * m4/long-options.m4: New file.
19378
19379         Module md5.
19380         * m4/md5.m4: New file.
19381
19382         Module sha.
19383         * m4/sha.m4: New file.
19384
19385         Module getstr.
19386         * m4/getstr.m4: New file.
19387
19388         Module getline.
19389         * m4/getline.m4 (gl_PREREQ_GETLINE): New macro.
19390         (AM_FUNC_GETLINE): Invoke AC_GNU_SOURCE. Use <stdlib.h>, not
19391         <sys/types.h>, for size_t. Use the function name gnu_getline, not
19392         simply getline. Infoke gl_PREREQ_GETLINE.
19393
19394         Module obstack.
19395         * m4/obstack.m4: New file.
19396
19397         Module hash.
19398         * m4/hash.m4: New file.
19399
19400         Module readtokens.
19401         * m4/readtokens.m4: New file.
19402
19403         Module strverscmp.
19404         * m4/strverscmp.m4: New file.
19405
19406         Module stdbool.
19407         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Add test for _Bool. Needed for
19408         OSF/1.
19409
19410         Module strtoll.
19411         * m4/strtoll.m4: New file.
19412
19413         Module strtoull.
19414         * m4/strtoull.m4: New file.
19415
19416         Module strtoimax.
19417         * m4/strtoimax.m4: New file.
19418
19419         Module strtoumax.
19420         * m4/strtoumax.m4: New file.
19421
19422         Module xstrtoimax.
19423         * m4/xstrtoimax.m4 (jm_XSTRTOIMAX): Renamed from
19424         jm_AC_PREREQ_XSTRTOIMAX.
19425         Moved the strtol prerequisites to strtol.m4.
19426         Moved the strtoll prerequisites to strtoll.m4.
19427         Moved the strtoimax prerequisites to strtoimax.m4.
19428
19429         Module xstrtoumax.
19430         * m4/xstrtoumax.m4 (jm_XSTRTOUMAX): Renamed from
19431         jm_AC_PREREQ_XSTRTOUMAX.
19432         Moved the strtoul prerequisites to strtoul.m4.
19433         Moved the strtoull prerequisites to strtoull.m4.
19434         Moved the strtoumax prerequisites to strtoumax.m4.
19435
19436         Module chown.
19437         * m4/chown.m4 (gl_PREREQ_CHOWN): New macro.
19438         (jm_FUNC_CHOWN): Use AC_FUNC_CHOWN. Invoke gl_PREREQ_CHOWN.
19439
19440         Module dup2.
19441         * m4/dup2.m4: New file.
19442
19443         Module ftruncate.
19444         * m4/ftruncate.m4 (gl_PREREQ_FTRUNCATE): New macro.
19445         (jm_FUNC_FTRUNCATE): Use AC_REPLACE_FUNCS. Invoke gl_PREREQ_FTRUNCATE.
19446
19447         Module getgroups.
19448         * m4/getgroups.m4 (gl_PREREQ_GETGROUPS): New macro.
19449         (jm_FUNC_GETGROUPS): Use AC_FUNC_GETGROUPS. Invoke gl_PREREQ_GETGROUPS.
19450
19451         Module gettimeofday.
19452         * m4/gettimeofday.m4 (gl_PREREQ_GETTIMEOFDAY): New macro.
19453         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Use onceonly macros. Invoke
19454         gl_PREREQ_GETTIMEOFDAY.
19455
19456         Module mkdir.
19457         * m4/mkdir-slash.m4 (gl_PREREQ_MKDIR): New macro.
19458         (UTILS_FUNC_MKDIR_TRAILING_SLASH): Invoke gl_PREREQ_MKDIR.
19459
19460         Module mkstemp.
19461         * m4/mkstemp.m4 (gl_PREREQ_MKSTEMP): New macro.
19462         (jm_PREREQ_TEMPNAME): New macro, from prereq.m4. Also invoke
19463         jm_AC_TYPE_UINTMAX_T.
19464         (UTILS_FUNC_MKSTEMP): Invoke gl_PREREQ_MKSTEMP and jm_PREREQ_TEMPNAME.
19465
19466         Module stat.
19467         * m4/stat.m4 (gl_PREREQ_STAT): New macro.
19468         (jm_FUNC_STAT): Use AC_FUNC_STAT. Invoke gl_PREREQ_STAT.
19469
19470         Module lstat.
19471         * m4/lstat.m4 (gl_PREREQ_LSTAT): New macro.
19472         (jm_FUNC_LSTAT): Use AC_FUNC_LSTAT. Invoke gl_PREREQ_LSTAT.
19473
19474         Module timespec.
19475         * m4/timespec.m4 (gl_TIMESPEC): New macro.
19476         (jm_CHECK_TYPE_STRUCT_TIMESPEC): Add check for <sys/time.h>.
19477         * m4/st_mtim.m4: Indentation.
19478
19479         Module nanosleep.
19480         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): New macro.
19481         (jm_FUNC_NANOSLEEP): Add check for <sys/time.h>. Invoke
19482         gl_PREREQ_NANOSLEEP.
19483
19484         Module regex.
19485         * m4/regex.m4 (jm_PREREQ_REGEX): New macro.
19486         (jm_INCLUDED_REGEX): Invoke jm_PREREQ_REGEX.
19487         (gl_REGEX): New macro.
19488
19489         Module rename.
19490         * m4/rename.m4 (gl_PREREQ_RENAME): New macro.
19491         (vb_FUNC_RENAME): Invoke gl_PREREQ_RENAME.
19492
19493         Module rmdir.
19494         * m4/rmdir.m4: New file.
19495
19496         Module utime.
19497         * m4/utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Use onceonly macros.
19498         * m4/utime.m4 (gl_PREREQ_UTIME): New macro.
19499         (jm_FUNC_UTIME): Invoke gl_PREREQ_UTIME.
19500
19501         Module dirname.
19502         * m4/dirname.m4: New file.
19503
19504         Module getopt.
19505         * m4/getopt.m4: New file.
19506
19507         Module unistd-safer.
19508         * m4/unistd-safer.m4: New file.
19509
19510         Module fnmatch.
19511         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Include <stdlib.h>, for exit()
19512         declaration.
19513         (gl_PREREQ_FNMATCH_EXTRA): New macro.
19514         (gl_FUNC_FNMATCH_POSIX): New macro.
19515         (gl_FUNC_FNMATCH_GNU): Renamed from AC_FUNC_FNMATCH_GNU. Invoke
19516         gl_PREREQ_FNMATCH_EXTRA. Use the function name gnu_fnmatch, not
19517         simply fnmatch.
19518
19519         Module exclude.
19520         * m4/exclude.m4: New file.
19521
19522         Module human.
19523         * m4/human.m4: New file.
19524
19525         Module acl.
19526         * m4/acl.m4: Nop.
19527
19528         Module backupfile.
19529         * m4/backupfile.m4: New file.
19530         * m4/d-ino.m4: Indentation.
19531
19532         Module fsusage.
19533         * m4/fsusage.m4 (gl_FSUSAGE): New macro.
19534         (jm_STATFS_TRUNCATES): New macro, from coreutils-4.5.4/configure.ac.
19535         (gl_PREREQ_FSUSAGE_EXTRA): New macro.
19536
19537         Module dirfd.
19538         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Invoke some AC_EGREP_CPP
19539         requirements.
19540
19541         Module euidaccess.
19542         * m4/euidaccess.m4: New file.
19543
19544         Module file-type.
19545         * m4/file-type.m4: New file.
19546
19547         Module fileblocks.
19548         * m4/fileblocks.m4: New file.
19549
19550         Module filemode.
19551         * m4/filemode.m4: New file.
19552
19553         Module isdir.
19554         * m4/isdir.m4: New file.
19555
19556         Module lchown.
19557         * m4/lchown.m4 (gl_PREREQ_LCHOWN): New macro.
19558         (jm_FUNC_LCHOWN): Invoke gl_PREREQ_LCHOWN.
19559
19560         Module makepath.
19561         * m4/makepath.m4: New file.
19562
19563         Module modechange.
19564         * m4/modechange.m4: New file.
19565
19566         Module mountlist.
19567         * m4/mountlist.m4: New file.
19568         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Use onceonly macros.
19569         Indentation.
19570
19571         Module path-concat.
19572         * m4/path-concat.m4: New file.
19573
19574         Module pathmax.
19575         * m4/pathmax.m4: New file.
19576
19577         Module same.
19578         * m4/same.m4: New file.
19579
19580         Module save-cwd.
19581         * m4/save-cwd.m4: New file.
19582
19583         Module savedir.
19584         * m4/savedir.m4: New file.
19585
19586         Module xgetcwd.
19587         * m4/xgetcwd.m4: New file.
19588         * m4/getcwd.m4 (AC_FUNC_GETCWD_NULL): Use onceonly macros.
19589
19590         Module xreadlink.
19591         * m4/xreadlink.m4: New file.
19592
19593         Module safe-read.
19594         * m4/safe-read.m4: New file.
19595
19596         Module safe-write.
19597         * m4/safe-write.m4: New file.
19598
19599         Module closeout.
19600         * m4/closeout.m4: New file.
19601
19602         Module stdio-safer.
19603         * m4/stdio-safer.m4: New file.
19604
19605         Module getpass.
19606         * m4/getpass.m4: New file.
19607
19608         Module getugroups.
19609         * m4/getugroups.m4: New file.
19610
19611         Module group-member.
19612         * m4/group-member.m4 (gl_PREREQ_GROUP_MEMBER): New macro.
19613         (jm_FUNC_GROUP_MEMBER): Invoke AC_GNU_SOURCE, gl_PREREQ_GROUP_MEMBER.
19614
19615         Module idcache.
19616         * m4/idcache.m4: New file.
19617
19618         Module userspec.
19619         * m4/userspec.m4: New file.
19620
19621         Module gettime.
19622         * m4/clock_time.m4: New file.
19623         * m4/gettime.m4: New file.
19624
19625         Module settime.
19626         * m4/settime.m4: New file.
19627
19628         Module posixtm.
19629         * m4/posixtm.m4: New file.
19630
19631         Module gethostname.
19632         * m4/gethostname.m4: New file.
19633
19634         Module canon-host.
19635         * m4/canon-host.m4: New file.
19636
19637         Module gettext.
19638         * m4/codeset.m4: New file, from gettext-0.11.5.
19639         * m4/gettext.m4: New file, from gettext-0.11.5.
19640         * m4/glibc21.m4: New file, from gettext-0.11.5.
19641         * m4/iconv.m4: New file, from gettext-0.11.5.
19642         * m4/intdiv0.m4: New file, from gettext-0.11.5.
19643         * m4/inttypes-pri.m4: New file, from gettext-0.11.5.
19644         * m4/inttypes.m4: New file, from gettext-0.11.5.
19645         * m4/inttypes_h.m4: New file, from gettext-0.11.5 with modifications.
19646         * m4/isc-posix.m4: New file, from gettext-0.11.5.
19647         * m4/lcmessage.m4: New file, from gettext-0.11.5.
19648         * m4/lib-ld.m4: New file, from gettext-0.11.5.
19649         * m4/lib-link.m4: New file, from gettext-0.11.5.
19650         * m4/lib-prefix.m4: New file, from gettext-0.11.5.
19651         * m4/progtest.m4: New file, from gettext-0.11.5.
19652         * m4/stdint_h.m4: New file, from gettext-0.11.5 with modifications.
19653         * m4/uintmax_t.m4: New file, from gettext-0.11.5 with modifications.
19654         * m4/ulonglong.m4: New file, from gettext-0.11.5 with modifications.
19655
19656         Module localcharset.
19657         * m4/localcharset.m4: New file.
19658
19659         Module hard-locale.
19660         * m4/hard-locale.m4: New file.
19661
19662         Module mbswidth.
19663         * m4/mbswidth.m4 (gl_MBSWIDTH): Renamed from jm_PREREQ_MBSWIDTH. Use
19664         onceonly macros.
19665         * m4/mbrtowc.m4: Add comment.
19666
19667         Module memcasecmp.
19668         * m4/memcasecmp.m4: New file.
19669
19670         Module memcoll.
19671         * m4/memcoll.m4: New file.
19672
19673         Module unicodeio.
19674         * m4/unicodeio.m4: New file.
19675
19676         Module rpmatch.
19677         * m4/rpmatch.m4: New file.
19678
19679         Module yesno.
19680         * m4/yesno.m4: New file.
19681
19682         Module exitfail.
19683         * m4/exitfail.m4: New file.
19684
19685         Module c-stack.
19686         * m4/c-stack.m4 (gl_C_STACK): New macro.
19687         (jm_PREREQ_C_STACK): Check for <sys/time.h>. Use onceonly macros.
19688
19689         Module error.
19690         * m4/error.m4 (gl_ERROR): New macro.
19691         (jm_PREREQ_ERROR): Use onceonly macros.
19692
19693         Module fatal.
19694         * m4/fatal.m4: New file.
19695
19696         Module getloadavg.
19697         * m4/getloadavg.m4 (AC_FUNC_GETLOADAVG): Use onceonly macros.
19698         (gl_FUNC_GETLOADAVG, gl_PREREQ_GETLOADAVG): New macros.
19699
19700         Module getpagesize.
19701         * m4/getpagesize.m4: New file.
19702
19703         Module getusershell.
19704         * m4/getusershell.m4: New file.
19705
19706         Module physmem.
19707         * m4/physmem.m4: New file.
19708
19709         Module posixver.
19710         * m4/posixver.m4: New file.
19711
19712         Module quotearg.
19713         * m4/quotearg.m4: New file.
19714
19715         Module quote.
19716         * m4/quote.m4: New file.
19717
19718         Module readutmp.
19719         * m4/readutmp.m4: New file, based on jm_PREREQ_READUTMP from prereq.m4.
19720
19721         Module sig2str.
19722         * m4/sig2str.m4: New file.
19723
19724         Other.
19725         * m4/longlong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Remove, moved to
19726         ulonglong.m4.
19727         * m4/intmax_t.m4: New file.
19728         * m4/d-type.m4: Indentation.
19729         * m4/jm-macros.m4: Update.
19730         * m4/prereq.m4 (jm_PREREQ): Update.
19731         (jm_PREREQ_ADDEXT): Remove, obsoleted by backupfile.m4.
19732         (jm_PREREQ_CANON_HOST): Remove, obsoleted by canon-host.m4.
19733         (jm_PREREQ_DIRNAME): Remove, obsoleted by dirname.m4.
19734         (jm_PREREQ_EXCLUDE): Remove, obsoleted by exclude.m4.
19735         (jm_PREREQ_GETPAGESIZE): Remove, obsoleted by getpagesize.m4.
19736         (jm_PREREQ_HARD_LOCALE): Remove, obsoleted by hard-locale.m4.
19737         (jm_PREREQ_HASH): Remove, obsoleted by hash.m4.
19738         (jm_PREREQ_HUMAN): Remove, obsoleted by human.m4.
19739         (jm_PREREQ_MEMCHR): Remove, obsoleted by memchr.m4.
19740         (jm_PREREQ_PHYSMEM): Remove, obsoleted by physmem.m4.
19741         (jm_PREREQ_POSIXVER): Remove, obsoleted by posixver.m4.
19742         (jm_PREREQ_QUOTEARG): Remove, obsoleted by quotearg.m4.
19743         (jm_PREREQ_READUTMP): Remove, obsoleted by readutmp.m4.
19744         (jm_PREREQ_REGEX): Remove, obsoleted by regex.m4.
19745         (jm_PREREQ_STRNLEN): Remove, obsoleted by strnlen.m4.
19746         (jm_PREREQ_TEMPNAME): Remove, obsoleted by mkstemp.m4.
19747         (jm_PREREQ_XGETCWD): Remove, obsoleted by xgetcwd.m4.
19748         (jm_PREREQ_XREADLINK): Remove, obsoleted by xreadlink.m4.
19749         * m4/readdir.m4 (jm_FUNC_READDIR): Use onceonly macros.
19750
19751 2002-12-24  Bruno Haible  <bruno@clisp.org>
19752
19753         * MODULES.txt: Update according to m4/ changes.
19754
19755         Module gettext.
19756         * config.rpath: New file, from gettext-0.11.5.
19757
19758         * modules/*: New module descriptions.
19759         * gnulib-tool: New file.
19760         * MODULES.html.sh: New file.
19761
19762 2002-12-21  Karl Berry  <karl@gnu.org>
19763
19764         * doc/fdl.texi: update to version 1.2.
19765
19766 2002-12-19  Karl Berry  <karl@gnu.org>
19767
19768         * config/config.guess: update from prep.
19769
19770 2002-12-18  Bruno Haible  <bruno@clisp.org>
19771
19772         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't test for localtime_r.
19773         * m4/jm-mktime.m4 (jm_FUNC_MKTIME): Likewise.
19774
19775 2002-12-17  Bruno Haible  <bruno@clisp.org>
19776
19777         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Remove checks for limits.h,
19778         stdlib.h, string.h.
19779
19780 2002-12-17  Bruno Haible  <bruno@clisp.org>
19781
19782         * lib/canon-host.c (strdup): Remove unused declaration.
19783
19784         * lib/fsusage.c: Include full_read.h.
19785         (get_fs_usage): Use full_read instead of safe_read.
19786
19787         * lib/utime.c (utime_null): Use SAFE_READ_ERROR.
19788
19789 2002-12-12  Karl Berry  <karl@gnu.org>
19790
19791         * config/config.guess: update from prep.
19792
19793 2002-12-11  Bruno Haible  <bruno@clisp.org>
19794
19795         * m4/setenv.m4: New file, from gettext-0.11.5.
19796
19797 2002-12-11  Bruno Haible  <bruno@clisp.org>
19798
19799         * lib/setenv.h: Rewritten to cope with systems that have setenv() but
19800         not unsetenv().
19801         * lib/setenv.c, unsetenv.c: Taken from glibc-2.2.4 with the following
19802         modifications:
19803
19804         2002-12-11  Bruno Haible  <bruno@clisp.org>
19805
19806                 * setenv.c (alloca): Fall back to malloc.
19807                 (freea): New macro.
19808                 (setenv): Use freea() to free memory allocated with alloca().
19809
19810         2002-11-13  Bruno Haible  <bruno@clisp.org>
19811
19812                 * setenv.c (compar_fn_t, __add_to_environ, setenv): Use ANSI C
19813                 function declarations.
19814                 * unsetenv.c (unsetenv): Likewise.
19815
19816         2002-03-04  Bruno Haible  <bruno@clisp.org>
19817
19818                 Portability to AIX 4.3.3.
19819                 * unsetenv.c: New file, extracted from setenv.c.
19820                 * setenv.c: Move the unsetenv() function to unsetenv.c.
19821
19822         2001-12-20  Bruno Haible  <bruno@clisp.org>
19823
19824                 * setenv.c (__add_to_environ): Don't call realloc(NULL,...),
19825                 use malloc instead. For SunOS 4.
19826
19827         2001-12-11  Bruno Haible  <bruno@clisp.org>
19828
19829                 * setenv.c: Declare alloca.
19830                 (compar_fn_t): New typedef.
19831                 (KNOWN_VALUE, STORE_VALUE): Use it.
19832
19833         * lib/Makefile.am (libfetish_a_SOURCES): Add setenv.c, unsetenv.c,
19834         setenv.h.
19835
19836 2002-12-10  Paul Eggert  <eggert@twinsun.com>
19837
19838         Port exclude.c and exclude.h to more non-GNU systems, e.g. Solaris 7.
19839         * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE, EXCLUDE_WILDCARDS):
19840         Choose values that are less likely to collide with system fnmatch
19841         options.
19842         * lib/exclude.c (FNM_CASEFOLD, FNM_LEADING_DIR): Define to 0 if not
19843         defined (e.g., a pure POSIX system).
19844         (EXCLUDE_macros_do_not_collide_with_FNM_macros): Use FNM_PATHNAME
19845         instead of FNM_FILE_NAME, for compatibility with pure POSIX sytems.
19846
19847 2002-12-06  Paul Eggert  <eggert@twinsun.com>
19848
19849         Undo the 2001-07-02 change for jm-glibc-io, as it was too much of
19850         a pain in practice to deal with generated m4 files.  This change
19851         goes together with the 2002-12-04 unlocked-io.h change in ../lib.
19852
19853         * m4/Makefile.am.in (Makefile.am): Don't mention jm-glibc-io.m4n
19854         and jm-glibc-io.m4, as they are no longer a special case.
19855         * m4/jm-glibc-io.m4: Rename from jm-glibc-io.m4n, and remove the
19856         kludge and the auto-generation stuff.  Check only whether the
19857         functions are declared, not whether they exist, since older hosts
19858         that don't declare the functions can't use the optimization anyway.
19859
19860 2002-12-06  Jim Meyering  <jim@meyering.net>
19861
19862         * lib/error.c: Be consistent: change `#ifndef _LIBC' to `#if !_LIBC'.
19863
19864         Merge in changes from libc's misc/error.c, in preparation
19865         for the merge of gnulib's changes back into libc.
19866
19867         * lib/error.c (_): Define only if not already defined.
19868         Move definition to follow all #include directives.
19869         Include unlocked-io.h only if !_LIBC.
19870         [_LIBC]: Include <libio/libioP.h>.
19871         [USE_IN_LIBIO]: Include <libio/iolibio.h>
19872         (fflush): Tweak definition to use INTUSE.
19873         (putc): Define.
19874
19875 2002-12-05  Paul Eggert  <eggert@twinsun.com>
19876
19877         * lib/alloca.c [defined emacs]: Include "lisp.h".
19878         (xalloc_die) [defined emacs]: New macro.
19879         (free) [defined emacs && defined EMACS_FREE]: Define to EMACS_FREE.
19880         [! defined emacs]: Include <xalloc.h>.
19881         (POINTER_TYPE) [!defined POINTER_TYPE]: New macro.
19882         (pointer): Typedef to POINTER_TYPE *.
19883         (malloc): Remove decl; we now always use xmalloc.
19884         (alloca): Use old-style definition, since Emacs needs this.
19885         Check for arithmetic overflow when computing combined size.
19886
19887 2002-12-04  Paul Eggert  <eggert@twinsun.com>
19888
19889         Do not generate unlocked-io.h automatically, since it's easier to
19890         maintain it by hand.
19891
19892         * lib/unlocked-io.h: New file, from GNU diffutils,
19893         but with proper copyright notice and attribution.
19894         * lib/gen-uio: Remove.
19895         * lib/Makefile.am: Add copyright notice.
19896         (libfetish_a_SOURCES): Add unlocked-io.h.
19897         (BUILT_SOURCES, all-local): Remove unlocked-io.h.
19898         (DISTCLEANFILES, io_functions): Remove macros.
19899         (EXTRA_DIST): Remove gen_uio.
19900         (unlocked-io.h): Remove rule.
19901
19902 2002-12-04  Jim Meyering  <jim@meyering.net>
19903
19904         Reflect the fact that stat.c and lstat.c are no longer generated.
19905         * lib/Makefile.am (BUILT_SOURCES): Remove stat.c and lstat.c.
19906         (DISTCLEANFILES): Likewise.
19907         (EXTRA_DIST): Likewise.
19908         (all_local): Don't depend on stat.c or lstat.c.
19909         (stat.c, lstat.c): Remove rules.
19910         (EXTRA_DIST): Remove xstat.in.
19911
19912         * lib/xstat.in: Remove file.  Contents moved into stat.c.
19913         * lib/stat.c: New file.  Contents mostly from xstat.in.
19914         * lib/stat.c: Rework so that it may serve to define rpl_lstat, too.
19915         * lib/lstat.c: New file. Simply #define LSTAT and include stat.c.
19916
19917         * lib/safe-read.c: Rework so that it may serve to define safe_write,
19918         too.
19919         * lib/safe-write.c: Simply #define SAFE_WRITE and include safe-read.c.
19920
19921 2002-12-03  Jim Meyering  <jim@meyering.net>
19922
19923         * lib/safe-read.c, safe-write.c: Change variable names and comments,
19924         but not semantics, to minimize the differences between these two files.
19925         (safe_read): Change comment to mention SAFE_READ_ERROR.
19926
19927         * lib/safe-read.c (IS_EINTR): Define.
19928         (safe_read): Use IS_EINTR in place of in-function cpp directives.
19929
19930 2002-12-02  Jim Meyering  <jim@meyering.net>
19931
19932         * lib/safe-read.c (EINTR): Define.
19933         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
19934         (INT_MAX): Provide fallback.
19935         (safe_read): Rewrite to iterate IFF the read fails with EINTR.
19936
19937         * lib/safe-read.h (SAFE_READ_ERROR): Define.
19938
19939 2002-12-02  Bruno Haible  <bruno@clisp.org>
19940
19941         * lib/safe-write.c (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM):
19942         Define, taken from safe-read.c.
19943         (INT_MAX): Provide fallback.
19944         (safe_write): Rewrite to iterate IFF the write fails with EINTR.
19945         * lib/safe-write.h (SAFE_WRITE_ERROR): Define.
19946
19947         * lib/safe-read.c (EINTR): Remove definition.
19948         (safe_read): Don't use EINTR if it is absent.
19949
19950 2002-12-01  Jim Meyering  <jim@meyering.net>
19951
19952         * lib/safe-read.c: (safe_read): Also exit the loop when read returns
19953         zero.
19954         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM, INT_MAX): Define.
19955
19956 2002-11-27  Paul Eggert  <eggert@twinsun.com>
19957
19958         * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
19959         hash_find_entry, hash_rehash): Replace `if (limit <= value) abort ();'
19960         with `if (! (value < limit)) abort ();', for readability.
19961
19962 2002-11-26  Karl Berry  <karl@gnu.org>
19963
19964         * lib/strdup.c: copy from libc again, with jim's ok.
19965         * lib/.cppi-disable: re-add strdup.c
19966
19967 2002-11-25  Karl Berry  <karl@gnu.org>
19968
19969         * lib/strtoll.c: copy from libc, meaning we now #include <strtol.c>
19970         instead of "strtol.c".
19971
19972 2002-11-25  Karl Berry  <karl@gnu.org>
19973
19974         * config/install-sh: update from automake for variable quoting, $0 in
19975         error msgs, etc.
19976
19977         * config/srclist.txt ($LIBCSRC/time/mktime.c lib gpl): new entry.
19978         * config/srclist.txt ($LIBCSRC/sysdeps/generic/strtoll.c lib gpl): new
19979         entry.
19980
19981 2002-11-25  Jim Meyering  <jim@meyering.net>
19982
19983         * lib/mktime.c: Sync from libc, now that it has the latest fix.
19984
19985 2002-11-24  Karl Berry  <karl@gnu.org>
19986
19987         * lib/error.c, getopt.c, getopt.h, getopt1.c, obstack.c, regex.c,
19988         regex.h, strdup.c, strtoll.c, tempname.c: change license to gpl.
19989
19990 2002-11-24  Jim Meyering  <jim@meyering.net>
19991
19992         Update from coreutils:
19993
19994         * lib/mktime.c: Merge in changes from libc.
19995
19996         Avoid a link-time failure on some Linux systems.
19997         * lib/mktime.c (STATIC): Define to be empty (_LIBC) or `static'
19998         (otherwise).
19999         (__mon_yday): Declare with the STATIC attribute.
20000         (__mktime_internal): Likewise.
20001         Based on a report from Greg Schafer.
20002
20003 2002-11-23  Jim Meyering  <jim@meyering.net>
20004
20005         * lib/sig2str.c (str2signum, sig2str): Avoid a warning from gcc:
20006         Use `unsigned', not `int', as type of index.
20007
20008         * lib/xstat.in [@BEGIN_LSTAT_ONLY@]: Include <string.h>.
20009
20010         * lib/fsusage.c: Remove unneeded parentheses around operands of
20011         `defined'.
20012
20013 2002-11-22  Paul Eggert  <eggert@twinsun.com>
20014
20015         * lib/quotearg.h: Allow multiple inclusion by surrounding with
20016         "#ifndef QUOTEARG_H_".  Include <stddef.h>, for size_t,
20017         so that we can be included first.
20018         (PARAMS): Remove; we now assume C89 or later.  All uses removed.
20019         * lib/quotearg.c: Include quotearg.h immediately after config.h.
20020         No need to include stddef.h or sys/types.h any more.
20021         Surround local include files with "", not "<>".
20022         Assume HAVE_LIMITS_H unconditionally, as we assume C89.
20023         Similarly, assume HAVE_C_BACKSLASH_A, CHAR_BIT, UCHAR_MAX, UINT_MAX,
20024         HAVE_STDLIB_H, HAVE_STRING_H, STDC_HEADERS.
20025         (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
20026         (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
20027         (ISPRINT): Remove; no longer needed now that we assume C89.
20028
20029         (clone_quoting_options, quotearg_buffer, quotearg_n_options):
20030         Preserve errno.
20031
20032         (quotearg_buffer_restyled, quotearg_n, quotearg_n_style,
20033         quotearg_char): Use SIZE_MAX rather than
20034         (size_t) -1 when we are talking about "infinity".
20035
20036         (quotearg_buffer_restyled): Fix bug when quoting trigraphs.
20037
20038 2002-11-22  Paul Eggert  <eggert@twinsun.com>
20039
20040         * lib/hash.c: Avoid use of <assert.h>, as the GNU Coding Standards
20041         hint that one should use `if (! x) abort ();' rather than `assert
20042         (x);', and anyway it's one less thing to worry about configuring.
20043         (hash_lookup, hash_get_first, hash_get_next, hash_find_entry,
20044         hash_rehash, hash_insert): Use abort rather than assert.
20045
20046 2002-11-22  Bruno Haible  <bruno@clisp.org>
20047
20048         * lib/safe-read.h: Assume C89. Add comments.
20049         (safe_read): Change return type to size_t.
20050         * lib/safe-read.c (safe_read): Change return type to size_t. Handle
20051         byte counts > SSIZE_MAX correctly.
20052         * lib/safe-write.h: New file.
20053         * lib/safe-write.c: New file.
20054         * lib/full-read.h: New file.
20055         * lib/full-read.c: New file.
20056         * lib/full-write.h: Assume C89. Add comments.
20057         * lib/full-write.c: Include safe-write.h.
20058         (full_write): Rewritten to use safe_write.
20059         Suggested by Jim Meyering and Paul Eggert.
20060
20061 2002-11-21  Jim Meyering  <jim@meyering.net>
20062
20063         * lib/strdup.c (strdup): Tweak comment and initial #if/#include.
20064
20065         Merge in changes from the coreutils.
20066
20067         2002-09-25  Paul Eggert  <eggert@twinsun.com>
20068         * lib/fsusage.c [! HAVE_INTTYPES_H && HAVE_STDINT_H] Include
20069         <stdint.h>.
20070         (UINTMAX_MAX) [!defined UINTMAX_MAX]: New macro.
20071         (PROPAGATE_ALL_ONES): Work even if X is unsigned and narrower than
20072         int.  Work more efficiently if X is the same width as uintmax_t.
20073         Do not compare X to -1, to avoid bogus compiler warning.
20074         (get_fs_usage): (uintmax_t) -1 -> UINTMAX_MAX to avoid a cast.
20075         Don't assume that f_frsize and f_bsize are the same type.
20076
20077         * lib/mountlist.c: #undef MNT_IGNORE before defining it, to avoid
20078         warning on FreeBSD.
20079
20080         * lib/makepath.c (make_path): Restore umask *before* creating the final
20081         component.
20082         (make_path): Minor reformatting.
20083
20084         * lib/xmalloc.c: Adjust to work with new autoconf macros,
20085         AC_FUNC_MALLOC and AC_FUNC_REALLOC: test #ifndef
20086         HAVE_MALLOC/HAVE_REALLOC.
20087
20088         * lib/mountlist.h (ME_DUMMY): Don't count entries of type `auto' as
20089         dummy ones.  At least on GNU/Linux systems, `auto' means something
20090         else.
20091         From Michael Stone.
20092
20093 2002-11-21  Bruno Haible  <bruno@clisp.org>
20094
20095         Remove case insensitive option matching.
20096         * lib/argmatch.h (argcasematch): Remove declaration.
20097         (ARGCASEMATCH): Remove macro.
20098         (__xargmatch_internal): Remove case_sensitive argument.
20099         (XARGMATCH): Update.
20100         (XARGCASEMATCH): Remove macro.
20101         * lib/argmatch.c (argmatch): Renamed from __argmatch_internal. Remove
20102         case_sensitive argument.
20103         (argcasematch): Remove function.
20104         (__xargmatch_internal): Remove case_sensitive argument.
20105         (main): Use XARGMATCH instead of XARGCASEMATCH.
20106
20107         * lib/xmalloc.c: Change compile-time error message. Add comment about
20108         required autoconf version.
20109
20110 2002-11-20  Paul Eggert  <eggert@twinsun.com>
20111
20112         Merge argmatch cleanups from Bison.  Assume C89.
20113
20114         * lib/argmatch.c: Include config.h here, not in argmatch.h.
20115         Include stdlib.h, for EXIT_FAILURE.
20116         Always include <string.h>, since we assume C89.
20117         (EXIT_FAILURE): Remove pre-C89 bug workaround.
20118         * lib/argmatch.h: Do not include <config.h> or <sys/types.h>.
20119         Include <stddef.h> instead, since it's all we need for size_t.
20120         (PARAMS): Remove.  All uses removed.
20121         (ARRAY_CARDINALITY): Do not bother to #undef.
20122         (ARRAY_CARDINALITY, ARGMATCH, ARGCASEMATCH, invalid_arg,
20123         ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
20124         Remove unnecessary parentheses.
20125         (ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
20126         Insert necessary parentheses.
20127         (ARGMATCH_CONSTRAINT, ARGMATCH_VERIFY): New macros.
20128         (ARGMATCH_ASSERT): Use ARGMATCH_CONSTRAINT.
20129
20130 2002-11-19  Bruno Haible  <bruno@clisp.org>
20131
20132         * lib/mbswidth.c: Include mbswidth.h right at the beginning.
20133         * lib/mbswidth.h: Include <stddef.h>, for size_t.
20134
20135         * lib/mbswidth.h (PARAMS): Remove macro.
20136         (mbswidth, mbsnwidth): Use ANSI C function declarations.
20137         * lib/mbswidth.c (mbswidth, mbsnwidth): Likewise.
20138
20139         * lib/gcd.h (PARAMS): Remove macro.
20140         (gcd): Use ANSI C function declarations.
20141         * lib/gcd.c (gcd): Likewise.
20142
20143 2002-11-15  Bruno Haible  <bruno@clisp.org>
20144
20145         * lib/strcspn.c: Include <stddef.h>.
20146         (strcspn): Use ANSI C function declaration. Change return type to
20147         size_t. Use NULL.
20148         * lib/strpbrk.c: Minimize diffs to glibc. Include <stddef.h>.
20149         (strpbrk): Use NULL.
20150         * lib/strpbrk.h (PARAMS): Remove macro.
20151         (strpbrk): Use ANSI C function declaration.
20152         * lib/strstr.c: Don't include <sys/types.h>.
20153         * lib/strstr.h (PARAMS): Remove macro.
20154         (strstr): Use ANSI C function declarations.
20155
20156 2002-11-14  Karl Berry  <karl@gnu.org>
20157
20158         * config/mkinstalldirs: `do' on separate line, instead of
20159         `for var; do'.
20160
20161 2002-11-06  Bruno Haible  <bruno@clisp.org>
20162
20163         * lib/gcd.h (gcd): Change argument type to 'unsigned long'.
20164         * lib/gcd.c (gcd): Likewise.
20165
20166 2002-11-05  Bruno Haible  <bruno@clisp.org>
20167
20168         * lib/gcd.h: New file, from gettext-0.11.5.
20169         * lib/gcd.c: New file, from gettext-0.11.5.
20170
20171 2002-11-05  Bruno Haible  <bruno@clisp.org>
20172
20173         * lib/error.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
20174         * lib/getopt.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
20175         * lib/obstack.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
20176         * lib/regex.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
20177
20178         * lib/argmatch.c: Include gettext.h instead of <locale.h> and
20179         <libintl.h>.
20180         * lib/makepath.c: Include gettext.h instead of <locale.h> and
20181         <libintl.h>.
20182
20183         * lib/closeout.c: Include gettext.h instead of <libintl.h>.
20184         * lib/human.c: Include gettext.h instead of <libintl.h>.
20185         * lib/quotearg.c: Include gettext.h instead of <libintl.h>.
20186         * lib/rpmatch.c: Include gettext.h instead of <libintl.h>.
20187         * lib/unicodeio.c: Include gettext.h instead of <libintl.h>.
20188         * lib/userspec.c: Include gettext.h instead of <libintl.h>.
20189         * lib/version-etc.c: Include gettext.h instead of <libintl.h>.
20190         * lib/xmalloc.c: Include gettext.h instead of <libintl.h>.
20191         (textdomain): Remove definition.
20192         * lib/xmemcoll.c: Include gettext.h instead of <libintl.h>.
20193
20194         * lib/long-options.c: Remove include of <libintl.h> and definition of
20195         _.
20196         * lib/same.c: Remove include of <libintl.h> and definition of _.
20197
20198 2002-11-04  Owen Taylor  <otaylor@redhat.com>
20199
20200         * lib/config.charset: A few additions for Solaris.
20201
20202 2002-11-04  Bruno Haible  <haible@clisp.cons.org>
20203
20204         Make it possible to build libcharset with CC=gcc CFLAGS="-x c++".
20205         * lib/localcharset.c (locale_charset): Declare as extern "C".
20206
20207 2002-11-04  Bruno Haible  <haible@clisp.cons.org>
20208
20209         * lib/config.charset: msdos in uk_UA uses CP1125.
20210
20211 2002-11-04  Bruno Haible  <bruno@clisp.org>
20212
20213         * lib/stpcpy.h: New file, from GNU gettext-0.11.5.
20214         * lib/strcase.h: New file, from GNU gettext-0.11.5.
20215         * lib/strpbrk.h: New file, from GNU gettext-0.11.5.
20216         * lib/strstr.h: New file, from GNU gettext-0.11.5.
20217         * lib/xgetcwd.h: New file, from GNU gettext-0.11.5.
20218
20219 2002-11-04  Bruno Haible  <bruno@clisp.org>
20220
20221         * lib/localcharset.c (locale_charset): Don't return an empty string.
20222
20223 2002-11-04  Bruno Haible  <bruno@clisp.org>
20224
20225         * lib/localcharset.c (get_charset_aliases): Add more Windows specific
20226         aliases.
20227
20228 2002-11-04  Bruno Haible  <bruno@clisp.org>
20229
20230         * lib/config.charset: Update for newest glibc. Add canonical names
20231         ISO-8859-14, KOI8-T, TCVN5712-1, GEORGIAN-PS.
20232
20233 2002-11-04  Bruno Haible  <bruno@clisp.org>
20234
20235         * lib/config.charset: Add support for NetBSD.
20236
20237 2002-11-04  Bruno Haible  <bruno@clisp.org>
20238
20239         * lib/config.charset [msdosdjgpp]: For Russian, use CP866.
20240
20241 2002-11-01  Bruno Haible  <bruno@clisp.org>
20242
20243         * configure.in: Add AC_CONFIG_AUX_DIR call.
20244         (AC_OUTPUT): Add m4/Makefile, lib/Makefile. Remove doc/Makefile,
20245         test/Makefile.
20246         * Makefile.in (subdirs): Add m4, lib. Remove doc, test.
20247
20248 2002-09-28  Karl Berry  <karl@gnu.org>
20249
20250         * config/srclist.txt: can't copy install-sh/mkinstalldirs from
20251         installed automake until the next release, since changes have been
20252         made.
20253
20254 2002-09-25  Karl Berry  <karl@gnu.org>
20255
20256         * lib/strdup.c: copy from libc/string (via ../config/srclist*).
20257         * lib/getopt*: copy from libc/posix.
20258         * lib/gettext.h: copy from gettext.
20259         * lib/.cppi-disable: add strdup.c, gettext.h.
20260
20261 2002-09-25  Karl Berry  <karl@gnu.org>
20262
20263         * config/srclist.txt: enable gettext.h check.
20264         * config/config.{guess,sub}: update from prep.
20265         * config/depcomp, install-sh, mdate-sh, missing, mkinstalldirs: update
20266                 from automake 1.6.3.
20267         See srclist*.
20268
20269 2002-08-23  Stefan Monnier  <monnier@cs.yale.edu>
20270
20271         * regex.c (PATFETCH): Remove the translating fetch.
20272         (PATFETCH_RAW): Rename to PATFETCH.
20273         (set_image_of_range): New fun.
20274         (SET_RANGE_TABLE_WORK_AREA): Use it.
20275         (regex_compile): Don't translate the pattern chars so eagerly.
20276         Only do it when inserting an `exactn' bytecode or when handling
20277         a char-range.
20278         (mutually_exclusive_p): Avoid empty statement.
20279
20280 2002-07-06  Jim Meyering  <meyering@lucent.com>
20281
20282         * m4/README: Don't mention Makefile.am.in.
20283         Outline how I've tested changes to .m4 files.  Yep, it's a pain.
20284
20285 2002-07-01  Jim Meyering  <meyering@lucent.com>
20286
20287         * lib/c-stack.c: Include sys/time.h.
20288         From Volker Borchert.
20289
20290 2002-06-26  Paul Eggert  <eggert@twinsun.com>
20291
20292         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for btowc.
20293
20294 2002-06-26  Paul Eggert  <eggert@twinsun.com>
20295
20296         * lib/fnmatch.c, fnmatch_loop.c (WIDE_CHAR_SUPPORT):
20297         New macro.  Use it uniformly instead of
20298         (defined HAVE_WCTYPE_H && defined HAVE_WCHAR_H).
20299         It also uses HAVE_BTOWC, to fix a porting bug on Solaris 2.5.1
20300         reported by Vin Shelton.
20301
20302 2002-06-22  Paul Eggert  <eggert@twinsun.com>
20303
20304         * lib/c-stack.h (segv_handler, c_stack_action) [! defined SA_SIGINFO]:
20305         Do not assume SA_SIGINFO behavior.
20306         Bug reported by Jim Meyering on NetBSD 1.5.2.
20307
20308 2002-06-22  Jim Meyering  <meyering@lucent.com>
20309
20310         * m4/c-stack.m4: New file, from diffutils-2.8.2.
20311         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_C_STACK.
20312
20313         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Don't require AC__GNU_SOURCE,
20314         now that configure.ac uses AC_GNU_SOURCE.
20315         (jm_MACROS): Rename: jm_FUNC_FNMATCH to AC_FUNC_FNMATCH_GNU.
20316         * m4/prereq.m4 (jm_PREREQ_EXCLUDE): Likewise, wrt jm_FUNC_FNMATCH.
20317
20318         Update to latest tools.  Suggestions from Paul Eggert.
20319         * m4/stdbool.m4: New file, from diffutils-2.8.2.
20320         * m4/gnu-source.m4: Update from diffutils-2.8.2.
20321         * m4/fnmatch.m4: Likewise.
20322         * m4/prereq.m4: Change each use of AC_CHECK_HEADERS(stdbool.h)
20323         to AC_HEADER_STDBOOL
20324
20325 2002-06-22  Jim Meyering  <meyering@lucent.com>
20326
20327         * lib/fnmatch.c (ISASCII, ISPRINT): Undefine, to avoid warning about
20328         redefinition due to Solaris 2.6's definition in /usr/include/sys/euc.h.
20329
20330 2002-06-22  Jim Meyering  <meyering@lucent.com>
20331
20332         * lib/c-stack.c, lib/c-stack.h: New files, from diffutils-2.8.2.
20333
20334         * lib/exitfail.c, exitfail.h: Likewise.
20335         * lib/Makefile.am (libfetish_a_SOURCES): Add exitfail.c and exitfail.h.
20336
20337         * lib/Makefile.am (libfetish_a_SOURCES): Add fnmatch_.h in place
20338         of fnmatch.h.
20339         (EXTRA_DIST): Add fnmatch_loop.c.
20340         (libfetish_a_SOURCES): Add c-stack.c and c-stack.h.
20341
20342         * lib/fnmatch_loop.c: New file, from diffutils-2.8.2.
20343         * lib/fnmatch.c: Update from diffutils-2.8.2.
20344         * lib/fnmatch_.h: New file.  From diffutils-2.8.2.
20345         * lib/fnmatch.h: Remove file.
20346
20347 2002-06-21  Jim Meyering  <meyering@lucent.com>
20348
20349         * m4/c-bs-a.m4: Add comment, from diffutils-2.8.2.
20350         * m4/mbrtowc.m4: Likewise.
20351
20352         * m4/mbstate_t.m4: Update from diffutils-2.8.2.
20353         * m4/mbswidth.m4: Reflect name change:
20354         s/AC_MBSTATE_T/AC_TYPE_MBSTATE_T.
20355         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Likewise.
20356
20357         * m4/lib-link.m4: Update from gettext-0.11.2.
20358         * m4/gettext.m4: Likewise.
20359
20360         * m4/jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for hurd.h.
20361         From Alfred M. Szmidt.
20362
20363 2002-06-18  Paul Eggert  <eggert@twinsun.com>
20364
20365         * lib/file-type.h: Report an error if neither S_ISREG nor
20366         S_IFREG is defined, instead of using a test specific to glibc
20367         2.2.  This should be safe, since POSIX requires S_ISREG and
20368         Unix Version 7 had S_IFREG.  We don't need to check for
20369         <sys/types.h> since we don't use any symbols that it defines.
20370
20371 2002-06-15  Richard Dawe  <richdawe@bigfoot.com>
20372
20373         * lib/Makefile.am (lstat.c, stat.c, .sin.sed): Use t-$@, rather than
20374         $@-t, so that each temporary file name is unique and valid in the first
20375         8 characters, for operation under DOS.
20376
20377 2002-06-15  Paul Eggert  <eggert@twinsun.com>
20378
20379         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for st_author.
20380
20381 2002-06-15  Jim Meyering  <meyering@lucent.com>
20382
20383         Work even with DJGPP 2.03, which lacks support for symlinks.
20384         From Richard Dawe.
20385         * lib/xstat.in (S_ISLNK): Define to 0 if neither S_ISLNK nor S_IFLNK
20386         is defined.
20387         * lib/lchown.c (S_ISLNK): Likewise.
20388
20389 2002-06-15  Jim Meyering  <meyering@lucent.com>
20390
20391         * lib/file-type.h (FILE_TYPE_H): Guard entire contents with #ifndef.
20392         For GNU libc 2.2 and newer, ensure that <sys/types.h> and <sys/stat.h>
20393         have been included before this file.
20394
20395 2002-06-14  Jim Meyering  <meyering@lucent.com>
20396
20397         * lib/file-type.h: Use the version from diffutils-2.8.2.
20398         * lib/file-type.c: Likewise.
20399
20400 2002-06-07  Jim Meyering  <meyering@lucent.com>
20401
20402         * m4/prereq.m4 (jm_PREREQ_STAT): Check for sys/param.h and sys/mount.h.
20403         They're needed at least for NetBSD 1.5.2.
20404         ($statxfs_includes): Include those same headers.
20405         ($statxfs_includes): Include sys/vfs.h if available.
20406         ($statxfs_includes): Likewise for sys/statvfs.h.
20407         Check for the following members in both structs statfs and statvfs:
20408         f_basetype, f_type, f_fsid.__val, f_namemax, f_namelen.
20409
20410 2002-06-01  Jim Meyering  <meyering@lucent.com>
20411
20412         * m4/d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename macro:
20413         s/D_TYPE_IN_DIRENT/HAVE_STRUCT_DIRENT_D_TYPE/.
20414
20415 2002-05-28  Jim Meyering  <meyering@lucent.com>
20416
20417         * m4/readdir.m4 (jm_FUNC_READDIR): Undefine `mkdir', not `rmdir'.
20418         Reported by Volker Borchert.
20419
20420 2002-05-27  Jim Meyering  <meyering@lucent.com>
20421
20422         Fix a problem seen only on nonconforming systems whereby ls.c's
20423         use of localtime, and then of gettimeofday would cause trouble:
20424         the localtime call used to initialize rpl_gettimeofday's save
20425         mechanism would clobber ls's current local time information so
20426         that in any long listing the first file would always be listed
20427         with date 1970-01-01.  Analysis by Volker Borchert.
20428
20429         * lib/gettimeofday.c (localtime): Undefine.
20430         (rpl_localtime): New function.
20431
20432 2002-05-27  Jim Meyering  <meyering@lucent.com>
20433
20434         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Also replace
20435         localtime.
20436
20437         * m4/readdir.m4 (jm_FUNC_READDIR): Undefine `rmdir' so we don't try to
20438         use the replacement function; it wouldn't resolve at link time.
20439         Reported by Volker Borchert.
20440
20441 2002-05-22  Jim Meyering  <meyering@lucent.com>
20442
20443         * lib/Makefile.am (libfetish_a_SOURCES): Add file-type.c and
20444         file-type.h.
20445         * lib/file-type.h: New file.
20446         * lib/file-type.c (file_type): New file/function.  Extracted from
20447         diffutils.
20448
20449 2002-04-30  Jim Meyering  <meyering@lucent.com>
20450
20451         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_STAT.
20452
20453 2002-04-29  Paul Eggert  <eggert@twinsun.com>
20454
20455         * m4/prereq.m4 (jm_PREREQ_SIG2STR): Remove; all callers changed.
20456
20457 2002-04-29  Paul Eggert  <eggert@twinsun.com>
20458
20459         * m4/prereq.m4 (jm_PREREQ_HARD_LOCALE): Check for stdlib.h.
20460         Do not check for alloca.h (no longer used) or stdbool.h (was never
20461         used?).  Add AM_C_PROTOTYPES since hard-locale.h uses it.
20462
20463 2002-04-29  Paul Eggert  <eggert@twinsun.com>
20464
20465         * lib/hard-locale.c: Upgrade to version used in GNU Diffutils 2.8.1.
20466
20467 2002-04-29  Jim Meyering  <meyering@lucent.com>
20468
20469         * m4/jm-macros.m4 (jm_MACROS): Remove use of AC_FUNC_STRNLEN.
20470         * m4/prereq.m4: Add jm_PREREQ_STRNLEN.
20471         Use AC_FUNC_STRNLEN here instead.
20472
20473         * m4/jm-macros.m4: Don't AC_REQUIRE([AC_PROG_CC_STDC]).
20474         With autoconf-2.53a, it's part of AC_PROG_CC.
20475
20476 2002-04-28  Paul Eggert  <eggert@twinsun.com>
20477
20478         * m4/jm-macros.m4 (jm_MACROS): Add AC_REPLACE_FUNCS(sig2str).
20479         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_SIG2STR.
20480
20481 2002-04-28  Paul Eggert  <eggert@twinsun.com>
20482
20483         * lib/sig2str.h, lib/sig2str.c: New files.
20484         * lib/Makefile.am (libfetish_a_SOURCES): Add sig2str.h.
20485
20486 2002-04-28  Paul Eggert  <eggert@twinsun.com>
20487
20488         * lib/sig2str.h (SIGNUM_BOUND): Do not use WTERMSIG, to avoid
20489         depending on <sys/wait.h> and WTERMSIG.  Default to 64 instead
20490         of 127, since 64 is the largest conceivable number for ancient
20491         nonstandard hosts.
20492         * lib/sig2str.c: Do not include <sys/wait.h>; no longer needed.
20493
20494 2002-04-28  Jim Meyering  <meyering@lucent.com>
20495
20496         * lib/sig2str.c (WTERMSIG): Remove definition (unused).
20497
20498 2002-04-24  Jim Meyering  <meyering@lucent.com>
20499
20500         * m4/prereq.m4 (jm_PREREQ_HARD_LOCALE): New macro.
20501         (jm_PREREQ): Use it.
20502
20503         * m4/getloadavg.m4: Check for these headers: locale.h unistd.h
20504         mach/mach.h fcntl.h.
20505         Check for this function: setlocale.
20506
20507 2002-04-24  Jim Meyering  <meyering@lucent.com>
20508
20509         * lib/gettext.h: New file, from Gettext.
20510         * lib/Makefile.am (INCLUDES): Remove -I../intl.
20511         (libfetish_a_SOURCES): Add gettext.h.
20512
20513 2002-04-16  Jim Meyering  <meyering@lucent.com>
20514
20515         * m4/prereq.m4 (jm_PREREQ_READUTMP): Also check for these members:
20516         ut_pid, ut_id, ut_exit.
20517
20518 2002-04-16  Jim Meyering  <meyering@lucent.com>
20519
20520         * lib/readutmp.h (UT_TYPE): Remove definition (now in who.c).
20521         (HAVE_STRUCT_XTMP_UT_EXIT, HAVE_STRUCT_XTMP_UT_ID): Define.
20522         (HAVE_STRUCT_XTMP_UT_PID, HAVE_STRUCT_XTMP_UT_TYPE): Define.
20523
20524 2002-04-12  Jim Meyering  <meyering@lucent.com>
20525
20526         * m4/ls-mntd-fs.m4 (checking for getmntinfo function...): Remove
20527         now-bogus check for f_type in sys/mount.h.  Instead, just test for the
20528         existence of the getmntinfo function.  Needed for Darwin 5.3.
20529
20530         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Also detect when dirfd is a macro.
20531         This is necessary at least on Darwin 5.3.
20532
20533         * m4/jm-macros.m4: Don't AC_REPLACE(strnlen), now that we use
20534         AC_FUNC_STRNLEN.  Otherwise, we'd end up putting two copies of
20535         strnlen.o in the library, and that makes some versions of ranlib
20536         object.
20537
20538 2002-04-12  Jim Meyering  <meyering@lucent.com>
20539
20540         * lib/dirfd.h (dirfd): Elide prototype if dirfd is a macro.
20541
20542 2002-04-09  Jim Meyering  <meyering@lucent.com>
20543
20544         * m4/malloc.m4: (jm_FUNC_MALLOC): Change the `checking ...' message
20545         to be more precise.  Rather than saying we're checking whether the
20546         function `works', say what we're testing.
20547         * m4/realloc.m4 (jm_FUNC_REALLOC): Likewise.
20548         Reported by Bruno Haible.
20549
20550 2002-03-10  Jim Meyering  <meyering@lucent.com>
20551
20552         * lib/makepath.c (make_path): Remove a comma from a diagnostic.
20553         Suggestion from Santiago Vila.
20554
20555 2002-03-08  Jim Meyering  <meyering@lucent.com>
20556
20557         * lib/rename.c: Mention that this wrapper is needed also on
20558         mips-dec-ultrix4.4 systems.
20559
20560 2002-03-02  Jim Meyering  <meyering@lucent.com>
20561
20562         * lib/gettime.c (gettime): Test HAVE_CLOCK_GETTIME,
20563         not HAVE_CLOCK_SETTIME.
20564
20565 2002-02-27  Paul Eggert  <eggert@twinsun.com>
20566
20567         * m4/jm-macros.m4 (jm_MACROS): Do not replace stime; no longer used.
20568         Check for clock_settime.
20569
20570 2002-02-27  Paul Eggert  <eggert@twinsun.com>
20571
20572         * lib/nanosleep.h: Rename to....
20573         * lib/timespec.h: New name for nanosleep.h.  All uses changed.
20574
20575         * lib/gettime.c: New file.
20576         * lib/settime.c: New file.
20577         * lib/stime.c: Remove.
20578
20579         * lib/Makefile.am (libfetish_a_SOURCES): Add gettime.c, settime.c,
20580         timespec.h.  Remove nanosleep.h.
20581
20582 2002-02-25  Paul Eggert  <eggert@twinsun.com>
20583
20584         * m4/acl.m4: New file.
20585         * m4/jm-macros.m4 (jm_MACROS): Require AC_FUNC_ACL.
20586         Do not check for acl or sys/acl.h, as AC_FUNC_ACL does that now.
20587
20588 2002-02-25  Paul Eggert  <eggert@twinsun.com>
20589
20590         * lib/acl.c, lib/acl.h: New files.
20591         * lib/Makefile.am (libfetish_a_SOURCES): Add acl.h, acl.c.
20592
20593 2002-02-24  Jim Meyering  <meyering@lucent.com>
20594
20595         * lib/strnlen.c (strnlen): Define-away/undef so that an inconsistent
20596         prototype in string.h (on at least AIX4.3.2.0 w/gcc-2.95.3) doesn't
20597         cause trouble.  Reported by Nelson Beebe.
20598
20599 2002-02-23  Paul Eggert  <eggert@twinsun.com>
20600
20601         * lib/path-concat.c (xpath_concat): Reorder code to pacify
20602         compilers that don't know that xalloc_die never returns.
20603
20604 2002-02-20  Jim Meyering  <meyering@lucent.com>
20605
20606         * lib/getdate.c: Regenerate using bison-1.33.
20607
20608 2002-02-17  Jim Meyering  <meyering@lucent.com>
20609
20610         * config/config.guess (main): Don't use `head -1'; it's no longer
20611         portable. Use `sed 1q' instead.
20612
20613 2002-02-16  gettextize  <bug-gnu-gettext@gnu.org>
20614
20615         * m4/codeset.m4: Upgrade to gettext-0.11.
20616         * m4/gettext.m4: Upgrade to gettext-0.11.
20617         * m4/glibc21.m4: Upgrade to gettext-0.11.
20618         * m4/iconv.m4: Upgrade to gettext-0.11.
20619         * m4/isc-posix.m4: Upgrade to gettext-0.11.
20620         * m4/lcmessage.m4: Upgrade to gettext-0.11.
20621         * m4/lib-ld.m4: New file, from gettext-0.11.
20622         * m4/lib-link.m4: New file, from gettext-0.11.
20623         * m4/lib-prefix.m4: New file, from gettext-0.11.
20624         * m4/progtest.m4: Upgrade to gettext-0.11.
20625
20626 2002-02-15  Paul Eggert  <eggert@twinsun.com>
20627
20628         * m4/prereq.m4 (jm_PREREQ_POSIXVER): New macro.
20629         (jm_PREREQ): Use it.
20630
20631 2002-02-15  Paul Eggert  <eggert@twinsun.com>
20632
20633         * lib/posixver.c, lib/posixver.h: New files.
20634         * lib/Makefile.am (libfetish_a_SOURCES): Add them.
20635
20636 2002-02-02  Paul Eggert  <eggert@twinsun.com>
20637             Bruno Haible  <bruno@clisp.org>
20638
20639         * lib/unicodeio.h (print_unicode_char): Add exit_on_error argument.
20640         (fwrite_success_callback): New declaration.
20641         * lib/unicodeio.c (unicode_to_mb): New function, extracted from
20642         print_unicode_char. Call failure callback instead of error.
20643         (fwrite_success_callback): New function.
20644         (exit_failure_callback): New function.
20645         (fallback_failure_callback): New function.
20646         (print_unicode_char): Call unicode_to_mb.
20647
20648 2002-01-26  Jim Meyering  <meyering@lucent.com>
20649
20650         * m4/jm-macros.m4 (jm_MACROS): Require autoconf-2.52g.
20651         * m4/strnlen.m4: Remove file, now that it's part of autoconf.
20652
20653 2002-01-26  Jim Meyering  <meyering@lucent.com>
20654
20655         * lib/Makefile.am (getdate$U.o): Depend on unlocked-io.h.
20656
20657 2002-01-22  Paul Eggert  <eggert@twinsun.com>
20658
20659         * m4/jm-macros.m4 (jm_MACROS): Require AC_FUNC_FSEEKO.
20660
20661 2002-01-22  Jim Meyering  <meyering@lucent.com>
20662
20663         * lib/Makefile.am (Makefile): Don't depend on $(BUILT_SOURCES).
20664         Otherwise, some versions of automake would omit the rule that makes
20665         Makefile from Makefile.in.
20666
20667 2002-01-21  Paul Eggert  <eggert@twinsun.com>
20668
20669         * lib/xmemcoll.h, lib/xmemcoll.c: New files.
20670         * lib/Makefile.am (libfetish_a_SOURCES): Add them.
20671         * lib/memcoll.c: Include errno.h, and declare errno if not defined.
20672         (memcoll): Set errno to zero if there is no error.
20673
20674         * lib/quotearg.c (quotearg_buffer_restyled):
20675         Fix bug with quoting buffers containing NUL when backslashing escapes.
20676         This bug was exposed by the other changes in this patch.
20677         (quotearg_n_options): New arg ARGSIZE.
20678         All callers changed.
20679         (quoting_options_from_style): New function.
20680         (quotearg_n_style): Use it.
20681         (quotearg_n_style_mem): New function.
20682
20683         * lib/quotearg.h (quotearg_n_style_mem): New function.
20684
20685 2002-01-19  Jim Meyering  <meyering@lucent.com>
20686
20687         * m4/jm-macros.m4 (jm_MACROS): Use AC_FUNC_STRNLEN.
20688         Remove useless quotes: DF_PROG="df".
20689         * m4/strnlen.m4: New file.
20690
20691 2002-01-16  Paul Eggert  <eggert@twinsun.com>
20692
20693         * lib/backupfile.c (ISDIGIT): Comment fix.
20694         * lib/getdate.y (ISDIGIT): Likewise.
20695         * lib/posixtm.c (ISDIGIT, year): Likewise.
20696         * lib/strverscmp.c (ISDIGIT): Likewise.
20697         * lib/userspec.c (ISDIGIT): Likewise.
20698
20699 2002-01-16  Jim Meyering  <meyering@lucent.com>
20700
20701         * lib/getdate.y: Add three semicolons, each just before a closing
20702         brace. Bison (as of version 1.31) no longer papers over that mistake.
20703
20704 2002-01-05  Jim Meyering  <meyering@lucent.com>
20705
20706         * lib/version-etc.c (version_etc_copyright): Update copyright year.
20707
20708 2001-12-19  Paul Eggert  <eggert@twinsun.com>
20709
20710         * lib/closeout.c (close_stdout_status): If ferror (stdout), do
20711         not silently exit merely because the output buffer happens to
20712         have nothing pending.
20713
20714 2001-12-18  Paul Eggert  <eggert@twinsun.com>
20715
20716         See the big note in ../ChangeLog.
20717         * lib/human.c (suffixes): Prefer K to k for 1024.
20718         (generate_suffix_backwards): New function.
20719         (human_readable_inexact): Use it.
20720         * lib/xstrtol.c (__xstrtol): If there is no number but there
20721         is a valid suffix, assume 1.  "MB" now means decimal, "MiB" binary.
20722         Accept 'K' as well as 'k'.
20723
20724 2001-12-15  Jim Meyering  <meyering@lucent.com>
20725
20726         * lib/regex.h (__restrict_arr): Update from libc.
20727
20728         * lib/mountlist.h (ME_REMOTE): Recognize file systems of type smbfs
20729         as `remote' if the name starts with `//'.  Suggested by Michael Stone.
20730         (STREQ): Define.
20731
20732 2001-12-14  Jim Meyering  <meyering@lucent.com>
20733
20734         * m4/jm-macros.m4 (jm_MACROS): Check for iswspace.
20735         Suggestion from Bruno Haible.
20736
20737 2001-12-10  Jim Meyering  <meyering@lucent.com>
20738
20739         * lib/linebuffer.c: Remove explicit declarations of xmalloc and
20740         xrealloc, Instead, include "xalloc.h".
20741         (initbuffer): Don't cast xmalloc return value to char*.
20742         (readline): Reword comment.
20743         Don't cast xrealloc return value to char*
20744         Return NULL, not 0.
20745
20746 2001-12-09  Jim Meyering  <meyering@lucent.com>
20747
20748         * lib/modechange.c (mode_compile): Add cast to avoid pedantic warning
20749         about `signed and unsigned type in conditional expression'.
20750         * lib/posixtm.c (posix_time_parse): Likewise.
20751
20752         * lib/xreadlink.c (xreadlink): Add cast to avoid a pedantic warning.
20753
20754         * lib/readtokens.c (readtoken): Declare an index to be of type unsigned
20755         to avoid a pedantic warning.
20756
20757         * lib/getstr.c: Don't include assert.h.
20758         (getstr): Remove warning-evoking assertions.
20759         Return -1 if offset parameter is out of bounds.
20760         Change the type of a local from int to size_t.
20761
20762         * lib/strftime.c (my_strftime_localtime_r): Include this function
20763         definition in the `#if ! HAVE_TM_GMTOFF' block.
20764
20765         * lib/xgethostname.c: Remove declarations of xmalloc and xrealloc.
20766         Include xalloc.h instead.
20767
20768 2001-12-02  Jim Meyering  <meyering@lucent.com>
20769
20770         * lib/tempname.c: Don't declare getenv, thus reverting the change of
20771         2001-11-18.  It's no longer necessary, now that stdlib.h is always
20772         included.
20773
20774         * lib/regex.c [!__BOUNDED_POINTERS__]: Define away __bounded,
20775         __unbounded, and __ptrvalue.  Reported by Uwe H. Steinfeld.
20776
20777 2001-11-30  Akim Demaille  <akim@epita.fr>
20778
20779         * lib/xstrdup.c: Include xalloc.h, so that xstrdup is declared
20780         before being defined.
20781
20782 2001-11-27  Paul Eggert  <eggert@twinsun.com>
20783
20784         * lib/quotearg.h (quotearg_n, quotearg_n_style):
20785         First arg is int, not unsigned.
20786         * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
20787         (SIZE_MAX, UINT_MAX): New macros.
20788         (quotearg_n_options): Abort if N is negative.
20789         Avoid overflow check on hosts where size_t is 64 bits and int
20790         is 32 bits, as overflow is impossible there.
20791         Fix off-by-one typo that caused unnecessary reallocation.
20792
20793 2001-11-27  Jim Meyering  <meyering@lucent.com>
20794
20795         * lib/tempname.c: Merge with version from libc.
20796         * lib/regex.c: Likewise.
20797
20798         * lib/tempname.c: Include stdlib.h unconditionally.  On some old
20799         systems for which STDC_HEADERS is 0, it was not included, resulting in
20800         a warning about an integer-to-pointer conversion problem with getenv.
20801         Reported by Volker Borchert.
20802
20803 2001-11-26  Jim Meyering  <meyering@lucent.com>
20804
20805         * lib/gtod.h: Remove file.
20806         * lib/Makefile.am (libfetish_a_SOURCES): Remove gtod.h.
20807         * lib/gettimeofday.c: Don't include gtod.h.
20808         (GTOD_init): Remove function.
20809         (rpl_gettimeofday): Do its job here instead, rather than aborting.
20810         Suggestion from Volker Borchert.
20811
20812 2001-11-23  Jim Meyering  <meyering@lucent.com>
20813
20814         * lib/hash.h (struct hash_table): Don't define here.  Merely declare
20815         it.
20816         * lib/hash.c (struct hash_table): Define it here instead.
20817
20818 2001-11-22  Jim Meyering  <meyering@lucent.com>
20819
20820         * lib/hash.h: Bracket contents of file with #ifndef HASH_H_ ... #endif.
20821
20822 2001-11-20  Jim Meyering  <meyering@lucent.com>
20823
20824         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Update comment to reflect that
20825         SunOS 4.1.4 and Solaris 2.5.1 lose, too.
20826
20827 2001-11-19  Jim Meyering  <meyering@lucent.com>
20828
20829         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Don't bother with a temporary
20830         directory.  Use "conftestXXXXXX" as the template.
20831         Suggestion from Paul Eggert.
20832
20833         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Close each descriptor
20834         immediately, so the test doesn't mistakenly hit the max-open-files
20835         limit.
20836
20837 2001-11-18  Paul Eggert  <eggert@twinsun.com>
20838
20839         * lib/tempname.c (TMP_MAX): Remove; no longer needed.
20840         (TEMPORARIES): New macro.
20841         (__gen_tempname): Use TEMPORARIES rather than TMP_MAX.  This
20842         removes an artificial limitation (e.g. HP-UX 10.20, where
20843         TMP_MAX is 17576).
20844
20845 2001-11-18  Jim Meyering  <meyering@lucent.com>
20846
20847         * m4/prereq.m4 (jm_PREREQ_TEMPNAME): Check for declaration of getenv.
20848
20849 2001-11-18  Jim Meyering  <meyering@lucent.com>
20850
20851         * lib/tempname.c [!HAVE_DECL_GETENV]: Declare getenv to avoid warning
20852         on SunOS 4.
20853
20854         * lib/Makefile.am (Makefile): Depend on $(BUILT_SOURCES), so those
20855         files will be created before anything else.
20856
20857 2001-11-17  Paul Eggert  <eggert@twinsun.com>
20858
20859         * m4/jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): Do not define
20860         WINSIZE_IN_PTEM if <termios.h> defines struct winsize.
20861
20862 2001-11-17  Jim Meyering  <meyering@lucent.com>
20863
20864         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): New file and macro.
20865         Prompted by a report from Bob Proulx.
20866
20867         * m4/jm-macros.m4 (jm_MACROS): Don't test for mkstemp here.
20868         Instead, require UTILS_FUNC_MKSTEMP.
20869
20870 2001-11-17  Jim Meyering  <meyering@lucent.com>
20871
20872         * m4/jm-macros.m4 (jm_MACROS): Remove code to set POW_LIBM.
20873         Now, that's done as part of AC_FUNC_STRTOD.
20874
20875 2001-11-17  Jim Meyering  <meyering@lucent.com>
20876
20877         * lib/modechange.c (mode_adjust): Fix error introduced on 1999-04-26
20878         that made e.g., `chmod a=,o=w,g=o F' cause F to be group readable
20879         rather than group writable.  Patch by Juan F. Codagnone.
20880
20881         * lib/readtokens.c: Remove explicit declarations of xmalloc and
20882         xrealloc, Instead, include "xalloc.h".
20883
20884         * lib/mountlist.c: Include unlocked-io.h after all system headers.
20885         Remove explicit declarations of xmalloc, xrealloc,
20886         and xstrdup.  Instead, include "xalloc.h".
20887
20888         * lib/argmatch.c, closeout.c, error.c, exclude.c: Include
20889         unlocked-io.h.
20890         * lib/fatal.c, getdate.y, getpass.c, getstr.c, getusershell.c:
20891         Likewise.
20892         * lib/mountlist.c, posixtm.c, readtokens.c, readutmp.c: Likewise.
20893
20894         * lib/regex.c, sha.c, version-etc.c, yesno.c: Likewise.
20895         Reported by Padraig Brady.
20896
20897         * lib/mkstemp.c: #undef mkstemp.
20898         Include config.h.
20899         (rpl_mkstemp): Rename from mkstemp.
20900         Protoize.
20901
20902 2001-11-16  Jim Meyering  <meyering@lucent.com>
20903
20904         * lib/physmem.c [HAVE_SYS_PSTAT_H]: Include <sys/pstat.h>.
20905         (physmem_total) [HAVE_PSTAT_GETSTATIC]: If sysconf couldn't be used to
20906         determine the amount of total physical memory, use pstat_getstatic.
20907         HPUX-11 doesn't define _SC_PHYS_PAGES.
20908         (physmem_available) [HAVE_PSTAT_GETSTATIC && HAVE_PSTAT_GETDYNAMIC]:
20909         If sysconf couldn't be used to determine the amount of available
20910         physical memory, use both pstat_getstatic and pstat_getdynamic.
20911         Based on a patch from Bob Proulx.
20912
20913 2001-11-10  Jim Meyering  <meyering@lucent.com>
20914
20915         * m4/prereq.m4 (jm_PREREQ_PHYSMEM): New function.
20916         (jm_PREREQ): Use it.
20917
20918 2001-11-09  Jim Meyering  <meyering@lucent.com>
20919
20920         * m4/jm-macros.m4: Require autoconf-2.52f.
20921         (AC_FUNC_ERROR_AT_LINE, AC_FUNC_OBSTACK, AC_FUNC_STRTOD):
20922         Use these AC_-prefixed names, not the AM_-prefixed ones.
20923
20924         * m4/afs.m4 (jm_AFS): Quote the body.  Patch by Akim Demaille.
20925
20926 2001-11-05  Jim Meyering  <meyering@lucent.com>
20927
20928         * lib/xstat.in (slash_aware_lstat): Correct a misleading comment.
20929
20930 2001-11-04  Jim Meyering  <meyering@lucent.com>
20931
20932         * m4/fpending.m4: Remove unused cruft that saved, set, and restored
20933         $DEFS.
20934
20935 2001-11-03  Jim Meyering  <meyering@lucent.com>
20936
20937         * m4/jm-glibc-io.m4n (jm_FUNC_GLIBC_UNLOCKED_IO): Quote first arg
20938         of AC_DEFUN.
20939
20940         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Rework so dirfd.c doesn't have to
20941         know the name of the variable in the macro definition.
20942
20943 2001-11-03  Jim Meyering  <meyering@lucent.com>
20944
20945         * lib/argmatch.h (ARGMATCH_TO_ARGUMENT): Remove casts of first two args
20946         in argmatch_to_argument call.
20947
20948         * lib/dirfd.c (dirfd): Reflect the fact that DIR_TO_FD now takes an
20949         argument.
20950
20951         * lib/hash.c (hash_clear): Fix a bug that could lead to an infloop or
20952         e.g., a fault due to an attempt to free a NULL pointer.
20953
20954 2001-11-01  Jim Meyering  <meyering@lucent.com>
20955
20956         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): New macro.
20957         * m4/jm-macros.m4 (jm_MACROS): Require UTILS_FUNC_DIRFD.
20958
20959 2001-11-01  Jim Meyering  <meyering@lucent.com>
20960
20961         * lib/dirfd.c, lib/dirfd.h: New files.
20962         * lib/Makefile.am (libfetish_a_SOURCES): Add dirfd.h.
20963
20964         * lib/hash.c (hash_print) [TESTING]: Clean up.
20965
20966 2001-10-22  Paul Eggert  <eggert@twinsun.com>
20967
20968         * lib/hard-locale.c (alloca): Define to __builtin_alloca if __GNUC__,
20969         to avoid a warning if -Wall.
20970
20971 2001-10-22  Jeff Bailey  <jbailey@outpost.dnsalias.org>
20972
20973         * README: New file
20974         * doc/*: Add COPYING, COPYING.LIB, COPYING.DOC, fdl.texi
20975         (per RMS's instructions, this is now the canonical source)
20976         * lgpl/, gpl/: New directories.
20977
20978 2001-10-21  Paul Eggert  <eggert@twinsun.com>
20979
20980         * lib/regex.c (uintptr_t): Remove macro and decl; it's config.h's job.
20981
20982 2001-10-21  Jim Meyering  <meyering@lucent.com>
20983
20984         * lib/obstack.c (_): Honor the setting of ENABLE_NLS.  Otherwise,
20985         this code would end up calling gettext even in packages built
20986         with --disable-nls.
20987         * lib/getopt.c (_): Likewise.
20988         * lib/regex.c (_): Likewise.
20989
20990 2001-10-20  Paul Eggert  <eggert@twinsun.com>
20991
20992         * m4/error.m4 (jm_PREREQ_ERROR):
20993         Do not invoke AC_CHECK_FUNCS with strerror_r, as
20994         AC_FUNC_STRERROR_R does that.
20995         Check for strerror declaration.
20996
20997         * m4/strerror_r.m4: Add copyright notice, as nontrivial m4 files
20998         are supposed to have them these days.
20999         (AC_FUNC_STRERROR_R): Always do char* test, so that it gets cached.
21000         Merge changes from latest Autoconf CVS.
21001         Rename ac_cv_func_strerror_r_works to ac_cv_func_strerror_r_char_p,
21002         and rename HAVE_WORKING_STRERROR_R to STRERROR_R_CHAR_P, since
21003         POSIX decided to standardize on the int flavor of strerror_r.
21004
21005 2001-10-20  Paul Eggert  <eggert@twinsun.com>
21006
21007         * lib/error.c (strerror_r): Do not declare unless !_LIBC.
21008         Do not check for HAVE_DECL_STRERROR_R missing unless STRERROR_R_CHAR_P.
21009         Use strerror_r that is only a macro, even if it is not a function.
21010         (strerror): Check for HAVE_DECL_STRERROR before declaring.
21011         (private_strerror): Use prototypes, not old-style function definition.
21012         (print_errno_message): New function.
21013         Support the POSIX 'int'-flavored strerror_r, as well as the traditional
21014         char*-flavored one.
21015         (error_tail, error, error_at_line): Use it.
21016
21017 2001-10-11  Jim Meyering  <meyering@lucent.com>
21018
21019         * lib/argmatch.c (argmatch_invalid): Use quotearg_n_style (0, ...
21020         and quote_n (1, ... to avoid clobbering a buffer.
21021
21022 2001-10-05  Jim Meyering  <meyering@lucent.com>
21023
21024         * lib/Makefile.am: (libfetish_a_SOURCES): Add hash-pjw.c and
21025         hash-pjw.h.
21026         * lib/hash-pjw.c: New file (factored out of fileutils' remove.c).
21027         * lib/hash-pjw.h: New file.
21028
21029 2001-09-30  Jim Meyering  <meyering@lucent.com>
21030
21031         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): See if
21032         `struct fsstat' has the `f_fstypename' member.
21033         Use that to define FS_TYPE, which is now used to make
21034         the getfsstat link test tighter.
21035
21036 2001-09-30  Jim Meyering  <meyering@lucent.com>
21037
21038         * lib/mountlist.c [MOUNTED_GETFSSTAT]:
21039         Include <sys/ucred.h>, for Apple Darwin.
21040         Include sys/mount.h and sys/fs_types.h only if available.
21041         (FS_TYPE): Define.
21042         (read_filesystem_list): Use FS_TYPE.
21043
21044 2001-09-29  Paul Eggert  <eggert@twinsun.com>
21045
21046         * lib/exclude.c (excluded_filename): 0 -> false, since it's
21047         a boolean context.
21048
21049 2001-09-29  Jim Meyering  <meyering@lucent.com>
21050
21051         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS)
21052         [one-argument getmntent function]): Include stdio.h before mntent.h.
21053         SunOS 4.1.x needs it for the declaration of `FILE'.
21054         Patch by Volker Borchert.
21055
21056         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS)
21057         Check for these headers: sys/param.h sys/ucred.h sys/mount.h
21058         sys/fs_types.h, and make the link-test for getfsstat guard #include
21059         directives with appropriate #if HAVE_*_H tests so that we can
21060         detect getfsstat on Apple Darwin1.3.7 systems.
21061         Reported by Nelson Beebe.
21062         Fix harmless typo in cache variable name: s/getsstat/getfsstat/.
21063
21064 2001-09-28  Paul Eggert  <eggert@twinsun.com>
21065
21066         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
21067         #defines strtoimax.  Also treat the other strto* functions
21068         like strtoimax.
21069
21070         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
21071         Check for strtoul and strtoumax,
21072         as those declarations are made even in the signed case.
21073         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX):
21074         Likewise, for strtol and strtoimax.
21075
21076 2001-09-28  Paul Eggert  <eggert@twinsun.com>
21077
21078         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
21079         #defines strtoimax.  Also treat the other strto* functions
21080         like strtoimax.
21081
21082         * lib/xstrtol.c (strtol): Do not declare if HAVE_DECL_STRTOL.
21083         (strtoul): Do not declare if HAVE_DECL_STRTOUL.
21084         (strtoimax, strtoumax): Do not declare if already defined as a macro.
21085
21086 2001-09-26  Jim Meyering  <meyering@lucent.com>
21087
21088         Most macros in unlocked-io.h had the wrong number of arguments.
21089         * lib/gen-uio: New script.
21090         (USE_UNLOCKED_IO): Define to 1 if not already defined.
21091         * lib/unlocked-io.hin: Remove file.
21092         * lib/Makefile.am (unlocked-io.h): Rewrite to use a separate script,
21093         rather than trying to embed it here.
21094         (EXTRA_DIST): Add gen-uio.  Remove unlocked-io.hin
21095         Reported by Padraig Brady.
21096
21097 2001-09-25  Volker Borchert  <bt@teknon.de>
21098
21099         * lib/gettimeofday.c (rpl_gettimeofday): Declare local variable
21100         `result'.
21101
21102 2001-09-24  Jim Meyering  <meyering@lucent.com>
21103
21104         * m4/gettext.m4: Use the version from gettext-0.10.40, not CVS.
21105
21106 2001-09-23  Jim Meyering  <meyering@lucent.com>
21107
21108         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add a compile-test
21109         instead of the mere test for existence of mntent.h.  The latter
21110         would get a false-positive on AIX 3.4 systems.
21111         In the outer getmntent if-block, don't die if neither of the getmntent
21112         tests succeeds.  Instead, just fall through and continue with the
21113         remaining tests.
21114
21115 2001-09-23  Jim Meyering  <meyering@lucent.com>
21116
21117         * lib/mountlist.c: Remove useless parentheses in #if directives.
21118         (MOUNTED) [!defined MOUNTED]: Define to _PATH_MOUNTED, for when
21119         the deprecated MOUNTED symbol is no longer defined in mntent.h.
21120
21121 2001-09-22  Jim Meyering  <meyering@lucent.com>
21122
21123         * m4/gettext.m4: New file.  From gettext.
21124         * m4/lcmessage.m4: Sync with gettext -- this changes only comments.
21125         * m4/progtest.m4: Likewise
21126         * m4/isc-posix.m4: Decrement serial number to sync with gettext.
21127         * m4/glibc21.m4: Likewise.
21128
21129         * m4/libintl.m4: Remove.  No longer used.
21130
21131 2001-09-22  Jim Meyering  <meyering@lucent.com>
21132
21133         * lib/localcharset.c: Update from latest gettext.
21134         * lib/config.charset: Likewise.
21135
21136 2001-09-20  Jim Meyering  <meyering@lucent.com>
21137
21138         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX): Check for declaration of
21139         strtoimax.
21140         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check for declaration of
21141         strtoumax.
21142
21143 2001-09-20  Jim Meyering  <meyering@lucent.com>
21144
21145         * lib/xstrtol.c (strtoimax): Guard declaration with
21146         `#if !HAVE_DECL_STRTOIMAX', rather than just `#ifndef strtoimax'.
21147         The latter fails because some systems (at least rs6000-ibm-aix4.3.3.0)
21148         have their own, conflicting declaration of strtoimax in sys/inttypes.h.
21149         (strtoumax): Likewise, for completeness (it wasn't necessary).
21150
21151 2001-09-17  Paul Eggert  <eggert@twinsun.com>
21152
21153         * lib/strtoimax.c (HAVE_LONG_LONG):
21154         Redefine to HAVE_UNSIGNED_LONG_LONG if unsigned.
21155         (strtoimax): Use sizeof (long), not sizeof strtol (ptr, endptr, base),
21156         to work around bug in IBM C compiler.
21157
21158 2001-09-17  Jim Meyering  <meyering@lucent.com>
21159
21160         * m4/chown.m4, fstypename.m4, getgroups.m4, gettimeofday.m4,
21161         * m4/jm-mktime.m4, lstat.m4, malloc.m4, memcmp.m4, mkdir-slash.m4,
21162         * m4/nanosleep.m4, putenv.m4, readdir.m4, realloc.m4, rename.m4,
21163         * m4/st_dm_mode.m4, stat.m4, strerror_r.m4, timespec.m4, utimbuf.m4,
21164         * m4/utimes.m4: Use AC_DEFINE rather than AC_DEFINE_UNQUOTED,
21165         whenever the right hand side need not be expanded by the shell.
21166
21167 2001-09-16  Paul Eggert  <eggert@twinsun.com>
21168
21169         * m4/fnmatch.m4 (jm_FUNC_FNMATCH): Remove test for GNU C
21170         library.  It's not correct, as some older glibcs are buggy.
21171         fnmatch wasn't fixed until glibc 2.2.
21172
21173         Use AC_DEFINE, not AC_DEFINE_UNQUOTED, as there's no
21174         special shell magic here.
21175
21176 2001-09-16  Jim Meyering  <meyering@lucent.com>
21177
21178         * m4/mkdir-slash.m4 (UTILS_FUNC_MKDIR_TRAILING_SLASH): New file/macro.
21179         * m4/jm-macros.m4: Require it.
21180
21181 2001-09-16  Jim Meyering  <meyering@lucent.com>
21182
21183         * lib/mkdir.c: New file.
21184
21185 2001-09-15  Jim Meyering  <meyering@lucent.com>
21186
21187         * m4/jm-macros.m4: Check for help2man.
21188
21189 2001-09-11  Jim Meyering  <meyering@lucent.com>
21190
21191         * m4/host-os.m4 (UTILS_HOST_OS): New file/macro.
21192         The body, by Paul Eggert, was moved here from configure.in.
21193         * m4/jm-macros.m4: Require UTILS_HOST_OS.
21194
21195 2001-09-04  Paul Eggert  <eggert@twinsun.com>
21196
21197         * m4/prereq.m4 (jm_PREREQ_XREADLINK): New macro.
21198         (jm_PREREQ): Use it.
21199
21200 2001-09-04  Paul Eggert  <eggert@twinsun.com>
21201
21202         * lib/xreadlink.c (xreadlink): Omit size_t* arg.  All uses changed.
21203         Use ssize_t, not int, to store result of readlink.
21204         Check for ssize_t overflow as well as size_t overflow,
21205         as POSIX says the result of readlink is implementation-defined
21206         when ssize_t overflows.
21207         Remove unnecessary cast to char*.
21208         Use free+malloc instead of realloc, as the storage doesn't need
21209         to be preserved and it's clearer and can be more efficient that way.
21210         (SIZE_MAX, SSIZE_MAX): New macros, if <limits.h> doesn't declare.
21211         * lib/xreadlink.h (xreadlink): Update prototype.
21212
21213 2001-09-04  Paul Eggert  <eggert@twinsun.com>
21214
21215         * lib/xgetcwd.c: Revert some of the previous change; intead,
21216         fix the HAVE_GETCWD_NULL code to behave more like the
21217         !HAVE_GETCWD_NULL code used to.
21218
21219         Include "xalloc.h".
21220         (xgetcwd): Do not return NULL when memory is exhausted; instead,
21221         invoke xalloc_die.
21222
21223 2001-09-03  Paul Eggert  <eggert@twinsun.com>
21224
21225         * m4/prereq.m4 (jm_PREREQ_XGETCWD): Check for limits.h and
21226         sys/param.h, as pathmax.h includes them.
21227
21228 2001-09-03  Paul Eggert  <eggert@twinsun.com>
21229
21230         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_XGETCWD.
21231         (jm_PREREQ_XGETCWD): New macro.
21232
21233         * m4/getcwd.m4: New file.
21234
21235 2001-09-03  Paul Eggert  <eggert@twinsun.com>
21236
21237         * lib/xgetcwd.c: Fix the !HAVE_GETCWD_NULL code to behave more
21238         like the HAVE_GETCWD_NULL code.
21239         Include pathmax.h if not HAVE_GETCWD.
21240         Do not include xalloc.h.
21241         (INITIAL_BUFFER_SIZE): New symbol.
21242         Do not use xmalloc / xrealloc, since the caller is responsible for
21243         handling errors.  Preserve errno around `free' during failure.
21244         Do not overrun buffer when using getwd.
21245
21246 2001-09-03  Paul Eggert  <eggert@twinsun.com>
21247
21248         * lib/xgetcwd.c (xgetcwd): Use HAVE_GETCWD_NULL, not (defined
21249         __GLIBC__ && __GLIBC__ >= 2), to decide whether to use
21250         getcwd (NULL, 0).
21251
21252 2001-09-03  Paul Eggert  <eggert@twinsun.com>
21253
21254         * lib/exclude.c (fnmatch_no_wildcards): Fix confusion between
21255         usage of FNM_CASEFOLD and FNM_LEADING_DIR.  The bug was
21256         spotted by Jim Meyering.
21257
21258 2001-09-03  Jim Meyering  <meyering@lucent.com>
21259
21260         * lib/xreadlink.c (xreadlink): Preserve errno around `free' during
21261         failure.
21262
21263 2001-09-02  Jim Meyering  <meyering@lucent.com>
21264
21265         * lib/error.c: Update from GNU libc.
21266
21267 2001-09-01  Jim Meyering  <meyering@lucent.com>
21268
21269         * m4/jm-macros.m4 (jm_MACROS): Check for canonicalize_file_name.
21270         Used by df.
21271
21272 2001-09-01  Jim Meyering  <meyering@lucent.com>
21273
21274         * lib/xreadlink.c: New file.
21275         * lib/xreadlink.h: New file.
21276         * lib/Makefile.am (libfetish_a_SOURCES): Add xreadlink.c and
21277         xreadlink.h.
21278
21279         * lib/regex.c (uintptr_t) [!_LIBC]: Define to private_uintptr_t, so it
21280         doesn't conflict with sparc Solaris 7's definition in
21281         /usr/include/sys/int_types.h.
21282
21283         * lib/exclude.c: Use `""', not `<>' to #include non-system header
21284         files.
21285         (fnmatch_no_wildcards): Rewrite not to use function names, strcasecmp
21286         and strncasecmp as r-values.  Unixware didn't have declarations.
21287
21288 2001-08-31  Paul Eggert  <eggert@twinsun.com>
21289
21290         * lib/xstrtol.h: Add copyright notice.
21291         (_DECLARE_XSTRTOL): Improve quality of diagnostic for
21292         LONGINT_INVALID_SUFFIX_CHAR.
21293
21294 2001-08-31  Paul Eggert  <eggert@twinsun.com>
21295
21296         * lib/xstrtol.c (strtoimax): New decl.
21297
21298 2001-08-31  Paul Eggert  <eggert@twinsun.com>
21299
21300         * lib/xgetcwd.c: Don't include pathmax.h.
21301         Include stdlib.h and unistd.h if available.
21302         Include xalloc.h.
21303         (xmalloc, xstrdup, free): Remove decls.
21304         (xgetcwd): Don't assume sizes fit in unsigned.
21305         Check for overflow when computing sizes.
21306         Simplify reallocation code.
21307
21308 2001-08-31  Paul Eggert  <eggert@twinsun.com>
21309
21310         * lib/savedir.c (savedir): Remove size parameter, as POSIX says that
21311         a directory's st_size can have an arbitrary value, so the old
21312         usage could waste an arbitrary amount of memory.  All uses
21313         changed.
21314         * lib/savedir.h: Update prototype.
21315
21316 2001-08-31  Paul Eggert  <eggert@twinsun.com>
21317
21318         * lib/Makefile.am (libfetish_a_SOURCES): Remove strtoxmax.c.
21319
21320         * lib/strtoimax.c: Renamed from strtoxmax.c, removing the
21321         old strtoimax.c.
21322
21323         Also, make the following further changes to make this file's
21324         configuration more similar to that of strtol.c:
21325         (UNSIGNED): Renamed from STRTOUXMAX_UNSIGNED.  All uses changed.
21326         (strtoumax, uintmax_t, strtoull, strtol): Remove.
21327         (intmax_t, strtoimax, strtol, strtoll): New macros, if UNSIGNED.
21328         (strtoimax): Renamed from strtoumax.  All uses of unsigned values
21329         changed to signed values.
21330
21331         And make the following changes as well:
21332         Fix copyright notice, as 1999 was missing.
21333         (verify): New macro.
21334         (strtoimax): Check sizes at compile-time, not run-time.
21335         Prefer strtol to strtoll if both work.
21336         (main): Remove; it was not that useful and was a pain to maintain.
21337
21338         * lib/strtoumax.c: Include strtoimax.c, not strtouxmax.c.
21339
21340 2001-08-31  Jim Meyering  <meyering@lucent.com>
21341
21342         * lib/xgetcwd.c (xgetcwd): Reorganize to avoid some duplication.
21343         Use an initial, malloc'd, buffer of length 128 rather than
21344         a statically allocated one of length 1024.
21345
21346 2001-08-30  Paul Eggert  <eggert@twinsun.com>
21347
21348         Simplify code, partly by assuming autoconf 2.52 semantics.
21349
21350         * m4/Makefile.am (EXTRA_DIST): Remove uintmax_t.m4.
21351
21352         * m4/inttypes.m4 (AC_PREREQ): Bump to 2.52.
21353         (jm_AC_HEADER_INTTYPES_H): Remove; now done by autoconf in 2.52.
21354         All uses removed.
21355         (jm_AC_TYPE_INTMAX_T, jm_AC_TYPE_UINTMAX_T):
21356         Move AC_REQUIRE to next-to-top level, to avoid confusion.
21357         Use 2.52's AC_CHECK_TYPE instead of merely looking for the header.
21358         * m4/prereq.m4 (jm_PREREQ_HUMAN): Don't require
21359         jm_AC_HEADER_INTTYPES_H.
21360         * m4/jm-macros.m4 (jm_MACROS): Likewise.
21361
21362         * m4/uintmax_t.m4: Remove, as it duplicates inttypes.m4.
21363
21364         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
21365         Quote first arg of AC_DEFUN.
21366         Require jm_AC_TYPE_UINTMAX_T and jm_AC_TYPE_UNSIGNED_LONG_LONG
21367         since they are needed to parse the include file even if we need
21368         only xstrtoimax.  Simplify logic behind the args to AC_REPLACE.
21369         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Likewise,
21370         but with opposite signedness.
21371
21372 2001-08-30  Paul Eggert  <eggert@twinsun.com>
21373
21374         Merge 'exclude' changes from tar 1.13.22.
21375         This fixes one or two unlikely storage allocation overflow bugs,
21376         but doesn't change user-visible behavior otherwise.
21377
21378 2001-08-30  Paul Eggert  <eggert@twinsun.com>
21379
21380         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_EXCLUDE.
21381         (jm_PREREQ_EXCLUDE): New macro.
21382
21383 2001-08-30  Paul Eggert  <eggert@twinsun.com>
21384
21385         * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
21386         tm to be declared.
21387
21388 2001-08-30  Paul Eggert  <eggert@twinsun.com>
21389
21390         * lib/hash.c: Remove '2001' from copyright notice.
21391
21392 2001-08-30  Paul Eggert  <eggert@twinsun.com>
21393
21394         * lib/full-write.h: New file.
21395         * lib/Makefile.am (libfetish_a_SOURCES): Add full-write.h.
21396         * lib/full-write.c: Correct credits, as cccp.c no longer
21397         exists and anyway it was so heavily changed from the old cccp
21398         code as to be unrecognizable.  Include full-write.h.
21399         (full_write) Return size_t, with short writes meaning failure.
21400         All callers changed.  This fixes a bug with large buffers
21401         on 64-bit hosts.
21402         * lib/utime.c: Include full-write.h.
21403
21404 2001-08-30  Paul Eggert  <eggert@twinsun.com>
21405
21406         * lib/exclude.c (bool): Declare, perhaps by including stdbool.h.
21407         (<sys/types.h>): Include only if HAVE_SYS_TYPES_H.
21408         (<stdlib.h>, <string.h>, <strings.h>, <inttypes.h>, <stdint.h>):
21409         Include if available.
21410         (<xalloc.h>): Include
21411         (SIZE_MAX): Define if <stdint.h> or <inttypes.h> doesn't.
21412         (verify): New macro.  Use it to verify that EXCLUDE macros do not
21413         collide with FNM macros.
21414         (struct patopts): New struct.
21415         (struct exclude): Use it, as exclude patterns now come with options.
21416         (new_exclude): Support above changes.
21417         (new_exclude, add_exclude_file):
21418         Initial size must now be a power of two to simplify overflow checking.
21419         (free_exclude, fnmatch_no_wildcards): New function.
21420         (excluded_filename): No longer requires options arg, as the options
21421         are determined by add_exclude.  Now returns bool, not int.
21422         (excluded_filename, add_exclude):
21423         Add support for the fancy new exclusion options.
21424         (add_exclude, add_exclude_file): Now takes int options arg.
21425         Check for arithmetic overflow when computing sizes.
21426         (add_exclude_file): xrealloc might modify errno, so don't
21427         realloc until after errno might be used.
21428
21429         * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE,EXCLUDE_WILDCARDS):
21430         New macros.
21431         (free_exclude): New decl.
21432         (add_exclude, add_exclude_file): Now takes int options arg.
21433         (excluded_filename): No longer requires options arg, as the options
21434         are determined by add_exclude.  Now returns bool, not int.
21435
21436 2001-08-30  Paul Eggert  <eggert@twinsun.com>
21437
21438         * lib/alloca.c (alloca): Arg is of type size_t, not unsigned.
21439
21440 2001-08-27  Jim Meyering  <meyering@lucent.com>
21441
21442         * lib/Makefile.am (libfetish_a_SOURCES): Add strtoxmax.c
21443
21444         * lib/version-etc.c (N_): Remove definition.
21445         Revert most of last change.
21446         Instead, simply don't mark the `Copyright...' string for translation.
21447         Based on advice from Paul Eggert.
21448
21449         * lib/strtoxmax.c: Tweak comment.
21450
21451 2001-08-26  Jim Meyering  <meyering@lucent.com>
21452
21453         * m4/jm-macros.m4: Require jm_AC_PREREQ_XSTRTOIMAX.
21454
21455         * m4/xstrtoimax.m4: New file.
21456         * m4/xstrtoumax.m4: Add comments explaining why we
21457         AC_REPLACE_FUNCS(strtol).
21458
21459 2001-08-26  Jim Meyering  <meyering@lucent.com>
21460
21461         * lib/version-etc.c (version_etc_copyright_fmt): Replace literal year
21462         of copyright with `%s' so translators don't get an untranslated
21463         message in 2002.
21464         (COPYRIGHT_YEAR): Define.
21465         (version_etc): Use fprintf rather than fputs.
21466         Suggestion from Ulrich Drepper.
21467
21468         * lib/Makefile.am (libfetish_a_SOURCES): Add xstrtoimax.c.
21469
21470         * lib/strtoll.c: New file, from GNU libc.
21471         * lib/xstrtoimax.c: New file.
21472
21473         * lib/xstrtol.h: Add xstrtoimax.
21474         * lib/strtoumax.c: New file.  Simply include "strtoumax.c".
21475         * lib/strtoimax.c: New file.  Likewise, but first define
21476         STRTOUXMAX_SIGNED.
21477
21478         * lib/strtoumax.c: Factor to work both for unsigned and signed types,
21479         ...
21480         * lib/strtoxmax.c: ... then renamed to this.
21481
21482 2001-08-18  Paul Eggert  <eggert@twinsun.com>
21483
21484         * m4/inttypes.m4: Add AC_PREREQ(2.13).
21485         (jm_AC_HEADER_INTTYPES_H): Test for intmax_t, too.
21486         (jm_AC_TYPE_INTMAX_T): New macro.
21487         (jm_AC_TYPE_UINTMAX_T): Moved here from uintmax_t.m4.
21488
21489         * m4/longlong.m4 (jm_AC_TYPE_LONG_LONG): New macro.
21490
21491         * m4/longlong.m4: Renamed from ulonglong.m4.
21492         * m4/inttypes.m4: Renamed from inttypes_h.m4.
21493         * m4/uintmax_t.m4: Removed.
21494
21495 2001-08-13  Paul Eggert  <eggert@twinsun.com>
21496
21497         * lib/Makefile.am (unlocked-io.h): Do not append "_unlocked" twice.
21498         Port to Solaris 8, where 'sed' requires a space after the 'r'
21499         command, and where sh dislikes "$/".  Clean up the spacing a bit.
21500         Redirect output to $tmp just once.
21501
21502 2001-08-12  Paul Eggert  <eggert@sic.twinsun.com>
21503
21504         * lib/addext.c (<errno.h>): Include.
21505         (errno): Declare if not defined.
21506         (addext): Work correctly when pathconf returns -1 and leaves
21507         errno alone because there is no limit.  Also, work even if
21508         pathconf returns a value greater than SIZE_MAX.
21509
21510 2001-08-12  Jim Meyering  <meyering@lucent.com>
21511
21512         * m4/afs.m4, assert.m4, bison.m4, check-decl.m4, chown.m4, d-ino.m4,
21513         d-type.m4, dos.m4, error.m4, fnmatch.m4, fpending.m4, fstypename.m4,
21514         fsusage.m4, ftruncate.m4, getgroups.m4, glibc.m4, gnu-source.m4,
21515         group-member.m4, jm-glibc-io.m4, jm-macros.m4, jm-mktime.m4,
21516         jm-winsz1.m4, jm-winsz2.m4, lchown.m4, lib-check.m4, libintl.m4,
21517         link-follow.m4, ls-mntd-fs.m4, lstat.m4, malloc.m4, mbrtowc.m4,
21518         mbstate_t.m4, mbswidth.m4, memcmp.m4, nanosleep.m4, perl.m4,
21519         prereq.m4, putenv.m4, readdir.m4, realloc.m4, regex.m4, rename.m4,
21520         rmdir-errno.m4, search-libs.m4, st_dm_mode.m4, st_mtim.m4, stat.m4,
21521         strftime.m4, timespec.m4, unlink-busy.m4, uptime.m4, utimbuf.m4,
21522         utime.m4, utimes.m4, xstrtoumax.m4:
21523         Quote the first argument in each use of AC_DEFUN.
21524
21525 2001-08-12  Jim Meyering  <meyering@lucent.com>
21526
21527         * lib/xgetcwd.c (xgetcwd) [defined __GLIBC__ && __GLIBC__ >= 2]:
21528         Simply `return getcwd (NULL, 0);'.
21529         [! (defined __GLIBC__ && __GLIBC__ >= 2)]:
21530         Use 1300 as initial value for length, not PATH_MAX.
21531
21532         * lib/pathmax.h: Clean up cpp syntax.
21533
21534 2001-08-12  Jim Meyering  <meyering@lucent.com>
21535
21536         * lib/gettimeofday.c: New file.
21537         * lib/gtod.h: New file.
21538         * lib/Makefile.am (libfetish_a_SOURCES): Add gtod.h.
21539
21540 2001-08-05  Jim Meyering  <meyering@lucent.com>
21541
21542         * m4/jm-macros.m4: Require autoconf-2.52.
21543
21544 2001-08-04  Jim Meyering  <meyering@lucent.com>
21545
21546         * lib/error.h (__attribute__): Remove `|| __STRICT_ANSI__' from #if
21547         stmt, to get in sync with glibc.
21548
21549 2001-08-03  Paul Eggert  <eggert@twinsun.com>
21550
21551         The following changes are from gettext 0.10.39 as maintained by
21552         Bruno Haible.
21553
21554         * lib/mbswidth.h (MBSW_REJECT_UNPRINTABLE, MBSW_REJECT_INVALID):
21555         Renamed from MBSW_ACCEPT_UNPRINTABLE and MBSW_ACCEPT_INVALID
21556         with inverted sense.  All uses changed.
21557
21558         * lib/mbswidth.c: Don't include <limits.h>.
21559         Include <stdlib.h> and <string.h> unconditionally.
21560         (iswcntrl, mbsinit, ISCNTRL): New macros.
21561         (mbsnwidth): Use K&R style function declarations.
21562         Don't bother checking for MB_LEN_MAX == 1, since the compiler
21563         can optimize it when MB_CUR_MAX == 1.
21564         The width of control characters is zero, not 1.
21565
21566 2001-08-03  Paul Eggert  <eggert@twinsun.com>
21567
21568         The following changes are from gettext 0.10.39 as maintained by
21569         Bruno Haible, except that getline.m4 continues to use AC_LIBOBJ.
21570
21571         * m4/codeset.m4: Upgrade to serial AM1.
21572         (AM_LANGINFO_CODESET): Renamed from jm_LANGINFO_CODESET;
21573         all uses changed.  Quote first arg of AC_DEFUN.
21574         (am_cv_langinfo_codeset): Renamed from jm_cv_langinfo_codeset.
21575
21576         * m4/iconv.m4: Upgrade to serial AM2.
21577         (AM_ICONV): Renamed from jm_ICONV; all uses changed.
21578         Add --with-libconv-prefix.
21579         Quote first arg of AC_DEFUN.  Add description for ICONV_CONST.
21580         (am_cv_func_iconv): Renamed from jm_cv_func_iconv.
21581         (am_cv_lib_iconv): Renamed from jm_cv_lib_iconv.
21582         (am_cv_proto_iconv): Renamed from jm_cv_proto_iconv.
21583         * m4/jm-macros.m4 (jm_MACROS): Reflect s/jm_/AM_/ renamings.
21584
21585         * m4/c-bs-a.m4 (AC_C_BACKSLASH_A): Quote first arg of AC_DEFUN.
21586         * m4/getline.m4 (AM_FUNC_GETLINE): Likewise.
21587         * m4/glibc21.m4 (jm_GLIBC21): Likewise.
21588         * m4/inttypes_h.m4 (jm_AC_HEADER_INTTYPES_H): Likewise.
21589         * m4/isc-posix.m4 (AC_ISC_POSIX): Likewise.
21590         * m4/lcmessage.m4 (AM_LC_MESSAGES): Likewise.
21591         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): Likewise.
21592         * m4/uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Likewise.
21593         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Likewise.
21594
21595         * m4/getline.m4 (AM_FUNC_GETLINE): Don't bother checking for
21596         string.h any more.
21597
21598         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): If not found, print "no",
21599         not the default value.
21600
21601         2001-06-25  Bruno Haible  <haible@clisp.cons.org>
21602         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Don't require AM_C_PROTOTYPES.
21603         Also check for mbsinit.  Needed for SCO 3.2v5.0.2.
21604         Also include <string.h>; this is where AIX 3.2.5 declares wcwidth.
21605         Also check for iswcntrl, used for wcwidth fallback.
21606         Use AC_TRY_COMPILE to emulate AC_CHECK_DECLS, for portability
21607         to Autoconf 2.13.
21608
21609 2001-08-03  Jim Meyering  <meyering@lucent.com>
21610
21611         * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): Use `#include', not `@%:@include',
21612         as it was in the original.  Reported by Paul Eggert.
21613
21614 2001-07-16  Jim Meyering  <meyering@lucent.com>
21615
21616         * m4/gettimeofday.m4: New file.
21617         Prompted by a report from Bernhard Baehr.
21618
21619 2001-07-15  Jim Meyering  <meyering@lucent.com>
21620
21621         * m4/Makefile.am.in (Makefile.am): Remove most of the unlocked-io.h
21622         stuff. Now it's in ../Makefile.cfg.
21623
21624 2001-07-15  Jim Meyering  <meyering@lucent.com>
21625
21626         * lib/Makefile.am (EXTRA_DIST): Add unlocked-io.hin.
21627         (BUILT_SOURCES): Add unlocked-io.h.
21628         (io_functions): Define.
21629         (unlocked-io.h): New rule.
21630         (DISTCLEANFILES): Add unlocked-io.h.
21631         (all-local): Depend on unlocked-io.h, to ensure it is created.
21632
21633         * lib/unlocked-io.hin: New file
21634
21635         * lib/regex.c: Update from glibc.
21636
21637 2001-07-05  Jim Meyering  <meyering@lucent.com>
21638
21639         * lib/Makefile.am (noinst_HEADERS): Remove definition, per new automake
21640         recommendation.
21641         (libfetish_a_SOURCES): Put all .h files here instead.
21642         Remove a thus-exposed (better checks in automake) duplicate and
21643         two unnecessary .h files.
21644
21645 2001-07-04  Jim Meyering  <meyering@lucent.com>
21646
21647         * m4/Makefile.am.in (glibc-io.struct): New target.  Rework the code
21648         that generates jm-glibc-io.m4 so that it doesn't trigger any make
21649         distcheck failure.
21650
21651 2001-07-02  Jim Meyering  <meyering@lucent.com>
21652
21653         The following changes were prompted by suggestions from Bruno Haible.
21654
21655         * m4/jm-glibc-io.m4n: New file, the template from which jm-glibc-io.m4
21656         is now generated.
21657         * m4/Makefile.am.in (Makefile.am): Include jm-glibc-io.m4n in emitted
21658         definition of EXTRA_DIST.
21659         (Makefile.am): Emit the dependency, `all-local: jm-glibc-io.m4' to
21660         ensure that the generated file is created/updated whenever the list
21661         of $(unlocked_functions) is changed.
21662         (jm-glibc-io.m4): New rule.
21663         (unlocked-io.h): New rule -- currently unused.
21664
21665 2001-06-24  Jim Meyering  <meyering@lucent.com>
21666
21667         * m4/regex.m4 (jm_INCLUDED_REGEX): Use a quadrigraph to represent an
21668         unmatched right bracket, rather than kludging it with an extra,
21669         falsely-matching quote in a comment.  Patch by Akim Demaille.
21670
21671 2001-06-11  Jim Meyering  <meyering@lucent.com>
21672
21673         * lib/regex.c: Update from GNU libc.
21674
21675 2001-05-27  Jim Meyering  <meyering@lucent.com>
21676
21677         * m4/prereq.m4 (jm_PREREQ_READUTMP): Check for ut_type in struct utmpx.
21678         Check for ut_type in struct utmp.
21679
21680 2001-05-27  Jim Meyering  <meyering@lucent.com>
21681
21682         * lib/readutmp.h (UT_TYPE): Define.
21683
21684 2001-05-24  Jim Meyering  <meyering@lucent.com>
21685
21686         * lib/argmatch.c: Include "quote.h".
21687         (argmatch_invalid): Remove explicit `' quotes.  Instead, use the
21688         quote function.  Reported by Göran Uddeborg.
21689
21690 2001-05-22  Jim Meyering  <meyering@lucent.com>
21691
21692         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't use AC_LIBOBJ(strftime),
21693         now that we use the package-supplied version unconditionally.
21694         (jm_FUNC_STRFTIME): Don't replace strftime, for the same reason.
21695
21696 2001-05-21  Jim Meyering  <meyering@lucent.com>
21697
21698         * m4/regex.m4: Change a couple backticks to single quotes to avoid
21699         shell syntax errors.
21700
21701 2001-05-21  Alexandre Duret-Lutz  <duret_g@epita.fr>
21702
21703         * m4/dos.m4 (jm_AC_DOS): Check for _WIN32, __WIN32__, and __MSDOS__.
21704
21705 2001-05-20  Paul Eggert  <eggert@twinsun.com>
21706
21707         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME):
21708         Don't bother to check library strftime, since
21709         we'll be using our own my_strftime function anyway.
21710         Define my_strftime instead of strftime.
21711
21712 2001-05-20  Alexandre Duret-Lutz  <duret_g@epita.fr>
21713
21714         * lib/dirname.c (dir_name): Compute append_dot using path, not newpath
21715         which is not yet declared.
21716
21717 2001-05-15  Jim Meyering  <meyering@lucent.com>
21718
21719         * m4/regex.m4: Use proper quoting so brackets appear in the test
21720         program.
21721         Reported by, and with help from, Bruno Haible.
21722
21723 2001-05-13  Jim Meyering  <meyering@lucent.com>
21724
21725         * m4/jm-macros.m4 (major_t, minor_t): Define to unsigned int if
21726         undefined.
21727
21728 2001-05-11  Paul Eggert  <eggert@twinsun.com>
21729
21730         dirname code cleanup.  base_name now behaves more compatibly
21731         with POSIX basename when given file names that have trailing
21732         slashes, and similarly for dir_name.  Add new primitives
21733         base_len and dir_len.  Put the directory-name-related decls
21734         into dirname.h.
21735
21736         * lib/addext.c (ISSLASH, base_name): Remove; now in dirname.h.
21737         * lib/backupfile.c (base_name): Likewise.
21738         * lib/basename.c (FILESYSTEM_PREFIX_LEN, PARAMS, ISSLASH): Likewise.
21739         * lib/dirname.c (FILESYSTEM_PREFIX_LEN, ISSLASH): Likewise.
21740         * lib/makepath.c (strip_trailing_slashes): Likewise.
21741         * lib/path-concat.c (DIRECTORY_SEPARATOR, FILESYSTEM_PREFIX_LEN,
21742         ISSLASH): Likewise.
21743         * lib/rename.c (strip_trailing_slashes): Likewise.
21744         * lib/same.c (base_name): Likewise.
21745         * lib/stripslash.c (ISSLASH): Likewise.
21746
21747         * lib/addext.c: Include <dirname.h> after size_t is defined.
21748         * lib/backupfile.c: Likewise.
21749
21750         * lib/addext.c (addext): Use base_len to trim redundant
21751         trailing slashes instead of doing it ourselves.
21752         But do not trim the last slash if it is not redundant.
21753
21754         * lib/backupfile.c (find_backup_file_name,
21755         max_backup_version): Use base_len instead of rolling it ourselves.
21756         Handle the case of "" and (on DOS) "C:" correctly.
21757
21758         * lib/basename.c: Do not include <stdio.h>, <assert.h>; no longer
21759         needed. Include <string.h>, <dirname.h>.
21760         (base_name): Allow file names ending in slashes, other than names
21761         that are all slashes.  In this case, return the basename followed
21762         by the slashes.  This is more general, and can be used in places
21763         where the original base_name purposely had an assertion failure.
21764         (base_len): New function.
21765
21766         * lib/dirname.c: Include <string.h> instead of <stdlib.h>.
21767         Do not include <assert.h>; no longer needed.
21768         Include xalloc.h.
21769         (memrchr): Remove decl.
21770         (dir_name_r): Remove.
21771         (dir_len): Renamed from dirlen.  All callers changed.
21772         Rewrite in terms of base_name, for simplicity and consistency.
21773         (dir_name): Never return NULL.  All callers changed.
21774         Do not include <stdlib.h> in test program; no longer needed.
21775         return 0; is fine for test program.
21776
21777         * lib/dirname.h (DIRECTORY_SEPARATOR, ISSLASH, FILESYSTEM_PREFIX_LEN):
21778         New macros.
21779         (base_name, base_len, dir_len, strip_trailing_slashes): New decls.
21780
21781         * lib/path-concat.c (path_concat): Use base_len to compute
21782         base length, not strlen; this means we cannot rely on memcpy
21783         to null-terminate.
21784
21785         * lib/same.c (STREQ): Remove.
21786         (same_name): Handle the case where the basename ends in trailing '/'.
21787
21788         * lib/stripslash.c (strip_trailing_slashes): Return nonzero if
21789         a slash was stripped.  Do not strip the last slash after a
21790         file system prefix.
21791
21792 2001-05-11  Paul Eggert  <eggert@twinsun.com>
21793
21794         * lib/Makefile.am (libfetish_a_SOURCES):
21795         Add strftime.c, since we now compile it on all hosts.
21796
21797         * lib/strftime.c (my_strftime):
21798         Define to nstrftime if emacs, but only if my_strftime is not defined.
21799         (extra_args, extra_args_spec, extra_args_spec_iso): Rename from
21800         ut_argument, ut_argument_spec, ut_argument_spec_iso, respectively.
21801         Add one more extra argument: a nanoseconds value.
21802         All uses changed.
21803         (ns): New macro.
21804         (my_strftime function): Add %N format.
21805         (emacs_strftimeu): Renamed from emacs_strftime,
21806         with extra ut argument.
21807
21808 2001-05-09  Paul Eggert  <eggert@twinsun.com>
21809
21810         * m4/jm-macros.m4 (jm_MACROS): Do not check for fseeko; no longer used.
21811
21812 2001-04-21  Jim Meyering  <meyering@lucent.com>
21813
21814         * m4/rmdir-errno.m4: Write to a new file, so that a restrictive umask
21815         doesn't interfere.
21816
21817 2001-04-21  Alexandre Duret-Lutz  <duret_g@epita.fr>
21818
21819         * m4/ftruncate.m4: Check for chsize.
21820         Link with ftruncate.o unconditionally if ftruncate is missing.
21821         This was required when cross-compiling to i586-mingw32msvc.
21822
21823 2001-04-08  Jim Meyering  <meyering@lucent.com>
21824
21825         * lib/getdate.y (get_date): Set tm_isdst to -1 to ensure that it is
21826         recomputed; that's necessary when the offset spans a DST transition.
21827         Patch by David J. MacKenzie.  Reported by Hon-Yin Kok.
21828
21829 2001-04-02  Jim Meyering  <meyering@lucent.com>
21830
21831         * lib/regex.h, regex.c: Update from GNU libc.
21832
21833 2001-03-24  Jim Meyering  <meyering@lucent.com>
21834
21835         * m4/jm-macros.m4: Require autoconf-2.49d.
21836
21837 2001-03-20  Bruno Haible  <haible@clisp.cons.org>
21838
21839         * m4/iconv.m4 (jm_ICONV): Recommend GNU libiconv.
21840
21841 2001-03-19  Paul Eggert  <eggert@twinsun.com>
21842
21843         * lib/version-etc.c (version_etc_copyright): Update to 2001.
21844
21845 2001-03-17  Jim Meyering  <meyering@lucent.com>
21846
21847         * m4/memcmp.m4 (jm_AC_FUNC_MEMCMP): Remove my copy of AC_FUNC_MEMCMP,
21848         now that the version in autoconf is equivalent.
21849         (jm_FUNC_MEMCMP): Adjust to use AC_FUNC_MEMCMP.
21850
21851         * m4/error.m4 (jm_PREREQ_ERROR): Invoke AC_FUNC_STRERROR_R.
21852         Suggestion from Akim Demaille.
21853
21854         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_TEMPNAME.
21855         (jm_PREREQ_TEMPNAME): New function.
21856
21857 2001-03-16  Paul Eggert  <eggert@twinsun.com>
21858
21859         * lib/tempname.c (uint64_t): Define to uintmax_t if
21860         not defined, and if UINT64_MAX is not defined.
21861         Required at least for Vax Ultrix4.3, which doesn't define uint64_t.
21862         Reported by John David Anglin.
21863
21864 2001-03-15  Bruno Haible  <haible@clisp.cons.org>
21865
21866         * lib/localcharset.c (locale_charset): Allow wildcard syntax. Also
21867         resolve alias if codeset is empty.
21868         * lib/config.charset (BeOS): Use wildcard syntax.
21869
21870 2001-03-13  Jim Meyering  <meyering@lucent.com>
21871
21872         * lib/path-concat.c (path_concat)
21873         [FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]: Don't insert a backslash when
21874         concatenating e.g., `C:' and `foo'.
21875         From Bruno Haible.
21876
21877 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
21878
21879         * lib/localcharset.c (locale_charset): Don't use
21880         setlocale(LC_CTYPE,NULL). Don't return NULL.
21881         * lib/unicodeio.c (print_unicode_char): Simplify accordingly.
21882
21883 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
21884
21885         * lib/config.charset: Update for FreeBSD 4.2 and OSF/1 5.1. Add
21886         support for DOS/DJGPP.
21887
21888 2001-03-01  Paul Eggert  <eggert@twinsun.com>
21889
21890         * m4/jm-macros.m4 (jm_MACROS): Use mkstemp replacement if the system
21891         lacks mkstemp.  Compile our own tempname.c if we compile our own
21892         mkstemp.c, as mkstemp relies on tempname.
21893
21894 2001-03-01  Jim Meyering  <meyering@lucent.com>
21895
21896         * m4/dos.m4 (jm_AC_DOS): Remove extra backslashes, now that
21897         AH_VERBATIM really does output its argument verbatim.
21898
21899 2001-02-28  Paul Eggert  <eggert@twinsun.com>
21900
21901         * lib/Makefile.am (libfetish_a_SOURCES):
21902         Add dup-safer.c, fopen-safer.c.
21903         (noinst_HEADERS): Add stdio-safer.h, unistd-safer.h.
21904
21905         * lib/dup-safer.c, lib/fopen-safer.c, lib/stdio-safer.h:
21906         * lib/unistd-safer.h: New files.
21907
21908 2001-02-25  Paul Eggert  <eggert@twinsun.com>
21909
21910         The mkstemp replacement is taken from glibc 2.2.2, with some
21911         portability fixes for use outside glibc, as follows:
21912
21913         * lib/tempname.c (struct_stat64): New macro.
21914         (direxists, __gen_tempname): Use it.
21915         This avoids a portability problem with Solaris 8.
21916
21917         * lib/tempname.c (<config.h>): Include if HAVE_CONFIG_H.
21918         (<stddef.h>, <stdint.h>, <string.h>):
21919         Include only if STDC_HEADERS || _LIBC.
21920         (<fcntl.h>): Include only if HAVE_FCNTL_H || _LIBC.
21921         (<unistd.h>): Include only if HAVE_UNISTD_H || _LIBC.
21922         (<sys/time.h>): Include only if HAVE_SYS_TIME_H || _LIBC.
21923         (__set_errno): Define this macro if <errno.h> doesn't.
21924         (P_tmpdir, TMP_MAX, __GT_FILE, __GT_BIGFILE, __GT_DIR, __GT_NOCREATE):
21925         Define these macros if <stdio.h> doesn't.
21926         (S_ISDIR, S_IRUSR, S_IWUSR, S_IXUSR):
21927         Define these macros if <sys/stat.h>
21928         doesn't.  Ignore <sys/stat.h> S_ISDIR if STAT_MACROS_BROKEN.
21929         (stat64, __getpid, __gettimeofday, __mkdir, __open, __open64, lxstat64,
21930         __xstat64): Define if not _LIBC.
21931         (__secure_getenv): Define if ! (HAVE___SECURE_GETENV || _LIBC).
21932         (__gen_tempname): Invoke gettimeofday only if
21933         HAVE_GETTIMEOFDAY || _LIBC;
21934         otherwise, fall back on plain "time".
21935         Use macros like S_IRUSR | S_IWUSR rather than octal values like 0600.
21936
21937         * lib/mkstemp.c (__GT_FILE): Define to zero if not defined.
21938
21939         * lib/mkstemp.c, lib/tempname.c: New files, taken from glibc 2.2.2.
21940
21941 2001-02-18  Paul Eggert  <eggert@twinsun.com>
21942
21943         * m4/jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for sys/resource.h.
21944
21945 2001-02-17  Paul Eggert  <eggert@twinsun.com>
21946
21947         * m4/mbrtowc.m4: New file, defining jm_FUNC_MBRTOWC.
21948         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH):
21949         Use jm_FUNC_MBRTOWC, not AC_CHECK_FUNCS(mbrtowc).
21950         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Likewise.
21951
21952 2001-02-17  Paul Eggert  <eggert@twinsun.com>
21953
21954         * lib/mbswidth.c, quotearg.c (mbrtowc, mbsinit):
21955         Remove workaround macros for hosts that have mbrtowc but not
21956         mbstate_t, as we now insist on proper declarations for both
21957         before using mbrtowc.
21958
21959 2001-02-17  Jim Meyering  <meyering@lucent.com>
21960
21961         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Don't check for
21962         getmntent via AC_CHECK_FUNCS, since that would get a `no' and disrupt
21963         further attempts by AC_FUNC_GETMNTENT to check with e.g., -lgen on
21964         UnixWare 7.1.1.
21965
21966         * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): Adapt to use AC_CACHE_CHECK etc.,
21967         rather than AC_CACHE_VAL.
21968
21969 2001-02-17  Jim Meyering  <meyering@lucent.com>
21970
21971         * lib/strtoul.c: Sync from GNU libc.  Use double quotes, not <...>
21972         around included file name.
21973
21974         * lib/strnlen.c (__strnlen): Merge in a change from GNU libc.
21975
21976         * lib/strftime.c: Update from GNU libc (the only changes were to
21977         comments).
21978
21979 2001-02-17  Jim Meyering  <meyering@lucent.com>
21980
21981         * lib/regex.c: Update from libc.
21982
21983 2001-02-17  Bruno Haible  <haible@clisp.cons.org>
21984
21985         * lib/mbswidth.h (mbswidth): Also define as macro, to avoid prototype
21986         clash.
21987
21988 2001-02-16  Paul Eggert  <eggert@twinsun.com>
21989
21990         * lib/alloca.c (malloc): Undef before defining, since stdlib.h
21991         may have defined it.  Needed for Encore Umax-3.0.9.16b systems.
21992         Reported by Mark Hounschell via Paul Eggert.
21993
21994 2001-02-07  Jim Meyering  <meyering@lucent.com>
21995
21996         * m4/regex.m4 (jm_INCLUDED_REGEX): Add a test for the latest bug.
21997
21998 2001-02-05  Jim Meyering  <meyering@lucent.com>
21999
22000         * m4/jm-macros.m4: Require autoconf-2.14d (not yet released), because
22001         it includes the patch required for `large file' support with at least
22002         HP-UX's 10.20 /bin/cc.
22003
22004 2001-02-03  Jim Meyering  <meyering@lucent.com>
22005
22006         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Restore prior use of
22007         AS_IF, now that it works once again (mysteriously).
22008         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise.
22009
22010 2001-01-30  Jim Meyering  <meyering@lucent.com>
22011
22012         Don't use filenames that are 8.3-equivalent to "conftest" on DOS.
22013         * m4/chown.m4: Rename conftestchown to conftest.chown.
22014         * m4/rename.m4: s/conftestdir/conftest.d1/ and
22015         s/conftestdir2/conftest.d2/.
22016         * m4/utimes.m4: s/conftestdata/conftest.data/
22017         Inspired by Pavel Roskin's change in autoconf.
22018
22019 2001-01-30  Bruno Haible  <haible@clisp.cons.org>
22020
22021         * lib/config.charset: Update for FreeBSD 4.2.
22022
22023 2001-01-27  Jim Meyering  <meyering@lucent.com>
22024
22025         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Open-code what was
22026         a use of AS_IF.
22027         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise.
22028
22029 2001-01-26  Jim Meyering  <meyering@lucent.com>
22030
22031         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for stddef.h, now that
22032         quotearg.c includes it.
22033
22034 2001-01-26  Jim Meyering  <meyering@lucent.com>
22035
22036         * lib/quotearg.c: Include stddef.h.
22037         * lib/quote.c: Include stddef.h.
22038         Reported by Axel Kittenberger.
22039
22040         * lib/xmalloc.c [HAVE_DONE_WORKING_MALLOC_CHECK]: Enclose error-evoking
22041         line in double quotes so that it evokes a better diagnostic.
22042         [HAVE_DONE_WORKING_REALLOC_CHECK]: Likewise.
22043         Reported by Axel Kittenberger.
22044
22045 2001-01-24  Stefan Monnier  <monnier@cs.yale.edu>
22046
22047         * regex.c (mutually_exclusive_p): Don't blindly handle `charset_not'
22048         as if it was a `charset'.
22049
22050 2001-01-21  Bruno Haible  <haible@clisp.cons.org>
22051
22052         * m4/iconv.m4 (jm_ICONV): Also check whether the iconv declaration
22053         has const.
22054
22055 2001-01-21  Bruno Haible  <haible@clisp.cons.org>
22056
22057         * lib/unicodeio.c (print_unicode_char): Cast the second iconv() arg,
22058         to avoid a warning.  Add back 'const' to inptr.
22059
22060 2001-01-20  Jim Meyering  <meyering@lucent.com>
22061
22062         Be sure that headers are checked before used in code compiled
22063         for the type checks.
22064         * m4/jm-macros.m4 (jm_MACROS): Remove all header checks.
22065         In place of that, invoke jm_CHECK_ALL_TYPES.
22066         (jm_CHECK_ALL_HEADERS): New functions with the above checks.
22067         (jm_CHECK_ALL_TYPES): Require jm_CHECK_ALL_HEADERS.
22068         Alan Iwi reported a build failure on an f300-fujitsu-uxpv4.1_ES;
22069         The check for ssize_t was mistakenly run before the test for unistd.h.
22070
22071         The configure-time check for stdbool.h was missing.
22072         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_HASH.
22073         (jm_PREREQ_HASH): New function.
22074
22075 2001-01-17  Jim Meyering  <meyering@lucent.com>
22076
22077         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use AS_IF, not AS_IFELSE,
22078         for autoconf-2.49c.
22079         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Likewise.
22080
22081 2001-01-16  Jim Meyering  <meyering@lucent.com>
22082
22083         * lib/basename.c: Include <stdio.h>, needed by assert on SunOS 4.
22084         From Bruno Haible.
22085
22086 2001-01-14  Jim Meyering  <meyering@lucent.com>
22087
22088         * m4/rename.m4: Use temporary directories named conftestdir{,2}, not
22089         foo and bar.  Create conftestdir/ in the script, not in the C code.
22090         Remove directories in the script, not in the C code.
22091         Remove conftestdir{,2} before trying to create the directory.
22092         Make the entire configure script fail if the mkdir fails.
22093
22094 2001-01-14  Jim Meyering  <meyering@lucent.com>
22095
22096         * lib/rename.c: New file.  From Volker Borchert.
22097         Include stdlib.h, string.h or strings.h, and xalloc.h.
22098         Use strip_trailing_slashes rather than open-coding it.
22099
22100 2001-01-03  Paul Eggert  <eggert@twinsun.com>
22101
22102         * lib/strftime.c: Sync with glibc time/strftime.c 1.81.
22103
22104 2001-01-03  Jim Meyering  <meyering@lucent.com>
22105
22106         * lib/unicodeio.c (print_unicode_char): Remove `const' from declaration
22107         of local `inptr' to avoid warning with some system declarations of
22108         iconv.
22109
22110 2001-01-02  Volker Borchert  <bt@teknon.de>
22111
22112         * m4/rename.m4: New file.
22113         * m4/jm-macros.m4 (jm_MACROS): Require vb_FUNC_RENAME.
22114
22115 2001-01-01  Jim Meyering  <meyering@lucent.com>
22116
22117         * m4/prereq.m4 (jm_PREREQ_READUTMP): Include utmp.h (if available),
22118         even on systems with utmpx.h.  It's necessary for the declaration of
22119         utmp's ut_user member.  Reported by Andreas Jaeger.
22120
22121         * m4/check-decl.m4 (jm_CHECK_DECLS): Include grp.h and pwd.h if
22122         available. They are required for the declarations of getgrgid and
22123         getpwuid resp.
22124         (_jm_DECL_HEADERS): Check for grp.h and pwd.h.
22125         Reported by Andreas Jaeger.
22126
22127 2001-01-01  Alexandre Duret-Lutz  <duret_g@epita.fr>
22128
22129         * m4/libintl.m4 (AM_GNU_GETTEXT): Define MKINSTALLDIRS by
22130         expanding the value of $ac_aux_dir, as in AM_MISSING_HAS_RUN,
22131         so `make install' also works in VPATH builds.
22132
22133 2000-12-31  Alexandre Duret-Lutz  <duret_g@epita.fr>
22134
22135         * m4/libintl.m4 (AM_WITH_NLS): When using AC_CONFIG_AUX_DIR,
22136         prepend $(top_srcdir) to the value of MKINSTALLDIRS so that it
22137         can be used in subdirectories.
22138
22139 2000-12-29  Paul Eggert  <eggert@twinsun.com>
22140
22141         * lib/modechange.c: Do not assume that mode_t uses the
22142         traditional octal encoding.  E.g. "chmod 1 FOO" should set
22143         the other-execute bit of FOO even if S_IXOTH != 1.
22144
22145         (SUID, SGID, SVTX, RUSR, WUSR, XUSR, RGRP, WGRP, XGRP, ROTH,
22146         WOTH, XOTH, ALLM): New macros.
22147         (S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR,
22148          S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH):
22149         Use them.
22150         (S_ISGID): Fix typo; it was defaulting to the same value as S_ISUID.
22151         (S_IRWXU, S_IRWXG, S_IRWXO): Specify defaults in terms of the above.
22152         (mode_compile):
22153         No need to use uintmax_t; unsigned long is long enough.
22154         Don't bother to get suffix since we don't use it.
22155
22156 2000-12-26  Jim Meyering  <meyering@lucent.com>
22157
22158         * m4/dos.m4 (jm_AC_DOS): Rewrite (though it's still a stub) to work
22159         better with autoheader.
22160
22161 2000-12-24  Jim Meyering  <meyering@lucent.com>
22162
22163         * lib/hash.c (is_prime): Return explicit boolean values.
22164         (hash_get_first): Return NULL to appease Irix5.6's 89.
22165         Reported by Nelson Beebe.
22166
22167 2000-12-19  Bruno Haible  <haible@clisp.cons.org>
22168
22169         * lib/localcharset.c (locale_charset): Add support for Win32.
22170
22171 2000-12-18  Paul Eggert  <eggert@twinsun.com>
22172
22173         * lib/physmem.h, lib/physmem.c: New files.
22174
22175         * lib/Makefile.am (libfetish_a_SOURCES): Add physmem.c.
22176         (noinst_HEADERS): Add physmem.h.
22177
22178         * lib/xstrtol.c (__xstrtol): Add undocumented suffixes 'g' and
22179         't' for compatibility with Solaris 8 sort.
22180
22181 2000-12-18  Bruno Haible  <haible@clisp.cons.org>
22182
22183         * lib/config.charset: Add support for BeOS.
22184
22185 2000-12-17  Jim Meyering  <meyering@lucent.com>
22186
22187         * m4/dos.m4 (jm_AC_DOS): New file and macro.
22188         * m4/jm-macros.m4 (jm_MACROS): Require jm_AC_DOS.
22189
22190 2000-12-16  Jim Meyering  <meyering@lucent.com>
22191
22192         This bug had a serious impact on chown: `chown N:M FILE' (for integer
22193         N and M) would have treated it like `chown N:N FILE'.
22194
22195         * lib/userspec.c (parse_user_spec): Fix typo: s/u/g/.
22196
22197 2000-12-16  Jim Meyering  <meyering@lucent.com>
22198
22199         * lib/getusershell.c [!SHELLS_FILE && __DJGPP__]: Define
22200         SHELLS_FILE to a file name that's useful on djgpp systems.
22201         Include stdlib.h.
22202         (ADDITIONAL_DEFAULT_SHELLS): Define.
22203         (default_shells): Prepend ADDITIONAL_DEFAULT_SHELLS.
22204         Based mostly on a patch from Prashant TR.
22205
22206 2000-12-16  Bruno Haible  <haible@clisp.cons.org>
22207
22208         * lib/config.charset: Add ISO-8859-3, BIG5HKSCS, GB18030, JOHAB,
22209         VISCII, CP874, CP949, CP950, CP1250, CP1253, CP1254, CP1255, CP1256,
22210         CP1257 to the list of canonical encodings. Rename EUC-CN to GB2312.
22211
22212 2000-12-08  Andreas Schwab  <schwab@suse.de>
22213
22214         * lib/mbswidth.c (mbsnwidth): Don't loop endlessly when called with an
22215         invalid mulitbyte sequence and with the MBSW_ACCEPT_INVALID flag set.
22216
22217 2000-12-07  Jim Meyering  <meyering@lucent.com>
22218
22219         * lib/stripslash.c (ISSLASH): Define.
22220         (strip_trailing_slashes): Use ISSLASH rather than comparing against
22221         `/'.
22222         From Prashant TR.
22223
22224         * lib/dirname.c (FILESYSTEM_PREFIX_LEN): Define.
22225         (dir_name_r): Declare this function as static.
22226         [BACKSLASH_IS_PATH_SEPARATOR]: Fix a bug that'd
22227         manifest itself on a name containing a mix of slashes and
22228         backslashes.
22229         Make this function work with names starting with a DOS-style
22230         drive letter and colon prefix.
22231         (dir_name): Append `.' if necessary.
22232         Based mostly on patches from Prashant TR and Eli Zaretskii.
22233
22234         * lib/dirname.h (dir_name_r): Remove prototype.
22235
22236 2000-12-06  Paul Eggert  <eggert@twinsun.com>
22237
22238         * m4/off_t-format.m4: Remove this file.
22239         * m4/jm-macros.m4 (jm_MACROS): Remove jm_SYS_OFF_T_PRINTF_FORMAT.
22240
22241 2000-12-06  Jim Meyering  <meyering@lucent.com>
22242
22243         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): If we need the
22244         replacement strtoull, we may well need the replacement strtoul, too.
22245         Check for declarations of strtoul and strtoull.
22246         Check for strtol.  Mainly as a cue to cause automake to include
22247         strtol.c -- that file is included by each of strtoul.c and strtoull.c.
22248         Check for limits.h -- strtol.c needs it.
22249
22250 2000-12-05  Jim Meyering  <meyering@lucent.com>
22251
22252         * lib/dirname.c (dir_name_r): Add `const' in a few local declarations.
22253
22254 2000-12-04  Jim Meyering  <meyering@lucent.com>
22255
22256         * lib/path-concat.c: [!HAVE_DECL_MALLOC]: Declare malloc.
22257         Also include memory.h, stdlib.h, unistd.h if appropriate.
22258         Reported by Andreas Jaeger (conflicting declaration of malloc).
22259
22260 2000-12-02  Jim Meyering  <meyering@lucent.com>
22261
22262         * m4/off_t-format.m4 (OFF_T_PRINTF_FORMAT_STRING): New file/macro.
22263         * m4/jm-macros.m4 (jm_MACROS): require it.
22264
22265 2000-12-02  Jim Meyering  <meyering@lucent.com>
22266
22267         * lib/closeout.h: Make idempotent, to avoid some obscure warnings.
22268
22269 2000-12-01  Paul Eggert  <eggert@twinsun.com>
22270
22271         * lib/memrchr.c: Include <config.h> before any system include file.
22272
22273 2000-11-30  Jim Meyering  <meyering@lucent.com>
22274
22275         * m4/jm-macros.m4 (jm_MACROS): Check for stdint.h.
22276
22277 2000-11-30  Jim Meyering  <meyering@lucent.com>
22278
22279         * m4/getloadavg.m4: s/ifval/m4_ifval/ to accommodate new autoconf.
22280
22281 2000-11-29  Paul Eggert  <eggert@twinsun.com>
22282
22283         * lib/dirname.c (dir_name_r): Fix typo: int -> size_t.
22284
22285 2000-11-26  Jim Meyering  <meyering@lucent.com>
22286
22287         * lib/memcoll.c: Include sys/types.h.  From Werner Almesberger.
22288
22289 2000-11-22  Paul Eggert  <eggert@twinsun.com>
22290
22291         * lib/strftime.c (my_strftime): Do not invoke mbrlen with a
22292         size of (size_t) -1; it's not portable.
22293
22294 2000-11-17  Jim Meyering  <meyering@lucent.com>
22295
22296         * lib/strstr.c: Update from GNU libc.
22297
22298 2000-11-17  Akim Demaille  <akim@epita.fr>
22299
22300         * lib/obstack.h: Formatting changes.
22301         (obstack_grow, obstack_grow0): Don't cast WHERE at all: that would
22302         prevent type checking.
22303         (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
22304         cast the value to (void *): assigning a `foo *' to a `void *'
22305         variable is valid.
22306         (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
22307
22308 2000-11-16  Jim Meyering  <meyering@lucent.com>
22309
22310         * lib/strverscmp.c: Incorporate weak-alias-related changes from glibc.
22311
22312 2000-11-11  Jim Meyering  <meyering@lucent.com>
22313
22314         * lib/error.c: Add a couple #includes, merging from GNU libc version.
22315
22316 2000-11-10  Jim Meyering  <meyering@lucent.com>
22317
22318         * lib/obstack.h: Update from GNU libc.
22319         * lib/obstack.c: Likewise.
22320
22321 2000-11-08  Bruno Haible  <haible@clisp.cons.org>
22322
22323         * m4/jm-macros.m4 (jm_MACROS): Add test for wcrtomb.
22324
22325 2000-11-06  Paul Eggert  <eggert@twinsun.com>
22326
22327         * lib/getusershell.c (setusershell): Use rewind rather than
22328         fseek/fseeko, to avoid configuration hassles with fseeko.
22329         Don't bother opening SHELLS_FILE if shellstream is NULL;
22330         it's not necessary.
22331
22332 2000-11-05  Jim Meyering  <meyering@lucent.com>
22333
22334         * lib/makepath.h (make_dir): Declare.
22335         * lib/makepath.c (make_dir): Remove `static' attribute.
22336         Tweak a comment.
22337
22338 2000-11-04  Jim Meyering  <meyering@lucent.com>
22339
22340         * m4/regex.m4: Use the `m4_' prefix on `syscmd' and `m4_sysval'.
22341
22342 2000-11-04  Alexandre Duret-Lutz  <duret_g@epita.fr>
22343
22344         * lib/hash.c (hash_get_next): Fix a thinko:  when ENTRY is the
22345         last one in a bucket, advance to the next bucket.
22346
22347 2000-11-02  Vesselin Atanasov  <vesselin@bgnet.bg>
22348
22349         * lib/fnmatch.c: Do not comment out all the code if we are using
22350         the GNU C library, because in some cases we are replacing buggy
22351         code in the GNU C library itself.
22352
22353 2000-10-30  Stefan Monnier  <monnier@cs.yale.edu>
22354
22355         * regex.c (re_iswctype, re_wctype_to_bit): Fix braino.
22356         (regex_compile): Catch bogus \(\1\).
22357
22358 2000-10-30  Paul Eggert  <eggert@twinsun.com>
22359
22360         * lib/fnmatch.c (FOLD): Do not assume that characters are unsigned.
22361         (fnmatch): Fix some FNM_FILE_NAME and FNM_LEADING_DIR bugs,
22362         e.g. fnmatch("d*/*1", "d/s/1", FNM_FILE_NAME) incorrectly yielded zero.
22363
22364 2000-10-30  Paul Eggert  <eggert@twinsun.com>
22365
22366         * lib/error.h, getline.h, modechange.h:
22367         Remove "2000" from Copyright line, as the file hasn't been
22368         changed this year other than in the copyright notice.
22369
22370         * lib/xalloc.h: Add "2000" to Copyright line, as this file
22371         was changed this year.
22372
22373 2000-10-29  Jim Meyering  <meyering@lucent.com>
22374
22375         * m4/fsusage.m4: s/AC_SHELL_IFELSE/AS_IFELSE/ to match autoconf
22376         renaming.
22377         * m4/ls-mntd-fs.m4: Likewise
22378
22379 2000-10-29  Jim Meyering  <meyering@lucent.com>
22380
22381         * lib/xstat.in: Fix grammar in comment.
22382
22383 2000-10-29  Greg Louis  <glouis@dynamicro.on.ca>
22384
22385         * lib/regex.h (__restrict_arr): Move definition out of #ifndef block.
22386         Required because egcs-2.91.66 (aka 1.1.2) defines __restrict, but
22387         doesn't define __restrict_arr.
22388
22389 2000-10-28  Jim Meyering  <meyering@lucent.com>
22390
22391         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_MEMCHR.
22392         (jm_PREREQ_MEMCHR): New function.
22393
22394 2000-10-28  Jim Meyering  <meyering@lucent.com>
22395
22396         * lib/memchr.c: Update from libc.
22397         Adjust for portability:
22398         [HAVE_STDLIB_H]: Include stdlib.h.
22399         [HAVE_BP_SYM_H || _LIBC]: Guard inclusion of bp-sym.h.
22400         Undef __memchr, too.
22401         [!weak_alias]: Define __memchr to memchr.
22402
22403         * lib/regex.c: Update from libc.
22404         * lib/regex.h: Likewise.
22405         * lib/getopt1.c: Likewise.
22406         * lib/memcmp.c: Likewise.
22407
22408         * lib/getusershell.c (setusershell) [HAVE_FSEEKO]: Use fseeko.
22409         Avoid using fseek, when possible -- it's broken by design.
22410         Patch by Ulrich Drepper.
22411
22412 2000-10-27  Stefan Monnier  <monnier@cs.yale.edu>
22413
22414         * regex.c (POP_FAILURE_REG_OR_COUNT, re_match_2_internal)
22415         (re_match_2_internal, re_match_2_internal, re_match_2_internal):
22416         Giving in to popular pressure to shut up the compiler with casts.
22417
22418 2000-10-26  Jim Meyering  <meyering@lucent.com>
22419
22420         * lib/strftime.c: Update from libc.
22421
22422 2000-10-25  Stefan Monnier  <monnier@cs.yale.edu>
22423
22424         * regex.c: More `unsigned char' -> `re_char' changes.
22425         Also change several `int' into `re_wchar_t'.
22426         (PATTERN_STACK_EMPTY, PUSH_PATTERN_OP, POP_PATTERN_OP): Remove.
22427         (PUSH_FAILURE_POINTER): Don't cast any more.
22428         (POP_FAILURE_REG_OR_COUNT): Remove the cast that strips `const'.
22429         We want GCC to complain, since this piece of code makes
22430         re_match non-reentrant, which *should* be fixed.
22431         (GET_BUFFER_SPACE): Use size_t rather than unsigned long.
22432         (EXTEND_BUFFER): Use RETALLOC.
22433         (SET_LIST_BIT): Don't cast.
22434         (re_wchar_t): New type.
22435         (re_iswctype, re_wctype_to_bit): Make it crystal clear to GCC
22436         that those two functions will always properly return.
22437         (IMMEDIATE_QUIT_CHECK): Cast to void.
22438         (analyse_first): Use recursion rather than an explicit stack.
22439         (re_compile_fastmap): Can't fail anymore.
22440         (re_search_2): Don't check re_compile_fastmap for failure.
22441         (PUSH_NUMBER): Renamed from PUSH_FAILURE_COUNT.
22442         Now also sets the new value (passed in a new argument).
22443         (re_match_2_internal): Use it.
22444         Also, use a new var `reg' of type size_t when looping through regs
22445         rather than reuse the inappropriate `mcnt'.
22446
22447 2000-10-25  Jim Meyering  <meyering@lucent.com>
22448
22449         * lib/obstack.c: Update from libc.
22450
22451 2000-10-24  Kenichi Handa  <handa@etl.go.jp>
22452
22453         * regex.c (regex_compile): Change the way of handling a range from
22454         a char less than 256 to a char not less than 256.
22455
22456 2000-10-24  Andrew Innes  <andrewi@gnu.org>
22457
22458         * regex.c (IMMEDIATE_QUIT_CHECK): New macro, which does QUIT on
22459         NT-Emacs only.
22460         (re_match_2_internal): Use IMMEDIATE_QUIT_CHECK instead of QUIT,
22461         so that re_search functions only quit when callers expect them to.
22462
22463 2000-10-23  Jim Meyering  <meyering@lucent.com>
22464
22465         * lib/hard-locale.c (hard_locale): Revert last change -- it was simply
22466         wrong.  That set_locale call must not have any side effects.
22467         From Paul Eggert.
22468
22469 2000-10-22  Jim Meyering  <meyering@lucent.com>
22470
22471         * lib/md5.c (md5_process_block) [OP]: Use `rol', not CYCLIC.
22472         [CYCLIC]: Remove now-unused definition.
22473
22474         * lib/save-cwd.c (O_DIRECTORY): Define, if needed.
22475         (save_cwd) [HAVE_FCHDIR]: Use O_DIRECTORY when opening ".".
22476         Suggestion from Ulrich Drepper.
22477
22478 2000-10-21  Jim Meyering  <meyering@lucent.com>
22479
22480         * m4/check-decl.m4 (jm_CHECK_DECLS): Also check for memrchr.
22481         * m4/prereq.m4 (jm_PREREQ_DIRNAME): New macro.
22482         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memrchr.
22483
22484 2000-10-21  Jim Meyering  <meyering@lucent.com>
22485
22486         * lib/dirname.c (memrchr): Declare if necessary.
22487         (dir_name): Remove the restriction that there be no
22488         trailing slashes.  Now, this code skips past them, effectively
22489         ignoring them.
22490         [TEST_DIRNAME] (main): New unit tests.
22491
22492         * lib/memrchr.c: New file from GNU libc.
22493         Undef __memrchr, too.
22494         [!weak_alias]: Define __memrchr to memrchr.
22495         Guard weak_alias use with `#ifdef weak_alias'.
22496
22497 2000-10-21  Jim Meyering  <meyering@lucent.com>
22498
22499         * lib/dirname.c (dir_name_r): New function, factored out of dir_name.
22500         (dir_name): Use dir_name_r.
22501         * lib/dirname.h (dir_name_r): Declare it.
22502
22503 2000-10-17  Jim Meyering  <meyering@lucent.com>
22504
22505         * lib/quote.h (PARAMS): Define and use.
22506         Reported by Akim Demaille.
22507
22508         * lib/getopt.c: Update from libc.
22509
22510 2000-10-16  Jim Meyering  <meyering@lucent.com>
22511
22512         * lib/hard-locale.c (hard_locale): Use "", not 0 as 2nd arg to
22513         setlocale.
22514         From Jan Fedak.
22515
22516 2000-10-15  Stefan Monnier  <monnier@cs.yale.edu>
22517
22518         * regex.c (WIDE_CHAR_SUPPORT): Define if _LIBC as well.
22519
22520 2000-09-25  Jim Meyering  <meyering@lucent.com>
22521
22522         * lib/md5.h (rol): Define (from GnuPG).
22523
22524         * lib/sha.c: Give credit (GnuPG) where due.
22525         (M): Use rol rather than open-coding it.
22526         Add a FIXME comment.
22527
22528 2000-09-21  Jim Meyering  <meyering@lucent.com>
22529
22530         * lib/userspec.c (parse_user_spec): Remove debugging printf I'd added.
22531         Reported by Michael Stone.
22532
22533 2000-09-20  Jim Meyering  <meyering@lucent.com>
22534
22535         * lib/Makefile.am (libfetish_a_SOURCES): Add sha.c.
22536         (noinst_HEADERS): Add sha.h.
22537         Based on code from Scott G. Miller and from GnuPG.
22538
22539 2000-09-18  Jim Meyering  <meyering@lucent.com>
22540
22541         * m4/getloadavg.m4 (AC_FUNC_GETLOADAVG): Restore the initial value of
22542         LIBS. Otherwise, everyone ends up linking with -lelf for some
22543         configurations.
22544         Reported by Mike Stone.
22545
22546 2000-09-15  Jim Meyering  <meyering@lucent.com>
22547
22548         * lib/regex.c: Update from libc.
22549
22550 2000-09-10  Jim Meyering  <meyering@lucent.com>
22551
22552         * lib/getopt.c (_getopt_internal): Update from glibc.
22553
22554 2000-09-09  Jim Meyering  <meyering@lucent.com>
22555
22556         * lib/quotearg.c: Rename ISASCII to IN_CTYPE_DOMAIN, so people don't
22557         think it should be used as a general replacement for isascii.
22558         * lib/fnmatch.c: Likewise.
22559         * lib/mbswidth.c: Likewise
22560         * lib/regex.c: Likewise.
22561
22562         Don't use atoi.
22563         * lib/userspec.c: Include sys/param.h and limits.h.
22564         Include xstrtol.h.
22565         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
22566         (UID_T_MAX, GID_T_MAX, MAXUID, MAXGID): Define.
22567         (parse_user_spec): Use xstrtoul, not atoi when converting numeric
22568         UID, GID.  Check range.
22569
22570 2000-09-06  Jim Meyering  <meyering@lucent.com>
22571
22572         * lib/getopt.c (_getopt_internal): Update from glibc.
22573
22574 2000-08-30  Jim Meyering  <meyering@lucent.com>
22575
22576         * lib/strftime.c: Merge in changes from GNU libc.
22577
22578 2000-08-26  Jim Meyering  <meyering@lucent.com>
22579
22580         * m4/jm-macros.m4: Use jm_FUNC_FPENDING.
22581         * m4/fpending.m4: New file.
22582
22583 2000-08-26  Jim Meyering  <meyering@lucent.com>
22584
22585         * lib/closeout.c: Include "__fpending.h".
22586         (close_stdout_status): Return right away if there's nothing to flush.
22587
22588         * lib/Makefile.am (noinst_HEADERS): Add __fpending.h.
22589         * lib/__fpending.c: New file.
22590         * lib/__fpending.h: New file.
22591
22592 2000-08-20  Jim Meyering  <meyering@lucent.com>
22593
22594         * m4/check-decl.m4: Include utmp.h `#if HAVE_UTMP_H', rather than
22595         `#if !HAVE_UTMPX_H'.  The latter would lose on systems with neither
22596         utmp.h nor utmpx.h.  Reported by Eli Zaretskii.
22597
22598 2000-08-11  J. David Anglin  <dave@hiauly1.hia.nrc.ca>
22599
22600         Improve fileutils installation on systems where running
22601         programs (like install) can't be unlinked.
22602         * m4/unlink-busy.m4 (jm_FUNC_UNLINK_BUSY_TEXT): New file/macro.
22603         * m4/jm-macros.m4: Use jm_FUNC_UNLINK_BUSY_TEXT.
22604
22605 2000-08-07  Paul Eggert  <eggert@twinsun.com>
22606
22607         Standardize on "memory exhausted" instead of "Memory exhausted"
22608         or "virtual memory exhausted".
22609         * lib/obstack.c (print_and_abort): Use "memory exhausted", not
22610         "virtual memory exhausted".
22611         * lib/same.c (same_name): Invoke xalloc_die instead of printing
22612         our own message.
22613         * lib/userspec.c (parse_user_spec): Likewise.
22614         * lib/bumpalloc.h: comment fix
22615         * lib/same.c, userspec.c: Include xalloc.h.
22616
22617         * lib/xalloc.h (xalloc_msg_memory_exhausted): Now char const[],
22618         not char *const and pointing to a constant array.
22619         * lib/xmalloc.c (xalloc_msg_memory_exhausted): Likewise.
22620         (xrealloc): Comment fix.
22621
22622         * lib/userspec.c (parse_user_spec):
22623         Don't translate a message until just before returning,
22624         to avoid unnecessary translation.
22625
22626 2000-08-07  Jim Meyering  <meyering@lucent.com>
22627
22628         * lib/addext.c, argmatch.c, argmatch.h, backupfile.h, bumpalloc.h,
22629         chown.c, diacrit.h, dirname.h, dup2.c, exclude.h, fileblocks.c,
22630         fnmatch.c, fnmatch.h, fsusage.c, fsusage.h, getdate.h,
22631         getgroups.c, gethostname.c, getopt.h, group-member.c,
22632         hard-locale.c, hash.h, isdir.c, lchown.c, linebuffer.c,
22633         linebuffer.h, long-options.h, malloc.c, md5.c, md5.h, memchr.c,
22634         memcmp.c, memcoll.c, memset.c, mktime.c, modechange.h, obstack.h,
22635         pathmax.h, realloc.c, rmdir.c, safe-read.c, save-cwd.c, stime.c,
22636         stpcpy.c, strcasecmp.c, strcspn.c, strdup.c, stripslash.c,
22637         strstr.c, strtod.c, strtol.c, strtoul.c, strtoull.c, strtoumax.c,
22638         utime.c, version-etc.h, xalloc.h, xstrdup.c, xstrtoumax.c,
22639         yesno.c: Back out Copyright date changes for each file with no change
22640         this year.  This eases coordination with other programs using the same
22641         source code modules.  From Paul Eggert.
22642
22643 2000-08-06  Paul Eggert  <eggert@twinsun.com>
22644
22645         * m4/mbstate_t.m4 (AC_MBSTATE_T): Define mbstate_t to be int,
22646         not char, for compatibility with glibc 2.1.3 strftime.c.
22647
22648 2000-08-03  Greg McGary  <greg@mcgary.org>
22649
22650         * lib/regex.c (SET_HIGH_BOUND, MOVE_BUFFER_POINTER,
22651         ELSE_EXTEND_BUFFER_HIGH_BOUND): New macros.
22652         (EXTEND_BUFFER): Use them.
22653
22654 2000-08-01  Jim Meyering  <meyering@lucent.com>
22655
22656         * lib/dirname.c (ISSLASH): Define.
22657         (BACKSLASH_IS_PATH_SEPARATOR): Define.
22658         (dir_name) [BACKSLASH_IS_PATH_SEPARATOR]: Handle the case in which
22659         both `\' and `/' may be use as path separators.
22660         Based on a patch from Prashant TR.
22661
22662 2000-07-31  Paul Eggert  <eggert@twinsun.com>
22663
22664         * lib/quotearg.c (quotearg_n_options): Don't make the initial
22665         slot vector a constant, since it might get modified.
22666
22667 2000-07-31  Jim Meyering  <meyering@lucent.com>
22668
22669         * lib/xmalloc.c: Use `virtual memory exhausted', not
22670         `Memory exhausted'.
22671         * lib/obstack.c (print_and_abort): Likewise.
22672
22673 2000-07-30  Paul Eggert  <eggert@twinsun.com>
22674
22675         * lib/quotearg.c (quotearg_n_options): Preallocate a slot 0
22676         buffer, so that the caller can always quote one small
22677         component of a "memory exhausted" message in slot 0.
22678         From a suggestion by Jim Meyering.
22679
22680 2000-07-30  Jim Meyering  <meyering@lucent.com>
22681
22682         * lib/makepath.c (make_path): Quote the other instance, too.
22683
22684         * lib/quotearg.c (N_STATIC_SLOTVECS): Define.
22685         (STATIC_BUF_SIZE): Define.
22686         (quotearg_n_options): Use only statically allocated storage when
22687         N < N_STATIC_SLOTVECS and the length of the quoted result is smaller
22688         than STATIC_BUF_SIZE.
22689
22690 2000-07-29  Jim Meyering  <meyering@lucent.com>
22691
22692         * lib/diacrit.c (diacrit_diac): Use __MSDOS__ in favor of MSDOS.
22693         * lib/dirname.c (dir_name): Likewise.
22694
22695         * lib/basename.c (base_name): Use ISSLASH rather than comparing against
22696         `/'.
22697
22698         * lib/dirname.c (dir_name) [MSDOS]: Declare `lim' to be const.
22699         (dir_name): Assert that there are no trailing slashes.
22700
22701 2000-07-29  Bruno Haible  <haible@clisp.cons.org>
22702
22703         * lib/mbswidth.h (mbswidth): Add a flags argument.
22704         (mbswidth): New declaration.
22705         (MBSW_ACCEPT_INVALID, MBSW_ACCEPT_UNPRINTABLE): New macros.
22706         * lib/mbswidth.c (mbswidth): Add a flags argument.
22707         (mbsnwidth): New function.
22708
22709 2000-07-24  Jim Meyering  <meyering@lucent.com>
22710
22711         * lib/mbswidth.c: Remove useless #else.  From Bruno Haible.
22712
22713 2000-07-23  Paul Eggert  <eggert@twinsun.com>
22714
22715         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Check for wcwidth declaration.
22716
22717 2000-07-23  Paul Eggert  <eggert@twinsun.com>
22718
22719         * lib/quotearg.c: Streamline by invoking multibyte code only if needed.
22720         <wchar.h>: Include only if HAVE_MBRTOWC && 1 < MB_LEN_MAX.
22721         (MB_CUR_MAX): Redefine to 1 if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX).
22722         (quotearg_buffer_restyled): If a unibyte locale, don't bother to
22723         invoke multibyte primitives.
22724
22725 2000-07-23  Paul Eggert  <eggert@twinsun.com>
22726
22727         * lib/quotearg.c:
22728         Include <wchar.h> even if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX),
22729         so that mbstate_t is always defined.
22730
22731         Do not inspect MB_LEN_MAX, since it's incorrectly defined to
22732         be 1 in at least one GCC installation, and this configuration
22733         error is likely to be common.  Ignoring MB_LEN_MAX hurts
22734         performance on hosts that have mbrtowc but have only unibyte
22735         locales, but I assume these hosts are rare.
22736
22737 2000-07-23  Paul Eggert  <eggert@twinsun.com>
22738
22739         * lib/mbswidth.c (_XOPEN_SOURCE):
22740         Don't define; this causes problems on Solaris 7.
22741         (wcwidth) [!HAVE_DECL_WCWIDTH]: Declare.
22742
22743 2000-07-23  Jim Meyering  <meyering@lucent.com>
22744
22745         * m4/check-decl.m4 (jm_CHECK_DECLS): Check for declarations of these,
22746         too: getgrgid, getpwuid, getuid.
22747
22748 2000-07-23  Jim Meyering  <meyering@lucent.com>
22749
22750         * lib/basename.c (base_name): Add an assertion.
22751
22752 2000-07-23  Bruno Haible  <haible@clisp.cons.org>
22753
22754         * lib/quotearg.c: When the system forces us to redefine mbstate_t,
22755         shadow its mbsinit function.
22756
22757 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
22758
22759         * lib/mbswidth.h: New file.
22760         * lib/mbswidth.c: New file.
22761         * lib/Makefile.am (libfetish_a_SOURCES): Add mbswidth.c.
22762         (noinst_HEADERS): Add mbswidth.h.
22763
22764 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
22765
22766         * lib/config.charset: Add support for FreeBSD. Improve support for
22767         HP-UX and IRIX 6.
22768
22769 2000-07-16  Bruno Haible  <haible@clisp.cons.org>
22770
22771         * m4/mbswidth.m4: New file.
22772         * m4/prereq.m4 (jm_PREREQ): Call jm_PREREQ_MBSWIDTH.
22773
22774 2000-07-15  Jim Meyering  <meyering@lucent.com>
22775
22776         * lib/makepath.c: Include quote.h.
22777         (make_path): Convert "`%s'" in format strings to "%s", and wrap each
22778         corresponding argument in a `quote (...)' call.
22779         Give better diagnostics.
22780
22781         * lib/Makefile.am (libfetish_a_SOURCES): Add quote.c.
22782         (noinst_HEADERS): Add quote.h.
22783
22784         * lib/quote.c (quote, quote_n): New file.  Two functions taken verbatim
22785         from tar's src/misc.c.
22786         * lib/quote.h: New file.  Prototypes for same.
22787
22788 2000-07-14  Paul Eggert  <eggert@twinsun.com>
22789
22790         From a suggestion by Bruno Haible.
22791         * lib/quotearg.c (mbrtowc): Do not use HAVE_WCHAR_H in the definition.
22792         Use defined mbstate_t, not HAVE_MBSTATE_T_OBJECT,
22793         to decide whether to define the BeOS workaround macro;
22794         this adjusts to the change to AC_MBSTATE_T.
22795
22796 2000-07-14  Jim Meyering  <meyering@lucent.com>
22797
22798         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Require
22799         jm_AC_TYPE_UINTMAX_T.
22800
22801 2000-07-13  Paul Eggert  <eggert@twinsun.com>
22802
22803         * lib/quotearg.h (enum quoting style): New enum clocale_quoting_style.
22804
22805         * lib/quotearg.c (quoting_style_args, quoting_style_vals,
22806         quotearg_buffer_restyled): Add support for
22807         clocale_quoting_style.  Undo previous change to
22808         locale_quoting_style behavior, and undo the "{LEFT QUOTATION MARK}"
22809         and "{RIGHT QUOTATION MARK}" msgids.
22810
22811 2000-07-10  Paul Eggert  <eggert@twinsun.com>
22812
22813         From a suggestion by Bruno Haible.
22814         * m4/mbstate_t.m4 (AC_MBSTATE_T):
22815         Renamed from AC_MBSTATE_T_OBJECT.  All uses changed.
22816         Change from a two-part test, which defines both HAVE_MBSTATE_T_OBJECT
22817         and mbstate_t, to a single-part test that simply defines mbstate_t.
22818         * m4/prereq.m4 (jm_PREREQ_QUOTEARG):
22819         s/AC_MBSTATE_T_OBJECT/AC_MBSTATE_T/.
22820
22821 2000-07-10  Jim Meyering  <meyering@lucent.com>
22822
22823         * m4/strerror_r.m4: Mirror the correction made in autoconf.
22824
22825         * m4/gnu-source.m4: Output to confdefs.h directly.
22826         Suggestion from Akim Demaille.
22827
22828 2000-07-09  Paul Eggert  <eggert@twinsun.com>
22829
22830         The old behavior of quoting `like this' doesn't look good with
22831         newer, ISO-style fonts.  See:
22832         http://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html
22833
22834         Instead, quote "like this" by default.  Let the translator
22835         tailor the locale-specific quoting behavior by providing
22836         translations for {LEFT QUOTATION MARK} and {RIGHT QUOTATION MARK}.
22837
22838         * lib/quotearg.c (N_): New macro.
22839         (gettext_default): New function.
22840         (quotearg_buffer_restyled): Use
22841         gettext_default ("{LEFT QUOTATION MARK}", "\"") for left quote, and
22842         gettext_default ("{RIGHT QUOTATION MARK}", "\"") for right quote.
22843
22844 2000-07-09  Jim Meyering  <meyering@lucent.com>
22845
22846         * m4/jm-macros.m4 (jm_MACROS): Add a test to see if -lm is required
22847         to link seq.  If so, set SEQ_LIBM to -lm.  From Bruno Haible.
22848
22849         * m4/gnu-source.m4 (AC__GNU_SOURCE): New file/macro.
22850         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require it.
22851
22852 2000-07-09  Jim Meyering  <meyering@lucent.com>
22853
22854         * lib/Most files: Update copyright dates to include 2000.
22855
22856 2000-07-08  Jim Meyering  <meyering@lucent.com>
22857
22858         * lib/xgethostname.c (ENAMETOOLONG): Define to an unlikely value
22859         if not defined.
22860         (xgethostname): Remove now-unnecessary #ifdef.
22861         Move declaration of `err' into loop where it's used.
22862
22863 2000-07-05  Paul Eggert  <eggert@twinsun.com>
22864         and Bruno Haible  <haible@clisp.cons.org>
22865
22866         * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Test for mbstate_t
22867         only if the test for an object-type mbstate_t fails.  This
22868         prevents us from mistakenly reporting that mbstate_t is a
22869         system object type after we "#define mbstate_t int" to work
22870         around its lack.
22871
22872 2000-07-05  Paul Eggert  <eggert@twinsun.com>
22873         and Bruno Haible  <haible@clisp.cons.org>
22874
22875         * lib/quotearg.c (mbrtowc): Declare returned type, since BeOS doesn't.
22876
22877 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
22878
22879         * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Pass a reasonably large buffer
22880         to strerror_r.
22881         Include <ctype.h> for use of isalpha.
22882
22883 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
22884
22885         * lib/xgethostname.c (xgethostname): Protect against the SunOS 5.5 bug
22886         by allocating a larger buffer. Test the gethostname return value for
22887         being >= 0, not == 0, for BeOS.  Don't exhaust memory if gethostname
22888         returns an error and ENAMETOOLONG isn't defined.
22889
22890 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
22891
22892         * lib/quotearg.c (struct quoting_options): Simplify quote_these_too
22893         dimension.
22894
22895 2000-07-04  Jim Meyering  <meyering@lucent.com>
22896
22897         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use plain old `echo' instead
22898         of the deprecated AC_CHECKING.
22899
22900 2000-07-04  Jim Meyering  <meyering@lucent.com>
22901
22902         * lib/strndup.c: [!HAVE_DECL_STRNLEN]: Declare strnlen.
22903         Reported by Bruno Haible.
22904
22905 2000-07-04  Jim Meyering  <meyering@lucent.com>
22906
22907         * lib/quotearg.c: Make inclusion of <wchar.h> independent of whether
22908         HAVE_MBRTOWC is set.  Required at least for irix-5.6, which
22909         lacks mbrtowc.
22910
22911 2000-07-03  Paul Eggert  <eggert@twinsun.com>
22912
22913         * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Port to autoconf 2.13.
22914         Add AC_CHECK_HEADERS(stdlib.h), since we use HAVE_STDLIB_H.
22915
22916 2000-07-03  Paul Eggert  <eggert@twinsun.com>
22917         and Bruno Haible  <haible@clisp.cons.org>
22918
22919         * lib/quotearg.c (mbrtowc):
22920         Assign to *pwc, and return 1 only if result is nonzero.
22921         (iswprint): Use ISPRINT when substituting our own mbrtowc.
22922
22923 2000-07-03  Jim Meyering  <meyering@lucent.com>
22924
22925         * m4/check-decl.m4 (AC_CHECK_DECLS): Add strnlen.
22926
22927 2000-07-03  Jim Meyering  <meyering@lucent.com>
22928
22929         * lib/readutmp.h: [HAVE_UTMPX_H]: Include <utmp.h> if HAVE_UTMP_H.
22930         This is necessary to get a definition of e.g., UTMP_FILE on
22931         HP-UX 10.20.
22932         From Bob Proulx.
22933
22934 2000-07-02  Jim Meyering  <meyering@lucent.com>
22935
22936         * m4/mbstate_t.m4: Also define mbstate_t, if necessary.
22937
22938         * m4/chown.m4: Replace each use of AC_SUBST(LIBOBJS)/LIBOBJS=... with
22939         AC_LIBOBJ(function_name).
22940         * m4/chown.m4: Likewise.
22941         * m4/fnmatch.m4: Likewise.
22942         * m4/ftruncate.m4: Likewise.
22943         * m4/getgroups.m4: Likewise.
22944         * m4/getline.m4: Likewise.
22945         * m4/group-member.m4: Likewise.
22946         * m4/jm-macros.m4: Likewise.
22947         * m4/lstat.m4: Likewise.
22948         * m4/malloc.m4: Likewise.
22949         * m4/memcmp.m4: Likewise.
22950         * m4/nanosleep.m4: Likewise.
22951         * m4/putenv.m4: Likewise.
22952         * m4/realloc.m4: Likewise.
22953         * m4/regex.m4: Likewise.
22954         * m4/stat.m4: Likewise.
22955         * m4/strftime.m4: Likewise.
22956
22957 2000-07-02  Jim Meyering  <meyering@lucent.com>
22958
22959         * lib/quotearg.c (mbstate_t): Don't define here.
22960
22961 2000-07-02  Jim Meyering  <meyering@lucent.com>
22962
22963         * lib/nanosleep.c (SIGCONT): Define if not already defined.
22964
22965 2000-07-01  Jim Meyering  <meyering@lucent.com>
22966
22967         * m4/uptime.m4: Put double quotes around use of $cross_compiling.
22968
22969 2000-07-01  Jim Meyering  <meyering@lucent.com>
22970
22971         * m4/ls-mntd-fs.m4: Remove a `FIXME' comment and fix the associated
22972         problem.
22973
22974 2000-07-01  Bruno Haible  <haible@clisp.cons.org>
22975
22976         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Rename BeOS specific
22977         macro from MOUNTED_NEXT_DEV to MOUNTED_FS_STAT_DEV.
22978
22979 2000-07-01  Bruno Haible  <haible@clisp.cons.org>
22980
22981         * lib/mountlist.c: Use MOUNTED_FS_STAT_DEV instead of MOUNTED_NEXT_DEV,
22982         per change in ../m4/ls-mntd-fs.m4.
22983         (read_filesystem_list): Ignore symbolic links.
22984
22985 2000-06-29  Jim Meyering  <meyering@lucent.com>
22986
22987         * lib/same.c: Include <string.h> or <strings.h>, as appropriate,
22988         for declaration of strcmp.
22989
22990         * lib/long-options.c: Include <stdlib.h>, for declaration of exit.
22991
22992         * lib/mountlist.c (fsp_to_string) [HAVE_F_FSTYPENAME_IN_STATFS]:
22993         Avoid warning by casting result to `char *' to remove `const'.
22994
22995 2000-06-28  Jim Meyering  <meyering@lucent.com>
22996
22997         * m4/mbstate_t.m4: Use stdlib.h, not stdio.h.  The latter is not
22998         included by quotearg.c, for which we perform this test.  From
22999         Bruno Haible.
23000
23001 2000-06-27  Bruno Haible  <haible@clisp.cons.org>
23002
23003         * m4/check-decl.m4 (_jm_DECL_HEADERS): Check for utmp.h as well.
23004         * m4/prereq.m4 (jm_PREREQ_READUTMP): Likewise. If either <utmp.h> or
23005         <utmpx.h> exists, put readutmp.o into LIBOBJS.
23006
23007 2000-06-27  Bruno Haible  <haible@clisp.cons.org>
23008
23009         * lib/Makefile.am (libfetish_a_SOURCES): Remove readutmp.c.
23010
23011 2000-06-26  Paul Eggert  <eggert@twinsun.com>
23012
23013         savedir now sets errno on failure and invokes xmalloc to get memory.
23014         Fix a couple of other minor bugs while we're at it.
23015
23016         * lib/savedir.c (<unistd.h>): Do not include; there's no need.
23017         (NAMLEN): Remove macro.
23018         (malloc, realloc): Remove decls.
23019         (stpcpy): Likewise.
23020         ("xalloc.h"): Include.
23021         (NAME_SIZE_DEFAULT): New macro.
23022         (savedir): Use xmalloc / xrealloc to allocate memory.
23023         Use NAME_SIZE_DEFAULT if name_size is negative or overflows to zero.
23024         Skip "" directory entries.
23025         Use strlen to calculate directory entry length, since the old method
23026         is rarely used these days and isn't worth supporting.
23027         Don't use a pointer after freeing it.
23028         Check for integer overflow when calculating allocation size.
23029         Use memcpy to copy entries, instead of stpcpy.
23030         Set errno properly when returning NULL.
23031         Check for readdir error.
23032
23033 2000-06-26  Jim Meyering  <meyering@lucent.com>
23034
23035         * lib/posixtm.c [HAVE_STDLIB_H]: Include stdlib.h, for decl of abort.
23036
23037 2000-06-25  Jim Meyering  <meyering@lucent.com>
23038
23039         * m4/mbstate_t.m4: Include stdio.h before wchar.h to work around
23040         Linux header bug when _XOPEN_SOURCE is defined to 500.
23041
23042 2000-06-25  Bruno Haible  <haible@clisp.cons.org>
23043
23044         * lib/unicodeio.c (print_unicode_char): Work around ansi2knr
23045         deficiency.
23046
23047 2000-06-25  Bruno Haible  <haible@clisp.cons.org>
23048
23049         * lib/getusershell.c (xmalloc, xrealloc): Remove functions.
23050         Include xalloc.h.
23051         Don't include <stdlib.h>.  Don't declare malloc, realloc.
23052
23053 2000-06-24  Jim Meyering  <meyering@lucent.com>
23054
23055         * m4/strerror_r.m4: Revive this file -- to try out an experimental
23056         version of AC_FUNC_STRERROR_R that may work even on BeOS, a system
23057         for which strerror does return char*, but which lacks a conveniently
23058         accessible declaration of the function.  If the compile-test says
23059         strerror_r doesn't work, then resort to a `run'-test that works on
23060         BeOS and segfaults on DEC Unix.
23061
23062 2000-06-24  Jim Meyering  <meyering@lucent.com>
23063
23064         * lib/error.c [!HAVE_DECL_STRERROR_R]: Declare strerror_r.
23065
23066 2000-06-23  Paul Eggert  <eggert@twinsun.com>
23067
23068         * m4/mbstate_t.m4: New file, defining AC_MBSTATE_T_OBJECT.
23069         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Use it.  Add check for iswprint.
23070
23071 2000-06-23  Paul Eggert  <eggert@twinsun.com>
23072
23073         * lib/quotearg.c: Include <wctype.h> after <wchar.h>, for Solaris 2.5.
23074         (mbrtowc, mbstate_t): Define substitutes if
23075         HAVE_MBRTOWC && HAVE_WCHAR_H && !HAVE_MBSTATE_T_OBJECT.
23076         (iswprint): Define to 1 if !defined iswprint && !HAVE_ISWPRINT,
23077         not if ! (HAVE_MBRTOWC && HAVE_WCHAR_H).
23078
23079 2000-06-23  Jim Meyering  <meyering@lucent.com>
23080
23081         * m4/afs.m4: Add missing AC_MSG_RESULT.
23082         Reported by Bruno Haible.
23083
23084         * m4/fsusage.m4: s/AC_MSG_CHECKING/AC_CHECKING/.
23085         Suggestion from Bruno Haible.
23086
23087 2000-06-23  Jim Meyering  <meyering@lucent.com>
23088
23089         * lib/getpass.c: New file, from Bruno Haible.  Required for BeOS.
23090
23091 2000-06-21  Jim Meyering  <meyering@lucent.com>
23092
23093         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add getpass.
23094
23095 2000-06-21  Jim Meyering  <meyering@lucent.com>
23096
23097         * lib/Makefile.am (libfetish_a_SOURCES): Add getstr.c.
23098         (noinst_HEADERS): Add getstr.h.
23099
23100         * lib/getline.c (getstr): Move into a separate file.
23101         * lib/getstr.c (getstr): New file, extracted from getline.c, with
23102         the following changes: new parameter, delim2; both delim[12]
23103         parameters have type `int', not `char'.  The latter would lose
23104         with 8-bit delimiters.
23105         * lib/getstr.h: New file.
23106
23107 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
23108
23109         * lib/xgetcwd.c (xgetcwd): If the required pathname length is smaller
23110         than 1024, return a memory chunk of least possible size, instead
23111         of size PATH_MAX + 2. In the loop, increment the size proportionally.
23112         Use free/xmalloc instead of xrealloc to avoid copying for very long
23113         paths.
23114
23115 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
23116
23117         * lib/path-concat.c (path_concat): Don't access dir[-1] if dir is
23118         the empty string.
23119
23120 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
23121
23122         * lib/canon-host.c (canon_host): Use malloc and memcpy to copy an
23123         address, not strdup.  Include <stdlib.h> and don't declare free().
23124
23125 2000-06-19  Jim Meyering  <meyering@lucent.com>
23126
23127         * lib/getloadavg.c [HAVE_NLIST_H] (NLIST_STRUCT): Define.
23128
23129 2000-06-18  Jim Meyering  <meyering@lucent.com>
23130
23131         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Remove mkdir.
23132
23133         * m4/link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): Change the
23134         `checking whether...' message to be consistent with that of the
23135         lstat test.
23136
23137 2000-06-18  Jim Meyering  <meyering@lucent.com>
23138
23139         * lib/mkdir.c: Remove file, due mainly to copyright incompatibility.
23140         Besides, these days every porting target provides a mkdir function.
23141
23142         * lib/strnlen.c: Include memory.h, string.h, and/or strings.h as
23143         needed. (this snippet comes from src/system.h).
23144
23145 2000-06-16  Bruno Haible  <haible@clisp.cons.org>
23146
23147         * m4/glibc21.m4 (jm_GLIBC21): Define GLIBC21 for Makefiles, not for C.
23148
23149 2000-06-15  Paul Eggert  <eggert@twinsun.com>
23150
23151         * lib/human.c (adjust_value): New function.
23152         (human_readable_inexact): Apply rounding style even when
23153         printing approximate values.
23154
23155 2000-06-14  Paul Eggert  <eggert@twinsun.com>
23156
23157         * lib/human.c (human_readable_inexact): Allow an input block
23158         size that is not a multiple of the output block size, and vice versa.
23159         Reported by Piergiorgio Sartor.
23160
23161 2000-06-14  Paul Eggert  <eggert@twinsun.com>
23162
23163         * lib/getdate.y (get_date): Apply relative times after time
23164         zone indicator, not before.  Reported by Todd A. Jacobs.
23165
23166 2000-06-13  Jim Meyering  <meyering@lucent.com>
23167
23168         * lib/Makefile.am (all-local): Depend on lstat.c and stat.c.
23169
23170         * lib/xstat.in [!HAVE_DECL_FREE]: Declare free in lstat.c.
23171
23172 2000-06-12  Paul Eggert  <eggert@twinsun.com>
23173
23174         * lib/xstat.in: Include <stdlib.h> in lstat, to declare "free".
23175
23176 2000-06-12  Jim Meyering  <meyering@lucent.com>
23177
23178         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Replace with
23179         AC_FUNC_GETLOADAVG from autoconf, and tweak the latter to accept an
23180         optional argument.
23181         * m4/jm-macros.m4: s/AM_FUNC_GETLOADAVG/AC_FUNC_GETLOADAVG/, and supply
23182         the optional argument, `lib'.
23183
23184 2000-06-08  Jim Meyering  <meyering@lucent.com>
23185
23186         * m4/largefile.m4: Remove file (now that it's part of autoconf).
23187
23188 2000-06-04  Paul Eggert  <eggert@twinsun.com>
23189
23190         Rewrite largefile configuration so that we don't need to run
23191         getconf and don't need AC_CANONICAL_HOST.  [I'm leaving the use of
23192         AC_CANONICAL_HOST in configure.in -- jmm]
23193
23194         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS,
23195         AC_SYS_LARGEFILE_SPACE_APPEND): Remove.
23196         (AC_SYS_LARGEFILE_TEST_INCLUDES): New macro.
23197         (AC_SYS_LARGEFILE_MACRO_VALUE): Change arguments from
23198         CODE-TO-SET-DEFAULT to VALUE, INCLUDES, FUNCTION-BODY.
23199         All uses changed.
23200         Instead of inspecting the output of getconf, try to compile the
23201         test program without and with the macro definition.
23202         (AC_SYS_LARGEFILE): Do not require AC_CANONICAL_HOST or check
23203         for getconf.  Instead, check for the needed flags by compiling
23204         test programs.
23205
23206 2000-06-04  Paul Eggert  <eggert@twinsun.com>
23207
23208         * lib/strnlen.c: Include <config.h> if HAVE_CONFIG_H.
23209
23210 2000-06-04  Jim Meyering  <meyering@lucent.com>
23211
23212         * lib/getugroups.c (getugroups): Cast -1 to gid_t, for systems like
23213         SunOS 4.1.4 for which gid_t is an unsigned type.
23214
23215 2000-06-03  Jim Meyering  <meyering@lucent.com>
23216
23217         * m4/prereq.m4 (jm_PREREQ_HUMAN): Use []-quoted list in AC_CHECK_DECLS,
23218         now that autoconf requires that.
23219
23220         * m4/jm-glibc-io.m4: Add a kludge to make autoheader emit the required
23221         #undefs.  E.g., #undef HAVE_DECL_FERROR_UNLOCKED.
23222         Use []-quoted list in AC_CHECK_DECLS, now that autoconf requires that.
23223
23224 2000-06-03  Jim Meyering  <meyering@lucent.com>
23225
23226         * lib/strnlen.c [!HAVE_DECL_MEMCHR]: Declare memchr.
23227
23228 2000-06-03  Bruno Haible  <haible@clisp.cons.org>
23229
23230         * m4/glibc21.m4: New file.
23231         * m4/jm-macros.m4 (jm_MACROS): Call jm_GLIBC21.
23232
23233 2000-06-03  Bruno Haible  <haible@clisp.cons.org>
23234
23235         * lib/Makefile.am (install-exec-local): On systems with glibc-2.1 or
23236         newer, don't install charset.alias.
23237         * lib/config.charset: Change the Linux/glibc rules so they become empty
23238         on glibc-2.1 or newer.
23239
23240 2000-06-02  Jim Meyering  <meyering@lucent.com>
23241
23242         * lib/mountlist.c: Back out last change.  Instead, do this...
23243         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Set the
23244         me_dummy member using the same `ignore'-testing code.
23245         * lib/mountlist.h (ME_DUMMY): Add `autofs' to the list of ignored
23246         fs_type strings.
23247         From Mark D. Roth.
23248
23249 2000-05-29  Jim Meyering  <meyering@lucent.com>
23250
23251         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Ignore
23252         mounts with the `ignore' attribute.  Based on a patch from
23253         Mark D. Roth.
23254
23255 2000-05-28  Jim Meyering  <meyering@lucent.com>
23256
23257         * m4/jm-macros.m4 (AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK): Rename from
23258         jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
23259         * m4/stat.m4: Likewise.
23260         * m4/lstat.m4: Likewise.
23261         * m4/lstat-slash.m4: Remove file (absorbed into autoconf).
23262
23263         * m4/jm-macros.m4 (AC_FUNC_STRERROR_R): Rename from jm_FUNC_STRERROR_R.
23264         * m4/strerror_r.m4: Remove file (absorbed into autoconf).
23265
23266 2000-05-26  Jim Meyering  <meyering@lucent.com>
23267
23268         * m4/uptime.m4: Use `$cross_compiling', not `$ac_cv_prog_cc_cross'.
23269
23270 2000-05-24  Jim Meyering  <meyering@lucent.com>
23271
23272         * m4/prereq.m4: Use []-quoted list in AC_CHECK_MEMBERS, now that
23273         autoconf requires that.
23274         * m4/lib-check.m4: Likewise.
23275         * m4/jm-macros.m4: Likewise.
23276         * m4/strftime.m4: Likewise.
23277
23278         * m4/check-decl.m4 (jm_CHECK_DECLS): Use []-quoted list in
23279         AC_CHECK_DECLS, now that autoconf requires that.
23280
23281 2000-05-22  Jim Meyering  <meyering@lucent.com>
23282
23283         * m4/stat.m4: Require jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
23284         * m4/lstat.m4: Likewise.
23285
23286 2000-05-22  Jim Meyering  <meyering@lucent.com>
23287
23288         * lib/makepath.c: Remove old, now-unnecessary `#ifdef __MSDOS__' block.
23289
23290 2000-05-20  Jim Meyering  <meyering@lucent.com>
23291
23292         * m4/prereq.m4 (jm_PREREQ_HUMAN): New macro.
23293         (jm_PREREQ): Use it.
23294
23295 2000-05-18  Jim Meyering  <meyering@lucent.com>
23296
23297         * lib/hash.c (hash_rehash): Fix a nasty bug: copy the free entry list
23298         back, too, since it may have been modified by allocate_entry.
23299         (hash_delete): Rewrite to use neither the assignment operator
23300         nor the comma operator in an if-expression.
23301
23302 2000-05-15  Paul Eggert  <eggert@twinsun.com>
23303
23304         * lib/closeout.c:
23305         <sys/stat.h>, <sys/types.h>, <unistd.h>, (STDOUT_FILENO):
23306         Remove; no longer needed.
23307         "quotearg.h": Add include.
23308         (file_name): Do not bother to explicitly initialize to NULL; it's less
23309         efficient on some hosts.
23310         (close_stdout_status): Remove test as to whether stdout was already
23311         closed; it breaks for the case "echo x | sort >&-".
23312         Quote file name colons.
23313         Do not assume that _("write error") lacks format strings.
23314
23315 2000-05-15  Jim Meyering  <meyering@lucent.com>
23316
23317         * lib/version-etc.c (version_etc_copyright): Update the copyright
23318         string used in all --version output.
23319
23320 2000-05-14  Jim Meyering  <meyering@lucent.com>
23321
23322         * lib/closeout.c (close_stdout_set_file_name): New function.
23323         (close_stdout_status): Use new file-scoped global.
23324         Return right away if fstat says the stdout file descriptor is invalid.
23325         * lib/closeout.h (close_stdout_set_file_name): Declare.
23326
23327 2000-05-10  Jim Meyering  <meyering@lucent.com>
23328
23329         * lib/closeout.c [default_exit_status]: New file-scoped variable.
23330         (close_stdout_set_status): New function.
23331         * lib/closeout.h (close_stdout_set_status): Declare.
23332
23333 2000-05-09  Jim Meyering  <meyering@lucent.com>
23334
23335         * m4/gettext.m4: Rename this...
23336         * m4/libintl.m4: ...to this.
23337
23338 2000-05-08  Jim Meyering  <meyering@lucent.com>
23339
23340         * lib/long-options.c: Don't include closeout.h.
23341         (parse_long_options): Don't call close_stdout for --version.
23342
23343 2000-05-06  Paul Eggert  <eggert@twinsun.com>
23344
23345         * m4/largefile.m4 (AC_SYS_LARGEFILE): Define _XOPEN_SOURCE to
23346         be 500, instead of _GNU_SOURCE to be 1, to work around glibc
23347         2.1.3 bug.  This avoids a clash when files like regex.c define
23348         _GNU_SOURCE.
23349
23350 2000-05-06  Jim Meyering  <meyering@lucent.com>
23351
23352         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add atexit.
23353         (AC_REPLACE_FUNCS): Add strnlen.
23354
23355         * m4/rmdir-errno.m4 (fetish_FUNC_RMDIR_NOTEMPTY): New macro and file.
23356         * m4/jm-macros.m4: Require fetish_FUNC_RMDIR_NOTEMPTY.
23357
23358         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Save and restore LIBS around
23359         AC_SEARCH_LIBS call for nanosleep.
23360         (LIB_NANOSLEEP): Set and AC_SUBST.
23361
23362 2000-05-06  Jim Meyering  <meyering@lucent.com>
23363
23364         * lib/strnlen.c: Undefine __strnlen and strnlen.
23365         [!weak_alias]: Define __strnlen to strnlen.
23366
23367         * lib/atexit.c: New file, from libiberty.
23368
23369 2000-05-06  Jim Meyering  <meyering@lucent.com>
23370
23371         * lib/closeout.c (close_stdout_status): Also check for errors on the
23372         stderr stream.
23373
23374 2000-05-05  Jim Meyering  <meyering@lucent.com>
23375
23376         * m4/jm-macros.m4 (jm_MACROS): Save and restore LIBS around
23377         AC_SEARCH_LIBS call for clock_gettime.
23378         (LIB_CLOCK_GETTIME): Set and AC_SUBST.
23379
23380         * m4/search-libs.m4: Update from autoconf.
23381
23382         su doesn't work on Solaris 2.6.
23383         * m4/lib-check.m4: When checking for struct spwd.sp_pwdp, also include
23384         <shadow.h>.  Reported by Dragos Harabor.
23385
23386 2000-05-05  Bruno Haible  <haible@clisp.cons.org>
23387
23388         * lib/localcharset.c (get_charset_aliases): Use malloc, realloc and
23389         memcpy instead of xmalloc, xrealloc, path_concat.
23390         (locale_charset): Treat empty environment variables as absent.
23391         (DIRECTORY_SEPARATOR, ISSLASH): New macros.
23392
23393 2000-05-04  Jim Meyering  <meyering@lucent.com>
23394
23395         * lib/getopt.c: Update from glibc.
23396         * lib/obstack.c: Likewise.
23397         * lib/obstack.h: Likewise.
23398         * lib/regex.c: Likewise.  NB: K&R compiler support is dropped for this
23399         file
23400
23401         * lib/regex.h: Likewise.
23402         * lib/strndup.c: Likewise.
23403         * lib/strnlen.c: New file, from glibc.
23404
23405 2000-05-03  Jim Meyering  <meyering@lucent.com>
23406
23407         * m4/check-decl.m4 (AC_CHECK_DECLS): Add strndup.
23408
23409 2000-05-02  Paul Eggert  <eggert@twinsun.com>
23410
23411         * m4/largefile.m4 (AC_SYS_LARGEFILE): Define _GNU_SOURCE if
23412         this is needed to make ftello visible (e.g. glibc 2.1.3).  Use
23413         compile-time test, rather than inspecting host and OS, to
23414         decide whether to define _LARGEFILE_SOURCE.
23415
23416 2000-05-01  Jim Meyering  <meyering@lucent.com>
23417
23418         * m4/fsusage.m4: Use AC_MSG_CHECKING instead of obsolete AC_CHECKING.
23419
23420         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add BeOS support.
23421         Based on a patch from Bruno Haible.
23422
23423 2000-05-01  Jim Meyering  <meyering@lucent.com>
23424
23425         * lib/full-write.c (full_write): Remove `FIXME' part of comment.
23426
23427 2000-04-29  Jim Meyering  <meyering@lucent.com>
23428
23429         * lib/path-concat.c: Declare strdup only if it's not defined.
23430         * lib/canon-host.c: Likewise.
23431
23432 2000-04-28  Jim Meyering  <meyering@lucent.com>
23433
23434         * lib/rpmatch.c [HAVE_LIMITS_H]: Include limits.h before regex.h to
23435         avoid redefinition warning on some systems (HPUX).  Otherwise, regex.h
23436         is included first, then limits.h is included by locale.h by libintl.h.
23437         From John David Anglin.
23438
23439 2000-04-25  Jim Meyering  <meyering@lucent.com>
23440
23441         * lib/makepath.c (S_IRWXUGO): Define.
23442         (make_path): Always perform explicit chmod if MODE specifies any
23443         of the `special' permission bits.  Prompted by a bug report against
23444         install from Mate Wierdl and Joost van Baal.
23445
23446 2000-04-18  Jim Meyering  <meyering@lucent.com>
23447
23448         * m4/prereq.m4 (jm_PREREQ_GETPAGESIZE): New macro.
23449         (jm_PREREQ): Use it.
23450
23451 2000-04-18  Jim Meyering  <meyering@lucent.com>
23452
23453         * lib/README: New file.
23454
23455         * lib/getpagesize.h [!getpagesize && HAVE_OS_H && B_PAGE_SIZE]: Define
23456         getpagesize.  For BeOS.  Based on a patch from Bruno Haible.
23457
23458 2000-04-17  Jim Meyering  <meyering@lucent.com>
23459
23460         Get it right :-)
23461         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Emit the
23462         actual #define via AH_VERBATIM.  Don't need separate AC_DEFINE.
23463         Suggestion from Akim Demaille.
23464
23465 2000-04-17  Jim Meyering  <meyering@lucent.com>
23466
23467         * lib/strftime.c (my_strftime) [strftime]: Declare strftime here, since
23468         the definition of it to rpl_strftime also defined-away the system's
23469         declaration.
23470
23471 2000-04-15  Jim Meyering  <meyering@lucent.com>
23472
23473         Use `C' to denote so-called `contiguous' files, the same way
23474         that tar does.
23475         * lib/filemode.c (S_ISCTG) [!S_ISCTG && S_IFCTG]: Define.
23476         (ftypelet): Use S_ISCTG.
23477         From Michael Deutschmann.
23478
23479 2000-04-14  Jim Meyering  <meyering@lucent.com>
23480
23481         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use the one-arg
23482         form of AC_DEFINE.  Otherwise, the #ifndef in AH_VERBATIM gets
23483         clobbered.
23484
23485 2000-04-14  Jim Meyering  <meyering@lucent.com>
23486
23487         * lib/strftime.c (my_strftime) [#ifdef strftime]: Declare strftime.
23488
23489 2000-04-13  Jim Meyering  <meyering@lucent.com>
23490
23491         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use new
23492         AH_VERBATIM to insert required #ifndef into config.h.in.
23493         Suggestion from Akim Demaille.
23494
23495 2000-04-12  Jim Meyering  <meyering@lucent.com>
23496
23497         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Use AC_CHECK_HEADERS, not
23498         `AC_CHECK_HEADER' to check for locale.h.  Thanks to a report from
23499         Christian Krackowizer.
23500
23501         More code moved from ../configure.in into (jm_CHECK_ALL_TYPES).
23502         * m4/jm-macros.m4 (_GNU_SOURCE): Define.
23503         (AC_SYS_LARGEFILE): Require.
23504         (AM_C_PROTOTYPES): Require.
23505
23506 2000-04-08  Jim Meyering  <meyering@lucent.com>
23507
23508         * lib/Makefile.am (charset.alias): Use t-$@, not $@-t so the DOS 8.3
23509         names don't conflict.  Reported by Eli Zaretskii.
23510
23511 2000-04-07  Jim Meyering  <meyering@lucent.com>
23512
23513         * lib/putenv.c: Move inclusion of errno.h so it follows that of
23514         sys/types.h, to work around system header problems on AIX 3.2.5.
23515         From Bruno Haible.
23516
23517 2000-04-07  Bruno Haible  <haible@clisp.cons.org>
23518
23519         * lib/unicodeio.c (print_unicode_char): Avoid triggering Solaris iconv
23520         bug.  Deal with the different error behavior of Irix iconv.
23521
23522 2000-04-05  Paul Eggert  <eggert@twinsun.com>
23523
23524         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Don't use -n32 on
23525         IRIX if the installer said otherwise.
23526
23527 2000-04-05  Jim Meyering  <meyering@lucent.com>
23528
23529         Portability tweaks required for ultrix4.3.
23530         * m4/check-decl.m4 [!HAVE_UTMPX_H] (headers): Include <utmp.h>.
23531         (jm_CHECK_DECLS): Add getutent to the list of functions.
23532         (_jm_DECL_HEADERS): Add utmpx.h.
23533         From John David Anglin.
23534
23535         * m4/strftime.m4: Back out the 2000-04-02 change.
23536         Instead of that change, simply undefine putenv in the test program.
23537
23538 2000-04-05  Jim Meyering  <meyering@lucent.com>
23539
23540         Portability tweaks required for ultrix4.3.
23541         * lib/readutmp.h [HAVE_UTMPX_H && !HAVE_DECL_GETUTENT]: Declare
23542         getutent.
23543         * lib/readutmp.c: Include sys/types.h before sys/stat.h.
23544         * lib/canon-host.c: Declare strdup.
23545         * lib/path-concat.c: Likewise.
23546         From John David Anglin.
23547
23548 2000-04-04  Jim Meyering  <meyering@lucent.com>
23549
23550         Be more DOS 8.3-friendly.
23551         * lib/ref-add.sin: Renamed from ref-add.sed.in.
23552         * lib/ref-del.sin: Renamed from ref-del.sed.in.
23553         * lib/Makefile.am: Reflect renaming.
23554         Reported by Eli Zaretskii.
23555
23556         Use a temporary file name that won't clash with `charset.alias'
23557         in the DOS 8.3 name space.
23558         * lib/Makefile.am (charset_tmp): Define.
23559         (install-exec-local): Use $(charset_tmp) instead of $(charset_alias)-t.
23560         (uninstall-local): Likewise.
23561         Reported by Eli Zaretskii.
23562
23563 2000-04-03  Jim Meyering  <meyering@lucent.com>
23564
23565         * m4/gettext.m4: Fix typo in comment.
23566
23567         * m4/codeset.m4 (AC_CHECK_HEADERS): Add langinfo.h (moved here from
23568         textutils/configure.in).  Suggestion from Paul Eggert.
23569         (AC_CHECK_FUNCS): Add nl_langinfo.  (also from textutils/configure.in)
23570
23571 2000-04-02  Paul Eggert  <eggert@twinsun.com>
23572
23573         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME): Set TZ environment
23574         variable in the shell rather than using putenv, which isn't
23575         portable.  This avoids the configure-time inter-test dependency
23576         on the potentially-renamed putenv function.
23577
23578 2000-03-30  Paul Eggert  <eggert@twinsun.com>
23579
23580         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Include <sys/stat.h>
23581         before checking struct stat.st_blksize, so that
23582         HAVE_STRUCT_STAT_ST_BLKSIZE is defined correctly.
23583
23584 2000-03-29  Paul Eggert  <eggert@twinsun.com>
23585
23586         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Check for strftime,
23587         since strftime.c uses HAVE_STRFTIME to decide whether to use
23588         the underlying strftime.
23589
23590 2000-03-29  Paul Eggert  <eggert@twinsun.com>
23591
23592         * lib/time/strftime.c (my_strftime): Make sure we call the system
23593         strftime, not ourselves, when invoking the underlying strftime.
23594
23595 2000-03-24  Jim Meyering  <meyering@lucent.com>
23596
23597         * lib/Makefile.am (EXTRA_DIST): Add ref-add.sed.in and ref-del.sed.in.
23598         (charset_alias): Define.
23599         (install-exec-local): Factor out common code.
23600         (uninstall-local): Split lines longer than 80.
23601         (ref-add.sed, ref-del.sed): Remove rules... (do the following instead)
23602         (SUFFIXES): Define.
23603         (.sed.in.sed): New rule.  Don't redirect directly to $@.
23604         (CLEANFILES): Add ref-add.sed and ref-del.sed.
23605
23606 2000-03-19  Bruno Haible  <haible@clisp.cons.org>
23607
23608         * lib/config.charset: Output a line containing "Packages using this
23609         file".
23610         * lib/ref-add.sed.in, lib/ref-del.sed.in: New files.
23611         * lib/Makefile.am (install-exec-local, uninstall-local, ref-add.sed,
23612         ref-del.sed): New rules.
23613
23614 2000-03-17  Jim Meyering  <meyering@lucent.com>
23615
23616         * lib/unicodeio.c (<string.h>): Include only #if HAVE_STRING_H.
23617         Otherwise, include <strings.h>
23618
23619 2000-03-17  Bruno Haible  <haible@clisp.cons.org>
23620
23621         * lib/unicodeio.c (utf8_wctomb): New function.
23622         (print_unicode_char): Pass the Unicode character to iconv in UTF-8
23623         format instead of in UCS-4 with platform dependent endianness.
23624
23625 2000-03-10  Jim Meyering  <meyering@lucent.com>
23626
23627         * m4/lib-check.m4: Look for getspnam in -lgen, too.
23628         From Marco Franzen.
23629
23630 2000-03-07  Paul Eggert  <eggert@twinsun.com>
23631
23632         * lib/savedir.c (savedir): Work even if directory size is
23633         negative; this can happen with some screwy NFS configurations.
23634
23635 2000-03-06  Jim Meyering  <meyering@lucent.com>
23636
23637         * lib/localcharset.c (get_charset_aliases): Don't try to free file_name
23638         if it's NULL (because we ran out of memory).  From Bruno Haible.
23639
23640 2000-03-05  Jim Meyering  <meyering@lucent.com>
23641
23642         * lib/localcharset.c ("path-concat.h"): Include.
23643         (get_charset_aliases): Use path_concat instead of ANSI string
23644         concatenation.
23645
23646         * lib/unicodeio.h (PARAMS): Define.
23647         Use it to guard prototype.
23648
23649 2000-03-04  Jim Meyering  <meyering@lucent.com>
23650
23651         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require AC_C_VOLATILE,
23652         for lib/localcharset.c.
23653
23654 2000-03-04  Jim Meyering  <meyering@lucent.com>
23655
23656         * lib/Makefile.am (install-exec-local): Create $(libdir) before
23657         installing into it.
23658         (uninstall-local): Uncomment this rule so `make distcheck' works
23659         once again.
23660
23661         * lib/unicodeio.c (<errno.h>): Include it.
23662         (errno): Declare if not defined.
23663
23664         * lib/localcharset.c: Add Bruno's comment justifying use of volatile.
23665
23666         * lib/config.charset: New version, incorporating remarks from a linux
23667         i18n mailing list.  From Bruno Haible.
23668
23669 2000-03-04  Bruno Haible  <haible@clisp.cons.org>
23670
23671         * m4/codeset.m4: New file.
23672         * m4/iconv.m4: New file.
23673         * m4/jm-macros.m4 (jm_MACROS): Call jm_LANGINFO_CODESET and jm_ICONV.
23674
23675 2000-03-03  Jim Meyering  <meyering@lucent.com>
23676
23677         * m4/regex.m4: Make sure re_compile_pattern accepts patterns like `{1'.
23678
23679 2000-03-02  Jim Meyering  <meyering@lucent.com>
23680
23681         * m4/timespec.m4: Require AC_HEADER_TIME before the cache check so
23682         the messages come out on separate lines.
23683
23684         * m4/jm-glibc-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO): Use AC_CHECK_DECLS,
23685         rather than jm_CHECK_DECLARATIONS.
23686         * m4/decl.m4: Remove now-unused file.
23687
23688         * m4/check-decl.m4 (AC_CHECK_DECLS): Add getlogin, ttyname, and
23689         geteuid.
23690
23691 2000-03-02  Jim Meyering  <meyering@lucent.com>
23692
23693         * lib/Makefile.am (EXTRA_DIST): Add config.charset.
23694
23695 2000-03-01  Jim Meyering  <meyering@lucent.com>
23696
23697         * lib/localcharset.c: Guard some #includes with `#if HAVE_...'.
23698         * lib/unicodeio.c: Likewise.
23699
23700 2000-03-01  Bruno Haible  <haible@clisp.cons.org>
23701
23702         * lib/config.charset: New file.
23703         * lib/localcharset.c: New file.
23704         * lib/unicodeio.h, lib/unicodeio.c: New files.
23705         * lib/Makefile.am (DEFS): Add -DLIBDIR=...
23706         (libfetish_a_SOURCES): Add localcharset.c and unicodeio.c.
23707         (noinst_HEADERS): Add unicodeio.h.
23708         (all-local, install-exec-local, charset.alias): New targets.
23709
23710 2000-02-28  Paul Eggert  <eggert@twinsun.com>
23711
23712         * lib/quotearg.c (ALERT_CHAR): New macro.
23713         (quotearg_buffer_restyled): Use it.
23714
23715 2000-02-27  Jim Meyering  <meyering@lucent.com>
23716
23717         * m4/check-decl.m4: Add getenv to the list.
23718
23719 2000-02-27  Jim Meyering  <meyering@lucent.com>
23720
23721         * lib/strtoumax.c: Fix typo in decl of strtoul: s/long long/long/.
23722         Guard declaration of strtoull also with `&& HAVE_UNSIGNED_LONG_LONG'.
23723
23724         * lib/backupfile.c: Guard inclusion of stdlib.h with
23725         `#if HAVE_STDLIB_H', not `#if STDC_HEADERS'.
23726         Declare malloc if needed.
23727
23728         * lib/backupfile.c: Use `#if !HAVE_DECL...' instead of
23729         `#ifndef HAVE_DECL..'
23730         now that autoconf always defines the HAVE_DECL_ symbols.
23731         * lib/human.c: Likewise.
23732         * lib/same.c: Likewise.
23733         * lib/strtoumax.c: Likewise.
23734
23735         * lib/backupfile.c: Arrange for cpp to fail if the configure-time
23736         declaration check was not run.
23737         * lib/hash.c: Likewise.
23738         * lib/human.c: Likewise.
23739         * lib/same.c: Likewise.
23740         * lib/strtoumax.c: Likewise.
23741
23742         * lib/userspec.c (parse_user_spec): If there is no `:' but there is a
23743         `.', then first look up the entire `.'-containing string as a login
23744         name.
23745
23746 2000-02-23  Jim Meyering  <meyering@lucent.com>
23747
23748         * m4/check-decl.m4: Now that we have the new AC_CHECK_DECLS, use it
23749         in place of my hack.
23750
23751 2000-02-18  Paul Eggert  <eggert@twinsun.com>
23752
23753         * lib/getdate.y: Handle two-digit years with leading zeros correctly.
23754         (textint): New typedef.
23755         (parser_control): Member year changed from int to textint.
23756         All uses changed.
23757         (YYSTYPE): Removed; replaced by %union with int and textint members.
23758         (tDAY, tDAY_UNIT, tDAYZONE, tHOUR_UNIT, tID, tLOCAL_ZONE, tMERIDIAN,
23759         tMINUTE_UNIT, tMONTH, tMONTH_UNIT tSEC_UNIT, tSNUMBER, tUNUMBER,
23760         tYEAR_UNIT, tZONE, o_merid): Now of type <intval>.
23761         (tSNUMBER, tUNUMBER): Now of type <textintval>.
23762         (date, number, to_year): Use width of number in digits, not its value,
23763         to determine whether it's a 2-digit year, or a 2-digit time.
23764         (yylex): Store number of digits of numeric tokens.
23765         Reported by John Kendall.
23766
23767         (parser_control): Changed from struct parser_control to typedef (for
23768         consistency).  All uses changed.
23769
23770         (tID): Removed; not used.
23771         (yylex): Return '?' for unknown identifiers, rather than (unused) tID.
23772
23773 2000-02-14  Paul Eggert  <eggert@twinsun.com>
23774
23775         * lib/getpagesize.h (getpagesize): Port to VMS for Alpha;
23776         adapted from changes to grep getpagesize.h by Martin P.J. Zinser.
23777
23778 2000-02-12  Jim Meyering  <meyering@lucent.com>
23779
23780         * lib/userspec.c (ISDIGIT): Define it.
23781         (isdigit): Remove definition.
23782         (is_number): Use ISDIGIT, not isdigit.
23783         <libintl.h>: Include.
23784         (_ and N_): Define.
23785         (parse_user_spec): Mark translatable strings.
23786
23787 2000-02-10  Jim Meyering  <meyering@lucent.com>
23788
23789         With these changes, nanosleep.[ch] are finally enough like the other
23790         lib/* replacement files to compile on a few more losing systems.
23791
23792         * lib/nanosleep.h: Don't include config.h.
23793         Remove prototype from declaration of nanosleep.
23794         (PARAMS): Remove now-unneeded definition.
23795         * lib/nanosleep.c: #undef nanosleep.
23796         (rpl_nanosleep): Rename from nanosleep.
23797
23798 2000-02-10  Jim Meyering  <meyering@lucent.com>
23799
23800         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Rename replacement function from
23801         gnu_nanosleep to rpl_nanosleep.
23802
23803 2000-02-09  Jim Meyering  <meyering@lucent.com>
23804
23805         * m4/lib-check.m4 (jm_LIB_CHECK): Fix typo: check for sp_pwdp in
23806         struct spwd, rather than in struct passwd.  Reported by Gaël Quéri.
23807
23808 2000-02-08  Akim Demaille  <akim@epita.fr>
23809
23810         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Quote square brackets with
23811         `[' and `]' and remove uses of `changequote'.
23812         (AC_SYS_LARGEFILE_MACRO_VALUE): Likewise.
23813         (AC_SYS_LARGEFILE): Likewise.
23814         * m4/gettext.m4 (AM_GNU_GETTEXT): Likewise.
23815         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME): Remove now-unnecessary use
23816         of changequote.
23817         * m4/regex.m4 (jm_INCLUDED_REGEX): Likewise.
23818         * m4/readdir.m4 (jm_FUNC_READDIR): Likewise
23819         * m4/memcmp.m4 (jm_AC_FUNC_MEMCMP): Likewise, and add `int' for main.
23820         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Likewise.
23821
23822 2000-02-05  Jim Meyering  <meyering@lucent.com>
23823
23824         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require most macros.
23825         Remove explicit use of AC_HEADER_TIME.  It is required by
23826         jm_CHECK_TYPE_STRUCT_TIMESPEC.  Using AC_HEADER_TIME and
23827         `AC_REQUIRE'ing jm_CHECK_TYPE_STRUCT_TIMESPEC provoked a but
23828         in autoconf whereby the expansion of the latter ended up preceding
23829         the expansion of its prerequisite, AC_HEADER_TIME.
23830         Reported by Volker Borchert.
23831
23832 2000-02-03  Jim Meyering  <meyering@lucent.com>
23833
23834         * m4/prereq.m4 (jm_PREREQ_READUTMP): Check for utmpxname.
23835
23836 2000-02-03  Jim Meyering  <meyering@lucent.com>
23837
23838         * lib/readutmp.c (read_utmp): Guard with `#ifdef UTMP_NAME_FUNCTION',
23839         rather than with `#if HAVE_UTMPNAME'.
23840
23841 2000-02-02  Jim Meyering  <meyering@lucent.com>
23842
23843         * m4/prereq.m4 (jm_PREREQ_ADDEXT): Fix typo that resulted in no
23844         definition of HAVE_PATHCONF: s/AC_CHECK_FUNC/AC_CHECK_FUNCS/.
23845         Reported by Eli Zaretskii.
23846
23847 2000-02-01  Jim Meyering  <meyering@lucent.com>
23848
23849         * lib/readutmp.h (UT_USER): Add parens.  From Andreas Schwab.
23850
23851 2000-01-31  Jim Meyering  <meyering@lucent.com>
23852
23853         * m4/check-decl.m4 (jm_CHECK_DECLS): Add nanosleep to the list of
23854         functions.  Add the time.h and sys/time.h headers along with the
23855         AC_REQUIRE'ment of AC_HEADER_TIME.
23856
23857 2000-01-31  Jim Meyering  <meyering@lucent.com>
23858
23859         * lib/nanosleep.h (nanosleep): Guard declaration with
23860         `#if ! HAVE_DECL_NANOSLEEP'.
23861         Without this, OFS gets a redeclaration error for rpl_nanosleep, due to
23862         the declaration in that vendor's sys/timers.h.
23863         Reported by Christian Krackowizer.
23864
23865         * lib/quotearg.c (ISASCII): Add #undef and move definition to follow
23866         inclusion of wctype.h to work around Solaris 2.6 namespace pollution.
23867         (ISPRINT): Likewise.
23868         Reported by Tom Tromey.
23869
23870 2000-01-30  Jim Meyering  <meyering@lucent.com>
23871
23872         * m4/lib-check.m4: Clean up some kludgy old shadow password tests.
23873
23874         * m4/prereq.m4 (utmp_includes): Define.
23875         Check for ut_user and ut_name members in both struct utmpx
23876         and struct utmp.
23877
23878 2000-01-30  Jim Meyering  <meyering@lucent.com>
23879
23880         * lib/readutmp.c (extract_trimmed_name): Use UT_USER instead of
23881         hard-coding uses of ->ut_name.  The latter doesn't work with new Linux
23882         header files where only utmpx.ut_user is declared.
23883
23884         * lib/readutmp.h (UT_USER): Define.
23885
23886 2000-01-29  Jim Meyering  <meyering@lucent.com>
23887
23888         * m4/lib-check.m4: New file containing library-related checks from
23889         fileutils and sh-utils (textutils had none).
23890
23891 2000-01-28  Jim Meyering  <meyering@lucent.com>
23892
23893         * m4/perl.m4: Change format of warning message to look more like that
23894         from the missing script.  Suggestion from François Pinard.
23895
23896 2000-01-25  Jim Meyering  <meyering@lucent.com>
23897
23898         * m4/timespec.m4: Require AC_HEADER_TIME, and include sys/time.h as
23899         well as time.h in the compile check.
23900         * m4/nanosleep.m4: Require AC_HEADER_TIME rather than simply using it.
23901         Fix typo in cross-compiling case: s/yes/no/.
23902
23903 2000-01-23  Jim Meyering  <meyering@lucent.com>
23904
23905         * m4/jm-macros.m4: Move df-related tests here from
23906         fileutils/configure.in
23907
23908         * m4/ls-mntd-fs.m4: s/list_mounted_fs/ac_list_mounted_fs/
23909         (jm_LIST_MOUNTED_FILESYSTEMS): Take two parameters.
23910
23911         * m4/fsusage.m4: New file.  Extracted from fileutils/configure.in.
23912         s/space/ac_fsusage_space/.
23913         (jm_FILE_SYSTEM_USAGE): Take two parameters.
23914
23915         * m4/ftruncate.m4: New file (derived from part of
23916         fileutils/configure.in).
23917         * m4/jm-macros.m4 (jm_FUNC_FTRUNCATE): AC_REQUIRE it.
23918         (jm_CHECK_ALL_TYPES): Require AC_HEADER_MAJOR and AC_HEADER_DIRENT.
23919
23920         * m4/jm-macros.m4 (OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, MAN):
23921         AC_SUBST these here, rather than just in sh-util/configure.in, so
23922         that the now-shared-by-fileutils-and-textutils lib/Makefile.am are
23923         all the same.
23924         (AM_FUNC_OBSTACK): Add (from fileutils/configure.in).
23925         (AC_CHECK_FUNCS): Merge all checks from fileutils, textutils, sh-utils.
23926         (AM_FUNC_STRTOD): Added (from textutils', sh-utils' configure.in).
23927         (AC_SUBST(POW_LIBM)): Likewise.
23928         (AC_SUBST(DF_PROG)): Moved from fileutils/configure.in.
23929
23930 2000-01-23  Jim Meyering  <meyering@lucent.com>
23931
23932         * lib/Makefile.am (libfetish_a_SOURCES): Remove explicit mention of
23933         obstack.c.
23934
23935 2000-01-22  Jim Meyering  <meyering@lucent.com>
23936
23937         * m4/jm-macros.m4: Call AC_PROG_CC_STDC just before AC_C_CONST.
23938
23939         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Add wctype.h.
23940
23941         * m4/jm-macros.m4 (AC_CHECK_HEADERS): Add checks from fileutils'
23942         configure.in
23943         (AC_CHECK_HEADERS): Likewise for sh-utils.
23944         (AC_CHECK_HEADERS): Likewise for textutils.
23945         Merge the three lists of headers.
23946
23947         * m4/prereq.m4 (jm_PREREQ_ADDEXT): New macro.  Parts moved here
23948         from fileutils' configure.in.
23949
23950         * m4/decl.m4: Remove kludgy `test -z $ac_...AC_CHECK_HEADERS(...)'
23951         code. Moved tests into their own function (_jm_DECL_HEADERS) in
23952         check-decl.m4.
23953
23954         * m4/check-decl.m4: Use #if rather than #ifdef.
23955         Add HAVE_DECL_STRTOUL and HAVE_DECL_STRTOULL.
23956         (jm_CHECK_DECLARATIONS): Add strtoul strtoull.
23957         (_jm_DECL_HEADERS): Define new function.
23958         (jm_CHECK_DECLARATIONS): Require it.
23959
23960 2000-01-22  Jim Meyering  <meyering@lucent.com>
23961
23962         * lib/strtoumax.c: [! HAVE_DECL_STRTOUL]: Declare strtoul.
23963         [! HAVE_DECL_STRTOULL]: Declare strtoull.
23964         Required for some AIX systems.  Reported by Christian Krackowizer.
23965         [TESTING] (main): New function.
23966
23967         1997-10-17  Eli Zaretskii  <eliz@is.elta.co.il>
23968         * lib/dirname.c (dir_name): Support for DOS-style file names with drive
23969         letters.
23970
23971         * lib/quotearg.c [HAVE_WCTYPE_H]: Include <wctype.h> for decl of
23972         iswprint.
23973
23974         * lib/strverscmp.c (ISDIGIT): Define.
23975         (strverscmp): Use ISDIGIT, not isdigit.
23976
23977 2000-01-19  Jim Meyering  <meyering@lucent.com>
23978
23979         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Include <sys/time.h>, too.
23980         Use AC_HEADER_TIME.  Volker Borchert reported that OpenBSD-2.3/sparc
23981         defines `struct timespec' in <sys/time.h>
23982
23983         * m4/c-bs-a.m4: Remove uses of changequote altogether.
23984         Thanks to Akim for explaining.
23985
23986 2000-01-17  Paul Eggert  <eggert@twinsun.com>
23987
23988         * lib/nanosleep.c (nanosleep):
23989         Don't use SA_INTERRUPT to decide whether to call sigaction, as
23990         POSIX.1 doesn't require SA_INTERRUPT and some systems
23991         (e.g. Solaris 7) don't define it.  Use SA_NOCLDSTOP instead;
23992         it's been part of POSIX.1 since day 1 (in 1988).
23993
23994 2000-01-17  Jim Meyering  <meyering@lucent.com>
23995
23996         * lib/interlock: Remove unused file.  Reported by François Pinard.
23997
23998 2000-01-16  Paul Eggert  <eggert@twinsun.com>
23999
24000         * lib/quotearg.c (quotearg_buffer_restyled): Do not quote
24001         alert, backslash, formfeed, and vertical tab unnecessarily in
24002         shell quoting style.
24003
24004 2000-01-16  Jim Meyering  <meyering@lucent.com>
24005
24006         * m4/jm-macros.m4: Require jm_FUNC_GROUP_MEMBER, jm_FUNC_PUTENV,
24007         AM_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, jm_FUNC_MKTIME,
24008         jm_FUNC_GETGROUPS AC_FUNC_VPRINTF, AC_FUNC_ALLOCA,
24009         AM_FUNC_GETLOADAVG, and jm_SYS_PROC_UPTIME.
24010
24011 2000-01-16  Jim Meyering  <meyering@lucent.com>
24012
24013         * m4/c-bs-a.m4: Use `changequote(<<,>>)', rather than `changequote(, )'
24014         because the latter didn't work.
24015
24016 2000-01-15  Jim Meyering  <meyering@lucent.com>
24017
24018         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add gethostname and getusershell.
24019         (AC_REPLACE_FUNCS): Add memcpy and memset.
24020         Add these, too: stime strcspn stpcpy strstr strtol strtoul.
24021         Add strpbrk.
24022         Add these: euidaccess memcmp mkdir rmdir rpmatch strndup strverscmp.
24023
24024 2000-01-12  Jim Meyering  <meyering@lucent.com>
24025
24026         * m4/prereq.m4 (jm_PREREQ_CANON_HOST): New macro.
24027         (jm_PREREQ): Use it.
24028         (jm_PREREQ_READUTMP): New macro.
24029         (jm_PREREQ): Use it.
24030
24031 2000-01-11  Paul Eggert  <eggert@twinsun.com>
24032
24033         Quote multibyte characters correctly.
24034         * m4/c-bs-a.m4: New file.
24035         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): New macro.
24036         (jm_PREREQ): Use it.
24037
24038 2000-01-11  Paul Eggert  <eggert@twinsun.com>
24039
24040         * m4/uintmax_t.m4: Port to autoconf 2.13.
24041
24042 2000-01-08  Jim Meyering  <meyering@ascend.com>
24043
24044         * m4/strerror_r.m4 (jm_FUNC_STRERROR_R): New file/macro.
24045         * m4/jm-macros.m4 (jm_FUNC_STRERROR_R): Require it.
24046
24047 2000-01-04  Jim Meyering  <meyering@ascend.com>
24048
24049         * m4/d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename from
24050         jm_STRUCT_DIRENT_D_TYPE.
24051         * m4/d-ino.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_INO): Rename from
24052         jm_STRUCT_DIRENT_D_INO.
24053         * m4/utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Rename from
24054         jm_STRUCT_UTIMBUF.
24055         * m4/jm-macros.m4: Reflect s/jm_STRUCT_/jm_CHECK_TYPE_STRUCT_/
24056         renamings.
24057         * m4/utime.m4: Likewise.
24058
24059         * m4/timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): New file, macro.
24060         * m4/jm-macros.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): Require it.
24061
24062 2000-01-03  Paul Eggert  <eggert@twinsun.com>
24063
24064         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Search for nanosleep in -lrt
24065         (for Solaris 7) and in -lposix4 (for Solaris 2.5.1).
24066
24067 2000-01-02  Jim Meyering  <meyering@ascend.com>
24068
24069         * m4/search-libs.m4: Escape `$' in $3 of dnl comment.  I no longer
24070         remember if this is necessary.
24071
24072 1999-12-26  Jim Meyering  <meyering@ascend.com>
24073
24074         * m4/jm-macros.m4: Use it here.
24075         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): New file/macro.
24076
24077 1999-12-23  Jim Meyering  <meyering@ascend.com>
24078
24079         * m4/jm-macros.m4: Check for clock_gettime (moved from
24080         fileutils/configure.in)
24081         Check for gettimeofday.
24082
24083 1999-12-20  Jim Meyering  <meyering@ascend.com>
24084
24085         * m4/strftime.m4: Remove kludge, now that I'm using the fixed
24086         autoconf-2.14a-1999-12-20.
24087
24088 1999-12-19  Jim Meyering  <meyering@ascend.com>
24089
24090         * m4/lstat-slash.m4: New file.
24091         * m4/jm-macros.m4: Use the new macro:
24092         jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
24093
24094 1999-12-07  Jim Meyering  <meyering@ascend.com>
24095
24096         * m4/perl.m4: Require that File::Compare be available, too.
24097         Too many systems seem to lack it.
24098
24099         * m4/strftime.m4: Add checks for most of the cpp macros tested in
24100         GNU's strftime.c.  Prompted by a patch from Paul Eggert.
24101
24102 1999-11-18  Paul Eggert  <eggert@twinsun.com>
24103
24104         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around a
24105         problem with the QNX 4.25 shell, which doesn't propagate exit
24106         status of failed commands inside shell assignments.
24107
24108 1999-11-17  Jim Meyering  <meyering@ascend.com>
24109
24110         * m4/gettext.m4: Use new AC_CONFIG_LINKS in place of AC_LINK_FILES.
24111
24112 1999-11-07  Jim Meyering  <meyering@ascend.com>
24113
24114         * m4/getloadavg.m4: Add `, 1, [FIXME]' to each use of AC_DEFINE.
24115
24116 1999-11-06  Jim Meyering  <meyering@ascend.com>
24117
24118         * m4/link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): New file/macro.
24119         * m4/jm-macros.m4 (jm_MACROS): Use it here.
24120
24121 1999-11-05  Jim Meyering  <meyering@ascend.com>
24122
24123         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Move some tests from
24124         configure.in of textutils, fileutils, and sh-utils into this one
24125         (shared between those packages) file.
24126         Use `AC_CHECK_MEMBERS((struct stat.st_blksize))' instead of deprecated
24127         AC_STRUCT_ST_BLKSIZE.
24128
24129 1999-11-03  Jim Meyering  <meyering@ascend.com>
24130
24131         * m4/ssize_t.m4: Remove file.  No longer needed since the new version
24132         of AC_CHECK_TYPE checks includes unistd.h.
24133         * m4/jm-macros.m4: Use straight `AC_CHECK_TYPE(ssize_t, int)'.
24134         Suggestion from Akim Demaille.
24135
24136 1999-10-30  Jim Meyering  <meyering@ascend.com>
24137
24138         * m4/uintmax_t.m4: Require 2.14a.  Remove backslash before backtick in
24139         m4-quoted string.
24140         * m4/ls-mntd-fs.m4: Likewise.
24141         * m4/jm-macros.m4: Likewise.  Also, use AC_TYPE_SSIZE_T instead
24142         * m4/jm-winsz1.m4: Likewise.
24143
24144         * m4/const.m4: Remove file, since the fix made it into the experimental
24145         version of autoconf.
24146         * m4/mktime.m4: Likewise.
24147
24148         * m4/check-type.m4: Remove file, now that the latest version of
24149         AC_CHECK_TYPE takes a third arg to specify additional #includes.
24150
24151         * m4/ssize_t.m4: New file, requires experimental version of autoconf.
24152         * m4/jm-macros.m4: Use new AC_TYPE_SSIZE_T instead of my hacked
24153         AC_CHECK_TYPE.
24154
24155 1999-10-04  Jim Meyering  <meyering@ascend.com>
24156
24157         * m4/jm-macros.m4: Don't require autoconf-2.14.1.
24158
24159 1999-09-22  Paul Eggert  <eggert@twinsun.com>
24160
24161         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around GCC
24162         2.95.1 bug with HP-UX 10.20.
24163
24164 1999-09-17  Jim Meyering  <meyering@ascend.com>
24165
24166         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add strdup.
24167         Paul Nevai reported a link failure on a NeXT CUBE with NeXTSTEP 3.3
24168         due to missing strdup (against sh-utils-2.0).
24169
24170 1999-08-29  Jim Meyering  <meyering@ascend.com>
24171
24172         * m4/jm-macros.m4: Require jm_BISON.
24173         * m4/bison.m4: New file.
24174
24175 1999-08-17  Paul Eggert  <eggert@twinsun.com>
24176
24177         * m4/largefile.m4 (AC_SYS_LARGEFILE): Fix typo: missing comma
24178         in value for _FILE_OFFSET_BITS, which broke ports to HP-UX 10.20.
24179
24180 1999-08-05  Jim Meyering  <meyering@ascend.com>
24181
24182         * m4/getline.m4: Rename test file from conftestdata to conftest.data
24183         to avoid conflicts with `conftest' on 8+3 filesystems.
24184         Suggestion from Eli Zaretskii.
24185
24186 1999-08-04  Jim Meyering  <meyering@ascend.com>
24187
24188         * m4/jm-macros.m4: Move a 4-line block of code from the configure.in of
24189         fileutils and sh-utils (textutils's getline test was inadequate).
24190         (AM_FUNC_GETLINE): Run this test.
24191         (AC_CHECK_FUNCS): Check for getdelim.
24192         Reported by Bob Proulx.
24193
24194 1999-08-02  Jim Meyering  <meyering@ascend.com>
24195
24196         * m4/jm-macros.m4: Add a comment.
24197
24198 1999-08-01  Paul Eggert  <eggert@twinsun.com>
24199
24200         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check whether
24201         <inttypes.h> defines strtoumax as a macro (and not as a
24202         function).
24203
24204 1999-08-01  Paul Eggert  <eggert@twinsun.com>
24205
24206         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Make sure
24207         that we can shift, multiply and divide unsigned long long
24208         values; Ultrix cc can't do it.
24209
24210 1999-08-01  Paul Eggert  <eggert@twinsun.com>
24211
24212         * m4/mktime.m4: New file, which is a preview of what should appear
24213         in the next public autoconf release.
24214
24215 1999-08-01  Paul Eggert  <eggert@twinsun.com>
24216
24217         * m4/lfs.m4: Remove this file.
24218         * m4/largefile.m4: New file.  It contains the old contents of
24219         lfs.m4, except that all names with prefix AC_LFS have been
24220         changed to use the prefix AC_SYS_LARGEFILE instead, to be
24221         compatible with future autoconf versions.  Also, some minor m4
24222         quoting problems have been fixed.
24223
24224 1999-08-01  Paul Eggert  <eggert@twinsun.com>
24225
24226         * m4/gettext.m4 (AM_WITH_NLS): Remove unnecessary lines.
24227         Fix typo: $nls_cv_header_intl was misspelled as $nsl_cv_header_intl.
24228         (AM_GNU_GETTEXT): Fix problem with brackets and m4 quoting,
24229         and simplify the shell code.
24230
24231 1999-08-01  Jim Meyering  <meyering@ascend.com>
24232
24233         * m4/mktime.m4 (AC_FUNC_MKTIME): Undefine to avoid syntax errors from
24234         m4.
24235
24236 1999-07-20  Jim Meyering  <meyering@ascend.com>
24237
24238         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memmove.
24239
24240 1999-07-15  Jim Meyering  <meyering@ascend.com>
24241
24242         * m4/jm-macros.m4 (AC_CHECK_FUNCS): Check for getpagesize.
24243
24244 1999-05-22  Jim Meyering  <meyering@ascend.com>
24245
24246         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memchr.
24247
24248 1999-05-20  Jim Meyering  <meyering@ascend.com>
24249
24250         * m4/search-libs.m4 [AC_SEARCH_LIBS]: Quote name in undefine.
24251         Add a colon after each `then' in case $4 is empty.
24252
24253 1999-05-16  Jim Meyering  <meyering@ascend.com>
24254
24255         * m4/search-libs.m4: New file to override autoconf's AC_SEARCH_LIBS.
24256
24257 1999-05-10  Jim Meyering  <meyering@ascend.com>
24258
24259         * m4/jm-mktime.m4: Reflect renaming: AM_FUNC_MKTIME -> AC_FUNC_MKTIME.
24260
24261         * m4/jm-macros.m4: Require 2.14.1, since we use newly-renamed
24262         AC_FUNC_MKTIME.
24263
24264 1999-05-10  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
24265
24266         * m4/jm-mktime.m4, putenv.m4: Fix typos in config.h comments.
24267
24268 1999-05-04  Paul Eggert  <eggert@twinsun.com>
24269
24270         * m4/lfs.m4 (AC_LFS): -n32, -o32, and -n64 should be in CFLAGS,
24271         not CPPFLAGS, so that linking works correctly in IRIX.
24272
24273 1999-04-30  Paul Eggert  <eggert@twinsun.com>
24274
24275         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add dup2.
24276
24277 1999-04-20  Paul Eggert  <eggert@twinsun.com>
24278
24279         * m4/uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Move unsigned long
24280         long check into new jm_AC_TYPE_UNSIGNED_LONG_LONG macro.
24281         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require
24282         jm_AC_TYPE_UNSIGNED_LONG_LONG.
24283         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): New file/macro.
24284
24285         * m4/lfs.m4: Port to AIX and HP-UX.  Support cross-compilation.
24286
24287 1999-04-20  Jim Meyering  <meyering@ascend.com>
24288
24289         * m4/xstrtoumax.m4: Require jm_AC_TYPE_UNSIGNED_LONG_LONG.
24290         AC_REPLACE xstroull if necessary.  From Paul Eggert.
24291         (AC_CHECK_FUNCS): Remove strtoull, strtoumax, strtouq.
24292
24293 1999-04-18  Jim Meyering  <meyering@ascend.com>
24294
24295         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): New file/macro.
24296         * m4/jm-macros.m4: Use it.
24297
24298 1999-04-06  Jim Meyering  <meyering@ascend.com>
24299
24300         * m4/strftime.m4: Remove test for %f.
24301
24302 1999-03-29  Jim Meyering  <meyering@ascend.com>
24303
24304         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): New macro, contains the
24305         superset of the AC_TYPE_* checks in the textutils, fileutils,
24306         and sh-utils, plus AC_TYPE_PID_T.  Paul Eggert suggested adding
24307         AC_TYPE_PID_T.
24308
24309 1999-03-28  Jim Meyering  <meyering@ascend.com>
24310
24311         * m4/jm-macros.m4: Define GNU_PACKAGE here.
24312         Be sure to AC_SUBST it, once again, so that @GNU_PACKAGE@ is
24313         replaced e.g., in the *.sh files of the sh-utils.
24314
24315 1999-03-20  Jim Meyering  <meyering@ascend.com>
24316
24317         * m4/jm-macros.m4: s/jm_WITH_REGEX/jm_INCLUDED_REGEX/.
24318         * m4/regex.m4 (jm_INCLUDED_REGEX): Rename from jm_WITH_REGEX.
24319         Don't depend on AM_GLIBC.  Suggestions from Alain Magloire.
24320
24321 1999-03-19  Jim Meyering  <meyering@ascend.com>
24322
24323         * m4/jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): New macro.
24324
24325 1999-03-12  Jim Meyering  <meyering@ascend.com>
24326
24327         * m4/jm-macros.m4: Use AC_FUNC_SETVBUF_REVERSED.
24328
24329 1999-03-07  Jim Meyering  <meyering@ascend.com>
24330
24331         * m4/jm-glibc-io.m4: Use only those *_unlocked macros that are
24332         declared.
24333
24334 1999-02-17  Jim Meyering  <meyering@ascend.com>
24335
24336         * m4/gettext.m4 (AM_GNU_GETTEXT): Do `changequote' around use of
24337         brackets in macro definition.  From Eli Zaretskii and Alain Magloire.
24338
24339 1999-02-07  Jim Meyering  <meyering@ascend.com>
24340
24341         * m4/group-member.m4: New file -- extracted from sh-utils'
24342         configure.in.
24343
24344         1999-02-05  Eli Zaretskii  <eliz@is.elta.co.il>
24345         * m4/gettext.m4: Support DOS-style d:/foo/bar absolute file names.
24346
24347 1999-02-06  Jim Meyering  <meyering@ascend.com>
24348
24349         * m4/chown.m4: Use `AC_SUBST(LIBOBJS)' since we set LIBOBJS.
24350         * m4/fnmatch.m4: Likewise.
24351         * m4/getgroups.m4: Likewise.
24352         * m4/lstat.m4: Likewise.
24353         * m4/malloc.m4: Likewise.
24354         * m4/putenv.m4: Likewise.
24355         * m4/realloc.m4: Likewise.
24356         * m4/regex.m4: Likewise.
24357         * m4/stat.m4: Likewise.
24358         * m4/strftime.m4: Likewise.
24359         Suggestion from Alain Magloire.
24360
24361         * m4/chown.m4: Use `.$ac_objext', not `.o'.
24362         * m4/fnmatch.m4: Likewise.
24363         * m4/getgroups.m4: Likewise.
24364         * m4/getline.m4: Likewise.
24365         * m4/lstat.m4: Likewise.
24366         * m4/malloc.m4: Likewise.
24367         * m4/memcmp.m4: Likewise.
24368         * m4/putenv.m4: Likewise.
24369         * m4/realloc.m4: Likewise.
24370         * m4/regex.m4: Likewise.
24371         * m4/stat.m4: Likewise.
24372         * m4/strftime.m4: Likewise.
24373         Suggestion from Alain Magloire.
24374
24375         * m4/jm-macros.m4: Actually invoke jm_WITH_REGEX now that it requires
24376         an argument.
24377
24378         * m4/regex.m4: Add a run-time Test for proper operation of
24379         re_compile_pattern.
24380
24381 1999-01-31  Jim Meyering  <meyering@ascend.com>
24382
24383         * m4/getloadavg.m4: Check for locale.h and the function, setlocale.
24384
24385 1999-01-30  Jim Meyering  <meyering@ascend.com>
24386
24387         * m4/check-type.m4: Use 3-arg form of AC_DEFINE.
24388
24389         * m4/jm-mktime.m4: Make this a wrapper around the official
24390         AM_FUNC_MKTIME rather than my private copy, now that the official one
24391         is up to date.
24392         * m4/mktime.m4: Remove file.
24393
24394         * m4/getloadavg.m4: Use 3-arg form of AC_DEFINE.
24395         * m4/uptime.m4: Likewise.
24396         * m4/uintmax_t.m4: Likewise.
24397
24398 1999-01-28  Jim Meyering  <meyering@ascend.com>
24399
24400         * m4/jm-macros.m4: Use jm_AFS.
24401         * m4/afs.m4: New file (from fileutils' configure.in).
24402
24403         * m4/assert.m4: Use the 3-argument forms of AC_DEFINE* macros.
24404         * m4/chown.m4: Likewise.
24405         * m4/d-ino.m4: Likewise.
24406         * m4/d-type.m4: Likewise.
24407         * m4/fnmatch.m4: Likewise.
24408         * m4/getgroups.m4: Likewise.
24409         * m4/gettext.m4: Likewise.
24410         * m4/jm-mktime.m4: Likewise.
24411         * m4/jm-winsz2.m4: Likewise.
24412         * m4/lcmessage.m4: Likewise.
24413         * m4/ls-mntd-fs.m4: Likewise.
24414         * m4/malloc.m4: Likewise.
24415         * m4/memcmp.m4: Likewise.
24416         * m4/putenv.m4: Likewise.
24417         * m4/realloc.m4: Likewise.
24418         * m4/st_mtim.m4: Likewise.
24419         * m4/strftime.m4: Likewise.
24420
24421 1999-01-16  Jim Meyering  <meyering@ascend.com>
24422
24423         * m4/jm-macros.m4 (ARGMATCH_DIE): Define.
24424         (ARGMATCH_DIE_DECL): Define.
24425
24426 1999-01-12  Jim Meyering  <meyering@ascend.com>
24427
24428         * m4/Makefile.am.in: Rewrite to avoid using fmt.
24429         Reported by Lars Hecking.
24430
24431 1999-01-10  Jim Meyering  <meyering@ascend.com>
24432
24433         * m4/fstypename.m4: Use the new 3-arg form of AC_DEFINE instead of my
24434         gross kludge.
24435         * m4/inttypes_h.m4: Likewise.
24436         * m4/lstat.m4: Likewise.
24437         * m4/malloc.m4: Likewise.
24438         * m4/readdir.m4: Likewise.
24439         * m4/realloc.m4: Likewise.
24440         * m4/st_dm_mode.m4: Likewise.
24441         * m4/stat.m4: Likewise.
24442         * m4/utimbuf.m4: Likewise.
24443         * m4/utimes.m4: Likewise.
24444
24445         * m4/check-decl.m4: Use the new 3-arg form of AC_DEFINE instead of the
24446         AC_CHECK_FUNCS hack.  Now, it's still a hack, but at least the
24447         comments in config.h.in are meaningful.
24448
24449         * m4/jm-macros.m4: Require autoconf-2.13 here.
24450
24451         * m4/regex.m4: By default, don't use the included regex.c on systems
24452         with glibc 2.  Suggestion from Uli Drepper.
24453
24454 1999-01-02  Jim Meyering  <meyering@ascend.com>
24455
24456         * m4/jm-macros.m4: Replace strcasecmp and strncasecmp.
24457
24458 1998-12-18  Jim Meyering  <meyering@ascend.com>
24459
24460         * m4/Makefile.am.in (Makefile.am): Simplify rule.
24461         Based on a suggestion from Lars Hecking.
24462
24463 1998-11-16  Paul Eggert  <eggert@twinsun.com>
24464
24465         * m4/lfs.m4 (AC_LFS): Add support for HP-UX 10.20 and HP-UX 11.
24466
24467 1998-11-16  Jim Meyering  <meyering@ascend.com>
24468
24469         * m4/lfs.m4: Double-quote the `uname...` expression.
24470
24471 1998-11-14  Jim Meyering  <meyering@ascend.com>
24472
24473         * m4/lstat.m4: Correct comment.  POSIX does not permit it to succeed.
24474         * m4/stat.m4: Likewise.
24475
24476 1998-11-03  Jim Meyering  <meyering@ascend.com>
24477
24478         * m4/stat.m4: Rewrite to set HAVE_STAT_EMPTY_STRING_BUG.
24479         * m4/lstat.m4: Rewrite to set HAVE_LSTAT_EMPTY_STRING_BUG.
24480
24481 1998-10-18  Jim Meyering  <meyering@ascend.com>
24482
24483         * m4/check-decl.m4 (jm_CHECK_DECL_LOCALTIME_R): Remove macro.
24484
24485 1998-10-17  Jim Meyering  <meyering@ascend.com>
24486
24487         * m4/decl.m4 (jm_CHECK_DECLARATION): Don't hard-code which headers to
24488         include, though we still hard-code the `require'-like AC_CHECK_HEADERS
24489         calls for those previously hard-coded headers.  Instead, take a new
24490         parameter.
24491         (jm_CHECK_DECLARATIONS): Reflect interface change.
24492         * m4/check-decl.m4 (jm_CHECK_DECLS): Likewise.
24493         (jm_CHECK_DECL_LOCALTIME_R): New macro.
24494
24495         * m4/mktime.m4: Test for spring-forward gap before long-running test.
24496
24497 1998-10-14  Jim Meyering  <meyering@ascend.com>
24498
24499         * m4/mktime.m4: Use the more portable "TZ=PST8PDT,M4.1.0,M10.5.0"
24500         instead of "TZ=America/Vancouver".  From Paul Eggert.
24501
24502 1998-10-11  Jim Meyering  <meyering@ascend.com>
24503
24504         * m4/mktime.m4 (jm_AM_FUNC_MKTIME): New file and macro.
24505         This adds a test for a recently added compatibility fix for mktime.c.
24506         * m4/jm-mktime.m4: Require jm_AM_FUNC_MKTIME, not AM_FUNC_MKTIME.
24507
24508 1998-09-27  Jim Meyering  <meyering@ascend.com>
24509
24510         * m4/jm-macros.m4 (jm_MACROS): Require jm_FUNC_FNMATCH.
24511
24512         * m4/fnmatch.m4 (jm_FUNC_FNMATCH): New file/macro.  Extracted from
24513         ../configure.in, including a change from Gordon Matzigkeit to allow
24514         cross-compiling for the Hurd.
24515
24516         * m4/glibc.m4: New file/macro to test for the GNU C Library
24517         versions 1 and 2.  From Gordon Matzigkeit.
24518         Indent.
24519
24520 1998-09-21  Jim Meyering  <meyering@ascend.com>
24521
24522         * m4/chown.m4: Declare locals: before, after.  From Andries Brouwer.
24523
24524 1998-08-18  Paul Eggert  <eggert@twinsun.com>
24525
24526         Port nanosecond-resolution times to UnixWare 2.1.2 and
24527         pedantic Solaris 2.6.
24528
24529         * m4/st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC): Renamed from
24530         AC_STRUCT_ST_MTIM.
24531         * m4/st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC):
24532         Generate name of ns member, instead of just 1 or undef.
24533         Allow for UnixWare 2.1.2 and Solaris 2.6 if in pedantic mode.
24534
24535 1998-08-15  Jim Meyering  <meyering@ascend.com>
24536
24537         * m4/ssize_t.m4 (jm_TYPE_SSIZE_T): Remove file.
24538         * m4/check-type.m4: New file.  Replacement for AC_CHECK_TYPE.
24539         * m4/jm-macros.m4: Use the new AC_CHECK_TYPE(ssize_t, int)
24540         instead of jm_TYPE_SSIZE_T.
24541
24542 1998-08-12  Jim Meyering  <meyering@ascend.com>
24543
24544         * m4/st_dm_mode.m4: New file.  From Johan Danielsson.
24545
24546 1998-08-02  Jim Meyering  <meyering@ascend.com>
24547
24548         * m4/st_mtim.m4: Use hack to avoid having to put #undef HAVE_ST_MTIM
24549         in acconfig.h manually.
24550
24551 1998-07-31  Paul Eggert  <eggert@twinsun.com>
24552
24553         * m4/st_mtim.m4: New file.
24554
24555 1998-07-28  Jim Meyering  <meyering@ascend.com>
24556
24557         * m4/utimes.m4: Undef stat.
24558
24559 1998-07-25  Jim Meyering  <meyering@ascend.com>
24560
24561         * m4/utime.m4 (jm_FUNC_UTIME): New file and macro.
24562         * m4/utimes.m4 (jm_FUNC_UTIMES_NULL): New file and macro.
24563
24564 1998-07-09  Manfred Hollstein  <manfred@s-direktnet.de>
24565
24566         * m4/chown.m4 (jm_FUNC_CHOWN): Add a check to verify that the
24567         uid and gid actually remain unchanged.
24568
24569 1998-07-07  Jim Meyering  <meyering@ascend.com>
24570
24571         * m4/jm-glibc-io.m4: Remove fclose_unlocked.
24572
24573 1998-07-04  Jim Meyering  <meyering@ascend.com>
24574
24575         * m4/regex.m4: Use syscmd, ifelse, and sysval.  Mainly as an exercise
24576         to prove that this macro can be used in packages without regex.c.
24577
24578 1998-07-04  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
24579
24580         * m4/gettext.m4 (AM_WITH_NLS): Remove intl/libintl.h if <libintl.h>
24581         is to be used.
24582
24583 1998-07-03  Jim Meyering  <meyering@ascend.com>
24584
24585         * m4/gettext.m4: Add -lintl if it's found to be necessary.
24586
24587         * m4/gettext.m4: New file -- from gettext-0.10.35.
24588         * m4/lcmessage.m4: Likewise.
24589         * m4/progtest.m4: Likewise.
24590
24591         * m4/regex.m4 (jm_WITH_REGEX): New file and macro.
24592         * m4/jm-macros.m4: Require the new macro.
24593
24594 1998-06-29  Jim Meyering  <meyering@ascend.com>
24595
24596         * m4/fstypename.m4: Include sys/param.h.  NetBSD 1.3.1 requires this
24597         for the definition of NGROUPS (used in a system header included
24598         by sys/mount.h).
24599
24600 1998-06-28  Jim Meyering  <meyering@ascend.com>
24601
24602         * m4/ls-mntd-fs.m4: New file.
24603         * m4/fstypename.m4: New file.
24604
24605         * m4/jm-macros.m4: Require the new macro.
24606         * m4/jm-glibc-io.m4: New file.
24607
24608 1998-05-19  Jim Meyering  <meyering@ascend.com>
24609
24610         * m4/jm-macros.m4: Add jm_FUNC_LCHOWN.
24611         * m4/lchown.m4: New file.
24612
24613         * m4/Makefile.am.in: New file.
24614         * m4/Makefile.am (Makefile.am): Depend on Makefile.am.in.
24615
24616 1998-05-14  Jim Meyering  <meyering@ascend.com>
24617
24618         * m4/Makefile.am (EXTRA_DIST): Add them.
24619         * m4/jm-macros.m4: New file.
24620         * m4/utimbuf.m4: New file.
24621
24622 1998-05-12  Jim Meyering  <meyering@ascend.com>
24623
24624         * m4/Makefile.am (EXTRA_DIST): Add isc-posix.m4.
24625
24626 1998-05-11  Jim Meyering  <meyering@ascend.com>
24627
24628         * m4/isc-posix.m4: New file.
24629
24630 1998-05-10  Jim Meyering  <meyering@ascend.com>
24631
24632         * m4/jm-mktime.m4: Use AM_FUNC_MKTIME, now that it's up to date.
24633
24634 1998-05-09  Jim Meyering  <meyering@ascend.com>
24635
24636         * m4/Makefile.am (EXTRA_DIST): Add ssize_t.m4.
24637         (EXTRA_DIST): Remove mktime.m4, now that the new version is included
24638         with automake.
24639
24640         * m4/ssize_t.m4: New file.
24641         * m4/mktime.m4: Remove file -- the new automake has this now.
24642
24643 1998-04-26  Jim Meyering  <meyering@ascend.com>
24644
24645         * m4/assert.m4: New file.
24646         * m4/Makefile.am (EXTRA_DIST): Add assert.m4.
24647
24648 1998-04-05  Jim Meyering  <meyering@ascend.com>
24649
24650         * m4/prereq.m4 (jm_PREREQ_REGEX): New macro.
24651         (jm_PREREQ): Use it here.
24652
24653 1998-03-23  Jim Meyering  <meyering@eng.ascend.com>
24654
24655         * m4/inttypes_h.m4: Kludges so I don't have to add HAVE_INTTYPES_H
24656         in acconfig.h.
24657
24658 1998-03-15  Jim Meyering  <meyering@eng.ascend.com>
24659
24660         * m4/prereq.m4: New file.
24661         * m4/error.m4: New file.
24662         * m4/Makefile.am (EXTRA_DIST): Add error.m4 and prereq.m4.
24663
24664 1998-02-07  Jim Meyering  <meyering@eng.ascend.com>
24665
24666         * m4/getline.m4: Don't set am_cv_func_working_getline before the
24667         cache-check for the same variable -- that defeated the purpose of
24668         the test; the test program was never run.  This was a problem only
24669         on systems with losing getline functions -- HP-UX 10.20 is one.
24670         Reported by Bjorn Helgaas.
24671
24672 1998-02-06  Jim Meyering  <meyering@eng.ascend.com>
24673
24674         * m4/Makefile.am (EXTRA_DIST): Add perl.m4.
24675
24676 1998-01-10  Jim Meyering  <meyering@na-net.ornl.gov>
24677
24678         * m4/Makefile.am (EXTRA_DIST): Add const.m4.
24679
24680         * m4/const.m4: New file.  Use an initializer in this declaration
24681         typedef int charset[2]; const charset x;
24682         Reported by Bob Glickstein.
24683
24684 1997-12-21  Jim Meyering  <meyering@na-net.ornl.gov>
24685
24686         * m4/chown.m4: Fix reversed types on -1 args to chown.
24687         From Kaveh Ghazi.
24688
24689 1997-12-14  Jim Meyering  <meyering@na-net.ornl.gov>
24690
24691         * m4/check-decl.m4: s/DECLARATION_/DECL_/g.
24692         Add lseek and memchr.
24693
24694         * m4/decl.m4: s/HAVE_DECLARATION_/HAVE_DECL_/g.
24695         T.E.Dickey <dickey@clark.net> said that some older preprocessors
24696         have a 20-character limit on names.
24697
24698 1997-11-30  Jim Meyering  <meyering@na-net.ornl.gov>
24699
24700         * m4/inttypes_h.m4: New file.
24701         * m4/uintmax_t.m4: New file.
24702         * m4/Makefile.am (EXTRA_DIST): Add inttypes_h.m4 and uintmax_t.m4.
24703
24704 Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007
24705   Free Software Foundation, Inc.
24706 Copying and distribution of this file, with or without modification,
24707 are permitted provided the copyright notice and this notice are preserved.