Avoid some C++ diagnostics reported by Bruno Haible.
[pspp] / ChangeLog
1 2006-10-31  Paul Eggert  <eggert@cs.ucla.edu>
2
3         Avoid some C++ diagnostics reported by Bruno Haible.
4         * lib/quotearg.c (clone_quoting_options): Use xmemdup rather than
5         xmalloc.
6         (quotearg_alloc): Use xcharalloc rather than xmalloc.
7         (struct slotvec): Move to top level.
8         (quotearg_n_options): Rewrite to avoid xmalloc.
9         * lib/xalloc.h (xcharalloc): New function.
10         * (xrealloc, xnrealloc, x2realloc, x2nrealloc, xmemdup):
11         [defined __cplusplus]: Add function template that provides result
12         type propagation.  This part of the change is from Bruno Haible.
13
14 2006-10-29  Bruno Haible  <bruno@clisp.org>
15
16         Make it compile in C++ mode.
17         * lib/striconv.c (mem_cd_iconv): Cast malloc/realloc result.
18         * lib/strnlen1.c (strnlen1): Cast memchr result.
19         * lib/mbchar.h (mb_copy): Rename arguments to 'new_mbc', 'old_mbc'.
20         * lib/clean-temp.c (string_equals, string_hash): Add casts.
21         (create_temp_dir): Rename local variable 'template'.
22         (compile_csharp_using_sscli): Add cast.
23         * lib/fatal-signal.c (at_fatal_signal): Cast xmalloc result.
24         * lib/findprog.c (find_in_path): Likewise.
25         * lib/linebreak.c (mbs_width_linebreaks): Cast malloc result.
26         * lib/wait-process.c (register_slave_subprocess): Likewise.
27
28 2006-10-22  Bruno Haible  <bruno@clisp.org>
29
30         * modules/tsearch: New file.
31         * lib/tsearch.h: New file.
32         * lib/tsearch.c: New file, from glibc-2.5 with small modifications.
33         * m4/tsearch.m4: New file.
34         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add tsearch.
35
36 2006-10-29  Eric Blake  <ebb9@byu.net>
37
38         * lib/arcfour.c: Assume config.h.
39         * lib/arctwo.c: Likewise.
40         * lib/base64.c: Likewise.
41         * lib/check-version.c: Likewise.
42         * lib/crc.c: Likewise.
43         * lib/des.c: Likewise.
44         * lib/gc-gnulib.c: Likewise.
45         * lib/gc-libgcrypt.c: Likewise.
46         * lib/gc-pbkdf2-sha1.c: Likewise.
47         * lib/getaddrinfo.c: Likewise.
48         * lib/getdelim.c: Likewise.
49         * lib/getline.c: Likewise.
50         * lib/hmac-md5.c: Likewise.
51         * lib/hmac-sha1.c: Likewise.
52         * lib/iconvme.c: Likewise.
53         * lib/md2.c: Likewise.
54         * lib/md4.c: Likewise.
55         * lib/memxor.c: Likewise.
56         * lib/read-file.c: Likewise.
57         * lib/readline.c: Likewise.
58         * lib/rijndael-alg-fst.c: Likewise.
59         * lib/rijndael-api-fst.c: Likewise.
60         * lib/xgetdomainname.c: Likewise.
61
62 2006-10-28  Eric Blake  <ebb9@byu.net>
63
64         * lib/xstrndup.c: Assume config.h.
65
66 2006-10-27  Paul Eggert  <eggert@cs.ucla.edu>
67
68         Move stat.h-substitute stuff from lib/stat-macros.h to lib/stat_.h.
69         stat-macros.h is now for our own macros, whereas stat_h is for
70         macros in the <sys/stat.h> name space.
71         * lib/stat-macros.h: Remove copyright notice, as this file is now tiny.
72         (STAT_MACROS_H): Remove.
73         (S_IFMT, S_ISBLK, S_ISCHR, S_ISDIR, S_ISFIFO, S_ISLNK, S_ISNAM):
74         (S_ISMPB, S_ISMPC, S_ISNWK, S_ISREG, S_ISSOCK, S_ISDOOR, S_ISPORT):
75         (S_TYPEISMQ, S_TYPEISTMO, S_TYPEISSEM, S_TYPEISSHM, S_ISCTG, S_ISOFD):
76         (S_ISOFL, S_ISWHT, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IRGRP):
77         (S_IROTH, S_IWUSR, S_IWGRP, S_IWOTH, S_IXUSR, S_IXGRP, S_IXOTH):
78         (S_IRWXU, S_IRWXG, S_IRWXO, S_IXUGO, S_IRWXUGO):
79         Move these macros to ...
80         * lib/stat_.h: here.  Don't include stat-macros.h.
81         * lib/canonicalize.c: Don't include stat-macros.h.
82         * lib/chown.c: Likewise.
83         * lib/euidaccess.c: Likewise.
84         * lib/file-type.c: Likewise.
85         * lib/filemode.c: Likewise.
86         * lib/glob.c: Likewise.
87         * lib/isapipe.c: Likewise.
88         * lib/lchown.c: Likewise.
89         * lib/lstat.c: Likewise.
90         * lib/mkdir-p.c: Likewise.
91         * lib/rmdir.c: Likewise.
92         * m4/lchown.m4 (gl_FUNC_LCHOWN): Don't require gl_STAT_MACROS.
93         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Don't check for io.h
94         unless mkdir isn't declared, to speed up 'configure'.
95         Always create sys/stat.h, since it's unlikely any real sys/stat.h
96         would define all the S_* symbols.
97         * modules/canonicalize (Depends-on):
98         Depend on sys_stat, not stat-macros.
99         * modules/chown: Likewise.
100         * modules/euidaccess: Likewise.
101         * modules/filemode: Likewise.
102         * modules/file-type: Likewise.
103         * modules/glob: Likewise.
104         * modules/isapipe: Likewise.
105         * modules/lchown: Likewise.
106         * modules/lstat: Likewise.
107         * modules/mkancesdirs: Likewise.
108         * modules/rmdir: Likewise.
109         * modules/mkdir-p (Depends-on): Also depend on sys_stat.
110         * modules/modechange: Likewise.
111         * modules/stat-macros (Files): Remove m4/stat-macros.m4.
112         (configure.ac): Remove gl_STAT_MACROS.
113         * modules/sys_stat (Depends-on): Remove stat-macros.
114
115 2006-10-27  Bruno Haible  <bruno@clisp.org>
116
117         * m4/signed.m4: Remove file.
118         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_ARGS_: Remove bh_C_SIGNED
119         invocation.
120         * modules/vasnprintf (Files): Remove m4/signed.m4.
121
122 2006-10-27  Bruno Haible  <bruno@clisp.org>
123
124         Update to GNU gettext 0.16.
125         * modules/gettext (Files): Add m4/intl.m4, m4/intldir.m4. Remove
126         m4/inttypes-h.m4, m4/signed.m4.
127         * m4/gettext.m4: Update to GNU gettext 0.16.
128         * m4/intl.m4: New file, from GNU gettext.
129         * m4/intldir.m4: New file, from GNU gettext.
130         * config/srclist.txt: Update
131
132 2006-10-27  Eric Blake  <ebb9@byu.net>
133
134         * MODULES.html.sh: Document tempname.
135         * modules/mkstemp (Depends-on): Add tempname, and drop transitive
136         dependencies.
137         (Files): Move lib/tempname.c...
138         * modules/tempname: ...to this new module.
139         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Remove tempname checks.
140         (gl_PREREQ_TEMPNAME): Move...
141         * m4/tempname.m4: ...to this new file.
142         * lib/mkstemp.c (includes) [!_LIBC]: Use tempname.h.
143         * modules/sys_stat (Depends-on): Add stat-macros.
144         * lib/stat_.h (includes): Pick up stat macros.
145         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Replace <sys/stat.h>
146         if stat macros are broken.
147         * lib/tempname.c (includes): No need to include "stat-macros.h".
148         (__gen_tempname) [!_LIBC]: Expose as gen_tempname.
149         (direxists, __path_search) [!_LIBC]: Don't compile these in
150         gnulib; the tmpdir module covers that.
151         * lib/tempname.h: New file.
152
153 2006-10-26  Paul Eggert  <eggert@cs.ucla.edu>
154
155         * COPYING: Explain how gnulib-tool converts licence headers.
156         Almost all wording by Eric Blake.
157
158 2006-10-25  Paul Eggert  <eggert@cs.ucla.edu>
159
160         * lib/mbchar.h (is_basic_table): Make read-only.
161         * lib/mbchar.c (is_basic_table): Likewise.
162         Reported by John Darrington.
163
164 2006-10-25  Bruno Haible  <bruno@clisp.org>
165
166         * lib/progname.h (set_program_name): Undefine before defining.
167
168 2006-10-25  Bruno Haible  <bruno@clisp.org>
169
170         * lib/gettext.h (_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS): Define to
171         false for non-gcc C++ compilers.
172         Reported by Nelson H. F. Beebe <beebe@math.utah.edu>.
173
174 2006-10-24  Bruno Haible  <bruno@clisp.org>
175
176         * lib/striconv.c (mem_cd_iconv, str_cd_iconv): Treat all non-GNU
177         iconv implementations like Irix iconv.
178
179 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
180
181         * modules/vararrays: New file.
182         * m4/vararrays.m4: New file, taken from diffutils.
183         * MODULES.html.sh: New module vararrays.
184
185 2006-10-24  Karl Berry  <karl@gnu.org>
186
187         * doc/gnulib-intro.texi: --- instead of --; non-naive naive.
188         Don't call GNU Unix.
189
190 2006-10-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
191
192         * users.txt: Add Libtool.
193
194         Sync from Libtool:
195
196         2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
197
198         * lib/argz.c: Remove check for HAVE_CONFIG_H, to conform
199         to gnulib's policy of including config.h unconditionally.
200
201 2006-10-24  Bruno Haible  <bruno@clisp.org>
202
203         * modules/wcwidth (Files): Add m4/wint_t.m4.
204         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Require gt_TYPE_WINT_T.
205         * lib/wcwidth.h (iswprint): Use 'int' if 'wint_t' is not defined.
206
207 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
208
209         * lib/getdate.y (yyerror): Make the arguments pointer-to-const,
210         to pacify GCC with some -W flags enabled.  Problem reported by
211         Bruno Haible.
212
213 2006-10-24  Jim Meyering  <jim@meyering.net>
214
215         * MODULES.html.sh: Remove uinttostr.  It's not a module.
216         Reported by Karl Berry.
217
218 2006-10-23  Bruno Haible  <bruno@clisp.org>
219
220         * lib/fts.c (fts_build): Move variable declaration, for C89 compliance.
221
222 2006-10-24  Bruno Haible  <bruno@clisp.org>
223
224         * lib/gl_list.h: Use C comment style, not C++ comment style.
225
226 2006-10-23  Eric Blake  <ebb9@byu.net>
227
228         * lib/getaddrinfo.c (includes): Add missing include.
229
230 2006-10-23  Bruno Haible  <bruno@clisp.org>
231             Paul Eggert  <eggert@cs.ucla.edu>
232
233         Ability to rename obstack_free.
234         * lib/obstack.h (__obstack_free): New macro. Declare instead of
235         obstack_free.
236         (obstack_free): Invoke the __obstack_free macro.
237         * lib/obstack.c (obstack_free): Use __obstack_free macro.
238
239 2006-10-23  Bruno Haible  <bruno@clisp.org>
240             Paul Eggert  <eggert@cs.ucla.edu>
241
242         * lib/argp.h (argp_parse, __argp_parse): Comment out the identifiers
243         __argc, __argv from the declaration. (They are defined as macros on
244         mingw.)
245
246 2006-10-22  Bruno Haible  <bruno@clisp.org>
247
248         * doc/gnulib-intro.texi: New file.
249         * doc/gnulib.texi: Include it.
250
251 2006-10-21  Bruno Haible  <bruno@clisp.org>
252
253         * doc/gnulib.texi: Split the chapter "Gnulib" into 3 chapters
254         "Introduction", "Miscellanous Notes", "Particular Modules".
255
256 2006-10-21  Bruno Haible  <bruno@clisp.org>
257
258         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
259         Change mostlyclean-local rule to avoid sh syntax error from bash
260         versions 2.00..2.05 when $(MOSTLYCLEANDIRS) is empty.
261
262 2006-10-23  Jim Meyering  <jim@meyering.net>
263
264         * lib/getaddrinfo.c (getnameinfo): Use new lightweight uinttostr,
265         in place of snprintf.
266
267         * modules/inttostr (Files): Add lib/uinttostr.c.
268         * lib/uinttostr.c (inttostr): New file/function.
269         * lib/inttostr.h (uinttostr): Declare.
270         * m4/inttostr.m4: Add AC_LIBOBJ([uinttostr]).
271         * MODULES.html.sh (Numeric conversion functions <stdlib.h>):
272         Add uinttostr.
273         * modules/getaddrinfo (Depends-on): Remove snprintf.  Add inttostr.
274
275 2006-10-21  Paul Eggert  <eggert@cs.ucla.edu>
276
277         * lib/canonicalize.c (ELOOP): Define if not already defined.
278         Problem reported by Bruno Haible in
279         <http://lists.gnu.org/archive/html/bug-gnulib/2006-10/msg00282.html>.
280
281 2006-10-21  Paul Eggert  <eggert@cs.ucla.edu>
282
283         * lib/stdint_.h [defined _AIX]: Don't include <sys/types.h>.
284         Problem reported by Perry Smith and Ville Laurikari.
285
286         * lib/getndelim2.c (SSIZE_MAX): Use same defn that getdelim.c
287         uses.
288
289 2006-10-19  Bruno Haible  <bruno@clisp.org>
290
291         * lib/getndelim2.c (SSIZE_MAX): Provide fallback definition. Needed
292         for mingw.
293
294 2006-10-19  Bruno Haible  <bruno@clisp.org>
295
296         * lib/openat-priv.h (EOPNOTSUPP): Provide fallback definition.
297         Needed for mingw.
298
299 2006-10-19  Bruno Haible  <bruno@clisp.org>
300
301         * m4/size_max.m4 (gl_SIZE_MAX): Cache the result.
302
303 2006-10-19  Bruno Haible  <bruno@clisp.org>
304
305         * m4/allocsa.m4 (gl_ALLOCSA): Invoke gl_FUNC_ALLOCA, don't AC_REQUIRE
306         it.
307
308 2006-10-19  Bruno Haible  <bruno@clisp.org>
309
310         * m4/alloca.m4 (gl_FUNC_ALLOCA): Cache the result of the AC_EGREP_CPP
311         invocation.
312
313 2006-10-19  Bruno Haible  <bruno@clisp.org>
314
315         * gnulib-tool (func_create_testdir): Don't include ftruncate and
316         mountlist by default.
317
318 2006-10-16  Bruno Haible  <bruno@clisp.org>
319
320         * lib/c-strstr.c: Include c-strstr.h.
321
322 2006-10-18  Charles Wilson  <cygwin@cwilson.fastmail.fm>
323
324         * gnulib-tool: Don't clobber $sourcebase when $local_gnulib_dir ends
325         in a slash.
326
327 2006-10-18  Bruno Haible  <bruno@clisp.org>
328
329         * lib/lock.h [C++]: Wrap definitions in extern "C".
330
331 2006-10-18  Bruno Haible  <bruno@clisp.org>
332
333         * gnulib-tool (func_emit_initmacro_end): Remove duplicates from the
334         gl_LIBOBJS list.
335
336 2006-10-18  Bruno Haible  <bruno@clisp.org>
337
338         * lib/findprog.c (find_in_path): Avoid "gcc -Wwrite-strings" warning.
339
340 2006-10-19  Paul Eggert  <eggert@cs.ucla.edu>
341
342         * lib/xstrtol.h: Include gettext.h.
343         (_STRTOL_ERROR): Wrap English-language formats inside gettext.
344         Problem reported by Eric Blake.
345         * modules/xstrtol (Depends-on): Add gettext-h.
346
347 2006-10-19  Paul Eggert  <eggert@cs.ucla.edu>  (tiny change)
348
349         * lib/strftime.c (advance): New macro.
350         (add): Use it to avoid adding 0 to a FILE *.  FILE can be an
351         incomplete type, so you can't add 0 to it.  Problem and patch
352         reported by Eelco Dolstra for dietlibc.
353
354 2006-10-18  Jim Meyering  <jim@meyering.net>
355
356         * lib/readutmp.c (desirable_utmp_entry): Use "bool" as the
357         type for a local, and rename it: s/up/user_proc/.
358
359 2006-10-18  Sergey Poznyakoff  <gray@gnu.org.ua>
360
361         * lib/readutmp.c (desirable_utmp_entry): Implement new flag:
362         READ_UTMP_USER_PROCESS.
363         * lib/readutmp.h (READ_UTMP_USER_PROCESS): New flag
364
365 2006-10-17  Paul Eggert  <eggert@cs.ucla.edu>
366
367         * lib/localcharset.c: Do not check HAVE_SETLOCALE.
368         * m4/localcharset.m4 (gl_LOCALCHARSET): Don't check for setlocale.
369
370 2006-10-17  Eric Blake  <ebb9@byu.net>
371
372         * lib/sigprocmask.c (sigprocmask): Fix typo.
373
374         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Fix typo.
375
376         * modules/clean-temp (Makefile.am): Don't add to make output...
377         (configure.ac): ...instead define SIGNAL_SAFE_LIST inside
378         config.h.
379
380 2006-10-17  Bruno Haible  <bruno@clisp.org>
381
382         * lib/gettext.h (gettext, ngettext, pgettext, npgettext): Define
383         differently if DEFAULT_TEXT_DOMAIN is set.
384
385 2006-10-16  Bruno Haible  <bruno@clisp.org>
386
387         * lib/clean-temp.c: Include fwriteerror.h.
388
389 2006-10-16  Bruno Haible  <bruno@clisp.org>
390
391         * getndelim2.m4 (gl_GETNDELIM2): Remove 2003-10-23 hack.
392
393 2006-10-16  Bruno Haible  <bruno@clisp.org>
394
395         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Also test for sigset_t.
396         * lib/sigprocmask.h: Include <sys/types.h>.
397         (sigset_t): Use the system's definition if present.
398
399 2006-10-17  Eric Blake  <ebb9@byu.net>
400
401         * lib/xvasprintf.c (includes): Assume config.h.
402         * lib/xasprintf.c (includes): Likewise.
403
404 2006-10-16  Paul Eggert  <eggert@cs.ucla.edu>
405
406         * lib/fsusage.c (PROPAGATE_ALL_ONES): Don't assume uintmax_t is
407         at least as wide as intmax_t.
408
409 2006-10-16  Alexandre Duret-Lutz  <adl@gnu.org>
410
411         (Imported from Automake.)
412         * build-aux/gnupload: Update to version 1.1 of directive file.
413
414 2006-10-16  Eric Blake  <ebb9@byu.net>
415
416         * modules/configmake (Makefile.am): Add pkglibexecdir support, to
417         match Automake 1.10a.
418
419 2006-10-14  Bruno Haible  <bruno@clisp.org>
420
421         * modules/sigprocmask: New file.
422         * lib/sigprocmask.h: New file.
423         * lib/sigprocmask.c: New file.
424         * m4/signalblocking.m4 (gl_SIGNALBLOCKING): Renamed from
425         gt_SIGNALBLOCKING. When not defining HAVE_POSIX_SIGNALBLOCKING,
426         request sigprocmask.o.
427         (gl_PREREQ_SIGPROCMASK): New macro.
428         * modules/fatal-signal (Files): Remove m4/signalblocking.m4.
429         (Depends-on): Add sigprocmask.
430         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Don't require
431         gt_SIGNALBLOCKING. Test for 'raise' only once.
432         * lib/fatal-signal.c: Include sigprocmask.h.
433         (fatal_signal_set, init_fatal_signal_set, block_fatal_signals,
434         unblock_fatal_signals): Define always.
435         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
436         sigprocmask.
437
438 2006-10-14  Paul Eggert  <eggert@cs.ucla.edu>
439
440         Sync from Automake.
441         * build-aux/install-sh (posix_mkdir): Reject FreeBSD 6.1 mkdir -p -m,
442         which incorrectly sets the mode of an existing destination
443         directory.  In some cases the unpatched install-sh could do the
444         equivalent of "chmod 777 /" or "chmod 0 /" on a buggy FreeBSD
445         system.  We hope this is rare in practice, but it's clearly worth
446         fixing.  Problem reported by Alex Unleashed in
447         <http://lists.gnu.org/archive/html/bug-autoconf/2006-10/msg00012.html>.
448         Also, don't bother to check for -m bugs unless we're using -m;
449         suggested by Stepan Kasal.
450
451 2006-10-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
452
453         Sync from Automake.
454         * build-aux/depcomp (gcc3): Put dependency extraction flags before the
455         `-c' flag, so they appear at the same position as in %FASTDEP%
456         mode in depend2.am.  Fixes build failure for FreeBSD's c89,
457         which ignores unknown options only after the first non-option.
458         Bug report against M4 by Nelson H. F. Beebe.
459
460 2006-10-13  Jim Meyering  <jim@meyering.net>
461
462         Fix a bug in yesterday's change.
463         * lib/fts.c (fts_open): When using FTS_XDEV|FTS_NOSTAT,
464         p->fts_statp->st_dev would be used uninitialized.
465         Ensures that we always call fts_stat on the very first entry.
466         Miklos Szeredi reported that find -xdev stopped working.
467
468 2006-10-12  Bruno Haible  <bruno@clisp.org>
469
470         * gnulib-tool (func_get_automake_snippet): Append an automatically
471         computed EXTRA_DIST augmentation.
472         * modules/acl (Makefile.am): Remove EXTRA_DIST augmentation.
473         * modules/alloca-opt (Makefile.am): Likewise.
474         * modules/allocsa (Makefile.am): Likewise.
475         * modules/arcfour (Makefile.am): Likewise.
476         * modules/arctwo (Makefile.am): Likewise.
477         * modules/argmatch (Makefile.am): Likewise.
478         * modules/argz (Makefile.am): Likewise.
479         * modules/atexit (Makefile.am): Likewise.
480         * modules/backupfile (Makefile.am): Likewise.
481         * modules/byteswap (Makefile.am): Likewise.
482         * modules/c-strtod (Makefile.am): Likewise.
483         * modules/c-strtold (Makefile.am): Likewise.
484         * modules/calloc (Makefile.am): Likewise.
485         * modules/canon-host (Makefile.am): Likewise.
486         * modules/canonicalize (Makefile.am): Likewise.
487         * modules/chdir-long (Makefile.am): Likewise.
488         * modules/chdir-safer (Makefile.am): Likewise.
489         * modules/check-version (Makefile.am): Likewise.
490         * modules/chown (Makefile.am): Likewise.
491         * modules/cloexec (Makefile.am): Likewise.
492         * modules/close-stream (Makefile.am): Likewise.
493         * modules/closeout (Makefile.am): Likewise.
494         * modules/crc (Makefile.am): Likewise.
495         * modules/csharpexec (Makefile.am): Likewise.
496         * modules/cycle-check (Makefile.am): Likewise.
497         * modules/des (Makefile.am): Likewise.
498         * modules/dev-ino (Makefile.am): Likewise.
499         * modules/dirfd (Makefile.am): Likewise.
500         * modules/dirname (Makefile.am): Likewise.
501         * modules/dup2 (Makefile.am): Likewise.
502         * modules/eealloc (Makefile.am): Likewise.
503         * modules/error (Makefile.am): Likewise.
504         * modules/euidaccess (Makefile.am): Likewise.
505         * modules/exclude (Makefile.am): Likewise.
506         * modules/exitfail (Makefile.am): Likewise.
507         * modules/fcntl-safer (Makefile.am): Likewise.
508         * modules/fcntl (Makefile.am): Likewise.
509         * modules/file-type (Makefile.am): Likewise.
510         * modules/fileblocks (Makefile.am): Likewise.
511         * modules/filemode (Makefile.am): Likewise.
512         * modules/filenamecat (Makefile.am): Likewise.
513         * modules/fnmatch (Makefile.am): Likewise.
514         * modules/fopen-safer (Makefile.am): Likewise.
515         * modules/fpending (Makefile.am): Likewise.
516         * modules/fprintftime (Makefile.am): Likewise.
517         * modules/free (Makefile.am): Likewise.
518         * modules/fsusage (Makefile.am): Likewise.
519         * modules/ftruncate (Makefile.am): Likewise.
520         * modules/fts (Makefile.am): Likewise.
521         * modules/gc-arcfour (Makefile.am): Likewise.
522         * modules/gc-des (Makefile.am): Likewise.
523         * modules/gc-hmac-md5 (Makefile.am): Likewise.
524         * modules/gc-hmac-sha1 (Makefile.am): Likewise.
525         * modules/gc-md4 (Makefile.am): Likewise.
526         * modules/gc-pbkdf2-sha1 (Makefile.am): Likewise.
527         * modules/gc-sha1 (Makefile.am): Likewise.
528         * modules/gc (Makefile.am): Likewise.
529         * modules/getaddrinfo (Makefile.am): Likewise.
530         * modules/getcwd (Makefile.am): Likewise.
531         * modules/getdelim (Makefile.am): Likewise.
532         * modules/getdomainname (Makefile.am): Likewise.
533         * modules/getgroups (Makefile.am): Likewise.
534         * modules/gethostname (Makefile.am): Likewise.
535         * modules/gethrxtime (Makefile.am): Likewise.
536         * modules/getline (Makefile.am): Likewise.
537         * modules/getloadavg (Makefile.am): Likewise.
538         * modules/getlogin_r (Makefile.am): Likewise.
539         * modules/getndelim2 (Makefile.am): Likewise.
540         * modules/getopt (Makefile.am): Likewise.
541         * modules/getpagesize (Makefile.am): Likewise.
542         * modules/getpass-gnu (Makefile.am): Likewise.
543         * modules/getpass (Makefile.am): Likewise.
544         * modules/getsubopt (Makefile.am): Likewise.
545         * modules/gettime (Makefile.am): Likewise.
546         * modules/gettimeofday (Makefile.am): Likewise.
547         * modules/getugroups (Makefile.am): Likewise.
548         * modules/getusershell (Makefile.am): Likewise.
549         * modules/glob (Makefile.am): Likewise.
550         * modules/group-member (Makefile.am): Likewise.
551         * modules/hard-locale (Makefile.am): Likewise.
552         * modules/hash (Makefile.am): Likewise.
553         * modules/hmac-md5 (Makefile.am): Likewise.
554         * modules/hmac-sha1 (Makefile.am): Likewise.
555         * modules/human (Makefile.am): Likewise.
556         * modules/idcache (Makefile.am): Likewise.
557         * modules/imaxabs (Makefile.am): Likewise.
558         * modules/imaxdiv (Makefile.am): Likewise.
559         * modules/inet_ntop (Makefile.am): Likewise.
560         * modules/inet_pton (Makefile.am): Likewise.
561         * modules/intprops (Makefile.am): Likewise.
562         * modules/inttostr (Makefile.am): Likewise.
563         * modules/inttypes (Makefile.am): Likewise.
564         * modules/isapipe (Makefile.am): Likewise.
565         * modules/javaversion (Makefile.am): Likewise.
566         * modules/lchmod (Makefile.am): Likewise.
567         * modules/lchown (Makefile.am): Likewise.
568         * modules/localcharset (Makefile.am): Likewise.
569         * modules/long-options (Makefile.am): Likewise.
570         * modules/lstat (Makefile.am): Likewise.
571         * modules/malloc (Makefile.am): Likewise.
572         * modules/mathl (Makefile.am): Likewise.
573         * modules/mbchar (Makefile.am): Likewise.
574         * modules/md2 (Makefile.am): Likewise.
575         * modules/md4 (Makefile.am): Likewise.
576         * modules/md5 (Makefile.am): Likewise.
577         * modules/memcasecmp (Makefile.am): Likewise.
578         * modules/memchr (Makefile.am): Likewise.
579         * modules/memcmp (Makefile.am): Likewise.
580         * modules/memcoll (Makefile.am): Likewise.
581         * modules/memcpy (Makefile.am): Likewise.
582         * modules/memmem (Makefile.am): Likewise.
583         * modules/memmove (Makefile.am): Likewise.
584         * modules/mempcpy (Makefile.am): Likewise.
585         * modules/memrchr (Makefile.am): Likewise.
586         * modules/memset (Makefile.am): Likewise.
587         * modules/memxor (Makefile.am): Likewise.
588         * modules/mkancesdirs (Makefile.am): Likewise.
589         * modules/mkdir-p (Makefile.am): Likewise.
590         * modules/mkdir (Makefile.am): Likewise.
591         * modules/mkdtemp (Makefile.am): Likewise.
592         * modules/mkstemp (Makefile.am): Likewise.
593         * modules/mktime (Makefile.am): Likewise.
594         * modules/modechange (Makefile.am): Likewise.
595         * modules/mountlist (Makefile.am): Likewise.
596         * modules/nanosleep (Makefile.am): Likewise.
597         * modules/obstack (Makefile.am): Likewise.
598         * modules/openat (Makefile.am): Likewise.
599         * modules/pagealign_alloc (Makefile.am): Likewise.
600         * modules/pathmax (Makefile.am): Likewise.
601         * modules/physmem (Makefile.am): Likewise.
602         * modules/poll (Makefile.am): Likewise.
603         * modules/posixtm (Makefile.am): Likewise.
604         * modules/posixver (Makefile.am): Likewise.
605         * modules/putenv (Makefile.am): Likewise.
606         * modules/quote (Makefile.am): Likewise.
607         * modules/quotearg (Makefile.am): Likewise.
608         * modules/raise (Makefile.am): Likewise.
609         * modules/read-file (Makefile.am): Likewise.
610         * modules/readline (Makefile.am): Likewise.
611         * modules/readlink (Makefile.am): Likewise.
612         * modules/readtokens (Makefile.am): Likewise.
613         * modules/readutmp (Makefile.am): Likewise.
614         * modules/realloc (Makefile.am): Likewise.
615         * modules/regex (Makefile.am): Likewise.
616         * modules/rename-dest-slash (Makefile.am): Likewise.
617         * modules/rename (Makefile.am): Likewise.
618         * modules/rijndael (Makefile.am): Likewise.
619         * modules/rmdir (Makefile.am): Likewise.
620         * modules/rpmatch (Makefile.am): Likewise.
621         * modules/safe-read (Makefile.am): Likewise.
622         * modules/safe-write (Makefile.am): Likewise.
623         * modules/same-inode (Makefile.am): Likewise.
624         * modules/same (Makefile.am): Likewise.
625         * modules/save-cwd (Makefile.am): Likewise.
626         * modules/savedir (Makefile.am): Likewise.
627         * modules/setenv (Makefile.am): Likewise.
628         * modules/settime (Makefile.am): Likewise.
629         * modules/sha1 (Makefile.am): Likewise.
630         * modules/sig2str (Makefile.am): Likewise.
631         * modules/snprintf (Makefile.am): Likewise.
632         * modules/stat-macros (Makefile.am): Likewise.
633         * modules/stat-time (Makefile.am): Likewise.
634         * modules/stdbool (Makefile.am): Likewise.
635         * modules/stdint (Makefile.am): Likewise.
636         * modules/stdlib-safer (Makefile.am): Likewise.
637         * modules/stpcpy (Makefile.am): Likewise.
638         * modules/stpncpy (Makefile.am): Likewise.
639         * modules/strcase (Makefile.am): Likewise.
640         * modules/strcasestr (Makefile.am): Likewise.
641         * modules/strchrnul (Makefile.am): Likewise.
642         * modules/strcspn (Makefile.am): Likewise.
643         * modules/strdup (Makefile.am): Likewise.
644         * modules/strerror (Makefile.am): Likewise.
645         * modules/strftime (Makefile.am): Likewise.
646         * modules/strndup (Makefile.am): Likewise.
647         * modules/strnlen (Makefile.am): Likewise.
648         * modules/strpbrk (Makefile.am): Likewise.
649         * modules/strsep (Makefile.am): Likewise.
650         * modules/strstr (Makefile.am): Likewise.
651         * modules/strtod (Makefile.am): Likewise.
652         * modules/strtoimax (Makefile.am): Likewise.
653         * modules/strtok_r (Makefile.am): Likewise.
654         * modules/strtol (Makefile.am): Likewise.
655         * modules/strtoll (Makefile.am): Likewise.
656         * modules/strtoul (Makefile.am): Likewise.
657         * modules/strtoull (Makefile.am): Likewise.
658         * modules/strtoumax (Makefile.am): Likewise.
659         * modules/strverscmp (Makefile.am): Likewise.
660         * modules/sys_socket (Makefile.am): Likewise.
661         * modules/sys_stat (Makefile.am): Likewise.
662         * modules/sysexits (Makefile.am): Likewise.
663         * modules/time_r (Makefile.am): Likewise.
664         * modules/timegm (Makefile.am): Likewise.
665         * modules/timespec (Makefile.am): Likewise.
666         * modules/tmpfile-safer (Makefile.am): Likewise.
667         * modules/trim (Makefile.am): Likewise.
668         * modules/unistd-safer (Makefile.am): Likewise.
669         * modules/unlinkdir (Makefile.am): Likewise.
670         * modules/unlocked-io (Makefile.am): Likewise.
671         * modules/userspec (Makefile.am): Likewise.
672         * modules/utime (Makefile.am): Likewise.
673         * modules/utimecmp (Makefile.am): Likewise.
674         * modules/utimens (Makefile.am): Likewise.
675         * modules/vasnprintf (Makefile.am): Likewise.
676         * modules/vasprintf (Makefile.am): Likewise.
677         * modules/vsnprintf (Makefile.am): Likewise.
678         * modules/xalloc (Makefile.am): Likewise.
679         * modules/xgetcwd (Makefile.am): Likewise.
680         * modules/xnanosleep (Makefile.am): Likewise.
681         * modules/xreadlink (Makefile.am): Likewise.
682         * modules/xstrtod (Makefile.am): Likewise.
683         * modules/xstrtol (Makefile.am): Likewise.
684         * modules/xstrtold (Makefile.am): Likewise.
685         * modules/yesno (Makefile.am): Likewise.
686         * modules/getdate (Makefile.am): Don't add getdate.h to EXTRA_DIST.
687
688 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
689
690         * modules/error (Makefile.am): Distribute files through
691         EXTRA_DIST, not lib_SOURCES.
692
693 2006-10-12  Eric Blake  <ebb9@byu.net>
694
695         * modules/error (Makefile.am): Distribute files in /lib.
696         * modules/obstack (Makefile.am): Likewise.
697
698 2006-10-12  Bruno Haible  <bruno@clisp.org>
699
700         * modules/acl (Makefile.am): Distribute all files in lib/ through
701         EXTRA_DIST.
702         * modules/arcfour (Makefile.am): Likewise.
703         * modules/arctwo (Makefile.am): Likewise.
704         * modules/argmatch (Makefile.am): Likewise.
705         * modules/argz (Makefile.am): Likewise.
706         * modules/atexit (Makefile.am): Likewise.
707         * modules/backupfile (Makefile.am): Likewise.
708         * modules/c-strtod (Makefile.am): Likewise.
709         * modules/c-strtold (Makefile.am): Likewise.
710         * modules/calloc (Makefile.am): Likewise.
711         * modules/canon-host (Makefile.am): Likewise.
712         * modules/canonicalize (Makefile.am): Likewise.
713         * modules/chdir-long (Makefile.am): Likewise.
714         * modules/chdir-safer (Makefile.am): Likewise.
715         * modules/check-version (Makefile.am): Likewise.
716         * modules/chown (Makefile.am): Likewise.
717         * modules/cloexec (Makefile.am): Likewise.
718         * modules/close-stream (Makefile.am): Likewise.
719         * modules/closeout (Makefile.am): Likewise.
720         * modules/crc (Makefile.am): Likewise.
721         * modules/cycle-check (Makefile.am): Likewise.
722         * modules/des (Makefile.am): Likewise.
723         * modules/dirfd (Makefile.am): Likewise.
724         * modules/dirname (Makefile.am): Likewise.
725         * modules/dup2 (Makefile.am): Likewise.
726         * modules/euidaccess (Makefile.am): Likewise.
727         * modules/exclude (Makefile.am): Likewise.
728         * modules/exitfail (Makefile.am): Likewise.
729         * modules/fcntl-safer (Makefile.am): Likewise.
730         * modules/file-type (Makefile.am): Likewise.
731         * modules/fileblocks (Makefile.am): Likewise.
732         * modules/filemode (Makefile.am): Likewise.
733         * modules/filenamecat (Makefile.am): Likewise.
734         * modules/fnmatch (Makefile.am): Likewise.
735         * modules/fopen-safer (Makefile.am): Likewise.
736         * modules/fpending (Makefile.am): Likewise.
737         * modules/fprintftime (Makefile.am): Likewise.
738         * modules/free (Makefile.am): Likewise.
739         * modules/fsusage (Makefile.am): Likewise.
740         * modules/ftruncate (Makefile.am): Likewise.
741         * modules/fts (Makefile.am): Likewise.
742         * modules/gc (Makefile.am): Likewise.
743         * modules/gc-pbkdf2-sha1 (Makefile.am): Likewise.
744         * modules/getaddrinfo (Makefile.am): Likewise.
745         * modules/getcwd (Makefile.am): Likewise.
746         * modules/getdelim (Makefile.am): Likewise.
747         * modules/getdomainname (Makefile.am): Likewise.
748         * modules/getgroups (Makefile.am): Likewise.
749         * modules/gethostname (Makefile.am): Likewise.
750         * modules/gethrxtime (Makefile.am): Likewise.
751         * modules/getline (Makefile.am): Likewise.
752         * modules/getloadavg (Makefile.am): Likewise.
753         * modules/getlogin_r (Makefile.am): Likewise.
754         * modules/getopt (Makefile.am): Likewise.
755         * modules/getpass (Makefile.am): Likewise.
756         * modules/getpass-gnu (Makefile.am): Likewise.
757         * modules/getsubopt (Makefile.am): Likewise.
758         * modules/gettime (Makefile.am): Likewise.
759         * modules/gettimeofday (Makefile.am): Likewise.
760         * modules/getugroups (Makefile.am): Likewise.
761         * modules/getusershell (Makefile.am): Likewise.
762         * modules/glob (Makefile.am): Likewise.
763         * modules/group-member (Makefile.am): Likewise.
764         * modules/hard-locale (Makefile.am): Likewise.
765         * modules/hash (Makefile.am): Likewise.
766         * modules/hmac-md5 (Makefile.am): Likewise.
767         * modules/hmac-sha1 (Makefile.am): Likewise.
768         * modules/human (Makefile.am): Likewise.
769         * modules/idcache (Makefile.am): Likewise.
770         * modules/imaxabs (Makefile.am): Likewise.
771         * modules/imaxdiv (Makefile.am): Likewise.
772         * modules/inet_ntop (Makefile.am): Likewise.
773         * modules/inet_pton (Makefile.am): Likewise.
774         * modules/inttostr (Makefile.am): Likewise.
775         * modules/isapipe (Makefile.am): Likewise.
776         * modules/lchown (Makefile.am): Likewise.
777         * modules/long-options (Makefile.am): Likewise.
778         * modules/lstat (Makefile.am): Likewise.
779         * modules/malloc (Makefile.am): Likewise.
780         * modules/mathl (Makefile.am): Likewise.
781         * modules/mbchar (Makefile.am): Likewise.
782         * modules/md2 (Makefile.am): Likewise.
783         * modules/md4 (Makefile.am): Likewise.
784         * modules/md5 (Makefile.am): Likewise.
785         * modules/memcasecmp (Makefile.am): Likewise.
786         * modules/memchr (Makefile.am): Likewise.
787         * modules/memcmp (Makefile.am): Likewise.
788         * modules/memcoll (Makefile.am): Likewise.
789         * modules/memcpy (Makefile.am): Likewise.
790         * modules/memmem (Makefile.am): Likewise.
791         * modules/memmove (Makefile.am): Likewise.
792         * modules/mempcpy (Makefile.am): Likewise.
793         * modules/memrchr (Makefile.am): Likewise.
794         * modules/memset (Makefile.am): Likewise.
795         * modules/memxor (Makefile.am): Likewise.
796         * modules/mkancesdirs (Makefile.am): Likewise.
797         * modules/mkdir (Makefile.am): Likewise.
798         * modules/mkdir-p (Makefile.am): Likewise.
799         * modules/mkdtemp (Makefile.am): Likewise.
800         * modules/mkstemp (Makefile.am): Likewise.
801         * modules/mktime (Makefile.am): Likewise.
802         * modules/modechange (Makefile.am): Likewise.
803         * modules/mountlist (Makefile.am): Likewise.
804         * modules/nanosleep (Makefile.am): Likewise.
805         * modules/openat (Makefile.am): Likewise.
806         * modules/pagealign_alloc (Makefile.am): Likewise.
807         * modules/physmem (Makefile.am): Likewise.
808         * modules/poll (Makefile.am): Likewise.
809         * modules/posixtm (Makefile.am): Likewise.
810         * modules/posixver (Makefile.am): Likewise.
811         * modules/putenv (Makefile.am): Likewise.
812         * modules/quote (Makefile.am): Likewise.
813         * modules/quotearg (Makefile.am): Likewise.
814         * modules/raise (Makefile.am): Likewise.
815         * modules/read-file (Makefile.am): Likewise.
816         * modules/readline (Makefile.am): Likewise.
817         * modules/readlink (Makefile.am): Likewise.
818         * modules/readtokens (Makefile.am): Likewise.
819         * modules/readutmp (Makefile.am): Likewise.
820         * modules/realloc (Makefile.am): Likewise.
821         * modules/regex (Makefile.am): Likewise.
822         * modules/rename (Makefile.am): Likewise.
823         * modules/rename-dest-slash (Makefile.am): Likewise.
824         * modules/rijndael (Makefile.am): Likewise.
825         * modules/rmdir (Makefile.am): Likewise.
826         * modules/rpmatch (Makefile.am): Likewise.
827         * modules/safe-read (Makefile.am): Likewise.
828         * modules/safe-write (Makefile.am): Likewise.
829         * modules/same (Makefile.am): Likewise.
830         * modules/save-cwd (Makefile.am): Likewise.
831         * modules/savedir (Makefile.am): Likewise.
832         * modules/setenv (Makefile.am): Likewise.
833         * modules/settime (Makefile.am): Likewise.
834         * modules/sha1 (Makefile.am): Likewise.
835         * modules/sig2str (Makefile.am): Likewise.
836         * modules/snprintf (Makefile.am): Likewise.
837         * modules/stdlib-safer (Makefile.am): Likewise.
838         * modules/stpcpy (Makefile.am): Likewise.
839         * modules/stpncpy (Makefile.am): Likewise.
840         * modules/strcase (Makefile.am): Likewise.
841         * modules/strcasestr (Makefile.am): Likewise.
842         * modules/strchrnul (Makefile.am): Likewise.
843         * modules/strcspn (Makefile.am): Likewise.
844         * modules/strdup (Makefile.am): Likewise.
845         * modules/strerror (Makefile.am): Likewise.
846         * modules/strftime (Makefile.am): Likewise.
847         * modules/strndup (Makefile.am): Likewise.
848         * modules/strnlen (Makefile.am): Likewise.
849         * modules/strpbrk (Makefile.am): Likewise.
850         * modules/strsep (Makefile.am): Likewise.
851         * modules/strstr (Makefile.am): Likewise.
852         * modules/strtod (Makefile.am): Likewise.
853         * modules/strtoimax (Makefile.am): Likewise.
854         * modules/strtok_r (Makefile.am): Likewise.
855         * modules/strtol (Makefile.am): Likewise.
856         * modules/strtoll (Makefile.am): Likewise.
857         * modules/strtoul (Makefile.am): Likewise.
858         * modules/strtoull (Makefile.am): Likewise.
859         * modules/strtoumax (Makefile.am): Likewise.
860         * modules/strverscmp (Makefile.am): Likewise.
861         * modules/time_r (Makefile.am): Likewise.
862         * modules/timegm (Makefile.am): Likewise.
863         * modules/tmpfile-safer (Makefile.am): Likewise.
864         * modules/unistd-safer (Makefile.am): Likewise.
865         * modules/unlinkdir (Makefile.am): Likewise.
866         * modules/userspec (Makefile.am): Likewise.
867         * modules/utime (Makefile.am): Likewise.
868         * modules/utimecmp (Makefile.am): Likewise.
869         * modules/utimens (Makefile.am): Likewise.
870         * modules/vasnprintf (Makefile.am): Likewise.
871         * modules/vasprintf (Makefile.am): Likewise.
872         * modules/vsnprintf (Makefile.am): Likewise.
873         * modules/xalloc (Makefile.am): Likewise.
874         * modules/xgetcwd (Makefile.am): Likewise.
875         * modules/xnanosleep (Makefile.am): Likewise.
876         * modules/xreadlink (Makefile.am): Likewise.
877         * modules/xstrtod (Makefile.am): Likewise.
878         * modules/xstrtol (Makefile.am): Likewise.
879         * modules/xstrtold (Makefile.am): Likewise.
880         * modules/yesno (Makefile.am): Likewise.
881
882 2006-10-12  Jim Meyering  <jim@meyering.net>
883
884         * m4/getloadavg.m4: Revert the change below.
885
886         * m4/getloadavg.m4 (gl_GETLOADAVG): Test for the existence of
887         lib/getloadavg.c using "ls -L", not "test -f".  The latter would
888         fail with a symlink, which is what coreutils' ./bootstrap now
889         creates by default.
890
891 2006-10-12  Bruno Haible  <bruno@clisp.org>
892
893         * lib/inttypes_.h (_LONG_LONG_FORMAT_PREFIX): Don't define for MSVC or
894         mingw.
895         (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX, _SCNu64_PREFIX): Handle
896         MSVC and mingw explicitly.
897
898 2006-10-11  Simon Josefsson  <jas@extundo.com>
899             Bruno Haible  <bruno@clisp.org>
900
901         Add support for multiple gnulib-tool invocations in the scope of a
902         single configure.ac file.
903         * gnulib-tool (func_emit_lib_Makefile_am): In the _LIBADD variable,
904         use a private [LT]LIBOBJS variant. Define a _DEPENDENCIES variable
905         with the same contents as the _LIBADD variable.
906         (func_emit_initmacro_start, func_emit_initmacro_end,
907         func_emit_initmacro_done): New functions.
908         (func_import, func_create_testdir): Invoke them. Allow the identifiers
909         gl_LIBOBJS and gl_LTLIBOBJS.
910
911 2006-10-11  Bruno Haible  <bruno@clisp.org>
912
913         * gnulib-tool (GETTEXTPATH, AUTOHEADER, AUTOPOINT): New variables.
914         (func_create_testdir): Don't create po/Makefile.am, don't invoke
915         autoreconf. Instead, invoke autopoint explicitly but move back the
916         *.m4 files from gnulib.
917
918 2006-10-11  Bruno Haible  <bruno@clisp.org>
919
920         * gnulib-tool (func_usage): Make module names after --create-testdir
921         optional.
922         (func_create_testdir): If no module was specified, use nearly all
923         modules.
924
925 2006-10-12  Jim Meyering  <jim@meyering.net>
926
927         Big performance improvement for fts-based tools that use FTS_NOSTAT.
928         Avoid spurious inode-mismatch problems on non-POSIX file systems.
929         Details: http://article.gmane.org/gmane.comp.lib.gnulib.bugs/7416
930         * lib/fts_.h (FTS_DEFER_STAT): Define new flag.
931         (FTS_OPTIONMASK): Extend the mask to reflect this addition.
932         * lib/fts.c (DT_IS_KNOWN, DT_MUST_BE): Define.
933         (FTS_NO_STAT_REQUIRED, FTS_STAT_REQUIRED): Define.
934         (fts_set_stat_required): New function.
935         (fts_open): Defer the calls to fts_stat, if possible or requested.
936         Move the code that maps a command-line fts_info value FTS_DOT to FTS_D
937         into fts_stat itself.
938         (fts_read): Perform any required (deferred) fts_stat call.
939         (fts_build): Likewise, for the directory we're about to open and read.
940         In the readdir loop, carefully decide whether each entry will require
941         an eventual call to fts_stat, using dirent.d_type info if available.
942         (fts_stat): Move the test for whether to honor FTS_COMFOLLOW on
943         a command line argument into this function.  Update all callers.
944         Map a return value of FTS_DOT to FTS_D for a command line argument.
945         * modules/fts (Depends-on): Add d-type.  Alphabetize.
946         Thanks to Miklos Szeredi for his tenacity and for the initial
947         bug report about "find" failing on a FUSE-based file system.
948
949         * lib/fts.c (fts_open): Use consistent indentation.
950
951 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
952
953         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Renamed from
954         gl_USE_SYSTEM_EXTENSIONS, to fix a coreutils bootstrap failure
955         reported by Jim Meyering.  All uses of cache variables renamed
956         to match Autoconf's.
957         (gl_USE_SYSTEM_EXTENSIONS): New macro, which simply requires
958         the other one.
959
960         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH):
961         Fix misspelling in diagnostic.
962
963 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
964
965         * lib/mkdir-p.c (HAVE_FCHMOD): Define to false if not already
966         defined.  Problem reported by Matthew Woehlke.
967
968         * lib/inttypes_.h (_LONG_LONG_FORMAT_PREFIX): New macro.
969         Add support for Tandem NonStop R series.
970         (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX, _SCNu64_PREFIX):
971         Use new macro.
972
973         * lib/rename-dest-slash.c: Include stdbool.h but not string.h.
974         (has_trailing_slash): Omit size arg; all callers changed.
975         Omit 'inline', since it doesn't help performance and we'd
976         need to configure it.
977         Don't count //, ///, etc. as having a trailing slash.
978         As a side effect, this removes a C99ism reported by Matthew Woehlke.
979         (rpl_rename_dest_slash): On failure, use rename's errno rather
980         than (in some cases) an incorrect or junk errno.
981         Simplify code by removing need to compute length; this does
982         cause it to make two passes instead of one over the file name,
983         but it's worth it.
984
985         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Undo previous
986         change, since Autoconf's version may no longer be appropriate now
987         that we are using CVS Autoconf's version.  Add support for Tandem.
988
989 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
990             Bruno Haible  <bruno@clisp.org>
991
992         * lib/allocsa.h (sa_alignment_longlong, sa_alignment_max): Test
993         HAVE_LONG_LONG_INT instead of HAVE_LONG_LONG.
994         * m4/allocsa.m4 (gl_ALLOCSA): Invoke AC_TYPE_LONG_LONG_INT instead of
995         gl_AC_TYPE_LONG_LONG.
996
997         * lib/printf-args.h (arg_type, argument): Test HAVE_LONG_LONG_INT
998         instead of HAVE_LONG_LONG.
999         * lib/printf-args.c (printf_fetchargs): Likewise.
1000         * lib/printf-parse.c (PRINTF_PARSE): Likewise.
1001         * lib/vasnprintf.c (VASNPRINTF): Likewise.
1002         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_ARGS, gl_PREREQ_PRINTF_PARSE,
1003         gl_PREREQ_VASNPRINTF): Invoke AC_TYPE_LONG_LONG_INT instead of
1004         gl_AC_TYPE_LONG_LONG.
1005
1006 2006-10-11  Bruno Haible  <bruno@clisp.org>
1007
1008         * m4/longlong.m4: Add comments.
1009         * m4/ulonglong.m4: Likewise.
1010
1011 2006-10-10  Bruno Haible  <bruno@clisp.org>
1012
1013         Make it possible to #define stpcpy, strdup to aliases.
1014         * lib/stpcpy.c (stpcpy) [!_LIBC]: Don't undefine.
1015         * lib/strdup.c (strdup) [!_LIBC]: Don't undefine.
1016
1017 2006-10-10  Bruno Haible  <bruno@clisp.org>
1018
1019         Make it possible to #define gcd to an alias.
1020         * lib/gcd.c: Include config.h.
1021
1022 2006-10-10  Bruno Haible  <bruno@clisp.org>
1023
1024         Make it possible to #define c_isascii to an alias.
1025         * lib/c-ctype.h: Don't define the macros if NO_C_CTYPE_MACROS is
1026         defined. Undefine the macros before defining them, to avoid gcc
1027         warnings.
1028         * lib/c-ctype.c: Include config.h. Don't undefine the macros; instead,
1029         define NO_C_CTYPE_MACROS early.
1030
1031 2006-10-10  Bruno Haible  <bruno@clisp.org>
1032
1033         Make it possible to #define set_program_name to an alias.
1034         * lib/progname.c: Don't undefine set_program_name; instead, undefine
1035         ENABLE_RELOCATABLE early.
1036
1037 2006-10-10  Paul Eggert  <eggert@cs.ucla.edu>
1038
1039         Port to Tandem NSK OSS, which has 64-bit signed int but at most
1040         32-bit unsigned int.  Problem reported by Matthew Woehlke in:
1041         http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00062.html
1042         More generally, don't assume that 64-bit signed int is available
1043         if unsigned int is, and vice versa.
1044         * lib/inttypes_.h (_PRIu64_PREFIX, _SCNu64_PREFIX): Depend on
1045         unsigned symbols, not on their signed counterparts.
1046         * lib/stdint_.h (uint64_t, uint_least64_t, uint_fast64_t, uintmax_t):
1047         (UINT64_MAX, UINT_LEAST64_MAX, UINT_FAST64_MAX, UINTMAX_MAX):
1048         (UINT64_C, UINTMAX_C):
1049         Likewise.
1050         * lib/strtoimax.c (strtoll): Depend on signed symbols, not their
1051         unsigned counterparts.
1052         (Have_long_long, Unsigned): New macros.
1053         (Int): Renamed from INT.
1054         (strtoimax): Use the new macros.
1055         * m4/stdint.m4 (gl_STDINT_H): Require AC_TYPE_UNSIGNED_LONG_LONG_INT
1056         and substitute HAVE_UNSIGNED_LONG_LONG_INT.
1057         * modules/inttypes (inttypes.h): Substitute
1058         HAVE_UNSIGNED_LONG_LONG_INT.
1059         * modules/stdint (stdint.h): Likewise.
1060         (Files): Add m4/ulonglong.m4.
1061
1062 2006-10-10  Bruno Haible  <bruno@clisp.org>
1063
1064         Fix a gcc -Wshadow warning.
1065         * lib/gl_anyhash_list2.h (hash_resize): Rename local variable 'index'
1066         to 'bucket'.
1067         * lib/gl_anylinked_list2.h (gl_linked_search_from_to,
1068         gl_linked_indexof_from_to): Likewise.
1069         * lib/gl_linkedhash_list.c (add_to_bucket, remove_from_bucket):
1070         Likewise.
1071         * lib/gl_anytreehash_list1.h (add_to_bucket, remove_from_bucket):
1072         Likewise.
1073         * lib/gl_anytreehash_list2.h (gl_tree_search_from_to): Likewise.
1074         Reported by Eric Blake.
1075
1076 2006-10-09  Paul Eggert  <eggert@cs.ucla.edu>
1077
1078         * lib/filemode.h [HAVE_DECL_STRMODE]: Include unistd.h too,
1079         for NetBSD.  Problem reported by Bruno Haible.
1080
1081 2006-10-09  Jim Meyering  <jim@meyering.net>
1082
1083         * lib/lchown.c: Include <sys/stat.h> before "stat-macros.h".
1084         Patch from Bruno Haible.
1085
1086 2006-10-09  Jim Meyering  <jim@meyering.net>
1087
1088         * lib/fts-cycle.c (leave_dir): When "leaving" a top level directory due
1089         to FTS_SKIP, don't copy the parent's uninitialized dev/ino values.
1090         Trigger with e.g., mkdir d && valgrind ./chmod u+rwx d d
1091
1092 2006-10-08  Paul Eggert  <eggert@cs.ucla.edu>
1093
1094         Don't include <config.h> twice; this doesn't work in some cases,
1095         e.g., when config.h has "#define intmax_t long long int" and
1096         we include <config.h>, <inttypes.h>, <config.h> in that order.
1097         Problem reported by Matthew Woehlke in:
1098         http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00073.html
1099         * lib/fprintftime.c: Don't include config.h or fprintftime.h.
1100         * lib/fts-cycle.c: Don't include config.h.
1101         * lib/strftime.c: Include fprintftime.h if FPRINTFTIME is defined.
1102         * lib/xstrtoimax.c: Remove copyright notice since it's short tnow.
1103         Don't include config.h or xstrtol.h.  Define STRTOL_T_MINIMUM
1104         and STRTOL_T_MAXIMUM unconditionally, since we now assume gnulib
1105         inttypes.h.
1106         * lib/xstrtoumax.c: Likewise.
1107         * lib/xstrtol.c: Include config.h and xstrtol.h after defining
1108         __strtol and the like, so that this module is more like its siblings.
1109         (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM) [! defined STRTOL_T_MINIMUM]:
1110         Remove; no longer needed now that we assume gnulib inttypes.h.
1111
1112 2006-10-08  Bruno Haible  <bruno@clisp.org>
1113
1114         * doc/gnulib-tool.texi: Emphasize the drawbacks of the --symlink
1115         option.
1116
1117 2006-10-07  Jim Meyering  <jim@meyering.net>
1118
1119         * modules/inttypes (inttypes.h): Revert what seems to have been
1120         an inadvertent part of today's change: use "|", not "/" in the
1121         substitution for the "/"-containing string, $(ABSOLUTE_INTTYPES_H).
1122
1123 2006-10-07  Bruno Haible  <bruno@clisp.org>
1124
1125         * modules/sublist: New file.
1126
1127 2006-10-07  Bruno Haible  <bruno@clisp.org>
1128
1129         * modules/alloca-opt (alloca.h): Add a "DO NOT EDIT" comment.
1130         * modules/argz (argz.h): Likewise.
1131         * modules/arpa_inet (arpa/inet.h): Likewise.
1132         * modules/byteswap (byteswap.h): Likewise.
1133         * modules/configmake (configmake.h): Likewise.
1134         * modules/fcntl (fcntl.h): Likewise.
1135         * modules/fnmatch (fnmatch.h): Likewise.
1136         * modules/getopt (getopt.h): Likewise.
1137         * modules/glob (glob.h): Likewise.
1138         * modules/inttypes (inttypes.h): Likewise.
1139         * modules/netinet_in (netinet/in.h): Likewise.
1140         * modules/poll (poll.h): Likewise.
1141         * modules/stdbool (stdbool.h): Likewise.
1142         * modules/stdint (stdint.h): Likewise.
1143         * modules/sys_select (sys/select.h): Likewise.
1144         * modules/sys_socket (sys/socket.h): Likewise.
1145         * modules/sys_stat (sys/stat.h): Likewise.
1146         * modules/sysexits (sysexits.h): Likewise.
1147         * modules/unistd (unistd.h): Likewise.
1148         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
1149         Add a "DO NOT EDIT" comment to the generated file.
1150         (func_import): Likewise for gnulib-comp.m4.
1151
1152 2006-10-07  Bruno Haible  <bruno@clisp.org>
1153
1154         * lib/gl_sublist.h: New file.
1155         * lib/gl_sublist.c: New file.
1156
1157 2006-10-06  Paul Eggert  <eggert@cs.ucla.edu>
1158
1159         * lib/mkancesdirs.c (mkancesdirs): Pass to MAKE_DIR both the full file
1160         name (relative to the original working directory) and the file
1161         name component (relative to the temporary working directory).  All
1162         callers changed.
1163         * lib/mkancesdirs.h (mkancesdirs): Adjust prototype to match.
1164         * lib/mkdir-p.c (make_dir_parents): Likewise.
1165         * lib/mkdir-p.h (make_dir_parents): Likewise.
1166
1167 2006-10-06  Eric Blake  <ebb9@byu.net>
1168
1169         Define several macros for use by the clean-temp module.
1170         * m4/close-stream.m4 (gl_CLOSE_STREAM): Define GNULIB_CLOSE_STREAM.
1171         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Define GNULIB_FCNTL_SAFER.
1172         * m4/stdio-safer.m4 (gl_FOPEN_SAFER): Define GNULIB_FOPEN_SAFER.
1173
1174         * lib/clean-temp.h (close_stream_temp): New declaration.
1175         * lib/clean-temp.c (includes): Pull in headers according to what
1176         other modules are in use.
1177         (close_stream_temp) [GNULIB_CLOSE_STREAM]: New function.
1178
1179 2006-10-06  Bruno Haible  <bruno@clisp.org>
1180
1181         * lib/javacomp.c (write_temp_file): Use fopen_temp, fwriteerror_temp
1182         instead of fopen, fwriteerror.
1183
1184 2006-10-06  Bruno Haible  <bruno@clisp.org>
1185
1186         * lib/clean-temp.h (cleanup_temp_file, cleanup_temp_subdir,
1187         cleanup_temp_dir_contents, cleanup_temp_dir): Change return type to
1188         int.
1189         * lib/clean-temp.c (do_unlink, do_rmdir, cleanup_temp_file,
1190         cleanup_temp_subdir, cleanup_temp_dir_contents, cleanup_temp_dir):
1191         Return an error indicator.
1192         Suggested by Eric Blake.
1193
1194 2006-10-06  Bruno Haible  <bruno@clisp.org>
1195
1196         * lib/clean-temp.c (PATH_MAX): Provide a fallback for GNU Hurd.
1197         Reported by Eric Blake.
1198
1199 2006-10-06  Bruno Haible  <bruno@clisp.org>
1200
1201         * modules/closeout (Description): Mention stderr too.
1202
1203 2006-10-06  Bruno Haible  <bruno@clisp.org>
1204         and Paul Eggert  <eggert@cs.ucla.edu>
1205
1206         * lib/closeout.c (close_stdout): Also close stderr.
1207         * lib/closeout.h: Update comment.
1208
1209 2006-10-05  Paul Eggert  <eggert@cs.ucla.edu>
1210
1211         Fix some Darwin-7.9.0 porting problems reported by Bruno Haible in
1212         <http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00063.html>.
1213         * lib/dirchownmod.c: Include lchown.h.
1214         * lib/lchown.c: Don't include files that lchown.h now includes.
1215         Don't declare chown, since lchown.h now does that.
1216         * lib/lchown.h: Include errno.h, sys/types.h, unistd.h.
1217         (lchown): Define to rpl_chown if lchown is declared but
1218         does not exist.  Declare using a prototype if lchown is not
1219         declared.  Add a copyright notice.
1220         * lib/mkstemp.h: Include <unistd.h>.
1221         * lib/openat.c: Include lchown.h.
1222
1223         * lib/fcntl_.h (O_NOFOLLOW): Don't depend on O_NOFOLLOW_IS_INEFFECTIVE;
1224         we now test for that separately.
1225         * lib/fts.c (fts_safe_changedir): Inspect HAVE_WORKING_O_NOFOLLOW
1226         rather than O_NOFOLLOW, when testing whether it's possible to
1227         avoid a race condition reliably.
1228         * lib/savewd.c (savewd_chdir): Likewise.
1229
1230         Remove macros that are no longer needed now that stdint.h is
1231         reliable.
1232         * lib/fsusage.c (UINTMAX_MAX): Remove.
1233         * lib/human.c (SIZE_MAX, UINTMAX_MAX): Remove.
1234         * lib/utimecmp.c (SIZE_MAX): Remove.
1235
1236         * m4/lchown.m4 (gl_FUNC_LCHOWN): Check whether lchown is declared.
1237
1238         * m4/fcntl_h.m4 (gl_FCNTL_H): Define HAVE_WORKING_O_NOFOLLOW instead
1239         of O_NOFOLLOW_IS_INEFFECTIVE.  Define HAVE_WORKING_O_NOATIME if
1240         O_NOATIME works.
1241
1242 2006-10-05  Bruno Haible  <bruno@clisp.org>
1243
1244         * lib/gl_list.h (gl_sortedlist_search_from_to,
1245         gl_sortedlist_indexof_from_to): New declarations.
1246         (gl_list_implementation): New fields sortedlist_search_from_to,
1247         sortedlist_indexof_from_to.
1248         (gl_sortedlist_search_from_to, gl_sortedlist_indexof_from_to): New
1249         inline functions.
1250         * lib/gl_list.c (gl_sortedlist_search_from_to,
1251         gl_sortedlist_indexof_from_to): New functions.
1252         * lib/gl_array_list.c (gl_array_sortedlist_indexof_from_to): New
1253         function.
1254         (gl_array_sortedlist_indexof, gl_array_sortedlist_search): Use it.
1255         (gl_array_sortedlist_search_from_to): New function.
1256         (gl_array_list_implementation): Update.
1257         * lib/gl_carray_list.c (gl_carray_sortedlist_indexof_from_to): New
1258         function.
1259         (gl_carray_sortedlist_indexof, gl_carray_sortedlist_search): Use it.
1260         (gl_carray_sortedlist_search_from_to): New function.
1261         (gl_carray_list_implementation): Update.
1262         * lib/gl_anylinked_list2.h (gl_linked_sortedlist_search_from_to,
1263         gl_linked_sortedlist_indexof_from_to): New functions.
1264         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
1265         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
1266         * lib/gl_anytree_list2.h (gl_tree_sortedlist_search_from_to,
1267         gl_tree_sortedlist_indexof_from_to): New functions.
1268         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
1269         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
1270         Update.
1271         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
1272         * lib/gl_rbtreehash_list.c (gl_avltreehash_list_implementation):
1273         Update.
1274
1275 2006-10-05  Bruno Haible  <bruno@clisp.org>
1276
1277         * lib/gl_list.h (gl_list_search_from, gl_list_search_from_to,
1278         gl_list_indexof_from, gl_list_indexof_from_to): New declarations.
1279         (struct gl_list_implementation): Add fields search_from_to,
1280         indexof_from_to. Remove fields search, indexof.
1281         (gl_list_search): Use the search_from_to method.
1282         (gl_list_search_from, gl_list_search_from_to): New functions.
1283         (gl_list_indexof): Use the indexof_from_to method.
1284         (gl_list_indexof_from, gl_list_indexof_from_to): New functions.
1285         * lib/gl_list.c (gl_list_search): Use the search_from_to method.
1286         (gl_list_search_from, gl_list_search_from_to): New functions.
1287         (gl_list_indexof): Use the indexof_from_to method.
1288         (gl_list_indexof_from, gl_list_indexof_from_to): New functions.
1289         * lib/gl_array_list.c (gl_array_indexof_from_to): Renamed from
1290         gl_array_indexof. Add start_index, end_index arguments.
1291         (gl_array_search_from_to): Renamed from gl_array_search. Add
1292         start_index, end_index arguments.
1293         (gl_array_remove, gl_array_list_implementation): Update.
1294         * lib/gl_carray_list.c (gl_carray_indexof_from_to): Renamed from
1295         gl_carray_indexof. Add start_index, end_index arguments.
1296         (gl_carray_search_from_to): Renamed from gl_carray_search. Add
1297         start_index, end_index arguments.
1298         (gl_carray_remove, gl_carray_list_implementation): Update.
1299         * lib/gl_anylinked_list2.h (gl_linked_search_from_to): Renamed from
1300         gl_linked_search. Add start_index, end_index arguments.
1301         (gl_linked_indexof_from_to): Renamed from gl_linked_indexof. Add
1302         start_index, end_index arguments.
1303         (gl_linked_remove): Update.
1304         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
1305         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
1306         * lib/gl_anytree_list1.h (iterstack_item_t): Change type of 'rightp'
1307         field to 'size_t'.
1308         * lib/gl_anytree_list2.h (gl_tree_search_from_to): Renamed from
1309         gl_tree_search. Add start_index, end_index arguments.
1310         (gl_tree_indexof_from_to): Renamed from gl_tree_indexof. Add
1311         start_index, end_index arguments.
1312         (gl_tree_remove): Update.
1313         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
1314         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
1315         * lib/gl_anytreehash_list1.h (compare_position_threshold): New
1316         function.
1317         * lib/gl_anytreehash_list2.h (gl_tree_search_from_to): Renamed from
1318         gl_tree_search. Add start_index, end_index arguments.
1319         (gl_tree_indexof_from_to): Renamed from gl_tree_indexof. Add
1320         start_index, end_index arguments.
1321         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
1322         Update.
1323         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Update.
1324
1325 2006-10-05  Bruno Haible  <bruno@clisp.org>
1326
1327         * modules/fwriteerror (configure.ac): Define GNULIB_FWRITEERROR.
1328
1329         * lib/clean-temp.h (open_temp, fopen_temp, close_temp, fclose_temp,
1330         fwriteerror_temp): New declarations.
1331         * lib/clean-temp.c (uintptr_t): Provide fallback definition.
1332         (descriptors): New variable.
1333         (cleanup): First, close the descriptors.
1334         (register_fd, unregister_fd, open_temp, fopen_temp, close_temp,
1335         fclose_temp, fwriteerror_temp): New functions.
1336
1337 2006-10-04  Jim Meyering  <jim@meyering.net>
1338
1339         * lib/fts.c (fts_open): Tiny comment change.
1340
1341 2006-10-04  Bruno Haible  <bruno@clisp.org>
1342
1343         Make it possible to invoke AC_GNU_SOURCE after gl_LOCK_EARLY.
1344         * m4/lock.m4 (gl_LOCK_EARLY_BODY): New macro, extracted code from
1345         gl_LOCK_BODY.
1346         (gl_LOCK_EARLY): Require gl_LOCK_EARLY_BODY, not gl_LOCK_BODY.
1347         (gl_LOCK_BODY): Remove settings of CPPFLAGS, now done in
1348         gl_LOCK_EARLY_BODY.
1349         (gl_LOCK): Require gl_LOCK_BODY.
1350
1351 2006-10-04  Bruno Haible  <bruno@clisp.org>
1352
1353         * lib/gl_oset.h (gl_setelement_threshold_fn): New type.
1354         (gl_oset_search_atleast): New declaration.
1355         (struct gl_oset_implementation): Add field 'search_atleast'.
1356         (gl_oset_search_atleast): New inline function.
1357         * lib/gl_oset.c (gl_oset_search_atleast): New function.
1358         * lib/gl_array_oset.c (gl_array_search_atleast): New function.
1359         (gl_array_oset_implementation): Update.
1360         * lib/gl_anytree_oset.h (gl_tree_search_atleast): New function.
1361         * lib/gl_avltree_oset.c (gl_avltree_oset_implementation): Update.
1362         * lib/gl_rbtree_oset.c (gl_rbtree_oset_implementation): Update.
1363
1364 2006-10-04  Bruno Haible  <bruno@clisp.org>
1365
1366         * lib/fatal-signal.c (fatal_signals) [WOE32]: Add the SIGBREAK signal.
1367
1368 2006-10-03  Bruno Haible  <bruno@clisp.org>
1369
1370         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Renamed
1371         from gl_avltreehash_list_implementation.
1372
1373 2006-10-03  Bruno Haible  <bruno@clisp.org>
1374
1375         * lib/gl_oset.c (gl_oset_add): Fix return type.
1376
1377 2006-10-02  Paolo Bonzini  <bonzini@gnu.org>  (tiny change)
1378
1379         * lib/quotearg.c (mbstate_t) [!HAVE_MBRTOWC]: #define to int.
1380
1381 2006-10-02  Eric Blake  <ebb9@byu.net>
1382
1383         * modules/strnlen (Depends-on): Add extensions.
1384
1385 2006-10-02  Eric Blake  <ebb9@byu.net>
1386
1387         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Use autoconf's
1388         definition in 2.60+.
1389
1390 2006-10-02  Dmitry V. Levin  <ldv@altlinux.org>
1391
1392         * lib/fts.c (fts_close, fts_build, fts_palloc): Remove redundant
1393         checks.
1394
1395 2006-10-02  Bruno Haible  <bruno@clisp.org>
1396
1397         * gnulib-tool (func_emit_lib_Makefile_am): Don't add no-dependencies
1398         to the AUTOMAKE_OPTIONS.
1399         Reported by Jim Meyering.
1400
1401 2006-09-29  Paul Eggert  <eggert@cs.ucla.edu>
1402
1403         Work around bug in Solaris 10 /proc file system:
1404         /proc/self/fd/NNN/.. isn't the parent directory of
1405         the directory whose file descriptor is NNN.  This needs to
1406         be worked around at run time, not compile time, since a
1407         program might be built on Solaris 8, where things work, and
1408         run on Solaris 10.
1409         * lib/openat-priv.h (BUILD_PROC_NAME): Remove.  All callers changed
1410         to use the following interface instead:
1411         (OPENAT_BUFFER_SIZE): New macro.
1412         (openat_proc_name): New function.
1413         * lib/at-func.c (AT_FUNC_NAME): Adjust to above changes.
1414         * lib/openat.c (openat_permissive, openat_needs_fchdir, fdopendir):
1415         Likewise.
1416         * lib/openat-proc.c: New file.
1417         * modules/openat (Files): Add lib/openat-proc.c.
1418         (Depends-on): Add same-inode, stdbool.
1419         * m4/openat.m4 (gl_FUNC_OPENAT): Add AC_LIBOBJ(openat-proc).
1420
1421 2006-09-29  Bruno Haible  <bruno@clisp.org>
1422
1423         * lib/fwriteerror.h (fwriteerror_no_ebadf): New declaration.
1424         * lib/(do_fwriteerror): Renamed from fwriteerror. Add ignore_ebadf
1425         argument. Set stdout_closed before testing for ferror, not after.
1426         (fwriteerror, fwriteerror_no_ebadf): New functions.
1427
1428 2006-09-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1429
1430         * m4/intmax.m4 (gt_TYPE_INTMAX_T): Avoid unused variables warning.
1431
1432 2006-09-28  Paolo Bonzini  <bonzini@gnu.org>
1433
1434         * lib/poll.c (rpl_poll) [__APPLE__]: Use FIONREAD instead of MSG_PEEK.
1435         * m4/poll.m4: Look for sys/ioctl.h and sys/filio.h.
1436
1437 2006-09-28  Jim Meyering  <jim@meyering.net>
1438
1439         * lib/mkdir-p.c: Include "dirchownmod.h", not "dirchownmod.c".
1440         Include <unistd.h>.
1441
1442 2006-09-28  Bruno Haible  <bruno@clisp.org>
1443
1444         * modules/avltreehash-list (Depends-on): Add stdint, remove size_max.
1445         * modules/linkedhash-list (Depends-on): Likewise.
1446         * modules/rbtreehash-list (Depends-on): Likewise.
1447
1448 2006-09-28  Bruno Haible  <bruno@clisp.org>
1449
1450         * lib/strndup.h: Simplify the redefinition of strndup.
1451         (_GL_CONCAT, _GL_XCONCAT, __STRNDUP_ID): Remove macros.
1452         * m4/strndup.m4 (gl_FUNC_STRNDUP): Don't define __STRNDUP_PREFIX.
1453
1454 2006-09-28  Bruno Haible  <bruno@clisp.org>
1455
1456         * lib/gl_avltreehash_list.c: Include <stdint.h> instead of size_max.h.
1457         * lib/gl_linkedhash_list.c: Likewise.
1458         * lib/gl_rbtreehash_list.c: Likewise.
1459
1460 2006-09-27  Paul Eggert  <eggert@cs.ucla.edu>
1461
1462         * lib/canon-host.c (canon_host_r): Work around bug in Darwin 7.9.0
1463         getaddrinfo.
1464
1465         * lib/__fpending.h: Don't include <stdio_ext.h> unless
1466         HAVE_DECL___FPENDING.  This avoids a bug with lsbcc, where
1467         it causes <stdio_ext.h> to cause a compile-time error.
1468         Problem reported by Nelson H. F. Beebe.
1469         * lib/getpass.c: Likewise, except for HAVE_DECL___FSETLOCKING instead
1470         of HAVE_DECL___PENDING.
1471
1472         * m4/fpending.m4 (gl_FUNC_FPENDING): Check for stdio_ext at most once.
1473         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for __fsetlocking's
1474         declaration.
1475
1476 2006-09-27  Jim Meyering  <jim@meyering.net>
1477
1478         This file could end up with a definition for a function
1479         named __strndup, rather than rpl_strndup on a system with
1480         incomplete weak_alias support.
1481         * lib/strndup.c (strndup): Rename from __strndup.
1482         Remove #defines that used to map __strndup to strndup.
1483         Don't use K&R prototypes.
1484         Remove LIBC-related code, since this file is not sync'd with glibc.
1485         * lib/strndup.h: Revamp, accordingly.
1486         * m4/strndup.m4: Modernize.
1487
1488 2006-09-26  Paul Eggert  <eggert@cs.ucla.edu>
1489
1490         * modules/savewd (Depends-on): Add 'raise'.
1491         * lib/savewd.c: Include <signal.h>, for 'raise'.
1492
1493 2006-09-26  Jim Meyering  <jim@meyering.net>
1494
1495         * m4/acl.m4 (AC_FUNC_ACL): Disable ACL support altogether
1496         when we detect Darwin 8.7.0's acl_get_file bug.
1497         Rearrange to perform the new (below) run-test while $LIBS
1498         contains any acl-related library.  Set USE_ACL at the end.
1499         (gl_ACL_GET_FILE): New function.
1500
1501 2006-09-26  Eric Blake  <ebb9@byu.net>
1502
1503         * lib/verror.c: Include <config.h> unconditionally.
1504
1505 2006-09-25  Paul Eggert  <eggert@cs.ucla.edu>
1506
1507         * modules/clock-time (Maintainer): Add self.
1508         * modules/getlogin_r (Depends-on): Add extensions.
1509
1510 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1511
1512         * modules/clock-time: New module.
1513         * modules/nanosleep (Depends-on): Add clock-time.
1514         * modules/gethrxtime (Depends-on): Likewise.
1515         * modules/gettime (Depends-on): Likewise.
1516         * modules/settime (Depends-on): Likewise.
1517
1518         * modules/fts-lgpl: Depend on openat.
1519         * modules/mkancesdirs: Depend on savewd.
1520         * modules/mkdir-p: Likewise.
1521
1522 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1523
1524         * m4/host-os.m4 (gl_HOST_OS): Require AC_CANONICAL_HOST.
1525
1526         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Rename cache variable from
1527         `gl_have_arbitrary_file_name_length_limit' to
1528         `gl_cv_have_arbitrary_file_name_length_limit', so that caching
1529         actually works between configure runs.
1530
1531 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1532             Bruno Haible  <bruno@clisp.org>
1533
1534         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Include <string.h>.
1535
1536 2006-09-25  Jim Meyering  <jim@meyering.net>
1537
1538         * m4/fcntl_h.m4 (gl_FCNTL_H): Fix typo in test for failed open.
1539         This typo caused coreutils/tests/dd/misc to fail on Darwin 8.7.0.
1540
1541 2006-09-25  Eric Blake  <ebb9@byu.net>
1542
1543         * gnulib-tool (func_import, func_create_testdir): Fix typos in
1544         exec's in 2006-09-18 patch when shuffling fds.
1545
1546 2006-09-25  Bruno Haible  <bruno@clisp.org>
1547
1548         * m4/getloadavg.m4 (gl_GETLOADAVG): Fix directory in error message.
1549         Reported by Jim Meyering.
1550
1551 2006-09-24  Jim Meyering  <jim@meyering.net>
1552
1553         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Don't use '>' to
1554         compare a pointer against a literal "0".  That caused failures with
1555         at least HP-UX's hpcc.
1556
1557 2006-09-22  Simon Josefsson  <jas@extundo.com>
1558
1559         * modules/gc-sha1:
1560         * modules/gc-md4:
1561         * modules/gc-hmac-sha1:
1562         * modules/gc-hmac-md5:
1563         * modules/gc-des:
1564         * modules/gc-arcfour: Distribute more files.
1565
1566 2006-09-22  Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
1567
1568         * lib/gl_anylinked_list2.h [lint] (gl_linked_iterator)
1569         (gl_linked_iterator_from_to): Initialize struct completely.
1570         * lib/gl_anytree_list2.h [lint] (gl_tree_iterator): Likewise.
1571         (gl_tree_iterator_from_to): Likewise
1572         * lib/gl_anytree_oset.h [lint] (gl_tree_iterator): Likewise.
1573         * lib/gl_array_list.c [lint] (gl_array_iterator)
1574         (gl_array_iterator_from_to): Likewise.
1575         * lib/gl_array_oset.c [lint] (gl_array_iterator): Likewise.
1576         * lib/gl_carray_list.c [lint] (gl_carray_iterator)
1577         (gl_carray_iterator_from_to): Likewise.
1578
1579         * lib/gc-gnulib.c [GC_USE_HMAC_SHA1]: include hmac.h for hmac_sha1.
1580         * lib/md4.c (md4_process_block): Remove unused variable.
1581         * lib/rijndael-api-fst.c (rijndaelBlockDecrypt): GCC suggests
1582         parentheses for clarity.
1583
1584 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1585
1586         * modules/bison-i18n (Depends-on): Add gettext.
1587
1588 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1589
1590         * m4/fsusage.m4 (gl_STATFS_TRUNCATES): Avoid unused variable.
1591         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): Likewise.
1592         * m4/jm-winsz1.m4 (gl_HEADER_TIOCGWINSZ_IN_TERMIOS_H): Likewise;
1593         also add missing comma that caused broken test.
1594         * m4/link-follow.m4 (gl_AC_FUNC_LINK_FOLLOWS_SYMLINK): Include
1595         stdlib.h, for `abort'.
1596         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Avoid unused
1597         variables.
1598         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Check for and
1599         include unistd.h if present, for `rmdir'.
1600         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): Avoid unused
1601         variables.
1602         * m4/putenv.m4 (gl_FUNC_PUTENV): Rewrite using AC_RUN_IFELSE, and
1603         in the process include standard headers for prototypes.
1604         * m4/readutmp.m4 (gl_READUTMP): Require AC_GNU_SOURCE, so utmpxname
1605         gets declared on GNU/Linux.
1606         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Check for and include
1607         unistd.h, for `rmdir'.
1608         * m4/time_r.m4 (gl_TIME_R): Avoid unused variables.
1609
1610         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Avoid expression that is
1611         always true.
1612         * m4/strndup.m4 (gl_FUNC_STRNDUP): include stdlib.h, for `free'.
1613
1614         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Avoid gcc -Wall warnings.
1615
1616 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1617
1618         * gnulib-tool (func_version): Create output all at once.  This
1619         may help avoid triggering unnecessary SIGPIPEs, and at any
1620         rate it doesn't hurt.
1621
1622 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1623             Bruno Haible  <bruno@clisp.org>
1624
1625         * m4/lock.m4 (gl_LOCK_BODY): Avoid unused variables warning.
1626         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
1627         * m4/signed.m4 (bh_C_SIGNED): Likewise.
1628
1629         * m4/vasprintf.m4 (gl_PREREQ_VASPRINTF_H): New macro.
1630         (gl_FUNC_VASPRINTF): Invoke it.
1631
1632 2006-09-22  Bruno Haible  <bruno@clisp.org>
1633
1634         * m4/getloadavg.m4 (gl_GETLOADAVG): Expect the directory of
1635         getloadavg.c as first argument.
1636
1637 2006-09-22  Bruno Haible  <bruno@clisp.org>
1638
1639         * gnulib-tool (func_import, func_create_testdir): Set gl_source_base
1640         at the beginning of the gl_INIT macro.
1641         * modules/getloadavg (configure.ac): Pass $gl_source_base to
1642         gl_GETLOADAVG.
1643
1644 2006-09-22  Bruno Haible  <bruno@clisp.org>
1645
1646         * gnulib-tool (func_create_megatestdir): Don't include the config-h
1647         module.
1648         Suggested by Ralf Wildenhues.
1649
1650 2006-09-20  Paul Eggert  <eggert@cs.ucla.edu>
1651
1652         Import this patch from libc:
1653
1654         2006-09-06  Jakub Jelinek  <jakub@redhat.com>
1655
1656         * lib/regex_internal.c (re_string_reconstruct): Handle
1657         offset < pstr->valid_raw_len && pstr->offsets_needed case.
1658         Ensure no bytes read before raw_mbs array.  Pass a saved copy of
1659         pstr->valid_len - 1 rather than pstr->valid_raw_len - 1 to
1660         re_string_context_at.
1661
1662         * m4/regex.m4 (gl_REGEX): Check for locale.h, since the test
1663         now requires it.
1664         (gl_PREREQ_REGEX): Don't check for locale.h any more, since
1665         gl_REGEX now does it for us.
1666         (gl_REGEX): Add test taken from
1667         http://sourceware.org/ml/libc-hacker/2006-09/msg00008.html.
1668
1669         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Require AC_SYS_LARGEFILE.
1670         Check that large offsets work.  Modernize Autoconf usages.
1671         Prefer "yes" to mean a good thing rather than a bad.
1672         Don't put "#define mkstemp" in config.h, as this might interfere
1673         with standard system headers that "#define mkstemp mkstemp64".
1674
1675         * modules/mkstemp (Depends-on): Add extensions, so that
1676         mkstemp is visible on some platforms.
1677         (Makefile.am): Add mkstemp.h to EXTRA_DIST.
1678         (Include): Change to "mkstemp.h" from <stdlib.h>.
1679         (Files): Add mkstemp.h.
1680
1681         * lib/mkstemp.h: New file, since some standard headers
1682         #define mkstemp.
1683         * lib/mkstemp.c: Revamp to put the !_LIBC code together.
1684         Include "mkstemp.h".
1685         Make the _LIBC code resemble glibc original more,
1686         e.g., use K&R style.
1687         * lib/mkstemp-safer.c: Include "mkstemp.h" instead of <stdlib.h>.
1688         (mkstemp): Remove, since mkstemp.h does this for us.
1689         * lib/stdlib--.h: Include mkstemp.h.
1690
1691         Import this patch from libc:
1692
1693         2006-04-07  Ulrich Drepper  <drepper@redhat.com>
1694
1695         * lib/tempname.c (__gen_tempname): Change attempts_min
1696         into a macro.  Use preprocessor to decide how to initialize
1697         attempts [Coverity CID 67].
1698
1699 2006-09-20  Bruno Haible  <bruno@clisp.org>
1700
1701         * lib/mkdtemp.c: Import from libc.
1702         2006-04-07  Ulrich Drepper  <drepper@redhat.com>
1703                 * sysdeps/posix/tempname.c (__gen_tempname): Change
1704                 attempts_min into a macro.  Use preprocessor to decide how to
1705                 initialize attempts [Coverity CID 67].
1706         2001-11-27  Paul Eggert  <eggert@twinsun.com>
1707                 * sysdeps/posix/tempname.c (__gen_tempname): Try at least
1708                 ATTEMPTS_MIN or TMP_MAX times, whichever is greater.
1709
1710 2006-09-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1711
1712         * gnulib-tool (func_exit): New function, to allow to pass the
1713         exit status portably through the trap.  Use everywhere.
1714         (--help, --version): Signal a write error.
1715         (trap): catch SIGPIPE, for write errors.
1716         Exit at the end of the trap, with the correct exit status.
1717
1718 2006-09-19  Karl Berry  <karl@gnu.org>
1719
1720         * doc/gnulib.texi: note about the license texinfo files.
1721
1722 2006-09-19  Eric Blake  <ebb9@byu.net>
1723
1724         * gnulib-tool: Avoid space-tab.
1725
1726 2006-09-18  Paul Eggert  <eggert@cs.ucla.edu>
1727
1728         * lib/getaddrinfo.c (getaddrinfo) [defined HAVE_IPV6]: Fix typo
1729         that prevented coreutils 6.1 from building.  Problem reported
1730         by Petter Reinholdtsen.
1731
1732 2006-09-18  Paul Eggert  <eggert@cs.ucla.edu>
1733
1734         * gnulib-tool (avoidlist): Fix typo that broke options like
1735         --avoid=lock that are used by coreutils bootstrap.
1736
1737 2006-09-18  Mark D. Baushke  <mdb@gnu.org>
1738
1739         * m4/inttypes.m4 (gl_INTTYPES_H): Quote "test" args
1740         more systematically.
1741
1742 2006-09-18  Jim Meyering  <jim@meyering.net>
1743
1744         * lib/savewd.c (savewd_restore): Don't shadow: s/status/child_status/.
1745
1746 2006-09-18  Bruno Haible  <bruno@clisp.org>
1747
1748         * modules/inttypes (Files): Remove m4/inttypes-h.m4.
1749
1750 2006-09-18  Bruno Haible  <bruno@clisp.org>
1751
1752         * m4/inttypes-h.m4 (gl_HEADER_INTTYPES_H): Remove macro.
1753         * m4/inttypes-pri.m4: Require autoconf >= 2.52.
1754         (gt_INTTYPES_PRI): Invoke AC_CHECK_HEADERS on inttypes.h. Test
1755         ac_cv_header_inttypes_h instead of gl_cv_header_inttypes_h.
1756         * m4/gettext.m4: Require autoconf >= 2.52.
1757         (gt_INTL_SUBDIR_CORE): Invoke AC_CHECK_HEADERS on inttypes.h.
1758         * m4/inttypes.m4 (gl_INTTYPES_H): Test ac_cv_header_inttypes_h instead
1759         of gl_cv_header_inttypes_h.
1760
1761 2006-09-18  Bruno Haible  <bruno@clisp.org>
1762
1763         * lib/javaversion.c: Include configmake.h.
1764
1765 2006-09-18  Bruno Haible  <bruno@clisp.org>
1766
1767         * gnulib-tool (func_import, func_create_testdir): Use exec tricks to
1768         avoid that the while loops be executed in a subshell.
1769
1770 2006-09-18  Bruno Haible  <bruno@clisp.org>
1771
1772         * MODULES.html.sh (func_module): Break long lines.
1773         Suggested by Bruce Korb <bkorb@gnu.org>.
1774
1775 2006-09-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1776
1777         Speed up by a factor of 1.12.
1778         * gnulib-tool (nl): New variable.
1779         (func_import): Rewrite include directive extraction to only read each
1780         directive once.
1781
1782 2006-09-17  Bruno Haible  <bruno@clisp.org>
1783
1784         * modules/javaversion (Makefile.am): Remove DEFS setting.
1785         (Depends-on): Add configmake, for PKGDATADIR definition.
1786
1787 2006-09-17  Bruno Haible  <bruno@clisp.org>
1788
1789         * gnulib-tool (func_create_testdir): Rewrite all files at once.
1790
1791 2006-09-17  Bruno Haible  <bruno@clisp.org>
1792
1793         * gnulib-tool (func_append): New function, stolen from libtool.m4.
1794         (func_modules_transitive_closure, func_modules_add_dummy,
1795         func_modules_to_filelist, func_import, func_create_testdir,
1796         func_create_megatestdir, ...): Use it wherever possible.
1797         Suggested by Ralf Wildenhues.
1798
1799 2006-09-16  Karl Berry  <karl@gnu.org>
1800
1801         * doc/fdl.texi (ADDENDUM): switch to @heading from @appendixsubsec,
1802         to avoid sectioning errors.
1803         * doc/lgpl.texi, gpl.texi (Copying): downcase @unnumbered title.
1804         [ifinfo]: blank line after @center-ed titles.
1805         * doc/lgpl.texi (Library Copying): Rename main node to GNU LGPL.
1806         Spell FSF address consistently with others.
1807         (These changes approved by rms.)
1808
1809 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1810
1811         Speed up by a factor of 1.61.
1812         * gnulib-tool (func_modules_transitive_closure): Rewrite to not check
1813         already checked module names again.
1814
1815 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1816
1817         Speed up by a factor of 1.13.
1818         * gnulib-tool (func_import): Rewrite all old_files at once; likewise
1819         for new_files, and the input to func_add_or_update.
1820
1821 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1822
1823         * gnulib-tool (func_all_modules, func_modules_to_filelist, func_import,
1824         func_create_testdir, ...): Change 'sort | uniq' to 'sort -u'.
1825
1826 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
1827
1828         * modules/mkancesdirs (Depends-on): Add fcntl.
1829         * modules/savewd: New file.
1830         * MODULES.html.sh (File system functions): Add savewd.
1831
1832         * modules/configmake (Makefile.am): Add support for the
1833         Automake-supplied PKGLIBDIR, PKGINCLUDEDIR, PKGDATADIR.
1834
1835 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
1836
1837         * m4/savewd.m4: New file.
1838
1839 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
1840
1841         * lib/dirchownmod.c: Don't include fcntl.h; no longer needed.
1842         (dirchownmod): New arg FD.  All callers changed.
1843         Use FD rather than opening the directory ourself, as opening is
1844         now the caller's responsibility.
1845         * lib/dirchownmod.h: Likewise.
1846         * lib/mkancesdirs.c: Include <sys/types.h>, for portability to older
1847         hosts that require <sys/types.h> before <sys/stat.h>.  Include
1848         fcntl.h, savewd.h, and unistd.h, not dirname.h and stat-macros.h.
1849         (test_dir): Remove.
1850         (mkancesdirs): Return length of prefix of FILE that has already
1851         been made, or -2 if there is a child doing the work.  Redo
1852         algorithm so that it is O(N) rather than O(N**2).  Optimize away
1853         ".", and treat ".." specially since it might stray back into
1854         already-created areas.  Use a subprocess if necessary.  New arg
1855         WD; all users changed.  MAKE_DIR function should now return 1
1856         if it creates a directory that is not readable.  Return -2 if
1857         a child process is spun off.
1858         * lib/mkancesdirs.h: Include <stddef.h>, for ptrdiff_t.
1859         Adjust signature to match code.
1860         * lib/mkdir-p.c: Include dirname.h, for IS_ABSOLUTE_FILE_NAME.
1861         (make_dir_parents): Use a subprocess if necessary.  New arg WD;
1862         all users changed.
1863         * lib/savewd.c, savewd.h: New files.
1864
1865 2006-09-15  Jim Meyering  <jim@meyering.net>
1866
1867         * modules/rename-dest-slash: New module.
1868         * MODULES.html.sh (posix_compat): Add it here.
1869
1870         * modules/rename: Reflect vb_FUNC_RENAME -> gl_FUNC_RENAME change.
1871
1872 2006-09-15  Jim Meyering  <jim@meyering.net>
1873
1874         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH): New
1875         file.
1876
1877         * m4/rename.m4 (gl_FUNC_RENAME): Rename from vb_FUNC_RENAME.
1878
1879 2006-09-15  Jim Meyering  <jim@meyering.net>
1880
1881         * lib/rename-dest-slash.c (has_trailing_slash): Use
1882         FILE_SYSTEM_PREFIX_LEN, for non-POSIX systems.
1883         (rpl_rename_dest_slash): Perform the cheaper trailing slash
1884         test before testing whether SRC is a directory.
1885         Suggestions from Bruno Haible.
1886
1887         Avoid a warning about an unused variable.
1888         * lib/regex_internal.c (re_dfa_add_node): Move declaration of "type"
1889         into the #ifdef block where it's used.
1890
1891         * lib/rename-dest-slash.c: New file.
1892
1893 2006-09-14  Bruno Haible  <bruno@clisp.org>
1894
1895         * lib/allocsa.c: Include <config.h> unconditionally.
1896         * lib/asnprintf.c: Likewise.
1897         * lib/asprintf.c: Likewise.
1898         * lib/c-strcasecmp.c: Likewise.
1899         * lib/c-strcasestr.c: Likewise.
1900         * lib/c-strncasecmp.c: Likewise.
1901         * lib/c-strstr.c: Likewise.
1902         * lib/classpath.c: Likewise.
1903         * lib/clean-temp.c: Likewise.
1904         * lib/concatpath.c: Likewise.
1905         * lib/copy-file.c: Likewise.
1906         * lib/csharpcomp.c: Likewise.
1907         * lib/csharpexec.c: Likewise.
1908         * lib/execute.c: Likewise.
1909         * lib/fatal-signal.c: Likewise.
1910         * lib/findprog.c: Likewise.
1911         * lib/fwriteerror.c: Likewise.
1912         * lib/gl_array_list.c: Likewise.
1913         * lib/gl_array_oset.c: Likewise.
1914         * lib/gl_avltree_list.c: Likewise.
1915         * lib/gl_avltree_oset.c: Likewise.
1916         * lib/gl_avltreehash_list.c: Likewise.
1917         * lib/gl_carray_list.c: Likewise.
1918         * lib/gl_linked_list.c: Likewise.
1919         * lib/gl_linkedhash_list.c: Likewise.
1920         * lib/gl_list.c: Likewise.
1921         * lib/gl_oset.c: Likewise.
1922         * lib/gl_rbtree_list.c: Likewise.
1923         * lib/gl_rbtree_oset.c: Likewise.
1924         * lib/gl_rbtreehash_list.c: Likewise.
1925         * lib/imaxabs.c: Likewise.
1926         * lib/imaxdiv.c: Likewise.
1927         * lib/javacomp.c: Likewise.
1928         * lib/javaexec.c: Likewise.
1929         * lib/javaversion.c: Likewise.
1930         * lib/linebreak.c: Likewise.
1931         * lib/localcharset.c: Likewise.
1932         * lib/lock.c: Likewise.
1933         * lib/mbchar.c: Likewise.
1934         * lib/mbswidth.c: Likewise.
1935         * lib/mkdtemp.c: Likewise.
1936         * lib/pipe.c: Likewise.
1937         * lib/printf-args.c: Likewise.
1938         * lib/printf-parse.c: Likewise.
1939         * lib/progname.c: Likewise.
1940         * lib/progreloc.c: Likewise.
1941         * lib/readlink.c: Likewise.
1942         * lib/sh-quote.c: Likewise.
1943         * lib/stpcpy.c: Likewise.
1944         * lib/stpncpy.c: Likewise.
1945         * lib/strcasecmp.c: Likewise.
1946         * lib/strcasestr.c: Likewise.
1947         * lib/strcspn.c: Likewise.
1948         * lib/striconv.c: Likewise.
1949         * lib/strncasecmp.c: Likewise.
1950         * lib/strnlen1.c: Likewise.
1951         * lib/strstr.c: Likewise.
1952         * lib/strtok_r.c: Likewise.
1953         * lib/tls.c: Likewise.
1954         * lib/tmpdir.c: Likewise.
1955         * lib/unicodeio.c: Likewise.
1956         * lib/unsetenv.c: Likewise.
1957         * lib/vasnprintf.c: Likewise.
1958         * lib/vasprintf.c: Likewise.
1959         * lib/wait-process.c: Likewise.
1960         * lib/xallocsa.c: Likewise.
1961         * lib/xsetenv.c: Likewise.
1962         * lib/xstriconv.c: Likewise.
1963
1964 2006-09-13  Simon Josefsson  <jas@extundo.com>
1965
1966         * m4/getdate.m4: Don't AC_LIBOBJ([getdate]), automake takes care of
1967         that internally, suggested by Ralf Wildenhues
1968         <Ralf.Wildenhues@gmx.de>.
1969
1970 2006-09-13  Simon Josefsson  <jas@extundo.com>
1971
1972         * gnulib-tool (func_emit_lib_Makefile_am): Use $(LIBOBJS), not
1973         @LIBOBJS@.
1974         Suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
1975
1976 2006-09-13  Paul Eggert  <eggert@cs.ucla.edu>
1977
1978         * lib/_fpending.c: Include <config.h> unconditionally, since we no
1979         longer worry about uses that don't define HAVE_CONFIG_H.
1980         * lib/acl.c, lib/alloca.c, lib/argmatch.c, lib/atexit.c:
1981         * lib/backupfile.c, lib/basename.c, lib/c-stack.c, lib/c-strtod.c:
1982         * lib/calloc.c,lib/ canon-host.c, lib/canonicalize.c, lib/chdir-long.c:
1983         * lib/chdir-safer.c, lib/chown.c, lib/cloexec.c, lib/close-stream.c:
1984         * lib/closeout.c, lib/creat-safer.c, lib/cycle-check.c, lib/diacrit.c:
1985         * lib/dirchownmod.c, lib/dirfd.c, lib/dirname.c, lib/dup-safer.c:
1986         * lib/dup2.c, lib/error.c, lib/euidaccess.c, lib/exclude.c:
1987         * lib/exitfail.c, lib/fchmodat.c, lib/fchown-stub.c, lib/fd-safer.c:
1988         * lib/file-type.c, lib/fileblocks.c, lib/filemode.c, lib/filenamecat.c:
1989         * lib/fnmatch.c, lib/fopen-safer.c, lib/fprintftime.c, lib/free.c:
1990         * lib/fsusage.c, lib/ftruncate.c, lib/fts-cycle.c, lib/fts.c:
1991         * lib/full-write.c, lib/gai_strerror.c, lib/getcwd.c, lib/getdate.y:
1992         * lib/getdomainname.c, lib/getgroups.c, lib/gethostname.c:
1993         * lib/gethrxtime.c, lib/getloadavg.c, lib/getlogin_r.c:
1994         * lib/getndelim2.c, lib/getnline.c, lib/getopt.c, lib/getopt1.c:
1995         * lib/getpass.c, lib/gettime.c, lib/gettimeofday.c, lib/getugroups.c:
1996         * lib/getusershell.c, lib/glob.c, lib/group-member.c:
1997         * lib/hard-locale.c, lib/hash-pjw.c, lib/hash.c, lib/human.c:
1998         * lib/idcache.c, lib/inet_ntop.c, lib/inet_pton.c, lib/inttostr.c:
1999         * lib/isdir.c, lib/lchown.c, lib/linebuffer.c, lib/long-options.c:
2000         * lib/lstat.c, lib/malloc.c, lib/md5.c, lib/memcasecmp.c, lib/memchr.c:
2001         * lib/memcmp.c, lib/memcoll.c, lib/memcpy.c, lib/memmove.c:
2002         * lib/memrchr.c, lib/mkancesdirs.c, lib/mkdir-p.c, lib/mkdir.c:
2003         * lib/mkdirat.c, lib/mkstemp-safer.c, lib/mkstemp.c, lib/modechange.c:
2004         * lib/mountlist.c, lib/nanosleep.c, lib/obstack.c, lib/open-safer.c:
2005         * lib/openat-die.c, lib/openat.c, lib/pagealign_alloc.c, lib/physmem.c:
2006         * lib/pipe-safer.c, lib/posixtm.c, lib/posixver.c, lib/putenv.c:
2007         * lib/quote.c, lib/quotearg.c, lib/raise.c, lib/readtokens.c:
2008         * lib/readtokens0.c, lib/readutmp.c, lib/realloc.c, lib/regex.c:
2009         * lib/rename.c, lib/rmdir.c, lib/rpmatch.c, lib/safe-read.c:
2010         * lib/same.c, lib/save-cwd.c, lib/savedir.c, lib/setenv.c:
2011         * lib/settime.c, lib/sha1.c, lib/sig2str.c, lib/snprintf.c:
2012         * lib/strdup.c, lib/strerror.c, lib/strftime.c, lib/stripslash.c:
2013         * lib/strndup.c, lib/strnlen.c, lib/strpbrk.c, lib/strtod.c:
2014         * lib/strtoimax.c, lib/strtol.c, lib/strverscmp.c, lib/tempname.c:
2015         * lib/time_r.c, lib/timegm.c, lib/tmpfile-safer.c, lib/unlinkdir.c:
2016         * lib/userspec.c, lib/utime.c, lib/utimecmp.c, lib/utimens.c:
2017         * lib/version-etc-fsf.c, lib/version-etc.c, lib/xalloc-die.c:
2018         * lib/xgetcwd.c, lib/xgethostname.c, lib/xmalloc.c, lib/xmemcoll.c:
2019         * lib/xnanosleep.c, lib/xreadlink.c, lib/xstrtod.c, lib/xstrtoimax.c:
2020         * lib/xstrtol.c, lib/xstrtoumax.c, lib/yesno.c:
2021         Likewise.
2022
2023 2006-09-13  Eric Blake  <ebb9@byu.net>
2024
2025         * lib/getopt.c: Fix typo in last commit.
2026
2027 2006-09-12  Sergey Poznyakoff  <gray@gnu.org.ua>
2028
2029         * lib/argp-help.c (argp_doc): Make sure NULL is not passed to
2030         dgettext.
2031
2032 2006-09-12  Jim Meyering  <jim@meyering.net>
2033
2034         * lib/nanosleep.c: Include <sys/types.h> before sys/select.h, to avoid
2035         compilation failure (due to use of pid_t in latter) on NetBSD 1.6.
2036         Reported by Nelson H. F. Beebe.
2037
2038 2006-09-10  Sergey Poznyakoff  <gray@gnu.org.ua>
2039
2040         * lib/argp-parse.c (__argp_parse) [!_LIBC]: Make sure
2041         program_invocation_name and program_invocation_short_name are
2042         initialized.
2043         * lib/argp-namefrob.h: Move declarations of program_invocation_name
2044         and program_invocation_short_name to argp.h, so they are visible
2045         to user programs.
2046         * lib/argp.h: Likewise
2047
2048 2006-09-10  Bruno Haible  <bruno@clisp.org>
2049
2050         * modules/mkdtemp (Files): Remove m4/ulonglong.m4, m4/stdint_h.m4,
2051         m4/inttypes_h.m4, m4/uintmax_t.m4.
2052
2053 2006-09-10  Bruno Haible  <bruno@clisp.org>
2054
2055         * m4/mkdtemp.m4 (gl_PREREQ_MKDTEMP): Don't require
2056         gl_AC_TYPE_UINTMAX_T.
2057
2058 2006-09-10  Bruno Haible  <bruno@clisp.org>
2059
2060         * lib/mkdtemp.c: Include <stdint.h> always. Don't include <inttypes.h>.
2061
2062 2006-09-09  Sergey Poznyakoff  <gray@gnu.org.ua>
2063
2064         * lib/argp.h (struct argp): Document the N_("..") "\v" N_("..")
2065         convention.  Text proposed by Bruno Haible.
2066         (struct argp_option): Document the use of N_() wrappers.
2067
2068         * lib/argp-help.c (argp_doc): Split the untranslated doc string on
2069         '\v', and translate the two parts separately, instead of feeding
2070         the whole string to gettext.  This allows to exclude
2071         '\v' from the strings visible to the translator by writing doc
2072         strings as N_("..") "\v" N_("..").
2073
2074 2006-09-09  Paul Eggert  <eggert@cs.ucla.edu>
2075
2076         * config/srclist.txt: Undo latest change; the bug was fixed.
2077
2078 2006-09-09  Bruno Haible  <bruno@clisp.org>
2079
2080         * gnulib-tool (func_emit_lib_Makefile_am): Eliminate lib_LDFLAGS
2081         assignments if building a library without libtool.
2082         (func_emit_tests_Makefile_am): Likewise. Handle lib_* variables as
2083         in func_emit_lib_Makefile_am.
2084         (func_import): When building a static library libfoo.a, arrange to
2085         define variables LIBFOO_LIBDEPS and LIBFOO_LTLIBDEPS.
2086         (func_create_testdir): Likewise.
2087         * modules/gc (configure.ac, Makefile.am): If building statically,
2088         augment gl_libdeps and gl_ltlibdeps instead of lib_LDFLAGS.
2089         * modules/iconvme (configure.ac, Makefile.am): Likewise.
2090         * modules/striconv (configure.ac, Makefile.am): Likewise.
2091         Based on a suggestion by Ralf Wildenhues.
2092
2093 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
2094
2095         * m4/mktime.m4 (AC_FUNC_MKTIME): Sync from Autoconf.
2096         Check for unistd.h too, since Autoconf doesn't assume POSIX.
2097         Also:
2098
2099         2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
2100         Add year_2050_test to catch glibc bug 2821
2101         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
2102
2103         2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
2104         Prefer #ifdef to #if.
2105
2106         2006-04-02  Paul Eggert  <eggert@cs.ucla.edu>
2107         Return from 'main' instead of calling 'exit'.
2108
2109 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
2110
2111         * lib/mktime.c (guess_time_tm): Fix bug where mktime
2112         returned the maximum time_t value rather than (time_t) -1.
2113         Problem originally reported by William Bardwell
2114         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
2115
2116         * lib/isapipe.h (HAVE_FIFO_PIPES) [!defined HAVE_FIFO_PIPES]:
2117         Moved to here ...
2118         * lib/isapipe.c (HAVE_FIFO_PIPES) [!defined HAVE_FIFO_PIPES]:
2119         ... from here.
2120
2121 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
2122
2123         * config/srclist.txt: Temporarily comment out mktime.c until glibc bug
2124         2821 is fixed.
2125
2126 2006-09-08  Jim Meyering  <jim@meyering.net>
2127
2128         Don't make generated files read-only.  That would bother too many
2129         people.  However, do retain the ability to work when targets are
2130         read-only: remove the destination and temporary files before writing
2131         them (when generated via sed or echo), or by using the -f option for
2132         both cp and mv commands.  Suggestion to use -f from Paul Eggert.
2133         * modules/alloca-opt, modules/argz, modules/arpa_inet:
2134         * modules/byteswap, modules/configmake, modules/fcntl:
2135         * modules/fnmatch, modules/getopt, modules/glob, modules/inttypes:
2136         * modules/localcharset, modules/netinet_in, modules/poll:
2137         * modules/stdbool, modules/stdint, modules/sys_select:
2138         * modules/sys_socket, modules/sys_stat, modules/sysexits:
2139
2140 2006-09-08  Jim Meyering  <jim@meyering.net>
2141
2142         Avoid new build failure on FreeBSD 6.0.
2143         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Include
2144         <sys/param.h> when testing whether getmntinfo uses statvfs.  Patch by
2145         Pavel Tsekov, in <http://savannah.gnu.org/bugs/?17643>.
2146
2147 2006-09-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2148
2149         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Don't use plain echo.
2150
2151 2006-09-07  Jim Meyering  <jim@meyering.net>
2152
2153         Fix global typo in last change: use chmod u-w, not chmod u-x.
2154         Spotted by Paul Eggert and Bruce Korb.
2155         * modules/alloca-opt, modules/argz, modules/arpa_inet:
2156         * modules/byteswap, modules/configmake, modules/fcntl:
2157         * modules/fnmatch, modules/getopt, modules/glob, modules/inttypes:
2158         * modules/localcharset, modules/netinet_in, modules/poll:
2159         * modules/stdbool, modules/stdint, modules/sys_select:
2160         * modules/sys_socket, modules/sys_stat, modules/sysexits:
2161
2162 2006-09-06  Jim Meyering  <jim@meyering.net>
2163
2164         Make generated files be read-only.
2165         * modules/alloca-opt (Makefile.am): Work also when $@ is read-only.
2166         Ensure that each generated file is now read-only.
2167         * modules/argz: Likewise.
2168         * modules/arpa_inet: Likewise.
2169         * modules/byteswap: Likewise.
2170         * modules/configmake: Likewise.
2171         * modules/fcntl: Likewise.
2172         * modules/fnmatch: Likewise.
2173         * modules/getopt: Likewise.
2174         * modules/glob: Likewise.
2175         * modules/inttypes: Likewise.
2176         * modules/netinet_in: Likewise.
2177         * modules/poll: Likewise.
2178         * modules/stdbool: Likewise.
2179         * modules/stdint: Likewise.
2180         * modules/sys_select: Likewise.
2181         * modules/sys_socket: Likewise.
2182         * modules/sys_stat: Likewise.
2183         * modules/sysexits: Likewise.
2184         * modules/localcharset: Same as above, but continue using temporary
2185         file named "t-$@" (why different?) rather than the "$@-t" used
2186         everywhere else.
2187
2188         * modules/sysexits (Makefile.am): Replace literal occurrences
2189         of "sysexit.h" more readable, and more consistent, "$@".
2190
2191 2006-09-06  Bruno Haible  <bruno@clisp.org>
2192
2193         * modules/striconv: New file.
2194         * modules/xstriconv: New file.
2195         * MODULES.html.sh (Internationalization functions): Add striconv,
2196         xstriconv.
2197
2198 2006-09-06  Bruno Haible  <bruno@clisp.org>
2199
2200         * modules/gc (Makefile.am): Augment lib_LDFLAGS, not lib_LIBADD.
2201         * modules/iconvme (Makefile.am): Likewise. Also handle the case of
2202         not using libtool correctly.
2203
2204 2006-09-06  Bruno Haible  <bruno@clisp.org>
2205
2206         * lib/striconv.h: New file.
2207         * lib/striconv.c: New file, merging iconvme.c with GNU gettext's
2208         iconvstring.c.
2209         * lib/xstriconv.h: New file.
2210         * lib/xstriconv.c: New file.
2211
2212 2006-09-06  Bruno Haible  <bruno@clisp.org>
2213
2214         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
2215         lib_..._LDFLAGS.
2216
2217 2006-09-05  Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
2218
2219         * lib/argz_.h: Sync from Libtool.
2220
2221         2006-09-04  George Bosilca <bosilca@cs.utk.edu>
2222                 and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
2223
2224         * lib/libltdl/argz_.h: It's __cplusplus, not _cplusplus.
2225
2226 2006-09-05  Davide Angelocola <davide.angelocola@tiscali.it>
2227
2228         * modules/trim: New file.
2229
2230 2006-09-05  Davide Angelocola <davide.angelocola@tiscali.it>
2231
2232         * lib/trim.h: New file.
2233         * lib/trim.c: New file.
2234
2235 2006-09-05  Bruno Haible  <bruno@clisp.org>
2236
2237         * MODULES.html.sh (String handling): Add trim.
2238
2239 2006-09-04  Karl Berry  <karl@gnu.org>
2240
2241         * config/srclist.txt (signed.m4, gettext.m4): changes not propagated
2242         until next release.
2243
2244 2006-09-03  Bruno Haible  <bruno@clisp.org>
2245
2246         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Locate mingw shared libraries
2247         correctly.
2248
2249 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
2250
2251         * m4/getloadavg.m4 (gl_GETLOADAVG): Use CONFIGURING_GETLOADAVG,
2252         not gl_GETLOADAVG.  Omit unneeded semicolons.
2253         Problems reported by Ralf Wildenhues in
2254         <http://lists.gnu.org/archive/html/bug-gnulib/2006-09/msg00000.html>.
2255         (gl_PREREQ_GETLOADAVG): Use AC_DEFUN, not m4_define.  Put
2256         at the end, which is the usual gnulib style.
2257
2258         * m4/fstypename.m4 (gl_FSTYPENAME): Use AC_CHECK_MEMBERS instead
2259         of doing all the work ourselves.
2260         * m4/fsusage.m4 (gl_PREREQ_FSUSAGE_EXTRA): Don't check for
2261         sys/statvfs.h since the code doesn't use HAVE_SYS_STATVFS_H.
2262
2263 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
2264
2265         * lib/getloadavg.c: Use CONFIGURING_GETLOADAVG, not gl_GETLOADAVG.
2266         Problem reported by Ralf Wildenhues in
2267         <http://lists.gnu.org/archive/html/bug-gnulib/2006-09/msg00000.html>.
2268
2269         * lib/mountlist.c: All uses of HAVE_F_FSTYPENAME_IN_STATFS replaced by
2270         HAVE_STRUCT_STATFS_F_FSTYPENAME.
2271
2272 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
2273
2274         * gnulib-tool (func_emit_lib_Makefile_am): Fix typos in
2275         yesterday's patch by changing test -n to test -z.
2276
2277 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
2278
2279         * modules/getloadavg (Files): Add m4/getloadavg.m4.
2280         (configure.ac): AC_FUNC_GETLOADAVG -> gl_GETLOADAVG, as
2281         the former is now obsolescent.
2282
2283         * modules/chdir-long (Depends-on): Add fcntl.
2284
2285 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
2286
2287         * m4/fnmatch.m4: Add comment that Autoconf AC_FUNC_FNMATCH is
2288         obsolescent, and programs should use gnulib instead.
2289         * m4/getloadavg.m4: New file, with contents taken from Autoconf
2290         but with prefixes changed.
2291
2292 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
2293
2294         * lib/getloadavg.c [defined gl_GETLOADAVG]: Don't include config.h
2295         or stdbool.h, because they might not exist while configuring.
2296
2297         * lib/chdir-long.c: Include <fcntl.h>, for O_DIRECTORY.
2298         Don't include unistd.h or limits.h; not needed, since chdir-long.h
2299         does that for us.
2300         (O_DIRECTORY): Remove.
2301
2302 2006-08-31  Eric Blake  <ebb9@byu.net>
2303
2304         * gnulib-tool: Don't let emacs change spaces to TAB.
2305
2306 2006-08-31  Bruno Haible  <bruno@clisp.org>
2307
2308         * gnulib-tool: When calling func_import more than once, do it in a
2309         subshell.
2310         Reported by Eric Blake <ebb9@byu.net>.
2311
2312 2006-08-31  Bruno Haible  <bruno@clisp.org>
2313
2314         * gnulib-tool (nl): Remove variable.
2315         (sed_transform_lib_file): Use more robust test for config-h module.
2316         (func_import): Fix typo in 2006-08-25 patch.
2317
2318 2006-08-31  Bruno Haible  <bruno@clisp.org>
2319
2320         * gnulib-tool (func_emit_lib_Makefile_am): When --makefile-name was
2321         specified, augment Makefile.am variables instead of assigning them.
2322
2323 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
2324
2325         Work around a bug in both the Linux and SunOS 64-bit kernels:
2326         nanosleep mishandles sleeps for longer than 2**31 seconds.
2327         Problem reported by Frank v Waveren in
2328         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00298.html>.
2329         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Require gl_CLOCK_TIME.
2330         Check for nanosleep bug.
2331         (LIB_NANOSLEEP): Append clock_gettime library if needed.
2332
2333 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
2334
2335         Work around a bug in both the Linux and SunOS 64-bit kernels:
2336         nanosleep mishandles sleeps for longer than 2**31 seconds.
2337         Problem reported by Frank v Waveren in
2338         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00298.html>.
2339         * lib/nanosleep.c (BILLION): New constant.
2340         (getnow) [HAVE_BUG_BIG_NANOSLEEP]: New functions.
2341         (rpl_nanosleep) [HAVE_BUG_BIG_NANOSLEEP]: Completely new
2342         implementation.
2343
2344 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
2345
2346         * modules/nanosleep (Depends-on): Add gettime.
2347
2348 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
2349         and Simon Josefsson  <jas@extundo.com>
2350         and Oskar Liljeblad  <oskar@osk.mine.nu>
2351
2352         * MODULES.html.sh (Support for building documentation): Add gpl, lgpl.
2353         * gnulib-tool (func_import): New license type 'unmodifiable license
2354         text'.
2355         * modules/fdl: Use it.  Longer description.
2356         * module/gpl, module/lgpl: New files.
2357
2358 2006-08-30  Jim Meyering  <jim@meyering.net>
2359
2360         * lib/isapipe.c (isapipe): Rename local s/fd/fd_pair/ to avoid
2361         shadowing the parameter.
2362
2363 2006-08-29  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2364
2365         Sync from Libtool:
2366
2367         2006-08-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2368
2369         * lib/libltdl/argz.c: Use `#ifdef HAVE_CONFIG_H', to facilitate code
2370         sharing with gnulib.  Report by Eric Blake.
2371
2372 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
2373
2374         * modules/isapipe: New file.
2375         * MODULES.html.sh (File descriptor based Input/Output): Add isapipe.
2376
2377 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
2378
2379         * modules/configmake (Makefile.am): Add a comment, and omit
2380         the CONFIGMAKE_ prefix from generated macro names.  Suggested
2381         by Bruno Haible.
2382
2383 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
2384
2385         * m4/isapipe.m4: New file.
2386
2387 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
2388
2389         * lib/isapipe.c, isapipe.h: New files.
2390
2391 2006-08-29  Jim Meyering  <jim@meyering.net>
2392
2393         * modules/configmake (Makefile.am): Make configmake.h depend on
2394         Makefile.  Otherwise, a stale configmake.h could hang around.
2395
2396 2006-08-29  Eric Blake  <ebb9@byu.net>
2397
2398         * lib/error.c (error_at_line, print_errno_message): Match libc, after
2399         resolution of upstream bug 3044.
2400
2401 2006-08-29  Bruno Haible  <bruno@clisp.org>
2402
2403         * modules/localcharset (Depends-on): Add configmake.
2404         (Makefile.am): Remove setting of LIBDIR through DEFS.
2405
2406 2006-08-29  Bruno Haible  <bruno@clisp.org>
2407
2408         * lib/localcharset.c: Include configmake.h in order to get LIBDIR
2409         defined.
2410
2411 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
2412
2413         * modules/fcntl: New file.
2414         * modules/chdir-safer (Depends-on): Add fcntl.
2415         * modules/fts: Likewise.
2416         * modules/mkdir-p: Likewise.
2417
2418         * modules/stdint (Makefile.am): Do not substitute ABSOLUTE_INTTYPES_H.
2419         This undoes the most recent change, since we're now addressing the
2420         problem in a different way.
2421
2422         * gnulib-tool (emit_lib_Makefile_am): Don't put $makefile_name
2423         into output, since the output might be called Makefile.am even
2424         if $makefile_name is something different.
2425         (func_import): Use $makefile_am rather than
2426         ${makefile_name-Makefile.am}, to fix a bug where makefile_name was
2427         empty.
2428
2429         * modules/inttypes (Files): Add m4/inttypes-h.m4.
2430
2431 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
2432
2433         * m4/inttypes.m4 (gl_INTTYPES_H): Move ABSOLUTE_INTTYPES_H code here...
2434         * m4/stdint.m4 (gl_STDINT_H): ... from here.  This undoes the most
2435         recent change to stdint.m4, since we're now addressing the problem in a
2436         different way.
2437
2438 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
2439
2440         * m4/fcntl_h.m4: New file.
2441
2442 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
2443
2444         * lib/fcntl_.h: New file.
2445         * lib/chdir-safer.c (O_DIRECTORY, O_NOFOLLOW): Remove, now that we have
2446         the fcntl module.
2447         * lib/dirchownmod.c: Likewise.
2448         * lib/fts.c: Likewise.
2449
2450         * lib/inttypes_.h [defined _GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H]:
2451         Include @ABSOLUTE_INTTYPES_H@ if available, but do nothing else.
2452         * lib/stdint_.h (_GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H): Define
2453         just before including <inttypes.h>, to avoid circular inclusion.
2454
2455 2006-08-28  Jim Meyering  <jim@meyering.net>
2456
2457         * doc/visibility.texi: Actually read and correct the grammar of the
2458         sentence affected by yesterday's change.
2459
2460 2006-08-28  Eric Blake  <ebb9@byu.net>
2461
2462         * modules/inttypes (Makefile.am): Fix sed error when inttypes.h
2463         needs wrapper.
2464
2465 2006-08-28  Eric Blake  <ebb9@byu.net>
2466
2467         * m4/inttypes.m4 (gl_INTTYPES_H): Fix missing #endif.
2468
2469 2006-08-28  Eric Blake  <ebb9@byu.net>
2470
2471         * m4/codeset.m4 (AM_LANGINFO_CODESET): Avoid compiler warning.
2472
2473 2006-08-28  Bruno Haible  <bruno@clisp.org>
2474
2475         * modules/c-strstr: New file, from GNU gettext.
2476         * MODULES.html.sh (String handling): Add c-strstr.
2477
2478 2006-08-28  Bruno Haible  <bruno@clisp.org>
2479
2480         * m4/inttypes.m4 (gl_INTTYPES_H): Don't test for the existence of SCNX*
2481         macros.
2482         Reported by Eric Blake.
2483
2484 2006-08-28  Bruno Haible  <bruno@clisp.org>
2485
2486         * lib/vasnprintf.c (EOVERFLOW): Remove definition.
2487         (VASNPRINTF): Return a string of length > INT_MAX without failing.
2488         * lib/vasprintf.c: Include errno.h, limits.h.
2489         (EOVERFLOW): New fallback definition.
2490         (vasprintf): Test here whether the string length is > INT_MAX.
2491         * lib/vsnprintf.c: Include errno.h, limits.h.
2492         (EOVERFLOW): New fallback definition.
2493         (vsnprintf): Fix bug when generated string was too long for the buffer.
2494         Test here whether the string length is > INT_MAX.
2495
2496 2006-08-28  Bruno Haible  <bruno@clisp.org>
2497
2498         * lib/inttypes_.h (SCNX*): Remove definitions.
2499         Reported by Eric Blake.
2500
2501 2006-08-28  Bruno Haible  <bruno@clisp.org>
2502
2503         * lib/c-strstr.h: New file, from GNU gettext.
2504         * lib/c-strstr.c: New file, from GNU gettext.
2505
2506 2006-08-28  Bruno Haible  <bruno@clisp.org>
2507
2508         * gnulib-tool: Reorder some statements.
2509
2510 2006-08-28  Bruno Haible  <bruno@clisp.org>
2511
2512         * gnulib-tool: New option --makefile-name.
2513         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am): Use
2514         $makefile_name.
2515         (func_import): Write $makefile_name to the cache file, and read it from
2516         there unless explicitly specified. Use $makefile_name as file name
2517         instead of Makefile.am. Adjust the recommendations accordingly.
2518
2519 2006-08-28  Bruno Haible  <bruno@clisp.org>
2520
2521         * gnulib-tool (func_verify_module): Check against misapplying patch.
2522
2523 2006-08-28  Bruno Haible  <bruno@clisp.org>
2524
2525         * gnulib-tool (func_relativize, func_relconcat): New functions.
2526         Give an error if --local-dir is given with --update.
2527         Remove trailing slashes from $local_gnulib_dir.
2528         (func_import): Store the relativized $local_gnulib_dir in
2529         gnulib-cache.m4, and read it from there if not specified explicitly.
2530
2531 2006-08-28  Bruno Haible  <bruno@clisp.org>
2532
2533         * gnulib-tool (func_get_tests_module): Don't assume that $gnulib_dir
2534         is the current directory. Respect also $local_gnulib_dir.
2535
2536 2006-08-28  Bruno Haible  <bruno@clisp.org>
2537             Simon Josefsson  <jas@extundo.com>
2538
2539         BeOS portability.
2540         * lib/getaddrinfo.c (PF_INET, PF_UNSPEC): New macros.
2541
2542 2006-08-27  Jim Meyering  <jim@meyering.net>
2543
2544         * doc/visibility.texi: Remove duplicate word: "pointer".
2545
2546 2006-08-26  Bruno Haible  <bruno@clisp.org>
2547
2548         * modules/inttypes (Files): Add lib/inttypes_.h, remove lib/inttypes.h.
2549         Add m4/inttypes.m4, remove m4/_inttypes_h.m4 and m4/include_next.m4.
2550         (Makefile.am): Create inttypes.h from inttypes_.h.
2551         * modules/stdint (Makefile.am): Substitute also ABSOLUTE_INTTYPES_H.
2552
2553         * modules/imaxabs: New file.
2554
2555         * modules/imaxdiv: New file.
2556
2557 2006-08-26  Bruno Haible  <bruno@clisp.org>
2558
2559         * m4/inttypes.m4: New file.
2560         * m4/_inttypes_h.m4: Remove file.
2561         * m4/inttypes-pri.m4 (gt_INTTYPES_PRI): Also AC_SUBST
2562         PRI_MACROS_BROKEN.
2563         * m4/stdint.m4 (gl_STDINT_H): Define also ABSOLUTE_INTTYPES_H.
2564
2565         * m4/imaxabs.m4: New file.
2566
2567         * m4/imaxdiv.m4: New file.
2568
2569 2006-08-26  Bruno Haible  <bruno@clisp.org>
2570
2571         * lib/inttypes_.h: New file.
2572         * lib/inttypes.h: Remove file.
2573         * lib/stdint_.h: Include <inttypes.h> through its absolute filename.
2574
2575         * lib/imaxabs.c: New file.
2576
2577         * lib/imaxdiv.c: New file.
2578
2579 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
2580
2581         New config-h module, so that "make" output needn't be cluttered
2582         by -DHAVE_CONFIG_H.
2583         * MODULES.html.sh (Support for building libraries and executables):
2584         Add config-h.
2585         * modules/config-h: New file.
2586         * gnulib-tool (nl, sed_transform_lib_file): New vars.
2587         (func_import): Turn "#ifdef HAVE_CONFIG_H" to "#if 1" if
2588         the config-h module is used.
2589
2590         New configmake module, so that "make" output needn't be cluttered
2591         by fluff like '-DLIBDIR=\"/usr/local/lib\"'.
2592         * MODULES.html.sh (Support for building libraries and executables):
2593         Add configmake.
2594         * modules/configmake: New file.
2595
2596 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
2597
2598         * m4/config-h.m4: New file.
2599
2600 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
2601
2602         * config/srclist.txt: Add elisp-comp.
2603
2604 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
2605
2606         * MODULES.html.sh (Support for building libraries and executables):
2607         Add elisp-comp.
2608         * build-aux/elisp-comp: New file.
2609         * modules/elisp-comp: New file.
2610
2611 2006-08-24  Bruno Haible <bruno@clisp.org>
2612
2613         * gnulib-tool (func_create_testdir): Use non-default values of
2614         sourcebase and m4base.
2615
2616 2006-08-24  Bruno Haible <bruno@clisp.org>
2617
2618         * MODULES.html.sh (Compatibility checks for POSIX:2001 functions: Fix
2619         HTML structure.
2620
2621 2006-08-23  Paul Eggert  <eggert@cs.ucla.edu>
2622
2623         * modules/openat (Depends-on): Add lchown.
2624
2625 2006-08-23  Bruno Haible <bruno@clisp.org>
2626
2627         * gnulib-tool (func_import, func_create_testdir): Emit an invocation
2628         of gl_LOCK_EARLY instead of gl_LOCK.
2629
2630 2006-08-23  Bruno Haible  <bruno@clisp.org>
2631
2632         * m4/lock.m4 (gl_LOCK_BODY): Change the default value of gl_use_threads
2633         on OSF/1 to no.
2634         Reported by Stephen Cartwright <sgcartwr@ucalgary.ca>.
2635
2636 2006-08-23  Bruno Haible  <bruno@clisp.org>
2637
2638         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Don't consider BeOS statvfs
2639         as unusable.
2640
2641         * m4/lock.m4 (gl_LOCK_EARLY): Renamed from gl_LOCK.
2642         (gl_LOCK_BODY): Remove gl_PREREQ_LOCK invocation.
2643         (gl_LOCK): New macro.
2644
2645 2006-08-22  Simon Josefsson  <jas@extundo.com>
2646
2647         * modules/gc-md5 (Makefile.am): Need to add md5.h, after changes
2648         to md5 module.
2649
2650 2006-08-22  Simon Josefsson  <jas@extundo.com>
2651
2652         * MODULES.html.sh: Add "Support for maintaining and release
2653         projects".
2654
2655         * build-aux/gnupload: New file, from coreutils.
2656
2657 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
2658
2659         Avoid the need for AC_LIBSOURCES in m4 macros.
2660         * modules/arcfour (EXTRA_DIST): Add arcfour.h.
2661         * modules/arctwo (EXTRA_DIST): Add arctwo.h.
2662         * modules/check-version (EXTRA_DIST): Add check-version.h.
2663         * modules/crc (EXTRA_DIST): Add crc.h.
2664         * modules/des (EXTRA_DIST): Add des.h.
2665         * modules/gc (EXTRA_DIST): Add gc.h.
2666         * modules/getdelim (EXTRA_DIST): Add getdelim.h.
2667         * modules/getline (EXTRA_DIST): Add getline.h.
2668         * modules/getlogin_r (EXTRA_DIST): Add getlogin_r.h.
2669         * modules/hmac-md5 (EXTRA_DIST): Add hmac.h.
2670         * modules/hmac-sha1 (EXTRA_DIST): Add hmac.h.
2671         * modules/md2 (EXTRA_DIST): Add md2.h.
2672         * modules/md4 (EXTRA_DIST): Add md4.h.
2673         * modules/pagealign_alloc (EXTRA_DIST): Add pagealign_alloc.h.
2674         * modules/read-file (EXTRA_DIST): Add read-file.h.
2675         * modules/readline (EXTRA_DIST): Add readline.h.
2676         * modules/rijndael (EXTRA_DIST): Add rijndael-alg-fst.h,
2677         rijndael-api-fst.h.
2678
2679 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
2680
2681         * m4/rijndael.m4 (gl_ARCFOUR):
2682         * m4/arctwo.m4 (gl_ARCTWO):
2683         * m4/check-version.m4 (gl_CHECK_VERSION):
2684         * m4/crc.m4 (gl_CRC):
2685         * m4/des.m4 (gl_DES):
2686         * m4/gc-pbkdf2-sha1.m4 (gl_GC_PBKDF2_SHA1):
2687         * m4/gc.m4 (gl_GC):
2688         * m4/getdelim.m4 (gl_FUNC_GETDELIM):
2689         * m4/getline.m4 (gl_FUNC_GETLINE):
2690         * m4/getlogin_r.m4 (gl_GETLOGIN_R_SUBSTITUTE):
2691         * m4/hmac-md5.m4 (gl_HMAC_MD5):
2692         * m4/hmac-sha1.m4 (gl_HMAC_SHA1):
2693         * m4/md2.m4 (gl_MD2):
2694         * m4/md4.m4 (gl_MD4):
2695         * m4/pagealign_alloc.m4 (gl_PAGEALIGN_ALLOC):
2696         * m4/read-file.m4 (gl_FUNC_READ_FILE):
2697         * m4/readline.m4 (gl_FUNC_READLINE):
2698         * m4/rijndael.m4 (gl_RIJNDAEL):
2699         Don't use AC_LIBSOURCES; instead, rely on the files in ../modules/
2700         to get the necessary .h files and whatnot.
2701
2702 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
2703
2704         * config/srclist.txt: Remove gnupload, since coreutils now syncs from
2705         gnulib rather than the other way around.
2706         * config/srclistvars.sh (COREUTILS): Remove.
2707
2708 2006-08-22  Jim Meyering  <jim@meyering.net>
2709
2710         * modules/mkdir-p (Makefile.am): Fix typo: s/lib+SOURCES/lib_SOURCES/.
2711
2712         * modules/getpass-gnu (Makefile.am): Add getpass.h to EXTRA_DIST.
2713
2714 2006-08-22  Eric Blake  <ebb9@byu.net>
2715
2716         * modules/regexprops-generic: New file.
2717         * MODULES.html.sh (Support for building documentation): List it.
2718
2719 2006-08-22  Eric Blake  <ebb9@byu.net>
2720
2721         * m4/stdint_h.m4 (gl_AC_HEADER_STDINT_H): Avoid compiler warning.
2722         * m4/inttypes_h.m4 (gl_AC_HEADER_INTTYPES_H): Likewise.
2723         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Likewise.
2724         * m4/intmax_t.m4 (gt_AC_TYPE_INTMAX_T): Likewise.
2725
2726 2006-08-22  Bruno Haible <bruno@clisp.org>
2727
2728         * gnulib-tool (func_emit_lib_Makefile_am): Don't treat lib_LIBRARIES
2729         and lib_LTLIBRARIES like the other lib_* variables.
2730
2731 2006-08-22  Bruno Haible <bruno@clisp.org>
2732
2733         * build-aux/x-to-1.in: New file, from GNU gettext.
2734
2735 2006-08-22  Bruno Haible  <bruno@clisp.org>
2736
2737         * m4/readutmp.m4 (gl_READUTMP): Compile readutmp.c only if <utmp.h> or
2738         <utmpx.h> exists.
2739
2740 2006-08-22  Bruno Haible  <bruno@clisp.org>
2741
2742         * lib/readutmp.h: Skip most definitions if neither <utmp.h> nor
2743         <utmpx.h> exists.
2744
2745 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
2746
2747         BeOS portability.
2748         * lib/dirchownmod.c (dirchownmod): Don't use fchmod if it doesn't
2749         exist.
2750         Problem reported by Bruno Haible.
2751
2752 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
2753
2754         Avoid the need for AC_LIBSOURCES in m4 macros.
2755         * modules/acl (EXTRA_DIST): Add acl.h.
2756         * modules/argmatch (Files): Add m4/argmatch.m4.
2757         (configure.ac): Add gl_ARGMATCH.
2758         (EXTRA_DIST): Renamed from lib_SOURCES, for
2759         consistency with the other modules.  Remove argmatch.c.
2760         * modules/backupfile (EXTRA_DIST): Add backupfile.h.
2761         * modules/c-strtod (EXTRA_DIST): Add c-strtod.h.
2762         * modules/c-strtold (EXTRA_DIST): Add c-strtod.c, c-strtod.h.
2763         * modules/canonhost (EXTRA_DIST): Add c-canonhost.h.
2764         * modules/canonicalize (EXTRA_DIST): Add canonicalize.h.
2765         * modules/chdir-long (EXTRA_DIST): Add chdir-long.h.
2766         * modules/chdir-safer (EXTRA_DIST): Add chdir-safer.h.
2767         * modules/cloexec (EXTRA_DIST): Add cloexec.h.
2768         * modules/close-stream (EXTRA_DIST): Add close-stream.h.
2769         * modules/closeout (EXTRA_DIST): Add closeout.h.
2770         * modules/cycle-check (EXTRA_DIST): Add cycle-check.h.
2771         * modules/dev-ino (EXTRA_DIST): Add dev-ino.h.
2772         * modules/dirfd (EXTRA_DIST): Add dirfd.h.
2773         * modules/dirname (EXTRA_DIST): Renamed from lib_SOURCES.  Add
2774         dirname.h; remove basename.c and stripslash.c.
2775         * modules/exclude (EXTRA_DIST): Add exclude.h.
2776         * modules/exitfail (EXTRA_DIST): Add exitfail.h.
2777         * modules/fcntl-safer (EXTRA_DIST): Add fcntl-safer.h fcntl--.h.
2778         * modules/file-type (EXTRA_DIST): Add file-type.h.
2779         * modules/filemode (EXTRA_DIST): Add filemode.h.
2780         * modules/filenamecat (EXTRA_DIST): Add filenamecat.h.
2781         * modules/fopen-safer (EXTRA_DIST): Add stdio-safer.h stdio--.h.
2782         * modules/fpending (EXTRA_DIST): Add __fpending.h.
2783         * modules/fprintftime (EXTRA_DIST): Add fprintftime.h.
2784         * modules/fsusage (EXTRA_DIST): Add fsusage.h.
2785         * modules/fts (EXTRA_DIST): Add fts_.h fts-cycle.c.
2786         * modules/getcwd (EXTRA_DIST): Add getcwd.h.
2787         * modules/getdate (EXTRA_DIST): Add getdate.c.
2788         * modules/gethrxtime (EXTRA_DIST): Add gethrxtime.h xtime.h.
2789         * modules/getpagesize (EXTRA_DIST): Add getpagesize.h.
2790         * modules/getpass (EXTRA_DIST): Add getpass.h.
2791         * modules/glob (EXTRA_DIST): Add glob_.h glob-libc.h.
2792         * modules/group-member (EXTRA_DIST): Add group-member.h.
2793         * modules/hard-locale (EXTRA_DIST): Add hard-locale.h.
2794         * modules/hash (EXTRA_DIST): Add hash.h.
2795         * modules/human (EXTRA_DIST): Add human.h.
2796         * modules/inttypes (EXTRA_DIST): Add inttypes.h.
2797         * modules/lchmod (EXTRA_DIST): Add lchmod.h.
2798         * modules/lchown (EXTRA_DIST): Add lchown.h.
2799         * modules/long-options (EXTRA_DIST): Add long-options.h.
2800         * modules/lstat (EXTRA_DIST): Add lstat.h.
2801         * modules/md5 (EXTRA_DIST): Add memcasecmp.h.
2802         * modules/memcoll (EXTRA_DIST): Add memcoll.h.
2803         * modules/mempcpy (EXTRA_DIST): Add mempcpy.h.
2804         * modules/memrchr (EXTRA_DIST): Add memrchr.h.
2805         * modules/memxor (EXTRA_DIST): Add memxor.h.
2806         * modules/mkancesdirs (EXTRA_DIST): Add mkancesdirs.h.
2807         * modules/mkdir-p (EXTRA_DIST): Add modechange.h.
2808         * modules/mountlist (EXTRA_DIST): Add mountlist.h.
2809         * modules/openat (EXTRA_DIST): Add at-func.c openat.h openat-priv.h.
2810         * modules/pathmax (EXTRA_DIST): Add pathmax.h.
2811         * modules/physmem (EXTRA_DIST): Add physmem.h.
2812         * modules/posixtm (EXTRA_DIST): Add posixtm.h.
2813         * modules/posixver (EXTRA_DIST): Add posixver.h.
2814         * modules/quote (EXTRA_DIST): Add quote.h.
2815         * modules/quotearg (EXTRA_DIST): Add quotearg.h.
2816         * modules/readtokens (EXTRA_DIST): Add readtokens.h.
2817         * modules/readutmp (EXTRA_DIST): Add readutmp.h.
2818         * modules/regex (EXTRA_DIST): Add regcomp.c regex.h regex_internal.c
2819         regex_internal.h regexec.c.
2820         * modules/safe-read (EXTRA_DIST): Add safe-read.h.
2821         * modules/safe-write (EXTRA_DIST): Add safe-write.h.
2822         * modules/same (EXTRA_DIST): Add same.h.
2823         * modules/same-inode (EXTRA_DIST): Add same-inode.h.
2824         * modules/save-cwd (EXTRA_DIST): Add save-cwd.h.
2825         * modules/savedir (EXTRA_DIST): Add savedir.h.
2826         * modules/sha1 (EXTRA_DIST): Add sha1.h.
2827         * modules/sig2str (EXTRA_DIST): Add sig2str.h.
2828         * modules/stat-macros (EXTRA_DIST): Add stat-macros.h.
2829         * modules/stat-time (EXTRA_DIST): Add stat-time.h.
2830         * modules/stdlib-safer (EXTRA_DIST): Add stdlib-safer.h stdlib--.h.
2831         * modules/strdup (EXTRA_DIST): Add strdup.h.
2832         * modules/strftime (EXTRA_DIST): Add strftime.h.
2833         * modules/strndup (EXTRA_DIST): Add strndup.h.
2834         * modules/strnlen (EXTRA_DIST): Add strnlen.h.
2835         * modules/strverscmp (EXTRA_DIST): Add strverscmp.h.
2836         * modules/time_r (EXTRA_DIST): Add time_r.h.
2837         * modules/timespec (EXTRA_DIST): Add timespec.h.
2838         * modules/tmpfile-safer (EXTRA_DIST): Add stdio-safer.h stdio--.h.
2839         * modules/unistd-safer (EXTRA_DIST): Add unistd-safer.h unistd--.h.
2840         * modules/unlinkdir (EXTRA_DIST): Add unlinkdir.h.
2841         * modules/unlocked-io (EXTRA_DIST): Add unlocked-io.h.
2842         * modules/userspec (EXTRA_DIST): Add userspec.h.
2843         * modules/utimecmp (EXTRA_DIST): Add utimecmp.h.
2844         * modules/utimens (EXTRA_DIST): Add utimens.h.
2845         * modules/xalloc (EXTRA_DIST): Add xalloc.h.
2846         * modules/xgetcwd (EXTRA_DIST): Add xgetcwd.h.
2847         * modules/xnanosleep (EXTRA_DIST): Add xnanosleep.h.
2848         * modules/xreadlink (EXTRA_DIST): Add xreadlink.h.
2849         * modules/xstrtod (EXTRA_DIST): Add xstrtod.h.
2850         * modules/xstrtol (EXTRA_DIST): Add xstrtol.h.
2851         * modules/xstrtold (EXTRA_DIST): Add xstrtod.c xstrtod.h.
2852         * modules/yesno (EXTRA_DIST): Add yesno.h.
2853
2854 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
2855
2856         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Check for fchmod.
2857
2858         * m4/argmatch.m4: New file, from coreutils with AC_LIBSOURCES removed.
2859         * m4/dev-ino.m4, same-inode.m4: Remove.
2860
2861         * m4/_inttypes_h.m4 (gl_INTTYPES_H):
2862         * m4/acl.m4 (AC_FUNC_ACL):
2863         * m4/backupfile.m4 (gl_BACKUPFILE):
2864         * m4/c-strtod.m4 (gl_C99_STRTOLD):
2865         * m4/canon-host.m4 (gl_CANON_HOST):
2866         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME):
2867         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG):
2868         * m4/chdir-safer.m4 (gl_CHDIR_SAFER):
2869         * m4/cloexec.m4 (gl_CLOEXEC):
2870         * m4/close-stream.m4 (gl_CLOSE_STREAM):
2871         * m4/closeout.m4 (gl_CLOSEOUT):
2872         * m4/dirfd.m4 (gl_FUNC_DIRFD):
2873         * m4/dirname.m4 (gl_DIRNAME):
2874         * m4/exclude.m4 (gl_EXCLUDE):
2875         * m4/exitfail.m4 (gl_EXITFAIL):
2876         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER):
2877         * m4/file-type.m4 (gl_FILE_TYPE):
2878         * m4/filemode.m4 (gl_FILEMODE):
2879         * m4/filenamecat.m4 (gl_FILE_NAME_CONCAT):
2880         * m4/fpending.m4 (gl_FUNC_FPENDING):
2881         * m4/fprintftime.m4 (gl_FPRINTFTIME):
2882         * m4/fts.m4 (gl_FUNC_FTS):
2883         * m4/getcwd.m4 (gl_FUNC_GETCWD_NULL):
2884         * m4/getdate.m4 (gl_GETDATE):
2885         * m4/gethrxtime.m4 (gl_GETHRXTIME):
2886         * m4/getpagesize.m4 (gl_GETPAGESIZE):
2887         * m4/getpass.m4 (gl_FUNC_GETPASS):
2888         * m4/gettime.m4 (gl_GETTIME):
2889         * m4/getugroups.m4 (gl_GETUGROUPS):
2890         * m4/glob.m4 (gl_GLOB_SUBSTITUTE):
2891         * m4/group-member.m4 (gl_FUNC_GROUP_MEMBER):
2892         * m4/hard-locale.m4 (gl_HARD_LOCALE):
2893         * m4/hash.m4 (gl_HASH):
2894         * m4/idcache.m4 (gl_IDCACHE):
2895         * m4/lchmod.m4 (gl_FUNC_LCHMOD):
2896         * m4/lchown.m4 (gl_FUNC_LCHOWN):
2897         * m4/long-options.m4 (gl_LONG_OPTIONS):
2898         * m4/lstat.m4 (gl_FUNC_LSTAT):
2899         * m4/md5.m4 (gl_MD5):
2900         * m4/memcasecmp.m4 (gl_MEMCASECMP):
2901         * m4/memcoll.m4 (gl_MEMCOLL):
2902         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY):
2903         * m4/memrchr.m4 (gl_FUNC_MEMRCHR):
2904         * m4/memxor.m4 (gl_MEMXOR):
2905         * m4/mkancesdirs.m4 (gl_MKANCESDIRS):
2906         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS):
2907         * m4/modechange.m4 (gl_MODECHANGE):
2908         * m4/mountlist.m4 (gl_MOUNTLIST):
2909         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
2910         * m4/openat.m4 (gl_FUNC_OPENAT):
2911         * m4/pathmax.m4 (gl_PATHMAX):
2912         * m4/physmem.m4 (gl_PHYSMEM):
2913         * m4/posixtm.m4 (gl_POSIXTM):
2914         * m4/posixver.m4 (gl_POSIXVER):
2915         * m4/quote.m4 (gl_QUOTE):
2916         * m4/quotearg.m4 (gl_QUOTEARG):
2917         * m4/readtokens.m4 (gl_READTOKENS):
2918         * m4/readutmp.m4 (gl_READUTMP):
2919         * m4/regex.m4 (gl_REGEX):
2920         * m4/safe-read.m4 (gl_SAFE_READ):
2921         * m4/safe-write.m4 (gl_SAFE_WRITE):
2922         * m4/same.m4 (gl_SAME):
2923         * m4/save-cwd.m4 (gl_SAVE_CWD):
2924         * m4/savedir.m4 (gl_SAVEDIR):
2925         * m4/settime.m4 (gl_SETTIME):
2926         * m4/sha1.m4 (gl_SHA1):
2927         * m4/sig2str.m4 (gl_FUNC_SIG2STR):
2928         * m4/stat-macros.m4 (gl_STAT_MACROS):
2929         * m4/stat-time.m4 (gl_STAT_TIME):
2930         * m4/stdio-safer.m4 (gl_FOPEN_SAFER):
2931         * m4/stdlib-safer.m4 (gl_STDLIB_SAFER):
2932         * m4/strdup.m4 (gl_FUNC_STRDUP):
2933         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME):
2934         * m4/strndup.m4 (gl_FUNC_STRNDUP):
2935         * m4/strnlen.m4 (gl_FUNC_STRNLEN):
2936         * m4/strverscmp.m4 (gl_FUNC_STRVERSCMP):
2937         * m4/time_r.m4 (gl_TIME_R):
2938         * m4/timespec.m4 (gl_TIMESPEC):
2939         * m4/unistd-safer.m4 (gl_UNISTD_SAFER):
2940         * m4/unlinkdir.m4 (gl_UNLINKDIR):
2941         * m4/unlocked-io.m4 (gl_FUNC_GLIBC_UNLOCKED_IO):
2942         * m4/userspec.m4 (gl_USERSPEC):
2943         * m4/utimecmp.m4 (gl_UTIMECMP):
2944         * m4/utimens.m4 (gl_UTIMENS):
2945         * m4/xalloc.m4 (gl_XALLOC):
2946         * m4/xgetcwd.m4 (gl_XGETCWD):
2947         * m4/xnanosleep.m4 (gl_XNANOSLEEP):
2948         * m4/xreadlink.m4 (gl_XREADLINK):
2949         * m4/xstrtod.m4 (gl_XSTRTOD):
2950         * m4/yesno.m4 (gl_YESNO):
2951         Don't use AC_LIBSOURCES; instead, rely on the files in ../modules/
2952         to get the necessary .h files and whatnot.
2953
2954 2006-08-21  Mark D. Baushke  <mdb@gnu.org>
2955             Bruno Haible <bruno@clisp.org>
2956
2957         * gnulib-tool (func_verify_module): Work around Sun's non-POSIX 1003.2
2958         /bin/sh understanding of '!' conditional negation.
2959
2960 2006-08-21  Jim Meyering  <jim@meyering.net>
2961
2962         * modules/openat (Depends-on): Really alphabetize.
2963
2964         * modules/acl (Depends-on): Add error and quote.
2965
2966         * check-module (find_included_lib_files): Add at-func.c to the
2967         ok-to-include-more-than-once white list.
2968
2969         * modules/openat (Depends-on): Add lstat.  Alphabetize.
2970
2971 2006-08-21  Bruno Haible <bruno@clisp.org>
2972
2973         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
2974         Emit a pkgdata_DATA variable only if some snippets add contents to it.
2975         Reported by Martin Lambers <marlam@marlam.de>.
2976
2977 2006-08-21  Bruno Haible <bruno@clisp.org>
2978
2979         * gnulib-tool (func_emit_lib_Makefile_am): If the snippets already
2980         specify an installation location, don't emit a noinst_LIBRARIES or
2981         noinst_LTLIBRARIES assignment.
2982
2983 2006-08-21  Bruno Haible  <bruno@clisp.org>
2984
2985         BeOS portability.
2986         * modules/mbchar (Include): Don't test HAVE_WCTYPE_H any more, since
2987         BeOS has mbrtowc() but no <wctype.h>.
2988
2989 2006-08-21  Bruno Haible  <bruno@clisp.org>
2990
2991         BeOS portability.
2992         * m4/mbchar.m4 (gl_MBCHAR): Compile mbchar.c also if <wctype.h> doesn't
2993         exist.
2994
2995 2006-08-21  Bruno Haible  <bruno@clisp.org>
2996
2997         BeOS portability.
2998         * lib/mbchar.h: Include <wctype.h> only if it exists.
2999
3000 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
3001
3002         Remove files that are no longer needed by their respective modules.
3003         * m4/obstack.m4: Remove.
3004         * m4/strerror_r.m4: Remove.
3005         * m4/uint32_t.m4: Remove.
3006         * m4/uintptr_t.m4: Remove.
3007         * m4/ullong_max.m4: Remove.
3008         * m4/xstrtoimax.m4: Remove.
3009         * m4/xstrtoumax.m4: Remove.
3010
3011         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Do not require
3012         gl_AC_TYPE_UINTMAX_T, gl_STRUCT_DEV_INO, or gl_SAME_INODE, since gnulib
3013         dependencies now capture this.
3014
3015         * m4/cycle-check.m4 (gl_CYCLE_CHECK):
3016         Do not use AC_LIBSOURCES, since gnulib modules now do this.
3017         * m4/fsusage.m4 (gl_FSUSAGE): Likewise.
3018         * m4/human.m4 (gl_HUMAN): Likewise.
3019         * m4/inttostr.m4 (gl_INTTOSTR): Likewise.
3020         * m4/xstrtol.m4 (gl_XSTRTOL): Likewise.
3021
3022         * m4/filemode.m4 (gl_FILEMODE): Require AC_STRUCT_ST_DM_MODE.
3023
3024         * m4/filemode.m4 (gl_PREREQ_FSUSAGE_EXTRA): Do not require
3025         gl_AC_TYPE_INTMAX_T or gl_AC_TYPE_UINTMAX_T, since we now require
3026         stdint.
3027         * m4/human.m4 (gl_HUMAN): Likewise.
3028         * m4/inttostr.m4 (gl_PREREQ_INTTOSTR): Likewise.
3029         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Likewise.
3030         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Likewise.
3031         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Likewise.
3032         * m4/xstrtol (gl_XSTRTOL): Likewise.
3033
3034         * m4/gethrxtime.m4 (gl_XTIME): gl_AC_TYPE_LONG_LONG ->
3035         AC_TYPE_LONG_LONG_INT.
3036         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Likewise.
3037         * m4/strtoll.m4 (gl_FUNC_STRTOLL): Likewise.
3038         * m4/strtoull.m4 (gl_FUNC_STRTOULL): Likewise, for unsigned long.
3039         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Likewise.
3040
3041         * m4/human.m4 (gl_HUMAN): Do not require AM_STDBOOL_H since we depend
3042         on stdbool.
3043
3044         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL_H, gl_PREREQ_XSTRTOL): Remove.
3045         (gl_PREREQ_XSTRTOUL): Remove.
3046
3047         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Check for hasmntopt.
3048
3049         * m4/posixver.m4: Fix comment since head -1 now works even in POSIX
3050         mode.
3051
3052 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
3053
3054         Add and change modules to make it easier for coreutils to use
3055         gnulib-tool.
3056         * modules/backupfile (Files): Remove m4/d-ino.m4.
3057         (Depends-on): Add d-ino.
3058         * modules/cycle-check (Depends-on): Add stdint.
3059         (lib_SOURCES): Add cycle-check.h.
3060         * modules/d-ino: New module.
3061         * modules/d-type: New module.
3062         * modules/error (Files): Remove m4/strerror_r.m4.
3063         * modules/filemode (Files): Add m4/st_dm_mode.m4.
3064         * modules/fsuage (Files): Remove m4/ulonglong.m4, m4/stdint_h.m4,
3065         m4/inttypes_h.m4, m4/uintmax_t.m4.
3066         (Depends-on): Add stdint.
3067         (lib_SOURCES): Add fsusage.h.
3068         * modules/getcwd (Files): Remove d-ino.m4.
3069         (Depends-on): Add d-ino.
3070         * modules/getndelim2 (Depends-on): Add stdint.
3071         * modules/glob (Files): Remove m4/d-type.m4.
3072         (Depends-on): Add d-type.
3073         * modules/host-os: New module.
3074         * modules/human (Files):  Remove m4/ulonglong.m4, m4/stdint_h.m4,
3075         m4/inttypes_h.m4, m4/uintmax_t.m4.
3076         * Depends-on: Add stdint.
3077         (lib_SOURCES): Add human.h.
3078         * modules/inttostr (Files): Remove m4/intmax_t.m4,
3079         m4/inttostr.m4, m4/inttypes_h.m4, m4/longlong.m4, m4/stdint_h.m4,
3080         m4/uintmax_t.m4, m4/ulonglong.m4.
3081         (Depends-on): Add stdint.
3082         (EXTRA_DIST): Add inttostr.h.
3083         * modules/lchmod: New module.
3084         * modules/link-follow: New module.
3085         * modules/mkdir-p (Files): Remove lib/lchmod.h, m4/lchmod.m4.
3086         (Depends-on): Add lchmod.
3087         * modules/mkstemp (Files): Remove m4/ulonglong.m4,
3088         m4/stdint_h.m4, m4/inttypes_h.m4, m4/uintmax_t.m4.
3089         (Depends-on): Add stdint.
3090         * modules/obstack (Files): Remove m4/inttypes_h.m4, m4/obstack.m4,
3091         m4/stdint_h.m4, m4/uintmax_t.m4, m4/ulonglong.m4.
3092         (Depends-on): Add stdint.
3093         (configure.ac): Change gl_OBSTACK to AC_FUNC_OBSTACK.
3094         * modules/perl: New module.
3095         * modules/regex (Depends-on): Add stdint.
3096         * modules/rmdir-errno: New module.
3097         * modules/strtoimax (Files): Remove m4/stdint_h.m4, m4/inttypes_h.m4,
3098         m4/intmax_t.m4.
3099         (Depends-on): Add stdint.
3100         * modules/strtoumax (Files): Remove m4/stdint_h.m4, m4/inttypes_h.m4,
3101         m4/uintmax_t.m4.
3102         (Depends-on): Add stdint.
3103         * modules/unlink-busy: New module.
3104         * modules/utimecmp (Depends-on): Add stdint.
3105         * modules/uptime: New module.
3106         * modules/winsz-ioctl: New module.
3107         * modules/winsz-termios: New module.
3108         * modules/xnanosleep (Depends-on): Add nanosleep.
3109         * modules/ullong_max: Remove.
3110         * modules/xstrtoimax (Files): Remove m4/xstrtoimax.m4.
3111         (configure.ac): Remove gl_XSTRTOIMAX; no action needed now.
3112         * modules/xstrtol (Files): Remove m4/ulonglong.m4, m4/longlong.m4,
3113         m4/stdint_h.m4, m4/inttypes_h.m4, m4/uintmax_t.m4, m4/intmax_t.m4.
3114         (Depends-on): Add inttypes.
3115         (lib_SOURCES): Add xstrtol.h.
3116         * modules/xstrtoumax (Files): Remove m4/xstrtoumax.m4.
3117         (configure.ac): Remove gl_XSTRTOUMAX; no action needed now.
3118         * MODULES.html.sh: Move 'assert' into the assert section.
3119         Move 'dummy' into the linking section.
3120         Remove ullong_max.
3121         Add section for compatibility checks for POSIX:2001 functions,
3122         and put d-ino, d-type, link-follow, rmdir-errno, unlink-busy,
3123         winsz-ioctl, and winsz-termios into it.
3124         Add lchmod.
3125         Add top-level Misc section and put host-os, perl, and uptime
3126         into it.
3127
3128 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
3129
3130         * lib/cycle-check.h: Include <stdint.h> unconditionally, since we
3131         now assume the stdint module.  Do not include inttypes.h.
3132         * lib/fsusage.h: Likewise.
3133         * lib/getndelim2.c: Likewise.
3134         * lib/human.h: Likewise.
3135         * lib/inttostr.h: Likewise.
3136         * lib/obstack.c: Likewise.
3137         * lib/regex_internal.h: Likewise.
3138         * lib/tempname.c: Likewise.
3139         * lib/utimecmp.c: Likewise.
3140         * lib/xstrtol.h: Likewise.
3141
3142         * lib/stat_.h: Fix typo: HAVE_FUNC_LSTAT -> HAVE_LSTAT.
3143
3144         * lib/strtoimax.c: Adjust to macro name changes in Autoconf,
3145         e.g., HAVE_LONG_LONG -> HAVE_LONG_LONG_INT.
3146         * lib/xtime.h: Likewise.
3147
3148 2006-08-19  Paul Eggert  <eggert@cs.ucla.edu>
3149
3150         * modules/openat (Files): Add lib/fchmodat.c.
3151         Fixes problem reported by Jay Youngman.
3152
3153 2006-08-19  Paul Eggert  <eggert@cs.ucla.edu>
3154
3155         * lib/fchmodat.c: New file, from coreutils.  This was inadvertently
3156         omitted in the 2006-08-17 update.  Problem reported by Jay Youngman.
3157
3158 2006-08-18  Paul Eggert  <eggert@cs.ucla.edu>
3159             Bruno Haible  <bruno@clisp.org>
3160
3161         * m4/bison-i18n.m4 (BISON_I18N): Also handle the case where yacc exists
3162         and is a script that invokes bison. Tighten the code. Add comments.
3163
3164 2006-08-18  Jim Meyering  <jim@meyering.net>
3165
3166         * m4/gethrxtime.m4 (gl_PREREQ_GETHRXTIME): Also check for
3167         CLOCK_REALTIME, since gethrxtime may revert to using clock_gettime via
3168         gettime.c.  Gabor Z. Papp reported that gethrxtime-using programs
3169         failed to link due to unresolved clock_gettime on a linux-2.4.x system.
3170
3171 2006-08-18  Bruno Haible  <bruno@clisp.org>
3172
3173         * modules/bison-i18n: New file.
3174         * MODULES.html.sh (Internationalization functions): Add it.
3175
3176 2006-08-18  Bruno Haible  <bruno@clisp.org>
3177
3178         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Also check for
3179         sys/statvfs.h. When getmntinfo was found, check its declaration and
3180         set either MOUNTED_GETMNTINFO or MOUNTED_GETMNTINFO2 depending on it.
3181
3182 2006-08-18  Bruno Haible  <bruno@clisp.org>
3183
3184         * m4/bison-i18n.m4: New file, from bison.
3185
3186 2006-08-18  Bruno Haible  <bruno@clisp.org>
3187
3188         * lib/mountlist.c [MOUNTED_GETMNTINFO2]: Include sys/statvfs.h.
3189         (ME_DUMMY): Treat "kernfs" as a dummy.
3190         (read_file_system_list) [MOUNTED_GETMNTINFO2]: Implement.
3191
3192 2006-08-17  Paul Eggert  <eggert@cs.ucla.edu>
3193
3194         Update from coreutils.
3195
3196         2006-08-15  Jim Meyering  <jim@meyering.net>
3197
3198         * m4/openat.m4 (gl_FUNC_OPENAT): Add at-func.c via AC_LIBSOURCES.
3199
3200         2006-01-17  Jim Meyering  <jim@meyering.net>
3201
3202         * m4/fts.m4 (gl_FUNC_FTS_CORE): Depend on gl_FUNC_OPENAT.
3203
3204         2006-01-11  Jim Meyering  <jim@meyering.net>
3205
3206         * m4/openat.m4 (gl_FUNC_OPENAT): Require and compile fchmodat.c.
3207         Check for the lchmod function.
3208
3209 2006-08-17  Paul Eggert  <eggert@cs.ucla.edu>
3210
3211         Update from coreutils.
3212
3213         * lib/__fpending.h: Add copyright notice.
3214         * lib/fprintftime.h: Likewise.
3215         * lib/savedir.c: Use (C) in copyright notice.
3216         * lib/savedir.h: Likewise.
3217
3218         2006-08-15  Jim Meyering  <jim@meyering.net>
3219
3220         * lib/at-func.c: New file, with the logic of all emulated at-functions.
3221         * lib/openat-priv.h: Include <errno.h> and define ENOSYS,
3222         in support of the EXPECTED_ERRNO macro.
3223         * lib/openat.c (fstatat, unlinkat, fchownat): Remove function
3224         definitions.  Instead, define the appropriate symbols and include
3225         "at-func.c".
3226         * lib/mkdirat.c (mkdirat): Likewise.
3227         * lib/fchmodat.c (fchmodat): Likewise.
3228         (ENOSYS): Remove definition.
3229         * lib/openat.c: Don't include <errno.h>, now that "openat-priv.h" does
3230         it.  Don't include "unistd--.h" -- it wasn't ever used.
3231
3232         2006-01-17  Jim Meyering  <jim@meyering.net>
3233
3234         Rewrite fts.c not to change the current working directory,
3235         by using openat, fstatat, fdopendir, etc..
3236
3237         * lib/fts.c [! _LIBC]: Include "openat.h" and "unistd--.h".
3238         (HAVE_OPENAT_SUPPORT): Define.
3239         [_LIBC] (fchdir): Don't undef or define; no longer used.
3240         (FCHDIR): Define in terms of cwd_advance_fd rather than fchdir.
3241         Now, this `function' always succeeds, and consumes its file descriptor
3242         parameter -- so callers must not close such FDs.  Update callers.
3243         (diropen_fd, opendirat, cwd_advance_fd): New functions.
3244         (diropen): Add parameter, SP.  Adjust all callers.
3245         Implement using diropen_fd, rather than open.
3246         (fts_open): Initialize new member, fts_cwd_fd.
3247         Remove fts_rft-setting code.
3248         (fts_close): Close fts_cwd_fd, if necessary.
3249         (__opendir2): Define in terms of opendir or opendirat,
3250         depending on whether the FST_NOCHDIR flag is set.
3251         (fts_build): Since fts_safe_changedir consumes its FD, and since
3252         this code must do `closedir(dirp)', dup the dirfd(dirp) argument,
3253         and close the dup'd file descriptor upon failure.
3254         (fts_stat): Use fstatat(...AT_SYMLINK_NOFOLLOW) in place of lstat.
3255         (fts_safe_changedir): Tweak semantics to reflect that this function
3256         now calls cwd_advance_fd and hence consumes its FD argument.
3257         * lib/fts_.h [struct FTS] (fts_cwd_fd): New member.
3258         [struct FTS] (fts_rft): Remove now-unused member.
3259         [struct FTS] (fts_cycle.state): Improve comment.
3260
3261         * lib/openat.c (openat_needs_fchdir): New function.
3262         * lib/openat.h (openat_needs_fchdir): Declare it.
3263
3264 2006-08-16  Paul Eggert  <eggert@cs.ucla.edu>
3265
3266         * lib/memcoll.c (memcoll): Set errno = 0 in the shortcut case, too.
3267         Problem and fix reported by Pádraig Brady in
3268         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00099.html>.
3269
3270 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
3271
3272         * modules/cycle-check (configure.ac): Add gl_CYCLE_CHECK.
3273
3274 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
3275
3276         * lib/memcoll.c (memcoll): Optimize for the common case where the
3277         arguments are bytewise equal.
3278
3279 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
3280
3281         * doc/regexprops-generic.texi: Add a copyright notice.
3282
3283 2006-08-15  Bruno Haible  <bruno@clisp.org>
3284
3285         * modules/tmpdir (License): Change to LGPL.
3286
3287 2006-08-15  Bruno Haible  <bruno@clisp.org>
3288
3289         * gnulib-tool (func_all_modules, func_verify_module): COPYING is not a
3290         module.
3291
3292 2006-08-14  Simon Josefsson  <jas@extundo.com>
3293
3294         * config/srclist.txt: Add gnupload.
3295
3296 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
3297
3298         Change copyright notice from LGPL 2 to GPL 2, since that's the
3299         standard form used in the gnulib repository.
3300         * tests/test-lock.c: Likewise.
3301         * tests/test-stdint.c: Likewise.
3302         * tests/test-tls.c: Likewise.
3303
3304         * users.txt: Add bison, diffutils, libprelude, prelude-lml,
3305         prelude-manager.  User shorter URLs for GNU projects, without '?'.
3306         Add copyright notice.
3307
3308         * check-module: Add copyright notice.  Output a copyright
3309         notice if "--version" is specified.
3310         * modules/COPYING: New file.
3311         * tests/test-getaddrinfo.c: Add copyright notice.
3312         * tests/test-verify.c: Likewise.
3313
3314 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
3315
3316         Change copyright notice from LGPL 2 to GPL 2, since that's the
3317         standard form used in the gnulib repository.
3318         * lib/lock.c: LGPL -> GPL.
3319         * lib/lock.h: Likewise.
3320         * lib/strnlen1.c: Likewise.
3321         * lib/strnlen1.h: Likewise.
3322         * lib/tls.c: Likewise.
3323         * lib/tls.h: Likewise.
3324         * lib/tmpdir.c: Likewise.
3325
3326         * lib/TODO: Remove; this belongs only in coreutils.
3327
3328 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
3329
3330         Add copyright notices to long-enough files that lack them, since
3331         otherwise the files aren't clearly free.  Use the same notice that
3332         getdate.texi already uses.
3333         * doc/alloca-opt.texi: Add copyright notice.
3334         * doc/alloca.texi: Likewise.
3335         * doc/ctime.texi: Likewise.
3336         * doc/functions.texi: Likewise.
3337         * doc/gcd.texi: Likewise.
3338         * doc/gnulib-tool.texi: Likewise.
3339         * doc/inet_ntoa.texi: Likewise.
3340         * doc/visibility.texi: Likewise.
3341
3342         * doc/getdate.texi: Update FDL version from 1.1 to 1.2.
3343         * doc/quote.texi: Add copyright notice.
3344
3345         * doc/solaris-versions: Add SunOS 5.10, SunOS 1.x, SunOS 4.0, SunOS
3346         4.0.x, SunOS 4.1.1.1, SunOS 4.1.1_U1, SunOS 4.1.3B.  SunOS 4.1.3
3347         was Solaris 1.1A.  Remove space before B in Solaris 1.1.1B.
3348         Mention SunOS 5.11.  Mention that everything before SunOS 5.7
3349         is now obsolete, and give a pointer to the Sun list.
3350         Add copyright notice.
3351
3352 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
3353
3354         * config/srclistvars.sh: Add copyright notice.
3355
3356 2006-08-14  Eric Blake  <ebb9@byu.net>
3357
3358         Import the following change from libc:
3359
3360         2006-08-12  Ulrich Drepper  <drepper@redhat.com>
3361
3362         Upstream bug 2997.
3363         * lib/misc/error.c: Add space between program name and message if file
3364         name is missing.
3365
3366 2006-08-12  Karl Berry  <karl@gnu.org>
3367
3368         * config/srclist.txt (ssize_t.m4, sig_atomic_t.m4, signalblocking.m4):
3369         remove, these originate in gnulib now.
3370
3371 2006-08-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3372
3373         * doc/Makefile (standards.info standards.html standards.dvi):
3374         Also depend on make-stds.texi.
3375
3376 2006-08-11  Paul Eggert  <eggert@cs.ucla.edu>
3377
3378         * lib/pipe-safer.c (pipe_safer): Fix misspelling: HAVE_FUNC_PIPE ->
3379         HAVE_PIPE.  Fix a file descriptor leak when fd_safer fails.
3380
3381         * lib/regex_internal.c (re_string_skip_chars): Don't assume WEOF fits
3382         in wchar_t.  Problem reported by Eric Blake.
3383
3384         * lib/snprintf.c (snprintf): memcpy LEN bytes, not SIZE - 1, when
3385         LEN is smaller than SIZE.  Suggested by Bruno Haible.
3386         Also, help the compiler to keep LEN in a register.
3387
3388 2006-08-11  Eric Blake  <ebb9@byu.net>
3389
3390         * users.txt: Sort.  Add tar.
3391
3392 2006-08-11  Bruno Haible  <bruno@clisp.org>
3393
3394         * users.txt: New file.
3395
3396 2006-08-11  Bruno Haible  <bruno@clisp.org>
3397
3398         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Include <stdio.h> and <time.h>
3399         before <wchar.h>. Needed for OSF/1 and BSD/OS.
3400
3401 2006-08-10  Paul Eggert  <eggert@cs.ucla.edu>
3402
3403         * modules/snprintf (Depends-on): Remove minmax.
3404         (Maintainer): Add self and Bruno.
3405
3406 2006-08-10  Paul Eggert  <eggert@cs.ucla.edu>
3407
3408         * lib/.cppi-disable: Add snprintf.h, socket_.h.
3409         * lib/snprintf.c: Include <errno.h> and <limits.h>.
3410         (EOVERFLOW): Define if the system does not.
3411         Do not include "minmax.h"; it wasn't used.
3412         (snprintf): Don't assume size_t promotes to an unsigned type.
3413         Fix bug when generated string was too long for the buffer: the
3414         buffer's contents are supposed to be the initial prefix of the
3415         output.  Don't assume vasnprintf returns EOVERFLOW if the size
3416         exceeds INT_MAX; do the check ourselves.
3417
3418         Import the following changes from libc:
3419
3420         2006-06-02  Jakub Jelinek  <jakub@redhat.com>
3421
3422         * lib/posix/regex_internal.c (re_string_skip_chars): If no character
3423         has been converted at all, set *last_wc to WEOF.  If mbrtowc failed,
3424         set wc to the byte which couldn't be converted.
3425         (re_string_reconstruct): Don't clear valid_raw_len before calling
3426         re_string_skip_chars.  If wc is WEOF after re_string_skip_chars, set
3427         tip_context using re_string_context_at.
3428
3429         2006-05-02  Ulrich Drepper  <drepper@redhat.com>
3430
3431         * lib/posix/regex.h: g++ still cannot handled [restrict].
3432
3433         2006-04-21  Ulrich Drepper  <drepper@redhat.com>
3434
3435         * lib/posix/regex.h: Remove special handling for VMS.
3436
3437 2006-08-10  Jim Meyering  <jim@meyering.net>
3438
3439         * modules/same-inode: New module.
3440         * modules/dev-ino: New module.
3441         * modules/cycle-check: Depend on these modules, rather than simply
3442         including their .h files.
3443         (Makefile.am): Don't list cycle-check.[ch] here, now that they're
3444         required via m4/cycle-check.m4.
3445         * modules/same: Depend on new same-inode module, rather than
3446         including same-inode.h.
3447         * modules/chdir-safer: New file.
3448
3449         * modules/chown (Depends-on): Add stat-macros.
3450
3451 2006-08-10  Jim Meyering  <jim@meyering.net>
3452
3453         * m4/cycle-check.m4: New file.
3454         Require gl_STRUCT_DEV_INO and gl_SAME_INODE.
3455         * m4/dev-ino.m4, same-inode.m4: New files.
3456
3457 2006-08-10  Eric Blake  <ebb9@byu.net>
3458
3459         * modules/verror (Depends-on): Remove bogus gl_VERROR that snuck
3460         in from original proposal.
3461
3462 2006-08-10  Eric Blake  <ebb9@byu.net>
3463         and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3464
3465         * gnulib-tool (func_import): Detect unexpanded macros in gnulib
3466         namespace.
3467
3468 2006-08-10  Bruno Haible  <bruno@clisp.org>
3469
3470         * gnulib-tool (func_create_testdir): Detect unexpanded macros here
3471         as well.
3472
3473 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
3474
3475         Sync from coreutils.
3476
3477         2006-07-19  Mike Frysinger  <vapier@gentoo.org>
3478
3479         * lib/mountlist.c [ME_REMOTE]: Filter out cifs.
3480         Reported by Toralf Förster in <http://bugs.gentoo.org/141012>.
3481
3482 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
3483
3484         * modules/restrict: Remove; no longer needed now that we assume
3485         Autoconf 2.59 or later.
3486         * MODULES.html.sh: Remove 'restrict'.
3487         * modules/argp (Depends-on): Remove 'restrict'.
3488         * modules/base64 (Depends-on): Likewise.
3489         * modules/gc (Depends-on): Likewise.
3490         * modules/getaddrinfo (Depends-on): Likewise.
3491         * modules/glob (Depends-on): Likewise.
3492         * modules/inet_ntop (Depends-on): Likewise.
3493         * modules/inet_pton (Depends-on): Likewise.
3494         * modules/memxor (Depends-on): Likewise.
3495         * modules/regex (Depends-on): Likewise.
3496         * modules/strtok_r (Depends-on): Likewise.
3497         * modules/time_r (Depends-on): Likewise.
3498
3499 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
3500
3501         * m4/argp.m4 (gl_ARGP): Require AC_C_RESTRICT.
3502         * m4/gc.m4 (gl_PREREQ_GC): Likewise.
3503         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
3504         * m4/inet_ntop.m4 (gl_PREREQ_INET_NTOP): Likewise.
3505         * m4/inet_pton.m4 (gl_PREREQ_INET_PTON): Likewise.
3506         * m4/memxor.m4 (gl_MEMXOR): Likewise.
3507         * m4/restrict.m4: Remove; no longer needed.  All remaining uses of
3508         gl_C_RESTRICT replaced by AC_C_RESTRICT.
3509
3510         Merge from coreutils.
3511         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_C_RESTRICT, not
3512         gl_C_RESTRICT, now that we assume Autoconf 2.59 or later.
3513         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
3514         * m4/time_r.m4 (gl_TIME_R): Likewise.
3515
3516 2006-08-09  Karl Berry  <karl@gnu.org>
3517
3518         * config/srclist.txt: no more gettext-tools, per Bruno.
3519
3520 2006-08-08  Eric Blake  <ebb9@byu.net>
3521
3522         * modules/verror: New module.
3523         * MODULES.html.sh: Document it.
3524
3525 2006-08-08  Eric Blake  <ebb9@byu.net>
3526
3527         * lib/verror.h, verror.c: New files.
3528
3529 2006-08-08  Eric Blake  <ebb9@byu.net>
3530
3531         * lib/verror.c (verror_at_line): Work around glibc bug 2997, so that
3532         verror_at_line output complies with GNU Coding Standards even when
3533         file is NULL.
3534
3535 2006-08-07  Bruno Haible  <bruno@clisp.org>
3536
3537         * lib/allocsa.h (sa_alignof) [_AIX]: Also consider 'long long' in newer
3538         versions of AIX.
3539         Reported by Ralf Wildenhues.
3540
3541 2006-08-07  Bruno Haible  <bruno@clisp.org>
3542
3543         * gnulib-tool (func_create_testdir): Wrap the set of autoconf snippets
3544         in an AC_DEFUN. Needed so that the autoconf snippets can use
3545         AC_REQUIRE.
3546
3547 2006-08-06  Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3548
3549         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
3550         Initialize pkgdata_DATA.
3551         * modules/javaversion (Makefile.am): Add to pkgdata_DATA, rather than
3552         overriding it.
3553
3554 2006-08-06  Eric Blake  <ebb9@byu.net>
3555
3556         * lib/error.h: Fold in some upstream changes from glibc.
3557         * lib/error.c: Likewise.
3558
3559 2006-08-04  Bruno Haible  <bruno@clisp.org>
3560
3561         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
3562         Make the mostlyclean-local rule depend on mostlyclean-generic.
3563         Reported by Jim Meyering. Solution suggested by Ralf Wildenhues.
3564
3565 2006-07-31  Bruno Haible  <bruno@clisp.org>
3566
3567         * m4/localcharset.m4 (gl_LOCALCHARSET): Remove tests for <stddef.h>,
3568         <stdlib.h>, <string.h>.
3569
3570 2006-07-30  Bruno Haible  <bruno@clisp.org>
3571
3572         * modules/readlink (License): Change to LGPL.
3573
3574 2006-07-30  Bruno Haible  <bruno@clisp.org>
3575
3576         * modules/javaversion (Makefile.am): Distribute javaversion.java and
3577         javaversion.class. Also install javaversion.class in $(pkgdatadir) and
3578         set PKGDATADIR to point to it.
3579
3580 2006-07-30  Bruno Haible  <bruno@clisp.org>
3581
3582         * modules/csharpexec (configure.ac): Comment out macro invocation.
3583         * modules/javaexec (configure.ac): Likewise.
3584         * modules/javacomp-script (configure.ac): Likewise.
3585
3586         * modules/csharpcomp-script (configure.ac): Use AC_REQUIRE.
3587
3588 2006-07-30  Bruno Haible  <bruno@clisp.org>
3589
3590         * modules/clean-temp (Depends-on): Add linkedhash-list, remove
3591         linked-list.
3592
3593 2006-07-30  Bruno Haible  <bruno@clisp.org>
3594
3595         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Assume <string.h> exists.
3596
3597 2006-07-30  Bruno Haible  <bruno@clisp.org>
3598
3599         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
3600         Initialize MOSTLYCLEANFILES to core and *.stackdump, so that core dumps
3601         get removed.
3602
3603 2006-07-29  Bruno Haible  <bruno@clisp.org>
3604
3605         Make it possible for gnulib-tool to work with locally modified or
3606         augmented gnulib repositories.
3607         * gnulib-tool (func_usage): Document --local-dir option.
3608         (local_gnulib_dir): New variable.
3609         Handle --local-dir option.
3610         (func_lookup_file): New function.
3611         (func_all_modules, func_verify_module): Look also in $local_gnulib_dir.
3612         (func_get_description, func_get_filelist, func_get_description,
3613         func_get_filelist, func_get_dependencies, func_get_autoconf_snippet,
3614         func_get_automake_snippet, func_get_include_directive,
3615         func_get_license, func_get_maintainer): Use func_lookup_file.
3616         (func_import, func_create_testdir): Use func_lookup_file.
3617
3618 2006-07-29  Bruno Haible  <bruno@clisp.org>
3619
3620         * modules/setenv (Depends-on): Add unistd.
3621
3622 2006-07-29  Bruno Haible  <bruno@clisp.org>
3623
3624         * lib/setenv.c: Undo unintended modification done on 2006-02-27.
3625
3626 2006-07-29  Bruno Haible  <bruno@clisp.org>
3627
3628         * lib/localcharset.c: Assume <stddef.h>, <stdlib.h>, <string.h> exist.
3629
3630 2006-07-29  Bruno Haible  <bruno@clisp.org>
3631
3632         * gnulib-tool (import, update): If there is no Makefile.am, look at
3633         aclocal.m4, instead of bailing out.
3634
3635 2006-07-29  Bruno Haible  <bruno@clisp.org>
3636
3637         * gnulib-tool (func_usage): Revert most of the 2006-07-15 change.
3638         Categorize the options by when they are useful.
3639
3640 2006-07-29  Bruno Haible  <bruno@clisp.org>
3641
3642         * gnulib-tool (func_usage): Document option --no-libtool.
3643         Handle option --no-libtool.
3644         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am): Update
3645         for changed semantics of $libtool variable.
3646         (func_import): Likewise. If libtool is not used, show this through
3647         an option --no-libtool.
3648         (func_create_testdir): Update.
3649
3650 2006-07-29  Bruno Haible  <bruno@clisp.org>
3651
3652         * gnulib-tool (func_import): Extend error message about missing
3653         --doc-base.
3654
3655 2006-07-29  Bruno Haible  <bruno@clisp.org>
3656
3657         * gnulib-tool (func_import): Don't create the $docbase directory if
3658         there is no file to store there.
3659
3660 2006-07-29  Bruno Haible  <bruno@clisp.org>
3661
3662         * gnulib-tool (autoconf_minversion): If a --dir option is given and
3663         relevant, look for configure.ac there, not in the current directory.
3664         Also use a simple search for AC_PREREQ, not "autoconf --trace".
3665
3666 2006-07-29  Bruno Haible  <bruno@clisp.org>
3667
3668         * gnulib-tool (SORT): New variable.
3669         (func_usage): Undocument --assume-autoconf option.
3670         Remove --assume-autoconf option handling.
3671         (autoconf_minversion): Determine from the contents of configure.ac.
3672         (func_import): Remove autoconf_minversion handling.
3673         Suggested by Eric Blake.
3674
3675 2006-07-29  Bruno Haible  <bruno@clisp.org>
3676
3677         * doc/gnulib-tool.texi (gl_LIBTOOL): Mention --no-libtool option.
3678
3679 2006-07-29  Bruno Haible  <bruno@clisp.org>
3680
3681         * config/srclist.txt (*setenv.[ch]): Remove rules.
3682
3683 2006-07-28  Yoann Vandoorselaere <yoann.v@prelude-ids.com>
3684
3685         * m4/inet_pton.m4, inet_ntop.m4: Check for netinet/in.h too.
3686
3687 2006-07-28  Yoann Vandoorselaere <yoann.v@prelude-ids.com>
3688
3689         * lib/inet_ntop.h, inet_pton.h: Need to include netinet/in.h before
3690         arpa/inet.h.
3691
3692 2006-07-28  Simon Josefsson  <jas@extundo.com>
3693
3694         * modules/inet_ntop (Depends-on): Depend on arpa_inet.
3695         * modules/inet_pton (Depends-on): Likewise.
3696
3697 2006-07-28  Simon Josefsson  <jas@extundo.com>
3698
3699         * m4/netinet_in_h.m4: New file.
3700
3701 2006-07-28  Simon Josefsson  <jas@extundo.com>
3702
3703         * lib/inet_ntop.h, inet_pton.h: No need to guard netinet/in.h
3704         #include's.
3705
3706 2006-07-28  Simon Josefsson  <jas@extundo.com>
3707
3708         * lib/inet_ntop.h, inet_pton.h: No need to guard arpa/inet.h
3709         #include's.
3710
3711 2006-07-28  Paul Eggert  <eggert@cs.ucla.edu>
3712
3713         * lib/modechange.c (mode_compile): Numeric modes now affect setuid and
3714         setgid on directories only if they set these bits.
3715         * lib/modechange.h: Remove obsolete comment about masks.
3716
3717 2006-07-28  Eric Blake  <ebb9@byu.net>
3718
3719         * lib/regex_internal.h (struct re_dfa_t) [!_LIBC]: Avoid invalid C89
3720         macro expansion.
3721
3722 2006-07-28  Bruno Haible <bruno@clisp.org>
3723
3724         * lib/inet_ntop.h, inet_pton.h: Use #if HAVE* instead of #ifdef HAVE*.
3725
3726 2006-07-28  Bruno Haible  <bruno@clisp.org>
3727
3728         * m4/mbchar.m4 (gl_MBCHAR): Also test for iswcntrl.
3729
3730 2006-07-28  Bruno Haible  <bruno@clisp.org>
3731
3732         * lib/mbchar.h (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit,
3733         iswgraph, iswlower, iswprint, iswpunct, iswspace, iswupper, iswxdigit):
3734         Define fallbacks.
3735         Avoids link error on FreeBSD 4.x.
3736         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
3737
3738         * lib/wcwidth.h (iswprint): Assume an ASCII compatible wide character
3739         encoding.
3740         * lib/mbswidth.c (iswcntrl): Likewise.
3741
3742 2006-07-27  Bruno Haible  <bruno@clisp.org>
3743
3744         * m4/stdint.m4 (gl_STDINT_H): Define __STDC_CONSTANT_MACROS during the
3745         test.
3746
3747 2006-07-27  Bruno Haible  <bruno@clisp.org>
3748
3749         * lib/stdint_.h (INT*_C, UINT*_C) [C++]: Define these if
3750         __STDC_CONSTANT_MACROS is defined, not if __STDC_LIMIT_MACROS is
3751         defined.
3752
3753 2006-07-26  Eric Blake  <ebb9@byu.net>
3754
3755         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Check for missing pipe.
3756
3757 2006-07-26  Eric Blake  <ebb9@byu.net>
3758
3759         * lib/mkstemp-safer.c [! HAVE_MKSTEMP]: Add prototype for platforms
3760         like mingw that lack mkstemp.
3761         * lib/pipe-safer.c (pipe_safer) [!HAVE_FUNC_PIPE]: Provide fallback to
3762         avoid compilation warning on mingw.
3763
3764 2006-07-26  Bruno Haible  <bruno@clisp.org>
3765
3766         * m4/stdint.m4 (gl_STDINT_H): Also verify the existence of the macros
3767         INT*_MIN, INT_LEAST*_MAX, INT_LEAST*_MIN, UINT_LEAST*_MAX,
3768         INT_FAST*_MIN, INTPTR_MIN.
3769
3770 2006-07-25  Bruno Haible  <bruno@clisp.org>
3771
3772         * modules/version-etc (Depends-on): Add stdarg.
3773
3774 2006-07-25  Bruno Haible  <bruno@clisp.org>
3775
3776         * m4/stdint.m4 (gl_INTEGER_TYPE_SUFFIX): Avoid 'eval' in front of
3777         complex commands.
3778
3779 2006-07-25  Bruno Haible  <bruno@clisp.org>
3780
3781         * lib/version-etc.c (version_etc_va): Use va_copy, assumed to be
3782         defined in <stdarg.h> or config.h.
3783
3784 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
3785
3786         * m4/stdio-safer.m4 (gl_FOPEN_SAFER, gl_TMPFILE_SAFER): New macros.
3787         (gl_STDIO_SAFER): Remove.
3788
3789 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
3790
3791         * MODULES.html.sh (File stream based Input/Output):
3792         Add fopen-safer, tmpfile-safer; remove stdio-safer.
3793         * modules/getusershell (Depends-on): Change stdio-safer to fopen-safer.
3794         * modules/fopen-safer, modules/tmpfile-safer: New files.
3795         * modules/stdio-safer: Remove.
3796
3797 2006-07-24  Bruno Haible  <bruno@clisp.org>
3798
3799         * modules/tmpdir: New file.
3800         * MODULES.html.sh (File system functions): Add it.
3801
3802 2006-07-24  Bruno Haible  <bruno@clisp.org>
3803
3804         * modules/javacomp (Depends-on): Add unistd, javaversion, binary-io,
3805         getline, pathname, fwriteerror, clean-temp, xvasprintf, strstr.
3806
3807 2006-07-24  Bruno Haible  <bruno@clisp.org>
3808
3809         * modules/clean-temp: New file.
3810
3811 2006-07-24  Bruno Haible  <bruno@clisp.org>
3812
3813         * m4/tmpdir.m4: New file, from GNU gettext.
3814
3815 2006-07-24  Bruno Haible  <bruno@clisp.org>
3816
3817         * lib/tmpdir.h: New file, from GNU gettext.
3818         * lib/tmpdir.c: New file, from GNU gettext.
3819
3820 2006-07-24  Bruno Haible  <bruno@clisp.org>
3821
3822         * lib/clean-temp.h: New file, from GNU gettext.
3823         * lib/clean-temp.c: New file, from GNU gettext.
3824
3825 2006-07-23  Eric Blake  <ebb9@byu.net>
3826
3827         * modules/stdio-safer (Files): Add tmpfile-safer.c.
3828         (Depends-on): Add binary-io.
3829
3830 2006-07-23  Eric Blake  <ebb9@byu.net>
3831
3832         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Add tmpfile-safer.c.
3833
3834 2006-07-23  Eric Blake  <ebb9@byu.net>
3835
3836         * lib/tmpfile-safer.c: New file.
3837         * lib/stdio-safer.h (fopen_safer): Add prototype.
3838         * lib/stdio--.h (tmpfile): Make safer.
3839
3840 2006-07-23  Bruno Haible  <bruno@clisp.org>
3841
3842         * lib/gl_anylinked_list2.h (ASYNCSAFE): New macro.
3843         (gl_linked_add_first, gl_linked_add_last, gl_linked_add_before,
3844         gl_linked_add_after, gl_linked_add_at, gl_linked_remove_node,
3845         gl_linked_remove_at): Use it.
3846
3847 2006-07-22  Yoann Vandoorselaere <yoann.v@prelude-ids.com>
3848         and Simon Josefsson <jas@extundo.com>
3849
3850         * lib/getaddrinfo.h (AI_PASSIVE): Make sure it is defined.
3851
3852         * lib/getaddrinfo.c (getaddrinfo): Support AI_PASSIVE.
3853
3854 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
3855
3856         * modules/close-stream: New file.
3857         * modules/closeout (Description): Make it clear that it exits
3858         with a diagnostic on error.
3859         (Depends-on): Add close-stream.  Remove fpending, stdbool.
3860         * MODULES.html.sh (File stream based Input/Output): Add close-stream.
3861
3862 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
3863
3864         * m4/close-stream.m4: New file.
3865
3866 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
3867
3868         * lib/close-stream.c, close-stream.h: New files.
3869
3870 2006-07-22  Bruno Haible  <bruno@clisp.org>
3871
3872         Merge from GNU gettext 0.15.
3873
3874         2006-05-01  Bruno Haible  <bruno@clisp.org>
3875
3876                 * build-aux/javacomp.sh.in: Update for changed javacomp.m4.
3877
3878         2006-07-22  Bruno Haible  <bruno@clisp.org>
3879
3880                 * modules/javaversion: New file.
3881                 * MODULES.html.sh (Java): Add javaversion.
3882
3883         2006-03-12  Bruno Haible  <bruno@clisp.org>
3884
3885                 * build-aux/javaexec.sh.in: Update for changed javaexec.m4.
3886
3887         2005-12-04  Bruno Haible  <bruno@clisp.org>
3888
3889                 * build-aux/csharpexec.sh.in: Add support for 'clix' launcher
3890                 (untested).
3891
3892         2006-06-21  Bruno Haible  <bruno@clisp.org>
3893
3894                 Avoid warnings from recent versions of mcs.
3895                 * build-aux/csharpcomp.sh.in (options_mcs): Don't use options
3896                 -o, -L, -r any more. Use options documented since mcs-1.0
3897                 instead. Similarly for -g.
3898
3899         2005-12-04  Bruno Haible  <bruno@clisp.org>
3900
3901                 * build-aux/csharpcomp.sh.in: Suffix for resources is
3902                 .resources, not .resource.
3903
3904         2005-07-09  Bruno Haible  <bruno@clisp.org>
3905
3906                 * build-aux/csharpcomp.sh.in (options_csc): For -l option,
3907                 add a .dll suffix.
3908                 Reported by Mark Junker <mjscod@gmx.de>.
3909
3910         2006-07-22  Bruno Haible  <bruno@clisp.org>
3911
3912                 * modules/gettext: Upgrade to gettext-0.15.
3913                 (Files): Remove m4/isc-posix.m4. Add m4/lock.m4,
3914                 m4/visibility.m4.
3915                 Replace m4/inttypes.m4 with m4/inttypes-h.m4.
3916
3917 2006-07-22  Bruno Haible  <bruno@clisp.org>
3918
3919         Merge from GNU gettext 0.15.
3920
3921         2006-03-25  Bruno Haible  <bruno@clisp.org>
3922
3923                 * lib-link.m4 (AC_LIB_LINKFLAGS_FROM_LIBS): New macro.
3924
3925         2006-07-21  Bruno Haible  <bruno@clisp.org>
3926
3927                 * javacomp.m4 (gt_JAVACOMP): Convert target_version "null" to
3928                 "1.1".
3929
3930         2006-05-09  Bruno Haible  <bruno@clisp.org>
3931
3932                 * javacomp.m4 (gt_JAVACOMP): On Cygwin, set
3933                 CLASSPATH_SEPARATOR to a semicolon. Use CLASSPATH_SEPARATOR
3934                 for the conftestver execution.
3935
3936         2006-05-01  Bruno Haible  <bruno@clisp.org>
3937
3938                 * javacomp.m4 (gt_JAVACOMP): Accept a source-version and an
3939                 optional target-version argument. Verify that the compiler
3940                 groks source of the specified source-version, or add -source
3941                 option as necessary. Verify that the compiler produces
3942                 bytecode in the specified target-version, or add -target and
3943                 -source options as necessary. Make the result of the test
3944                 available as variable CONF_JAVAC. Also log error output in
3945                 config.log.
3946
3947         2006-03-11  Bruno Haible  <bruno@clisp.org>
3948
3949                 * javacomp.m4 (gt_JAVACOMP): Treat gcj-4.x like gcj-3.x.
3950
3951         2006-05-09  Bruno Haible  <bruno@clisp.org>
3952
3953                 * javaexec.m4 (gt_JAVAEXEC): On Cygwin, set
3954                 CLASSPATH_SEPARATOR to a semicolon.
3955
3956         2006-03-12  Bruno Haible  <bruno@clisp.org>
3957
3958                 * javaexec.m4 (gt_JAVAEXEC): Make the result of the test
3959                 available as variable CONF_JAVA, for subsequent autoconf
3960                 tests. Also log error output in config.log.
3961
3962         2006-07-19  Bruno Haible  <bruno@clisp.org>
3963
3964                 * getline.m4 (AM_FUNC_GETLINE): When cross-compiling, assume
3965                 that getline works on glibc2 systems. Needed to avoid trouble
3966                 in relocatable.c.
3967                 Reported by Nils Magnus Larsgard <nmlarsgaard@atmel.no>.
3968
3969         2005-12-04  Bruno Haible  <bruno@clisp.org>
3970
3971                 * csharpexec.m4 (gt_CSHARPEXEC): Add support for 'clix'
3972                 launcher (untested).
3973
3974         2005-12-04  Bruno Haible  <bruno@clisp.org>
3975
3976                 * csharpcomp.m4 (gt_CSHARPCOMP): Also set CSHARPCOMPFLAGS.
3977
3978         2006-07-22  Bruno Haible  <bruno@clisp.org>
3979
3980                 * gettext.m4: Update from GNU gettext-0.15.
3981                 * nls.m4: Likewise.
3982                 * po.m4: Likewise.
3983                 * inttypes-pri.m4: Likewise.
3984                 * inttypes-h.m4: Renamed from inttypes.m4.
3985                 (gl_HEADER_INTTYPES_H): Renamed from gt_HEADER_INTTYPES_H.
3986
3987 2006-07-22  Bruno Haible  <bruno@clisp.org>
3988
3989         Merge from GNU gettext 0.15.
3990
3991         2005-07-05  Bruno Haible  <bruno@clisp.org>
3992
3993                 * printf-args.c (printf_fetchargs): Work around broken
3994                 definition of wint_t on mingw.
3995
3996         2005-02-12  Bruno Haible  <bruno@clisp.org>
3997
3998                 * xallocsa.h: Add extern "C" for C++.
3999
4000         2006-05-17  Bruno Haible  <bruno@clisp.org>
4001
4002                 Cygwin portability.
4003                 * progreloc.c (WIN32_NATIVE): Renamed from WIN32.
4004
4005         2006-04-30  Bruno Haible  <bruno@clisp.org>
4006
4007                 * progreloc.c: Include <mach-o/dyld.h> if available.
4008                 (find_executable): Use _NSGetExecutablePath when possible.
4009
4010         2006-05-06  Charles Wilson  <cygwin@cwilson.fastmail.fm>
4011
4012                 * progreloc.c (maybe_executable) [CYGWIN]: Use the access()
4013                 function.
4014
4015         2005-12-29  Bruno Haible  <bruno@clisp.org>
4016
4017                 * progreloc.c (set_program_name_and_installdir): Fix
4018                 compilation error.
4019
4020         2005-12-04  Bruno Haible  <bruno@clisp.org>
4021
4022                 Cygwin portability.
4023                 * progreloc.c: Include <windows.h> also on Cygwin.
4024                 (find_executable): Add support for Cygwin.
4025                 (set_program_name_and_installdir): Handle also platforms with
4026                 nonempty EXEEXT.
4027
4028         2006-07-11  Bruno Haible  <bruno@clisp.org>
4029
4030                 * javacomp.c: Fix a comment.
4031                 Reported by Jim Meyering.
4032
4033         2006-04-30  Bruno Haible  <bruno@clisp.org>
4034
4035                 * javacomp.h (compile_java_class): Add source_version,
4036                 target_version arguments.
4037                 * javacomp.c: Rewritten to choose only a compiler that
4038                 respects the specified source_version and target_version.
4039
4040         2006-06-27  Bruno Haible  <bruno@clisp.org>
4041
4042                 Assume correct S_ISDIR macro.
4043                 * mkdtemp.c: Remove test of STAT_MACROS_BROKEN.
4044
4045         2006-07-22  Bruno Haible  <bruno@clisp.org>
4046
4047                 * javaversion.h: New file, from GNU gettext.
4048                 * javaversion.c: New file, from GNU gettext.
4049                 * javaversion.java: New file, from GNU gettext.
4050                 * javaversion.class: New file, from GNU gettext.
4051
4052         2006-05-17  Bruno Haible  <bruno@clisp.org>
4053
4054                 Cygwin portability.
4055                 * javaexec.c (execute_java_class): Test for jview program
4056                 also on Cygwin.
4057
4058         2006-04-09  Bruno Haible  <bruno@clisp.org>
4059
4060                 * fatal-signal.c: Don't include string.h.
4061                 (at_fatal_signal): Use a copying loop instead of memcpy.
4062
4063         2005-12-04  Bruno Haible  <bruno@clisp.org>
4064
4065                 * csharpexec.c: Add support for 'clix' launcher (untested).
4066                 (execute_csharp_using_sscli): New function.
4067                 (execute_csharp_program): Call it.
4068
4069         2006-06-21  Bruno Haible  <bruno@clisp.org>
4070
4071                 Avoid warnings from recent versions of mcs.
4072                 * csharpcomp.c (compile_csharp_using_mono): Don't use options
4073                 -o, -L, -r any more. Use options documented since mcs-1.0
4074                 instead. Similarly for -g.
4075
4076         2005-07-09  Bruno Haible  <bruno@clisp.org>
4077
4078                 * csharpcomp.c (compile_csharp_using_sscli): For -l option,
4079                 add a .dll suffix.
4080                 Reported by Mark Junker <mjscod@gmx.de>.
4081
4082         2006-06-17  Bruno Haible  <bruno@clisp.org>
4083
4084                 * config.charset: Update for NetBSD 3.0.
4085
4086         2006-05-17  Bruno Haible  <bruno@clisp.org>
4087
4088                 Cygwin portability.
4089                 * localcharset.c (WIN32_NATIVE): Renamed from WIN32.
4090
4091         2006-05-16  Bruno Haible  <bruno@clisp.org>
4092
4093                 * localcharset.c [CYGWIN]: Include <windows.h>.
4094                 (get_charset_aliases): For Cygwin, return the same CPxxx
4095                 aliases list as under WIN32.
4096                 (locale_charset) [CYGWIN]: Try to retrieve the encoding from
4097                 the environment variables. Fall back to GetACP().
4098
4099         2006-04-05  Bruno Haible  <bruno@clisp.org>
4100
4101                 * config.charset: Update Juan Manuel Guerrero's address.
4102
4103         2005-02-12  Bruno Haible  <bruno@clisp.org>
4104
4105                 * allocsa.h: Add extern "C" for C++.
4106
4107         2005-02-10  Bruno Haible  <bruno@clisp.org>
4108
4109                 * allocsa.h (sa_alignof): Define differently with AIX xlc, to
4110                 avoid a bug of this compiler on AIX 3.2.5 dealing with enums.
4111
4112         2006-07-22  Bruno Haible  <bruno@clisp.org>
4113
4114                 * gettext.h: Update to GNU gettext-0.15.
4115
4116 2006-07-22  Bruno Haible  <bruno@clisp.org>
4117
4118         * config/srclist.txt: Resync printf-args.c, vasnprintf.c,
4119         localcharset.c, mkdtemp.c, config.rpath, lib-ld.m4, lib-link.m4,
4120         lib-prefix.m4, longdouble.m4, ssize_t.m4.
4121
4122 2006-07-21  Eric Blake  <ebb9@byu.net>
4123
4124         * modules/stdlib-safer: New file.
4125         * MODULES.html.sh (File stream based Input/Output): Add
4126         stdlib-safer.
4127
4128 2006-07-21  Eric Blake  <ebb9@byu.net>
4129
4130         * lib/stdlib-safer.h: New file from coreutils, required by
4131         stdlib--.h.
4132
4133 2006-07-20  Paul Eggert  <eggert@cs.ucla.edu>
4134
4135         * gnulib-tool (func_usage): Document --assume-autoconf='latest-stable'.
4136
4137 2006-07-20  Bruno Haible  <bruno@clisp.org>
4138
4139         * gnulib-tool: Recognize new option --assume-autoconf.
4140         (autoconf_minversion): New variable.
4141         (func_get_filelist): Use it to decide whether to add onceonly_2_57.m4.
4142
4143 2006-07-20  Bruno Haible  <bruno@clisp.org>
4144
4145         * MODULES.html.sh (func_all_modules): Add a missing func_begin_table.
4146
4147 2006-07-19  Derek R. Price  <derek@ximbiot.com>
4148
4149         * lib/getaddrinfo.h: Don't define unimplemented AI_* flags.
4150         Reindent and repaginate.
4151
4152 2006-07-19  Derek Price  <derek@ximbiot.com>
4153
4154         * doc/gnulib.texi (Libtool and Windows):  Eliminate passive voice.
4155         Correct grammar.
4156
4157 2006-07-17  Bruno Haible  <bruno@clisp.org>
4158
4159         * modules/list: New file.
4160         * modules/array-list: New file.
4161         * modules/carray-list, modules/carray-list-tests: New files.
4162         * modules/linked-list, modules/linked-list-tests: New files.
4163         * modules/avltree-list, modules/avltree-list-tests: New files.
4164         * modules/rbtree-list, modules/rbtree-list-tests: New files.
4165         * modules/linkedhash-list, modules/linkedhash-list-tests: New files.
4166         * modules/avltreehash-list, modules/avltreehash-list-tests: New files.
4167         * modules/rbtreehash-list, modules/rbtreehash-list-tests: New files.
4168         * modules/oset: New file.
4169         * modules/array-oset: New file.
4170         * modules/avltree-oset, modules/avltree-oset-tests: New files.
4171         * modules/rbtree-oset, rbtree-oset-tests: New files.
4172         * tests/test-carray_list.c: New file.
4173         * tests/test-linked_list.c: New file.
4174         * tests/test-avltree_list.c: New file.
4175         * tests/test-rbtree_list.c: New file.
4176         * tests/test-linkedhash_list.c: New file.
4177         * tests/test-avltreehash_list.c: New file.
4178         * tests/test-rbtreehash_list.c: New file.
4179         * tests/test-avltree_oset.c: New file.
4180         * tests/test-rbtree_oset.c: New file.
4181         * MODULES.html.sh (Container data structures): New section.
4182
4183 2006-07-17  Bruno Haible  <bruno@clisp.org>
4184
4185         * m4/gl_list.m4: New file.
4186
4187 2006-07-17  Bruno Haible  <bruno@clisp.org>
4188
4189         * lib/gl_list.h: New file.
4190         * lib/gl_list.c: New file.
4191         * lib/gl_array_list.h: New file.
4192         * lib/gl_array_list.c: New file.
4193         * lib/gl_carray_list.h: New file.
4194         * lib/gl_carray_list.c: New file.
4195         * lib/gl_linked_list.h: New file.
4196         * lib/gl_linked_list.c: New file.
4197         * lib/gl_anylinked_list1.h: New file.
4198         * lib/gl_anylinked_list2.h: New file.
4199         * lib/gl_avltree_list.h: New file.
4200         * lib/gl_avltree_list.c: New file.
4201         * lib/gl_anyavltree_list1.h: New file.
4202         * lib/gl_anyavltree_list2.h: New file.
4203         * lib/gl_rbtree_list.h: New file.
4204         * lib/gl_rbtree_list.c: New file.
4205         * lib/gl_anyrbtree_list1.h: New file.
4206         * lib/gl_anyrbtree_list2.h: New file.
4207         * lib/gl_anytree_list1.h: New file.
4208         * lib/gl_anytree_list2.h: New file.
4209         * lib/gl_linkedhash_list.h: New file.
4210         * lib/gl_linkedhash_list.c: New file.
4211         * lib/gl_anyhash_list1.h: New file.
4212         * lib/gl_anyhash_list2.h: New file.
4213         * lib/gl_avltreehash_list.h: New file.
4214         * lib/gl_avltreehash_list.c: New file.
4215         * lib/gl_rbtreehash_list.h: New file.
4216         * lib/gl_rbtreehash_list.c: New file.
4217         * lib/gl_anytreehash_list1.h: New file.
4218         * lib/gl_anytreehash_list2.h: New file.
4219
4220         * lib/gl_oset.h: New file.
4221         * lib/gl_oset.c: New file.
4222         * lib/gl_array_oset.h: New file.
4223         * lib/gl_array_oset.c: New file.
4224         * lib/gl_avltree_oset.h: New file.
4225         * lib/gl_avltree_oset.c: New file.
4226         * lib/gl_rbtree_oset.h: New file.
4227         * lib/gl_rbtree_oset.c: New file.
4228         * lib/gl_anytree_oset.h: New file.
4229
4230 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
4231
4232         * m4/mkancesdirs.m4: New file.
4233         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Mention dirchownmod.c,
4234         dirchownmod.h.  Don't require AC_FUNC_ALLOCA, gl_AFS, gl_CHDIR_SAFER;
4235         no longer needed.  Require gl_FUNC_LCHOWN, since dirchownmod.c needs
4236         it.
4237
4238 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
4239
4240         * lib/dirchownmod.c, dirchownmod.h, mkancesdirs.c, mkancesdirs.h:
4241         New files.
4242         * lib/mkdir-p.c: Don't include alloca.h, stdio.h, sys/types.h,
4243         unistd.h, string.h, chdir-safer.h, dirname.h, lchmod.h, lchown.h,
4244         save-cwd.h.  Instead, include dirchownmod.h and mkancesdirs.h.
4245         (make_dir_parents): New args MAKE_ANCESTOR, OPTIONS, ANNOUNCE,
4246         MODE_BITS.  Remove options VERBOSE_FMT_STRING, CWD_ERRNO.  All
4247         callers changed.  Revamp internals significantly, by not
4248         attempting to create directories that are temporarily more
4249         permissive than the final results.  Do not attempt to use
4250         save_cwd/restore_cwd; it isn't worth it for mkdir and install.
4251         This removes some race conditions, fixes some bugs, and simplifies
4252         things.  Use new dirchownmod function to do owner and mode changes.
4253         * lib/mkdir-p.h: Likewise.
4254         * lib/modechange.c (octal_to_mode): New function.
4255         (struct mode_change): New member mentioned.
4256         (make_node_op_equals): New arg mentioned.  All callers changed.
4257         (mode_compile): Keep track of which mode bits the user has explicitly
4258         mentioned.
4259         (mode_adjust): New arg DIR, so that we implement the X op correctly.
4260         New arg PMODE_BITS, to keep track of which mode bits the user
4261         mentioned; it treats S_ISUID and S_ISGID speciall.
4262         All callers changed.
4263         * lib/modechange.h: Likewise.
4264
4265 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
4266
4267         * MODULES.html.sh: Add mkancestors.
4268         * modules/mkancesdirs: New module.
4269         * modules/mkdir-p (Files): Remove lib/chdir-safer.c, lib/chdir-safer.h,
4270         lib/same-inode.h, m4/afs.m4, m4/chdir-safer.m4.
4271         The chdir-safer and afs files are now orphans; I'll remove them
4272         unless someone speaks up.
4273         Add lib/dirchownmod.c, lib/dirchownmod.h.
4274         (Depends-on): Remove alloca, chown, save-cwd, dirname.
4275         Add lchown, mkancesdirs.
4276         (Maintainer): Add self.
4277
4278 2006-07-15  Karl Berry  <karl@gnu.org>
4279
4280         * gnulib-tool: help message wording/arrangement.
4281
4282 2006-07-14  Simon Josefsson  <jas@extundo.com>
4283
4284         * doc/gnulib.texi (Libtool and Windows): New section.
4285
4286 2006-07-12  Simon Josefsson  <jas@extundo.com>
4287
4288         * modules/gendocs (License): Fix license, approved by Karl.
4289
4290 2006-07-12  Eric Blake  <ebb9@byu.net>
4291
4292         * MODULES.html.sh: Add gendocs.
4293
4294 2006-07-11  Eric Blake  <ebb9@byu.net>
4295
4296         * modules/fdl: New module, to install doc/fdl.texi.
4297         * MODULES.html.sh: Add new section for documentation modules.
4298         * gnulib-tool: Avoid space-tab.
4299         (--doc-base): New option, to manage files from doc.
4300
4301 2006-07-11  Eric Blake  <ebb9@byu.net>
4302
4303         * m4/absolute-header.m4: Fix comments to match recent change.
4304
4305 2006-07-11  Eric Blake  <ebb9@byu.net>
4306
4307         * gnulib-tool: List --doc-base before --tests-base.
4308
4309 2006-07-11  Derek R. Price  <derek@ximbiot.com>
4310
4311         * lib/glob.c: s/NAMLEN/_D_EXACT_NAMLEN/.
4312
4313 2006-07-11  Bruno Haible  <bruno@clisp.org>
4314
4315         * README: Mention where to put documentation.
4316
4317 2006-07-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4318
4319         * doc/functions.texi, gnulib-tool.texi, gnulib.texi: Fix some typos.
4320
4321 2006-07-10  Paul Eggert  <eggert@cs.ucla.edu>
4322
4323         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Like today's change
4324         to stdint.m4.
4325
4326 2006-07-10  Paul Eggert  <eggert@cs.ucla.edu>
4327
4328         * m4/stdint.m4 (gl_STDINT_H): Like yesterday's change to
4329         absolute-header.m4.  Also, set ABSOLUTE_STDINT_H to a string
4330         "no/such/file/stdint.h" when there is no such file, so that
4331         the resulting C code can be parsed by dodgy compilers.
4332         Problems reported by Bob Proulx.
4333
4334 2006-07-10  Derek R. Price  <derek@ximbiot.com>
4335
4336         * lib/backupfile.c, dirfd.h, fts.c, getcwd.c, glob.c, glob_.h:
4337         Ignore the obsolescent !HAVE_DIRENT_H case.  Consolidate NAMLEN
4338         macros into the GNU _D_EXACT_NAMLEN.
4339         * lib/savedir.c:  Likewise.
4340         (savedirstream): Use _D_EXACT_NAMLEN in preference to strlen.
4341
4342 2006-07-10  Derek R. Price  <derek@ximbiot.com>
4343         and Paul Eggert  <eggert@cs.ucla.edu>
4344
4345         * m4/backupfile.m4, d-ino.m4, d-type.m4, dirfd.m4, fts.m4, getcwd.m4:
4346         * m4/savedir.m4:
4347         Ignore the obsolescent !HAVE_DIRENT_H case.  Consolidate NAMLEN
4348         macros into the GNU _D_EXACT_NAMLEN.
4349
4350 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
4351
4352         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Use "" rather than <>
4353         around the absolute name, to work around a problem with the HP-UX
4354         11.23 native C compiler, reported by Bob Proulx.
4355
4356 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
4357
4358         * doc/maintain.texi, make-stds.texi: Sync from
4359         <http://savannah.gnu.org/projects/gnustandards>.
4360
4361 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
4362
4363         * build-aux/depcomp, build-aux/install-sh: Sync from Automake.
4364
4365 2006-07-09  Jim Meyering  <jim@meyering.net>
4366
4367         * m4/glob.m4: Remove a doubled word in a comment.
4368
4369 2006-07-09  Jim Meyering  <jim@meyering.net>
4370
4371         * lib/argp-pv.c: Remove a doubled word in a comment.
4372         * lib/check-version.c (check_version): Likewise.
4373         * lib/javacomp.c (compile_java_class): Likewise.
4374
4375 2006-07-08  Paul Eggert  <eggert@cs.ucla.edu>
4376
4377         * gnulib-tool (func_get_filelist): Don't echo m4/onceonly_2_57.m4,
4378         for the benefit of people using Autoconf 2.60.  If you want to
4379         support older Autoconf versions you can copy m4/onceonly_2_57.m4
4380         (or m4/onceonly.m4, if pre-2.57) manually.
4381
4382 2006-07-08  Jim Meyering  <jim@meyering.net>
4383
4384         * m4/link-follow.m4: Remove one of two adjacent "whether"s in a
4385         comment.
4386         * m4/getopt.m4: Remove one of two adjacent "your"s in a comment.
4387         * m4/regex.m4 (gl_REGEX): Remove one of two adjacent "the"s in a
4388         comment.
4389
4390 2006-07-08  Jim Meyering  <jim@meyering.net>
4391
4392         * lib/getndelim2.h (getndelim2): Remove doubled "after" in comment.
4393
4394 2006-07-07  Simon Josefsson  <jas@extundo.com>
4395
4396         * tests/test-crc.c: Change expected crc value, the test vector
4397         were probably computed using the old broken crc.c?
4398
4399 2006-07-06  Simon Josefsson  <jas@extundo.com>
4400
4401         * modules/sys_socket (Files): Add m4/sockpfaf.m4 (this module is
4402         now the canonical place for the M4 file).
4403
4404         * modules/getaddrinfo (Files): Remove m4/sockpfaf.m4, we get it
4405         from the sys_socket dependency now.
4406
4407         * modules/inet_pton (Files): Ditto.
4408
4409         * modules/inet_ntop (Files): Ditto.
4410
4411 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
4412
4413         * modules/getusershell (configure.ac): Use gl_FUNC_GETUSERSHELL,
4414         not gl_PREREQ_GETUSERSHELL.
4415
4416 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4417
4418         * m4/_inttypes_h.m4 (gl_INTTYPES_H): Use AC_CHECK_DECLS_ONCE
4419         with only one argument, for Autoconf 2.60.
4420         * m4/fileblocks.m4 (gl_PREREQ_FILEBLOCKS): AC_CHECK_DECLS_ONCE may
4421         expand to nothing, so add a shell command to avoid syntax error.
4422         * m4/getpass.m4 (gl_PREREQ_GETPASS): Likewise.
4423
4424 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4425
4426         * lib/strtod.c (strtod): cast the argument of tolower to unsigned char.
4427
4428 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
4429
4430         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Don't check for getenv decl;
4431         no longer needed.  Check for isblank decl.
4432         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Don't check for getenv decl.
4433         * m4/regex.m4 (gl_PREREQ_REGEX): Dheck for isblank decl instead
4434         of existence.
4435
4436 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
4437
4438         * lib/getloadavg.c: Use __VMS, not VMS.
4439         * lib/getopt.c: Likewise.
4440         * lib/getpagesize.h: Likewise.
4441         * lib/glob.c: Remove most VMS cruft; it hasn't been tested for a while
4442         and probably does not work.
4443
4444 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
4445
4446         * lib/.cppi-disable: Add wcwidth.
4447         * lib/fnmatch.c (ISBLANK): Remove.  All uses changed to isblank.
4448         (isblank) [! (defined isblank || HAVE_DECL_ISBLANK)]: New macro.
4449         (ISGRAPH): Remove.  All uses changed to isgraph.
4450         (FOLD) [!defined _LIBC]: Remove special case.
4451         * lib/getdate.y (lookup_word): Remove no-longer-needed call to islower.
4452         * lib/regex_internal.h (isblank): Depend on HAVE_DECL_ISBLANK, not
4453         HAVE_ISBLANK.
4454         * lib/strftime.c (TOLOWER, TOUPPER) [!defined _LIBC]: Remove special
4455         case.
4456
4457 2006-07-06  Jim Hyslop  <jhyslop@dreampossible.ca>  (tiny change)
4458
4459         * lib/getaddrinfo.c: Changes to compile under MSVC6: changed
4460         '#if WIN32_NATIVE' to '#ifdef' & moved WSAAPI macro inside
4461         brackets.  Other minor changes to suppress some compiler
4462         warnings.
4463
4464 2006-07-06  Derek R. Price  <derek@ximbiot.com>
4465         and Paul Eggert  <eggert@cs.ucla.edu>
4466
4467         * m4/backupfile.m4 (gl_BACKUPFILE): Check for dirent.h, instead
4468         of invoking obsolescent AC_HEADER_DIRENT macro.
4469         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Likewise.
4470         * m4/d-type.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Likewise.
4471         * m4/dirfd.m4 (gl_FUNC_DIRFD): Likewise.
4472         * m4/fts.m4 (gl_FUNC_FTS_CORE): Likewise.
4473         * m4/getcwd.m4 (gl_PREREQ_GETCWD): Likewise.
4474         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
4475         * m4/savedir.m4 (gl_SAVEDIR): Likewise.
4476         * m4/readdir.m4: Remove; no longer needed.
4477
4478 2006-07-06  Derek R. Price  <derek@ximbiot.com>
4479         and Paul Eggert  <eggert@cs.ucla.edu>
4480
4481         * lib/backupfile.c [HAVE_DIRENT_H && ! HAVE_NDIR_H]:
4482         Don't worry about this obsolete case any more.
4483         (HAVE_DIR): Remove.  All uses removed; we now assume you can read
4484         directories.
4485         * lib/dirfd.h [HAVE_DIRENT_H && ! HAVE_NDIR_H]: Don't
4486         worry about this obsolete case any more.
4487         * lib/fts.c: Likewise.
4488         * lib/getcwd.c: Likewise.
4489         * lib/glob.h: Likewise.
4490         * lib/savedir.c: Likewise.
4491
4492 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
4493
4494         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Use AC_CHECK_DECLS_ONCE
4495         rather than AC_CHECK_DECLS for strtoimax and strtoumax.
4496         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Remove; no longer
4497         needed.
4498         All uses removed.
4499         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
4500         * m4/strtoul.m4 (gl_PREREQ_STRTOUL): Likewise.
4501         * m4/exclude.m4 (gl_EXCLUDE): Don't check for isascii; no longer
4502         needed.
4503         * m4/getdate.m4 (gl_GETDATE): Likewise.
4504         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Likewise.
4505         * m4/memcasecmp.m4 (gl_MEMCASECMP): Likewise.
4506         * m4/strtod.m4 (gl_FUNC_STRTOD): Likewise.
4507         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
4508         * m4/strtoul.m4 (gl_PREREQ_STRTOUL): Likewise.
4509         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
4510         * m4/exclude.m4 (gl_EXCLUDE): Don't require AC_C_INLINE; no longer
4511         needed.
4512
4513 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
4514
4515         * lib/memcasecmp.c: Include <limits.h>.
4516         (memcasecmp): Don't assume UCHAR_MAX <= INT_MAX.
4517         * lib/strtod.c (strtod): Don't assume isspace works on negative chars.
4518         Don't assume isdigit succeeds only on '0' through '9'.
4519
4520 2006-07-05  Eric Blake  <ebb9@byu.net>
4521
4522         * modules/getaddrinfo (Depends-on): Add snprintf.
4523
4524 2006-07-05  Eric Blake  <ebb9@byu.net>
4525
4526         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Use gl_HEADER_SYS_SOCKET
4527         to avoid 'header present but could not be compiled' on cygwin.
4528
4529 2006-07-05  Eric Blake  <ebb9@byu.net>
4530
4531         * lib/getaddrinfo.h (NI_NUMERICHOST, NI_NUMERICSERV): Define if
4532         missing from netdb.h.
4533         * lib/getaddrinfo.c (includes): Include inet_ntop and snprintf.
4534
4535 2006-07-05  Derek R. Price  <derek@ximbiot.com>
4536
4537         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Don't require AC_HEADER_STDC;
4538         no longer needed.
4539         * m4/exclude.m4 (gl_EXCLUDE): Likewise.
4540         * m4/getdate.m4 (gl_GETDATE): Likewise.
4541         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Likewise.
4542         * m4/memcasecmp.m4 (gl_MEMCASECMP): Likewise.
4543         * m4/strtod.m4 (gl_FUNC_STRTOD): Likewise.
4544         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
4545         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
4546
4547 2006-07-05  Derek R. Price  <derek@ximbiot.com>
4548
4549         * lib/exclude.c (IN_CTYPE_DOMAIN, is_space): Remove; no longer needed.
4550         All uses of is_space replaced by isspace.
4551         * lib/exit.h: Don't talk about STDC_HEADERS.
4552         * lib/fnmatch.c (ISASCII): Remove; no longer needed.  All uses removed.
4553         (ISPRINT, ISDIGIT, ISALNUM, ISALPHA, ISCNTRL, ISLOWER, ISPUNCT):
4554         (ISSPACE, ISUPPER, ISXDIGIT): Remove; no longer needed.  All uses
4555         replaced by isprint etc.
4556         * lib/getdate.y (IN_CTYPE_DOMAIN, ISSPACE, ISALPHA, ISLOWER): Likewise.
4557         * lib/getusershell.c (IN_CTYPE_DOMAIN, ISSPACE): Likewise.
4558         * lib/memcasecmp.c (IN_CTYPE_DOMAIN, ISLOWER, TOUPPER): Likewise.
4559         * lib/strtod.c (IN_CTYPE_DOMAIN, ISSPACE, ISDIGIT, TOLOWER): Likewise.
4560         * lib/strtol.c (IN_CTYPE_DOMAIN): Likewise.
4561         * lib/xstrtol.c (IN_CTYPE_DOMAIN, ISSPACE): Likewise.
4562
4563 2006-07-05  Bruno Haible  <bruno@clisp.org>
4564
4565         * m4/strndup.m4 (gl_FUNC_STRNDUP): When cross-compiling, check whether
4566         the function exists, before testing against AIX.
4567         Reported by Martin Lambers <marlam@marlam.de>.
4568
4569 2006-07-04  Paul Eggert  <eggert@cs.ucla.edu>
4570
4571         * modules/cycle-check (lib_SOURCES): Add same-inode.h.
4572         From Mark D. Baushke.
4573
4574 2006-07-04  Paul Eggert  <eggert@cs.ucla.edu>
4575
4576         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Prepend three slashes
4577         to the absolute name, not just one, to bypass Sun C 5.8's
4578         "warning: #include of /usr/include/... may be non-portable".
4579
4580 2006-07-04  Eric Blake  <ebb9@byu.net>
4581
4582         * modules/dirname-tests: New test module.
4583         * tests/test-dirname.c: New file, replacing dirname.c
4584         TEST_DIRNAME section that was recently deleted.
4585
4586 2006-07-04  Bruno Haible  <bruno@clisp.org>
4587
4588         Assume ANSI C header files and <ctype.h> functions.
4589         * lib/mbswidth.c (IN_CTYPE_DOMAIN, ISPRINT, ISCNTRL): Remove macros.
4590         (mbsnwidth): Use isprint, iscntrl instead.
4591
4592 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
4593
4594         Merge from coreutils.
4595         * MODULES.html.sh: Add xstrtold.
4596         * modules/xstrtold: New file.
4597         * modules/cycle-check (Files): Add lib/same-inode.h.
4598         * modules/dirname (Files): Add m4/double-slash-root.m4.
4599         * modules/getcwd (Files): Add m4/getcwd-abort-bug.m4.
4600         * modules/mkdir-p (Files): Add lib/same-inode.h.
4601         * modules/same (Files): Add lib/same-inode.h.
4602
4603 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
4604
4605         * m4/absolute-header.m4: Renamed from full-header-path.m4.
4606         This is to keep the terminology clean; POSIX talks about
4607         "absolute pathnames", not "full pathnames", but the GNU
4608         Coding Standards say to use "path" for something else;
4609         so use "absolute" to keep both sides happy.
4610         (gl_ABSOLUTE_HEADER): Renamed from gl_FULL_HEADER_PATH.
4611         Set gl_absolute_header, not gl_full_header_path.
4612         Set gl_cv_absolute_<header>, not gl_full_path_<header>.
4613         Define ABSOLUTE_<HEADER>, not FULL_PATH_<HEADER>.
4614         All uses changed.
4615
4616         Merge from coreutils.
4617
4618         2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
4619
4620         * m4/c-strtod.m4 (gl_C_STRTOLD): Add c-strtod.c to LIBSOURCES.
4621         Require gl_USE_SYSTEM_EXTENSIONS, not gl_C_STRTOD, since we don't
4622         want to require the building of c-strtod.o.
4623         * m4/lib-check.m4 (cu_LIB_CHECK): Remove SEQ_LIBM, since seq no longer
4624         needs -lm directly.
4625         * m4/xstrtod.m4 (gl_XSTRTOLD): New macro.
4626
4627         2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
4628
4629         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Prefer binutils's
4630         --as-needed option if available.  Problem reported by Albert Chin in
4631         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00114.html>.
4632         However, use -Wl,--as-needed, not bare --as-needed, since HP-UX 11.11
4633         cc merely issues a bunch of annoying warnings for --as-needed
4634         (this problem was reported by Bob Proulx).  Also, try linking with
4635         -lm to detect a bug in binutils 2.16 (this problem was reported
4636         by Ralf Wildenhues).
4637
4638         2006-06-18  Jim Meyering  <jim@meyering.net>
4639
4640         Test for a bug that causes glibc's getcwd to suffer a failed assertion.
4641         * m4/getcwd-abort-bug.m4 (gl_FUNC_GETCWD_ABORT_BUG): New file and
4642         macro.
4643         * m4/getcwd.m4 (gl_FUNC_GETCWD): If we detect support for getcwd_null,
4644         also check for glibc-2.4's abort-inducing bug.
4645
4646         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Fix typo.
4647         Low-probability clean-up should be to use rmdir to get rid of
4648         the just-created directory, not unlink.
4649
4650         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): If ftruncate is missing, make
4651         configure fail, and request a bug report to inform us about it.
4652         Add a comment that, barring reports to the contrary, in 2007 we'll
4653         assume ftruncate is universally available.
4654
4655         2006-04-17  Paul Eggert  <eggert@cs.ucla.edu>
4656
4657         * m4/filemode.m4 (gl_FILEMODE): Check for strmode declaration.
4658
4659         2006-03-12  Jim Meyering  <jim@meyering.net>
4660
4661         * m4/chdir-safer.m4 (gl_CHDIR_SAFER): Add same-inode.h to the list.
4662         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Likewise.
4663         * m4/same.m4 (gl_SAME): Likewise.
4664         * m4/root-dev-ino.m4 (gl_ROOT_DEV_INO): Likewise.
4665
4666         2006-03-11  Eric Blake  <ebb9@byu.net>
4667
4668         * m4/double-slash-root.m4: New file, provides gl_DOUBLE_SLASH_ROOT.
4669         * m4/dirname.m4 (gl_DIRNAME): Use gl_DOUBLE_SLASH_ROOT.
4670         * m4/dos.m4 (FILE_SYSTEM_PREFIX_LEN): Move from here to dirname.h.
4671         (FILE_SYSTEM_DRIVE_PREFIX_CAN_BE_RELATIVE): New define.
4672
4673 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
4674
4675         * lib/stdint_.h: Include <sys/types.h> after @FULL_PATH_STDINT_H@, for
4676         MacOS X 10.4.6.  Don't mention <sys/int_types.h>.  Problems
4677         reported by Mark D. Baushke, one in
4678         <http://lists.gnu.org/archive/html/bug-gnulib/2006-07/msg00015.html>.
4679
4680         Merge from coreutils.
4681
4682         * lib/.cppi-disable: Add stdint_.h.
4683         * lib/.cvsignore: Add stdint.h.
4684
4685         2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
4686
4687         * lib/xstrtod.c (XSTRTOD, DOUBLE): New macros, so that we can support
4688         both double and long double versions.
4689         (XSTRTOD): Renamed from xstrtod.  Use DOUBLE internally.
4690         * lib/xstrtold.c: New file.
4691         * lib/xstrtod.h (xstrtold): New decl.
4692
4693         2006-05-22  Paul Eggert  <eggert@cs.ucla.edu>
4694
4695         * lib/filemode.c (setst): Remove.
4696         (strmode): Rewrite to avoid setst.  This makes the code shorter,
4697         (arguably) clearer, and the generated code is a bit smaller on my
4698         Debian GNU/Linux stable x86 host.
4699
4700         2006-04-17  Paul Eggert  <eggert@cs.ucla.edu>
4701
4702         * lib/filemode.c: Include "filemode.h" first, to test the interface.
4703         Assume that filemode.h includes sys/types.h and sys/stat.h.
4704         (HAVE_ST_DM_MODE): New macro, moved here from ls.c.
4705         (ftypelet): Reorder to put common cases first, for efficiency.
4706         Add 'P', 'w'.  Remove 'M', since it's now the caller's responsibility
4707         to do 'M'.
4708         (strmode): Renamed from mode_string, and now stores 12 bytes instead
4709         of 10, for compatibility with FreeBSD.  All callers changed.
4710         (filemodestring): Now stores 12 bytes instead of 10, and sets file
4711         types that can't be deduced solely from st_mode.  First arg is now a
4712         const pointer.
4713         * lib/filemode.h (HAVE_DECL_STRMODE): Include <string.h> for strmode.
4714         (strmode): Renamed from mode_string.
4715         (filemodestring): New decl.
4716         * lib/stat-macros.h: Don't undef S_ISDOOR, since it's never buggy.
4717         (S_ISDOOR): Don't bother with S_IFDOOR, since that code is never
4718         needed.
4719         (S_ISPORT, S_ISWHT): New macros, if not already defined.
4720
4721         2006-04-12  Paul Eggert  <eggert@cs.ucla.edu>
4722
4723         * lib/fsusage.c: Don't include <inttypes.h> or <stdint.h>, since
4724         fsusage.h now does that.  Include fsusage.h first, to test interface.
4725         Prefer statvfs if it works, since it's blessed by POSIX.  Attempt
4726         at most one method (the old code could have generated decls that
4727         didn't conform to C89, not that this was ever exercised).
4728         * lib/fsusage.h: Include <inttypes.h> and <stdint.h> if they exist.
4729
4730         2006-03-19  Jim Meyering  <jim@meyering.net>
4731
4732         Work even in a chroot where d_ino values for entries in "/"
4733         don't match the stat.st_ino values for the same names.
4734         * lib/getcwd.c (__getcwd): When no d_ino value matches the target inode
4735         number, iterate through all entries again, using lstat instead.
4736         Reported by Kenshi Muto in http://bugs.debian.org/355810, and by
4737         Zouhir Hafidi in https://bugzilla.redhat.com/bugzilla/190656.
4738
4739         * lib/getcwd.c (__getcwd): Clarify a comment.
4740         Use memcpy in place of a call to strcpy.
4741
4742         2006-03-12  Jim Meyering  <jim@meyering.net>
4743
4744         * lib/fts-cycle.c (leave_dir): If cycle-check's saved dev-ino pair
4745         matches that of the current directory (which we're about to chdir ".."
4746         out of), then save the dev-ino of the parent, instead.
4747
4748         * lib/same-inode.h (SAME_INODE): New file/macro.
4749         * lib/chdir-safer.c (SAME_INODE): Remove definition.
4750         Include "same-inode.h", instead.
4751         * lib/same.c: Likewise.
4752         * lib/cycle-check.h: Include "same-inode.h".
4753         (CYCLE_CHECK_REFLECT_CHDIR_UP): Define.
4754         * lib/cycle-check.c (SAME_INODE): Remove definition.
4755         * lib/root-dev-ino.h: Include "same-inode.h".
4756
4757         2006-03-11  Eric Blake  <ebb9@byu.net>
4758
4759         * lib/same.c (same_name): s/base_name/last_component/
4760         * lib/backupfile.c (check_extension, numbered_backup): Likewise.
4761         * lib/filenamecat.c (file_name_concat): Likewise.
4762
4763         2006-03-11  Eric Blake  <ebb9@byu.net>,
4764                     Paul Eggert  <eggert@cs.ucla.edu>
4765
4766         * lib/dirname.h (FILE_SYSTEM_PREFIX_LEN): Move here from dos.m4.
4767         [FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]: Don't treat 1: as a
4768         drive prefix.
4769         (IS_ABSOLUTE_FILE_NAME): Treat all drive letters as absolute on
4770         platforms like cygwin with FILE_SYSTEM_DRIVE_PREFIX_IS_ABSOLUTE.
4771         (last_component): New method.
4772         * lib/dirname.c (dir_len): Determine when drive letters need a
4773         subsequent slash.  Preserve // when it is special.
4774         (dir_name): Don't append dot when drive letter is absolute.
4775         [TEST_DIRNAME]: Move into a full-blown gnulib test.
4776         * lib/basename.c (base_name): New semantics - malloc the result.
4777         Preserve // when it is special.  Preserve relative files that look
4778         like drive letters.
4779         (base_len): Preserve // when it is special.
4780         (last_component): New method, similar to old base_name semantics.
4781         * lib/stripslash.c (strip_trailing_slashes): Use last_component, not
4782         base_name.  Strip redundant slashes from ///.
4783
4784 2006-07-03  Jim Meyering  <jim@meyering.net>
4785
4786         * lib/cycle-check.h (CYCLE_CHECK_REFLECT_CHDIR_UP): Abort if this
4787         macro is used before the first cycle_check call.
4788
4789 2006-07-03  Eric Blake  <ebb9@byu.net>
4790
4791         * modules/dirname (Depends-on): Add xstrndup.
4792
4793 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
4794
4795         * m4/stdint.m4 (gl_STDINT_H): Use more-mnemonic identifiers for
4796         test cases, so that config.log is a bit easier to follow.
4797
4798 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
4799
4800         * lib/stdint_.h (intmax_t, uintmax_t): Prefer long to long long if
4801         both are 64 bits, since this seems to be the tradition, and this
4802         prevents gcc -Wformat from warning about usages with PRIuMAX.  If
4803         we ever run into a host that prefers long long to long in this
4804         case, we'll need another configure-time test.  Problem reported by
4805         Jim Meyering.
4806
4807 2006-07-02  Eric Blake  <ebb9@byu.net>
4808
4809         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Simplify by using AC_CHECK_DECLS.
4810
4811 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
4812
4813         * modules/inttypes (Depends-on): No longer depends on stdint.
4814         * modules/stdint (Description): Say more about assumptions.
4815         Say that the fast types might differ.  Say macros are used.
4816         (Files): Remove m4/size_max.m4, m4/wchar_t.m4.  Add m4/longlong.m4.
4817         (Makefile.am): Revise list of substituted symbols to match
4818         new stdint.m4.
4819         * modules/stdint-tests (Files): Add m4/wchar_t.m4, m4/wint_t.m4.
4820         (configure.ac): Add gt_TYPE_WCHAR_T, gt_TYPE_WINT_T.
4821         * tests/test-stdint.c (verify_same_types)
4822         [! (__GNUC__ >= 2 && DO_PEDANTIC)]: Put in a decl, so that
4823         the code conforms to C99/C89.
4824         Test for WCHAR_MIN and WCHAR_MAX only if HAVE_WCHAR_T.
4825         Test for WINT_MIN and WINT_MAX only if HAVE_WINT_T.
4826
4827 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
4828
4829         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Backport from Autoconf 2.60,
4830         but fix a bug, by requiring at least 64 bits.
4831         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Likewise.
4832         * m4/longlong.m4 (gl_AC_TYPE_LONG_LONG): Now just call
4833         AC_TYPE_LONG_LONG_INT.  This macro is obsolete and will go soon.
4834         * m4/ulonglong.m4 (gl_AC_TYPE_UNSIGNED_LONG_LONG) Likewise.
4835
4836         * m4/stdint.m4 (gl_STDINT_H): Rewrite to accommodate stdint_.h
4837         changes.  Make 2.59 a prerequisite.  Check and substitute for
4838         HAVE_LONG_LONG_INT.  Rely on Autoconf to check for stdint.h and
4839         inttypes.h.  Do not use special include files; just use the
4840         defaults.  Check for sys/inttypes.h and sys/bitypes.h in the usual
4841         way now.  Remove no-longer-needed tests for HAVE_LONG_64BIT,
4842         HAVE_LONG_LONG_64BIT, int8_t, int16_t, int32_t, int64_t, uint8_t,
4843         uint16_t, uint32_t uint64_t, int_least8_t, int_least16_t,
4844         int_least32_t, int_least64_t, uint_least8_t, uint_least16_t,
4845         uint_least32_t, uint_least64_t, int_fast8_t, int_fast16_t,
4846         int_fast32_t, int_fast64_t, uint_fast8_t uint_fast16_t,
4847         uint_fast32_t, uint_fast64_t, intptr_t, uintptr_t, intmax_t,
4848         uintmax_t, INT8_MIN, INT8_MAX, UINT8_MAX, INT16_MIN, INT16_MAX,
4849         UINT16_MAX, INT32_MIN, INT32_MAX, UINT32_MAX, INT64_MIN,
4850         INT64_MAX, UINT64_MAX, INT_LEAST8_MIN, INT_LEAST8_MAX,
4851         UINT_LEAST8_MAX, INT_LEAST16_MIN, INT_LEAST16_MAX,
4852         UINT_LEAST16_MAX, INT_LEAST32_MIN, INT_LEAST32_MAX,
4853         UINT_LEAST32_MAX, INT_LEAST64_MIN, INT_LEAST64_MAX,
4854         UINT_LEAST64_MAX, INT_FAST8_MIN, INT_FAST8_MAX, UINT_FAST8_MAX,
4855         INT_FAST16_MIN, INT_FAST16_MAX, UINT_FAST16_MAX, INT_FAST32_MIN,
4856         INT_FAST32_MAX, UINT_FAST32_MAX, INT_FAST64_MIN, INT_FAST64_MAX,
4857         UINT_FAST64_MAX, INTPTR_MIN, INTPTR_MAX, UINTPTR_MAX, INTMAX_MIN,
4858         INTMAX_MAX, UINTMAX_MAX, PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN,
4859         SIG_ATOMIC_MAX, SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN,
4860         WINT_MAX.  Check for C99 conformance more strictly, by detecting
4861         bugs in glibc 2.4, Solaris 10, and OpenBSD 3.9.  On the other hand do
4862         not check for things that C99 does not require, e.g., int8_t.  If
4863         a test isn't needed unless <stdint.h> isn't working, and is
4864         unlikely to be needed for any other reason, then don't do it
4865         unless <stdint.h> isn't working.  Do not check for ptrdiff_t or
4866         size_t, since we assume C89 freestanding at least.  Do not check
4867         for sig_atomic_t, wchar_t, or wint_t, since the code now does
4868         the right thing even if the types are not defined.  Instead use:
4869         (gl_STDINT_TYPE_PROPERTIES): New macro.
4870         (gl_HEADER_STDINT_H, gl_HEADER_INTTYPES_H): Remove.  Don't bother
4871         testing whether <sys/types.h> clashes, as Autoconf does this for
4872         us now.  All uses removed.
4873         (gl_STDINT_CHECK_TYPES, gl_STDINT_MISSING_BOUND):
4874         (gl_STDINT_MISSING_BOUNDS, gl_STDINT_MISSING_BOUNDS2):
4875         (gl_CHECK_TYPE_SAME):
4876         Remove; no longer needed.
4877         (gl_STDINT_BITSIZEOF): Don't bother to check whether the type
4878         exists, since we'll return 0 anyway in that case.
4879         (gl_INTEGER_TYPE_SUFFIX, gl_STDINT_INCLUDES): New macros.
4880
4881 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
4882
4883         * lib/stdint_.h (_GL_STDINT_H): Renamed from _STDINT_H, to avoid
4884         possible collision with system files.
4885         (<stdio.h>, <time.h>, <wchar.h>) [defined __cplusplus && ! defined
4886         __STDC_CONSTANT_MACROS)]: Do not include, since we don't need
4887         WCHAR_MIN and WCHAR_MAX in this case.
4888         (<stddef.h>): Do not include; no longer needed.
4889         (<sys/types.h>): Include if @HAVE_SYS_TYPES_H@, not if
4890         (defined(__OpenBSD__) || defined(__bsdi__) || defined(__sgi)).
4891         (<sys/inttypes.h>): Include if @HAVE_SYS_INTTYPES_H@ &&
4892         !@HAVE_INTTYPES_H@, not if (defined(__FreeBSD__)
4893         && (__FreeBSD__ >= 3) && (__FreeBSD__ <= 4)).
4894         (__STDINT_H__) [@HAVE_STDINT_H@ && defined __sgi && ! defined
4895         __c99]: Define, to work around IRIX <stdint.h> incompatibility.
4896         (@FULL_PATH_STDINT_H@) [!(defined(__sgi) && @HAVE_INTTYPES_H@ &&
4897         !defined(__c99))]: Include in this case too, since it's harmless
4898         now.
4899         (<inttypes.h>) [@HAVE_INTTYPES_H@]: Include, since it's no longer
4900         dangerous to do so.
4901         (@FULL_PATH_INTTYPES_H@) [(defined(__hpux) || defined(_AIX)) &&
4902         @HAVE_INTTYPES_H@]: Do not include, since we now include <inttypes.h>.
4903         (_STDINT_MIN, _STDINT_MAX): New macros.
4904         (int8_t, uint8_t, int16_t, uint16_t, int32_t, uint32_t, int64_t):
4905         (uint64_t, int_least8_t, uint_least8_t, int_least16_t):
4906         (uint_least16_t, int_least32_t, uint_least32_t, int_least64_t):
4907         (uint_least64_t, int_fast8_t, uint_fast8_t, int_fast16_t):
4908         (uint_fast16_t, int_fast32_t, uint_fast32_t, int_fast64_t):
4909         (uint_fast64_t, intptr_t, uintptr_t, intmax_t, uintmax_t): Now
4910         macros, not typedefs; this simplifies things quite a bit.
4911         Use long int for all types narrower than int64_t.
4912         (intmax_t, uintmax_t, INTMAX_C, UINTMAX_C):
4913         Define in terms of long long int or int64_t or long int,
4914         not int64_t or int32_t.  This saves some compile-time testing.
4915         (INT8_MIN, INT8_MAX, UINT8_MAX, INT16_MIN, INT16_MAX, UINT16_MAX):
4916         (INT32_MIN, INT32_MAX, UINT32_MAX, INT64_MIN, INT64_MAX):
4917         (UINT64_MAX, INT_LEAST8_MIN, INT_LEAST8_MAX, UINT_LEAST8_MAX):
4918         (INT_LEAST16_MIN, INT_LEAST16_MAX, UINT_LEAST16_MAX):
4919         (INT_LEAST32_MIN, INT_LEAST32_MAX, UINT_LEAST32_MAX):
4920         (INT_LEAST64_MIN, INT_LEAST64_MAX, UINT_LEAST64_MAX, INT_FAST8_MIN):
4921         (INT_FAST8_MAX, UINT_FAST8_MAX, INT_FAST16_MIN, INT_FAST16_MAX):
4922         (UINT_FAST16_MAX, INT_FAST32_MIN, INT_FAST32_MAX, UINT_FAST32_MAX):
4923         (INT_FAST64_MIN, INT_FAST64_MAX, UINT_FAST64_MAX, INTPTR_MIN):
4924         (INTPTR_MAX, UINTPTR_MAX, INTMAX_MIN, INTMAX_MAX, UINTMAX_MAX):
4925         (PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX):
4926         (SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN, WINT_MAX):
4927         undef any previous version and define our own version, for
4928         simplicity and consistency with the new macros for types.
4929         (PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX):
4930         (SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN, WINT_MAX):
4931         Simplify definitions by using _STDINT_MIN and _STDINT_MAX
4932         where appropriate.  Rely on new symbols @PTRDIFF_T_SUFFIX@,
4933         @SIG_ATOMIC_T_SUFFIX@, @SIZE_T_SUFFIX@, @WCHAR_T_SUFFIX@,
4934         @WINT_T_SUFFIX@ to keep things simple here.
4935         (UINT8_C, UINT16_C, UINT32_C, INT64_C, UINT64_C):
4936         Simplify by assuming typical 8/16/32/64 host, since we're
4937         already doing that elsewhere anyway.
4938         Use (LONG_MAX >> 31 >> 31 == 1) rather than @HAVE_LONG_64BIT@,
4939         and assume long long int is 64 bits if available.  This
4940         speeds up 'configure'.
4941
4942 2006-07-01  Eric Blake  <ebb9@byu.net>
4943
4944         * m4/stdarg.m4 (gl_STDARG_H): Use proper AH_VERBATIM.
4945         Reported by Andreas Buening.
4946
4947 2006-07-01  Eric Blake  <ebb9@byu.net>
4948
4949         * m4/stdarg.m4 (gl_STDARG_H): Properly parenthesize gl_va_copy.
4950
4951 2006-06-30  Jim Hyslop <jhyslop@dreampossible.ca>  (tiny change)
4952
4953         * lib/getaddrinfo.c: fixed typo
4954
4955 2006-06-29  Jim Meyering  <jim@meyering.net>
4956
4957         * modules/strftime (Maintainer): Add my name, since with the
4958         FPRINTFTIME changes strftime.c has forked from glibc.
4959
4960 2006-06-29  Eric Blake  <ebb9@byu.net>
4961
4962         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Use AC_C_INLINE.
4963
4964 2006-06-29  Eric Blake  <ebb9@byu.net>
4965
4966         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): New file.
4967
4968 2006-06-29  Eric Blake  <ebb9@byu.net>
4969
4970         * lib/stat_.h: New file.
4971
4972 2006-06-29  Eric Blake  <ebb9@byu.net>
4973
4974         * lib/stat_.h (rpl_mkdir): Declare inline, to avoid warnings about
4975         unused static function.
4976
4977 2006-06-29  Eric Blake  <ebb9@byu.net>
4978
4979         * doc/functions.texi (Function Portability): Document missing lstat
4980         on mingw.
4981
4982 2006-06-29  Eric Blake  <ebb9@byu.net>
4983
4984         * MODULES.html.sh: Add sys_stat.
4985         * modules/sys_stat: New module.
4986         * modules/mkstemp (Depends-on): Add sys_stat.
4987
4988 2006-06-29  Derek R. Price  <derek@ximbiot.com>
4989
4990         * m4/strftime.m4: Don't call AC_FUNC_STRFTIME.
4991
4992 2006-06-29  Derek R. Price  <derek@ximbiot.com>
4993
4994         * m4/c-bs-a.m4: Removed.
4995
4996 2006-06-29  Derek R. Price  <derek@ximbiot.com>
4997
4998         * lib/strftime.c: Assume strftime() exists.
4999
5000 2006-06-29  Derek Price  <derek@ximbiot.com>
5001
5002         * modules/c-bs-a: Removed - \a is C89.
5003         * MODULES.html.sh: Remove c-bs-a.
5004
5005 2006-06-29  Bruno Haible  <bruno@clisp.org>
5006
5007         * modules/wcwidth (License): Change to LGPL.
5008
5009 2006-06-28  Simon Josefsson  <jas@extundo.com>
5010
5011         * tests/test-getaddrinfo.c: Test getnameinfo too.  Call WSAStartup
5012         on _WIN32.
5013
5014         * modules/getaddrinfo (Depends-on): Add inet_ntop, needed by
5015         getnameinfo.
5016
5017 2006-06-28  Simon Josefsson  <jas@extundo.com>
5018
5019         * m4/getaddrinfo.m4: Look for getnameinfo prototypes too.
5020
5021 2006-06-28  Simon Josefsson  <jas@extundo.com>
5022
5023         * lib/getaddrinfo.c: Try to load ws2_32.dll on Windows, to find the
5024         functions there.  It will succeed on Windows XP, but on Windows
5025         2000 and (presumably) earlier, it will fail, and use the internal
5026         re-implementation.
5027         (use_win32_p): New function.
5028         (getaddrinfo): Use strtoul on servname, to support numeric ports.
5029         Support AI_NUMERICSERV to disable getservbyname.
5030         (getnameinfo): New function, only supports
5031         NI_NUMERICHOST|NI_NUMERICSERV for now.
5032
5033         * lib/getaddrinfo.h: Test and check for AI_* flags separately, MinGW
5034         only have some of them.  Add AI_NUMERICSERV.  Add prototype for
5035         getnameinfo.
5036
5037 2006-06-28  Eric Blake  <ebb9@byu.net>
5038
5039         * modules/wcwidth: New file.
5040         * modules/mbchar (Depends-on): Add wcwidth.
5041         * modules/mbswidth (Depends-on): Add wcwidth.
5042         * MODULES.html.sh: Add wcwidth.
5043
5044 2006-06-28  Eric Blake  <ebb9@byu.net>
5045
5046         * m4/mbswidth.m4 (gl_MBSDWIDTH): Move wcwidth from here...
5047         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): ...to this new file.
5048
5049 2006-06-28  Eric Blake  <ebb9@byu.net>
5050
5051         * lib/xvasprintf.h: Fix comments.
5052
5053 2006-06-28  Eric Blake  <ebb9@byu.net>
5054
5055         * lib/mbchar.h (wcwidth): Include wcwidth.h.
5056         * lib/mbswidth.c (wcwidth): Move from here...
5057         * lib/wcwidth.h: ...to this new file.
5058
5059 2006-06-28  Derek R. Price  <derek@ximbiot.com>
5060
5061         * m4/savedir.m4: Remove AC_FUNC_CLOSEDIR_VOID requirement.
5062
5063         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Don't require AC_C_CONST, since
5064         it's obsolete.
5065         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME): Likewise.
5066
5067 2006-06-28  Derek R. Price  <derek@ximbiot.com>
5068
5069         * lib/savedir.c (CLOSEDIR): Remove.  All uses changed to closedir.
5070         Autoconf 2.60 says this stuff was obsolete.
5071
5072 2006-06-28  Bruno Haible  <bruno@clisp.org>
5073
5074         * modules/wcwidth (Files): Add m4/wchar_t.m4.
5075
5076 2006-06-28  Bruno Haible  <bruno@clisp.org>
5077
5078         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Also require AC_C_INLINE and
5079         gt_TYPE_WCHAR_T.
5080
5081 2006-06-28  Bruno Haible  <bruno@clisp.org>
5082
5083         * lib/wcwidth.h: Declare nothing if !HAVE_WCHAR_T. Provide a fallback
5084         declaration for wcwidth.
5085         * lib/mbswidth.c: Restore the includes of <wchar.h> and <wctypes.h>.
5086
5087 2006-06-28  Bruno Haible  <bruno@clisp.org>
5088
5089         * lib/mkdtemp.c [MINGW]: Include <io.h>.
5090         (mkdir): Define using _mkdir.
5091
5092 2006-06-28  Bruno Haible  <bruno@clisp.org>
5093
5094         * lib/getaddrinfo.h: Fix POSIX URL.
5095         * lib/getaddrinfo.c (WIN32_NATIVE): New macro. Use it instead of
5096         _WIN32.
5097         (use_win32_p): Make static.
5098         (getaddrinfo): Reject service name if it is empty or does not consist
5099         solely of decimal digits, or if its value is > 65535.
5100         (getnameinfo): Remove useless casts.
5101
5102 2006-06-27  Simon Josefsson  <jas@extundo.com>
5103
5104         * modules/sys_select: New file, suggested by Bruno Haible, Paul
5105         Eggert and Martin Lambers.
5106
5107 2006-06-27  Simon Josefsson  <jas@extundo.com>
5108
5109         * m4/sys_select_h.m4: New file, suggested by Bruno Haible, Paul
5110         Eggert and Martin Lambers.
5111
5112 2006-06-27  Bruno Haible  <bruno@clisp.org>
5113
5114         * m4/stdint.m4 (gl_STDINT_BITSIZEOF): For nonexistent types, set the
5115         result to 0, not to empty.
5116         Reported by Martin Neitzel <neitzel@sco.gaertner.de>.
5117
5118 2006-06-27  Bruno Haible  <bruno@clisp.org>
5119
5120         * lib/stdint_.h (intmax_t, uintmax_t): Undefine before typedef.
5121
5122 2006-06-26  Simon Josefsson  <jas@extundo.com>
5123
5124         * m4/inet_ntop.m4: Don't check for sys/types.h, we assume it is
5125         present.
5126
5127 2006-06-26  Paul Eggert  <eggert@cs.ucla.edu>
5128
5129         * lib/base64.c (B64): Use _ as the formal parameter, not x, to avoid
5130         bug in IBM C V6 for AIX.  Problem reported by Larry Jones in
5131         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00181.html>.
5132
5133 2006-06-26  Mark D. Baushke  <mdb@gnu.org>
5134
5135         * m4/stdint.m4 (gl_STDINT_H): Treat BSD/OS like OpenBSD.
5136
5137 2006-06-26  Bruno Haible  <bruno@clisp.org>
5138
5139         * modules/stdint (Makefile.am): Also substitute HAVE_WCHAR_H.
5140
5141 2006-06-26  Bruno Haible  <bruno@clisp.org>
5142
5143         * m4/stdint.m4 (gl_STDINT_H): Test also for <wchar.h>.
5144
5145 2006-06-26  Bruno Haible  <bruno@clisp.org>
5146
5147         * m4/stdint.m4 (gl_STDINT_H): Don't include <stdint.h> when using the
5148         SGI C compiler in pre-C99 mode.
5149         Suggested by Mark D. Baushke and Larry Jones.
5150
5151 2006-06-26  Bruno Haible  <bruno@clisp.org>
5152
5153         * lib/stdint_.h: Include <wchar.h> if necessary for WCHAR_MIN or
5154         WCHAR_MAX.
5155         Reported by Mark D. Baushke and Larry Jones.
5156
5157 2006-06-26  Bruno Haible  <bruno@clisp.org>
5158
5159         * lib/stdint_.h: Don't include <stdint.h> when using the SGI C compiler
5160         in pre-C99 mode.
5161         Suggested by Mark D. Baushke and Larry Jones.
5162
5163 2006-06-23  Simon Josefsson  <jas@extundo.com>
5164             Bruno Haible  <bruno@clisp.org>
5165
5166         * gnulib-tool (func_emit_lib_Makefile_am): Define MOSTLYCLEANDIRS.
5167         Emit mostlyclean-local rule.
5168         (func_emit_tests_Makefile_am): Likewise.
5169         * modules/sys_socket (Makefile.am): Use MOSTLYCLEANDIRS.
5170
5171 2006-06-23  Mark D. Baushke  <mdb@gnu.org>
5172
5173         * lib/stdint_.h: Treat BSD/OS like OpenBSD.
5174
5175 2006-06-23  Bruno Haible  <bruno@clisp.org>
5176
5177         * tests/test-stdint.c: Update to match ISO C 99 Technical
5178         Corrigendum 1.
5179
5180 2006-06-23  Bruno Haible  <bruno@clisp.org>
5181
5182         * m4/stdint.m4 (gl_STDINT_H): Treat IRIX like OpenBSD.
5183
5184 2006-06-23  Bruno Haible  <bruno@clisp.org>
5185
5186         * lib/stdint_.h: Treat IRIX like OpenBSD.
5187
5188 2006-06-23  Bruno Haible  <bruno@clisp.org>
5189
5190         * lib/stdint_.h (UINT8_C, UINT16_C, UINT32_C): Define according to
5191         ISO C 99 Technical Corrigendum 1.
5192
5193 2006-06-22  Simon Josefsson  <jas@extundo.com>
5194
5195         * m4/sockpfaf.m4: Include winsock2.h too, to make it work under
5196         MinGW.
5197
5198 2006-06-22  Paul Eggert  <eggert@cs.ucla.edu>
5199
5200         * lib/glob.c (collated_compare): Remove 'const' uses that weren't
5201         needed.  Some compiler complained about some of them.  Problem reported
5202         by Larry Jones in
5203         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00172.html>.
5204
5205 2006-06-21  Simon Josefsson  <jas@extundo.com>
5206
5207         * tests/test-getaddrinfo.c: New file.
5208
5209         * modules/getaddrinfo-tests: New file.
5210
5211         * MODULES.html.sh: Add inet_pton.
5212
5213         * modules/inet_pton: New file.
5214
5215 2006-06-21  Simon Josefsson  <jas@extundo.com>
5216
5217         * m4/getaddrinfo.m4: Don't define WINVER.  Look for gethostbyname in
5218         -lws2_32 too.  Fixes getaddrinfo on Windows 2000, with the price
5219         of using the (limited) gnulib implementation on Windows XP.
5220
5221         * m4/inet_pton.m4: New file.
5222
5223 2006-06-21  Simon Josefsson  <jas@extundo.com>
5224
5225         * lib/getaddrinfo.c (getaddrinfo): Set ai_family in the return
5226         variable.
5227
5228         * lib/socket_.h: Don't define WINVER.
5229
5230         * lib/inet_pton.h, inet_pton.c: New file, taken from glibc but
5231         slightly modified to work in gnulib.
5232
5233 2006-06-21  Simon Josefsson  <jas@extundo.com>
5234
5235         * doc/gnulib.texi (Windows sockets): Add.
5236
5237 2006-06-21  Paul Eggert  <eggert@cs.ucla.edu>
5238
5239         * lib/read-file.c (fread_file): Start with buffer allocation of
5240         0 bytes rather than 1 byte; this simplifies the code.
5241         Don't invoke feof; it's not needed.  Refactor to avoid duplicate
5242         code to free buffer and save/restore errno.
5243         (internal_read_file): Remove unused local.
5244
5245 2006-06-20  Paul Eggert  <eggert@cs.ucla.edu>
5246
5247         * lib/openat.c (openat): Use ?:, not if, to work around GCC bug 4210
5248         <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=4210>.
5249         Problem reported by Denis Excoffier in
5250         <http://lists.gnu.org/archive/html/bug-tar/2006-06/msg00023.html>.
5251
5252 2006-06-19  Yoann Vandoorselaere <yoann.v@prelude-ids.com>
5253
5254         * modules/sys_socket, modules/socklen: Include sys/types since
5255         FreeBSD 4.x's sys/socket.h needs it.
5256
5257 2006-06-19  Simon Josefsson  <jas@extundo.com>
5258
5259         * lib/inet_ntop.c: Always build inet_ntop4, since inet_ntop6 calls it.
5260
5261 2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
5262
5263         * lib/alloca_.h (alloca) [defined alloca]: Don't define or declare.
5264
5265 2006-06-19  Bruno Haible  <bruno@clisp.org>
5266
5267         * m4/stdint.m4 (gl_STDINT_H): Enclose the values of FULL_PATH_STDINT_H
5268         and FULL_PATH_INTTYPES_H in angle brackets.
5269         Reported by Mark D. Baushke <mdb@gnu.org>.
5270
5271 2006-06-17  Eric Blake  <ebb9@byu.net>
5272
5273         * m4/rmdir-errno.m4 (gl_FUNC_FMDIR_NOTEMPTY): Assume errno.h declares
5274         errno.
5275
5276 2006-06-17  Bruno Haible  <bruno@clisp.org>
5277
5278         * m4/stdint.m4 (gl_STDINT_H) [FreeBSD >= 5]: Don't include
5279         <sys/inttypes.h>.
5280
5281 2006-06-17  Bruno Haible  <bruno@clisp.org>
5282
5283         * m4/setenv.m4 (gl_PREREQ_SETENV, gl_PREREQ_UNSETENV): Remove test
5284         whether errno is declared. Assume <errno.h> declares errno.
5285
5286 2006-06-17  Bruno Haible  <bruno@clisp.org>
5287
5288         * lib/stdint_.h [FreeBSD >= 5]: Don't include <sys/inttypes.h>.
5289
5290 2006-06-17  Bruno Haible  <bruno@clisp.org>
5291
5292         * lib/stdint_.h (_UINT8_T, _UINT32_T, _UINT64_T): New macros. Fixes a
5293         problem on Solaris 2.5.1.
5294
5295 2006-06-16  Eric Blake  <ebb9@byu.net>
5296
5297         * lib/unsetenv.c [!defined errno]: Assume errno.h declares errno.
5298         * lib/unicodeio.c [!defined errno]: Likewise.
5299         * lib/strtol.c [!defined errno]: Likewise.
5300         * lib/strtod.c [!defined errno]: Likewise.
5301
5302 2006-06-15  Eric Blake  <ebb9@byu.net>
5303
5304         * m4/ssize_t.m4 (gt_TYPE_SSIZE_T): Work in spite of -Werror.
5305
5306 2006-06-15  Eric Blake  <ebb9@byu.net>
5307
5308         * config/srclist.txt (ssize_t.m4): Lose sync.
5309
5310 2006-06-15  Bruno Haible  <bruno@clisp.org>
5311
5312         * modules/stdint (Files): Include m4/full-header-path.m4,
5313         m4/size_max.m4, m4/wchar_t.m4.
5314         (Makefile.am): Many more substitutions.
5315         * modules/stdint-tests: New file.
5316         * tests/test-stdint.c: New file.
5317
5318 2006-06-15  Bruno Haible  <bruno@clisp.org>
5319
5320         * m4/stdint.m4 (gl_STDINT_H): Rewritten to produce a complete stdint.h.
5321         (gl_HEADER_STDINT_H, gl_HEADER_INTTYPES_H, gl_STDINT_CHECK_TYPES,
5322         gl_STDINT_MISSING_BOUND, gl_STDINT_MISSING_BOUNDS,
5323         gl_STDINT_MISSING_BOUNDS2, gl_STDINT_BITSIZEOF, gl_CHECK_TYPES_SIGNED,
5324         gl_CHECK_TYPE_SAME): New macros.
5325
5326 2006-06-15  Bruno Haible  <bruno@clisp.org>
5327
5328         * m4/size_max.m4 (gl_SIZE_MAX): Make it work also when cross-compiling.
5329
5330 2006-06-15  Bruno Haible  <bruno@clisp.org>
5331
5332         * lib/stdint_.h: Rewritten to be fully auto-configured.
5333         Fixes bug on HP-UX/IA64.
5334
5335 2006-06-11  Paul Eggert  <eggert@cs.ucla.edu>
5336
5337         * lib/getdate.y (__attribute__): Don't define if already defined.
5338         Problem reported by Larry Jones.
5339         * lib/utimens.c (__attribute__): Likewise.
5340
5341 2006-06-04  Paul Eggert  <eggert@cs.ucla.edu>
5342
5343         * lib/regexec.c (group_nodes_into_DFAstates): Fix a buffer overrun
5344         reported by Andreas Schwab.
5345
5346 2006-05-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5347             Bruno Haible  <bruno@clisp.org>
5348
5349         * m4/strndup.m4 (gl_FUNC_STRNDUP): Replace the AC_REPLACE_FUNCS with a
5350         check for the declaration of strnlen and a run test that exposes the
5351         AIX 5.1 strnlen bug.  In the failure case, #define strndup to
5352         rpl_strndup.
5353
5354 2006-05-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5355             Bruno Haible  <bruno@clisp.org>
5356
5357         * lib/strndup.c (strndup) [!_LIBC]: Don't undefine macro definition.
5358
5359 2006-05-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5360
5361         * m4/c-strtod.m4 (gl_C99_STRTOLD): Use a link test rather than a
5362         compile test, for Tru64 4.0D.
5363
5364 2006-05-28  Karl Berry  <karl@gnu.org>
5365
5366         * config/srclist.txt (printf-args.c): lose sync.
5367
5368 2006-05-26  Martin Lambers  <marlam@marlam.de>
5369
5370         * lib/getpass.c: Updates the test for the native W32 API, and adds
5371         missing includes, thus fixing compilation warnings.
5372
5373 2006-05-25  Sergey Poznyakoff  <gray@gnu.org.ua>
5374
5375         * lib/exclude.c (exclude_fnmatch): New function.
5376         (excluded_file_name): Call exclude_fnmatch.
5377         * lib/exclude.h (excluded_file_name): New prototype
5378
5379 2006-05-25  Paul Eggert  <eggert@cs.ucla.edu>
5380
5381         * lib/tempname.c (small_open, large_open): New macros.
5382         (__open, __open64) [!_LIBC]: Remove.
5383         (__gen_tempname): Use small_open and large_open instead of __open
5384         and __open64.  This fixes a portability bug on HP-UX 11.11i
5385         reported by Simon Wing-Tang in
5386         <http://lists.gnu.org/archive/html/bug-coreutils/2006-05/msg00114.html>.
5387
5388 2006-05-24  Bruno Haible  <bruno@clisp.org>
5389
5390         * lib/printf-args.c (printf_fetchargs): Turn NULL pointers for
5391         TYPE_STRING and TYPE_WIDE_STRING into a non-NULL replacement.
5392         Reported by Thorsten Maerz <torte@netztorte.de> via
5393         Aaron Stone <aaron@serendipity.cx>.
5394
5395 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
5396
5397         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Rename cache variables to use
5398         gl_ rather than jm_.  Link, don't run, so that cross-compiles are
5399         allowed.  Check that resulting type is arithmetic.  Move AC_REQUIRE
5400         and AC_CHECK_HEADERS_ONCE outside of AC_CACHE_CHECK, since they're
5401         not really conditional on the cache.
5402         (gl_PREREQ_NANOSLEEP): Check for sys/select.h.
5403
5404 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
5405
5406         * lib/nanosleep.c [HAVE_SYS_SELECT_H]: Include <sys/select.h>.
5407         Use the usual Autoconf way to include <time.h> and/or sys/time.h.
5408         (my_usleep): Don't mishandle maximum value.
5409
5410 2006-05-19  Jim Meyering  <jim@meyering.net>
5411
5412         * lib/getugroups.c: Correct an outdated comment.  From Bruno Haible.
5413
5414 2006-05-17  Bruno Haible  <bruno@clisp.org>
5415
5416         Cygwin portability.
5417         * lib/classpath.c (PATH_SEPARATOR) [CYGWIN]: Define as ':'.
5418
5419 2006-05-17  Bruno Haible  <bruno@clisp.org>
5420
5421         * lib/stdint_.h: Fix recognition of Cygwin.
5422
5423 2006-05-15  Bruno Haible  <bruno@clisp.org>
5424
5425         * build-aux/config.rpath: Improve support for Sun C 5.9 on Linux, based
5426         on libtool patch by Ralf Wildenhues.
5427
5428 2006-05-14  Paul Eggert  <eggert@cs.ucla.edu>
5429
5430         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Fix overly-picky
5431         test for C99 conformance; (bool) 0.5 is an integer constant
5432         expression, but (bool) -0.5 is not.  Problem reported by Fedor
5433         Sergeev in <http://forum.sun.com/jive/thread.jspa?threadID=96202>.
5434
5435 2006-05-11  Simon Josefsson  <jas@extundo.com>
5436
5437         * m4/xvasprintf.m4: Fix obvious typo.
5438
5439 2006-05-11  Jim Meyering  <jim@meyering.net>
5440
5441         * lib/sha1.c (sha1_buffer): Correct comment: s/MD5/SHA1/.  From
5442         James Lemley.
5443
5444 2006-05-10  Simon Josefsson  <jas@extundo.com>
5445
5446         * lib/md4.c: Typo fix, update copyright years.
5447         (K1, K2): Don't use L because it turn computations into 64-bit on
5448         64-bit platforms.
5449
5450 2006-05-10  Paul Eggert  <eggert@cs.ucla.edu>
5451
5452         * lib/crc.c (crc32_update): Remove unnecessary L suffix.
5453         * lib/md4.c (rol): Cast right-shift arg to uint32_t to prevent
5454         unwanted sign propagation, e.g., on hosts with 64-bit int.
5455         There still are some problems with reeelly weird theoretical hosts
5456         (e.g., 33-bit int) but it's not worth worrying about now.
5457         * lib/sha1.c (rol): Likewise.
5458         (K1, K2, K3, K4): Remove unnecessary L suffix.
5459
5460 2006-05-10  Bruno Haible  <bruno@clisp.org>
5461
5462         * lib/des.c: Cast to avoid warnings.
5463
5464 2006-05-09  Bruno Haible  <bruno@clisp.org>
5465
5466         * modules/xvasprintf (Files): Add m4/xvasprintf.m4.
5467         (Depends-on): Depend also on xsize, stdarg.
5468         (configure.ac): Add gl_XVASPRINTF.
5469
5470 2006-05-09  Bruno Haible  <bruno@clisp.org>
5471
5472         * m4/xvasprintf.m4: New file.
5473
5474 2006-05-09  Bruno Haible  <bruno@clisp.org>
5475
5476         * lib/xvasprintf.c: Include limits.h, string.h, xsize.h.
5477         (EOVERFLOW): Define fallback value.
5478         (xstrcat): New function.
5479         (xvasprintf): Recognize the special case of a string concatenation.
5480
5481 2006-05-08  Eric Blake  <ebb9@byu.net>
5482
5483         * gnulib-tool (func_version): Base copyright year on CVS date.
5484         (func_emit_copyright_notice): New function.
5485         (func_emit_lib_Makefile_am): Use it.
5486         (func_emit_tests_Makefile_am): Likewise.
5487         (func_import): Likewise.
5488
5489 2006-05-08  Bruno Haible  <bruno@clisp.org>
5490
5491         * modules/stdarg: New file.
5492         * MODULES.html.sh (func_all_modules): Add section for <stdarg.h>.
5493
5494 2006-05-08  Bruno Haible  <bruno@clisp.org>
5495
5496         * m4/stdarg.m4: New file, from GNU gettext.
5497
5498 2006-05-08  Bruno Haible  <bruno@clisp.org>
5499
5500         * config/srclist.txt (build-aux/config.rpath): different from latest
5501         release.
5502
5503 2006-05-08  Bruno Haible  <bruno@clisp.org>
5504
5505         * build-aux/config.rpath: Add support for Sun C 5.9 on Linux.
5506
5507 2006-05-05  Jim Meyering  <jim@meyering.net>
5508
5509         * m4/warning.m4: New file, derived from bison's file by the same name.
5510
5511 2006-05-03  Bruno Haible  <bruno@clisp.org>
5512
5513         * lib/stdint_.h: Shorter URL.
5514         * lib/inttypes.h: Likewise.
5515
5516 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
5517
5518         * modules/inttypes (Maintainer): Change from Derek Price to 'all'.
5519
5520 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
5521
5522         * lib/verify.h: Document the internals better.  Most of this change
5523         was written by Bruno Haible.
5524
5525 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
5526
5527         * doc/verify.texi: New file, partly based on a proposal by
5528         Bruno Haible.
5529
5530 2006-05-02  Bruno Haible  <bruno@clisp.org>
5531
5532         * m4/full-header-path.m4 (gl_FULL_HEADER_PATH): Move the include_next
5533         test from here...
5534         * m4/_inttypes_h.m4 (gl_INTTYPES_H): ... to here.
5535
5536 2006-04-29  Bruno Haible  <bruno@clisp.org>
5537
5538         * lib/gcd.c: Use WORD_T and GCD instead of unsigned long and gcd.
5539         Suggested by Oskar Liljeblad <oskar@osk.mine.nu>.
5540
5541 2006-04-29  Bruno Haible  <bruno@clisp.org>
5542
5543         * gnulib-tool: Make --update option actually work.
5544
5545 2006-04-29  Bruno Haible  <bruno@clisp.org>
5546
5547         * doc/gcd.texi: New file.
5548         * doc/gnulib.texi: Include it.
5549
5550 2006-04-25  Paul Eggert  <eggert@cs.ucla.edu>
5551
5552         * lib/getdate.y (get_date): When adding relative date, start with the
5553         initial time, not with the result of the first mktime call.
5554
5555 2006-04-25  Bruno Haible  <bruno@clisp.org>
5556
5557         * gnulib-tool (func_import): Output the include directives in three
5558         blocks, sorted separately.
5559         Reported by Ben Pfaff <blp@cs.stanford.edu>.
5560
5561 2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
5562
5563         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Use prototype
5564         to define main with arguments, for C++.  Reported by Eric Blake.
5565         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC):
5566         Prefer 'int main ()' to 'int main (void)', for C++.
5567         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Likewise.
5568         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Specify a return type
5569         for 'main', for C99 and C++.
5570
5571 2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
5572
5573         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Use return, not exit.
5574         Don't assume that exit status -1 is valid.
5575         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
5576         * m4/putenv.m4 (gl_FUNC_PUTENV): Likewise.
5577         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Likewise.
5578         * m4/readdir.m4 (GL_FUNC_READDIR): Include <stdlib.h>.
5579         * m4/rename.m4 (vb_FUNC_RENAME): Likewise.
5580         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Use AC_RUN_IFELSE,
5581         not AC_TRY_RUN.  Use return, not exit.  Don't assume that
5582         functions can be used without declaring them, or that you can
5583         exit with status -1.
5584         * m4/utimes-null.m4 (gl_FUNC_UTIMES_NULL): Likewise.
5585
5586 2006-04-24  Karl Berry  <karl@gnu.org>
5587
5588         * config/srclist.txt (longdouble.m4): sync lost.
5589
5590 2006-04-24  Eric Blake  <ebb9@byu.net>
5591
5592         * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Avoid unused variable warning.
5593
5594 2006-04-24  Bruno Haible  <bruno@clisp.org>
5595
5596         * m4/poll.m4 (gl_FUNC_POLL): When cross-compiling, reject also the
5597         poll() implementation in AIX.
5598         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
5599
5600 2006-04-24  Bruno Haible  <bruno@clisp.org>
5601
5602         * m4/poll.m4 (gl_FUNC_POLL): Rearrange code, so that POLL_H gets
5603         assigned exactly once.
5604
5605 2006-04-23  Claudio Fontana  <claudio@gnu.org>
5606             Bruno Haible  <bruno@clisp.org>
5607
5608         * modules/gettext (Makefile.am): Add a -I flag for <libintl.h>.
5609         * gnulib-tool (func_emit_lib_Makefile_am): Emit empty default value
5610         for AM_CPPFLAGS.
5611
5612 2006-04-23  Bruno Haible  <bruno@clisp.org>
5613
5614         * modules/copy-file: Depend on unistd.
5615         * modules/execute: Likewise.
5616         * modules/fatal-signal: Likewise.
5617         * modules/findprog: Likewise.
5618         * modules/mkdtemp : Likewise.
5619         * modules/pipe: Likewise.
5620         * modules/wait-process: Likewise.
5621
5622 2006-04-23  Bruno Haible  <bruno@clisp.org>
5623
5624         * lib/fwriteerror.c (fwriteerror): Call fclose also when an error
5625         condition was already detected.
5626         Reported by Ben Pfaff <blp@cs.stanford.edu>.
5627
5628 2006-04-23  Bruno Haible  <bruno@clisp.org>
5629
5630         * lib/copy-file.c: Include <unistd.h> unconditionally.
5631         * lib/execute.c: Likewise.
5632         * lib/fatal-signal.c: Likewise.
5633         * lib/findprog.c: Likewise.
5634         * lib/mkdtemp.c: Likewise.
5635         * lib/pipe.h: Likewise.
5636         * lib/pipe.c: Likewise.
5637         * lib/wait-process.h: Likewise.
5638
5639 2006-04-23  Bruno Haible  <bruno@clisp.org>
5640
5641         * gnulib-tool (func_usage): Fix --import description. Document
5642         --update.
5643         (func_import): Create temporary file in a temporary directory, if
5644         --dry-run is specified. Silence errors from 'grep' when there are no
5645         m4 files in $m4dir.
5646         (func_create_testdir): Silence errors from 'grep' when there are no
5647         m4 files in $m4dir.
5648         Reported by Karl Berry <karl@freefriends.org>.
5649
5650 2006-04-20  Bruno Haible  <bruno@clisp.org>
5651
5652         * m4/argp.m4 (gl_ARGP): Don't call AC_CHECK_DECLS_ONCE with more than
5653         one argument, so that the code will be portable to Autoconf 2.60.
5654         * m4/getlogin_r.m4 (gl_PREREQ_GETLOGIN_R): Likewise.
5655         * m4/getpass.m4 (gl_PREREQ_GETPASS): Likewise.
5656         * m4/unlocked-io.m4 (gl_FUNC_GLIBC_UNLOCKED_IO): Likewise.
5657
5658 2006-04-19  Derek Price  <derek@ximbiot.com>
5659             Eric Blake  <ebb9@byu.net>
5660
5661         * m4/full-header-path.m4 (gl_FULL_HEADER_PATH): Use </full/path.h>
5662         rather than "/full/path.h".  Update comment to match.  Shorten &
5663         generalize m4_translit call via AS_TR_CPP.
5664
5665 2006-04-19  Derek Price  <derek@ximbiot.com>
5666             Eric Blake  <ebb9@byu.net>
5667
5668         * lib/inttypes.h: Correct grammar in comment.
5669
5670 2006-04-18  Derek Price  <derek@ximbiot.com>
5671             Paul Eggert  <eggert@cs.ucla.edu>
5672
5673         * modules/inttypes: New file.
5674         * modules/strtoimax, modules/strtoumax: Depend on inttypes.
5675
5676 2006-04-18  Derek Price  <derek@ximbiot.com>
5677             Paul Eggert  <eggert@cs.ucla.edu>
5678
5679         * m4/_inttypes_h.m4, full-header-path.m4, include_next: New files.
5680
5681 2006-04-18  Derek Price  <derek@ximbiot.com>
5682             Paul Eggert  <eggert@cs.ucla.edu>
5683
5684         * lib/inttypes.h: New file.
5685         * lib/strtoimax.c: Assume <inttypes.h>.
5686
5687 2006-04-15  Paul Eggert  <eggert@cs.ucla.edu>
5688
5689         * lib/utimens.c (futimens): glibc futimesat messes up if /proc
5690         isn't mounted.  Problem reported by Kir Kolyshkin.
5691
5692 2006-04-13  Paul Eggert  <eggert@cs.ucla.edu>
5693
5694         * lib/regcomp.c (init_dfa): Don't use wchar_t or wctype_t if
5695         RE_ENABLE_I18N is not defined.  Problem reported by Mark D. Baushke via
5696         Derek R. Price.
5697         * lib/regex.h (RE_DUP_MAX): Update comment to match current
5698         implementation.
5699
5700 2006-04-12  Eric Blake  <ebb9@byu.net>
5701
5702         * modules/time_r (Makefile.am): Remove lib_SOURCES line, as this
5703         is now done automatically by the corresponding Autoconf macro.
5704
5705 2006-04-11  Paul Eggert  <eggert@cs.ucla.edu>
5706
5707         * m4/time_r.m4 (gl_TIME_R): Add AC_LIBSOURCES for time_r.c and
5708         time_r.h.
5709
5710 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
5711
5712         Merge regex changes from libc, removing some of our
5713         POSIX-conformance changes that were rejected and redoing them in a
5714         less-intrusive way.
5715
5716         * lib/regcomp.c (re_compile_internal, init_dfa):
5717         Length arg is now size_t, not Idx.  All uses changed.
5718         (peek_token): Forward decl now says internal_function.
5719         (__re_error_msgid, __re_error_msgid_idx):
5720         Now static rather than extern with attribute_hidden.
5721         (re_compile_pattern) [!defined _LIBC]: Use K&R-style defn.
5722         For some reason libc prefers K&R style defns for external functions.
5723         (regerror) [!defined _LIBC]: Likewise.
5724         (re_set_syntax, re_compile_fastmap, regcomp, regfree, re_comp):
5725         (seek_collating_symbol_entry, lookup_collation_sequence_value):
5726         (build_range_exp, build_collating_symbol):
5727         Use K&R-style defn.
5728         (re_compile_fastmap): Use '\0' to memset, not 0.
5729         (utf8_sb_map): Make the calculations more obvious.
5730         (init_dfa, parse_bracket_exp, build_charclass_op):
5731         Call calloc and cast result, as glibc does.
5732         (init_word_char, fetch_token, peek_token, peek_token_bracket):
5733         (build_range_exp, build_collating_symbol):
5734         Now internal functions.
5735
5736         * lib/regex.c [!defined _LIBC]: Allow compiling with C++ compilers.
5737
5738         * lib/regex.h (__USE_GNU_REGEX): New macro.  Don't depend on
5739         _REGEX_SOURCE any more; depend on _GNU_SOURCE instead.
5740         Don't depend on VMS; depend on __VMS instead, for POSIX
5741         namespace cleanness.
5742         (regoff_t): Define to ssize_t, not long int.
5743
5744         Remove the REG_ macros named below.  Instead, make the old names
5745         (e.g., RE_BACKSLASH_ESCAPE_IN_LISTS) visible only if
5746         __USE_GNU_REGEX.
5747         (REG_BACKSLASH_ESCAPE_IN_LISTS):
5748         (REG_BK_PLUS_QM, REG_CHAR_CLASSES, REG_CONTEXT_INDEP_ANCHORS):
5749         (REG_CONTEXT_INDEP_OPS, REG_CONTEXT_INVALID_OPS):
5750         (REG_DOT_NEWLINE, REG_DOT_NOT_NULL, REG_HAT_LISTS_NOT_NEWLINE):
5751         (REG_INTERVALS, REG_LIMITED_OPS, REG_NEWLINE_ALT):
5752         (REG_NO_BK_BRACES, REG_NO_BK_PARENS, REG_NO_BK_REFS):
5753         (REG_NO_BK_VBAR, REG_NO_EMPTY_RANGES):
5754         (REG_UNMATCHED_RIGHT_PAREN_ORD, REG_NO_POSIX_BACKTRACKING):
5755         (REG_NO_GNU_OPS, REG_DEBUG, REG_INVALID_INTERVAL_ORD):
5756         (REG_IGNORE_CASE, REG_CARET_ANCHORS_HERE):
5757         (REG_CONTEXT_INVALID_DUP, REG_NO_SUB, REG_SYNTAX_EMACS):
5758         (REG_SYNTAX_AWK, REG_SYNTAX_GNU_AWK, REG_SYNTAX_POSIX_AWK):
5759         (REG_SYNTAX_GREP, REG_SYNTAX_EGREP, REG_SYNTAX_POSIX_EGREP):
5760         (REG_SYNTAX_ED, REG_SYNTAX_SED, _REG_SYNTAX_POSIX_COMMON):
5761         (REG_SYNTAX_POSIX_BASIC, REG_SYNTAX_POSIX_MINIMAL_BASIC):
5762         (REG_SYNTAX_POSIX_EXTENDED, REG_SYNTAX_POSIX_MINIMAL_EXTENDED):
5763         (REG_DUP_MAX, REG_UNALLOCATED, REG_REALLOCATE, REG_FIXED):
5764         (REG_NREGS):
5765         Remove.  All uses replaced by the old RE_* names.
5766         (RE_BACKSLASH_ESCAPE_IN_LISTS):
5767         (RE_BK_PLUS_QM, RE_CHAR_CLASSES, RE_CONTEXT_INDEP_ANCHORS):
5768         (RE_CONTEXT_INDEP_OPS, RE_CONTEXT_INVALID_OPS):
5769         (RE_DOT_NEWLINE, RE_DOT_NOT_NULL, RE_HAT_LISTS_NOT_NEWLINE):
5770         (RE_INTERVALS, RE_LIMITED_OPS, RE_NEWLINE_ALT):
5771         (RE_NO_BK_BRACES, RE_NO_BK_PARENS, RE_NO_BK_REFS):
5772         (RE_NO_BK_VBAR, RE_NO_EMPTY_RANGES):
5773         (RE_UNMATCHED_RIGHT_PAREN_ORD, RE_NO_POSIX_BACKTRACKING):
5774         (RE_NO_GNU_OPS, RE_DEBUG, RE_INVALID_INTERVAL_ORD):
5775         (RE_IGNORE_CASE, RE_CARET_ANCHORS_HERE):
5776         (RE_CONTEXT_INVALID_DUP, RE_NO_SUB):
5777         Don't bother having these macros be independent of each others'
5778         values, since they no longer exist in the POSIX name space.
5779
5780         Rename the following member names back to their old names,
5781         unless !__USE_GNU_REGEX.  All uses changed back.
5782         (buffer): Renamed from re_buffer.
5783         (allocated): Renamed from re_allocated.
5784         (used): Renamed from re_used.
5785         (syntax): Renamed from re_syntax.
5786         (fastmap): Renamed from re_fastmap.
5787         (translate): Renamed from re_translate.
5788         (can_be_null): Renamed from re_can_be_null.
5789         (regs_allocated): Renamed from re_regs_allocated.
5790         (fastmap_accurate): Renamed from re_fastmap_accurate.
5791         (no_sub): Renamed from re_no_sub.
5792         (not_bol): Renamed from re_not_bol.
5793         (not_eol): Renamed from re_not_eol.
5794         (newline_anchor): Renamed from re_newline_anchor.
5795         (num_regs): Renamed from rm_num_regs.
5796         (start): Renamed from rm_start.
5797         (end): Renamed from rm_end.
5798
5799         (free_state): Move up a bit.
5800
5801         * lib/regex_internal.h (inline) [__GNUC__ < 3 && defined _LIBC]:
5802         #define to be empty.
5803         (ASCII_CHARS): New macro, replacing all uses of 0x80 and/or SBC_MAX / 2
5804         when that is what is intended.
5805         (SBC_MAX): Define to UCHAR_MAX + 1, not 256.
5806         (__re_error_msgid, __re_error_msgid_idx): Remove decls; not needed.
5807         (MAX): New macro.
5808         (re_xmalloc, re_calloc, re_xrealloc, re_x2realloc): Remove.
5809         All uses changed back to re_malloc, etc.  It's now the caller's
5810         responsibility to check for overflow; all callers changed.
5811         (re_alloc_oversized, re_x2alloc_oversized, re_xnmalloc, re_xnrealloc):
5812         (re_x2nrealloc): Remove.
5813         (free_state): Remove decl.
5814
5815         * lib/regexc.c (regexec, re_match, re_search, re_match_2, re_search_2):
5816         (re_set_registers, re_exec):
5817         Use K&R-style defn.
5818
5819         2006-01-31  Roland McGrath  <roland@redhat.com>
5820
5821         * lib/regcomp.c (calc_eclosure_iter): Remove dead variables.
5822         Reported by Mike Frysinger <vapier@gentoo.org>.
5823
5824         2006-01-15  Andreas Jaeger  <aj@suse.de>
5825
5826         [BZ #1950]
5827         * lib/regex_internal.c (re_string_reconstruct): Adjust for
5828         build_wcs_upper_buffer change.
5829         (build_wcs_upper_buffer): Change return type.
5830
5831         2005-12-10  Ulrich Drepper  <drepper@redhat.com>
5832
5833         * lib/regex_internal.h: Include <stdint.h> if available.
5834
5835         2005-12-06  Paolo Bonzini  <bonzini@gnu.org>
5836
5837         * lib/regex_internal.h (SIZE_MAX): Provide a default definition.
5838
5839         2005-10-14  Ulrich Drepper  <drepper@redhat.com>
5840
5841         * lib/regcomp.c: Adjust for changed secondary hash function.
5842
5843         2005-09-30  Ulrich Drepper  <drepper@redhat.com>
5844
5845         * lib/regex.h: Pretty printing.
5846         Clean up namespace a bit.
5847
5848         2005-09-30  Jakub Jelinek  <jakub@redhat.com>
5849
5850         * lib/regexec.c (update_cur_sifted_state, check_arrival,
5851         check_arrival_add_next_nodes): Avoid using uninitialized variable.
5852
5853         2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
5854                     Ulrich Drepper  <drepper@redhat.com>
5855
5856         [BZ #1302]
5857         * lib/regex_internal.h (bitset_t): Renamed from bitset.  All uses
5858         changed.
5859         (bitset_word_t): Renamed from bitset_word.  All uses changed.
5860
5861         2005-09-22  Ulrich Drepper  <drepper@redhat.com>
5862
5863         [BZ #281]
5864         * lib/regex.h: Define RE_TRANSLATE_TYPE as unsigned char *.
5865         * lib/regcomp.c: Remove unnecessary uses of
5866         unsigned RE_TRANSLATE_TYPE.
5867         * lib/regex_internal.h: Likewise.
5868         * lib/regex_internal.c: Likewise.
5869         * lib/regexec.c: Likewise.
5870         Based on a patch by Stepan Kasal <kasal@ucw.cz>.
5871
5872         2005-09-07  Ulrich Drepper  <drepper@redhat.com>
5873
5874         * lib/regexec.c (find_recover_state): Remove unnecessary
5875         initialization.
5876         (transit_state_bkref): Make DFA a const pointer.
5877         (get_subexp): Likewise.
5878         (check_arrival): Likewise.
5879         (update_cur_sifted_state): Likewise.
5880         (re_search_internal): Likewise.
5881         (prune_impossible_nodes): Likewise.
5882         (acquire_init_state_context): Likewise.
5883         (proceed_next_node): Likewise.
5884         (set_regs): Likewise.
5885         (free_fail_stack_return): Likewise.
5886         (check_arrival_expand_ecl): Mark DFA parameter as const.
5887         (check_arrival_expand_ecl_sub): Likewise.
5888         (check_subexp_limits): Likewise.
5889         (sub_epsilon_src_nodes):  Likewise.
5890         (add_epsilon_src_nodes):  Likewise.
5891         (merge_state_array): Likewise.
5892         (update_regs): Likewise.
5893         (build_trtable): Likewise.
5894         (sift_states_backward): Mark MCTX parameter as const.
5895         (build_sifted_states): Likewise.
5896         (update_cur_sifted_state): Likewise.
5897         (sift_states_mkref): Likewise.
5898         (check_arrival_expand_ecl): Mark eclosure as const.
5899         (check_dst_limits_calc_pos_1): Likewise.
5900         * lib/regex_internal.h (re_match_context_t): Make dfa a const
5901         pointer.
5902
5903         2005-09-06  Ulrich Drepper  <drepper@redhat.com>
5904
5905         * lib/regexec.c (merge_state_with_log): Define dfa as const pointer.
5906         (transit_state_sb): Likewise.
5907         (transit_state_mb): Likewise.
5908         (sift_states_iter_mb): Likewise.
5909         (check_arrival_add_next_nodes): Likewise.
5910         (check_node_accept_bytes): Change first parameter to pointer-to-const.
5911         [_LIBC] (re_search_2_stub): Use mempcpy.
5912
5913         * lib/regex_internal.c (re_string_reconstruct): Avoid calling
5914         mbrtowc for very simple UTF-8 case.
5915
5916         * lib/regex_internal.c (re_acquire_state): Make DFA pointer arg
5917         a pointer-to-const.
5918         (re_acquire_state_context): Likewise.
5919         * lib/regex_internal.h: Adjust prototypes.
5920
5921         * lib/regex.c: Prevent using C++ compilers.
5922
5923         * lib/regex_internal.c (re_acquire_state): Minor code rearrangement.
5924         (re_acquire_state_context): Likewise.
5925
5926 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
5927
5928         * modules/regex (Depends-on): Add ssize_t.
5929
5930 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
5931
5932         * m4/regex.m4 (gl_REGEX): Check for new glibc interface to
5933         translation table.
5934
5935 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
5936
5937         * doc/gnulib-tool.texi (Modified imports): pathname -> file name.
5938
5939 2006-03-29  Mark D. Baushke  <mdb@gnu.org>
5940             Bruno Haible  <bruno@clisp.org>
5941
5942         * lib/stdint_.h: On OpenBSD, don't redefine types already included in
5943         <sys/types.h> and <inttypes.h>.
5944
5945 2006-03-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5946
5947         * m4/argz.m4 (gl_FUNC_ARGZ): If we define `error_t', also define
5948         `__error_t_defined', so argp.h will not typedef the former.
5949
5950 2006-03-25  Paul Eggert  <eggert@cs.ucla.edu>
5951
5952         * m4/regex.m4 (gl_REGEX): Don't insist on REG_SYNTAX_POSIX_EGREP,
5953         REG_SYNTAX_EMACS, and REG_IGNORE_CASE.  Settle for the traditional
5954         glibc names.  Even if glibc is changed to conform to POSIX, the
5955         traditional names will be available anyway, since regex depends on
5956         the extensions module.  Also, fix a longstanding typo in the
5957         implementation of Spencer ERE test #75 from grep 2.3.  Problems
5958         reported by Emanuele Giaquinta.  Also, change sense of cached
5959         variable, so that the message makes sense.
5960
5961 2006-03-24  Simon Josefsson  <jas@extundo.com>
5962
5963         * lib/base64.c: Fix problems reported by Eric Blake <ebb9@byu.net>,
5964         including some doc fixes.
5965         (base64_encode_alloc): Fix +1 bug on allocation failures.
5966
5967 2006-03-24  Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
5968
5969         * lib/base64.c (base64_encode): Do not read past end of array with
5970         unsanitized input on systems with CHAR_BIT > 8.
5971
5972 2006-03-24  Eric Blake  <ebb9@byu.net>
5973
5974         * lib/time_r.c (copy_string_result): Remove, as it is no longer used.
5975
5976 2006-03-22  Karl Berry  <karl@gnu.org>
5977
5978         * config/srclist.txt (*setenv.[ch]): get from coreutils.
5979         * config/srclistvars.sh (COREUTILS): new var.
5980
5981 2006-03-17  Jim Meyering  <jim@meyering.net>
5982
5983         * m4/regex.m4 (gl_REGEX): Fix typo in last change:
5984         s/_REGEX_WIDE_OFFSETS/_REGEX_LARGE_OFFSETS/.
5985
5986 2006-03-16  Paul Eggert  <eggert@cs.ucla.edu>
5987
5988         * m4/regex.m4 (gl_REGEX): Don't check for off_t, since the code
5989         no longer needs it.  Instead, check that regoff_t is as least
5990         as wide as ptrdiff_t.
5991
5992         Don't define _REGEX_WIDE_OFFSETS unless using the included regex,
5993         so that our regex.h stays compatible with the installed regex.
5994         This is helpful for installers who configure --without-included-regex.
5995         Problem reported by Emanuele Giaquinta.
5996
5997 2006-03-16  Paul Eggert  <eggert@cs.ucla.edu>
5998
5999         * lib/regex.h (regoff_t) [defined _REGEX_LARGE_OFFSETS]:
6000         Typedef to long int, not to off_, as POSIX will likely change
6001         in that direction.
6002
6003 2006-03-15  Eric Blake  <ebb9@byu.net>
6004
6005         * m4/dirfd.m4 (gl_FUNC_DIRFD): Use AC_REQUIRE for AC_HEADER_DIRENT.
6006
6007 2006-03-13  Sergey Poznyakoff  <gray@gnu.org.ua>
6008
6009         * lib/argp-help.c (validate_uparams): Fix typo
6010         * lib/argp-parse.c (argp_default_options): Consistently begin help
6011         messages with a lowercase letter.
6012
6013 2006-03-11  Paul Eggert  <eggert@cs.ucla.edu>
6014
6015         * lib/time_r.h (asctime_r, ctime_r): Remove.  These functions can
6016         overrun buffers and shouldn't be used (much as gets shouldn't be
6017         used).
6018         * lib/time_r.c (asctime_r, ctime_r): Likewise.
6019
6020 2006-03-08  Simon Josefsson  <jas@extundo.com>
6021
6022         * m4/gc-random.m4: Permit 'no' as variable values and fix warnings,
6023         suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
6024
6025 2006-03-08  Simon Josefsson  <jas@extundo.com>
6026
6027         * m4/gc-random.m4: Call AC_CANONICAL_HOST and use $host_os instead of
6028         $target, suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
6029
6030 2006-03-08  Simon Josefsson  <jas@extundo.com>
6031
6032         * lib/gc-gnulib.c (randomize): Don't open files called 'no', they
6033         signal that configure disabled the device.
6034
6035 2006-03-08  Simon Josefsson  <jas@extundo.com>
6036
6037         * build-aux/maint.mk: Fix refresh-po, to handle no translated
6038         languages.
6039
6040 2006-03-07  Simon Josefsson  <jas@extundo.com>
6041
6042         * modules/getopt (Depends-on): Add unistd.
6043
6044         * modules/unistd: New file.
6045
6046 2006-03-07  Simon Josefsson  <jas@extundo.com>
6047
6048         * modules/gc-random: New file.
6049
6050 2006-03-07  Simon Josefsson  <jas@extundo.com>
6051
6052         * m4/unistd_h.m4: New file.
6053
6054 2006-03-07  Simon Josefsson  <jas@extundo.com>
6055
6056         * m4/readline.m4 (gl_FUNC_READLINE): Rewrite the cached part of the
6057         test to be side-effect free by storing the result in the cache
6058         variable gl_cv_lib_readline, and moving the assignment of
6059         LIBREADLINE and LTLIBREADLINE outside the COMMANDS-TO-SET-IT.
6060         From Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
6061
6062 2006-03-07  Simon Josefsson  <jas@extundo.com>
6063
6064         * m4/gc-random.m4: New file, mostly from gc.m4.  Warn instead of
6065         error on missing devices (the functions will return an error).
6066
6067         * m4/gc.m4: Move random stuff to gc-random.m4
6068
6069 2006-03-07  Simon Josefsson  <jas@extundo.com>
6070
6071         * lib/unistd_.h: New file.
6072
6073 2006-03-07  Simon Josefsson  <jas@extundo.com>
6074
6075         * lib/gc-libgcrypt.c, gc-gnulib.c: Use GC_USE_RANDOM.
6076
6077 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
6078
6079         * m4/unistd_h.m4 (gl_HEADER_UNISTD): Rename, to match modules file.
6080         Problem reported by Juan Manuel Guerrero.
6081
6082 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
6083
6084         * lib/c-stack.c: Include unistd.h unconditionally, since we now assume
6085         the unistd module.
6086         * lib/getlogin_r.c: Likewise.
6087         * lib/getlogin_r.h: Likewise.
6088         * lib/glob.c: Likewise.
6089         * lib/pagealign_alloc.c: Likewise.
6090         * lib/unistd_.h: Remove; no longer needed.
6091
6092 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
6093
6094         * MODULES.html.sh (Support for systems lacking POSIX:2001):
6095         Add unistd.
6096         * modules/c-stack (Depends-on): Add unistd.
6097         * modules/getlogin_r: Likewise.
6098         * modules/glob: Likewise.
6099         * modules/pagealign_alloc: Likewise.
6100         * modules/unistd (Files): Remove lib/unistd_.h.
6101         (EXTRA_DIST): Remove.
6102         (unistd.h): Create using 'echo' rather than 'cp', so that we don't
6103         need unistd_.h.
6104         (MOSTLYCLEANFILES): Remove unistd.h-t.
6105
6106 2006-03-03  Simon Josefsson  <jas@extundo.com>
6107
6108         * build-aux/maint.mk: Add several syntax checks from CoreUtils.
6109
6110 2006-03-03  Simon Josefsson  <jas@extundo.com>
6111
6112         * build-aux/maint.mk: Add refresh-po rule, based on ideas from
6113         libidn and bison.
6114
6115 2006-03-03  Simon Josefsson  <jas@extundo.com>
6116
6117         * build-aux/maint.mk: Add indent target.
6118
6119 2006-03-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de> (tiny change)
6120
6121         * m4/poll.m4 (gl_FUNC_POLL): If we deem poll(2) unacceptable, use
6122         our replacement poll.h in any case, to avoid a differing
6123         declaration from a system header.  Seen on AIX.
6124
6125 2006-03-01  Simon Josefsson  <jas@extundo.com>
6126
6127         * lib/readline.c: Fix typo, tiny patch from Stepan Kasal
6128         <kasal@ucw.cz>.
6129
6130 2006-03-01  Paul Eggert  <eggert@cs.ucla.edu>
6131
6132         * modules/gettime (Depends-on): Add extensions module.
6133         * modules/nanosleep (Depends-on): Likewise.
6134         * modules/settime (Depends-on): Likewise.
6135
6136 2006-03-01  Paul Eggert  <eggert@cs.ucla.edu>
6137
6138         * m4/clock_time.m4 (gl_CLOCK_TIME): Require gl_USE_SYSTEM_EXTENSIONS,
6139         not merely AC_GNU_SOURCE, for the benefit of Solaris 10 when compiled
6140         pedantically.
6141         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
6142         * m4/timespec.m4 (gl_TIMESPEC): Likewise.
6143
6144         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Use "=" with "test",
6145         not "==".  Reported by Ralf Wildenhues.
6146
6147 2006-03-01  Karl Berry  <karl@gnu.org>
6148
6149         * doc/Copyright/request-*: new files, synced from gnuorg.
6150
6151 2006-03-01  Karl Berry  <karl@gnu.org>
6152
6153         * config/srclist.txt (Copyright/*): new entries.
6154
6155 2006-02-28  Simon Josefsson  <jas@extundo.com>
6156
6157         * lib/getopt.c: Protect #include of unistd.h, for MSVS.
6158
6159 2006-02-27  Simon Josefsson  <jas@extundo.com>
6160
6161         * lib/base64.h: Indent #define's.  From Jim Meyering
6162         <jim@meyering.net>.
6163
6164 2006-02-27  Jim Meyering  <jim@meyering.net>
6165
6166         Revert the change of 2006-02-24, so these files can continue
6167         to be sync'd from gettext.
6168         * lib/mkdtemp.c, setenv.c, unsetenv.c: *Un*-normalize inclusion
6169         of `config.h'.
6170
6171 2006-02-26  Paul Eggert  <eggert@cs.ucla.edu>
6172
6173         * modules/intprops: New file.
6174         * MODULES.html.sh (Numeric conversion functions <stdlib.h>):
6175         Add intprops.
6176         * modules/getloadavg (Files): Remove lib/intprops.h.
6177         (Depends-on): Add intprops.
6178         * modules/human: Likewise.
6179         * modules/inttostr: Likewise.
6180         * modules/openat: Likewise.
6181         * modules/sig2str: Likewise.
6182         * modules/userspec: Likewise.
6183         * modules/utimecmp: Likewise.
6184         * modules/xnanosleep: Likewise.
6185         * modules/xstrtol: Likewise.
6186
6187 2006-02-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny changes)
6188
6189         * modules/xstrtod: Omit xstrtod.h, xstrtod.c; they're in LIB_SOURCES.
6190         * modules/lock-tests (TESTS): Use $(EXEEXT).
6191         * modules/tls-tests: Likewise.
6192         * modules/argp-tests: Likewise.
6193         (check_PROGRAMS): New var, replacing...
6194         (noinst_PROGRAMS, test_argp_SOURCES): Remove.
6195
6196 2006-02-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6197
6198         * lib/mkdtemp.c, lib/setenv.c, lib/unsetenv.c: Normalize inclusion of
6199         `config.h'.
6200
6201 2006-02-24  Paul Eggert  <eggert@cs.ucla.edu>
6202
6203         * lib/glob.c: Say "invalid" rather than "illegal" in comments.
6204
6205 2006-02-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6206
6207         Sync from coreutils.
6208         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Require gl_FUNC_LCHMOD and
6209         gl_CHDIR_SAFER.
6210
6211 2006-02-22  Jim Meyering  <jim@meyering.net>
6212
6213         Sync from coreutils.
6214         * m4/chdir-safer.m4: New file.
6215
6216 2006-02-20  Paul Eggert  <eggert@cs.ucla.edu>
6217
6218         * lib/getcwd.c (AT_FDCWD): Work around a bug in Solaris 9 and 10, where
6219         AT_FDCWD exceeds INT_MAX.
6220         * lib/openat.h (AT_FDCWD): Likewise.
6221
6222 2006-02-17  Eric Blake  <address@hidden>
6223
6224         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Fix caching error.
6225
6226 2006-02-16  Simon Josefsson  <jas@extundo.com>
6227
6228         * modules/getaddrinfo (Depends-on): Add sys_socket.
6229
6230 2006-02-15  Simon Josefsson  <jas@extundo.com>
6231
6232         * build-aux/maint.mk: Add dsyntax-check rule.
6233
6234 2006-02-15  Eric Blake  <ebb9@byu.net>
6235
6236         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Don't attempt using
6237         winsock2.h or ws2tcpip.h when sys/socket.h is present. Fixes
6238         'present but cannot compile' warnings on cygwin.
6239         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Use gl_HEADER_SYS_SOCKET.  Don't
6240         use ws2tcpip.h if sys/socket.h works.
6241         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Use gl_HEADER_SYS_SOCKET.
6242         (gl_GETADDRINFO): Don't use ws2tcpip.h when sys/socket.h is present.
6243
6244 2006-02-14  Simon Josefsson  <jas@extundo.com>
6245
6246         * modules/maintainer-makefile (Files): Rename.
6247
6248         * build-aux/GNUmakefile: Rename Makefile.maint to maint.mk
6249         and (the local) Makefile.cfg to maint-cfg.mk.
6250
6251         * build-aux/Makefile.maint, build-aux/maint.mk: Renamed the former
6252         to the latter.
6253
6254         * modules/maintainer-makefile: New module.
6255
6256         * build-aux/Makefile.maint: New file, from GNU CoreUtils, although
6257         severaly stripped to make it possible to build it up from scratch
6258         with reliable tests.
6259
6260         * build-aux/GNUmakefile: New file, from GNU CoreUtils with some
6261         fixes to permit overriding the default actions when configure and
6262         makefile are not available.
6263
6264 2006-02-14  Paul Eggert  <eggert@cs.ucla.edu>
6265
6266         Sync from coreutils.
6267         * modules/lstat (Depends-on): Don't depend on xalloc.
6268         (License): Change from GPL to LGPL, since this is now simply a
6269         replacement for a libc function.
6270
6271 2006-02-14  Jim Meyering  <jim@meyering.net>
6272
6273         Sync from coreutils.
6274
6275         Eliminate the unwelcome (albeit unlikely) possibility of xmalloc
6276         failure on deficient systems, and simplify gnulib lgpl dependencies.
6277         * lib/lstat.c (rpl_lstat): Rewrite to use stat() in place of the
6278         xmalloc/lstat combination.  Based on a patch from Bruno Haible.
6279
6280         * lib/xalloc-die.c: Remove unused definition of N_.
6281
6282 2006-02-14  Jim Meyering  <jim@meyering.net>
6283
6284         Sync from coreutils.
6285         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Invoke
6286         AC_CHECK_FUNCS(getmntent) unconditionally so that tests of
6287         $ac_cv_func_getmntent (e.g., in gl_LIST_MOUNTED_FILE_SYSTEMS) need not
6288         double-quote uses of that variable, to accommodate the rare case in
6289         which getmntent is available in none of the libraries checked.  This
6290         happens at least on FreeBSD 5.0.
6291
6292 2006-02-13  Simon Josefsson  <jas@extundo.com>
6293
6294         * gnulib-tool (Usage): Fix --import, from
6295         karl@freefriends.org (Karl Berry).
6296
6297 2006-02-13  Sergey Poznyakoff  <gray@gnu.org.ua>
6298
6299         * lib/argp-fmtstream.c: Restore another bugfix lost on 2005-12-12
6300
6301 2006-02-07  Sergey Poznyakoff  <gray@gnu.org.ua>
6302
6303         * lib/argp-namefrob.h: Restore changes accidentally lost during the
6304         "autoupdate" on 2005-12-12.
6305
6306 2006-02-07  Paul Eggert  <eggert@cs.ucla.edu>
6307
6308         * modules/closeout (Depends-on): Remove atexit.
6309
6310 2006-02-07  Paul Eggert  <eggert@cs.ucla.edu>
6311
6312         * lib/closeout.c (close_stdout): Don't assume 'bool' converts nonzero
6313         ints to 0 or 1, as this isn't true for the stdbool.h substitute.
6314
6315 2006-02-05  Paul Eggert  <eggert@cs.ucla.edu>
6316
6317         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Don't #define
6318         __EXTENSIONS__ if this causes compilation to fail.  Problem
6319         reported by Nelson H. F. Beebe with Solaris 10 and Sun C 5.7
6320         c89 -D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED.
6321
6322 2006-01-27  Paul Eggert  <eggert@cs.ucla.edu>
6323
6324         * lib/fnmatch.c (L_): Renamed from L, to work around a bug in
6325         Mac OS X 10.3.9 with GCC 3 reported by Claudio Fontana in
6326         <http://lists.gnu.org/archive/html/bug-gnulib/2006-01/msg00074.html>.
6327         All uses changed.
6328
6329 2006-01-26  Simon Josefsson  <jas@extundo.com>
6330
6331         * lib/socket_.h: Set WINVER to 0x0501, to make sure getaddrinfo
6332         prototype is visible on mingw32.
6333
6334         * lib/getaddrinfo.h: Define EAI_ADDRFAMILY and EAI_SYSTEM if not set,
6335         for mingw32.
6336
6337         * lib/gai_strerror.c, getaddrinfo.h: Protect netdb.h #include (for
6338         mingw32).
6339
6340 2006-01-26  Paul Eggert  <eggert@cs.ucla.edu>
6341
6342         * lib/fts.c (diropen): Open with O_NOCTTY | O_NONBLOCK too.  Don't
6343         attempt to open for write; this always fails, at least on POSIX
6344         hosts.  This reinstates the 2006-01-09 change, which was
6345         inadvertently removed.
6346
6347 2006-01-26  Bruno Haible  <bruno@clisp.org>
6348
6349         * gnulib-tool (func_import): Use "trap 'exit $?' instead of "trap :".
6350         Reported by Paul Eggert.
6351
6352 2006-01-26  Bruno Haible  <bruno@clisp.org>
6353             Paul Eggert  <eggert@cs.ucla.edu>
6354
6355         * lib/stdbool_.h (_Bool)
6356         [(! (defined __cplusplus || defined __BEOS__)
6357           && !defined __GNUC__
6358           && !(defined __HP_cc || defined __xlc__
6359                || (defined __SUNPRO_C && (__SUNPRO_C < 0x550 || __STDC__ == 1))
6360                || defined __sgi))]:
6361         #define to signed char in these cases too; this simplifies
6362         the code (so that we don't have to worry about HP-UX, AIX, SunPRO,
6363         etc., separately) and makes it more conservative.
6364
6365 2006-01-25  Simon Josefsson  <jas@extundo.com>
6366
6367         * m4/getaddrinfo.m4: Look for getaddrinfo inside ws2tcip.h and
6368         -lws2_32.  Protect sys/socket.h and netdb.h #include's.  Include
6369         ws2tcpip.h with WINVER=0x0501.  All for mingw32.
6370
6371 2006-01-25  Sergey Poznyakoff  <gray@gnu.org.ua>
6372
6373         * lib/argp-namefrob.h: Bugfix. Remove stray #
6374
6375 2006-01-25  Paul Eggert  <eggert@cs.ucla.edu>
6376
6377         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check for xlc bug if __GCC__ too,
6378         so that we test the test.
6379         Check for yet another HP-UX cc bug involving *bool |= bool.
6380
6381 2006-01-25  Karl Berry  <karl@gnu.org>
6382
6383         * config/srclist.txt (vasnprintf.c): sync lost.
6384
6385 2006-01-25  Jim Meyering  <jim@meyering.net>
6386
6387         Sync from the stable (b5) branch of coreutils:
6388
6389         * lib/fts.c (fts_children): Don't let close() clobber errno from
6390         failed fchdir().
6391
6392         * lib/fts.c (fts_stat): When following a symlink-to-directory,
6393         don't necessarily interpret stat-fails+lstat-succeeds as indicating
6394         a dangling symlink.  That can also happen at least for ELOOP.
6395         The fix: return FTS_SLNONE only when the stat errno is ENOENT.
6396         FYI, this bug predates the inclusion of fts.c in coreutils.
6397
6398         * lib/fts.c (fts_open): Put new maxarglen declaration and uses
6399         in their own block, so pre-c99 compilers don't object.
6400
6401         Avoid the double-free (first in fts_read, second in fts_close) that
6402         would occur when an `active' directory is made inaccessible (e.g.,
6403         via chmod a-x) during a traversal.
6404         * lib/fts.c (fts_read): After a failed fchdir, update sp->fts_cur
6405         before returning.  Reproduce this failure by
6406         mkdir -p a/b; cd a; chmod a-x . b
6407         Reported by Stavros Passas.
6408
6409 2006-01-25  Jim Meyering  <jim@meyering.net>
6410
6411         * lib/fileblocks.c: Remove more useless parentheses.
6412         * lib/readutmp.h: Likewise.
6413
6414 2006-01-25  Bruno Haible  <bruno@clisp.org>
6415
6416         * lib/stdbool_.h (_Bool) [IRIX cc]: Define as 'signed char', to avoid
6417         warnings.
6418         Reported by Paul Eggert.
6419
6420 2006-01-25  Bruno Haible  <bruno@clisp.org>
6421
6422         * gnulib-tool (func_import): Use "trap :" instead of "trap -" to get
6423         rid of a trap command. For Solaris sh.
6424         Reported by Mark D. Baushke <mdb@gnu.org>.
6425
6426 2006-01-24  Simon Josefsson  <jas@extundo.com>
6427
6428         * lib/socket_.h (SHUT_WR, SHUT_RDWR): Don't hardcode, suggested by
6429         Bruno.
6430
6431 2006-01-24  Karl Berry  <karl@gnu.org>
6432
6433         * config/srclist.txt (argp-namefrob.h): sync lost.
6434
6435 2006-01-24  Jim Meyering  <jim@meyering.net>
6436
6437         * modules/openat (Files): Add lib/intprops.h.
6438         From Mark D. Baushke.
6439
6440 2006-01-24  Jim Meyering  <jim@meyering.net>
6441
6442         * m4/openat.m4 (gl_FUNC_OPENAT): Add AC_LIBSOURCES([intprops.h]).
6443         Reported by Mark D. Baushke.
6444
6445 2006-01-24  Jim Meyering  <jim@meyering.net>
6446
6447         * lib/socket_.h: Remove useless parentheses in uses of cpp `defined'.
6448
6449 2006-01-24  Bruno Haible  <bruno@clisp.org>
6450
6451         * modules/strnlen (Maintainer): Change from glibc to all.
6452
6453 2006-01-24  Bruno Haible  <bruno@clisp.org>
6454
6455         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check for IBM and HP-UX bugs.
6456         Patch by Paul Eggert.
6457
6458 2006-01-24  Bruno Haible  <bruno@clisp.org>
6459
6460         * lib/stdbool_.h (_Bool) [__cplusplus]: Don't define if the compiler
6461         already has it.
6462         Report and patch by Albert Chin-A-Young  <china@thewrittenword.com> on
6463         2005-11-26.
6464
6465         * lib/stdbool_.h (_Bool) [HP-UX cc, AIX cc,xlc]: Define as
6466         'signed char' to avoid problems with the built-in _Bool type.
6467         Reported by Paul Eggert on 2005-11-26.
6468
6469 2006-01-24  Bruno Haible  <bruno@clisp.org>
6470
6471         * gnulib-tool (func_import): Avoid constructing complicated sed
6472         expressions inside backquote.
6473         Report and solution by Mark D. Baushke <mdb@gnu.org>.
6474
6475 2006-01-23  Ulrich Drepper  <drepper@redhat.com>
6476
6477         These changes imported from libc.
6478         * lib/getopt.c: Use __fxprintf instead of inline stream orientation
6479         test and two separate function calls.
6480         * lib/strndup.c (__strndup): Add libc_hidden_def.
6481
6482 2006-01-23  Simon Josefsson  <jas@extundo.com>
6483
6484         * modules/lock-tests: Use check_PROGRAMS instead of noinst_PROGRAMS.
6485         Remove the test_*_SOURCES variable: automake infers it by default.
6486         * modules/tls-tests: Likewise.
6487
6488 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
6489
6490         Work around porting bugs reported by Dieter in
6491         <http://lists.gnu.org/archive/html/bug-bison/2006-01/msg00049.html>.
6492         * lib/getopt.c (_NOPROTO): Remove; no longer needed.
6493         Include <stdlib.h> and <unistd.h> in all environments; it's safe now.
6494         Include "getopt.h" first, to check interface.
6495         (getenv): Declare only if defined HAVE_DECL_GETENV &&
6496         !HAVE_DECL_GETENV.
6497         * lib/strndup.c [!_LIBC]: Include "strndup.h" to get prototype.
6498         (__strndup): Revert to K&R-style function dfns, the glibc style.
6499         * lib/strnlen.c: Don't claim it's taken from glibc; it's not.
6500         (strnlen, __strnlen): Remove #defines and #undefs; not needed.
6501         Include strnlen.h first, to get prototype properly.
6502         (strnlen): Renamed from __strnlen.
6503         Remove weak alias.
6504
6505 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
6506
6507         * m4/getopt.m4 (gl_PREREQ_GETOPT): Check for getenv decl.
6508
6509 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
6510
6511         * config/srclist.txt: Adjust to reflect glibc reorganization.
6512         This affects only comments.
6513
6514 2006-01-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
6515
6516          * gnulib-tool, build-aux/csharpcomp.sh.in: Do not pass `-q' to mktemp.
6517          Reported by Bruce Korb <bkorb@gnu.org>.
6518
6519 2006-01-22  Paul Eggert  <eggert@cs.ucla.edu>
6520
6521         * lib/quotearg.c (quotearg_buffer_restyled): Add "default: break;"
6522         to pacify gcc -Wswitch-default.
6523
6524 2006-01-22  Bruno Haible  <bruno@clisp.org>
6525
6526         * lib/vasnprintf.c (VASNPRINTF): In the computation of the size of the
6527         temporary buffer for sprintf, take into account the precision also
6528         for 'd', 'i', 'u', 'o', 'x', 'X'.
6529
6530 2006-01-21  Sergey Poznyakoff  <gray@gnu.org.ua>
6531
6532         * modules/argp-tests: New module
6533         * tests/test-argp.c: New file
6534         * tests/test-argp-2.sh: New file
6535
6536 2006-01-21  Sergey Poznyakoff  <gray@gnu.org.ua>
6537
6538         * lib/argp-help.c (usage_long_opt): Do not print DOC options.
6539         (__argp_base_name): Removed
6540         * lib/argp-namefrob.h (__argp_basename): Removed definition. Was a
6541         typo.
6542         (__argp_base_name): Provide macro definition or extern declaration
6543         depending on the configuration
6544
6545 2006-01-20  Simon Josefsson  <jas@extundo.com>
6546
6547         * modules/inet_ntop (Depends-on): Depend on sys_socket.
6548
6549 2006-01-20  Simon Josefsson  <jas@extundo.com>
6550
6551         * lib/inet_ntop.h: Unconditionally include sys/socket.h.
6552
6553 2006-01-20  Paul Eggert  <eggert@cs.ucla.edu>
6554
6555         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Use -Wl,-z,ignore
6556         rather than -Xlinker -z -Xlinker ignore, as it's more portable.
6557         Suggested by Bruno Haible.
6558
6559 2006-01-20  Karl Berry  <karl@gnu.org>
6560
6561         * config/srclist.txt (argp-fmtstream.h, localcharset.c): comment out
6562         until changes propagate, I guess.
6563
6564 2006-01-19  Simon Josefsson  <jas@extundo.com>
6565
6566         * m4/socklen.m4: Look in ws2tcpip.h too, for mingw32.
6567
6568 2006-01-19  Simon Josefsson  <jas@extundo.com>
6569
6570         * lib/socket_.h: Map SHUT_RD, SHUT_WR, SHUT_RDWR correctly.
6571
6572 2006-01-19  Simon Josefsson  <jas@extundo.com>
6573
6574         * gnulib-tool: Set check_PROGRAMS.
6575
6576         * modules/arcfour-tests, modules/arctwo-tests, modules/crc-tests,
6577         modules/des-tests, modules/gc-arcfour-tests,
6578         modules/gc-arctwo-tests, modules/gc-des-tests,
6579         modules/gc-hmac-md5-tests, modules/gc-hmac-sha1-tests,
6580         modules/gc-md2-tests, modules/gc-md4-tests, modules/gc-md5-tests,
6581         modules/gc-pbkdf2-sha1-tests, modules/gc-rijndael-tests,
6582         modules/gc-sha1-tests, modules/gc-tests, modules/hmac-md5-tests,
6583         modules/hmac-sha1-tests, modules/md2-tests, modules/md4-tests,
6584         modules/md5-tests, modules/readline, modules/rijndael-tests: Use
6585         check_PROGRAMS instead of noinst_PROGRAMS to be able to remove
6586         test_*_SOURCES.
6587
6588 2006-01-18  Simon Josefsson  <jas@extundo.com>
6589
6590         * modules/socklen (Depends-on): Depend on sys_socket.
6591
6592 2006-01-18  Simon Josefsson  <jas@extundo.com>
6593
6594         * modules/arcfour-tests, modules/arctwo-tests, modules/crc-tests,
6595         modules/des-tests, modules/gc-arcfour-tests,
6596         modules/gc-arctwo-tests, modules/gc-des-tests,
6597         modules/gc-hmac-md5-tests, modules/gc-hmac-sha1-tests,
6598         modules/gc-md2-tests, modules/gc-md4-tests, modules/gc-md5-tests,
6599         modules/gc-pbkdf2-sha1-tests, modules/gc-rijndael-tests,
6600         modules/gc-sha1-tests, modules/gc-tests, modules/hmac-md5-tests,
6601         modules/hmac-sha1-tests, modules/md2-tests, modules/md4-tests,
6602         modules/md5-tests, modules/readline, modules/rijndael-tests: Add
6603         $(EXEEXT) to automake TESTS variable, for mingw32.
6604
6605 2006-01-17  Simon Josefsson  <jas@extundo.com>
6606
6607         * modules/socklen (Include): Need sys/socket.h.
6608
6609 2006-01-17  Bruno Haible  <bruno@clisp.org>
6610
6611         * modules/ssize_t (Include): Add <sys/types.h>.
6612
6613 2006-01-16  Paul Eggert  <eggert@cs.ucla.edu>
6614
6615         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Don't use ldd, as
6616         it's not portable and it doesn't work with cross-compiles.
6617         Problem reported by Bruno Haible.  Fix missing-$ typo in
6618         'test "gl_cv_ignore_unused_libraries" ...' that prevented
6619         -zignore from being used with Sun's C compiler.
6620
6621 2006-01-12  Simon Josefsson  <jas@extundo.com>
6622
6623         * lib/base64.c: Fix warning, reported by Bruno Haible
6624         <bruno@clisp.org> and patch by Paul Eggert <eggert@CS.UCLA.EDU>.
6625
6626 2006-01-12  Bruno Haible  <bruno@clisp.org>
6627
6628         * modules/ldd: New file.
6629         * build-aux/ldd.sh.in: New file.
6630         * MODULES.html.sh (Support for building libraries and executables): Add
6631         ldd.
6632
6633 2006-01-12  Bruno Haible  <bruno@clisp.org>
6634
6635         * m4/ldd.m4: New file.
6636
6637 2006-01-12  Bruno Haible  <bruno@clisp.org>
6638
6639         * gnulib-tool (func_import, func_create_testdir): Don't go into an
6640         endless loop while replacing $auxdir with build-aux.
6641
6642 2006-01-11  Simon Josefsson  <jas@extundo.com>
6643
6644         * lib/stdint_.h (SIZE_MAX): Add missing (.
6645
6646 2006-01-11  Paul Eggert  <eggert@cs.ucla.edu>
6647
6648         Sync from coreutils.
6649         * lib/md5.c: Fix commentary typos.
6650         (alignof, UNALIGNED_P): No need for a GCC-specific version.
6651         * lib/md5.h (__attribute__): Remove; unused.
6652         * lib/sha1.c: Fix commentary to match md5 better.
6653         * lib/sha1.h (struct sha1_ctx): Use a word buffer, not a byte buffer,
6654         so that we don't need to worry about alignment.  All uses changed.
6655         This merges the 2005-10-28 md5 change into sha1.
6656
6657 2006-01-11  Jim Meyering  <jim@meyering.net>
6658
6659         Sync from coreutils.
6660         * lib/md5.c (OP): Fix spacing.
6661
6662 2006-01-11  Bruno Haible  <bruno@clisp.org>
6663
6664         Ensure automatic ordering between gl_LOCK and gl_ARGP.
6665         * m4/lock.m4 (gl_LOCK_BODY): Renamed from gl_LOCK.
6666         (gl_LOCK): New macro, requiring gl_LOCK_BODY.
6667
6668 2006-01-11  Bruno Haible  <bruno@clisp.org>
6669
6670         Ensure automatic ordering between gl_LOCK and gl_ARGP.
6671         * gnulib-tool (func_import, func_create_testdir): Put gl_LOCK into
6672         the "early" section as well.
6673
6674 2006-01-11  Bruno Haible  <bruno@clisp.org>
6675
6676         Avoid "ar: no archive members specified" error on MacOS X.
6677         * gnulib-tool (func_modules_add_dummy): New function.
6678         (func_import, func_create_testdir): Invoke it.
6679
6680 2006-01-11  Bruno Haible  <bruno@clisp.org>
6681
6682         * gnulib-tool (func_import, func_create_testdir): Replace build-aux
6683         with $auxdir in AC_CONFIG_FILES statements.
6684
6685 2006-01-11  Bruno Haible  <bruno@clisp.org>
6686
6687         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
6688         Initialize also noinst_HEADERS to empty.
6689
6690 2006-01-11  Bruno Haible  <bruno@clisp.org>
6691
6692         * gnulib-tool (AUTOMAKEPATH, AUTOCONF, ACLOCAL, AUTOMAKE): New
6693         variables.
6694         (func_create_megatestdir): Call aclocal, autoconf, automake here, not
6695         autoreconf.
6696
6697 2006-01-11  Bruno Haible  <bruno@clisp.org>
6698
6699         * gnulib-tool (AUTOCONF, ACLOCAL, AUTOMAKE, AUTORECONF): Make
6700         overridable by the user.
6701         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
6702
6703 2006-01-10  Simon Josefsson  <jas@extundo.com>
6704
6705         * modules/sys_socket: New file.
6706
6707 2006-01-10  Simon Josefsson  <jas@extundo.com>
6708
6709         * m4/sys_socket_h.m4: New file.
6710
6711 2006-01-10  Simon Josefsson  <jas@extundo.com>
6712
6713         * lib/socket_.h: New file.
6714
6715 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
6716
6717         * modules/readutmp (Maintainer): Add myself.
6718
6719 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
6720
6721         * m4/memcoll.m4 (gl_MEMCOLL): Don't require AC_FUNC_MEMCMP, undoing
6722         the 2002-12-31 change.  Problem and fix reported by Bruno Haible.
6723         People who are still concerned with buggy memcmp implementations
6724         can invoke gl_FUNC_MEMCMP themselves.
6725
6726 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
6727
6728         * lib/regex_internal.h (BITSET_WORD_BITS):
6729         Work around a bug in 64-bit PGC (before version 6.1-2), where the
6730         preprocessor mishandles large unsigned values as if they were signed.
6731         Problem reported by Claudio Fontana in
6732         <http://lists.gnu.org/archive/html/bug-gnulib/2005-12/msg00061.html>.
6733
6734 2006-01-10  Jim Meyering  <jim@meyering.net>
6735
6736         Avoid the double-free (first in fts_read, second in fts_close) that
6737         would occur when an `active' directory is made inaccessible (e.g.,
6738         via chmod a-x) during a traversal.
6739         * lib/fts.c (fts_read): After a failed fchdir, update sp->fts_cur
6740         before returning.  Reproduce this failure by
6741         mkdir -p a/b; cd a; chmod a-x . b
6742         Reported by Stavros Passas.
6743
6744         Sync from coreutils.
6745         * lib/sha1.c: Tweak grammar in a comment.
6746
6747 2006-01-10  Jim Meyering  <jim@meyering.net>
6748
6749         * m4/fpending.m4: Also include <stdio.h>, for Dragonfly.
6750         Patch by Joerg Sonnenberger.
6751
6752 2006-01-10  Bruno Haible  <bruno@clisp.org>
6753
6754         * modules/readutmp: Depend on module free.
6755         * modules/strtok_r: Depend on module restrict.
6756
6757 2006-01-10  Bruno Haible  <bruno@clisp.org>
6758
6759         * modules/gettext (configure.ac): Add an invocation of
6760         AM_GNU_GETTEXT_VERSION. Needed since autoreconf is used by gnulib-tool.
6761
6762 2006-01-10  Bruno Haible  <bruno@clisp.org>
6763
6764         * m4/localcharset.m4 (gl_LOCALCHARSET): Also test for getc_unlocked.
6765         Reported by Werner Lemberg <wl@gnu.org>.
6766
6767 2006-01-10  Bruno Haible  <bruno@clisp.org>
6768
6769         * lib/localcharset.c: Update from GNU gettext.
6770
6771 2006-01-10  Bruno Haible  <bruno@clisp.org>
6772
6773         * lib/argp.h (__const): Remove macro. Use const instead.
6774         * lib/argp-fmtstream.h (__const): Likewise.
6775         * lib/glob_.h (__const): Remove macro.
6776         * lib/glob-libc.h: Use const instead of __const.
6777
6778 2006-01-10  Bruno Haible  <bruno@clisp.org>
6779
6780         * gnulib-tool (func_emit_tests_Makefile_am): Emit an empty SUBDIR
6781         variable.
6782         Needed to avoid an automake error regarding the 'gettext' module.
6783
6784 2006-01-09  Simon Josefsson  <jas@extundo.com>
6785
6786         * modules/inet_ntop (Depends-on): Add restrict.
6787
6788 2006-01-09  Simon Josefsson  <jas@extundo.com>
6789
6790         * modules/gc-rijndael-tests (License): Put under LGPL.
6791
6792         * modules/gc-des-tests (License): Likewise.
6793
6794         * modules/gc-arcfour-tests (License): Likewise.
6795
6796         * modules/gc-arctwo-tests (License): Likewise.
6797
6798         * modules/gc-pbkdf2-sha1-tests (License): Likewise.
6799
6800         * modules/gc-hmac-sha1-tests (Files): Likewise.
6801
6802         * modules/gc-hmac-md5-tests (License): Likewise.
6803
6804         * modules/gc-sha1-tests (License): Likewise.
6805
6806         * modules/gc-md5-tests (License): Likewise.
6807
6808         * modules/gc-md4-tests (License): Likewise.
6809
6810         * modules/gc-md2-tests (License): Likewise.
6811
6812         * modules/gc-tests (License): Likewise.
6813
6814         * modules/des-tests (License): Likewise.
6815
6816         * modules/md4-tests (License): Likewise.
6817
6818         * modules/md2-tests (License): Likewise.
6819
6820 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
6821
6822         Sync from coreutils:
6823
6824         * MODULES.html.sh (build_lib): New section, with new lib-ignore module.
6825         * modules/lib-ignore: New file.
6826         * modules/mkdir-p (Files): Add chdir-safer.c, chdir-safer.h, lchmod.h,
6827         chdir-safer.m4, lchmod.m4.
6828         * modules/openat: Add mkdirat.c, openat-priv.h.
6829
6830 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
6831
6832         Sync from coreutils.
6833         * m4/lib-ignore.m4: New file.
6834         * m4/lchmod.m4: New file.
6835
6836 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
6837
6838         Sync from coreutils.
6839         * lib/chdir-long.c (cdb_free): Don't bother trying to open directory
6840         for write access: POSIX says that must fail.
6841         * lib/fts.c (diropen): Likewise.
6842         * lib/save-cwd.c (save_cwd): Likewise.
6843         * lib/chdir-long.c (cdb_free): Open with O_NOCTTY | O_NONBLOCK as
6844         well, for minor improvements on hosts that lack O_DIRECTORY.
6845         * lib/chown.c (rpl_chown) [CHOWN_MODIFIES_SYMLINK]:
6846         Don't try O_WRONLY unless O_RDONLY failed wth EACCES.
6847         Fall back on chown if open failed with EACCES.
6848
6849         * lib/gettime.c (gettime) [!defined OK_TO_USE_1S_CLOCK]:
6850         Report an error at compile-time if only a 1-second nominal clock
6851         resolution is found.
6852
6853         * lib/lchmod.h: New file.
6854         * lib/mkdir-p.c: Include lchmod.h, lchown.h.
6855         (make_dir_parents): Use lchown rather than chown, and
6856         lchmod rather than chmod.
6857
6858         * lib/mountlist.c (ME_DUMMY): "none" and "proc" file systems are
6859         dummies too.  Problem with "none" reported by Bob Proulx.  Problem with
6860         "proc" reported by n0dalus.
6861
6862         * lib/mountlist.c: Include <limits.h>.
6863         (dev_from_mount_options)
6864         [defined MOUNTED_GETMNTENT1 || defined MOUNTED_GETMNTENT2]:
6865         New function.  It no longer assumes "dev=" has the System V meaning
6866         on Linux (since it doesn't).  It also parses "dev=" more carefully.
6867         (read_file_system_list)
6868         [defined MOUNTED_GETMNTENT1 || defined MOUNTED_GETMNTENT2]: Use it.
6869         MOUNTED_GETMNTENT2 is new here; the code didn't used to look for
6870         dev= in that case.
6871
6872         * lib/posixtm.h (PDS_PRE_2000): New macro.
6873         * lib/posixtm.c (year): Arg is now syntax_bits rather than
6874         allow_century.  All usages changed.  Reject dates outside the range
6875         1969-1999 if PDS_PRE_2000 is used.
6876
6877 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
6878
6879         Sync from coreutils.
6880         * doc/getdate.texi (General date syntax): Invalid dates are rejected.
6881         (Time of day items): Mention the possibility of leap seconds.
6882         Problem reported by Dr. David Alan Gilbert.
6883
6884 2006-01-09  Jim Meyering  <jim@meyering.net>
6885
6886         Sync from coreutils.
6887
6888         * lib/version-etc.c (COPYRIGHT_YEAR): Update to 2006.
6889
6890         * lib/chdir-safer.h, chdir-safer.c: New files.
6891
6892         * lib/modechange.c (mode_compile): Reject an invalid mode string
6893         that starts with an octal digit.  From Andreas Gruenbacher.
6894
6895         * lib/openat.c: Include "fcntl--.h" and "unistd--.h", to map open
6896         and dup to open_safer and dup_safer, respectively.
6897         (openat_permissive): Fix typo in comment.
6898
6899         * lib/openat.c: Don't include <stdlib.h>, <unistd.h>, <fcntl.h>,
6900         "gettext.h"; either no longer needed or are guaranteed by openat.h.
6901         (_): Remove; no longer needed.
6902         (openat): Renamed from rpl_openat; no need for rpl_openat
6903         since openat.h renames openat for us.
6904         Replace most of the body with a call to openat_permissive,
6905         to avoid duplicate code.
6906         Port to (probably hypothetical) environments were mode_t is
6907         wider than int.
6908         (openat_permissive): Require mode arg, so that we can check
6909         types better.  Put it just after flags.  Change cwd failure
6910         indicator from pointer-to-bool to pointer-to-errno-value.
6911         All callers changed.
6912         Invoke openat_save_fail and/or openat_restore_fail if
6913         cwd_errno is null, so that openat can call us.
6914         (openat_permissive, fdopendir, fstatat, unlinkat):
6915         Simplify errno handling to avoid some duplicate code,
6916         as it's OK to set errno on success.
6917         * lib/openat.h: Revamp code so that function macros depend on
6918         __OPENAT_PREFIX only, not also on AT_FDCWD.
6919         (openat_ro): Remove.  Caller changed to use openat_permissive.
6920         (openat_permissive): Now a macro, if not a function.
6921         (openat_restore_fail, openat_save_fail): Now always functions,
6922         since mkdirat needs them even if __OPENAT_PREFIX is defined.
6923
6924         * lib/openat-priv.h: New file, defining macros used by mkdirat.c
6925         and openat.c.
6926         * lib/mkdirat.c: Include openat-priv.h.
6927         Remove definitions of macros defined therein.
6928         * lib/openat.c: Likewise.
6929
6930         * lib/mkdirat.c (mkdirat): New file and function.
6931         * lib/openat.h (mkdirat): Declare.
6932
6933         * lib/openat.c (fdopendir): Don't change errno when returning non-NULL.
6934
6935         * lib/openat.h (openat_permissive): Declare.
6936         (openat_ro): Define.
6937
6938         * lib/openat.c (EXPECTED_ERRNO): New macro.
6939         (openat_permissive): New function -- used in remove.c rewrite.
6940         (all functions): Set errno just before returning, only if there
6941         was an actual failure.
6942         Use EXPECTED_ERRNO rather than comparing against only ENOTDIR.
6943
6944         Emulate openat-family functions using Linux's procfs, if possible.
6945         Idea and some code based on Ulrich Drepper's glibc changes.
6946
6947         * lib/openat.c: (BUILD_PROC_NAME): New macro.
6948         Include <stdio.h>, <string.h>, "alloca.h" and "intprops.h".
6949         (rpl_openat): Emulate by trying to open /proc/self/fd/%d/%s,
6950         before falling back on save_cwd and restore_cwd.
6951         (fdopendir, fstatat, unlinkat): Likewise.
6952
6953         * lib/openat.c (fstatat, unlinkat): Perform the syscall directly,
6954         skipping the save_cwd...restore_cwd overhead, if FILE is absolute.
6955
6956         * lib/openat.c (rpl_openat): Use the promoted type (int), not mode_t,
6957         as second argument to va_arg.  Otherwise, some versions of gcc
6958         warn that `if this code is reached, the program will abort'.
6959
6960 2006-01-09  Jim Meyering  <jim@meyering.net>
6961
6962         Sync from coreutils.
6963         * m4/openat.m4 (gl_FUNC_OPENAT): Require and compile mkdirat.c.
6964         Require openat-priv.h.
6965
6966 2006-01-09  Bruno Haible  <bruno@clisp.org>
6967
6968         * modules/strnlen (Include): Use strnlen.h.
6969
6970 2006-01-09  Bruno Haible  <bruno@clisp.org>
6971
6972         * m4/stdint.m4 (gl_STDINT_H): Also test for <sys/bitypes.h>.
6973
6974 2006-01-09  Bruno Haible  <bruno@clisp.org>
6975
6976         * lib/sysexit_.h (EX_OK): New macro.
6977         Suggested by Martin Lambers <marlam@marlam.de>.
6978
6979 2006-01-09  Bruno Haible  <bruno@clisp.org>
6980
6981         * lib/stdint_.h: On Linux libc4 and libc5, include <sys/bitypes.h> and
6982         don't define _STDINT_H_NEED_SIGNED_INT_TYPES.
6983
6984 2006-01-09  Bruno Haible  <bruno@clisp.org>
6985
6986         * lib/stdint_.h (SIZE_MAX): Write the value without involving negative
6987         numbers.
6988
6989 2006-01-09  Bruno Haible  <bruno@clisp.org>
6990
6991         * lib/javacomp.sh.in: Move to ../build-aux/javacomp.sh.in.
6992         * lib/javaexec.sh.in: Move to ../build-aux/javaexec.sh.in.
6993         * lib/csharpcomp.sh.in: Move to ../build-aux/csharpcomp.sh.in.
6994         * lib/csharpexec.sh.in: Move to ../build-aux/csharpexec.sh.in.
6995
6996 2006-01-09  Bruno Haible  <bruno@clisp.org>
6997
6998         * build-aux/javacomp.sh.in: New file, moved from lib/.
6999         * modules/javacomp-script (Files): Update.
7000         (configure.ac): Add AC_CONFIG_FILES invocation.
7001         (EXTRA_DIST): Remove variable.
7002
7003         * build-aux/javaexec.sh.in: New file, moved from lib/.
7004         * modules/javaexec (Files): Update.
7005         (configure.ac): Add AC_CONFIG_FILES invocation.
7006         (EXTRA_DIST): Remove javaexec.sh.in.
7007
7008         * build-aux/csharpcomp.sh.in: New file, moved from lib/.
7009         * modules/csharpcomp-script (Files): Update.
7010         (configure.ac): Add AC_CONFIG_FILES invocation.
7011         (EXTRA_DIST): Remove variable.
7012
7013         * build-aux/csharpexec.sh.in: New file, moved from lib/.
7014         * modules/csharpexec (Files): Update.
7015         (configure.ac): Add AC_CONFIG_FILES invocation.
7016         (EXTRA_DIST): Remove csharpexec.sh.in.
7017
7018 2006-01-09  Andreas Gruenbacher  <agruen@suse.de>
7019
7020         Sync from coreutils.
7021
7022         Add POSIX ACL support
7023         * lib/acl.h (copy_acl, set_acl): Add declarations.
7024         * lib/acl.c (acl_entries): Add fallback implementation for POSIX ACL
7025         systems other than Linux.
7026         (chmod_or_fchmod): New function: use fchmod when possible,
7027         and chmod otherwise.
7028         (file_has_acl): Add a POSIX ACL implementation, with a
7029         Linux-specific subcase.
7030         (copy_acl): Add: copy an acl and S_ISUID, S_ISGID, and
7031         S_ISVTX from one file to another.  Fall back to fchmod/chmod when
7032         acls are unsupported.
7033         (set_acl): Add: set a file's acl and S_ISUID, S_ISGID, and
7034         S_ISVTX to a defined value.  Fall back to fchmod/chmod when acls
7035         are unsupported.
7036
7037 2006-01-09  Andreas Gruenbacher  <agruen@suse.de>
7038
7039         Sync from coreutils.
7040         * m4/acl.m4 (AC_FUNC_ACL): Add POSIX ACL and Linux-specific acl tests.
7041
7042 2006-01-07  Bruno Haible  <bruno@clisp.org>
7043
7044         * gnulib-tool (func_import): Add an AC_PROG_RANLIB dependency to
7045         gl_EARLY.
7046
7047 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
7048
7049         * lib/strftime.c (tzname): Don't declare if it is already #defined.
7050         Problem reported for Mingw by Mark Junker.
7051
7052 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
7053
7054         * README: Gnulib normally doesn't generate a tarball.
7055
7056 2006-01-03  Paul Eggert  <eggert@cs.ucla.edu>
7057
7058         * lib/xtime.h (xtime_make, xtime_nonnegative_nsec, xtime_nsec): Use
7059         long int, not int, for nanosecond counts, so that people who are
7060         used to POSIX struct timespec won't be surprised.  Reported by Jim
7061         Meyering.
7062
7063 2005-12-28  Bruno Haible  <bruno@clisp.org>
7064
7065         * build-aux/config.rpath: Update from GNU gettext.
7066
7067 2005-12-16  Jim Meyering  <jim@meyering.net>
7068
7069         * modules/fprintftime: New module.
7070         * MODULES.html.sh (Date and time <time.h>): Add fprintftime.
7071
7072 2005-12-16  Jim Meyering  <jim@meyering.net>
7073
7074         * m4/fprintftime.m4: New file.
7075
7076 2005-12-16  Jim Meyering  <jim@meyering.net>
7077
7078         * lib/fprintftime.c, fprintftime.h: New files.
7079
7080 2005-12-15  Simon Josefsson  <jas@extundo.com>
7081
7082         * modules/socklen (configure.ac): Fix M4 macro name, to align with
7083         new m4/socklen.m4.
7084
7085 2005-12-10  Sergey Poznyakoff  <gray@gnu.org.ua>
7086
7087         * m4/argp.m4: Define HAVE_DECL_PROGRAM_INVOCATION_NAME and
7088         HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME
7089
7090 2005-12-10  Sergey Poznyakoff  <gray@gnu.org.ua>
7091
7092         * lib/argp-fmtstream.c (__argp_fmtstream_update): Fix coredump
7093         * lib/argp-help.c (fill_in_uparams): Check if the constructed
7094         struct uparams is valid. Fall back to the default values if it is
7095         not.
7096
7097 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
7098
7099         * modules/argp (Files): Add argp-pin.c
7100         (Depends-on): dirname
7101         (lib_SOURCES): Add argp-pin.c
7102
7103 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
7104
7105         * m4/argp.m4:  Check if program_invocation_name and
7106         program_invocation_short_name are declared and define appropriate
7107         macros if they are not.
7108
7109 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
7110
7111         * lib/argp-help.c (__argp_base_name): New function
7112         (__argp_short_program_name): Rewrite using __argp_base_name
7113         * lib/argp-namefrob.h: Define program_invocation_name and
7114         program_invocation_short_name if requested
7115         (__argp_base_name): Add prototype
7116         * lib/argp-parse.c (argp_def): Use gettext wrappers
7117         (argp_default_parser): Use __argp_base_name
7118         * lib/argp-pin.c: New file. Defines program_invocation_name and
7119         program_invocation_short_name on systems that lack them.
7120
7121 2005-12-07  Paul Eggert  <eggert@cs.ucla.edu>
7122
7123         * m4/stat-time.m4 (gl_STAT_TIME): Add check for
7124         TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC, to fix IRIX 5.3
7125         porting problem reported by Georg Schwarz in
7126         <http://lists.gnu.org/archive/html/bug-coreutils/2005-12/msg00083.html>.
7127
7128 2005-12-07  Paul Eggert  <eggert@cs.ucla.edu>
7129
7130         * lib/stat-time.h (STATE_TIMESPEC, STAT_TIMESPEC_NS): Add check for
7131         TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC, to fix IRIX 5.3
7132         porting problem reported by Georg Schwarz in
7133         <http://lists.gnu.org/archive/html/bug-coreutils/2005-12/msg00083.html>.
7134
7135 2005-12-05  Bruno Haible  <bruno@clisp.org>
7136
7137         * lib/csharpcomp.sh.in (options_csc): For -l option, add a .dll suffix.
7138         * lib/csharpcomp.c (compile_csharp_using_sscli): Likewise.
7139         Reported by Mark Junker <mjscod@gmx.de>.
7140
7141 2005-12-02  Paul Eggert  <eggert@cs.ucla.edu>
7142
7143         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Renamed from gl_SOCKLEN_T.
7144         Use implementation from Albert Chin, with some
7145         comments/corrections by Stepan Kasal and myself.
7146
7147 2005-12-02  Bruno Haible  <bruno@clisp.org>
7148
7149         * gnulib-tool (func_import): Accept GPLed build tool modules when
7150         --lgpl is given.
7151         * modules/csharpcomp-script: New file.
7152         * modules/csharpcomp: Depend on it.
7153         * modules/javacomp-script: New file.
7154         * modules/javacomp: Depend on it.
7155         Suggested by Simon Josefsson.
7156
7157 2005-12-01  Paul Eggert  <eggert@cs.ucla.edu>
7158
7159         * m4/regex.m4 (gl_REGEX): Check whether off_t can be used in a switch
7160         statement, to work around an HP-UX 10.20 compiler bug reported by
7161         Peter O'Gorman.
7162
7163 2005-11-29  Paul Eggert  <eggert@cs.ucla.edu>
7164
7165         * modules/savedir (Depends-on): Add openat.
7166
7167 2005-11-29  Paul Eggert  <eggert@cs.ucla.edu>
7168
7169         * lib/stdint_.h (intmax_t) [defined intmax_t]: Do not declare.
7170         (uintmax_t) [defined uintmax_t]: Do not declare.
7171         (SIZE_MAX) [defined SIZE_MAX]: Do not define.
7172         This works around a problem if intmax_t.m4 and/or uintmax_t.m4
7173         and/or size_max.m4 are also used.  Problem reported by Mark D. Baushke.
7174         (SIZE_MAX): Define to ((size_t) -1), not (~(size_t)0), for the
7175         sake of portability to weird hosts that C allows (though we don't
7176         know of any practical examples).
7177
7178         * lib/savedir.h (fdsavedir): New decl.
7179         * lib/savedir.c (fdsavedir, savedirstream): New functions; the latter
7180         contains most of the former guts of savedir.
7181         (savedir): Use savedirstream.
7182         Include "openat.h".
7183
7184 2005-11-25  Paul Eggert  <eggert@cs.ucla.edu>
7185
7186         * modules/obstack (Files): Add m4/ulonglong.m4.
7187         Problem reported by Davide Angelocola.
7188
7189 2005-11-15  Paul Eggert  <eggert@cs.ucla.edu>
7190
7191         * lib/xstrtod.c: Don't bother with #pragma STDC FENV_ACCESS ON, as
7192         coreutils no longer futzes with rounding modes.
7193
7194 2005-11-14  Jim Meyering  <jim@meyering.net>
7195
7196         * lib/mkstemp-safer.c: Include <config.h>, required for possible
7197         replacement of mkstemp.
7198
7199 2005-11-10  Simon Josefsson  <jas@extundo.com>
7200
7201         * lib/readline.c: Remove EOL.
7202
7203 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
7204
7205         * modules/gethrxtime (Depends-on): Add gettime.
7206
7207 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
7208
7209         * m4/gethrxtime.m4 (gl_PREREQ_GETHRXTIME): Don't require AC_HEADER_TIME
7210         or gettimeofday; no longer needed.
7211
7212 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
7213
7214         * lib/gethrxtime.c: Include "timespec.h" rather than the sys/time /
7215         time business.
7216         (gethrxtime) [! (HAVE_NANOUPTIME
7217         || (defined CLOCK_MONOTONIC && HAVE_CLOCK_GETTIME)
7218         || HAVE_MICROUPTIME)]: Fall back on gettime rather than rolling
7219         our own approximation.
7220
7221 2005-11-08  Eric Blake  <ebb9@byu.net>
7222
7223         * lib/inet_ntop.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
7224
7225 2005-11-08  Eric Blake  <ebb9@byu.net>
7226
7227         * lib/getaddrinfo.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
7228
7229 2005-11-04  Bruno Haible  <bruno@clisp.org>
7230
7231         * gnulib-tool: Implement --update mode.
7232
7233 2005-10-30  Paul Eggert  <eggert@cs.ucla.edu>
7234
7235         Fix porting problem reported by Theodoros V. Kalamatianos.
7236         * lib/utimens.c (futimens) [HAVE_WORKING_UTIMES && HAVE_FUTIMES]:
7237         Don't assume that futimes failing means we must fail.
7238
7239 2005-10-30  Paul Eggert  <eggert@cs.ucla.edu>
7240
7241         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Revamp wording and local
7242         variables to suggest the intended function of the PATH_MAX check.
7243
7244 2005-10-30  Kean Johnston  <jkj@sco.com>
7245
7246         Trivial changes to support SCO systems.
7247         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Check for MAXPATHLEN as well
7248         as PATH_MAX.
7249         * m4/fpending.m4 (gl_FUNC_FPENDING): Correct check for SCO systems,
7250         where __ptr is null when no I/O is pending.
7251
7252 2005-10-29  Paul Eggert  <eggert@cs.ucla.edu>
7253
7254         * lib/getcwd.c (__getcwd): Don't assume that system calls after readdir
7255         leave errno alone.  Problem reported by Dmitry V. Levin.
7256
7257 2005-10-28  Simon Josefsson  <jas@extundo.com>
7258
7259         * tests/test-gc-md4.c, tests/test-gc-md5.c, tests/test-gc-sha1.c:
7260         Test more.
7261
7262         * tests/test-gc-md2.c, tests/test-md2.c: New files.
7263
7264         * modules/md2, modules/md2-tests: New files.
7265
7266 2005-10-28  Simon Josefsson  <jas@extundo.com>
7267
7268         * m4/inet_ntop.m4: More tests.
7269
7270         * m4/gc-md2.m4, md2.m4: New file.
7271
7272 2005-10-28  Simon Josefsson  <jas@extundo.com>
7273
7274         * lib/inet_ntop.h, inet_ntop.c: Make it work under mingw32: Add
7275         "restrict" keywords, as per POSIX.  Protect the function
7276         declaration around HAVE_DECL_INET_NTOP rather than HAVE_INET_NTOP.
7277         Don't use K&R prototypes.  Check the sprintf return values.
7278         Re-define EAFNOSUPPORT if not present.  Indent.
7279
7280         * lib/md5.h, md5.c: Simplify buffer handling visavi alignment,
7281         suggested by Bruno Haible <bruno@clisp.org>.
7282
7283         * lib/gc-gnulib.c, gc-libgcrypt.c: Check calloc return value.
7284
7285         * lib/gc.h: Add MD2 and RMD160 length defines.  Add prototypes.
7286
7287         * lib/gc-libgcrypt.c: Add MD2 (which is not available through
7288         libgcrypt).
7289
7290         * lib/gc-gnulib.c: Add MD2.  Implement gc_hash_* API.
7291
7292         * lib/md2.h, md2.c: New files.
7293
7294 2005-10-28  Paul Eggert  <eggert@cs.ucla.edu>
7295
7296         * lib/savedir.c (savedir): Don't assume that xrealloc etc. leave
7297         errno alone.  Problem reported by Frederic Jolliton.
7298
7299 2005-10-27  Paul Eggert  <eggert@cs.ucla.edu>
7300
7301         * modules/verify (License): Change from GPL to LGPL.  This is a
7302         tiny module and there are apparently near-equivalents that are
7303         under the BSD license.
7304
7305 2005-10-24  Simon Josefsson  <jas@extundo.com>
7306
7307         * modules/sha1: Relicense to LGPL.
7308
7309 2005-10-24  Simon Josefsson  <jas@extundo.com>
7310
7311         * lib/md4.h: Shrink buffer size, now that we changed the type.
7312
7313 2005-10-23  Simon Josefsson  <jas@extundo.com>
7314
7315         * gnulib-tool (func_import): Fix --tests-base.
7316
7317 2005-10-22  Simon Josefsson  <jas@extundo.com>
7318
7319         * modules/arcfour (Depends-on): Need stdint.
7320
7321 2005-10-22  Simon Josefsson  <jas@extundo.com>
7322
7323         * m4/gc.m4: Don't be fooled by --disable-*random-device parameters,
7324         suggested by Bruno Haible <bruno@clisp.org>.  Fix error messages.
7325
7326 2005-10-22  Simon Josefsson  <jas@extundo.com>
7327
7328         * lib/md4.h, md4.c: Simplify buffer handling visavi alignment,
7329         suggested by Bruno Haible <bruno@clisp.org>.
7330
7331 2005-10-22  Simon Josefsson  <jas@extundo.com>
7332
7333         * lib/crc.h: Include stddef.h, for size_t.
7334
7335 2005-10-22  Simon Josefsson  <jas@extundo.com>
7336
7337         * lib/arcfour.h, arcfour.c: Use fixed size indices in the
7338         arcfour_context struct (simplify test vector testing in GNU
7339         Shishi).
7340
7341 2005-10-21  Simon Josefsson  <jas@extundo.com>
7342
7343         * modules/des, modules/des-tests: New files.
7344
7345         * modules/gc-des, modules/gc-des-tests: New files.
7346
7347         * tests/test-des.c, tests/test-gc-des.c: New file.
7348
7349 2005-10-21  Simon Josefsson  <jas@extundo.com>
7350
7351         * modules/arctwo, modules/arctwo-tests: New files.
7352
7353         * tests/test-arctwo.c: New file.
7354
7355         * modules/gc-arctwo, modules/gc-arctwo-tests: New files.
7356
7357         * tests/test-gc-arctwo.c: New file.
7358
7359 2005-10-21  Simon Josefsson  <jas@extundo.com>
7360
7361         * m4/gc.m4: Don't use libgcrypt if gcrypt.h isn't found, suggested by
7362         Bruno Haible <bruno@clisp.org>.
7363
7364         * m4/gc-des.m4: New file.
7365
7366 2005-10-21  Simon Josefsson  <jas@extundo.com>
7367
7368         * m4/arctwo.m4: New file.
7369
7370         * m4/gc-arctwo.m4: New file.
7371
7372 2005-10-21  Simon Josefsson  <jas@extundo.com>
7373
7374         * lib/rijndael-api-fst.c: Fix bugs in CBC mode for more than one
7375         block.
7376
7377 2005-10-21  Simon Josefsson  <jas@extundo.com>
7378
7379         * lib/hmac-md5.c (hmac_md5): Add comments, suggested by Bruno Haible
7380         <bruno@clisp.org>.
7381
7382         * lib/hmac-sha1.c (hmac_sha1): Likewise.
7383
7384         * lib/crc.c (crc32_update): Actually use crc parameter, suggested by
7385         Bruno Haible <bruno@clisp.org>.
7386
7387         * lib/crc.h: Include stdint.h directly, suggested by Bruno Haible
7388         <bruno@clisp.org>.
7389
7390 2005-10-21  Simon Josefsson  <jas@extundo.com>
7391
7392         * lib/gc-libgcrypt.c (gc_cipher_open): Handle ECB.
7393
7394 2005-10-21  Simon Josefsson  <jas@extundo.com>
7395
7396         * lib/gc-gnulib.c: Support ARCTWO in CBC mode.
7397
7398 2005-10-21  Simon Josefsson  <jas@extundo.com>
7399
7400         * lib/des.h, des.c: New files.
7401
7402         * lib/gc-gnulib.c: Support DES.c
7403
7404 2005-10-21  Simon Josefsson  <jas@extundo.com>
7405
7406         * lib/arctwo.h, arctwo.c: New files.
7407
7408         * lib/gc-gnulib.c: Support ARCTWO.
7409
7410 2005-10-21  Simon Josefsson  <jas@extundo.com>
7411
7412         * lib/arctwo.h (arctwo_setkey): Protect variable in CPP macro,
7413         suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
7414
7415 2005-10-21  Simon Josefsson  <jas@extundo.com>
7416
7417         * gnulib-tool (func_import, func_create_testdir): Define automake
7418         conditional GL_COND_LIBTOOL if libtool is used (to be used by modules
7419         Makefile.am snippet),
7420         suggested by Bruno Haible <bruno@clisp.org>.
7421
7422         * modules/gc (Makefile.am): Use it.
7423
7424 2005-10-21  Bruno Haible  <bruno@clisp.org>
7425
7426         * gnulib-tool (func_import, func_create_testdir): Add quoting to last
7427         patch.
7428
7429 2005-10-19  Simon Josefsson  <jas@extundo.com>
7430
7431         * tests/test-gc-rijndael.c: New file.
7432
7433         * modules/gc-rijndael, modules/gc-rijndael-test: New files.
7434
7435 2005-10-19  Simon Josefsson  <jas@extundo.com>
7436
7437         * tests/test-gc-md4.c, tests/test-gc-md5.c: Test gc_hash_buffer
7438         interface too.
7439
7440 2005-10-19  Simon Josefsson  <jas@extundo.com>
7441
7442         * tests/test-gc-arcfour.c: New file.
7443
7444         * modules/gc-arcfour, modules/gc-arcfour-tests: New files.
7445
7446 2005-10-19  Simon Josefsson  <jas@extundo.com>
7447
7448         * modules/gc-md4, modules/gc-md4-tests: New file.
7449
7450         * tests/test-gc-md4.c: New file.
7451
7452 2005-10-19  Simon Josefsson  <jas@extundo.com>
7453
7454         * m4/gc-md4.m4: New file.
7455
7456 2005-10-19  Simon Josefsson  <jas@extundo.com>
7457
7458         * m4/gc-hmac-md5.m4, gc-hmac-sha1.m4, gc-md4.m4,
7459         gc-md5.m4, gc-sha1.m4: Fix typo, suggested by Stepan Kasal
7460         <kasal@ucw.cz>.
7461
7462 2005-10-19  Simon Josefsson  <jas@extundo.com>
7463
7464         * m4/gc-arcfour.m4: New file.
7465
7466         * m4/gc-rijndael.m4: New file.
7467
7468 2005-10-19  Simon Josefsson  <jas@extundo.com>
7469
7470         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Support MD4.
7471
7472 2005-10-19  Simon Josefsson  <jas@extundo.com>
7473
7474         * lib/gc-gnulib.c: Support ARCFOUR.
7475
7476 2005-10-19  Simon Josefsson  <jas@extundo.com>
7477
7478         * lib/gc-gnulib.c: Implement gc_cipher_* API, currently only with AES
7479         support.
7480
7481         * lib/gc.h: Add ECB enum type.
7482
7483         * lib/hmac-md5.c, hmac-sha1.c: Include memxor.h.
7484
7485 2005-10-18  Simon Josefsson  <jas@extundo.com>
7486
7487         * tests/test-md5.c: New file.
7488
7489         * modules/md5-tests: New file.
7490
7491 2005-10-18  Simon Josefsson  <jas@extundo.com>
7492
7493         * tests/test-md4.c: New file.
7494
7495         * modules/md4, modules/md4-tests: New files.
7496
7497 2005-10-18  Simon Josefsson  <jas@extundo.com>
7498
7499         * m4/md4.m4: New file.
7500
7501 2005-10-18  Simon Josefsson  <jas@extundo.com>
7502
7503         * lib/md4.h, md4.c: New files, based on md5.?.
7504
7505 2005-10-17  Stepan Kasal  <kasal@ucw.cz>
7506
7507         * gnulib-tool (func_create_testdir): Omit the second check whether
7508         BUILT_SOURCES in nonempty.
7509
7510 2005-10-17  Simon Josefsson  <jas@extundo.com>
7511
7512         * tests/test-rijndael.c: New file.
7513
7514 2005-10-17  Simon Josefsson  <jas@extundo.com>
7515
7516         * modules/sha1: Depend on stdint instead of md5.
7517
7518         * modules/md5: Depend on stdint, remove uint32_t.
7519
7520 2005-10-17  Simon Josefsson  <jas@extundo.com>
7521
7522         * modules/gc-sha1-tests: New file.
7523
7524         * tests/test-gc-sha1.c: New file.
7525
7526 2005-10-17  Simon Josefsson  <jas@extundo.com>
7527
7528         * m4/md5.m4: Remove call to uint32_t.m4.
7529
7530 2005-10-17  Simon Josefsson  <jas@extundo.com>
7531
7532         * lib/sha1.c: Use uint32_t instead of md5_uint32.t
7533
7534         * lib/sha1.h: Use stdint.h and uint32_t instead of md5_uint32 from
7535         md5.h.
7536
7537         * lib/md5.c: Use uin32_t.  Fix non-gcc UNALIGNED_P macro.
7538
7539         * lib/md5.h: Use stdint.h and uint32_t.  Doc fix.
7540
7541 2005-10-17  Simon Josefsson  <jas@extundo.com>
7542
7543         * lib/gc.h, gc-libgcrypt.c: Add more hash types/functions.
7544
7545 2005-10-17  Simon Josefsson  <jas@extundo.com>
7546
7547         * lib/gc.h, gc-libgcrypt.c: Add ciphers.
7548
7549 2005-10-17  Simon Josefsson  <jas@extundo.com>
7550
7551         * lib/gc-libgcrypt.c (gc_hmac_sha1): Fix assert.
7552
7553         * lib/gc.h (gc_nonce, gc_pseudo_random, gc_random): Add prototypes.
7554
7555 2005-10-17  Bruno Haible  <bruno@clisp.org>
7556
7557         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Change the return statement so
7558         that it can also be used in a test.
7559
7560 2005-10-16  Bruno Haible  <bruno@clisp.org>
7561
7562         * gnulib-tool (func_emit_tests_Makefile_am): Also define
7563         TESTS_ENVIRONMENT, so that individual tests can augment it.
7564
7565         * gnulib-tool (func_create_testdir): Use an intermediate target for
7566         building $(BUILT_SOURCES). Needed because BUILT_SOURCES can contain
7567         macros, like $(ALLOCA_H), which cannot be passed through the command
7568         line.
7569
7570 2005-10-15  Simon Josefsson  <jas@extundo.com>
7571
7572         * modules/rijndael-tests: New file.
7573
7574         * modules/rijndael: New file.
7575
7576 2005-10-15  Simon Josefsson  <jas@extundo.com>
7577
7578         * m4/rijndael.m4: New file.
7579
7580 2005-10-15  Simon Josefsson  <jas@extundo.com>
7581
7582         * lib/rijndael-api-fst.h, rijndael-api-fst.c: New files.
7583
7584         * lib/rijndael-alg-fst.h, rijndael-alg-fst.c: New files.
7585
7586 2005-10-14  Simon Josefsson  <jas@extundo.com>
7587
7588         * tests/test-arcfour.c: New file.
7589
7590         * modules/arcfour, modules/arcfour-tests: New files.
7591
7592 2005-10-14  Simon Josefsson  <jas@extundo.com>
7593
7594         * m4/arcfour.m4: New file.
7595
7596 2005-10-14  Simon Josefsson  <jas@extundo.com>
7597
7598         * lib/arcfour.h, arcfour.c: New files.
7599
7600 2005-10-14  Roland McGrath  <roland@redhat.com>
7601
7602         Import from libc.  [BZ #1331]
7603         * lib/obstack.h [!__STDC__] (obstack_int_grow_fast): Fix misnamed
7604         macro argument.
7605         Reported by Matej Vela <vela@debian.org>.
7606
7607 2005-10-14  Paul Eggert  <eggert@cs.ucla.edu>
7608
7609         * lib/obstack.c [defined _LIBC && defined USE_IN_LIBIO]: Don't
7610         include <wchar.h>; no longer needed.
7611
7612 2005-10-14  Paul Eggert  <eggert@cs.ucla.edu>
7613
7614         * config/srclist.txt: Add glibc bug 321 for obstack.c, obstack.h.
7615
7616 2005-10-14  Jakub Jelinek  <jakub@redhat.com>
7617         and  Ulrich Drepper  <drepper@redhat.com>
7618
7619         Import from libc.
7620         * lib/obstack.c (print_and_abort) [defined _LIBC]: Use __fxprintf
7621         instead of inline stream orientation test and two separate
7622         function calls.  Pay no attention to USE_IN_LIBIO.
7623
7624 2005-10-13  Simon Josefsson  <jas@extundo.com>
7625
7626         * modules/gc-hmac-md5-tests: New file.
7627
7628         * tests/test-gc-hmac-sha1.c: New file.
7629
7630         * tests/test-gc.c (main): Remove MD5 and HMAC-MD5 tests.
7631
7632         * modules/gc-hmac-md5-tests: New file.
7633
7634         * tests/test-gc-md5.c: New file.
7635
7636         * modules/gc-md5-tests: New file.
7637
7638 2005-10-13  Simon Josefsson  <jas@extundo.com>
7639
7640         * lib/gc-pbkdf2-sha1.c (gc_pbkdf2_sha1): Optimize CEIL computation.
7641         Move memory allocation outside of loop.
7642
7643 2005-10-13  Paul Eggert  <eggert@cs.ucla.edu>
7644
7645         * lib/mkdir-p.c (make_dir_parents): Don't report an error if an
7646         intermediate directory is in a read-only file system.  Problem
7647         reported by Eric Blake.
7648
7649 2005-10-13  Oskar Liljeblad  <oskar@osk.mine.nu>
7650
7651         * modules/human (Depends-on): Depend on xstrtoumax, not xstrtol.
7652
7653 2005-10-12  Simon Josefsson  <jas@extundo.com>
7654
7655         * tests/test-hmac-sha1.c: New file.
7656
7657         * modules/hmac-sha1-tests: New file.
7658
7659         * modules/hmac-sha1: New file.
7660
7661 2005-10-12  Simon Josefsson  <jas@extundo.com>
7662
7663         * modules/gc-sha1: New file.
7664
7665 2005-10-12  Simon Josefsson  <jas@extundo.com>
7666
7667         * modules/gc-pbkdf2-sha1, modules/gc-pbkdf2-sha1-tests: New files.
7668
7669         * tests/test-gc-pbkdf2-sha1.c: New file.
7670
7671 2005-10-12  Simon Josefsson  <jas@extundo.com>
7672
7673         * modules/gc-md5, modules/gc-hmac-md5: New files.
7674
7675         * modules/gc (Files): Remove md5, memxor and hmac files.
7676
7677 2005-10-12  Simon Josefsson  <jas@extundo.com>
7678
7679         * m4/gc-pbkdf2-sha1.m4: New file.
7680
7681         * m4/gc-hmac-sha1.m4: New file.
7682
7683         * m4/gc-sha1: New file.
7684
7685         * m4/hmac-sha1.m4: New file.
7686
7687 2005-10-12  Simon Josefsson  <jas@extundo.com>
7688
7689         * m4/gc-md5.m4, gc-hmac-md5: New files.
7690
7691         * m4/gc.m4: Don't call gl_MD5, gl_MEMXOR or gl_HMAC_MD5.
7692
7693 2005-10-12  Simon Josefsson  <jas@extundo.com>
7694
7695         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Use Gc_rc for return types,
7696         suggested by Bruno Haible <bruno@clisp.org>.
7697
7698 2005-10-12  Simon Josefsson  <jas@extundo.com>
7699
7700         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Support SHA-1.
7701
7702 2005-10-12  Simon Josefsson  <jas@extundo.com>
7703
7704         * lib/gc-pbkdf2-sha1.c: New file.
7705
7706         * lib/gc.h: Add gc_pbkdf2_sha1 prototype.
7707
7708 2005-10-12  Simon Josefsson  <jas@extundo.com>
7709
7710         * lib/gc-libgcrypt.c (gc_hmac_sha1): New function.
7711
7712         * lib/gc-gnulib.c (gc_hmac_sha1): New function.
7713
7714 2005-10-12  Simon Josefsson  <jas@extundo.com>
7715
7716         * lib/gc-gnulib.c: Condition MD5 and HMAC-MD5 use on GC_USE_MD5 and
7717         GC_USE_HMAC_MD5, respectively.
7718
7719         * lib/gc-libgcrypt.c (gc_md5): Fix assert call.
7720         (gc_md5): Fix typo.
7721
7722         * lib/gc.h (gc_hash_buffer): Use gc_hash in prototype.
7723
7724         * lib/gc-libgcrypt.c (gc_hash_buffer): Ditto.
7725
7726         * lib/gc-gnulib.c (gc_hash_buffer): Ditto.
7727
7728 2005-10-12  Bruno Haible  <bruno@clisp.org>
7729
7730         * m4/stdbool.m4 (gl_STDBOOL_H): Define as an alias of AM_STDBOOL_H.
7731         Reported by Stepan Kasal <kasal@ucw.cz>.
7732
7733 2005-10-11  Simon Josefsson  <jas@extundo.com>
7734
7735         * tests/test-crc.c: New file.
7736
7737         * modules/crc, modules/crc-tests: New files.
7738
7739 2005-10-11  Simon Josefsson  <jas@extundo.com>
7740
7741         * m4/crc.m4: New file.
7742
7743 2005-10-11  Simon Josefsson  <jas@extundo.com>
7744
7745         * lib/gc.h: Add gc_hash and gc_hash_buffer.
7746
7747         * lib/gc-gnulib.c (gc_hash_buffer): Add.  Reorder #include's.
7748
7749         * lib/gc-libgcrypt.c (gc_hash_buffer): Add.
7750
7751 2005-10-11  Simon Josefsson  <jas@extundo.com>
7752
7753         * lib/crc.h, crc.c: New files.
7754
7755         * lib/gc.h (gc_hash_buffer): Add doc.
7756
7757 2005-10-11  Bruno Haible  <bruno@clisp.org>
7758
7759         * modules/c-strcasestr: New file.
7760         * MODULES.html.sh (String handling <string.h>): Add c-strcasestr.
7761
7762 2005-10-11  Bruno Haible  <bruno@clisp.org>
7763
7764         * modules/c-strcase: New file.
7765         * MODULES.html.sh (String handling <string.h>): Add c-strcase.
7766
7767 2005-10-11  Bruno Haible  <bruno@clisp.org>
7768
7769         * lib/strcasecmp.c: Include limits.h.
7770         (strcasecmp): Avoid integer overflow on exotic platforms.
7771         * lib/strncasecmp.c: Include limits.h.
7772         (strncasecmp): Avoid integer overflow on exotic platforms.
7773         Reported by Paul Eggert.
7774
7775 2005-10-11  Bruno Haible  <bruno@clisp.org>
7776
7777         * lib/c-strcasestr.h: New file, from GNU gettext.
7778         * lib/c-strcasestr.c: New file, from GNU gettext.
7779
7780 2005-10-11  Bruno Haible  <bruno@clisp.org>
7781
7782         * lib/c-strcase.h: New file, from GNU gettext.
7783         * lib/c-strcasecmp.c: New file, from GNU gettext.
7784         * lib/c-strncasecmp.c: New file, from GNU gettext.
7785
7786 2005-10-10  Paul Eggert  <eggert@cs.ucla.edu>
7787
7788         * modules/mempcpy (License): GPL -> LGPL.
7789         * modules/strchrnul (License): Likewise.
7790         * modules/sysexits (License): Likewise.
7791
7792 2005-10-08  Simon Josefsson  <jas@extundo.com>
7793
7794         * config/srclist.txt: Bug 1423 is closed, but 1439 remains.
7795
7796 2005-10-07  Simon Josefsson  <jas@extundo.com>
7797
7798         * m4/memxor.m4: Remove gl_C_RESTRICT call.
7799
7800 2005-10-06  Simon Josefsson  <jas@extundo.com>
7801
7802         * tests/test-hmac-md5.c: New file.
7803
7804         * modules/hmac-md5-tests: New file.
7805
7806         * modules/hmac-md5: New file.
7807
7808 2005-10-06  Simon Josefsson  <jas@extundo.com>
7809
7810         * m4/hmac-md5.m4: New file.
7811
7812         * m4/memxor.m4: Require gl_C_RESTRICT.
7813
7814 2005-10-06  Simon Josefsson  <jas@extundo.com>
7815
7816         * lib/memxor.c (memxor): Avoid casts and warnings.
7817
7818 2005-10-06  Simon Josefsson  <jas@extundo.com>
7819
7820         * lib/hmac-md5.c: New file.
7821
7822         * lib/hmac.h: New file.
7823
7824 2005-10-06  Paul Eggert  <eggert@cs.ucla.edu>
7825
7826         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check that bool
7827         promotes to int, not unsigned int, to catch the AIX 5.3
7828         compiler bug.
7829
7830 2005-10-05  Simon Josefsson  <jas@extundo.com>
7831
7832         * modules/memxor: New file.
7833
7834         * modules/iconv (Files): Move config.rpath to havelib, it is used
7835         there.
7836
7837         * modules/havelib (Files): Add config.rpath.
7838
7839 2005-10-05  Simon Josefsson  <jas@extundo.com>
7840
7841         * m4/memxor.m4: New file.
7842
7843 2005-10-05  Simon Josefsson  <jas@extundo.com>
7844
7845         * lib/memxor.c (memxor): Fix compiler error.
7846
7847         * lib/md5.h (MD5_DIGEST_SIZE, MD5_BLOCK_SIZE): Add, see also
7848         <http://sourceware.org/bugzilla/show_bug.cgi?id=1423>.
7849
7850         * lib/memxor.h, memxor.c: New files.
7851
7852         * lib/getaddrinfo.h: Don't protect sys/types.h with HAVE_SYS_TYPES_H,
7853         we assume all systems have it, suggested by Jim Meyering
7854         <jim@meyering.net>.  Remove HAVE_SYS_SOCKET_H test too, to see if
7855         any systems lack sys/socket.h; mingw32 is known to lack it, but we
7856         don't support it yet anyway.  Also remove HAVE_NETDB_H test, for
7857         same reasons.
7858
7859 2005-10-05  Simon Josefsson  <jas@extundo.com>
7860
7861         * config/srclist.txt: Add glibc bug 1423 for md5.h.
7862
7863 2005-10-05  Paul Eggert  <eggert@cs.ucla.edu>
7864
7865         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Don't check for
7866         sys/socket.h, netdb.h, sys/types.h; the checks areno longer
7867         needed, since the source code now assumes these .h files.
7868
7869 2005-10-05  Derek Price  <derek@ximbiot.com>
7870
7871         * lib/getdelim.c (SIZE_MAX): New macro, if not already defined.
7872
7873 2005-10-05  Bruno Haible  <bruno@clisp.org>
7874
7875         * modules/stdint (License): Change to LGPL.
7876
7877 2005-10-04  Simon Josefsson  <jas@extundo.com>
7878
7879         * lib/getaddrinfo.h: Move sys/types.h include first, reported by "Mark
7880         D. Baushke" <mdb@gnu.org>.
7881
7882 2005-10-04  Bruno Haible  <bruno@clisp.org>
7883
7884         * lib/verify.h (verify_true): Provide alternative definition for C++.
7885
7886 2005-10-03  Paul Eggert  <eggert@cs.ucla.edu>
7887
7888         * lib/getdelim.c: Include getdelim.h first.  Include <limits.h>.
7889         (SSIZE_MAX): New macro, if not already defined.
7890         (getdelim): Fix buffer overrun on 64-bit hosts with lines longer
7891         than 2 GiB.
7892
7893 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
7894
7895         Sync from coreutils.
7896         * m4/openat.m4 (gl_FUNC_OPENAT): Check for fdopendir.
7897         * m4/ullong_max.m4 (gl_ULLONG_MAX): Simplify so that it merely
7898         defines ULONG_MAX_LT_ULLONG_MAX.  Thomas M.Ott reports that
7899         ULLONG_MAX doesn't work with 2.7.2.1.
7900
7901 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
7902
7903         * modules/xreadlink (Makefile.am): Remove lib_SOURCES.
7904         From Ben Pfaff.
7905
7906         * modules/exclude (Depends-on): Depend on verify.
7907         * modules/strtoimax (Depends-on): Likewise.
7908         * modules/utimecmp (Depends-on): Likewise.
7909
7910 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
7911
7912         * lib/exclude.c: Include verify.h.
7913         (verify): Remove.  All callers changed to use verify.h's version.
7914         * lib/strtoimax.c: Likewise.
7915         * lib/utimecmp.c: Likewis.e
7916
7917         Sync from coreutils.
7918         * lib/.cppi-disable: Add getaddrinfo.h, getdelim.h, getline.h,
7919         getpass.c, mbchar.h, mbuiter.h, strcase.h, strnlen.h, strnlen1.h.
7920         * lib/.cvsignore: Add fts.h, search.h, t-fpending.
7921         * lib/settime.c (settime): Fix { typo in previous patch.  Also, don't
7922         bother returning ENOSYS if settimeofday or stime fails; just let
7923         them return whatever errno they want to return.
7924         * lib/utimens.c: Include unistd.h, for dup2.
7925         (futimens): Fix typo: HAVE_FUTIMESAT was misspelled in an #if.
7926         (futimens) [! HAVE_FUTIMESAT]: If !file, set errno before returning -1.
7927
7928 2005-10-02  Jim Meyering  <jim@meyering.net>
7929
7930         Sync from coreutils.
7931         * m4/utimes.m4 (gl_FUNC_UTIMES): Detect the version of utimes
7932         from glibc-2.2.5 that fails for read-only files.
7933
7934 2005-10-02  Jim Meyering  <jim@meyering.net>
7935
7936         Sync from coreutils.
7937         * lib/fts-cycle.c [HAVE_CONFIG_H]: Include <config.h>.
7938         * lib/openat-die.c: Use `#ifdef HAVE_CONFIG_H', not
7939         `#if HAVE_CONFIG_H'.
7940         * lib/openat.c (fdopendir): Do not define if HAVE_FDOPENDIR.
7941         Remove AT_FDCWD test.
7942         Do not consume the fd unless successful.
7943         * lib/openat.h (fdopendir): Do not define if HAVE_FDOPENDIR.
7944         * lib/settime.c (settime): Move the HAVE_STIME block `up' into an #elif
7945         block, so that we don't even try to compile it if settimeofday is
7946         available.  This works around a compilation failure on OSF1 V5.1,
7947         due to stime requiring a `long int*' while tv_sec is `int'.
7948
7949 2005-10-02  Alfred M. Szmidt  <ams@gnu.org>
7950
7951         Sync from coreutils.
7952         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Compare $gl_have_path...
7953         against `yes', rather than just testing for nonempty.
7954
7955 2005-10-01  Simon Josefsson  <jas@extundo.com>
7956
7957         * m4/getaddrinfo.m4: Include sys/types.h for sys/socket.h, on FreeBSD
7958         and Darwin.
7959
7960         * m4/getaddrinfo.m4: Use AC_GNU_SOURCE, GNU only declare getaddrinfo
7961         as an (POSIX) extension.  Check for sys/types.h, sys/socket.h, and
7962         netdb.h too, needed by getaddrinfo.h.  Check if getaddrinfo,
7963         freeaddrinfo and gai_strerror are declared by the POSIX headers.
7964         Check if struct addrinfo is declared.
7965
7966 2005-10-01  Simon Josefsson  <jas@extundo.com>
7967
7968         * lib/getaddrinfo.h: Protect #include's of sys/socket.h and netdb.h.
7969         Only define struct addrinfo if !HAVE_STRUCT_ADDRINFO.  Protect
7970         AI_* and EAI_* definitions.  Protect function declarations.
7971
7972 2005-10-01  Jim Meyering  <jim@meyering.net>
7973
7974         Sync from coreutils.
7975
7976         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Look for getservbyname in these
7977         libraries [inet nsl socket xnet].  Nelson Beebe reported that with
7978         native cc on Solaris 7, getaddrinfo.c requires -lsocket.
7979         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Check for gethostbyname
7980         in the inet and nsl libraries.  Required on Solaris 5.7.
7981
7982 2005-10-01  Jim Meyering  <jim@meyering.net>
7983
7984         Sync from coreutils.
7985         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Check for gethostbyname
7986         in the inet and nsl libraries.  Required on Solaris 5.7.
7987
7988 2005-10-01  Eric Blake  <ebb9@byu.net>  (tiny change)
7989
7990         * lib/getdelim.c (getdelim): Remove unused variables.
7991
7992 2005-09-29  Paul Eggert  <eggert@cs.ucla.edu>
7993
7994         * lib/xtime.h (XTIME_PRECISION): Now of type int, not long long int,
7995         so that the code works even with ancient cpp.  Portability problem
7996         with GCC 2.7.2.1 reported by Thomas M.Ott.
7997
7998 2005-09-27  Paul Eggert  <eggert@cs.ucla.edu>
7999
8000         * modules/regex (Depends-on): Add strcase.
8001
8002         * modules/gethostname (Licence): Change from GPL to LGPL, since
8003         gethostname.c is a trivial implementation of a standard library
8004         function.
8005         * modules/poll (License): Change from GPL to LGPL, since it's
8006         derived from LGPL code.
8007
8008 2005-09-27  Jim Meyering  <jim@meyering.net>
8009
8010         * lib/getcwd.c: Change #ifdef<TAB>HAVE_CONFIG_H to #ifdef
8011         HAVE_CONFIG_H.
8012
8013         * lib/intprops.h (signed_type_or_expr__): Define.
8014         (INT_STRLEN_BOUND) [__GNUC__]: Use a slightly tighter bound
8015         for unsigned types.
8016
8017 2005-09-26  Paul Eggert  <eggert@cs.ucla.edu>
8018
8019         * lib/verify.h (verify_expr): Remove, replacing with:
8020         (verify_true): New macro that returns true instead of void.
8021         (verify_type__): Remove.
8022         (verify): Use verify_true rather than verify_type__.
8023
8024 2005-09-26  Bruno Haible  <bruno@clisp.org>
8025
8026         * modules/mbchar (Include): Mention that HAVE_WCHAR_H && HAVE_WCTYPE_H
8027         is necessary.
8028         (lib_SOURCES): Remove mbchar.c.
8029         * modules/mbfile (Include): Mention that HAVE_MBRTOWC is necessary.
8030         (Files): Add m4/mbrtowc.m4.
8031         * modules/mbiter: Likewise.
8032         * modules/mbuiter: Likewise.
8033
8034 2005-09-26  Bruno Haible  <bruno@clisp.org>
8035
8036         * m4/mbchar.m4 (gl_MBCHAR): Check for wchar.h and wctype.h. Don't
8037         compile mbchar.c if they are not both present.
8038         * m4/mbfile.m4 (gl_MBFILE): Require gl_FUNC_MBRTOWC.
8039         * m4/mbiter.m4 (gl_MBITER): Likewise.
8040         * m4/strstr.m4 (gl_PREREQ_STRSTR): Use AC_REQUIRE.
8041         * m4/strcasestr.m4 (gl_PREREQ_STRCASESTR): Likewise.
8042         * m4/strcase.m4 (gl_PREREQ_STRCASECMP): Likewise.
8043
8044 2005-09-25  Jim Meyering  <jim@meyering.net>
8045
8046         * modules/inet_ntop (Depends-on): Add socklen, since inet_ntop.c
8047         also uses socklen_t.
8048
8049 2005-09-24  Paul Eggert  <eggert@cs.ucla.edu>
8050
8051         * lib/utimens.c (ENOSYS): Define if not already defined.
8052         (futimens): Support having a null PATH if the file descriptor
8053         is nonnegative.
8054
8055         * lib/regex_internal.h (__GNUC_PREREQ, always_inline, inline, pure):
8056         Remove.
8057         (__attribute): Define to empty unless GCC 3.1 or later.
8058         This works around a core dump on OpenBSD 3.4, which has GCC
8059         2.95.3, which dumps core when given __attribute__(()).  It also
8060         simplifies other tests, since we really don't want to bother with
8061         worrying about which ancient version of GCC supported what.
8062         Original problem reported by Yoann Vandoorselaere, with part of
8063         the fix suggested by Derek Price.
8064
8065 2005-09-24  Jim Meyering  <jim@meyering.net>
8066
8067         * lib/verify.h (verify_type__): Use `unsigned int' as the bitfield type
8068         so we can once again use a positive bitfield width of 1 -- now we
8069         don't have to explain why we were using a bitfield width of 2.
8070
8071 2005-09-23  Paul Eggert  <eggert@cs.ucla.edu>
8072
8073         * m4/regex.m4 (gl_REGEX): If replacing, define regcomp to rpl_regcomp,
8074         and similarly for the other external symbols.  Problem reported
8075         by James Gallager.
8076
8077         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Catch Sun Studio 10u1 on Linux
8078         bug reported by Jim Meyering.
8079
8080         * m4/utimens.m4 (gl_UTIMENS): Check for futimesat.
8081         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Undo previous change;
8082         not needed, since socklen is a prerequisite module.
8083
8084 2005-09-23  Paul Eggert  <eggert@cs.ucla.edu>
8085
8086         * lib/getaddrinfo.c [HAVE_NETINET_IN_H]: Include <netinet/in.h>.
8087         Problem reported by Eric Blake.
8088         (getaddrinfo): Initialize se so that it's not garbage.
8089         Redo internal storage allocation so that it doesn't make unportable
8090         assumptions about alignment.
8091         Fix a memory leak.
8092
8093         * lib/utimens.c (futimens): Use futimesat if available.
8094         Prefer it to futimes since it doesn't have the futimes bug.
8095
8096         * lib/verify.h (GL_CONCAT0, GL_CONCAT): Remove.
8097         (verify): Don't use the __LINE__ trick, as it doesn't work in general.
8098         Instead, declare a function that returns a pointer to an array,
8099         and use verify_type__ to declare the size of the array.
8100         Problem and germ of a solution reported by Bruno Haible.
8101         (verify_type__): Use 2, not 1, for bitfield size, to avoid
8102         a warning with Irix 6.5 cc.  Problem reported by Bruno Haible.
8103
8104 2005-09-23  Jim Meyering  <jim@meyering.net>
8105
8106         Sync from coreutils.
8107         Correct build failure (socklen_t not defined) on at least
8108         mips-sgi-irix6.5 and alphaev67-dec-osf5.1.
8109         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Require gl_SOCKLEN_T.
8110
8111 2005-09-23  Jim Meyering  <jim@meyering.net>
8112
8113         * modules/getaddrinfo (Depends-on): Add socklen.
8114
8115 2005-09-23  Bruno Haible  <bruno@clisp.org>
8116
8117         * tests/test-verify.c: New file.
8118
8119 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
8120
8121         Sync from coreutils.
8122
8123         * modules/argmatch (Depends-on): Add verify.
8124         * modules/getloadavg (Depends-on): Depend on fcntl-safer, not
8125         unistd-safer.
8126         * modules/save-cwd (Depends-on): Likewise.
8127
8128         * modules/openat (Files): Add lib/openat-die.c.
8129         (Depends-on): Remove error, exitfail.
8130         Add dirname.
8131
8132         * modules/verify: New file.
8133         * MODULES.html.sh (Diagnostics <assert.h>): New section,
8134         with "verify" module.
8135
8136 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
8137
8138         Sync from coreutils.
8139
8140         * m4/backupfile.m4, calloc.m4, chown.m4, cloexec.m4, dup2.m4:
8141         * m4/fileblocks.m4, free.m4, ftruncate.m4, getcwd.m4, getpagesize.m4:
8142         * m4/getugroups.m4, group-member.m4, idcache.m4, link-follow.m4:
8143         * m4/mkstemp.m4, mktime.m4, mountlist.m4, nanosleep.m4, pathmax.m4:
8144         * m4/physmem.m4, posixver.m4, putenv.m4, safe-read.m4, same.m4:
8145         * m4/save-cwd.m4, stdio-safer.m4, unistd-safer.m4, unlinkdir.m4:
8146         * m4/userspec.m4, xgetcwd.m4, xreadlink.m4:
8147         Don't bother checking for string.h, stdlib.h, unistd.h.
8148         * m4/fts.m4 (gl_FUNC_FTS_CORE): Don't require
8149         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK; that's now the lstat
8150         module's job.
8151         * m4/jm-macros.m4 (gl_MACROS): Likewise.
8152         * m4/prereq.m4 (gl_PREREQ): Add gl_FUNC_LSTAT.
8153
8154         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): New macro.
8155         (gl_GETDATE): Use it.
8156
8157         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Don't bother checking for unistd.h.
8158
8159 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
8160
8161         Sync from coreutils.
8162
8163         * lib/.cppi-disable: Add regcomp.c, regex_internal.c, regex_internal.h,
8164         stat-time.h.
8165         * lib/argmatch.h: Include verify.h
8166         (ARGMATCH_VERIFY): Use verify rather than rolling our own.
8167         (ARGMATCH_ASSERT): Remove; unused.
8168         * lib/canonicalize.c: Assume STDC_HEADERS.
8169         * lib/exclude.c: Include "strcase.h".
8170         * lib/regex_internal.h [!defined _LIBC]: Likewise.
8171         * lib/getusershell.c: Include stdio--.h rather than stdio.h
8172         and stdio-safer.h.
8173         (getusershell): Call fopen, not fopen_safer.
8174         * lib/save-cwd.c: Include fcntl--.h rather than fcntl.h.
8175         Do not include unistd-safer.h.
8176         (save_cwd): Don't call fd_safer; no longer needed
8177         now that we include fcntl--.h.
8178
8179         * lib/getdate.y (relative_time): New type.
8180         (RELATIVE_TIME_0): New constant.
8181         (parser_control): Use relative_time instead of doing it ourselves.
8182         (%union): Add new relative_time rel member.
8183         (tYEAR_UNIT, tMONTH_UNIT, tHOUR_UNIT, tMINUTE_UNIT, tSEC_UNIT):
8184         Now typeless.
8185         (relunit, relunit_snumber): Now of type rel.
8186         (zone, rel, relunit, get_date): Adjust to above changes.
8187
8188         * lib/getloadavg.c: Include fcntl--.h rather than fcntl.h.
8189         Do not include unistd-safer.h.
8190         (getloadavg): Don't call fd_safer; no longer needed
8191         now that we include fcntl--.h.
8192
8193         * lib/mkdir-p.c (ENOSYS): Define to EEXIST if not defined.
8194         (make_dir_parents): Treat ENOSYS like EEXIST.
8195
8196         Improve quality of diagnostics on restore_cwd failure.
8197         * lib/mkdir-p.h (make_dir): Remove.  All uses replaced by mkdir.
8198         (make_dir_parents): Last arg is now int * (for errno), not bool *.
8199         * lib/mkdir-p.c (make_dir, make_dir_parents): Likewise.
8200         Rewrite "mkdir -p" algorithm to avoid the need for "stat"
8201         each time through the loop.  Do not diagnose restore_cwd failure;
8202         that is the caller's job (and perhaps the caller does not care).
8203
8204         * lib/mkdir-p.c (CLEANUP_CWD, CLEANUP): Remove.
8205         (make_dir_parents): Revamp to avoid need for CLEANUP_CWD, CLEANUP.
8206         If the file already exists but is not a directory, don't bother
8207         to try to make its parents.
8208         Close potential file descriptor leak if we can't chdir("/") (!).
8209         Don't always return true if chdir($PWD) fails; return true only
8210         if the requested action was done successfully (except for the
8211         chdir($PWD)).
8212         Don't log final directory unless we actually made it.
8213         Refactor to avoid duplicate code to fix up permissions.
8214         Don't attempt to fix up parent permissions if chdir($PWD) fails.
8215
8216         * lib/strftime.c (my_strftime): Rewrite the previous change slightly,
8217         to make it a bit faster and (I hope) clearer.
8218         * lib/strftime.c (my_strftime): Add support for %:z, %::z, %:::z.
8219         Fix bug in formats like %2N.
8220
8221         * lib/verify.h: New file.
8222
8223 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
8224
8225         Sync from coreutils.
8226         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Check for netinet/in.h.
8227
8228 2005-09-22  Jim Meyering  <jim@meyering.net>
8229
8230         Sync from coreutils.
8231
8232         * m4/lstat.m4 (gl_FUNC_LSTAT):
8233         Use AC_LIBSOURCES to require lstat.c and lstat.h.
8234         Remove obsolete comment.
8235         * m4/xreadlink.m4: Use AC_LIBSOURCES and AC_LIBOBJ.
8236         * m4/xstrtod.m4: Likewise.
8237
8238         * m4/openat.m4 (gl_FUNC_OPENAT): Add openat-die.c.
8239
8240 2005-09-22  Jim Meyering  <jim@meyering.net>
8241
8242         Sync from coreutils.
8243
8244         * lib/backupfile.c: Use ARGMATCH_VERIFY, just in case.
8245
8246         * lib/posixtm.c (posixtime) [lint]: Initialize *all* of tm0, not just
8247         the .tm_year member, since otherwise gcc-4.0 would now warn about
8248         tm_zone, tm_gmtoff, tm_isdst, tm_yday, tm_wday.
8249
8250         * lib/quotearg.c (quotearg_n_options): Change code to be suboptimal, in
8251         order to avoid an unsuppressible warning from gcc on 64-bit systems.
8252
8253         * lib/getdate.y (get_date): Undo part of the 2005-04-04 change, so that
8254         the command "date -d'2005-03-27 +1 day'" succeeds once again, even
8255         when run in a time zone for which daylight savings time is in effect
8256         for the starting date.
8257
8258         * lib/mkdir-p.c (make_dir_parents): Don't let a failed chdir($PWD)
8259         stop us from restricting permissions of just-created absolute-named
8260         directories.
8261         * lib/mkdir-p.c (CLEANUP_CWD): Return *true*, not false when failing
8262         to restore initial working directory.
8263         * lib/mkdir-p.c (make_dir_parents): New parameter:
8264         different_working_dir, to tell caller if/when we change the working
8265         directory and are unable to return to the initial one.
8266         * lib/mkdir-p.h (make_dir_parents): Update prototype.
8267         * lib/mkdir-p.c (CLEANUP_CWD): Change one more `return 1' to
8268         `return false'.  This fixes a bug introduced on 2004-07-30.
8269
8270         * lib/openat.c (fdopendir): Be sure to close the supplied
8271         file descriptor before returning.  This makes our replacement
8272         implementation a little closer to Solaris's, where fdopendir
8273         ties the file descriptor to the returned DIR* pointer.
8274         * lib/openat.c (unlinkat): New function.
8275         * lib/openat.h (unlinkat): Add prototype.
8276         * lib/openat-die.c (openat_save_fail): Rename from openat_save_die.
8277         (openat_restore_fail): Rename from openat_restore_die.
8278         * lib/openat.c, openat.h: Reflect s/_die/_fail/ renaming.
8279
8280         Provide an alternative to exiting immediately upon save_cwd or
8281         restore_cwd failure.  Now, an application can arrange e.g.,
8282         to perform a longjump in that case.
8283         * lib/openat.c: Include dirname.h.
8284         Use IS_ABSOLUTE_FILE_NAME rather than testing for leading slash.
8285         (rpl_openat, fdopendir, fstatat): Call openat_save_die
8286         and openat_restore_die rather than calling error directly.
8287         Don't include "error.h" or "exitfail.h"; they're no longer needed.
8288
8289         * lib/openat-die.c (openat_save_die, openat_restore_die): New file.
8290         * lib/openat.h (openat_save_die, openat_restore_die): Declare and
8291         define.
8292
8293         * lib/strftime.c [FPRINTFTIME] (fprintftime): Provide a new interface:
8294         size_t fprintftime (FILE *fp, char const *fmt, struct tm const *tm,
8295                             int utc, int nanoseconds);
8296         Background:
8297         date should not have to allocate a megabyte of virtual memory to
8298         handle a format argument like +%1048575T.  When implemented with
8299         strftime, it must allocate such a buffer, use strftime to fill it
8300         in, print it, then free it.
8301         With fprintftime, it simply prints everything and exits.
8302         With no need for memory allocation, that's one fewer way to fail.
8303         * lib/strftime.c (my_strftime): Parse the colons of %:::z *after* the
8304         optional field width, not before, so we accept %9:z, not %:9z.
8305         (my_strftime): Be sure to use L_('x') for literals.
8306
8307         * lib/backupfile.c, lib/canon-host.c, lib/canonicalize.c, lib/chown.c:
8308         * lib/cloexec.c, lib/dup-safer.c, lib/dup2.c, lib/euidaccess.c:
8309         * lib/fd-safer.c, lib/fileblocks.c, lib/fopen-safer.c, lib/fsusage.c:
8310         * lib/ftruncate.c, lib/getcwd.c, lib/getcwd.h, lib/getloadavg.c:
8311         * lib/getopt_.h, lib/getpagesize.h, lib/getugroups.c:
8312         * lib/group-member.c, lib/human.h, lib/idcache.c, lib/mkdir-p.c:
8313         * lib/mountlist.c, lib/nanosleep.c, lib/pathmax.h, lib/physmem.c:
8314         * lib/posixver.c, lib/putenv.c, lib/raise.c, lib/safe-read.c:
8315         * lib/same.c, lib/save-cwd.c, lib/setenv.c, lib/settime.c:
8316         * lib/tempname.c, lib/unlinkdir.c, lib/unsetenv.c, lib/userspec.c:
8317         * lib/xgethostname.c, lib/xreadlink.c:
8318         Assume HAVE_UNISTD_H, i.e., include <unistd.h> unconditionally.
8319
8320         * lib/chown.c, lib/cloexec.c, lib/dup-safer.c, lib/dup2.c:
8321         * lib/fsusage.c, lib/getcwd.c, lib/getloadavg.c, lib/mountlist.c:
8322         * lib/openat.h, lib/save-cwd.c, lib/tempname.c:
8323         Assume HAVE_FCNTL_H (i.e., include <fcntl.h> unconditionally,
8324         and don't include <sys/file.h>).
8325
8326 2005-09-22  Eric Blake  <ebb9@byu.net>  (tiny change)
8327
8328         Sync from coreutils.
8329
8330         * lib/getloadavg.c (getloadavg) [__CYGWIN__]: Port to cygwin.
8331         [__linux__]: Allocate a big enough buffer for /proc/loadavg.
8332         [!LDAV_DONE]: Avoid unused variable warning.
8333
8334 2005-09-21  Bruno Haible  <bruno@clisp.org>
8335
8336         * lib/unicodeio.h (unicode_to_mb): New declaration.
8337
8338 2005-09-20  Derek Price  <derek@ximbiot.com>
8339
8340         * lib/getaddrinfo.c: Don't include <netdb.h> included from
8341         getaddrinfo.h.
8342
8343 2005-09-20  Bruno Haible  <bruno@clisp.org>
8344
8345         * gnulib-tool: Remove trailing slashes from the values specified for
8346         --source-base, --m4-base, --tests-base, --aux-dir.
8347         Suggested by Simon Josefsson <jas@extundo.com>.
8348
8349 2005-09-20  Bruno Haible  <bruno@clisp.org>
8350
8351         * gnulib-tool (func_all_modules, func_modules_transitive_closure,
8352         func_modules_to_filelist, func_import, func_create_testdir): Make all
8353         sorting results locale-independent, so that gnulib-cache.m4 doesn't
8354         change when gnulib-tool is invoked in a different locale.
8355
8356 2005-09-19  Simon Josefsson  <jas@extundo.com>
8357
8358         * m4/socklen.m4: Fix typo.
8359
8360 2005-09-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8361
8362         Use a consistent style for including <config.h>.
8363         * lib/__fpending.c, lib/acl.c, lib/argmatch.c, lib/argp-help.c,
8364         lib/argp-parse.c, lib/argp-pvh.c, lib/backupfile.c, lib/basename.c,
8365         lib/c-stack.c, lib/calloc.c, lib/check-version.c, lib/cloexec.c,
8366         lib/closeout.c, lib/copy-file.c, lib/creat-safer.c, lib/cycle-check.c,
8367         lib/dirfd.c, lib/dirname.c, lib/dup-safer.c, lib/dup2.c,
8368         lib/euidaccess.c, lib/exclude.c, lib/exitfail.c, lib/fatal-signal.c,
8369         lib/fd-safer.c, lib/file-type.c, lib/fileblocks.c, lib/filemode.c,
8370         lib/filenamecat.c, lib/findprog.c, lib/fnmatch.c, lib/fopen-safer.c,
8371         lib/free.c, lib/fsusage.c, lib/ftruncate.c, lib/full-write.c,
8372         lib/fwriteerror.c, lib/getaddrinfo.c, lib/getcwd.c, lib/getdelim.c,
8373         lib/getline.c, lib/getlogin_r.c, lib/getndelim2.c, lib/getnline.c,
8374         lib/getopt1.c, lib/getpass.c, lib/group-member.c, lib/hard-locale.c,
8375         lib/hash-pjw.c, lib/hash.c, lib/human.c, lib/idcache.c,
8376         lib/inet_ntop.c, lib/isdir.c, lib/long-options.c, lib/malloc.c,
8377         lib/memcasecmp.c, lib/memcmp.c, lib/memcoll.c, lib/memcpy.c,
8378         lib/memmove.c, lib/mkdir-p.c, lib/modechange.c, lib/mountlist.c,
8379         lib/open-safer.c, lib/physmem.c, lib/pipe-safer.c, lib/pipe.c,
8380         lib/poll.c, lib/posixver.c, lib/progname.c, lib/progreloc.c,
8381         lib/putenv.c, lib/quote.c, lib/quotearg.c, lib/readline.c,
8382         lib/readlink.c, lib/realloc.c, lib/regex.c, lib/rename.c, lib/rmdir.c,
8383         lib/rpmatch.c, lib/safe-read.c, lib/same.c, lib/save-cwd.c,
8384         lib/savedir.c, lib/sig2str.c, lib/strcspn.c, lib/strerror.c,
8385         lib/stripslash.c, lib/strncasecmp.c, lib/strndup.c, lib/strnlen.c,
8386         lib/strnlen1.c, lib/strsep.c, lib/strstr.c, lib/strtod.c,
8387         lib/strtoimax.c, lib/strtol.c, lib/strverscmp.c, lib/tempname.c,
8388         lib/time_r.c, lib/userspec.c, lib/utimecmp.c, lib/version-etc-fsf.c,
8389         lib/version-etc.c, lib/wait-process.c, lib/xalloc-die.c, lib/xgetcwd.c,
8390         lib/xmalloc.c, lib/xmemcoll.c, lib/xnanosleep.c, lib/xreadlink.c,
8391         lib/xsetenv.c, lib/xstrndup.c, lib/xstrtoimax.c, lib/xstrtol.c,
8392         lib/xstrtoumax.c, lib/yesno.c:
8393         Standardize inclusion of config.h.
8394         * lib/__fpending.h, lib/dirfd.h, lib/getdate.h, lib/human.h,
8395         lib/inttostr.h:  Removed inclusion of config.h from header files.
8396         * lib/inttostr.c:  Adjusted in-tree users.
8397         * lib/timespec.h: Remove superfluous warning to include config.h.
8398         * lib/atexit.c, lib/chdir-long.c, lib/chown.c, lib/fchown-stub.c,
8399         lib/getgroups.c, lib/gettimeofday.c, lib/lchown.c, lib/lstat.c,
8400         lib/mkdir.c, lib/mkstemp.c, lib/nanosleep.c, lib/openat.c, lib/raise.c,
8401         lib/readtokens0.c, lib/readutmp.c, lib/unlinkdir.c: Guard inclusion of
8402         config.h with HAVE_CONFIG_H.
8403
8404 2005-09-19  Jim Meyering  <jim@meyering.net>
8405
8406         * modules/pathmax (License): Change to LGPL.
8407
8408 2005-09-19  Derek Price  <derek@ximbiot.com>
8409
8410         * config/srclist.txt: glibc's glob.h is now in lib/glob-libc.h.
8411
8412 2005-09-19  Bruno Haible  <bruno@clisp.org>
8413
8414         * gnulib-tool (import): Provide default for --tests-base.
8415
8416 2005-09-19  Bruno Haible  <bruno@clisp.org>
8417
8418         * doc/quote.texi: New file, extracted from gnulib.texi.
8419         * doc/ctime.texi: New file, extracted from gnulib.texi.
8420         * doc/inet_ntoa.texi: New file, extracted from gnulib.texi.
8421         * doc/gnulib-tool.texi: New file, extracted from gnulib.texi.
8422         * doc/gnulib.texi: Include them.
8423
8424 2005-09-18  Bruno Haible  <bruno@clisp.org>
8425
8426         Portability fix.
8427         * gnulib-tool (func_readlink): New function.
8428         (func_ln_if_changed): Use it.
8429
8430 2005-09-18  Bruno Haible  <bruno@clisp.org>
8431
8432         * gnulib-tool: Support --with-tests also with --import.
8433         (func_emit_tests_Makefile_am): Use variables $m4base and $testsbase.
8434         (func_import): Use variables $testsbase and $inctests. Emit a
8435         gl_TESTS_BASE form into gnulib-cache.m4. Create $testsbase/Makefile.am.
8436         Remind the user to add AC_CONFIG_FILES($testsdir/Makefile) and
8437         SUBDIRS += $testsdir.
8438         (func_create_testdir): Update.
8439
8440 2005-09-18  Bruno Haible  <bruno@clisp.org>
8441
8442         * gnulib-tool: Revise --dry-run implementation. Use variable $doit
8443         instead of $dry_run.
8444         (func_cp_if_changed, func_mv_if_changed): Remove functions.
8445         (func_ln_if_changed): Don't handle dry-run here.
8446         (func_import): In dry-run mode, detect more precisely which actions
8447         would be performed, and don't use "...ing" verbs.
8448
8449 2005-09-18  Bruno Haible  <bruno@clisp.org>
8450
8451         * gnulib-tool (func_tmpdir): New function, taken from GNU gettextize.
8452         (func_import): Use join on two temporary files instead of three nested
8453         loops, in order to determine which files are new or old.
8454
8455 2005-09-18  Bruno Haible  <bruno@clisp.org>
8456
8457         * gnulib-tool (func_import): Comment out code that spits out the
8458         new files with --dry-run.
8459
8460 2005-09-18  Bruno Haible  <bruno@clisp.org>
8461
8462         * doc/gnulib.texi (Invoking gnulib-tool): 50% rewritten.
8463
8464 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
8465
8466         * lib/stat-time.h: New file.
8467         * lib/timespec.h (ST_TIME_CMP_NS, ST_TIME_CMP, ATIME_CMP, CTIME_CMP):
8468         (MTIME_CMP, TIMESPEC_NS): Remove.  Now done by stat-time.h,
8469         in a different way.
8470         (timespec_cmp): New function.
8471         * lib/utimecmp.c: Include stat-time.h.
8472         (SYSCALL_RESOLUTION): Depend on whether various struct stat
8473         members exist, not on the obsolescent ST_MTIM_NSEC.
8474         (utimecmp): Use the new stat-time functions rater than TIMESPEC_NS.
8475
8476 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
8477
8478         * config/srclist.txt: Remove glibc bug 1033 and uncomment mktime.c.
8479
8480 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
8481
8482         * MODULES.html.sh (File system functions): Add stat-time.
8483         * modules/stat-time: New file.
8484         * modules/timespec (Files): Remove m4/st_mtim.m4; this
8485         is now done in a different way, by the stat-time module.
8486         * modules/utimecmp (Depends-on): Add stat-time.
8487
8488 2005-09-15  Paul Eggert  <eggert@cs.ucla.edu>
8489
8490         * m4/st_mtim.m4: Remove.  Superseded by...
8491         * m4/stat-time.m4: New file.
8492         * m4/timespec.m4 (gl_TIMESPEC): Require AC_C_INLINE.
8493         Do not invoke AC_STRUCT_ST_MTIM_NSEC; no longer needed.
8494
8495 2005-09-15  Derek Price  <derek@ximbiot.com>
8496
8497         * m4/strstr.m4 (gl_FUNC_STRSTR): Don't define strstr here.
8498
8499 2005-09-15  Derek Price  <derek@ximbiot.com>
8500
8501         * lib/regex_internal.h: Blank `pure' for GNUC < 3.
8502         * lib/regex_internal.c: Ditto, using this...
8503         (__GNUC_PREREQ): ...new macro.
8504         * lib/regcomp.c, regexec.c: Blank `always_inline' for GNUC < 3.1
8505         using...
8506         (__GNUC_PREREQ): ...this new macro.
8507
8508         * lib/strstr.h: Include string.h. Define strstr as a macro here.
8509
8510 2005-09-15  Derek Price  <derek@ximbiot.com>
8511             Paul Eggert  <eggert@cs.ucla.edu>
8512
8513         * lib/regcomp.c, regexec.c, regex_internal.c: Back out previous
8514         changes, consolidating in...
8515         * lib/regex_internal.h: ...this file.
8516
8517 2005-09-13  Jim Meyering  <jim@meyering.net>
8518
8519         * lib/canon-host.c: Filter through gnu indent and reword comments
8520         slightly.
8521         * lib/canon-host.h (ch_strerror_r): Tweak cpp indentation and spacing.
8522
8523 2005-09-13  Derek Price  <derek@ximbiot.com>
8524
8525         * lib/canon-host.c (canon_host_r): Set *cherror on memory allocation
8526         failure.
8527         Reported by Jim Meyering  <jim@meyering.net>.
8528
8529 2005-09-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
8530
8531         * lib/base64.c: Typo.
8532         (base64_encode): Put b64str in initialized data section.
8533
8534 2005-09-12  Paul Eggert  <eggert@cs.ucla.edu>
8535
8536         Merge glibc and coreutils changes into gnulib, plus a few
8537         extra fixes.
8538         * lib/md5.c: Use #error rather than a string.
8539         (CYCLIC): New macro, from glibc source.  Use it instead of rol.
8540         * lib/md5.h (__GNUC_PREREQ, __THROW): Define if not defined already.
8541         (__attribute__): Define to empty for non recent-GCC.
8542         (__md5_buffer, __md5_finish_ctx, __md5_init_ctx, __md5_process_block):
8543         (__md5_process_bytes, __md5_read_ctx, __md5_stream):
8544         Renamed from their non-__ counterparts, with new macros replacing
8545         them if not _LIBC.  Add __THROW attribute.
8546         (rol): Remove.
8547         (struct md5_ctx): Align buffer if using GCC.
8548         * lib/sha1.h (struct sha1_ctx): Likewise.
8549         * lib/sha1.c (SWAP): Renamed from the NOTSWAP.  All uses changed.
8550         The old name was backwards.
8551         (NOTSWAP): Remove; not used.
8552         (rol): New macro, moved here from md5.h.
8553         (sha1_process_block): Remove a FIXME that doesn't make sense.
8554
8555 2005-09-12  Derek Price  <derek@ximbiot.com>
8556
8557         Return usable errors from canon-host.
8558         * lib/canon-host.h: New file.
8559         * lib/canon-host.c (canon_host): Wrap...
8560         (canon_host_r): ...this new function, which now relies exclusively on
8561         getaddrinfo.
8562         (ch_strerror): New function.
8563         (last_cherror): New global.
8564         * lib/getaddrinfo.c: Move include of getaddrinfo.h first to test
8565         interface.
8566         (getaddrinfo): Add AI_CANONNAME functionality.  Don't do arithmetic on
8567         void *.
8568         (freeaddrinfo): Free ai->ai_canonname when set.
8569
8570 2005-09-12  Derek Price  <derek@ximbiot.com>
8571
8572         Make canon-host require getaddrinfo.
8573         * m4/canon-host.m4 (gl_CANON_HOST): Remove most dependencies.
8574         AC_LIBSOURCE canon-host.h.  Call...
8575         (gl_PREREQ_CANON_HOST): ...this new function, which requires
8576         gl_GETADDRINFO.
8577         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Compile gai_strerror when needed.
8578
8579 2005-09-12  Derek Price  <derek@ximbiot.com>
8580
8581         * modules/canon-host: Add canon-host.h.  Depend on getaddrinfo.  Make
8582         LGPL.
8583         * modules/getaddrinfo: Add link to opengroup spec.  Depend on strdup.
8584
8585 2005-09-12  Derek Price  <derek@ximbiot.com>
8586
8587         * lib/gai_strerror.c: Include config.h when available.  Include
8588         getaddrinfo.h before other headers to test interface.
8589         Reported by Larry Jones <lawrence.jones@ugs.com>.
8590
8591 2005-09-12  Derek Price  <derek@ximbiot.com>
8592             Paul Eggert  <eggert@cs.ucla.edu>
8593
8594         * modules/glob (Files): Add glob-libc.h.
8595
8596 2005-09-12  Derek Price  <derek@ximbiot.com>
8597             Paul Eggert  <eggert@cs.ucla.edu>
8598
8599         * m4/glob.m4 (gl_GLOB_SUBSTITUTE): AC_LIBSOURCES for glob.c,
8600         glob_.h, glob-libc.h.
8601         (gl_PREREQ_GLOB): Remove _SYS_CDEFS_H hack; no longer needed.
8602
8603 2005-09-12  Derek Price  <derek@ximbiot.com>
8604             Paul Eggert  <eggert@cs.ucla.edu>
8605
8606         * lib/glob-libc.h: Renamed from glob_.h.  The new version is
8607         taken from libc's glob.h, except with '#ifdef __GLOB_GNULIB'
8608         protecting things that should be done only in gnulib contexts.
8609         * lib/glob_.h: New file, containing only the glob things needed for
8610         gnulib.
8611         (GLOB_PREFIX): Remove.  All uses changed to look for __GLOB_GNULIB.
8612         (__GLOB_CONCAT, __GLOB_XCONCAT, __GLOB_ID): Remove; no longer needed.
8613         (glob, globfree, glob_pattern_p): Now defined simply in terms of
8614         rpl_glob, rpl_globfree, rpl_glob_pattern_p.
8615         (__GLOB_GNULIB): New macro, to keep the glob.h changes clearer
8616         and to respect the namespace rules better.
8617
8618 2005-09-08  Simon Josefsson  <jas@extundo.com>
8619
8620         * modules/socklen: New file.
8621
8622 2005-09-08  Simon Josefsson  <jas@extundo.com>
8623
8624         * m4/socklen.m4: New file.
8625
8626 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
8627
8628         * modules/utimens (Files): Add m4/utimbuf.m4, since
8629         m4/utimens.m4 requires gl_CHECK_TYPE_STRUCT_UTIMBUF.
8630         Reported by Sergey Poznyakoff.
8631
8632 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
8633
8634         * lib/glob.c (glob, globfree, __glob_pattern_p): Use old-style function
8635         definitions, since that's the preferred style in glibc.
8636         Fix a minor spacing issue, and update copyright notice to match
8637         glibc's.
8638
8639 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
8640
8641         * config/srclist.txt: Remove glibc bug 1061; it's been fixed.
8642
8643 2005-09-06  Simon Josefsson  <jas@extundo.com>
8644
8645         * lib/getpass.c (getpass): Fix typo, test for HAVE_TCSETATTR and not
8646         TCSETATTR.  Reported by Derek Price <derek@ximbiot.com>.
8647
8648 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
8649
8650         * lib/regex_internal.h (bitset_not): Add parens to avoid gcc -Wall
8651         warning.
8652
8653 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
8654
8655         * config/srclist.txt: Add glibc bug 1302.
8656
8657 2005-09-05  Paul Eggert  <eggert@cs.ucla.edu>
8658
8659         Change bitset word type from unsigned int to unsigned long int,
8660         as this has better performance on typical 64-bit hosts.
8661         Port bitset code to hosts with unusual word sizes.
8662         * lib/regcomp.c (build_equiv_class, build_charclass, build_range_exp):
8663         (build_collating_symbol):
8664         Prefer bitset to re_bitset_ptr_t in prototypes, when the actual
8665         argument is a bitset.  This is merely a style issue, but it makes
8666         it clearer that an entire array is expected.
8667         (re_compile_fastmap_iter, init_dfa, init_word_char, optimize_subexps):
8668         * lib/regcomp.c (lower_subexp, parse_bracket_exp, built_charclass_op):
8669         Port to the case where bitset_word is not the same as unsigned int.
8670         * lib/regex_internal.h (bitset_set, bitset_clear, bitset_contain):
8671         (bitset_not, bitset_merge, bitset_set_all, bitset_mask):
8672         Likewise.
8673         * lib/regexec.c (check_dst_limits_calc_pos_1,
8674         check_subexp_matching_top):
8675         (build_trtable, group_nodes_into_DFAstates):
8676         Likewise.
8677         * lib/regcomp.c (re_compile_fastmap_iter, utf8_sb_map, optimize_utf8):
8678         Don't assume that SBC_MAX is a multiple of BITSET_WORD_BITS.
8679         * lib/regex_internal.h (bitset_set_all, bitset_not): Likewise.
8680         * lib/regexec.c (group_nodes_into_DFAstates): Likewise.
8681         * lib/regcomp.c (utf8_sb_map): Don't assume UINT_MAX == 0xffffffff.
8682         * lib/regcomp.c (optimize_subexps, lower_subexp):
8683         Work even if bitset_word has holes in its bitwise representation.
8684         * lib/regex_internal.h (BITSET_WORD_BITS): Likewise.
8685         * lib/regexec.c (check_dst_limits_calc_pos_1,
8686         check_subexp_matching_top):
8687         Likewise.
8688         * lib/regex_internal.c (re_string_reconstruct):
8689         Don't assume UCHAR_MAX == 255.
8690         * lib/regex_internal.h (bitset_set_all): Likewise.
8691         * lib/regex_internal.h (BITSET_WORD_BITS): Renamed from UINT_BITS.
8692         All uses changed.
8693         (BITSET_WORDS): Renamed from BITSET_UINTS.  All uses changed.
8694         (bitset_word): New type, replacing 'unsigned int' for bitset uses.
8695         All uses changed.
8696         (BITSET_WORD_MAX): New macro.
8697         (bitset_set, bitset_clear, bitset_contain, bitset_empty):
8698         (bitset_set_all, bitset_copy):  Now inline functions, not macros.
8699         (bitset_empty, bitset_copy):
8700         Prefer sizeof (bitset) to multiplying it out ourselves.
8701         (bitset_not_merge): Remove; unused.
8702         (bitset_contain): Return bool, not unsigned int with one bit on.
8703         All callers changed.
8704         * lib/regexec.c (build_trtable): Don't assume bitset has no stricter
8705         alignment than re_node_set; do this by defining a new internal
8706         type struct dests_alloc and using it to allocate memory.
8707
8708 2005-09-05  Bruno Haible  <bruno@clisp.org>
8709
8710         * gnulib-tool (func_import): Fix comparison in handling of symbolic
8711         links.
8712
8713 2005-09-04  Martin Lambers <marlam@marlam.de>  (tiny change)
8714
8715         * modules/size_max (Makefile.am): Add size_max.h
8716
8717 2005-09-04  Derek Price  <derek@ximbiot.com>
8718
8719         * gnulib-tool (func_import): Fix reversed $symbolic logic.
8720
8721 2005-09-03  Simon Josefsson  <jas@extundo.com>
8722
8723         * gnulib-tool: Fix typo.
8724
8725 2005-09-03  Simon Josefsson  <jas@extundo.com>
8726
8727         * config/srclist.txt: Add glibc bug 1293.
8728
8729 2005-09-03  Derek Price  <derek@ximbiot.com>
8730
8731         * m4/getlogin_r (gl_GETLOGIN_R): Fix cut & paste error.
8732         From Larry Jones <lawrence.jones@ugs.com>.
8733
8734 2005-09-02  Simon Josefsson  <jas@extundo.com>
8735
8736         * modules/socklen: New file.
8737
8738 2005-09-02  Simon Josefsson  <jas@extundo.com>
8739
8740         * modules/havelib: New module.
8741
8742         * modules/gettext, modules/iconv, modules/lock, modules/readline:
8743         Use havelib.
8744
8745 2005-09-02  Paul Eggert  <eggert@cs.ucla.edu>
8746
8747         Check for arithmetic overflow when calculating sizes, to prevent
8748         some buffer-overflow issues.  These patches are conservative, in the
8749         sense that when I couldn't determine whether an overflow was possible,
8750         I inserted a run-time check.
8751         * lib/regex_internal.h (re_xmalloc, re_xrealloc, re_x2realloc): New
8752         macros.
8753         (SIZE_MAX) [!defined SIZE_MAX]: New macro.
8754         (re_alloc_oversized, re_x2alloc_oversized, re_xnmalloc):
8755         (re_xnrealloc, re_x2nrealloc): New inline functions.
8756         * lib/regcomp.c (init_dfa, analyze, build_range_exp,
8757         parse_bracket_exp):
8758         (build_equiv_class, build_charclass): Check for arithmetic overflow
8759         in size expression calculations.
8760         * lib/regex_internal.c (re_string_realloc_buffers):
8761         (build_wcs_upper_buffer, re_node_set_add_intersect):
8762         (re_node_set_init_union, re_node_set_insert, re_node_set_insert_last):
8763         (re_dfa_add_node, register_state): Likewise.
8764         * lib/regexec.c (re_search_stub, re_copy_regs, re_search_internal):
8765         (prune_impossible_nodes, push_fail_stack, set_regs, check_arrival):
8766         (build_trtable, extend_buffers, match_ctx_init, match_ctx_add_entry):
8767         (match_ctx_add_subtop, match_ctx_add_sublast): Likewise.
8768
8769 2005-09-02  Paul Eggert  <eggert@cs.ucla.edu>
8770
8771         * modules/inttostr (Files): Add m4/inttypes_h.m4, m4/stdint_h.m4,
8772         m4/ulonglong.m4.  Problem reported by Martin Lambers.
8773
8774 2005-09-02  Bruno Haible  <bruno@clisp.org>
8775
8776         Support for lib vs. lib64 distinction on biarch platforms.
8777         * m4/lib-prefix.m4 (AC_LIB_PREPARE_MULTILIB): New macro.
8778         (AC_LIB_PREFIX): Require it. Use $acl_libdirstem instead of 'lib'.
8779         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Likewise.
8780
8781 2005-09-02  Bruno Haible  <bruno@clisp.org>
8782
8783         * gnulib-tool (import): In the other first-use case, provide defaults
8784         as well.
8785
8786 2005-09-02  Bruno Haible  <bruno@clisp.org>
8787
8788         * config/srclist.txt: lib-link.m4 and lib-prefix.m4 currently have
8789         patches not yet found in the latest gettext release.
8790
8791 2005-09-01  Paul Eggert  <eggert@cs.ucla.edu>
8792
8793         * lib/glob.c (GET_LOGIN_NAME_MAX): Renamed from LOGIN_NAME_MAX,
8794         to avoid a collision with bits/local_lim.h in glibc.
8795         All uses changed.  Problem reported by Dmitry V. Levin in
8796         <http://sources.redhat.com/bugzilla/show_bug.cgi?id=1060>.
8797
8798         * lib/regex_internal.c (build_wcs_upper_buffer): Fix portability
8799         bugs in int versus size_t comparisons.
8800         (re_string_context_at): Fix bug where the code assumed that
8801         Idx is signed.
8802
8803         Use bool where appropriate.
8804         * lib/regcomp.c (re_set_fastmap): ICASE arg is bool, not int.
8805         All callers changed.
8806         (calc_eclosure_iter): Likewise, for ROOT arg.
8807         (parse_bracket_element): Likewise, for ACCEPT_HYPHEN arg.
8808         (build_charclass_op): Likewise, for NON_MATCH arg.
8809         * lib/regex_internal.c (re_string_allocate, re_string_construct):
8810         (re_string_construct_common): Likewise, for ICASE arg.
8811         * lib/regexec.c (re_search_2_stub, re_search_stub):
8812         Likewise, for RET_LEN arg.
8813         (check_matching): Likewise, for FL_LONGEST_MATCH arg.
8814         (set_regs): Likewise, for FL_BACKTRACK arg.
8815         * lib/regcomp.c (re_compile_fastmap_iter, optimize_utf8):
8816         (duplicate_node_closure, calc_inveclosure, calc_eclosure):
8817         (calc_eclosure_iter, parse_bracket_exp):
8818         Use bool for internal variables that are booleans.
8819         * lib/regexec.c (re_search_internal, check_matching,
8820         proceed_next_node):
8821         (set_regs, build_sifted_states, sift_states_bkref):
8822         (check_arrival_add_next_nodes, check_arrival_expand_ecl_sub):
8823         (expand_bkref_cache, build_trtable, group_nodes_into_DFAstates):
8824         (find_collation_sequence_value):
8825         Likewise.
8826         * lib/regex_internal.c (re_node_set_insert, re_node_set_insert_last):
8827         (re_node_set_compare):
8828         Return bool, not int. All callers changed.
8829         * lib/regexec.c (check_halt_node_context, check_dst_limits):
8830         (build_trtable, check_node_accept): Likewise.
8831         * lib/regex_internal.h: Include stdbool.h.
8832
8833         Fix bugs uncovered when converting to bool.
8834         * lib/regcomp.c (calc_eclosure_iter): Check for storage allocation
8835         failure instead of charging ahead blindly.
8836         * lib/regex_internal.c (register_state): Likewise.
8837         * lib/regexec.c (re_search_2_stub): Use simpler method than boolean
8838         for freeing internal storage.
8839         (group_nodes_into_DFA_states): Use unsigned int, not int, for
8840         bitset pieces used as boolean, to avoid undefined behavior
8841         on hosts that do int overflow checking.
8842
8843 2005-09-01  Paul Eggert  <eggert@cs.ucla.edu>
8844
8845         * config/srclist.txt: Add glibc bugs 1285-1287.
8846
8847 2005-09-01  Jim Meyering  <jim@meyering.net>
8848
8849         * m4/lchown.m4: Require gl_FUNC_CHOWN, for the definition of
8850         CHOWN_MODIFIES_SYMLINK, which is used by lchown.c.
8851         Require gl_STAT_MACROS, too.
8852
8853 2005-09-01  Bruno Haible  <bruno@clisp.org>
8854
8855         * gnulib-tool (import): In the first-use case, provide defaults.
8856
8857 2005-09-01  Bruno Haible  <bruno@clisp.org>
8858
8859         * gnulib-tool (func_import): Remove the .tmp files.
8860
8861 2005-09-01  Bruno Haible  <bruno@clisp.org>
8862
8863         * gnulib-tool (func_import): Fix handling of symbolic links.
8864
8865 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
8866
8867         On 64-bit hosts (where size_t is 64 bits and int is 32 bits), the
8868         old glibc regex code mishandles strings longer than 2**31 bytes.
8869         This patch fixes this when the regex code is used in gnulib
8870         (i.e., outside glibc).
8871
8872         This patch should not affect the use of the regex code inside
8873         glibc.  No doubt this problem also needs to be handled for glibc
8874         as well, but the result will be an incompatible change to the
8875         glibc ABI, and the old ABI will have to be supported too.  That
8876         can be the the subject for another patch.
8877
8878         * lib/regex.h (_REGEX_LARGE_OFFSETS): New feature-test macro,
8879         governing whether the rest of this patch is active.  By default,
8880         the macro is disabled and the patch has no effect.
8881         (regoff_t) [defined _REGEX_LARGE_OFFSETS]: Define to off_t, not int.
8882         (__re_idx_t, __re_size_t, __re_long_size_t): New types.
8883         (struct re_pattern_buffer, re_search, re_search_2, re_match):
8884         (re_match_2, re_set_registers): Use the new types.
8885         * lib/regex_internal.h (Idx, re_hashval_t): New types.
8886         (REG_MISSING, REG_ERROR, REG_VALID_INDEX, REG_VALID_NONZERO_INDEX):
8887         New macros.
8888         (re_node_set, re_charset_t, re_token_t, re_string_realloc_buffers):
8889         (re_string_context_at, bin_tree_t, re_dfastate_t):
8890         (struct re_state_table_entry, state_array_t, re_sub_match_last_t):
8891         (re_sub_match_top_t, re_match_context_t, re_sift_context_t):
8892         (struct re_fail_stack_ent_t, struct re_fail_stack_t, struct re_dfa_t):
8893         (re_string_char_size_at, re_string_wchar_at):
8894         (re_string_elem_size_at):
8895         Use the new types and macros to port to 64-bit hosts.
8896         Use unsigned types for internal values, so that the code
8897         mostly works even for arrays larger than SSIZE_MAX.
8898         * lib/regcomp.c (re_compile_internal, init_dfa, duplicate_node):
8899         (search_duplicated_node, calc_eclosure_iter, fetch_number):
8900         (parse_reg_exp, parse_branch, parse_expression, parse_sub_exp):
8901         (build_equiv_class, build_charclass, re_compile_fastmap_iter):
8902         (free_dfa_content, create_initial_state, optimize_utf8, analyze):
8903         (optimize_subexps, calc_first, link_nfa_nodes, duplicate_node_closure):
8904         (calc_inveclosure, parse_dup_op, build_range_exp):
8905         (build_collating_symbol, parse_bracket_exp, build_charclass_op):
8906         (fetch_number, create_token_tree, mark_opt_subexp):
8907         Likewise.
8908         * lib/regex_internal.c (re_string_construct_common,
8909         create_ci_newstate):
8910         (create_cd_newstate, re_string_allocate, re_string_construct):
8911         (re_string_realloc_buffers, build_wcs_upper_buffer):
8912         (re_string_skip_chars, build_upper_buffer, re_string_translate_buffer):
8913         (re_string_reconstruct, re_string_peek_byte_case):
8914         (re_string_fetch_byte_case, re_string_context_at):
8915         (re_node_set_alloc, re_node_set_init_1, re_node_set_init_2):
8916         (re_node_set_init_copy, re_node_set_add_intersect):
8917         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
8918         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
8919         (re_node_set_remove_at, re_dfa_add_node, calc_state_hash):
8920         (re_acquire_state, re_acquire_state_context, register_state):
8921         Likewise.
8922         * lib/regex.c (match_ctx_init, match_ctx_add_entry,
8923         search_cur_bkref_entry):
8924         (match_ctx_add_subtop, match_ctx_add_sublast, sift_ctx_init):
8925         (re_search_internal, re_search_2_stub, re_search_stub)
8926         (re_copy_regs, check_matching, check_halt_state_context, update_regs):
8927         (push_fail_stack, sift_states_iter_mb, build_sifted_states):
8928         (update_cur_sifted_state, check_dst_limits):
8929         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
8930         (check_subexp_limits, sift_states_bkref, merge_state_array):
8931         (check_subexp_matching_top, get_subexp, get_subexp_sub):
8932         (find_subexp_node, check_arrival, check_arrival_add_next_nodes):
8933         (check_arrival_expand_ecl, check_arrival_expand_ecl_sub):
8934         (expand_bkref_cache, check_node_accept_bytes):
8935         (group_nodes_into_DFAstates, check_node_accept, regexec, re_match):
8936         (re_search, re_match_2, re_search_2, prune_impossible_nodes):
8937         (acquire_init_state_context, check_halt_node_context):
8938         (proceed_next_node, pop_fail_stack, set_regs, free_fail_stack_return):
8939         (sift_states_backward, clean_state_log_if_needed):
8940         (sub_epsilon_src_nodes, add_epsilone_src_nodes, merge_state_with_log):
8941         (find_recover_state, transit_state_sb, transit_state_mb):
8942         (transit_state_bkref, build_trtable, match_ctx_clean):
8943         Likewise.
8944         * lib/regcomp.c (parse_dup_op): Add an extra test if Idx is unsigned,
8945         to work around an assumption that REG_MISSING is negative.
8946
8947         * lib/regcomp.c (re_comp) [defined _REGEX_RE_COMP || defined _LIBC]:
8948         (seek_collating_symbol_entry) [defined _LIBC]:
8949         (lookup_collation_sequence_value) [defined _LIBC]:
8950         (build_range_exp, build_collating_symbol) [defined _LIBC]:
8951         Use prototypes rather than old-style function definitions.
8952         * lib/regexec.c (re_exec) [defined _REGEX_RE_COMP || defined _LIBC]:
8953         (transit_state_sb) [0]:
8954         (find_collation_sequence_value) [defined _LIBC]: Likewise.
8955
8956         * lib/regexec.c (re_search_internal): Simplify update of rm_so and
8957         rm_eo.
8958
8959         * lib/regcomp.c (re_compile_fastmap_iter, init_dfa, init_word_char):
8960         (optimize_subexps, lower_subexp):
8961         Don't assume 1<<31 has defined behavior on hosts with 32-bit int,
8962         since the signed shift might overflow.  Use 1u<<31 instead.
8963         * lib/regex_internal.h (bitset_set, bitset_clear, bitset_contain):
8964         Likewise.
8965         * lib/regexec.c (check_dst_limits_calc_pos_1,
8966         check_subexp_matching_top): Likewise.
8967
8968         * lib/regcomp.c (optimize_subexps, lower_subexp):
8969         Use CHAR_BIT rather than 8, for clarity.
8970         * lib/regexec.c (check_dst_limits_calc_pos_1):
8971         (check_subexp_matching_top): Likewise.
8972         * lib/regcomp.c (init_dfa): Make table_size unsigned, so that we don't
8973         have to worry about portability issues when shifting it left.
8974         Remove no-longer-needed test for table_size > 0.
8975         * lib/regcomp.c (parse_sub_exp): Do not shift more bits than there are
8976         in a word, as the resulting behavior is undefined.
8977         * lib/regexec.c (check_dst_limits_calc_pos_1): Likewise;
8978         in one case, a <= should have been an <, and in another case the
8979         whole test was missing.
8980         * lib/regex_internal.h (BYTE_BITS): Remove.  All uses changed to
8981         the standard name CHAR_BIT.
8982         * lib/regexec.c (match_ctx_add_entry): Don't assume that ~0 == -1;
8983         this is not true on one's complement and signed-magnitude hosts.
8984
8985         * lib/regex_internal.h (re_sub_match_top_t): Remove unused member
8986         next_last_offset.
8987         (struct re_dfa_t): Remove unused member states_alloc.
8988         * lib/regcomp.c (init_dfa): Don't initialize unused members.
8989
8990 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
8991
8992         * m4/regex.m4 (gl_REGEX): Require AC_SYS_LARGEFILE, Define
8993         _REGEX_LARGE_OFFSETS).  Test for regoff_t/off_t bug in 64-bit
8994         and large-file glibc and in 32-bit large-file Solaris.
8995
8996 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
8997
8998         * lib/regex_internal.c (re_string_reconstruct): Don't assume buffer
8999         lengths fit in regoff_t; this isn't true if regoff_t is the same
9000         width as size_t.
9001         * lib/regex.c (re_search_internal): 5th arg is LAST_START
9002         (= START + RANGE) instead of RANGE.  This avoids overflow
9003         problems when regoff_t is the same width as size_t.
9004         All callers changed.
9005         (re_search_2_stub): Check for overflow when adding the
9006         sizes of the two strings.
9007         (re_search_stub): Check for overflow when adding START
9008         to RANGE; if it occurs, substitute the extreme value.
9009
9010 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
9011
9012         * config/srclist.txt: Add glibc bugs 1273, 1278-1282, 1284.
9013
9014 2005-08-31  Jim Meyering  <jim@meyering.net>
9015
9016         * lib/regcomp.c (search_duplicated_node): Make first pointer arg
9017         a pointer-to-const.
9018         * lib/regex_internal.c (create_ci_newstate, create_cd_newstate):
9019         (register_state): Likewise.
9020         * lib/regexec.c (search_cur_bkref_entry, check_dst_limits):
9021         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
9022         (group_nodes_into_DFAstates): Likewise.
9023
9024 2005-08-31  Jim Meyering  <jim@meyering.net>
9025
9026         * check-module: Add a FIXME comment.
9027
9028 2005-08-31  Eric Blake  <ebb9@byu.net>
9029
9030         * modules/unistd-safer (Files): Add unistd--.h.
9031         * modules/stdio-safer (Files): Add stdio--.h.
9032
9033 2005-08-31  Derek Price  <derek@ximbiot.com>
9034
9035         * lib/getdelim.c (getdelim): Return EOF on EOF.
9036         Reported by Larry Jones <lawrence.jones@ugs.com>.
9037
9038 2005-08-31  Bruno Haible  <bruno@clisp.org>
9039
9040         Avoid unnecessary diffs in the generated lib/Makefile.am.
9041         * gnulib-tool (func_emit_lib_Makefile_am): Don't write the cmd into
9042         the generated files.
9043         (func_import): Don't set cmd.
9044
9045 2005-08-31  Bruno Haible  <bruno@clisp.org>
9046
9047         * lib/strstr.c: Include <stddef.h>, for NULL.
9048         * lib/strcasestr.c: Likewise.
9049         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
9050
9051 2005-08-31  Bruno Haible  <bruno@clisp.org>
9052
9053         * gnulib-tool: New option --macro-prefix.
9054         (func_import): Use macro_prefix.
9055         (import): Handle option --macro-prefix.
9056
9057 2005-08-31  Bruno Haible  <bruno@clisp.org>
9058
9059         * gnulib-tool (import): Rename most ac_* variables to cached_*.
9060         Also use new variables cached_lgpl, cached_libtool.
9061
9062 2005-08-31  Bruno Haible  <bruno@clisp.org>
9063
9064         * gnulib-tool (func_import): Require AC_GNU_SOURCE etc. instead of
9065         always instantiating them.
9066
9067 2005-08-31  Bruno Haible  <bruno@clisp.org>
9068
9069         * gnulib-tool (func_import): Read the previous cached settings
9070         from gnulib-cache.m4 and gnulib-comp.m4. Remove files that were
9071         earlier added by gnulib but are now dropped. Warn when a gnulib file
9072         overwrites a non-gnulib file.
9073
9074 2005-08-31  Bruno Haible  <bruno@clisp.org>
9075
9076         * gnulib-tool (func_import): Generate two files gnulib-cache.m4 and
9077         gnulib-comp.m4 instead of a single gnulib.m4, to make it easy for
9078         projects that don't keep autogenerated files in CVS. Put into
9079         actioncmd only the specified modules, not the transitive closure.
9080
9081 2005-08-31  Bruno Haible  <bruno@clisp.org>
9082
9083         * gnulib-tool (func_import): Fix defaulting of $libname and $libtool.
9084         Create directories that shall be filled.
9085         (import): Don't look for gl_* macros in configure.ac. Recurse across
9086         all directories containing a gnulib-cache.m4 files, if meaningful.
9087
9088 2005-08-31  Bruno Haible  <bruno@clisp.org>
9089
9090         * gnulib-tool (func_import): Emit also a stub for gl_LIBTOOL.
9091         (import): Set seen_libtool when we see gl_LIBTOOL.
9092
9093 2005-08-31  Bruno Haible  <bruno@clisp.org>
9094
9095         * gnulib-tool (func_import): Also copy m4/gnulib-tool.m4. Omit
9096         declaration macro definitions from generated gnulib.m4.
9097
9098 2005-08-30  "Oskar Liljeblad" <oskar@osk.mine.nu>
9099
9100         * lib/iconvme.h: Add prototype for iconv_alloc.
9101
9102 2005-08-29  Simon Josefsson  <jas@extundo.com>
9103
9104         * lib/iconvme.c: Fix errno.
9105
9106 2005-08-29  Bruno Haible  <bruno@clisp.org>
9107
9108         * gnulib-tool: Enclose all occurrences of $destdir in "...", so
9109         that it works when the directory contains spaces.
9110
9111 2005-08-29  Bruno Haible  <bruno@clisp.org>
9112
9113         * gnulib-tool (import): Avoid unnecessary spaces in $avoidlist.
9114
9115 2005-08-29  Bruno Haible  <bruno@clisp.org>
9116
9117         * gnulib-tool (func_import): Emit more comments into gnulib.m4.
9118         Emit more advice.
9119
9120 2005-08-29  Bruno Haible  <bruno@clisp.org>
9121         and Stepan Kasal  <kasal@ucw.cz>
9122
9123         * check-module: If more parameters are given, check each of them
9124         separately; add more exceptions, as noted by Jim Meyering.
9125         (check_module): New procedure.
9126         (%exempt_header): Now contains all exceptions.
9127
9128 2005-08-29  Ben Pfaff  <blp@cs.stanford.edu>
9129
9130         * modules/byteswap (Makefile.am): Fix rule to not assume GNU make.
9131
9132 2005-08-29  "Oskar Liljeblad" <oskar@osk.mine.nu>
9133
9134         * lib/iconvme.c: Split iconv_string into iconv_alloc.
9135
9136 2005-08-28  Bruno Haible  <bruno@clisp.org>
9137
9138         * m4/gnulib-tool.m4: New file.
9139
9140 2005-08-27  Jim Meyering  <jim@meyering.net>
9141
9142         * modules/unistd-safer (Files): Add pipe-safer.c.
9143         * modules/fcntl-safer (Files): Add creat-safer.c.
9144
9145 2005-08-27  Jim Meyering  <jim@meyering.net>
9146
9147         * m4/stdlib-safer.m4: New file.  From coreutils.
9148         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Add stdio--.h.
9149         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Add creat-safer.c to the
9150         AC_LIBSOURCES list and arrange to compile it via AC_LIBOBJ.
9151         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Likewise, add pipe-safer.c.
9152         Add pipe-safer.c and unistd--.h to the AC_LIBSOURCES list.
9153
9154 2005-08-27  Jim Meyering  <jim@meyering.net>
9155
9156         * lib/fopen-safer.c: Merge minor changes from coreutils.
9157         * lib/dup-safer.c: Likewise.
9158         * lib/fd-safer.c: Likewise.
9159
9160         Merge from coreutils.
9161         * lib/stdio--.h: New file.
9162         * lib/stdlib--.h: New file.
9163         * lib/mkstemp-safer.c: New file.
9164
9165         GNU tar needs these.
9166         * lib/pipe-safer.c: New file.
9167         * lib/creat-safer.c: New file.
9168         * lib/fcntl--.h (creat): Define to creat_safer.
9169         * lib/fcntl-safer.h: Include <sys/types.h> and declare creat_safer.
9170         * lib/unistd--.h (pipe): Define to pipe_safer.
9171         * lib/unistd-safer.h: Declare pipe_safer.
9172
9173 2005-08-26  Simon Josefsson  <jas@extundo.com>
9174
9175         * lib/getpass.c: Use _WIN32 instead of WIN32, suggested by Bruno
9176         Haible <bruno@clisp.org>.
9177
9178 2005-08-26  Paul Eggert  <eggert@cs.ucla.edu>
9179
9180         * lib/regex_internal.h: Remove all references to
9181         RE_NO_INTERNAL_PROTOTYPES; no longer neeeded now that we assume C89
9182         or better.
9183         (bitset_not, bitset_merge, bitset_not_merge):
9184         (bitset_mask, re_string_allocate, re_string_construct):
9185         (re_string_reconstruct, re_string_destruct, re_string_elem_size_at):
9186         (re_string_char_size_at, re_string_wchar_at, re_string_peek_byte_case):
9187         (re_string_fetch_byte_case, re_node_set_alloc, re_node_set_init_1):
9188         (re_node_set_init_2, re_node_set_init_copy, re_node_set_add_intersect):
9189         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
9190         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
9191         (re_node_set_remove_at, re_dfa_add_node, re_acquire_state):
9192         (re_acquire_state_context):
9193         Remove unnecessary forward decls.
9194         (re_string_char_size_at, re_string_wchar_at, re_string_elem_size_at):
9195         Put __attribute at function definition,
9196         now that the function decl has been removed.
9197         * lib/regex_internal.c (re_string_peek_byte_case):
9198         (re_string_fetch_byte_case, re_node_set_compare, re_node_set_contains):
9199         Likewise.
9200
9201 2005-08-25  Stepan Kasal  <kasal@ucw.cz>
9202
9203         * m4/regex.m4: Add AC_PREREQ(2.50).
9204         (gl_REGEX): If --with-included-regex was given, skip the autodetection.
9205
9206 2005-08-25  Simon Josefsson  <jas@extundo.com>
9207
9208         * m4/getpass.m4: Check for termios.h, tcgetattr, tcsetattr, and
9209         __fsetlocking.
9210
9211 2005-08-25  Simon Josefsson  <jas@extundo.com>
9212
9213         * lib/getpass.c: Add WIN32 implementation.  Conditionalize use of
9214         termios.h, tcgetattr, tcsetattr and __fsetlocking.  Remove some
9215         GLIBC specific code.
9216
9217 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
9218
9219         Make regex safe for g++.  This fixes one real bug (an "err"
9220         that should have been "*err").  g++ problem reported by
9221         Sam Steingold.
9222         * lib/regex_internal.h (re_calloc): New macro, consistent with
9223         re_malloc etc.  All callers of calloc changed to use re_calloc.
9224         * lib/regex_internal.c (build_wcs_upper_buffer): Return reg_errcode_t,
9225         not int.  All callers changed.
9226         * lib/regcomp.c (re_compile_fastmap_iter): Don't use
9227         alloca (mb_cur_max); just use an array of size MB_LEN_MAX.
9228         * lib/regexec.c (push_fail_stack): Use re_realloc, not realloc.
9229         (find_recover_state): Change "err" to "*err"; this fixes what
9230         appears to be a real bug.
9231         (check_arrival_expand_ecl_sub): Be consistent about reg_errcode_t
9232         versus int.
9233
9234 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
9235
9236         * modules/regex (Depends-on): Add malloc, since the code
9237         assumes that !malloc(0) means failure.
9238
9239 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
9240
9241         * lib/regexec.c (set_regs): Don't alloca with an unbounded size.
9242
9243         alloca modernization/simplification for regex.
9244         * lib/regex.c: Remove portability cruft for alloca.  This no longer
9245         needs to be at the start of the file, and can be moved into
9246         regex_internal.h and simplified.
9247         * lib/regex_internal.h: Include <alloca.h>.
9248         (__libc_use_alloca) [!defined _LIBC]: New macro.
9249         * lib/regexec.c (build_trtable): Remove "#ifdef _LIBC", since the code
9250         now works outside glibc.
9251
9252 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
9253
9254         * config/srclist.txt: Add glibc bugs 1241, 1245.
9255
9256 2005-08-25  Jim Meyering  <jim@meyering.net>
9257
9258         * lib/open-safer.c: Include <config.h>.
9259         Otherwise, we'd lose LARGEFILE support in any file using
9260         e.g. "fcntl--.h"
9261
9262 2005-08-25  Bruno Haible  <bruno@clisp.org>
9263
9264         * m4/minmax.m4: Require autoconf 2.52.
9265         (gl_MINMAX_IN_HEADER): Add comments. Use m4_pushdef/m4_popdef instead
9266         of define/undefine. Use AS_TR_SH and AS_TR_CPP as more robust
9267         alternatives of translit over the alphabet.
9268         Based on a patch from Stepan Kasal <kasal@ucw.cz>.
9269
9270 2005-08-24  Simon Josefsson  <jas@extundo.com>
9271
9272         * tests/test-getpass.c: New file.
9273
9274 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
9275
9276         * m4/regex.m4 (gl_REGEX): Use POSIX-compliant spellings when testing
9277         for GNU regex features.
9278
9279 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
9280
9281         * lib/regcomp.c (regerror): 2nd arg is 'restrict', as per POSIX.
9282         * lib/regex.h (regerror): Likewise.
9283
9284         * lib/regex.c: Do not include <sys/types.h>, as POSIX no longer
9285         requires this.  (The code never needed it.)
9286
9287         * lib/regcomp.c, regex_internal.c, regex_internal.h, regexec.c:
9288         All uses of recently-renamed identifiers changed to use the new,
9289         POSIX-compliant names.  The code will build and run just fine
9290         without these changes, but it's better to eat our own dog food
9291         and use the standard-conforming names.
9292
9293         * lib/regex.h: Fix a multitude of POSIX name space violations.
9294         These changes have an effect only for programs that define
9295         _POSIX_C_SOURCE, _POSIX_SOURCE, or _XOPEN_SOURCE; they
9296         do not change anything for programs compiled in the normal way.
9297         Also, there is no effect on the ABI.
9298
9299         (_REGEX_SOURCE): New macro.
9300         Do not include <stddef.h> if _XOPEN_SOURCE and VMS are both
9301         defined and _GNU_SOURCE is not; this fixes a name space violation.
9302
9303         Rename the following macros to obey POSIX requirements.
9304         The old names are still visible as macros if _REGEX_SOURCE is defined.
9305         (REG_BACKSLASH_ESCAPE_IN_LISTS): renamed from
9306         RE_BACKSLASH_ESCAPE_IN_LISTS.
9307         (REG_BK_PLUS_QM): renamed from RE_BK_PLUS_QM.
9308         (REG_CHAR_CLASSES): renamed from RE_CHAR_CLASSES.
9309         (REG_CONTEXT_INDEP_ANCHORS): renamed from RE_CONTEXT_INDEP_ANCHORS.
9310         (REG_CONTEXT_INDEP_OPS): renamed from RE_CONTEXT_INDEP_OPS.
9311         (REG_CONTEXT_INVALID_OPS): renamed from RE_CONTEXT_INVALID_OPS.
9312         (REG_DOT_NEWLINE): renamed from RE_DOT_NEWLINE.
9313         (REG_DOT_NOT_NULL): renamed from RE_DOT_NOT_NULL.
9314         (REG_HAT_LISTS_NOT_NEWLINE): renamed from RE_HAT_LISTS_NOT_NEWLINE.
9315         (REG_INTERVALS): renamed from RE_INTERVALS.
9316         (REG_LIMITED_OPS): renamed from RE_LIMITED_OPS.
9317         (REG_NEWLINE_ALT): renamed from RE_NEWLINE_ALT.
9318         (REG_NO_BK_BRACES): renamed from RE_NO_BK_BRACES.
9319         (REG_NO_BK_PARENS): renamed from RE_NO_BK_PARENS.
9320         (REG_NO_BK_REFS): renamed from RE_NO_BK_REFS.
9321         (REG_NO_BK_VBAR): renamed from RE_NO_BK_VBAR.
9322         (REG_NO_EMPTY_RANGES): renamed from RE_NO_EMPTY_RANGES.
9323         (REG_UNMATCHED_RIGHT_PAREN_ORD): renamed from
9324         RE_UNMATCHED_RIGHT_PAREN_ORD.
9325         (REG_NO_POSIX_BACKTRACKING): renamed from RE_NO_POSIX_BACKTRACKING.
9326         (REG_NO_GNU_OPS): renamed from RE_NO_GNU_OPS.
9327         (REG_DEBUG): renamed from RE_DEBUG.
9328         (REG_INVALID_INTERVAL_ORD): renamed from RE_INVALID_INTERVAL_ORD.
9329         (REG_IGNORE_CASE): renamed from RE_ICASE.  This renaming is a bit
9330         unusual, since we can't clash with the POSIX REG_ICASE.
9331         (REG_CARET_ANCHORS_HERE): renamed from RE_CARET_ANCHORS_HERE.
9332         (REG_CONTEXT_INVALID_DUP): renamed from RE_CONTEXT_INVALID_DUP.
9333         (REG_NO_SUB): renamed from RE_NO_SUB.
9334         (REG_SYNTAX_EMACS): renamed from RE_SYNTAX_EMACS.
9335         (REG_SYNTAX_AWK): renamed from RE_SYNTAX_AWK.
9336         (REG_SYNTAX_GNU_AWK): renamed from RE_SYNTAX_GNU_AWK.
9337         (REG_SYNTAX_POSIX_AWK): renamed from RE_SYNTAX_POSIX_AWK.
9338         (REG_SYNTAX_GREP): renamed from RE_SYNTAX_GREP.
9339         (REG_SYNTAX_EGREP): renamed from RE_SYNTAX_EGREP.
9340         (REG_SYNTAX_POSIX_EGREP): renamed from RE_SYNTAX_POSIX_EGREP.
9341         (REG_SYNTAX_ED): renamed from RE_SYNTAX_ED.
9342         (REG_SYNTAX_SED): renamed from RE_SYNTAX_SED.
9343         (_REG_SYNTAX_POSIX_COMMON): renamed from _RE_SYNTAX_POSIX_COMMON.
9344         (REG_SYNTAX_POSIX_BASIC): renamed from RE_SYNTAX_POSIX_BASIC.
9345         (REG_SYNTAX_POSIX_MINIMAL_BASIC): renamed from
9346         RE_SYNTAX_POSIX_MINIMAL_BASIC.
9347         (REG_SYNTAX_POSIX_EXTENDED): renamed from RE_SYNTAX_POSIX_EXTENDED.
9348         (REG_SYNTAX_POSIX_MINIMAL_EXTENDED): renamed from
9349         RE_SYNTAX_POSIX_MINIMAL_EXTENDED.
9350         (REG_DUP_MAX): renamed from RE_DUP_MAX.  No need to undef it.
9351         (REG_UNALLOCATED): Renamed from REGS_UNALLOCATED.
9352         (REG_REALLOCATE): Renamed from REGS_REALLOCATE.
9353         (REG_FIXED): Renamed from REGS_FIXED.
9354         (REG_NREGS): Renamed from RE_NREGS.
9355
9356         (REG_ICASE, REG_NEWLINE, REG_NOSUB): Do not depend on the values
9357         of other REG_* macros, since POSIX says the user is allowed to
9358         #undef these macros selectively.
9359
9360         (reg_errcode_t): Update comment stating what other tables need
9361         to be consistent.
9362
9363         Rename the following enum values to obey POSIX requirements.
9364         The old names are still visible as macros.
9365         (_REG_ENOSYS): Renamed from REG_ENOSYS.  Define even if _XOPEN_SOURCE
9366         is not defined, since GNU is supposed to be a superset of POSIX as
9367         much as possible, and since we want reg_errcode_t to be a signed
9368         type for implementation consistency.
9369         (_REG_NOERROR): Renamed from REG_NOERROR.
9370         (_REG_NOMATCH): Renamed from REG_NOMATCH.
9371         (_REG_BADPAT): Renamed from REG_BADPAT.
9372         (_REG_ECOLLATE): Renamed from REG_ECOLLATE.
9373         (_REG_ECTYPE): Renamed from REG_ECTYPE.
9374         (_REG_EESCAPE): Renamed from REG_EESCAPE.
9375         (_REG_ESUBREG): Renamed from REG_ESUBREG.
9376         (_REG_EBRACK): Renamed from REG_EBRACK.
9377         (_REG_EPAREN): Renamed from REG_EPAREN.
9378         (_REG_EBRACE): Renamed from REG_EBRACE.
9379         (_REG_BADBR): Renamed from REG_BADBR.
9380         (_REG_ERANGE): Renamed from REG_ERANGE.
9381         (_REG_ESPACE): Renamed from REG_ESPACE.
9382         (_REG_BADRPT): Renamed from REG_BADRPT.
9383         (_REG_EEND): Renamed from REG_EEND.
9384         (_REG_ESIZE): Renamed from REG_ESIZE.
9385         (_REG_ERPAREN): Renamed from REG_ERPAREN.
9386         (REG_ENOSYS, REG_NOERROR, REG_NOMATCH, REG_BADPAT, REG_ECOLLATE):
9387         (REG_ECTYPE, REG_EESCAPE, REG_ESUBREG, REG_EBRACK, REG_EPAREN):
9388         (REG_EBRACE, REG_BADBR, REG_ERANGE, REG_ESPACE, REG_BADRPT, REG_EEND):
9389         (REG_ESIZE, REG_ERPAREN): Now macros, not enum constants.
9390
9391         (_REG_RE_NAME, _REG_RM_NAME): New macros.
9392         (REG_TRANSLATE_TYPE): Renamed from RE_TRANSLATE_TYPE.  All uses
9393         changed.  But support the old name if the new one is not defined
9394         and if _REGEX_SOURCE.
9395
9396         Change the following member names in struct re_pattern_buffer.
9397         The old names are still supported if !_REGEX_SOURCE.
9398         The new names are always supported, regardless of _REGEX_SOURCE.
9399         (re_buffer): Renamed from buffer.
9400         (re_allocated): Renamed from allocated.
9401         (re_used): Renamed from used.
9402         (re_syntax): Renamed from syntax.
9403         (re_fastmap): Renamed from fastmap.
9404         (re_translate): Renamed from translate.
9405         (re_can_be_null): Renamed from can_be_null.
9406         (re_regs_allocated): Renamed from regs_allocated.
9407         (re_fastmap_accurate): Renamed from fastmap_accurate.
9408         (re_no_sub): Renamed from no_sub.
9409         (re_not_bol): Renamed from not_bol.
9410         (re_not_eol): Renamed from not_eol.
9411         (re_newline_anchor): Renamed from newline_anchor.
9412
9413         Change the following member names in struct re_registers.
9414         The old names are still supported if !_REGEX_SOURCE.
9415         The new names are always supported, regardless of _REGEX_SOURCE.
9416         (rm_num_regs): Renamed from num_regs.
9417         (rm_start): Renamed from start.
9418         (rm_end): Renamed from end.
9419
9420         (re_set_syntax, re_compile_pattern, re_compile_fastmap):
9421         (re_search, re_search_2, re_match, re_match_2, re_set_registers):
9422         Prepend __ to parameter names.
9423
9424         Undo yesterday's changes.
9425
9426 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
9427
9428         * config/srclist.txt: Remove glibc bug 1233 and add 1236, which
9429         supersedes it. Add glibc bugs 1237, 1238, 1240.  Comment out
9430         lib/regex.c.
9431
9432 2005-08-24  Jim Meyering  <jim@meyering.net>
9433
9434         Sync from coreutils.
9435         * m4/fcntl-safer.m4: New file.
9436
9437         * m4/xgetcwd.m4: Use AC_LIBSOURCES and AC_LIBOBJ to indicate source
9438         and object files for this module.
9439
9440 2005-08-24  Jim Meyering  <jim@meyering.net>
9441
9442         Sync from coreutils.
9443         * lib/fcntl--.h, fcntl-safer.h, open-safer.c: New files.
9444
9445 2005-08-24  Jim Meyering  <jim@meyering.net>
9446
9447         * modules/xgetcwd (Makefile.am): Remove `lib_SOURCES += ...' line,
9448         now that xgetcwd.m4 requires xgetcwd.c and xgetcwd.h.
9449
9450 2005-08-24  Jim Meyering  <jim@meyering.net>
9451
9452         * modules/fcntl-safer: New module.
9453         * modules/fts (Depends-on): Add fcntl-safer.
9454         * MODULES.html.sh (File descriptor based Input/Output):
9455         Add fcntl-safer.
9456
9457 2005-08-24  Bruno Haible  <bruno@clisp.org>
9458
9459         Support for unit test modules.
9460         * modules/README: Mention tests modules.
9461         * modules/TEMPLATE-TESTS: New file.
9462         * gnulib-tool: New options --extract-tests-module, --with-tests and
9463         --tests-base (unused for the moment).
9464         (testsbase, inctests): New variables.
9465         (func_all_modules): Exclude TEMPLATE-TESTS and *-tests.
9466         (func_verify_module): Exclude TEMPLATE-TESTS.
9467         (func_verify_nontests_module, func_verify_tests_module): New functions.
9468         (func_get_dependencies): Add implicit dependency for tests modules.
9469         (func_get_tests_module): New function.
9470         (func_modules_transitive_closure): When --with-tests was specified,
9471         include the unit tests as well, unless explicitly avoided.
9472         (func_emit_lib_Makefile_am): Ignore the tests modules here.
9473         (func_emit_tests_Makefile_am): New function.
9474         (func_create_testdir): When --with-tests was specified, emit a
9475         tests/ directory.
9476         * MODULES.html.sh (Future developments): Update.
9477
9478 2005-08-24  Bruno Haible  <bruno@clisp.org>
9479
9480         * modules/tls-tests: New file.
9481         * tests/test-tls.c: New file, from GNU gettext.
9482
9483 2005-08-24  Bruno Haible  <bruno@clisp.org>
9484
9485         * modules/lock-tests: New file.
9486         * tests/test-lock.c: New file, from GNU gettext.
9487
9488 2005-08-24  Bruno Haible  <bruno@clisp.org>
9489
9490         * lib/lock.h: Add multiple inclusion guard.
9491         * lib/tls.h: Add multiple inclusion guard.
9492
9493 2005-08-24  Bruno Haible  <bruno@clisp.org>
9494
9495         * gnulib-tool: Add support for the --aux-dir option to
9496         --create-testdir, --create-megatestdir, --test, --megatest.
9497         (func_create_testdir, func_create_megatestdir): Optionally emit a
9498         AC_CONFIG_AUX_DIR directive.
9499         (create-testdir, create-megatestdir, test, megatest): Provide a
9500         default value for $auxdir.
9501
9502 2005-08-24  Bruno Haible  <bruno@clisp.org>
9503
9504         * gnulib-tool (import): Use compound statement instead of subshell
9505         where possible.
9506
9507 2005-08-24  Bruno Haible  <bruno@clisp.org>
9508
9509         * gnulib-tool (import): Change --aux-dir default to "build-aux".
9510
9511 2005-08-24  Bruno Haible  <bruno@clisp.org>
9512
9513         * gnulib-tool (func_version): Update.
9514
9515 2005-08-24  Bruno Haible  <bruno@clisp.org>
9516
9517         * gnulib-tool (func_import, func_create_testdir,
9518         func_create_megatestdir): Quote all autoconf macro arguments.
9519
9520 2005-08-24  Bruno Haible  <bruno@clisp.org>
9521
9522         * gnulib-tool (func_create_megatestdir): Call autoreconf without the
9523         option --force, because --force causes the aclocal.m4 of each
9524         subdirectory to be newer than the corresponding config.h.in.
9525
9526 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
9527
9528         * m4/regex.m4 (gl_INCLUDED_REGEX): Remove; no longer used.
9529         All contents moved to gl_REGEX.
9530         (gl_REGEX): Don't bother checking whether lib/regex.c exists;
9531         assume that it does.
9532
9533 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
9534
9535         * lib/regex.h (REG_NOSYS)
9536         [!defined _XOPEN_SOURCE && 200112L <= _POSIX_C_SOURCE]:
9537         Define, since POSIX requires it as of 2001.
9538         (_REG_ENOSYS)
9539         [! (defined _XOPEN_SOURCE || 200112L <= _POSIX_C_SOURCE)]:
9540         New private symbol, used to keep the enum signed in all cases.
9541         * lib/regex.h (RE_NO_EMPTY_RANGES): Fix doc bug reported by James
9542         Youngman in
9543         <http://lists.gnu.org/archive/html/bug-gnulib/2005-07/msg00132.html>.
9544
9545         * lib/regex_internal.c (re_string_skip_chars, register_state):
9546         (calc_state_hash):
9547         Remove forward decls; no longer needed now that we use prototypes.
9548         * lib/regexec.c (acquire_init_state_context, check_halt_node_context):
9549         (proceed_next_node, pop_fail_stack, sub_epsilon_src_nodes):
9550         (clean_state_log_if_needed): Likewise.
9551
9552 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
9553
9554         * config/srclist.txt: Add glibc bugs 1231-1233.
9555
9556 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
9557
9558         Fix problems reported by Sam Steingold in
9559         <http://lists.gnu.org/archive/html/bug-gnulib/2005-08/msg00007.html>.
9560         * lib/regexec.c (sift_states_bkref): Fix portability bug: the code
9561         assumed that reg_errcode_t is a signed type, which is not
9562         necessarily true if _XOPEN_SOURCE is not defined.
9563         * lib/regex_internal.c (calc_state_hash): Put 'inline' before type,
9564         since some compilers warn about it otherwise.
9565
9566 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
9567
9568         * lib/regcomp.c (create_initial_state): Remove duplicate decl.
9569         (init_word_char, create_initial_state, duplicate_node_closure):
9570         (fetch_token, peek_token_bracket, build_range_exp):
9571         (build_collating_symbol): Remove forward decls; no longer needed
9572         now that we use prototypes.
9573
9574         * lib/regcomp.c:
9575         (re_compile_pattern, re_set_syntax, re_compile_fastmap):
9576         (re_compile_fastmap_iter, regcomp, regerror, regfree):
9577         (re_compile_internal, init_dfa, init_word_char, free_workarea_compile):
9578         (create_initial_state, optimize_utf8, analyze, postorder, preorder):
9579         (optimize_subexps, lower_subexps, lower_subexp, calc_first, calc_next):
9580         (link_nfa_nodes, duplicate_node_closure, search_duplicated_node):
9581         (duplicate_node, calc_inveclosure, calc_eclosure, calc_eclosure_iter):
9582         (fetch_token, peek_token, peek_token_bracket, parse, parse_reg_exp):
9583         (parse_branch, parse_expression, parse_sub_exp, parse_dup_op):
9584         (build_range_exp, build_collating_symbol, parse_bracket_exp):
9585         (parse_bracket_element, parse_bracket_symbol, build_equiv_class):
9586         (build_charclass, build_charclass_op, fetch_number, create_tree):
9587         (create_token_tree, mark_opt_subexp, duplicate_tree):
9588         Use prototypes rather than old-style definitions.
9589
9590         * lib/regex_internal.c:
9591         (re_string_allocate, re_string_construct, re_string_realloc_buffers):
9592         (re_string_construct_common, build_wcs_buffer, build_wcs_upper_buffer):
9593         (re_string_skip_chars, build_upper_buffer, re_string_translate_buffer):
9594         (re_string_reconstruct, re_string_peek_byte_case):
9595         (re_string_fetch_byte_case, re_string_destruct, re_string_context_at):
9596         (re_node_set_alloc, re_node_set_init_1, re_node_set_init_2):
9597         (re_node_set_init_copy, re_node_set_add_intersect):
9598         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
9599         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
9600         (re_node_set_remove_at, re_dfa_add_node, calc_state_hash):
9601         (re_acquire_state, re_acquire_state_context, register_state):
9602         (create_ci_newstate, create_cd_newstate, free_state):
9603         Likewise.
9604         * lib/regexec.c (regexec, re_match, re_search, re_match_2,
9605         re_search_2):
9606         (re_search_2_stub, re_search_stub, re_copy_regs, re_set_registers):
9607         (re_search_internal, prune_impossible_nodes):
9608         (acquire_init_state_context, check_matching, static):
9609         (check_halt_node_context, check_halt_state_context, proceed_next_node):
9610         (push_fail_stack, pop_fail_stack, set_regs, free_fail_stack_return):
9611         (update_regs, sift_states_backward, build_sifted_states):
9612         (clean_state_log_if_needed, merge_state_array):
9613         (update_cur_sifted_state, add_epsilon_src_nodes):
9614         (sub_epsilon_src_nodes, check_dst_limits, check_dst_limits_calc_pos_1):
9615         (check_dst_limits_calc_pos, check_subexp_limits, sift_states_bkref):
9616         (sift_states_iter_mb, transit_state, merge_state_with_log, static):
9617         (find_recover_state, check_subexp_matching_top, transit_state_mb):
9618         (transit_state_bkref, get_subexp, get_subexp_sub, find_subexp_node):
9619         (check_arrival, check_arrival_add_next_nodes):
9620         (check_arrival_expand_ecl, check_arrival_expand_ecl_sub):
9621         (expand_bkref_cache, build_trtable, group_nodes_into_DFAstates):
9622         (check_node_accept_bytes, check_node_accept, extend_buffers):
9623         (match_ctx_init, match_ctx_clean, match_ctx_free, match_ctx_add_entry):
9624         (search_cur_bkref_entry, match_ctx_add_subtop, match_ctx_add_sublast):
9625         (sift_ctx_init):
9626         Likewise.
9627
9628         * lib/regex_internal.h:
9629         (re_string_allocate, re_string_construct, re_string_reconstruct):
9630         (re_string_realloc_buffers, build_wcs_buffer, build_wcs_upper_buffer):
9631         (build_upper_buffer, re_string_translate_buffer, re_string_destruct):
9632         (re_string_elem_size_at, re_string_char_size_at, re_string_wchar_at):
9633         (re_string_context_at, re_string_peek_byte_case):
9634         (re_string_fetch_byte_case): Declare even if RE_NO_INTERNAL_PROTOTYPES
9635         is defined, since we now use prototypes always.
9636
9637         * lib/regex.h (_RE_ARGS): Remove.  No longer needed, since we assume
9638         C89 or better.  All uses removed.
9639
9640 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
9641
9642         * config/srclist.txt: Add glibc bugs 1220-1227.
9643
9644 2005-08-20  Jim Meyering  <jim@meyering.net>
9645
9646         * lib/regexec.c (regexec, re_search_stub) [!_LIBC]: Omit declaration
9647         of unused local, dfa.
9648
9649 2005-08-20  Bruno Haible  <bruno@clisp.org>
9650
9651         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_GNU_SOURCE.
9652
9653 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
9654
9655         * lib/regex_internal.c (re_string_realloc_buffers, re_node_set_insert):
9656         (re_node_set_insert_last, re_dfa_add_node):
9657         Rename local variables to avoid GCC shadowing warnings.
9658
9659 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
9660
9661         * lib/regex_internal.c (re_acquire_state, re_acquire_state_context)
9662         [defined lint]: Suppress bogus uninitialized-variable warnings.
9663
9664         * lib/regcomp.c (duplicate_node): Return new index, not an error code,
9665         and let the caller return REG_ESPACE if out of space.  This
9666         removes an uninitialied-variable warning with GCC 4.0.1, and also
9667         avoids taking the address of a local variable.  All callers
9668         changed.
9669
9670 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
9671
9672         * config/srclist.txt: Comment out $LIBCSRC/posix/regex_internal.c,
9673         $LIBCSRC/posix/regexec.c.
9674         Add glibc bug 1217 for regcomp.c.
9675
9676 2005-08-19  Jim Meyering  <jim@meyering.net>
9677
9678         * lib/regexec.c (proceed_next_node): Redo local variables to
9679         avoid GCC shadowing warnings.
9680
9681 2005-08-18  Bruno Haible  <bruno@clisp.org>
9682
9683         * lib/strstr.c (strstr): Fix return value in multibyte case.
9684         * lib/strcasestr.c (strcasestr): Likewise.
9685
9686 2005-08-17  Paul Eggert  <eggert@cs.ucla.edu>
9687
9688         * lib/regex.h: Remove useless space-before-tab.  From coreutils.
9689
9690 2005-08-17  Jim Meyering  <jim@meyering.net>
9691
9692         Make the %s format (seconds since the epoch) work for a negative
9693         number and when used with a zero-padded field width, e.g. %015s.
9694
9695         * lib/strftime.c (my_strftime): Move the `do_number_sign_and_padding'
9696         label so that it precedes the code to set `digits'.  Otherwise,
9697         %0Ns wouldn't work.  Before this change, `date -d @-22 +%05s' would
9698         print `00-22'.  Now, it prints `-0022', as it should.
9699
9700 2005-08-17  Bruno Haible  <bruno@clisp.org>
9701
9702         * modules/strstr (Files): Add m4/mbrtowc.m4.
9703         (Depends-on): Add mbuiter.
9704
9705 2005-08-17  Bruno Haible  <bruno@clisp.org>
9706
9707         * modules/strcasestr: New file.
9708         * MODULES.html.sh (String handling, based on ANSI C 89): Add
9709         strcasestr.
9710
9711 2005-08-17  Bruno Haible  <bruno@clisp.org>
9712
9713         * modules/strcase (Depends-on): Add mbuiter. Remove strnlen1, mbchar.
9714
9715 2005-08-17  Bruno Haible  <bruno@clisp.org>
9716
9717         * modules/mbuiter: New file.
9718         * MODULES.html.sh (Extended multibyte and wide character utilities):
9719         Add mbuiter.
9720
9721 2005-08-17  Bruno Haible  <bruno@clisp.org>
9722
9723         * m4/strstr.m4 (gl_FUNC_STRSTR): Use the replacement function always.
9724         (gl_PREREQ_STRSTR): Use gl_FUNC_MBRTOWC.
9725
9726 2005-08-17  Bruno Haible  <bruno@clisp.org>
9727
9728         * m4/strcasestr.m4: New file.
9729
9730 2005-08-17  Bruno Haible  <bruno@clisp.org>
9731
9732         * lib/strstr.h: Ignore HAVE_STRSTR, always declare the gnulib function.
9733         * lib/strstr.c: Completely rewritten, with multibyte locale support.
9734
9735 2005-08-17  Bruno Haible  <bruno@clisp.org>
9736
9737         * lib/strcasestr.h: New file.
9738         * lib/strcasestr.c: New file.
9739
9740 2005-08-17  Bruno Haible  <bruno@clisp.org>
9741
9742         * lib/strcasecmp.c: Use mbuiter.h.
9743
9744 2005-08-17  Bruno Haible  <bruno@clisp.org>
9745
9746         * lib/mbuiter.h: New file.
9747
9748 2005-08-16  Paul Eggert  <eggert@cs.ucla.edu>
9749
9750         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Do not override the results
9751         of gl_GETOPT_SUBSTITUTE.  That way, if both gl_GETOPT_SUBSTITUTE
9752         and gl_GETOPT are both invoked via different paths (as happens
9753         with GNU tar CVS because it uses both argp and getopt), the former
9754         wins.
9755
9756 2005-08-16  Bruno Haible  <bruno@clisp.org>
9757
9758         * modules/tls: New file.
9759         * MODULES.html.sh (Multithreading): Add tls.
9760
9761 2005-08-16  Bruno Haible  <bruno@clisp.org>
9762
9763         * modules/strnlen1: New file.
9764         * MODULES.html.sh (String handling): Add strnlen1.
9765
9766 2005-08-16  Bruno Haible  <bruno@clisp.org>
9767
9768         * modules/strcase (Files): Add m4/mbrtowc.m4.
9769         (Depends-on): Add strnlen1, mbchar.
9770
9771 2005-08-16  Bruno Haible  <bruno@clisp.org>
9772
9773         * modules/mbiter: New file.
9774         * MODULES.html.sh (Extended multibyte and wide character utilities):
9775         Add mbiter.
9776
9777 2005-08-16  Bruno Haible  <bruno@clisp.org>
9778
9779         * modules/mbfile: New file.
9780         * MODULES.html.sh (Extended multibyte and wide character utilities):
9781         Add mbfile.
9782
9783 2005-08-16  Bruno Haible  <bruno@clisp.org>
9784
9785         * modules/mbchar: New file.
9786         * MODULES.html.sh (Extended multibyte and wide character utilities):
9787         New section.
9788
9789 2005-08-16  Bruno Haible  <bruno@clisp.org>
9790
9791         * m4/tls.m4: New file, from GNU gettext.
9792
9793 2005-08-16  Bruno Haible  <bruno@clisp.org>
9794
9795         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Use the replacement function
9796         always.
9797         (gl_PREREQ_STRCASECMP): Use gl_FUNC_MBRTOWC.
9798
9799 2005-08-16  Bruno Haible  <bruno@clisp.org>
9800
9801         * m4/mbiter.m4: New file.
9802
9803 2005-08-16  Bruno Haible  <bruno@clisp.org>
9804
9805         * m4/mbfile.m4: New file.
9806
9807 2005-08-16  Bruno Haible  <bruno@clisp.org>
9808
9809         * m4/mbchar.m4: New file.
9810
9811 2005-08-16  Bruno Haible  <bruno@clisp.org>
9812
9813         * lib/tls.h: New file, from GNU gettext.
9814         * lib/tls.c: New file, from GNU gettext.
9815
9816 2005-08-16  Bruno Haible  <bruno@clisp.org>
9817
9818         * lib/strnlen1.h: New file.
9819         * lib/strnlen1.c: New file.
9820
9821 2005-08-16  Bruno Haible  <bruno@clisp.org>
9822
9823         * lib/strcasecmp.c (struct mbiter_multi): Remove at_end field.
9824         (mbi_init): Update.
9825         (mbi_avail, mbi_advance): Let the iteration end before the terminating
9826         NUL byte, not after it.
9827
9828 2005-08-16  Bruno Haible  <bruno@clisp.org>
9829
9830         * lib/strcase.h (strcasecmp): Add note in comments.
9831         * lib/strncasecmp.c: Use code from strcasecmp.c.
9832         * lib/strcasecmp.c: Use mbchar module. Define private mbiter variant.
9833         (strcasecmp): Work correctly in multibyte locales.
9834
9835 2005-08-16  Bruno Haible  <bruno@clisp.org>
9836
9837         * lib/mbiter.h: New file.
9838
9839 2005-08-16  Bruno Haible  <bruno@clisp.org>
9840
9841         * lib/mbfile.h: New file.
9842
9843 2005-08-16  Bruno Haible  <bruno@clisp.org>
9844
9845         * lib/mbchar.h: New file.
9846         * lib/mbchar.c: New file.
9847
9848 2005-08-16  Bruno Haible  <bruno@clisp.org>
9849
9850         * lib/mbchar.h (mb_cmp, mb_casecmp): Order the invalid characters after
9851         the valid ones. Makes the comparison operations transitive:
9852         cmp (a, b) < 0 && cmp (b, c) < 0 ==> cmp (a, c) < 0.
9853         * lib/strcasecmp.c (strcasecmp): Use mb_casecmp.
9854
9855 2005-08-15  Simon Josefsson  <jas@extundo.com>
9856
9857         * modules/ssize_t (License): Change to 'unlimited'.
9858
9859         * gnulib-tool (sed_extract_prog): Recognize 'unlimited' license.
9860
9861 2005-08-15  Paul Eggert  <eggert@cs.ucla.edu>
9862
9863         * config/srclist.txt: Comment out $LIBCSRC/posix/regex.h.
9864         Add comments for each pending glibc patch.
9865
9866 2005-08-15  Bruno Haible  <bruno@clisp.org>
9867
9868         * lib/regex.h (__restrict_arr): Don't define to __restrict if
9869         __cplusplus is defined.
9870
9871 2005-08-14  Jim Meyering  <jim@meyering.net>
9872
9873         Sync from coreutils.
9874
9875         * lib/fts-cycle.c (setup_dir, enter_dir, leave_dir, free_dir):
9876         Use the hash-table-based cycle-detection code not just when
9877         FTS_TIGHT_CYCLE_CHECK if specified, but also with FTS_LOGICAL.
9878         Reported by James Youngman in
9879         <http://lists.gnu.org/archive/html/bug-gnulib/2005-08/msg00011.html>.
9880         * lib/fts_.h: Mention that with FTS_LOGICAL, we use
9881         FTS_TIGHT_CYCLE_CHECK.
9882         * lib/fts.c (fts_cross_check) [FTS_DEBUG]:
9883         s/active_dir_ht/fts_cycle.ht/. This lets us compile with -DFTS_DEBUG,
9884         once again.
9885         * lib/fts.c [! _LIBC]: Include "lstat.h" rather than rolling our own.
9886         * lib/fts.c (fd_safer): Remove decl.
9887         Include fcntl--.h rather than unistd-safer.h
9888         (fts_safe_changedir): Don't call fd_safer; no longer needed
9889         now that we include fcntl--.h.
9890
9891 2005-08-12  Simon Josefsson  <jas@extundo.com>
9892
9893         * modules/getndelim2: Use ssize_t module.
9894         * modules/getnline: Likewise.
9895         * modules/safe-read: Likewise.
9896         * modules/xreadlink: Likewise.
9897
9898         * modules/ssize_t: New file.
9899
9900 2005-08-12  Simon Josefsson  <jas@extundo.com>
9901
9902         * m4/readline.m4: Look for termcap, curses or ncurses if required.
9903
9904 2005-08-12  Simon Josefsson  <jas@extundo.com>
9905
9906         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
9907         ssize_t.
9908
9909 2005-08-12  Simon Josefsson  <jas@extundo.com>
9910
9911         * MODULES.html.sh (Extra functions based on ANSI C 89: Misc): Add
9912         readline, getdelim and check_version.
9913         (Support for systems lacking ISO C 99: Sizes of integer types):
9914         Add size_max.
9915
9916 2005-08-12  Bruno Haible  <bruno@clisp.org>
9917
9918         * m4/readline.m4 (gl_FUNC_READLINE): Look for ncurses first.
9919
9920 2005-08-11  Simon Josefsson  <jas@extundo.com>
9921
9922         * modules/readline: New file.
9923
9924         * modules/strnlen (Files): Add strnlen.h.
9925
9926 2005-08-11  Simon Josefsson  <jas@extundo.com>
9927
9928         * m4/readline.m4: New file.
9929
9930 2005-08-11  Simon Josefsson  <jas@extundo.com>
9931
9932         * lib/readline.h, readline.c: New file.
9933
9934 2005-08-11  Simon Josefsson  <jas@extundo.com>
9935
9936         * doc/gnulib.texi (Initial import, Finishing touches): Mention
9937         gl_AVOID.
9938
9939 2005-08-11  Bruno Haible  <bruno@clisp.org>
9940
9941         * lib/strnlen.h (strnlen): Change parameter name to match comment.
9942
9943 2005-08-10  Stepan Kasal  <kasal@ucw.cz>
9944
9945         * m4/onceonly_2_57.m4: Really require Autoconf 2.57.
9946
9947 2005-08-10  Simon Josefsson  <jas@extundo.com>
9948
9949         * tests/test-iconvme.c: New file.
9950
9951 2005-08-10  Simon Josefsson  <jas@extundo.com>
9952
9953         * m4/strnlen.m4: New file.
9954
9955         * m4/strndup.m4: Don't check for strnlen declaration, done in
9956         strnlen.m4.
9957
9958 2005-08-10  Simon Josefsson  <jas@extundo.com>
9959
9960         * lib/strndup.c: Use strnlen.h.
9961
9962         * lib/strnlen.h: New file.
9963
9964 2005-08-08  Ralf Wildenhues <Ralf.Wildenhues@gmx.de>  (tiny change)
9965
9966         * README: Typos.
9967
9968 2005-08-02  Simon Josefsson  <jas@extundo.com>
9969
9970         * modules/readline: New file.
9971
9972 2005-08-02  Simon Josefsson  <jas@extundo.com>
9973
9974         * modules/getdelim: New file.
9975
9976         * modules/getline: Rewrite, don't use getndelim2.
9977
9978 2005-08-02  Simon Josefsson  <jas@extundo.com>
9979
9980         * m4/getline.m4: Separate out getdelim stuff into separate module.
9981
9982         * m4/getdelim.m4: New file.
9983
9984 2005-08-02  Simon Josefsson  <jas@extundo.com>
9985
9986         * lib/getline.h, getline.c: Rewrite.
9987
9988         * lib/getdelim.h, getdelim.c: New files, ported from glibc.
9989
9990 2005-07-31  Bruno Haible  <bruno@clisp.org>
9991
9992         * lib/lock.h (gl_lock_initializer): New macro.
9993         (gl_lock_define_initialized): Use it.
9994         (gl_rwlock_initializer): New macro.
9995         (gl_rwlock_define_initialized): Use it.
9996         (gl_recursive_lock_initializer): New macro.
9997         (gl_recursive_lock_define_initialized): Use it.
9998
9999 2005-07-30  Karl Berry  <karl@gnu.org>
10000
10001         * doc/gnulib.texi (Initial import): mention -I$(top_builddir)/lib.
10002         Report from Ben Pfaff, regarding getopt.
10003
10004 2005-07-26  Paul Eggert  <eggert@cs.ucla.edu>
10005
10006         Add support to getopt for Emacs, which doesn't use LIBOBJS in the
10007         normal way.
10008         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE_HEADER): New macro.
10009         (gl_GETOPT_SUBSTITUTE): Use it.  Invoke gl_PREREQ_GETOPT.
10010         (gl_GETOPT_IFELSE, gl_GETOPT_CHECK_HEADERS): New macros.
10011         (gl_GETOPT): Use the new macros.  Most of the implementation
10012         is moved to the new macros.  This is for programs like Emacs
10013         that don't want all the functionality of gl_GETOPT.
10014
10015 2005-07-26  Bruno Haible  <bruno@clisp.org>
10016
10017         * m4/lock.m4: Update from GNU gettext.
10018
10019 2005-07-26  Bruno Haible  <bruno@clisp.org>
10020
10021         * lib/lock.h: Update from GNU gettext.
10022         * lib/lock.c: Update from GNU gettext.
10023
10024 2005-07-25  Paul Eggert  <eggert@cs.ucla.edu>
10025
10026         * m4/regex.m4 (gl_INCLUDED_REGEX): Use AC_RUN_IFELSE instead of the
10027         obsolescent AC_TRY_RUN.  Include the default includes files, for
10028         'exit'.
10029
10030 2005-07-24  Bruno Haible  <bruno@clisp.org>
10031
10032         * modules/visibility: New file.
10033         * MODULES.html.sh (Misc): Add visibility.
10034
10035 2005-07-24  Bruno Haible  <bruno@clisp.org>
10036
10037         * m4/visibility.m4: New file.
10038
10039 2005-07-24  Bruno Haible  <bruno@clisp.org>
10040
10041         * doc/visibility.texi: New file.
10042
10043 2005-07-22  Bruno Haible  <bruno@clisp.org>
10044
10045         * modules/alloca-opt (Makefile.am): Remove explicit dependency on
10046         $(ALLOCA_H), redundant through BUILT_SOURCES.
10047         * modules/argz (Makefile.am): Remove explicit dependency on $(ARGZ_H),
10048         redundant through BUILT_SOURCES.
10049         * modules/byteswap (Makefile.am): Remove explicit dependency on
10050         $(BYTESWAP_H), redundant through BUILT_SOURCES.
10051         * modules/fnmatch (Makefile.am): Remove explicit dependency on
10052         $(FNMATCH_H), redundant through BUILT_SOURCES.
10053         * modules/getopt (Makefile.am): Remove explicit dependency on
10054         $(GETOPT_H), redundant through BUILT_SOURCES.
10055         * modules/glob (Makefile.am): Remove explicit dependency on $(GLOB_H),
10056         redundant through BUILT_SOURCES.
10057         * modules/poll (Makefile.am): Remove explicit dependency on $(POLL_H),
10058         redundant through BUILT_SOURCES.
10059         * modules/stdbool (Makefile.am): Remove explicit dependency on
10060         $(STDBOOL_H), redundant through BUILT_SOURCES.
10061         * modules/stdint (Makefile.am): Remove explicit dependency on
10062         $(STDINT_H), redundant through BUILT_SOURCES.
10063         * modules/sysexits (Makefile.am): Add $(SYSEXITS_H) to BUILT_SOURCES.
10064         Remove explicit dependency on $(SYSEXITS_H).
10065         Reported by Alexandre Duret-Lutz <adl@src.lip6.fr>.
10066
10067 2005-07-18  Simon Josefsson  <jas@extundo.com>
10068
10069         * lib/check-version.c (check_version): Accept identical versions too.
10070
10071 2005-07-18  Bruno Haible  <bruno@clisp.org>
10072
10073         * modules/lock: New file.
10074         * MODULES.html.sh (Multithreading): New section.
10075
10076 2005-07-18  Bruno Haible  <bruno@clisp.org>
10077
10078         * m4/lock.m4: New file, from GNU gettext.
10079
10080 2005-07-18  Bruno Haible  <bruno@clisp.org>
10081
10082         * lib/lock.h: New file, from GNU gettext.
10083         * lib/lock.c: New file, from GNU gettext.
10084
10085 2005-07-18  Bruno Haible  <bruno@clisp.org>
10086
10087         * lib/lock.h (gl_once_t): New type.
10088         (gl_once_define, gl_once): New macros.
10089         * lib/lock.c (fresh_once): New variable.
10090         (glthread_once, glthread_once_call, glthread_once_singlethreaded): New
10091         functions.
10092
10093 2005-07-16  Simon Josefsson  <jas@extundo.com>
10094
10095         * doc/gnulib.texi (Library version handling): Add ELF symbol collision
10096         workaround, suggested by Bruno.
10097
10098 2005-07-15  Paul Eggert  <eggert@cs.ucla.edu>
10099
10100         * modules/xalloc (Depends-on): Add xalloc-die.
10101         * modules/xvasprintf (Depends-on): Add xalloc-die.
10102
10103 2005-07-15  Paul Eggert  <eggert@cs.ucla.edu>
10104
10105         * lib/quotearg.c: Add translator comment suggested by Bruno Haible,
10106         with a minor change.
10107
10108 2005-07-15  Bruno Haible  <bruno@clisp.org>
10109
10110         * m4/poll.m4 (gl_FUNC_POLL): Check against MacOS X 10.4 poll() bug.
10111         When using lib/poll.c, define poll as rpl_poll.
10112
10113 2005-07-14  Paul Eggert  <eggert@cs.ucla.edu>
10114
10115         * modules/argp (Depends-on): Remove unlocked-io.
10116
10117 2005-07-14  Derek Price  <derek@ximbiot.com>
10118
10119         * m4/glob.m4 (gl_GLOB): Cache glob interface check result.  Add check
10120         for glob symlink bug.
10121
10122 2005-07-14  Bruno Haible  <bruno@clisp.org>
10123
10124         * m4/argp.m4 (gl_ARGP): Remove invocation of gl_FUNC_GLIBC_UNLOCKED_IO.
10125         Instead, test for *_unlocked function declarations directly.
10126
10127 2005-07-11  Simon Josefsson  <jas@extundo.com>
10128
10129         * modules/size_max: New file.
10130
10131         * modules/xsize: Depend on size_max module for size_max.m4.
10132
10133 2005-07-11  Simon Josefsson  <jas@extundo.com>
10134
10135         * lib/size_max.h: New file.
10136
10137 2005-07-11  Paul Eggert  <eggert@cs.ucla.edu>
10138
10139         * lib/version-etc-fsf.c (version_etc_copyright): Parameterize the
10140         copyright symbol and the year.
10141         * lib/version-etc.c (COPYRIGHT_YEAR): New constant.
10142         (version_etc_va): Use parameterized copyright notice.
10143         Reword to conform to the current GNU coding standards.
10144
10145 2005-07-11  Karl Berry  <karl@gnu.org>
10146
10147         * doc/gnulib.texi (Quoting): new node.
10148         (Initial import): more info, from Patrice.
10149
10150 2005-07-11  Bruno Haible  <bruno@clisp.org>
10151
10152         * gnulib-tool (func_usage): Document option --avoid.
10153         (Command line options): Handle --avoid.
10154         (func_acceptable): New function.
10155         (func_modules_transitive_closure): Use it.
10156
10157 2005-07-11  Bruno Haible  <bruno@clisp.org>
10158
10159         * MODULES.html.sh: Use shortcut URLs to the www.opengroup.org site.
10160         Reported by Jim Meyering.
10161
10162 2005-07-10  Bruno Haible  <bruno@clisp.org>
10163
10164         * m4/size_max.m4 (gl_SIZE_MAX): Cast ~(size_t)0 back to size_t.
10165         Needed when size_t is smaller than 'unsigned int'.
10166         Reported by Paul Eggert.
10167
10168 2005-07-09  Sergey Poznyakoff  <gray@gnu.org.ua>
10169
10170         * modules/argp (Depends-on): Add unlocked-io
10171
10172 2005-07-09  Sergey Poznyakoff  <gray@gnu.org.ua>
10173
10174         * lib/argp-namefrob.h: Include unlocked-io.h. Removed unnecessary
10175         block of defines.
10176
10177 2005-07-08  Paul Eggert  <eggert@cs.ucla.edu>
10178
10179         * config/srclist.txt: Comment out regcomp.c, since we have a porting
10180         fix now.
10181
10182 2005-07-08  Eric Blake  <ebb9@byu.net>  (tiny change)
10183         and Paul Eggert  <eggert@cs.ucla.edu>
10184
10185         * lib/regcomp.c (init_dfa, build_range_exp): Store __btowc value
10186         in wint_t, not wchar_t.  Remove now-unnecessary cast.
10187
10188 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
10189
10190         * modules/regex (Files): Add lib/regex_internal.c,
10191         lib/regex_internal.h, lib/regexec.c, lib/regcomp.c, m4/codeset.m4.
10192         (Depends-on): Add extensions.
10193         (Makefile.am): Remove lib_SOURCES; now done by m4 code.
10194
10195 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
10196
10197         * m4/backupfile.m4 (gl_BACKUPFILE): Use AC_CHECK_FUNCS_ONCE on
10198         pathconf.
10199         * m4/same.m4 (gl_SAME): Likewise.
10200         Require AC_SYS_LONG_FILE_NAMES; bug reported by Gerrit P. Haase.
10201
10202         * m4/regex.m4: Adjust to new libc regex implementation.
10203         (gl_INCLUDED_REGEX): Add AC_LIBSOURCES for
10204         all the .c and .h parts of (the new) regex.
10205         Quote the m4 stuff better.
10206         Check for RE_ICASE bug of old gnulib.
10207         Check for REG_STARTEND of recent libc.
10208         Rename local variables from jm_* to gl_*.
10209         Quote operand of "test -f".
10210         Say "recent enough" version of libc, not "version 2".
10211         (gl_PREREQ_REGEX): Remove AC_FUNC_ALLOCA, since alloca is a
10212         prerequisite module.  Remove AC_HEADER_STDC; no longer needed.
10213         Check for locale.h, isblank, mbrtowc, wcrtomb, wcscoll.
10214         Remove check for btowc, isascii.
10215         Require AM_LANGINFO_CODESET.
10216
10217 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
10218
10219         * lib/regex.c, regex.h: Sync from libc.
10220         * lib/regcomp.c, regexec_internal.c, regex_internal.h, regexec.c:
10221         New files, synced from libc, except that regex_internal.h
10222         currently has a small porting fix.
10223
10224 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
10225
10226         * config/srclist.txt: Add regcomp.c, regex.c, regex.h,
10227         regex_internal.c, regexec.c.
10228         Add regex_internal.h too, but as a comment, since the libc version
10229         is currently broken in gnulib mode.
10230
10231 2005-07-06  Paul Eggert  <eggert@cs.ucla.edu>
10232
10233         Support programs like Emacs that use gnulib but not gettext.
10234         * MODULES.html.sh (Internationalization functions): Add gettext-h.
10235         * modules/gettext-h: New file.
10236         * modules/gettext (Files): Remove lib/gettext.h.
10237         (Depends-on): Add gettext-h.
10238         (Makefile.am): Remove lib_SOURCES.
10239         * modules/argmatch, modules/c-stack, modules/closeout:
10240         * modules/copy-file, modules/csharpcomp, modules/csharpexec:
10241         * modules/execute, modules/file-type, modules/getaddrinfo:
10242         * modules/getopt, modules/human, modules/javacomp:
10243         * modules/javaexec, modules/mkdir-p, modules/obstack:
10244         * modules/openat, modules/pagealign_alloc, modules/pipe:
10245         * modules/quotearg, modules/regex, modules/rpmatch:
10246         * modules/unicodeio, modules/userspec, modules/version-etc:
10247         * modules/wait-process, modules/xalloc-die, modules/xmemcoll:
10248         * modules/xsetenv:
10249         Depend on gettext-h, not gettext.
10250
10251 2005-07-05  Paul Eggert  <eggert@cs.ucla.edu>
10252
10253         * gnulib-tool (func_import): Add support for 'public domain' license.
10254         * modules/alloca, modules/atexit, modules/memmove:
10255         Now public domain, not GPL.
10256         * modules/dup2, modules/getpagesize, modules/malloc, modules/memset:
10257         * modules/realloc, modules/strerror, modules/strtod:
10258         Now LGPL, not GPL.
10259
10260 2005-07-05  Bruno Haible  <bruno@clisp.org>
10261
10262         * m4/mbrtowc.m4 (gl_FUNC_MBRTOWC): Upgrade to version from current
10263         autoconf CVS. Needed for mingw.
10264
10265 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
10266
10267         Remove the dependency of the strftime module on the tzset module.
10268         * modules/strftime (Depends-on): Remove dependency on tzset.
10269
10270 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
10271
10272         Remove the dependency of the strftime module on the tzset module.
10273         * m4/strftime.m4 (gl_FUNC_STRFTIME): Don't require
10274         gl_FUNC_TZSET_CLOBBER.
10275
10276 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
10277
10278         Remove the dependency of the strftime module on the tzset module.
10279         * lib/strftime.c (my_strftime)
10280         [! defined _LIBC && ! HAVE_RUN_TZSET_TEST]:
10281         Copy the input structure, to work around some of the bug with
10282         Solaris 2.5.1 and Solaris 2.6.  If you still care about these old
10283         Solaris releases, you should also use the tzset module, but we won't
10284         require it as a dependency any more since we don't want LGPLed code
10285         to depend on GPLed code.
10286
10287 2005-07-02  Jim Meyering  <jim@meyering.net>
10288
10289         * m4/chown.m4, cloexec.m4, dup2.m4, fsusage.m4:
10290         * m4/getcwd-path-max.m4, getcwd.m4, mkstemp.m4, mountlist.m4:
10291         * m4/pagealign_alloc.m4, save-cwd.m4, unistd-safer.m4:
10292         Don't check for fcntl.h, and don't test for HAVE_FCNTL_H.
10293
10294 2005-07-02  Jim Meyering  <jim@meyering.net>
10295
10296         * lib/backupfile.c (backup_args): Change a `0' to NULL.
10297
10298 2005-07-01  Paul Eggert  <eggert@cs.ucla.edu>
10299
10300         * lib/xnanosleep.c: Include timespec.h, since OpenBSD 3.4 <time.h>
10301         declares only 'struct timespec;' (!).
10302
10303 2005-07-01  Jim Meyering  <jim@meyering.net>
10304
10305         * lib/chown.c, cloexec.c, dup-safer.c, dup2.c, fsusage.c, getcwd.c:
10306         * lib/getloadavg.c, mountlist.c, openat.h, pagealign_alloc.c:
10307         * lib/save-cwd.c, tempname.c:
10308         Assume HAVE_FCNTL_H (i.e., include <fcntl.h> unconditionally,
10309         and don't include <sys/file.h>).
10310
10311 2005-06-29  Jim Meyering  <jim@meyering.net>
10312
10313         * lib/mkdir-p.c (make_dir_parents): Don't apply sizeof to a hard-coded
10314         type name.  Use the variable name instead.
10315         * lib/idcache.c (getuser, getuidbyname, getgroup, getgidbyname):
10316         Likewise.
10317
10318 2005-06-28  Simon Josefsson  <jas@extundo.com>
10319
10320         * modules/check-version (Files): Add check-version.m4.
10321
10322 2005-06-28  Simon Josefsson  <jas@extundo.com>
10323
10324         * m4/check-version.m4: New file, suggested by Jim Meyering
10325         <jim@meyering.net>.
10326
10327 2005-06-28  Simon Josefsson  <jas@extundo.com>
10328
10329         * lib/check-version.h, check-version.c: New files.
10330
10331 2005-06-28  Simon Josefsson  <jas@extundo.com>
10332
10333         * lib/base64.c (base64_encode): Indent.  Rename 'b64' to avoid
10334         collision with global variable.  Better indentation.  Don't
10335         increment buffer pointer beyond buffer end.  Based on comments
10336         from Paul Eggert <eggert@cs.ucla.edu>.
10337
10338         * lib/base64.h: Indent.
10339
10340 2005-06-28  Simon Josefsson  <jas@extundo.com>
10341
10342         * doc/gnulib.texi (Library version handling): New section.
10343
10344 2005-06-28  Jim Meyering  <jim@meyering.net>
10345
10346         * check-module (find_included_lib_files): Hard-code another
10347         pair of exceptions: fts.c includes fts-cycle.c and unistd-safer.h
10348         but modules/fts-lgpl (correctly) does not list those files.
10349
10350         * modules/canonicalize (Files): Add lib/pathmax.h.
10351
10352 2005-06-25  Simon Josefsson  <jas@extundo.com>
10353
10354         * modules/check-version: New file.
10355
10356 2005-06-24  Paul Eggert  <eggert@cs.ucla.edu>
10357
10358         * lib/canon-host.c (canon-host): Append trailing "," to 0 in
10359         initializer of struct addrinfo, as an indication that we don't
10360         care how many members the structure has.
10361
10362 2005-06-24  Derek Price  <derek@ximbiot.com>
10363         and Bruno Haible  <bruno@clisp.org>
10364
10365         Remove stat module & update lstat.
10366         * m4/lstat.m4 (gl_FUNC_LSTAT): Drop AC_FUNC_LSTAT in favor of
10367         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
10368         * m4/stat.m4: Remove this file.
10369
10370 2005-06-24  Derek Price  <derek@ximbiot.com>
10371         and Bruno Haible  <bruno@clisp.org>
10372
10373         Remove stat module & update lstat.
10374         * lib/stat.c: Remove this file...
10375         (slash_aware_lstat): ...moving this content and its support...
10376         * lib/lstat.c (rpl_lstat): ...into here.
10377         * lib/lstat.h: New file.
10378
10379 2005-06-24  Derek Price  <derek@ximbiot.com>
10380         and Bruno Haible  <bruno@clisp.org>
10381
10382         Remove stat module & update lstat.
10383         * config/srclist.txt (libc sources): Remove stat.
10384
10385 2005-06-24  Derek Price  <derek@ximbiot.com>
10386         and Bruno Haible  <bruno@clisp.org>
10387
10388         Remove stat module & update lstat.
10389         * MODULES.html.sh (stat): Remove.
10390         * MODULES.html: Regenerated.
10391         * modules/lstat (Description): Correct function name.
10392         (Files): Add "lstat.h".
10393         (Depends-on): Remove stat, add xalloc, stat-macros.
10394         * modules/stat: Remove this file.
10395         (Include): Add "lstat.h", remove <sys/stat.h>.
10396
10397 2005-06-23  Paul Eggert  <eggert@cs.ucla.edu>
10398
10399         * lib/mktime.c: Include <string.h> even if !DEBUG.  (From glibc.)
10400         (ranged_convert): Don't save conversion in a temporary struct.
10401         This causes a warning with GCC 4.0.0, and anyway in the typical
10402         case it's not worth the extra 100 bytes or so of code.
10403         (ranged_convert, __mktime_internal): When calling a function via a
10404         pointer P, use P () rather than (*P) (), as we now assume C89 or
10405         better.
10406
10407 2005-06-22  Paul Eggert  <eggert@cs.ucla.edu>
10408
10409         * lib/readutmp.c (desirable_utmp_entry): Fix bug where "who -b" and
10410         "who -r" failed to give output.  Problem reported by Tim Waugh.
10411
10412         * lib/xmalloc.c (HAVE_GNU_CALLOC): New constant.
10413         (xcalloc): Use it to avoid needless tests.
10414         Problem reported by Jim Meyering.
10415
10416 2005-06-20  Derek Price  <derek@ximbiot.com>
10417
10418         * m4/bison.m4: Note that precious decls of YACC & YFLAGS will be
10419         unnecessary for Autoconfs > 2.59c.
10420
10421 2005-06-16  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
10422
10423         * lib/argp.h (__option_is_short): Check upper limit of
10424         __key. Isprint() requires its argument to have the value
10425         of an unsigned char or EOF.
10426
10427 2005-06-16  Jim Meyering  <jim@meyering.net>
10428
10429         * lib/calloc.c (rpl_calloc): Allocate a 1-byte buffer (not 1xS or Nx1)
10430         when either N or S is zero.
10431
10432 2005-06-16  Derek Price  <derek@ximbiot.com>
10433
10434         * m4/bison.m4: Declare YACC & YFLAGS precious.
10435
10436 2005-06-10  Paul Eggert  <eggert@cs.ucla.edu>
10437
10438         * lib/fnmatch.c (fnmatch): If there is an encoding error in a
10439         multibyte string or pattern, fall back on unibyte matching.
10440         Problem reported by James Youngman.
10441
10442 2005-06-08  Bruno Haible  <bruno@clisp.org>
10443
10444         * modules/csharpcomp: New file.
10445         * MODULES.html.sh (C#): Add csharpcomp.
10446
10447 2005-06-08  Bruno Haible  <bruno@clisp.org>
10448
10449         * m4/csharpcomp.m4: New file, from GNU gettext.
10450
10451 2005-06-08  Bruno Haible  <bruno@clisp.org>
10452
10453         * lib/csharpcomp.h: New file, from GNU gettext.
10454         * lib/csharpcomp.c: New file, from GNU gettext.
10455         * lib/csharpcomp.sh.in: New file, from GNU gettext.
10456
10457 2005-06-08  Bruno Haible  <bruno@clisp.org>
10458
10459         * lib/binary-io.h (fileno): Undefine before defining it. Avoids a gcc
10460         warning on mingw.
10461
10462 2005-06-07  Derek Price  <derek@ximbiot.com>
10463
10464         Sync from CVS.
10465         * lib/glob_.h: Indent nested #ifdef.
10466
10467 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
10468
10469         Sync from coreutils.
10470         Use "file name" when talking about file names, instead of "filename"
10471         or "path", as per the GNU coding standards.
10472         * lib/mkdir-p.c: Renamed from makepath.c.
10473         (make_dir_parents): Renamed from make_path.  All callers changed.
10474         * lib/mkdir-p.h: Likewise.  All includers changed.
10475         * lib/filenamecat.c: Renamed from path-concat.c.
10476         (file_name_concat): Renamed from path_concat.  All callers changed.
10477         [TEST_FILE_NAME_CONCAT]: Renamed from TEST_PATH_CONCAT.
10478         * lib/filenamecat.h: Likewise.  All includers changed.
10479         * lib/acl.c: Don't use "path" or "filename" to mean "file name"
10480         in comments or local variable names.
10481         * lib/basename.c: Likewise.
10482         * lib/canonicalize.c, canonicalize.h: Likewise.
10483         * lib/dirname.c, dirname.h: Likewise.
10484         * lib/euidaccess.c: Likewise.
10485         * lib/exclude.c: Likewise
10486         * lib/fnmatch_.h, fnmatch_loop.c: Likewise.
10487         * lib/fsusage.c, fsuage.h: Likewise.
10488         * lib/fts.c, fts_.h: Likewise.
10489         * lib/getcwd.c: Likewise.
10490         * lib/getloadavg.c: Likewise.
10491         * lib/mkstemp.c: Likewise.
10492         * lib/mountlist.c, mountlist.h: Likewise.
10493         * lib/openat.c, openat.h: Likewise.
10494         * lib/readlink-stub.c: Likewise.
10495         * lib/readutmp.c, readutmp.h: Likewise.
10496         * lib/rename.c: Likewise.
10497         * lib/rmdir.c: Likewise.
10498         * lib/same.c: Likewise.
10499         * lib/savedir.c: Likewise.
10500         * lib/stripslash.c: Likewise.
10501         * lib/tempname.c: Likewise.
10502         * lib/xreadlink.c: Likewise.
10503         * lib/exclude.c (excluded_file_name): Renamed from excluded_filename.
10504         All uses changed.
10505         * lib/exclude.h: Likewise.
10506
10507         * lib/euidaccess.c (getuid, getgid, getuid, getegid)
10508         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
10509         * lib/idcache.c (getpwuid, getpwnam, getgrgid, getgrnam)
10510         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
10511         * lib/pathmax.h: Include <limits.h> unconditionally, since other
10512         files have been getting away with it for years (MORE/BSD 4.3
10513         is extinct now).
10514         * lib/userspec.c (getpwnam, getgrnam, getgrgid)
10515         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
10516
10517         * lib/pathmax.h (_POSIX_PATH_MAX) [!defined _POSIX_PATH_MAX]:
10518         Define to 256, not 255, as per modern POSIX.
10519
10520 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
10521
10522         Sync from coreutils.
10523         Use "file name" when talking about file names, instead of "filename"
10524         or "path", as per the GNU coding standards.
10525         * MODULES.html.sh: mkdir-p renamed from makepath.
10526         filenamecat renamed from path-concat.
10527         * modules/filenamecat: Renamed from modules/path-concat.
10528         (Files): filenamecat.h and filenamecat.c renamed from
10529         path-concat.h and path-concat.c.
10530         (configure.ac): gl_FILE_NAME_CONCAT, not gl_PATH_CONCAT.
10531         (Include): filenamecat.h, not path-concat.h.
10532         * modules/mkdir-p: Renamed from modules/makepath.
10533         (Files): mkdir-p.h and mkdir-p.c renamed from makepath.h and
10534         makepath.c.
10535         (configure.ac): gl_MKDIR_PARENTS, not gl_MAKEPATH.
10536         (Include): mkdir-p.h, not makepath.h.
10537
10538 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
10539
10540         Sync from coreutils.
10541         * m4/mkdir-p.m4: Renamed from makepath.m4.
10542         (gl_MKDIR_PARENTS): Renamed from gl_MAKEPATH.  All uses changed.
10543         Rename files from makepath.c to mkdir-p.c, and from
10544         makepath.h to mkdir-p.h.
10545         * m4/filenamecat.m4: Renamed from path-concat.m4.
10546         (gl_FILE_NAME_CONCAT): Renamed from gl_PATH_CONCAT.  All uses changed.
10547         Rename files from path-concat.c to filenamecat.c,
10548         and from path-concat.h to filenamecat.h.
10549         * m4/getcwd-path-max.m4: Don't use "path" or "filename" to mean
10550         "file name" in local variables or comments.
10551         * m4/rename.m4: Likewise.
10552
10553 2005-06-01  Bruno Haible  <bruno@clisp.org>
10554
10555         * modules/csharpexec: New file.
10556         * MODULES.html.sh (C#): New section.
10557
10558 2005-06-01  Bruno Haible  <bruno@clisp.org>
10559
10560         * m4/csharp.m4: New file, from GNU gettext.
10561         * m4/csharpexec.m4: New file, from GNU gettext.
10562
10563 2005-06-01  Bruno Haible  <bruno@clisp.org>
10564
10565         * lib/csharpexec.h: New file, from GNU gettext.
10566         * lib/csharpexec.c: New file, from GNU gettext.
10567         * lib/csharpexec.sh.in: New file, from GNU gettext.
10568
10569 2005-05-31  Derek Price  <derek@ximbiot.com>
10570             Paul Eggert  <eggert@cs.ucla.edu>
10571
10572         Sync from cvs.
10573         * m4/glob.m4: s/MISSING_SYS_CDEFS_H/_SYS_CDEFS_H/ and comment.
10574
10575 2005-05-31  Derek Price  <derek@ximbiot.com>
10576             Paul Eggert  <eggert@cs.ucla.edu>
10577
10578         Sync from cvs.
10579         * lib/glob_.h: s/MISSING_SYS_CDEFS_H/_SYS_CDEFS_H/ and comment.
10580
10581 2005-05-29  Derek Price  <derek@ximbiot.com>
10582
10583         * config/srclist.txt (glob_.h, glob.c): Add these files.
10584
10585 2005-05-29  Derek Price  <derek@ximbiot.com>
10586
10587         * MODULES.html.sh: Add glob to Enhanced POSIX.2001 section.
10588         * modules/glob: New file.
10589         * modules/getlogin_r: Add link to POSIX spec in description.
10590
10591 2005-05-29  Derek Price  <derek@ximbiot.com>
10592             Paul Eggert  <eggert@cs.ucla.edu>
10593
10594         * m4/glob.m4: New file.
10595
10596 2005-05-29  Derek Price  <derek@ximbiot.com>
10597             Paul Eggert  <eggert@cs.ucla.edu>
10598
10599         * lib/glob_.h, glob.c: New files.
10600
10601 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
10602
10603         * modules/fts (Files): Remove m4/inttypes-pri.m4.
10604         * modules/fts-lgpl (Depends-on): Remove gettext.
10605
10606 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
10607
10608         * m4/fts.m4 (gl_FUNC_FTS_CORE): Don't check for inttypes.h or stdint.h,
10609         and don't require gt_INTTYPES_PRI.
10610
10611 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
10612
10613         * lib/getlogin_r.c (getlogin_r): Don't set errno to 0 on return.
10614
10615         * lib/fts.c: Don't worry about debugging on pre-C99-compatible hosts;
10616         the configuration hassle isn't worth it.
10617         Include inttypes.h and stdint.h unconditionally if FTS_DEBUG.
10618         (LONGEST_MODIFIER, PRIuMAX): Remove.
10619
10620 2005-05-27  Bruno Haible  <bruno@clisp.org>
10621
10622         * lib/getlogin_r.h: Remove second include of <stddef.h>.
10623
10624 2005-05-26  Paul Eggert  <eggert@cs.ucla.edu>
10625
10626         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Define
10627         _POSIX_PTHREAD_SEMANTICS for Solaris.
10628
10629 2005-05-25  Derek Price  <derek@ximbiot.com>
10630
10631         * MODULES.html.sh: Add getlogin_r to POSIX.2001 support section.
10632
10633 2005-05-25  Derek Price  <derek@ximbiot.com>
10634             Paul Eggert  <eggert@cs.ucla.edu>
10635
10636         * modules/getlogin_r: New files.
10637
10638 2005-05-25  Derek Price  <derek@ximbiot.com>
10639             Paul Eggert  <eggert@cs.ucla.edu>
10640
10641         * m4/getlogin_r.m4: New files.
10642
10643 2005-05-25  Derek Price  <derek@ximbiot.com>
10644             Paul Eggert  <eggert@cs.ucla.edu>
10645
10646         * lib/getlogin_r.c, getlogin_r.h: New files.
10647
10648 2005-05-25  Bruno Haible  <bruno@clisp.org>
10649             Derek Price  <derek@ximbiot.com>
10650
10651         * lib/getlogin_r.h: Simplify API documentation.
10652
10653 2005-05-23  Derek Price  <derek@ximbiot.com>
10654
10655         * modules/minmax (Files): Add m4/minmax.m4.
10656         (configure.ac): Add gl_MINMAX.
10657
10658 2005-05-22  Paul Eggert  <eggert@cs.ucla.edu>
10659
10660         * lib/fts.c (fd_safer) [_LGPL_PACKAGE]: New static function,
10661         so that unistd-safer.h (GPL'ed code) need not be included.
10662
10663 2005-05-22  Bruno Haible  <bruno@clisp.org>
10664
10665         * m4/minmax.m4: New file.
10666         Based on a patch by Derek Price <derek@ximbiot.com>.
10667
10668 2005-05-22  Bruno Haible  <bruno@clisp.org>
10669
10670         * lib/stdint_.h (_STDINT_H_HAVE_INT64): New macro. Use it in #ifdefs.
10671         (INT64_MIN): Fix definition.
10672         Suggested by Paul Eggert <eggert@cs.ucla.edu>.
10673
10674         * lib/stdint_.h (_STDINT_H_NEED_SIGNED_INT_TYPES): Renamed from
10675         NEED_SIGNED_INT_TYPES.
10676
10677         * lib/stdint_.h (_STDINT_H_HAVE_SYSTEM_INTTYPES): Renamed from
10678         HAVE_SYSTEM_INTTYPES.
10679
10680 2005-05-22  Bruno Haible  <bruno@clisp.org>
10681
10682         * lib/minmax.h: Include <limits.h> only when it defines MIN, MAX.
10683         Also include <sys/param.h> if it defines MIN, MAX.
10684         Based on a patch by Derek Price <derek@ximbiot.com>.
10685
10686 2005-05-21  Jim Meyering  <jim@meyering.net>
10687
10688         * modules/fts (Files): Add m4/inttypes-pri.m4.
10689         (Depends-on): Add lstat and remove gettext.  Alphabetize.
10690
10691 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
10692
10693         New fts module.
10694         * lib/fts.c: Don't include "cycle-check.h" or "hash.h".
10695         (setup_dir, free_dir): New functions.
10696         (enter_dir, leave_dir): Define trivial
10697         alternatives of _LGPL_PACKAGE.  Move to fts-cycle.c if !_LGPL_PACKAGE.
10698         (HT_INITIAL_SIZE, ENTER_DIR): Remove.  All uses removed.
10699         (LEAVE_DIR): Fix typo: pass Fts and Ent to leave_dir.
10700         (struct Active_dir, AD_compare, AD_hash, enter_dir, leave_dir):
10701         Move to fts-cycle.c.
10702         (fts_open): Use setup_dir.
10703         (fts_close): Use free_dir.
10704         (fts_read): Have just one copy of the ENTER_DIR code rather than three.
10705         This adds a label and some gotos, but the alternatives were messier.
10706         Check for memory allocation failure when entering a dir.
10707         (fts_stat) [_LGPL_PACKAGE]: Bring back glibc cycle detection code.
10708         * lib/fts_.h (_LGPL_PACKAGE) [defined _LIBC]: New macro.
10709         (FTS): New member fts_cycle, that is a union that contains the
10710         old active_dir_ht and cycle_state.  All uses changed to mention
10711         fts_cycle.ht and fts_cycle.state.
10712         * lib/fts-cycle.c: New file, containing GPL'ed code migrated out of
10713         fts.c, with the following changes:
10714         (setup_dir, free_dir): New functions.
10715         (enter_dir): Now returns bool.  Return true if successful, false
10716         if memory exhausted.  All callers changed.
10717         Do not bother partly cleaning up on
10718         memory allocation failure; that is free_dir's job.
10719         However, free ad if hash_insert fails, to avoid memory leak.
10720         (enter_dir, leave_dir): Accommodate change to FTS by inspecting
10721         fts->fts_options to see which union member to use.
10722
10723 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
10724
10725         * m4/fts.m4 (gl_FUNC_FTS_CORE): Renamed from gl_FUNC_FTS.
10726         (gl_FUNC_FTS, gl_FUNC_FTS_LGPL): New macros.
10727
10728 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
10729
10730         * MODULES.html.sh (File system functions): Add fts, fts-lgpl.
10731
10732 2005-05-20  Jim Meyering  <jim@meyering.net>
10733
10734         * lib/unlinkdir.h (cannot_unlink_dir) [UNLINK_CANNOT_UNLINK_DIR]:
10735         Now a macro, to pacify GCC.
10736
10737 2005-05-20  Eric Blake  <ebb9@byu.net>  (tiny change)
10738
10739         * m4/chown.m4 (gl_FUNC_CHOWN): Correct sense of test for honoring IDs
10740         of -1.
10741
10742 2005-05-20  Eric Blake  <ebb9@byu.net>  (tiny change)
10743
10744         * lib/chown.c (rpl_chown): Return -1 on failure.
10745
10746 2005-05-18  Paul Eggert  <eggert@cs.ucla.edu>
10747
10748         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME]):
10749         Don't check for stddef.h.
10750         * m4/fts.m4 (gl_FUNC_FTS): Don't require AC_HEADER_STDC, as we
10751         don't use its results.
10752         Don't check for fcntl.h, stddef.h, stdlib.h, string.h, unistd.h,
10753         since we include them unconditionally.  Don't require
10754         AM_STDBOOL_H, since stdbool is a prerequisite.
10755         Don't require AC_C_CONST, AC_TYPE_SIZE_T or check for ptrdiff_t
10756         since we assume C89 or better.
10757         Don't require AC_FUNC_CLOSEDIR_VOID, AC_FUNC_LSTAT, or AC_FUNC_STAT,
10758         as we don't use their results.
10759         Don't check for fchdir, memmove, memset, strrchr, as we use
10760         them unconditionally.
10761         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Don't define
10762         GETTIMEOFDAY_CLOBBERS_LOCALTIME_BUFFER, since nobody uses it.
10763
10764 2005-05-18  Paul Eggert  <eggert@cs.ucla.edu>
10765
10766         * lib/canonicalize.c: Include canonicalize.h first, to test interface.
10767         Include <stddef.h> unconditionally, since we assume C89 now.
10768         All uses of PTR_INT_TYPE replaced by ptrdiff_t.
10769         * lib/fts.c: Include fts_.h first, to check interface.
10770         Do not include intprops.h; no longer needed.
10771         Include cycle-check.h and hash.h, since fts_.h no longer does.
10772         Remove unnecessary casts of closedir to void.
10773         (fts_build): Use a simpler method (not involving TYPE_SIGNED) to
10774         decide whether to decrement nlinks.
10775         * lib/fts_.h: Do not include hash.h or cycle-check.h; no longer needed.
10776         (FTS): Use struct hash_table * instead of Hash_table, so that
10777         we no longer need to include hash.h here.
10778
10779 2005-05-18  Jim Meyering  <jim@meyering.net>
10780
10781         * modules/dirfd (License): Change to LGPL.  Most of the code
10782         is already in the public domain.
10783
10784 2005-05-18  Jim Meyering  <jim@meyering.net>
10785
10786         * m4/fts.m4 (AC_LIBSOURCES): Add intprops.h to the list.
10787         Reported by Yoann Vandoorselaere.
10788
10789 2005-05-17  Jim Meyering  <jim@meyering.net>
10790
10791         * m4/fts.m4: New file, from coreutils.
10792
10793 2005-05-17  Jim Meyering  <jim@meyering.net>
10794
10795         * lib/fts.c, fts_.h: New files, from coreutils.
10796
10797 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
10798
10799         Sync from coreutils.
10800         * m4/unlinkdir.m4: New file.
10801
10802 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
10803
10804         Sync from coreutils.
10805         * lib/unlinkdir.c, unlinkdir.h: New files.
10806         * lib/gethrxtime.c, lib/gethrxtime.h, lib/getpass.h, lib/mountlist.h,
10807         lib/path-concat.c, lib/regex.h, lib/unlocked-io.h, lib/xtime.h:
10808         White space changes only.
10809         * lib/makepath.c (make_path): Port to hosts where leading "//" is
10810         special.
10811         * lib/yesno.c: Include getline.h, not ctype.h.
10812         (yesno): Don't remove leading white space; POSIX doesn't allow it.
10813         Use getline to remove arbitrary restriction on response length.
10814
10815 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
10816
10817         * config/srclist-update: Spell out "Street" in FSF postal
10818         mail address; this is the style the FSF seems to prefer.
10819
10820         * build-aux/depcomp, build-aux/install-sh, build-aux/mdate-sh,
10821         build-aux/missing, build-aux/mkinstalldirs: Sync from Automake;
10822         this updates FSF postal mail address.
10823
10824         Sync from coreutils.
10825         * modules/unlinkdir: New file.
10826         * modules/yesno (Depends-on): Add getline.
10827         * MODULES.html.sh (File system functions): Add unlinkdir.
10828
10829 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
10830
10831         * lib/byteswap_.h, lib/getsubopt.h, lib/iconvme.h, lib/strsep.c,
10832         lib/strsep.h:
10833         Change the initial comment to refer to GPL, not LGPL.
10834         gnulib-tool will change it to LGPL as needed.
10835
10836         * lib/__fpending.c, lib/acl.c, lib/acl.h, lib/alloca_.h, lib/allocsa.c,
10837         lib/allocsa.h, lib/argmatch.c, lib/argmatch.h, lib/argp-ba.c,
10838         lib/argp-eexst.c, lib/argp-fmtstream.c, lib/argp-fmtstream.h,
10839         lib/argp-fs-xinl.c, lib/argp-help.c, lib/argp-namefrob.h,
10840         lib/argp-parse.c, lib/argp-pv.c, lib/argp-pvh.c, lib/argp-xinl.c,
10841         lib/argp.h, lib/argz.c, lib/argz_.h, lib/asnprintf.c, lib/asprintf.c,
10842         lib/atanl.c, lib/backupfile.c, lib/backupfile.h, lib/base64.c,
10843         lib/base64.h, lib/basename.c, lib/binary-io.h, lib/byteswap_.h,
10844         lib/c-ctype.c, lib/c-ctype.h, lib/c-stack.c, lib/c-stack.h,
10845         lib/c-strtod.c, lib/calloc.c, lib/canon-host.c, lib/canonicalize.c,
10846         lib/canonicalize.h, lib/ceill.c, lib/chdir-long.c, lib/chdir-long.h,
10847         lib/chown.c, lib/classpath.c, lib/classpath.h, lib/cloexec.c,
10848         lib/closeout.c, lib/closeout.h, lib/concatpath.c, lib/config.charset,
10849         lib/copy-file.c, lib/copy-file.h, lib/cycle-check.c, lib/cycle-check.h,
10850         lib/diacrit.c, lib/diacrit.h, lib/dirfd.c, lib/dirfd.h, lib/dirname.c,
10851         lib/dirname.h, lib/dummy.c, lib/dup-safer.c, lib/dup2.c, lib/eealloc.h,
10852         lib/error.c, lib/error.h, lib/euidaccess.c, lib/exclude.c,
10853         lib/exclude.h, lib/execute.c, lib/execute.h, lib/exit.h,
10854         lib/exitfail.c, lib/exitfail.h, lib/expl.c, lib/fatal-signal.c,
10855         lib/fatal-signal.h, lib/fd-safer.c, lib/file-type.c, lib/file-type.h,
10856         lib/fileblocks.c, lib/filemode.c, lib/filemode.h, lib/findprog.c,
10857         lib/findprog.h, lib/floorl.c, lib/fnmatch.c, lib/fnmatch_.h,
10858         lib/fnmatch_loop.c, lib/fopen-safer.c, lib/free.c, lib/frexpl.c,
10859         lib/fsusage.c, lib/fsusage.h, lib/full-read.c, lib/full-read.h,
10860         lib/full-write.c, lib/full-write.h, lib/fwriteerror.c,
10861         lib/fwriteerror.h, lib/gai_strerror.c, lib/gcd.c, lib/gcd.h,
10862         lib/getaddrinfo.c, lib/getaddrinfo.h, lib/getcwd.c, lib/getcwd.h,
10863         lib/getdate.h, lib/getdate.y, lib/getdomainname.c, lib/getdomainname.h,
10864         lib/getgroups.c, lib/gethostname.c, lib/gethrxtime.c, lib/gethrxtime.h,
10865         lib/getline.c, lib/getline.h, lib/getloadavg.c, lib/getndelim2.c,
10866         lib/getndelim2.h, lib/getnline.c, lib/getnline.h, lib/getopt.c,
10867         lib/getopt1.c, lib/getopt_.h, lib/getopt_int.h, lib/getpagesize.h,
10868         lib/getpass.c, lib/getpass.h, lib/getsubopt.c, lib/getsubopt.h,
10869         lib/gettext.h, lib/gettime.c, lib/gettimeofday.c, lib/getugroups.c,
10870         lib/getusershell.c, lib/group-member.c, lib/group-member.h,
10871         lib/hard-locale.c, lib/hard-locale.h, lib/hash-pjw.c, lib/hash-pjw.h,
10872         lib/hash.c, lib/hash.h, lib/human.c, lib/human.h, lib/iconvme.c,
10873         lib/iconvme.h, lib/idcache.c, lib/inet_ntop.h, lib/intprops.h,
10874         lib/inttostr.c, lib/inttostr.h, lib/isdir.c, lib/javacomp.c,
10875         lib/javacomp.h, lib/javacomp.sh.in, lib/javaexec.c, lib/javaexec.h,
10876         lib/javaexec.sh.in, lib/lbrkprop.h, lib/lchown.c, lib/ldexpl.c,
10877         lib/linebreak.c, lib/linebreak.h, lib/linebuffer.c, lib/linebuffer.h,
10878         lib/localcharset.c, lib/localcharset.h, lib/logl.c, lib/long-options.c,
10879         lib/long-options.h, lib/lstat.c, lib/makepath.c, lib/makepath.h,
10880         lib/malloc.c, lib/mathl.h, lib/mbswidth.c, lib/mbswidth.h, lib/md5.c,
10881         lib/md5.h, lib/memcasecmp.c, lib/memcasecmp.h, lib/memchr.c,
10882         lib/memcmp.c, lib/memcoll.c, lib/memcoll.h, lib/memcpy.c, lib/memmem.c,
10883         lib/memmem.h, lib/mempcpy.c, lib/mempcpy.h, lib/memrchr.c,
10884         lib/memrchr.h, lib/memset.c, lib/minmax.h, lib/mkdir.c, lib/mkdtemp.c,
10885         lib/mkdtemp.h, lib/mkstemp.c, lib/mktime.c, lib/modechange.c,
10886         lib/modechange.h, lib/mountlist.c, lib/mountlist.h, lib/nanosleep.c,
10887         lib/obstack.c, lib/obstack.h, lib/openat.c, lib/openat.h,
10888         lib/pagealign_alloc.c, lib/pagealign_alloc.h, lib/path-concat.c,
10889         lib/path-concat.h, lib/pathmax.h, lib/pathname.h, lib/physmem.c,
10890         lib/physmem.h, lib/pipe.c, lib/pipe.h, lib/poll.c, lib/poll_.h,
10891         lib/posixtm.c, lib/posixtm.h, lib/posixver.c, lib/printf-args.c,
10892         lib/printf-args.h, lib/printf-parse.c, lib/printf-parse.h,
10893         lib/progname.c, lib/progname.h, lib/progreloc.c, lib/putenv.c,
10894         lib/quote.c, lib/quote.h, lib/quotearg.c, lib/quotearg.h, lib/raise.c,
10895         lib/readlink.c, lib/readtokens.c, lib/readtokens.h, lib/readtokens0.c,
10896         lib/readtokens0.h, lib/readutmp.c, lib/readutmp.h, lib/realloc.c,
10897         lib/ref-add.sin, lib/ref-del.sin, lib/regex.c, lib/regex.h,
10898         lib/rename.c, lib/rmdir.c, lib/rpmatch.c, lib/safe-read.c,
10899         lib/safe-read.h, lib/safe-write.c, lib/safe-write.h, lib/same.c,
10900         lib/same.h, lib/save-cwd.c, lib/save-cwd.h, lib/savedir.c,
10901         lib/savedir.h, lib/setenv.c, lib/setenv.h, lib/settime.c,
10902         lib/sh-quote.c, lib/sh-quote.h, lib/sha1.c, lib/sha1.h, lib/sig2str.c,
10903         lib/sig2str.h, lib/sincosl.c, lib/snprintf.c, lib/snprintf.h,
10904         lib/sqrtl.c, lib/stat-macros.h, lib/stat.c, lib/stdbool_.h,
10905         lib/stdint_.h, lib/stdio-safer.h, lib/stpcpy.c, lib/stpcpy.h,
10906         lib/stpncpy.c, lib/stpncpy.h, lib/strcase.h, lib/strcasecmp.c,
10907         lib/strchrnul.c, lib/strchrnul.h, lib/strcspn.c, lib/strdup.c,
10908         lib/strdup.h, lib/strerror.c, lib/strftime.c, lib/strftime.h,
10909         lib/stripslash.c, lib/strndup.c, lib/strndup.h, lib/strnlen.c,
10910         lib/strpbrk.c, lib/strpbrk.h, lib/strsep.c, lib/strsep.h, lib/strstr.c,
10911         lib/strstr.h, lib/strtod.c, lib/strtoimax.c, lib/strtok_r.c,
10912         lib/strtok_r.h, lib/strtol.c, lib/strtoll.c, lib/strtoul.c,
10913         lib/strtoull.c, lib/strverscmp.c, lib/strverscmp.h, lib/sysexit_.h,
10914         lib/tempname.c, lib/time_r.c, lib/time_r.h, lib/timegm.c, lib/timegm.h,
10915         lib/timespec.h, lib/trigl.c, lib/trigl.h, lib/ucs4-utf16.h,
10916         lib/ucs4-utf8.h, lib/unicodeio.c, lib/unicodeio.h, lib/unistd-safer.h,
10917         lib/unlocked-io.h, lib/unsetenv.c, lib/userspec.c, lib/utf16-ucs4.h,
10918         lib/utf8-ucs4.h, lib/utime.c, lib/utimecmp.c, lib/utimecmp.h,
10919         lib/utimens.c, lib/vasnprintf.c, lib/vasnprintf.h, lib/vasprintf.c,
10920         lib/vasprintf.h, lib/version-etc-fsf.c, lib/version-etc.c,
10921         lib/version-etc.h, lib/vsnprintf.c, lib/vsnprintf.h, lib/w32spawn.h,
10922         lib/wait-process.c, lib/wait-process.h, lib/xalloc-die.c, lib/xalloc.h,
10923         lib/xallocsa.c, lib/xallocsa.h, lib/xasprintf.c, lib/xgetcwd.c,
10924         lib/xgetcwd.h, lib/xgetdomainname.c, lib/xgetdomainname.h,
10925         lib/xgethostname.c, lib/xmalloc.c, lib/xmemcoll.c, lib/xnanosleep.c,
10926         lib/xreadlink.c, lib/xreadlink.h, lib/xsetenv.c, lib/xsetenv.h,
10927         lib/xsize.h, lib/xstrndup.c, lib/xstrndup.h, lib/xstrtod.c,
10928         lib/xstrtod.h, lib/xstrtoimax.c, lib/xstrtol.c, lib/xstrtol.h,
10929         lib/xstrtoumax.c, lib/xtime.h, lib/xvasprintf.c, lib/xvasprintf.h,
10930         lib/yesno.c, lib/yesno.h:
10931         Update FSF postal mail address.
10932
10933 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
10934
10935         * MODULES.html.sh, README, gnulib-tool, tests/test-base64.c,
10936         tests/test-memmem.c, tests/test-stpncpy.c:
10937         Update FSF postal mail address.
10938
10939 2005-05-13  Bruno Haible  <bruno@clisp.org>
10940
10941         * lib/stdint_.h (int64_t, uint64_t, int_least64_t, uint_least64_t,
10942         int_fast64_t, uint_fast64_t, intmax_t, uintmax_t, INT64_MIN, INT64_MAX,
10943         UINT64_MAX, INT_LEAST64_MIN, INT_LEAST64_MAX, UINT_LEAST64_MAX,
10944         INT_FAST64_MIN, INT_FAST64_MAX, UINT_FAST64_MAX, INTMAX_MIN,
10945         INTMAX_MAX, UINTMAX_MAX, INT64_C, UINT64_C, INTMAX_C, UINTMAX_C):
10946         Add support for 64-bit integers in the MSVC compiler.
10947
10948 2005-05-12  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
10949
10950         * modules/getdate (Makefile.am): Add getdate.c to EXTRA_DIST
10951
10952 2005-05-12  Eric Blake  <ebb9@byu.net>  (tiny change)
10953
10954         * gnulib-tool (func_import): Sort and uniquify recommended includes.
10955
10956 2005-05-11  Paul Eggert  <eggert@cs.ucla.edu>
10957
10958         * doc/getdate.texi (General date syntax): Don't say that date
10959         date --iso-8601=ns generates acceptable dates; it doesn't yet.
10960         Problem reported by Nic Ferrier.
10961
10962 2005-05-10  Yoann Vandoorselaere <yoann.v@prelude-ids.com>
10963
10964         * lib/getaddrinfo.c: Don't fail when SOCK_STREAM or SOCK_DGRAM are
10965         specified in ai_socktype. Fix invalid ai_protocol
10966         check. ai_protocol is usually set to 0 or depending on
10967         ai_family/ai_socktype to IPPROTO_TCP / IPPROTO_UDP.  Checking for
10968         SOCK_STREAM / SOCK_DGRAM in ai_protocol was invalid.  Set
10969         ai_socktype / ai_protocol in the returned addrinfo structure.
10970
10971 2005-05-10  Simon Josefsson  <jas@extundo.com>
10972
10973         * m4/getaddrinfo.m4: Look in libnsl/libsocket for getaddrinfo, from
10974         Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
10975
10976 2005-05-10  Karl Berry  <karl@gnu.org>
10977
10978         * doc/fdl.texi, gpl.texi, lgpl.texi, COPYING: update FSF address
10979         (from http://www.gnu.org/licenses).
10980         * doc/COPYING.LIB: also rename to COPYING.LESSER.
10981         * doc/COPYING.DOC: remove; per rms, only needed in doc files, so
10982         fdl.texi suffices.
10983
10984 2005-05-10  Karl Berry  <karl@gnu.org>
10985
10986         * config/srclist.txt (COPYING.LESSER): rename from COPYING.LIB.
10987         (COPYING.DOC): remove.
10988
10989         * config/srclist-update: new FSF address.
10990
10991 2005-05-10  Derek Price  <derek@ximbiot.com>
10992
10993         * m4/getopt.m4 (gl_GETOPT): Check for Solaris 10 bug, not decl, when
10994         possible.
10995
10996 2005-05-09  Yoann Vandoorselaere <yoann.v@prelude-ids.com>
10997             Bruno Haible  <bruno@clisp.org>
10998
10999         * modules/inet_ntop: New file.
11000         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
11001         inet_ntop.
11002
11003 2005-05-09  Yoann Vandoorselaere <yoann.v@prelude-ids.com>
11004             Bruno Haible  <bruno@clisp.org>
11005
11006         * m4/inet_ntop.m4: New file.
11007
11008 2005-05-09  Yoann Vandoorselaere <yoann.v@prelude-ids.com>
11009             Bruno Haible  <bruno@clisp.org>
11010
11011         * lib/inet_ntop.h: New file.
11012         * lib/inet_ntop.c: New file, from glibc with modifications.
11013
11014 2005-05-09  Paul Eggert  <eggert@cs.ucla.edu>
11015
11016         * modules/time_r (License): Change to LGPL.
11017         * modules/extensions (License): Change to LGPL.  Actually,
11018         the license is more permissive than that, but currently gnulib-tool
11019         doesn't know how to handle more-permissive licenses.
11020
11021         * modules/stat-macros (Depends-on): Don't depend on stat-macros (!).
11022         Problem reported by Dave Love.
11023
11024 2005-05-08  Jim Meyering  <jim@meyering.net>
11025
11026         * lib/classpath.c (PATH_SEPARATOR): Remove insignificant trailing
11027         blank.
11028
11029 2005-05-06  Paul Eggert  <eggert@cs.ucla.edu>
11030
11031         * modules/argmatch (Depends-on): Add stdbool.
11032         * modules/backupfile (Depends-on): Likewise.
11033         * modules/chdir-long (Depends-on): Likewise.
11034         * modules/closeout (Depends-on): Likewise.
11035         * modules/cycle-check (Depends-on): Likewise.
11036         * modules/dirname (Depends-on): Likewise.
11037         * modules/fnmatch (Depends-on): Likewise.
11038         * modules/fsusage (Depends-on): Likewise.
11039         * modules/fwriteerror (Depends-on): Likewise.
11040         * modules/getcwd (Depends-on): Likewise.
11041         * modules/getloadavg (Depends-on): Likewise.
11042         * modules/hard-locale (Depends-on): Likewise.
11043         * modules/makepath (Depends-on): Likewise.
11044         * modules/mountlist (Depends-on): Likewise.
11045         * modules/nanosleep (Depends-on): Likewise.
11046         * modules/posixtm (Depends-on): Likewise.
11047         * modules/quotearg (Depends-on): Likewise.
11048         * modules/readtokens (Depends-on): Likewise.
11049         * modules/readtokens0 (Depends-on): Likewise.
11050         * modules/readutmp (Depends-on): Likewise.
11051         * modules/save-cwd (Depends-on): Likewise.
11052         * modules/strftime (Depends-on): Likewise.
11053         * modules/userspec (Depends-on): Likewise.
11054         * modules/utimecmp (Depends-on): Likewise.
11055         * modules/xgetcwd (Depends-on): Likewise.
11056         * modules/xnanosleep (Depends-on): Likewise.
11057         * modules/xstrtod (Depends-on): Likewise.
11058         * modules/yesno (Depends-on): Likewise.
11059
11060 2005-05-05  Paul Eggert  <eggert@cs.ucla.edu>
11061
11062         * m4/getopt.m4 (gl_GETOPT): Check for Solaris 10 getopt, and avoid
11063         needless checks.
11064
11065 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
11066
11067         Merge from coreutils.  Among other things,
11068         add bulletproofing for cases where stdin, stdout, or stderr are closed.
11069         * lib/fd-safer.c: New file.
11070         * lib/fcntl-safer.h, open-safer.c: Remove.
11071         * lib/chdir-long.c: Fix comment "fetish" -> "coreutils".
11072         * lib/dup-safer.c: Include unistd-safer.h first.
11073         Don't include errno.h.
11074         (dup_safer) [!defined F_DUPFD]: Let fd_safer do the real work.
11075         * lib/file-type.h: Don't assume invoker included sys/stat.h first.
11076         * lib/file-type.c: Rely on file-type.h change.
11077         * lib/getloadavg.c: Include unistd-safer.h.
11078         (getloadavg): Use safer open.
11079         * lib/getusershell.c: Include "stdio-safer.h".
11080         (getusershell): Use safer fopen.
11081         * lib/long-options.c (long_options): Use NULL rather than 0.
11082         * lib/modechange.h (mode_free): Remove; all callers changed to invoke
11083         'free'.
11084         * lib/modechange.c: Likewise.
11085         xstrtol.h, stdbool.h, stddef.h: Don't include; no longer needed.
11086         (MODE_DONE): New constant.
11087         (struct mode_change): Remove 'next' member.
11088         (make_node_op_equals): New function; like the old one of the
11089         same name, except it allocates an array.
11090         (mode_compile, mode_create_from_ref): Use it.
11091         (mode_compile): Allocate result as an array, not a linked list.
11092         Parse octal string ourself, so that we catch mistakes like "+0".
11093         (mode_adjust): Arg is an array, not a linked list.
11094         * lib/modechange.c: Include stat-macros.h, xalloc.h.
11095         (S_ISDIR, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR):
11096         (S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH, S_IRXWU):
11097         (S_IRWXG, S_IRWXO, CHMOD_MODE_BITS):
11098         Remove.  This is now stat-macros.h's job.
11099         (talloc): Remove.  All callers replaced by xalloc, so that
11100         our invokers don't have to worry about reporting memory failures.
11101         (make_node_op_equals): Remove.
11102         (MODE_ORDINARY_CHAGE, MODE_X_IF_ANY_X, MODE_COPY_EXISTING):
11103         New constants.
11104         (struct mode_change): Moved here from modechange.h.
11105         (mode_append_entry): Remove.
11106         (mode_compile): Remove MASKED_OPS arg, since it encouraged
11107         apps to have incorrect behavior.  Use simpler algorithm for head
11108         and tail.  Don't futz with umask; that's now the job of mode_adjust.
11109         Detect more invalid usages rather than having somewhat-random behavior.
11110         Don't insert an "a=" action, as that leads to incorrect behavior.
11111         (mode_compile, mode_create_from_ref): Return NULL on error instead
11112         of an enum, since now there's only one way to have an error.  All
11113         callers changed.
11114         (mode_adjust): Accept new arg UMASK_VALUE, and interpret it
11115         at the correct time.  Simplify calculation of "+u" and its ilk.
11116         Don't mishandle "+X".
11117         (mode_free): Remove "register" and localize decls.
11118         * lib/modechange.h (MODE_X_IF_ANY_X, MODE_COPY_EXISTING):
11119         (struct mode_change): Move to modechange.c; callers don't
11120         need to see this stuff.
11121         (MODE_MASK_EQUALS, MODE_MASK_PLUS, MODE_MASK_MINUS, MODE_MASK_ALL):
11122         (MODE_INVALID, MODE_MEMORY_EXHAUSTED, MODE_BAD_REFERENCE): Remove.
11123         (mode_change, mode_adjust): Reflect the new signatures noted above.
11124         * lib/nanosleep.c (rpl_nanosleep): Include "timespec.h" before macros
11125         that might redefine system include files.
11126         (siginterrupt) [!HAVE_SIGINTERRUPT]: New macro.
11127         (my_usleep): Use NULL rather than (void *) 0.
11128         (rpl_nanosleep) [!defined SA_NOCLDSTOP]:
11129         Use siginterrupt to specify that system calls should be interrupted.
11130         (rpl_nanosleep): Move initialization of suspended closer to call of
11131         my_usleep.
11132         * lib/readutmp.h (read_utmp): New arg OPTIONS.  All uses changed.
11133         * lib/readutmp.c: Likewise.  Include signal.h, stdbool.h.
11134         (desirable_utmp_entry): New function.
11135         (read_utmp) [defined UTMP_NAME_FUNCTION]: Redo memory allocation
11136         using x2nrealloc, to simplify logic.
11137         (read_utmp) [!defined UTMP_NAME_FUNCTION]: Check for overflow in
11138         size calculation.  Do not assume utmp file is a regular file.
11139         * lib/readutmp.h (UT_PID): Moved here from ../src/who.c.
11140         (READ_UTMP_CHECK_PIDS): New constant.
11141         * lib/save-cwd.c: Include unistd-safer.h.
11142         (save_cwd): Use fd_safer.
11143         * lib/tempname.c (S_ISDIR, S_IRUSR, S_IRUSR, S_IWUSR, S_IXUSR): Remove.
11144         [!_LIBC] Include "stat-macros.h" instead.
11145         * lib/unistd-safer.h (fd_safer): New decl.
11146
11147 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
11148
11149         * modules/getloadavg (Depends-on): Add unistd-safer.
11150         * modules/getusershell (Depends-on): Add stdio-safer.
11151         * modules/lstat (Depends-on): Remove xalloc.
11152         * modules/mkstemp (Depends-on): Add stat-macros.
11153         * modules/modechange (Depends-on): Remove xstrtol.
11154         Add stat-macros, xalloc.
11155         * modules/save-cwd (Depends-on): Add unistd-safer.
11156         * modules/stdio-safer (Makefile.am): Remove lib_SOURCES.
11157         * modules/unistd-safer (Files): Add lib/fd-safer.c
11158         (Makefile.am): Remove lib_SOURCES.
11159
11160         * MODULES.html.sh (Enhancements for POSIX:2001 functions):
11161         Remove fcntl-safer; unistd-safer supersedes it.
11162
11163 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
11164
11165         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Don't require
11166         AC_HEADER_STAT.
11167         * m4/lchown.m4 (gl_FUNC_CHOWN): Likewise.
11168         (gl_PREREQ_CHOWN): Remove.
11169         * m4/lstat.m4 (gl_FUNC_LSTAT): Require AC_FUNC_LSTAT instead of calling
11170         it.  Don't require AC_HEADER_STAT.
11171         (gl_PREREQ_LSTAT): Remove.
11172         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Check stdint.h only once.
11173         Don't require AC_HEADER_STAT.
11174         * m4/rmdir.m4 (gl_FUNC_RMDIR): Don't require AC_HEADER_STAT.
11175         (gl_PREREQ_RMDIR): Remove.
11176         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Don't
11177         mention stat-macros.h or AC_HEADER_STAT, since we'll make
11178         the stat-macros module a prerequisite.
11179         * m4/file-type.m4 (gl_FILE_TYPE): Likewise.
11180         * m4/filemode.m4 (gl_FILEMODE): Likewise.
11181         * m4/makepath.m4 (gl_MAKEPATH): Likewise.
11182         * m4/modechange.m4 (gl_MODECHANGE): Likewise.
11183         * m4/clock_time.m4 (gl_CLOCK_TIME): Use gl_ rather than fetish_ for
11184         variable names.
11185         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Renamed from
11186         fetish_FUNC_RMDIR_NOTEMPTY.  All uses changed.  Use gl_ for
11187         variable prefixes.
11188         * m4/fcntl-safer.m4: Remove.
11189         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Use AC_LIBSOURCES and AC_LIBOBJ.
11190         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Likewise.
11191         Invoke gl_PREREQ_FD_SAFER.
11192         (gl_PREREQ_FD_SAFER): New macro.
11193         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): Check for siginterrupt.
11194         * m4/readutmp.m4 (gl_READUTMP): Require AC_C_INLINE.
11195         Use AC_CHECK_HEADERS_ONCE and AC_CHECK_FUNCS_ONCE when possible.
11196         Remove duplicate call to AC_LIBOBJ(readutmp).
11197         (gl_PREREQ_READUTMP): Remove.  All uses inlined.
11198
11199         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Check for message, not for
11200         MAP_ANON.  Problem reported by Moriyoshi Koizumi to bug-cvs.
11201
11202 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
11203
11204         * MODULES.html.sh (Misc): Add byteswap.
11205
11206 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
11207
11208         * modules/getcwd (Depends-on): Add extensions.
11209         * modules/openat (Depends-on): Likewise.
11210
11211 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
11212
11213         * modules/byteswap: New file.
11214
11215 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
11216
11217         * m4/byteswap.m4: New file.
11218
11219 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
11220
11221         * lib/byteswap_.h: New file.
11222
11223 2005-04-25  Karl Berry  <karl@gnu.org>
11224
11225         * m4/gettext.m4: Update from GNU gettext 0.14.4.
11226
11227 2005-04-25  Albert Chin  <china@thewrittenword.com>
11228
11229         * lib/regex.c: Include <stdio.h>, as a workaround to a Compaq Desktop
11230         Toolkit C bug.
11231
11232 2005-04-21  Oskar Liljeblad  <oskar@osk.mine.nu>
11233
11234         * gnulib-tool (Options): Add -s for --symlink/--symbolic.
11235         (func_ln_if_changed) Remove forcibly for no error message
11236         in case file does not exist.
11237
11238 2005-04-19  Simon Josefsson  <jas@extundo.com>
11239
11240         * gnulib-tool (Options): Make --symlink mean --symbolic.
11241
11242 2005-04-18  Oskar Liljeblad <oskar@osk.mine.nu>
11243
11244         * doc/gnulib.texi (Initial import): Fix.  Mention --aux-dir.
11245
11246 2005-04-16  Simon Josefsson  <jas@extundo.com>
11247
11248         * modules/getpass-gnu (Makefile.am): Don't mention getpass.h.
11249
11250 2005-04-15  Simon Josefsson  <jas@extundo.com>
11251
11252         * m4/getpass.m4 (gl_FUNC_GETPASS): Use AC_LIBSOURCES.
11253
11254 2005-04-15  Simon Josefsson  <jas@extundo.com>
11255
11256         * gnulib-tool: Rename --symlink to --symbolic.
11257
11258 2005-04-15  Oskar Liljeblad <oskar@osk.mine.nu>
11259
11260         * gnulib-tool: Add -s, --symlink option to gnulib-tool to make
11261         symbolic links to files instead of copying/moving.  Add --aux-dir,
11262         specifying directory relative --dir where auxiliary build tools
11263         are placed.
11264
11265 2005-04-14  Bruno Haible  <bruno@clisp.org>
11266
11267         * modules/allocsa (License): Change to LGPL.
11268         Requested by Yoann Vandoorselaere <yoann@prelude-ids.org>.
11269
11270 2005-04-13  Paul Eggert  <eggert@cs.ucla.edu>
11271
11272         * lib/getdate.y (zone): Allow relunit_snumber after tZONE, so
11273         that "UTC +1 second" continues to work.  Problem reported
11274         by Dmitry V. Levin.
11275         (relunit_snumber): New rule.
11276         (relunit): Use it.
11277
11278 2005-04-12  Paul Eggert  <eggert@cs.ucla.edu>
11279
11280         * lib/getdate.y (universal_time_zone_table): New constant.
11281         (time_zone_table): Remove GMT, UT, UTC entries; they're now in
11282         universal_time_zone_table.
11283         (lookup_zone): Prefer universal_time_zone_table to
11284         local_time_zone_table, so that "GMT" time stamps are allowed in
11285         London during the summer.  Problem reported by Ian Abbott.
11286
11287 2005-04-12  Jim Meyering  <jim@meyering.net>
11288
11289         * lib/human.c (humblock): Set *options even when returning due to
11290         xstrtoumax conversion failure.  Thanks to a used-uninitialized
11291         warning from gcc-4.
11292
11293 2005-04-09  Jim Meyering  <jim@meyering.net>
11294
11295         * lib/posixtm.c (posixtime) [lint]: Avoid spurious warning from gcc-4's
11296         -Wuninitialized: initialize tm0.tm_year.
11297
11298 2005-04-04  Paul Eggert  <eggert@cs.ucla.edu>
11299
11300         * lib/getdate.y (parser_control): rels_seen is now a boolean, not a
11301         count, since there's no maximum.  All uses changed.
11302         Add member dsts_seen.
11303         (local_zone): Accumulate dsts_seen rather than relying on tm_isdst
11304         not being INT_MAX.
11305         (get_date): Initialize dsts_seen, and check that it doesn't go over 1.
11306         Use pc_rels_seen to decide whther a date is absolute.
11307
11308         * lib/getdate.y (number): Don't overwrite year.
11309         (get_date): Initialize pc.year.digits to 0, not 4, to enable above
11310         check.
11311
11312 2005-04-02  Simon Josefsson  <jas@extundo.com>
11313
11314         * lib/getaddrinfo.h: Fix OpenBSD compilation failure, inspired by tiny
11315         patch from Yoann Vandoorselaere <yoann@prelude-ids.org>.
11316
11317 2005-03-28  Eric Blake  <ebb9@byu.net>  (tiny change)
11318
11319         * m4/getcwd-path-max.m4: Return success on systems such as Cygwin
11320         where no absolute path name can be longer than PATH_MAX.
11321
11322 2005-03-27  Jim Meyering  <jim@meyering.net>
11323
11324         * lib/argmatch.c: Clarify comment: null-terminated -> NULL-terminated.
11325
11326 2005-03-26  Paul Eggert  <eggert@cs.ucla.edu>
11327
11328         * lib/intprops.h (INT_STRLEN_BOUND, INT_BUFSIZE_BOUND):
11329         "one's complement" -> "ones' complement" in comment, as per Knuth.
11330         "value of type" -> "type or expression" in comment.
11331         * lib/mktime.c, strftime.c: Propagate intprops.h comment nits.
11332
11333 2005-03-26  Jim Meyering  <jim@meyering.net>
11334
11335         Comment nits.
11336         * lib/intprops.h: Add the apostrophe in `(one|two)'s complement'.
11337         Correct typos: s/or/of/.
11338
11339 2005-03-26  Jim Meyering  <jim@meyering.net>
11340
11341         * modules/check-include-files: Move to ../ and rename to...
11342         * check-module: ...this.
11343
11344 2005-03-25  Jim Meyering  <jim@meyering.net>
11345
11346         * modules/xvasprintf (Files): Add xalloc.h.
11347
11348 2005-03-23  Paul Eggert  <eggert@cs.ucla.edu>
11349
11350         * modules/gettext (Files): config/config.rpath ->
11351         build-aux/config.rpath
11352         * modules/iconv (Files): Likewise.
11353         Problem reported by Oskar Liljeblad.
11354
11355 2005-03-23  Jim Meyering  <jim@meyering.net>
11356
11357         * modules/check-include-files: New script to check for
11358         missing dependencies, multiple includes, etc.
11359
11360         * modules/c-strtold (Depends-on): Add xalloc.
11361         * modules/c-strtod (Depends-on): Add xalloc.
11362         * modules/hash (Depends-on): Add xalloc.
11363         (Files): Remove lib/xalloc.h.
11364
11365         * modules/gethrxtime (Files): Add lib/gethrxtime.h.
11366         * modules/userspec (Files): Add lib/inttostr.h.
11367
11368 2005-03-23  Jim Meyering  <jim@meyering.net>
11369
11370         * lib/canonicalize.c: Remove duplicate `#include "stat-macros.h"'.
11371
11372 2005-03-22  Jim Meyering  <jim@meyering.net>
11373
11374         * modules/stat-macros: New module.
11375         * modules/canonicalize, modules/euidaccess, modules/file-type,
11376         * modules/filemode, modules/lchown, modules/makepath,
11377         * modules/rmdir, modules/stat: Depend on new stat-macros module
11378         rather than listing lib/stat-macros.h manually.
11379         Don't add stat-macros.h to lib_SOURCES or list it in Files: section.
11380
11381 2005-03-22  Jim Meyering  <jim@meyering.net>
11382
11383         * m4/stat-macros.m4 (gl_STAT_MACROS): New file/macro.
11384
11385 2005-03-22  Bruno Haible  <bruno@clisp.org>
11386
11387         * config/srclist.txt: Replace target directory 'config' with
11388         'build-aux'.
11389         * config/config.guess, config.sub, config.rpath, depcomp, install-sh:
11390         * config/mdate-sh, missing, mkinstalldirs, texinfo.tex: Move to
11391         ../build-aux/.
11392
11393 2005-03-21  Paul Eggert  <eggert@cs.ucla.edu>
11394
11395         * modules/chdir-long (Depends-on): Add mempcpy.
11396
11397         * modules/acl, modules/backupfile, modules/c-strtod,
11398         modules/c-strtold, modules/canon-host, modules/canonicalize,
11399         modules/cloexec, modules/closeout, modules/dirfd, modules/dirname,
11400         modules/exclude, modules/exitfail, modules/file-type,
11401         modules/filemode, modules/fpending, modules/fsusage, modules/getcwd,
11402         modules/getdate, modules/getline, modules/getpagesize,
11403         modules/getpass, modules/getugroups, modules/group-member,
11404         modules/hard-locale, modules/hash, modules/human, modules/idcache,
11405         modules/inttostr, modules/long-options, modules/makepath,
11406         modules/md5, modules/memcasecmp, modules/memcoll,
11407         modules/modechange, modules/mountlist, modules/path-concat,
11408         modules/pathmax, modules/physmem, modules/posixtm, modules/posixver,
11409         modules/quote, modules/quotearg, modules/readtokens, modules/readutmp,
11410         modules/safe-read, modules/safe-write, modules/same, modules/savedir,
11411         modules/settime, modules/sha1, modules/sig2str, modules/strdup,
11412         modules/strftime, modules/strndup, modules/strverscmp,
11413         modules/timespec, modules/unlocked-io, modules/userspec,
11414         modules/utimecmp, modules/utimens, modules/xalloc, modules/xstrtol,
11415         modules/yesno:
11416         Remove lib_SOURCES line from Makefile.am section, as this is now
11417         done automatically by the corresponding Autoconf macro.
11418
11419 2005-03-21  Jim Meyering  <jim@meyering.net>
11420
11421         Changes imported from coreutils.
11422
11423         * lib/cycle-check.c: Don't include xalloc.h.
11424
11425         * lib/path-concat.c: Don't include assert.h.
11426         (path_concat): Remove assertion that would have triggered
11427         for ABASE starting with more than one slash.
11428         Reported by Andreas Schwab.
11429
11430         * lib/path-concat.c (path_concat): Set *BASE_IN_RESULT
11431         properly when ABASE is an absolute file name.
11432         Correct the description of this function.
11433         Include <assert.h>.
11434         Add an assertion and a test driver.
11435         This fixes a bug introduced on 2004-07-02.
11436         Andreas Schwab reported the resulting failure of cp --parents:
11437         http://lists.gnu.org/archive/html/bug-coreutils/2005-01/msg00130.html
11438
11439 2005-03-21  Jim Meyering  <jim@meyering.net>
11440
11441         * m4/chdir-long.m4 (gl_PREREQ_CHDIR_LONG): Invoke gl_FUNC_MEMRCHR.
11442         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Check for memrchr decl.
11443
11444 2005-03-21  Jim Meyering  <jim@meyering.net>
11445         and  Paul Eggert  <eggert@cs.ucla.edu>
11446
11447         * m4/acl.m4, m4/backupfile.m4, m4/c-strtod.m4, m4/canon-host.m4,
11448         m4/canonicalize.m4, m4/cloexec.m4, m4/closeout.m4, m4/dirfd.m4,
11449         m4/dirname.m4, m4/exclude.m4, m4/exitfail.m4, m4/file-type.m4,
11450         m4/filemode.m4, m4/fpending.m4, m4/fsusage.m4, m4/getcwd.m4,
11451         m4/getdate.m4, m4/getline.m4, m4/getpagesize.m4, m4/getpass.m4,
11452         m4/getugroups.m4, m4/group-member.m4, m4/hard-locale.m4, m4/hash.m4,
11453         m4/human.m4, m4/idcache.m4, m4/inttostr.m4, m4/long-options.m4,
11454         m4/makepath.m4, m4/md5.m4, m4/memcasecmp.m4, m4/memcoll.m4,
11455         m4/modechange.m4, m4/mountlist.m4, m4/nanosleep.m4, m4/path-concat.m4,
11456         m4/pathmax.m4, m4/physmem.m4, m4/posixtm.m4, m4/posixver.m4,
11457         m4/quote.m4, m4/quotearg.m4, m4/readtokens.m4, m4/readutmp.m4,
11458         m4/safe-read.m4, m4/safe-write.m4, m4/same.m4, m4/savedir.m4,
11459         m4/settime.m4, m4/sha1.m4, m4/sig2str.m4, m4/strdup.m4, m4/strftime.m4,
11460         m4/strndup.m4, m4/strverscmp.m4, m4/timespec.m4, m4/unlocked-io.m4,
11461         m4/userspec.m4, m4/utimecmp.m4, m4/utimens.m4, m4/xalloc.m4,
11462         m4/xnanosleep.m4, m4/xstrtol.m4, m4/yesno.m4:
11463         Use AC_LIBSOURCES and AC_LIBOBJ to indicate source and object files
11464         for these modules.
11465
11466 2005-03-18  Paul Eggert  <eggert@cs.ucla.edu>
11467
11468         * lib/strftime.c (my_strftime): If the underlying strftime returns 0
11469         (which shouldn't happen), generate nothing instead of returning 0
11470         immediately, so that nstrftime (NULL, ...) doesn't return 0.
11471
11472 2005-03-16  Bruno Haible  <bruno@clisp.org>
11473
11474         * modules/stdint (Makefile.am): Use HAVE_LONG_LONG_64BIT instead of
11475         HAVE_LONGLONG_64BIT.
11476
11477 2005-03-16  Bruno Haible  <bruno@clisp.org>
11478
11479         * m4/stdint.m4 (gl_STDINT_H): Define HAVE_LONG_LONG_64BIT instead of
11480         HAVE_LONGLONG_64BIT.
11481
11482 2005-03-16  Bruno Haible  <bruno@clisp.org>
11483
11484         * lib/stdint_.h: Use HAVE_LONG_LONG_64BIT instead of
11485         HAVE_LONGLONG_64BIT.
11486
11487 2005-03-15  Paul Eggert  <eggert@cs.ucla.edu>
11488
11489         * lib/strftime.c (my_strftime): Prepend space to format so that we can
11490         reliably distinguish strftime failure from empty output on POSIX
11491         hosts.
11492
11493 2005-03-15  Paul Eggert  <eggert@cs.ucla.edu>
11494
11495         * lib/iconvme.c (SIZE_MAX): New macro, if not already defined.
11496         (iconv_string): Don't guess a size-zero buffer, as that might cause
11497         buffer overrun.  Instead, avoid multiplying by MB_LEN_MAX if the
11498         result would be 'too large', where 'too large' is (heuristically)
11499         the square root of SIZE_MAX, divided by MB_LEN_MAX to allay
11500         overflow concerns.  This will prevent some unwanted malloc failures
11501         when the inputs are very large.
11502
11503 2005-03-15  Karl Berry  <karl@gnu.org>
11504
11505         * config/srclist.txt (config.rpath): from gettext.
11506         * config/config.rpath: update.
11507
11508 2005-03-15  Bruno Haible  <bruno@clisp.org>
11509
11510         * lib/regex.c (byte_re_match_2_internal): Rename local variable 'not'
11511         to 'negate'.
11512
11513         * lib/regex.c (byte_re_match_2_internal): Reduce scope of same_str_p
11514         variable.
11515
11516         * lib/regex.c (EXTEND_BUFFER, regcomp): Cast the realloc/malloc
11517         results.
11518
11519 2005-03-14  Simon Josefsson  <jas@extundo.com>
11520
11521         * lib/timegm.h: Use proper prototype CPP guards, reported by Dave Love
11522         <fx@gnu.org>.
11523
11524 2005-03-14  Paul Eggert  <eggert@cs.ucla.edu>
11525
11526         * lib/mktime.c (TYPE_TWOS_COMPLEMENT, TYPE_ONES_COMPLEMENT,
11527         TYPE_SIGNED_MAGNITUDE, TYPE_MINIMUM, TYPE_MAXIMUM): Sync from
11528         intprops.h.
11529         * lib/strtol.c: Likewise.
11530
11531 2005-03-14  Jim Meyering  <jim@meyering.net>
11532
11533         * lib/strftime.c (my_strftime) [HAVE_STRFTIME && ! (_NL_CURRENT
11534         && HAVE_STRUCT_ERA_ENTRY)]: Initialize the first byte of ubuf[]
11535         to be nonzero so that we (and caller) can detect the difference
11536         between a valid zero-length expansion and an error return, even
11537         when the underlying strftime fails before writing anything into
11538         that location.
11539
11540 2005-03-14  Bruno Haible  <bruno@clisp.org>
11541
11542         * m4/lib-link.m4, gettext.m4, nls.m4, po.m4:
11543         Update from GNU gettext 0.14.3.
11544
11545 2005-03-10  Jim Meyering  <jim@meyering.net>
11546
11547         * m4/save-cwd.m4 (gl_SAVE_CWD): Check for fchdir.
11548
11549 2005-03-10  Jim Meyering  <jim@meyering.net>
11550
11551         * lib/save-cwd.c [!HAVE_FCHDIR]: Define open, fchdir, and chdir_long
11552         so that this module works on systems without fchdir.
11553
11554 2005-03-09  Paul Eggert  <eggert@cs.ucla.edu>
11555
11556         Factor int-properties macros into a single file, except for
11557         glibc-related files.
11558         * lib/intprops.h: New file.
11559         * lib/getloadavg.c: Include it instead of limits.h.
11560         (INT_STRLEN_BOUND): Remove.
11561         * lib/human.c: Include intprops.h.
11562         (group_number): Use INT_STRLEN_BOUND instead of rolling it ourself.
11563         * lib/human.h (LONGEST_HUMAN_READABLE): Use 146/485 rather than
11564         302/1000.
11565         * lib/inttostr.h: Include intprops.h instead of limits.h.
11566         (INT_STRLEN_BOUND, INT_BUFSIZE_BOUND): Remove.
11567         * lib/mktime.c (TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT): New macros,
11568         for consistency with intprops.h.
11569         (time_t_is_integer, twos_complement_arithmetic): Use them.
11570         * lib/sig2str.h: Include <signal.h>, intprops.h.
11571         (INT_STRLEN_BOUND): Remove.
11572         * lib/strftime.c (TYPE_SIGNED): Remove.
11573         (INT_STRLEN_BOUND): Switch to same implementation as intprops.h.
11574         * lib/strtol.c: Adjust comments to match intprops.h.
11575         * lib/userspec.c: Include intprops.h.
11576         (TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Remove.
11577         * lib/utimecmp.c, xnanosleep.c, xstrtol.c: Likewise.
11578         * lib/utimecmp.c (utimecmp): Use TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT
11579         instead of rolling our own expressions.
11580         * lib/xstrtol.c: Include xstrtol.h first, to test interface.
11581
11582         * lib/strftime.c: Include <stdbool.h>.  Use bool where appropriate,
11583         instead of int.
11584         (my_strftime): Do not mishandle years close to INT_MAX, by doing
11585         the right thing even if adding 1900 would overflow.  Similarly
11586         for tm_mon + 1 and tm_yday + 1.
11587         Make %Y always equivalent to %C%y, and similarly for %G and %g.
11588         (DO_NUMBER, DO_NUMBER_SPACEPAD): Set digits to d, not a conditional.
11589         (DO_SIGNED_NUMBER): New macro.
11590         (my_strftime) [HAVE_TZNAME]: Don't dump core if tp->tm_dst > 1.
11591
11592 2005-03-07  Bruno Haible  <bruno@clisp.org>
11593
11594         * m4/mmap-anon.m4 (MAP_FILE, MAP_FAILED): Remove definitions.
11595
11596 2005-03-07  Bruno Haible  <bruno@clisp.org>
11597
11598         * lib/pagealign_alloc.c (MAP_FILE, MAP_FAILED): Define fallbacks.
11599
11600 2005-03-04  Derek R. Price  <derek@ximbiot.com>
11601
11602         * gnulib-tool (func_cp_if_changed, func_mv_if_changed): New functions.
11603         (func_import): Only replace files via --import when they have actually
11604         changed.
11605
11606 2005-03-03  Derek R. Price  <derek@ximbiot.com>
11607
11608         * m4/mmap-anon.m4: New file.
11609         * m4/pagealign_alloc.m4: New file.
11610
11611 2005-03-03  Derek R. Price  <derek@ximbiot.com>
11612             Bruno Haible  <bruno@clisp.org>
11613
11614         * modules/pagealign_alloc: New file.
11615         * MODULES.html.sh (Memory management functions): Add pagealign_alloc.
11616
11617 2005-03-03  Derek R. Price  <derek@ximbiot.com>
11618             Bruno Haible  <bruno@clisp.org>
11619
11620         * lib/pagealign_alloc.h: New file.
11621         * lib/pagealign_alloc.c: New file.
11622
11623 2005-03-03  Bruno Haible  <bruno@clisp.org>
11624
11625         * m4/inttypes.m4, isc-posix.m4, once-only.m4:
11626         Use an all-permissive copyright notice, recommended by RMS.
11627
11628 2005-03-02  Bruno Haible  <bruno@clisp.org>
11629
11630         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Undo the replacement here. Because
11631         of AIX, the replacement has to be done only after <string.h> is
11632         included, therefore not in config.h. stpncpy.h does the replacement,
11633         and stpncpy.c uses it.
11634
11635 2005-03-02  Bruno Haible  <bruno@clisp.org>
11636
11637         * lib/stpncpy.h (stpncpy): Define as a macro without arguments, so that
11638         stpncpy.c uses it.
11639
11640 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
11641
11642         Remove workaround for bug in Linux kernel 2.6.8 or thereabouts.
11643         The workaround isn't strictly needed for POSIX conformance, and
11644         it's too much of a pain to configure and maintain.  We'll ask
11645         people to fix their kernels instead.
11646         * lib/xnanosleep.c: Don't include gethrxtime.h or xtime.h.
11647         (NANOSLEEP_BUG_WORKAROUND): Remove.
11648         (xnanosleep): Remove the workaround.
11649
11650 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
11651
11652         * modules/gettime (Makefile.am): Remove lib_SOURCES line.
11653         Reported by Derek Price.
11654         (Include): Add "timespec.h".
11655
11656         * modules/xnanosleep (Depends-on): Remove gethrxtime.
11657
11658 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
11659
11660         * m4/xnanosleep.m4 (gl_XNANOSLEEP): Remove configuration attempting
11661         to detect nanosleep bug.
11662
11663 2005-03-01  Bruno Haible  <bruno@clisp.org>
11664
11665         * lib/vasnprintf.c (EOVERFLOW): Define to a fallback if needed.
11666
11667 2005-02-26  Paul Eggert  <eggert@cs.ucla.edu>
11668
11669         * modules/gethrxtime: New file.
11670         * modules/xnanosleep (Files): Add m4/xnanosleep.m4.
11671         (Depends-on): Add gethrxtime.
11672         (configure.ac): Add gl_XNANOSLEEP.
11673         (Makefile.am): Remove lib_SOURCES line.
11674
11675 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
11676
11677         * m4/gethrxtime.m4, xnanosleep.m4: New files.
11678         * m4/gettime.m4 (gl_GETTIME): Check for nanotime.
11679
11680 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
11681
11682         * lib/gethrxtime.h, gethrxtime.c, xtime.h: New files.
11683         * lib/timespec.h (gettime): Return void, since it always
11684         succeeds now.  All uses changed.
11685         * lib/gettime.c (gettime) Likewise.
11686         [HAVE_NANOTIME]: Prefer nanotime.
11687         Assume gettimeofday succeeds, as POSIX requires.
11688         Assime time () succeeds, since other code already does.
11689         * lib/xnanosleep.c: Include xtime.h and gethrxtime.h, not xalloc.h.
11690         (timespec_subtract): Remove.
11691         (NANOSLEEP_BUG_WORKAROUND): New constant.
11692         (xnanosleep): Use gethrxtime rather than gettime; this simplifies
11693         things considerably.  Use it only on GNU/Linux hosts, since the
11694         workaround shouldn't be needed elsewhere.
11695
11696 2005-02-24  Bruno Haible  <bruno@clisp.org>
11697
11698         * modules/gettext (Files): Add m4/glibc2.m4.
11699
11700 2005-02-24  Bruno Haible  <bruno@clisp.org>
11701
11702         * m4/gettext.m4, intdiv0.m4, intmax.m4, inttypes-pri.m4, lcmessage.m4:
11703         * m4/lib-link.m4, lib-prefix.m4, nls.m4, po.m4, printf-posix.m4:
11704         * m4/progtest.m4:
11705         Update from GNU gettext 0.14.2.
11706         * m4/glibc2.m4: New file, from GNU gettext 0.14.2.
11707
11708 2005-02-24  Bruno Haible  <bruno@clisp.org>
11709
11710         * lib/localcharset.c: Update from GNU gettext 0.14.2.
11711         * lib/config.charset: Update from GNU gettext 0.14.2.
11712
11713 2005-02-24  Bruno Haible  <bruno@clisp.org>
11714
11715         * lib/gettext.h: Update from GNU gettext 0.14.2.
11716
11717 2005-02-23  Simon Josefsson  <jas@extundo.com>
11718
11719         * m4/iconvme.m4: New file.
11720
11721 2005-02-23  Jim Meyering  <jim@meyering.net>
11722
11723         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Revert yesteday's
11724         change.
11725         Thanks to Bruno Haible for catching it.
11726
11727 2005-02-22  Simon Josefsson  <jas@extundo.com>
11728
11729         * modules/iconvme: New file.
11730
11731         * MODULES.html.sh: Add iconvme.
11732
11733 2005-02-22  Simon Josefsson  <jas@extundo.com>
11734
11735         * lib/iconvme.h, iconvme.c: New files, from libc.
11736
11737 2005-02-22  Simon Josefsson  <jas@extundo.com>
11738
11739         * config/srclist.txt: Sync iconvme.h, iconvme.c from libc.
11740
11741 2005-02-22  Jim Meyering  <jim@meyering.net>
11742
11743         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Fix typo:
11744         s/ifndef/ifdef/.
11745
11746 2005-02-20  Neil Conway  <neilc@samurai.com>
11747
11748         * lib/xgethostname.c (xgethostname): Check for ENOMEM, which is
11749         returned by OSX/Darwin if the specified buffer is not large
11750         enough for the hostname.
11751
11752 2005-02-03  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
11753
11754         * lib/argp-help.c (__argp_help): Create a fake struct argp_state and
11755         pass it to _help, otherwise the latter coredumps trying to
11756         dereference state.root_argp.
11757
11758 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
11759
11760         * modules/chdir-long (Depends-on): Add memrchr.
11761         * modules/memrchr (Files): Add lib/memrchr.h.
11762         (Include): "memrchr.h".
11763
11764 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
11765
11766         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Add AC_LIBSOURCES, for memrchr.h.
11767
11768 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
11769
11770         * lib/memrchr.h: New file.
11771         * lib/chdir-long.c: Include it.
11772         * lib/memrchr.c [!defined _LIBC]: Include it rather than <string.h>
11773         Don't bother including stddef.h.
11774
11775 2005-02-01  Paul Eggert  <eggert@cs.ucla.edu>
11776
11777         * lib/mountlist.h (MOUNTLIST_H_): New macro, to protect against double
11778         inclusion.
11779         Include <sys/types.h>, for dev_t.
11780         (ME_DUMMY, ME_REMOTE): Move from here....
11781         * lib/mountlist.c (ME_DUMMY, ME_REMOTE): To here.
11782         (ME_DUMMY): Count "subfs" as a dummy.  Problem reported by
11783         Dmitry V. Levin.
11784         Include mountlist.h first, to test the interface.
11785
11786 2005-01-29  Bruno Haible  <bruno@clisp.org>
11787
11788         * lib/progname.c (program_name): Initialize.
11789         Needed when linking statically on MacOS X.
11790
11791 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
11792
11793         Sync from coreutils.
11794         * modules/getloadavg (Files): Remove m4/getloadavg.m4.
11795         (Depends-on): Add c-strtod.
11796         (configure.ac): Replace gl_FUNC_GETLOADAVG with AC_FUNC_GETLOADAVG.
11797
11798 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
11799
11800         Sync from coreutils.
11801         * m4/getloadavg.m4, glibc.m4, search-libs.m4: Remove.
11802
11803         Remove files that are specific to coreutils.
11804         * m4/check-decl.m4, jm-macros.m4, lib-check.m4, prereq.m4: Remove.
11805
11806 2005-01-28  Bruno Haible  <bruno@clisp.org>
11807
11808         * modules/javacomp: New file.
11809         * MODULES.html.sh (Java): Add javacomp.
11810
11811 2005-01-28  Bruno Haible  <bruno@clisp.org>
11812
11813         * m4/javacomp.m4: New file, from GNU gettext.
11814
11815 2005-01-28  Bruno Haible  <bruno@clisp.org>
11816
11817         * lib/javacomp.sh.in: New file, from GNU gettext.
11818         * lib/javacomp.h: New file, from GNU gettext.
11819         * lib/javacomp.c: New file, from GNU gettext.
11820
11821 2005-01-26  Simon Josefsson  <jas@extundo.com>
11822
11823         * lib/gai_strerror.c: Use GPL in header.
11824
11825 2005-01-26  Bruno Haible  <bruno@clisp.org>
11826
11827         * modules/javaexec: New file.
11828         * MODULES.html.sh (Java): Add javaexec.
11829
11830 2005-01-26  Bruno Haible  <bruno@clisp.org>
11831
11832         * m4/javaexec.m4: New file, from GNU gettext.
11833
11834 2005-01-26  Bruno Haible  <bruno@clisp.org>
11835
11836         * lib/javaexec.sh.in: New file, from GNU gettext.
11837         * lib/javaexec.h: New file, from GNU gettext.
11838         * lib/javaexec.c: New file, from GNU gettext.
11839
11840 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
11841
11842         * modules/lchown (Depends-on): Remove lchown.h
11843
11844 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
11845
11846         * m4/sysexits.m4 (gl_SYSEXITS): Reverted logic. SYSEXITS_H
11847         must be defined if the header file was not found, in order
11848         to provide a replacement. Reported by Todd Vierling <tv@duh.org>
11849
11850 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
11851
11852         * lib/argp-help.c (hol_entry_help): Avoid using non-constant
11853         initializers for struct pentry_state.
11854         (__argp_error): Check return value of __asprintf
11855         (__argp_failure): Translate error message
11856
11857         * lib/argp-parse.c: Removed braces around the expansion of N_()
11858
11859 2005-01-23  Paul Eggert  <eggert@cs.ucla.edu>
11860
11861         * m4/acl.m4, afs.m4, alloca.m4, argp.m4, assert.m4, atexit.m4,
11862         backupfile.m4, base64.m4, bison.m4, c-bs-a.m4, c-stack.m4,
11863         c-strtod.m4, calloc.m4, canon-host.m4, canonicalize.m4,
11864         clock_time.m4, cloexec.m4, closeout.m4, d-ino.m4, d-type.m4,
11865         dirfd.m4, dirname.m4, dos.m4, dup2.m4, error.m4, euidaccess.m4,
11866         exclude.m4, exitfail.m4, extensions.m4, fcntl-safer.m4,
11867         file-type.m4, fileblocks.m4, filemode.m4, fnmatch.m4, fpending.m4,
11868         free.m4, fstypename.m4, fsusage.m4, ftruncate.m4, getaddrinfo.m4,
11869         getcwd-path-max.m4, getcwd.m4, getdate.m4, getdomainname.m4,
11870         getgroups.m4, gethostname.m4, getline.m4, getndelim2.m4,
11871         getnline.m4, getopt.m4, getpagesize.m4, getpass.m4, getsubopt.m4,
11872         gettime.m4, gettimeofday.m4, getugroups.m4, getusershell.m4,
11873         group-member.m4, hard-locale.m4, hash.m4, host-os.m4, human.m4,
11874         idcache.m4, inttostr.m4, isdir.m4, jm-winsz1.m4, jm-winsz2.m4,
11875         link-follow.m4, long-options.m4, ls-mntd-fs.m4, lstat.m4,
11876         makepath.m4, mathl.m4, md5.m4, memcasecmp.m4, memchr.m4,
11877         memcmp.m4, memcoll.m4, memcpy.m4, memmem.m4, memmove.m4,
11878         memrchr.m4, memset.m4, mkdir-slash.m4, mkstemp.m4, mktime.m4,
11879         modechange.m4, mountlist.m4, nanosleep.m4, obstack.m4,
11880         path-concat.m4, pathmax.m4, perl.m4, physmem.m4, poll.m4,
11881         posixtm.m4, posixver.m4, putenv.m4, quote.m4, quotearg.m4,
11882         readdir.m4, readtokens.m4, readutmp.m4, regex.m4, rename.m4,
11883         restrict.m4, rmdir-errno.m4, rmdir.m4, rpmatch.m4, same.m4,
11884         savedir.m4, settime.m4, sha1.m4, sig2str.m4, snprintf.m4,
11885         sockpfaf.m4, st_dm_mode.m4, st_mtim.m4, stat.m4, stdint.m4,
11886         stdio-safer.m4, strchrnul.m4, strdup.m4, strerror.m4,
11887         strerror_r.m4, strftime.m4, strndup.m4, strnlen.m4, strsep.m4,
11888         strtod.m4, strtoimax.m4, strtok_r.m4, strtol.m4, strtoll.m4,
11889         strtoul.m4, strtoull.m4, strtoumax.m4, strverscmp.m4, sysexits.m4,
11890         time_r.m4, timegm.m4, timespec.m4, tm_gmtoff.m4, tzset.m4,
11891         uint32_t.m4, uintptr_t.m4, unistd-safer.m4, unlink-busy.m4,
11892         unlocked-io.m4, uptime.m4, userspec.m4, utimbuf.m4, utime.m4,
11893         utimecmp.m4, utimens.m4, utimes-null.m4, vsnprintf.m4, xalloc.m4,
11894         xgetcwd.m4, xreadlink.m4, xstrndup.m4, xstrtod.m4, xstrtoimax.m4,
11895         xstrtol.m4, xstrtoumax.m4, yesno.m4:
11896         Use an all-permissive copyright notice, recommended by RMS.
11897
11898 2005-01-21  Paul Eggert  <eggert@cs.ucla.edu>
11899
11900         * modules/chdir-long (Depends-on): Remove mempcpy.
11901
11902 2005-01-21  Jim Meyering  <jim@meyering.net>
11903
11904         * lib/openat.h (AT_SYMLINK_NOFOLLOW): Define to 4096, so it's the
11905         same value as for Solaris 9.
11906
11907         * lib/chdir-long.c (chdir_long): Rewrite to remove limitation on
11908         component length.  This included changing the parameter to be
11909         of type `char *' rather than `char const *'.
11910         * lib/chdir-long.h (chdir_long): Update prototype.
11911
11912         * lib/openat.c (fdopendir, fstatat): New functions.
11913         * lib/openat.h: Include headers required for use of DIR and struct
11914         stat.
11915         [AT_SYMLINK_NOFOLLOW]: Define.
11916         (fdopendir, fstatat): Add prototypes.
11917
11918 2005-01-21  Bruno Haible  <bruno@clisp.org>
11919
11920         * modules/classpath: New file.
11921         * MODULES.html.sh (Java): Add classpath.
11922
11923 2005-01-21  Bruno Haible  <bruno@clisp.org>
11924
11925         * lib/classpath.h: New file, from GNU gettext.
11926         * lib/classpath.c: New file, from GNU gettext.
11927
11928 2005-01-20  Simon Josefsson  <jas@extundo.com>
11929
11930         * modules/version-etc-fsf: New file.
11931
11932 2005-01-20  Simon Josefsson  <jas@extundo.com>
11933
11934         * lib/version-etc-fsf.c: New file, with version_etc_copyright.
11935         * lib/version-etc.c: Remove version_etc_copyright.
11936         * lib/version-etc.h (version_etc_copyright): Use [] instead of * in
11937         prototype, suggested by Paul Eggert <eggert@CS.UCLA.EDU>.
11938
11939 2005-01-20  Simon Josefsson  <jas@extundo.com>
11940
11941         * lib/base64.h (isbase64): Add.
11942
11943         * lib/base64.c (isb64): Rename to isbase64, use to_uchar instead of
11944         using a unsigned prototype, don't inline.
11945         (base64_decode): Use it.
11946
11947 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
11948
11949         * m4/save-cwd.m4 (gl_SAVE_CWD): Remove check for fcntl; we now assume
11950         it.
11951
11952 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
11953
11954         * lib/save-cwd.c (save_cwd): Remove code to support the case
11955         where fchdir is missing or flaky.
11956
11957 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
11958
11959         * MODULES.html.sh (Command-line arguments): Add version-etc-fsf.
11960
11961 2005-01-19  Paul Eggert  <eggert@cs.ucla.edu>
11962
11963         * modules/mempcpy (Makefile.am): Remove mention of mempcpy.h;
11964         AC_LIBSOURCES now does this.
11965         * MODULES.html.sh (Sizes of integer types <limits.h>): New element,
11966         with new ullong_max module.
11967
11968 2005-01-19  Bruno Haible  <bruno@clisp.org>
11969
11970         * modules/sh-quote: New file.
11971         * MODULES.html.sh (Executing programs): Add sh-quote.
11972
11973 2005-01-19  Bruno Haible  <bruno@clisp.org>
11974
11975         * lib/sh-quote.h: New file, from GNU gettext.
11976         * lib/sh-quote.c: New file, from GNU gettext.
11977
11978 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
11979
11980         Merge from coreutils.
11981         * m4/ullong_max.m4: New file.
11982         * m4/jm-macros.m4 (gl_MACROS): Require gl_ULLONG_MAX.
11983         (gl_MACROS): Assume localeconv exists.
11984
11985 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
11986
11987         Merge changes from coreutils, as described below in several
11988         changelogs dated today.
11989
11990         * lib/save-cwd.c: Include "save-cwd.h" before other include files.
11991         (O_DIRECTORY): Remove; not needed here, since "." must be
11992         a directory.  All uses removed.
11993         (save_cwd): Use __sgi || __sun, not sun || __sun.  __sun is
11994         universal on Suns, and we also need to test for IRIX.
11995         Revamp code to use 'if' rather than '#if'.
11996         Avoid unnecessary comparison of cwd->desc to 0.
11997
11998         * lib/utimens.c (futimens): Robustify the previous patch, by checking
11999         for known valid error numbers rather than observed invalid ones.
12000
12001 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
12002
12003         * modules/ullong_max: New file.
12004
12005         * modules/chdir-long, modules/openat: New files.
12006         * modules/save-cwd (Depends-on): Depend on chdir-long.
12007         (Makefile.am): Remove lib_SOURCES; now handled by AC_LIBSOURCES.
12008
12009 2005-01-18  Jim Meyering  <jim@meyering.net>
12010
12011         Merge from coreutils.
12012         * m4/chdir-long.m4, openat.m4: New files.
12013         * m4/save-cwd.m4 (gl_SAVE_CWD): Add AC_LIBSOURCES for save-cwd.c,
12014         save-cwd.h.  Add AC_LIBOBJ for save-cwd.
12015         * m4/chown.m4 (gl_FUNC_CHOWN): When cross-compiling, assume that chown
12016         is sane and DOES follow symlinks.  Besides, testing 20 different
12017         systems found no broken chown implementations.
12018         Prompted by a change in rsync's copy of this macro.
12019         * m4/jm-macros.m4 (gl_MACROS): Require gl_FUNC_CHDIR_LONG.
12020
12021         * m4/lchown.m4 (gl_FUNC_LCHOWN): Use AC_LIBSOURCES.
12022
12023         * m4/utimes.m4: Work around tests/touch/empty-file failure on a system
12024         (sparc64, Linux-2.4.28, glibc-2.3.3) that didn't honor utimes'
12025         NULL-means-set-to-current-time semantics.
12026         Remove temporary file immediately, rather than waiting
12027         for configure's at-exit trap code to do it.
12028
12029 2005-01-18  Jim Meyering  <jim@meyering.net>
12030
12031         * lib/version-etc.c (version_etc_copyright): Update copyright date.
12032
12033         * lib/utimens.c (futimens): Account for the fact that futimes
12034         can also fail with errno == ENOSYS or errno == ENOENT.
12035         Patch from Dmitry V. Levin.
12036
12037         Change the name of the robust chdir function from chdir to chdir_long.
12038         * lib/save-cwd.c: Include chdir-long.h rather than chdir.h.
12039         (restore_cwd): Use chdir_long, not chdir.
12040         * lib/chdir-long.c: Renamed from chdir.c.
12041         * lib/chdir-long.h: Renamed from chdir.h.
12042         [!defined PATH_MAX]: Define chdir_long to chdir on systems like the
12043         Hurd.
12044
12045 2005-01-18  Bruno Haible  <bruno@clisp.org>
12046
12047         * m4/allocsa.m4, m4/codeset.m4, m4/copy-file.m4, m4/eaccess.m4:
12048         * m4/eealloc.m4, m4/eoverflow.m4, m4/execute.m4, m4/fatal-signal.m4:
12049         * m4/findprog.m4, m4/glibc21.m4, m4/iconv.m4, m4/intmax_t.m4:
12050         * m4/inttypes_h.m4, m4/lib-ld.m4, m4/lib-link.m4, m4/lib-prefix.m4:
12051         * m4/linebreak.m4, m4/localcharset.m4, m4/longdouble.m4:
12052         * m4/longlong.m4, m4/mbrtowc.m4, m4/mbstate_t.m4, m4/mbswidth.m4:
12053         * m4/mkdtemp.m4, m4/pipe.m4, m4/readlink.m4, m4/safe-read.m4:
12054         * m4/safe-write.m4, m4/setenv.m4, m4/sig_atomic_t.m4:
12055         * m4/signalblocking.m4, m4/signed.m4, m4/size_max.m4, m4/ssize_t.m4:
12056         * m4/stdbool.m4, m4/stdint_h.m4, m4/stpcpy.m4, m4/stpncpy.m4:
12057         * m4/strcase.m4, m4/strcspn.m4, m4/strpbrk.m4, m4/strstr.m4:
12058         * m4/ucs4-utf.m4, m4/uintmax_t.m4, m4/ulonglong.m4, m4/unicodeio.m4:
12059         * m4/utf-ucs4.m4, m4/vasnprintf.m4, m4/vasprintf.m4:
12060         * m4/wait-process.m4, m4/wchar_t.m4, m4/wint_t.m4, m4/xsize.m4:
12061         Use an all-permissive copyright notice, recommended by RMS.
12062
12063 2005-01-18  Bob Proulx  <bob@proulx.com>
12064
12065         * lib/obstack.c [DEFAULT_ALIGNMENT]: Use an intermediate type to
12066         simplify offsetof() macro construct to avoid compile failure with
12067         native HP-UX 11.0 ANSI C compiler.
12068
12069 2005-01-17  Bruno Haible  <bruno@clisp.org>
12070
12071         * lib/stpncpy.c: Remove HAVE_STPNCPY and gnu_stpncpy renaming,
12072         redundant because stpncpy.m4 takes care of it.
12073
12074 2005-01-17  Bruno Haible  <bruno@clisp.org>
12075
12076         * lib/progreloc.c: Include xalloc.h instead of xmalloc.h.
12077
12078 2005-01-17  Bruno Haible  <bruno@clisp.org>
12079
12080         * lib/progreloc.c (xstrdup): Define as strdup if no xmalloc should be
12081         used.
12082
12083 2005-01-17  Bruno Haible  <bruno@clisp.org>
12084
12085         * lib/fwriteerror.h (fwriteerror): Change specification to include
12086         fclose.
12087         * lib/fwriteerror.c: Include <stdbool.h>.
12088         (fwriteerror): At the end, close the file stream. Record whether
12089         stdout was already closed.
12090
12091 2005-01-17  Bruno Haible  <bruno@clisp.org>
12092
12093         * lib/execute.c (environ): Declare if needed.
12094         * lib/pipe.c (environ): Likewise.
12095         Reported by Michael Schloh von Bennewitz <michael.schloh@cw.com>.
12096
12097 2005-01-11  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
12098
12099         * modules/argp: Depend on vsnprintf
12100
12101 2005-01-10  Jim Meyering  <jim@meyering.net>
12102
12103         * modules/closeout (Depends-on): Add atexit.
12104
12105 2005-01-06  Bruno Haible  <bruno@clisp.org>
12106
12107         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Rename stpncpy to gnu_stpncpy here.
12108
12109 2005-01-04  Paul Eggert  <eggert@cs.ucla.edu>
12110
12111         * lib/human.c (SIZE_MAX, UINTMAX_MAX): Move these conditional
12112         definitions to be after all include files, to avoid collisions.
12113         Problem reported by Bob Proulx.
12114
12115 2005-01-04  Jim Meyering  <jim@meyering.net>
12116
12117         Changes imported from coreutils.
12118         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Rather than using "conftestXXXXXX"
12119         as the mkstemp template, use a temporary directory and an
12120         8.3-friendly template to avoid trouble on systems like DJGPP.
12121         Reported by Juan M. Guerrero via Stepan Kasal.
12122         * m4/(gl_FUNC_MKSTEMP): Include <unistd.h> for the declaration of
12123         close. Remove the temporary directory right away, rather than waiting
12124         for configure's at-exit trap code to do it.
12125         Suggestion from Stepan Kasal.
12126
12127 2005-01-01  Simon Josefsson  <jas@extundo.com>
12128
12129         * gnulib-tool: Print #include directives when --import'ing.
12130
12131 2004-12-28  Simon Josefsson  <jas@extundo.com>
12132
12133         * tests/test-base64.c: Include required header files.  Remove
12134         unused variables.
12135
12136 2004-12-28  Paul Eggert  <eggert@cs.ucla.edu>
12137
12138         * modules/error (Depends-on): Remove gettext.
12139
12140 2004-12-28  Paul Eggert  <eggert@cs.ucla.edu>
12141
12142         * lib/error.c [!_LIBC && !ENABLE_NLS]: Do not include "gettext.h";
12143         not needed.  This removes a dependency on the gettext module.
12144         [defined _LIBC]: Do not include <libintl.h>; not needed.
12145
12146 2004-12-24  Paul Eggert  <eggert@cs.ucla.edu>
12147
12148         * m4/c-strtod.m4 (gl_C99_STRTOLD): New macro.
12149         (gl_C_STRTOD): Use it instead of AC_CHECK_DECLS_ONCE(strtold).
12150
12151 2004-12-24  Paul Eggert  <eggert@cs.ucla.edu>
12152
12153         * lib/c-strtod.c (STRTOD): Depend on HAVE_C99_STRTOLD, not
12154         HAVE_DECL_STRTOLD.
12155
12156 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
12157
12158         * modules/getdate (Depends-on): Remove alloca-opt.
12159
12160 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
12161
12162         * m4/getdate.m4 (gl_GETDATE): Remove AC_FUNC_ALLOCA.
12163
12164 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
12165
12166         * lib/argp-parse.c: Include <stddef.h>.
12167         (alignof, alignto): New macros.
12168         (parser_init): Don't assume that void * is aligned sufficiently
12169         for struct option.
12170
12171         * lib/getdate.y (YYSTACK_USE_ALLOCA): Define to 0, since there's no
12172         need to extend the stack.
12173         (YYINITDEPTH): New macro, so that the initial stack isn't overly
12174         large.
12175
12176 2004-12-22  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
12177
12178         * lib/argp-parse.c (parser_init): Avoid arithmetics on void pointers.
12179
12180 2004-12-19  Paul Eggert  <eggert@cs.ucla.edu>
12181
12182         * modules/regex (lib_SOURCES): Remove regex.c, undoing previous
12183         (2004-10-24) change.  Apparently this was a false alarm.
12184
12185         * modules/getdate: Depend on alloca-opt, not alloca.
12186
12187 2004-12-19  Paul Eggert  <eggert@cs.ucla.edu>
12188
12189         * lib/alloca_.h: Conditionalize on _GNULIB_ALLOCA_H, not _ALLOCA_H.
12190         Remove now-obsolete comment about AIX.
12191         * lib/getdate.y: Include <alloca.h> only if HAVE_ALLOCA.
12192         (YYSTACK_USE_ALLOCA): Define to 0 if !HAVE_ALLOCA.
12193         (YYMAXDEPTH): New macro.
12194
12195 2004-12-18  Simon Josefsson  <jas@extundo.com>
12196
12197         * modules/alloca: Depend on alloca-opt, instead of duplicating it.
12198
12199 2004-12-18  Bruno Haible  <bruno@clisp.org>
12200
12201         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Also test for sigaction.
12202
12203 2004-12-18  Bruno Haible  <bruno@clisp.org>
12204
12205         * lib/fatal-signal.c (fatal_signals): Make non-const.
12206         (init_fatal_signals): New function.
12207         (uninstall_handlers, install_handlers): Ignore signals that were set to
12208         SIG_IGN.
12209         (at_fatal_signal): Call init_fatal_signals.
12210         (init_fatal_signal_set): Likewise. Ignore signals that were set to
12211         SIG_IGN.
12212         Reported by Paul Eggert.
12213
12214 2004-12-18  Bruno Haible  <bruno@clisp.org>
12215
12216         * doc/alloca.texi: New file.
12217         * doc/alloca-opt.texi: New file.
12218
12219 2004-12-17  Jim Meyering  <jim@meyering.net>
12220
12221         * config/install-sh: Use `(exit N); exit N', not `(exit N); exit'.
12222         Otherwise, install-sh could exit with improper exit status when
12223         exiting via a trapped interrupt.  Thanks to a report from Bob Proulx.
12224
12225 2004-12-16  Simon Josefsson  <jas@extundo.com>
12226
12227         * tests/test-base64.c: Add license.
12228
12229 2004-12-15  Stepan Kasal  <address@hidden>
12230
12231         * gnulib-tool (func_emit_lib_Makefile_am): Shorten a long sed command.
12232
12233 2004-12-12  Paul Eggert  <eggert@cs.ucla.edu>
12234
12235         * modules/getcwd (Files): Add m4/d-ino.m4.
12236         Suggested by Mark D. Baushke.
12237
12238 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
12239
12240         * lib/getdate.y (textint): New member "negative".
12241         (time_zone_hhmm): New function.
12242         Expect 14 shift-reduce conflicts, not 13.
12243         (o_colon_minutes): New rule.
12244         (time, zone): Use it to add support for +HH:MM, UTC+HH:MM.
12245         (yylex): Set the "negative" member of signed numbers.
12246
12247 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
12248
12249         * doc/getdate.texi (Time of day items, Time zone items):
12250         Describe new formats +00:00, UTC+00:00.
12251
12252 2004-12-07  Paul Eggert  <eggert@cs.ucla.edu>
12253
12254         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Fix typo in previous change:
12255         spurious "-l"s.  Problem reported by Stepan Kasal.
12256
12257 2004-12-06  Paul Eggert  <eggert@cs.ucla.edu>
12258
12259         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): New macro, to work around bug
12260         in Autoconf 2.59.  Problem reported by Mark D. Baushke.
12261
12262 2004-12-04  Simon Josefsson  <jas@extundo.com>
12263
12264         * modules/getaddrinfo (License): Add LGPL, reported by Yoann
12265         Vandoorselaere <yoann@prelude-ids.org>.
12266
12267 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
12268
12269         Changes imported from coreutils.
12270         * m4/hard-locale.m4 (gl_HARD_LOCALE): Assume locale.h and setlocale
12271         exist.
12272         * m4/human.m4 (gl_HUMAN): Assume locale.h and localeconv exist.
12273
12274 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
12275
12276         Changes imported from coreutils.
12277         * lib/hard-locale.c: Assume <locale.h> exists.
12278         Include "strdup.h".
12279         (GLIBC_VERSION): New macro.
12280         (hard_locale): Assume setlocale exists.
12281         Rewrite to avoid #ifdef.
12282         Use strdup rather than malloc + strcpy.
12283         * lib/human.c: Assume <locale.h> exists.
12284         (human_readable): Assume localeconv exists.
12285
12286 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
12287
12288         * modules/hard-locale (Depends-on): Add strdup.
12289
12290 2004-12-01  Jakub Jelinek  <jakub@redhat.com>
12291
12292         * lib/mktime.c (__mktime_internal): If SEC_REQUESTED != SEC,
12293         convert T2, not T.  (Imported from libc.)
12294
12295 2004-11-30  Simon Josefsson  <jas@extundo.com>
12296
12297         * modules/restrict (License): Change to LGPL.
12298
12299 2004-11-30  Simon Josefsson  <jas@extundo.com>
12300
12301         * m4/restrict.m4: Add copyright and copying conditions.
12302
12303 2004-11-30  Simon Josefsson  <jas@extundo.com>
12304
12305         * m4/base64.m4: New file.
12306
12307 2004-11-30  Simon Josefsson  <jas@extundo.com>
12308
12309         * MODULES.html.sh (Extra functions based on ANSI C 89): Add
12310         base64.
12311
12312         * tests/test-base64.c: New file.
12313
12314         * modules/base64: New file.
12315
12316 2004-11-30  Paul Eggert  <eggert@cs.ucla.edu>
12317
12318         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX):
12319         Define HAVE_PARTLY_WORKING_GETCWD if getcwd is partly working.
12320
12321         * m4/readutmp.m4 (gl_READUTMP): Don't check for sys/param.h.
12322
12323 2004-11-30  Paul Eggert  <eggert@cs.ucla.edu>
12324
12325         * lib/getcwd.c (is_ENAMETOOLONG): New macro.
12326         (__getcwd.c): Don't restore errno; glibc doesn't.
12327         [HAVE_PARTLY_WORKING_GETCWD && !defined AT_FDCWD]: Try system getcwd
12328         first, falling back to our code only if its results look suspicious.
12329         Ensure that the resulting buffer is only as large as necessary.
12330
12331         * lib/readutmp.c: Include readutmp.h first.
12332         Include <errno.h>, since readutmp.h no longer does that.
12333         * lib/readutmp.h: Don't include <errno.h>,
12334         <sys/param.h>, <time.h>; not needed to establish interface.
12335         (errno): Remove decl.
12336         (HAVE_STRUCT_XTMP_UT_TYPE): Remove; no longer needed.
12337         (UT_TYPE_EQ, UT_TYPE_NOT_DEFINED, UT_TYPE_BOOT_TIME,
12338         UT_TYPE_USER_PROCESS, IS_USER_PROCESS): New macros.
12339
12340 2004-11-28  Simon Josefsson  <jas@extundo.com>
12341
12342         * lib/base64.h, base64.c: New file.
12343
12344 2004-11-27  Paul Eggert  <eggert@cs.ucla.edu>
12345
12346         * lib/getcwd.h: New file, which I forgot to check in on 2004-11-25.
12347
12348 2004-11-26  Paul Eggert  <eggert@cs.ucla.edu>
12349
12350         * modules/getcwd (Files): Add lib/getcwd.h, m4/getcwd.m4.
12351         (Depends-on): Remove pathmax, same.  Add mempcpy.
12352         (configure.ac): GL_FUNC_GETCWD_PATH_MAX -> gl_FUNC_GETCWD.
12353         (Makefile.am): Append getcwd.h to lib_SOURCES.
12354         (Include): Add getcwd.h.
12355         (Maintainer): Change from Jim Meyering to "all, glibc",
12356         since getdate now uses intended-for-glibc code.
12357         * modules/xgetcwd (Files): Remove m4/getcwd.m4.
12358         (Depends-on): Depend on getcwd.  Do not depend on pathmax.
12359
12360 2004-11-25  Paul Eggert  <eggert@cs.ucla.edu>
12361
12362         Fix problems reported by Scott S. Tinsley for HP-UX 11.11 using
12363         HP's ANSI C compiler.
12364         * lib/fsusage.c (statvfs) [HAVE_SYS_STATVFS_H]: Remove decl.
12365         Declaring int functions causes warnings on some modern systems and
12366         shouldn't be needed to compile on ancient ones.
12367         * lib/same.c (MIN) [defined MIN]: Don't define, since it's already
12368         defined.
12369
12370         * lib/getcwd.c: Replace by a copy of glibc/sysdeps/posix/getcwd.c, but
12371         with the following changes.
12372         (__set_errno): Parenthesize properly.
12373         Include <stdbool.h>.
12374         (MIN, MAX, MATCHING_INO): New macros.
12375         (__getcwd): Define with prototype, not K&R form.
12376         Use heuristics to allocate default buffer on stack if possible.
12377         If AT_FDCWD is defined, use openat and fstatat to avoid O(N**2)
12378         behavior, and to avoid the PATH_MAX limit when computing
12379         ../../../../...
12380         Use MATCHING_INO to compare inode number to file.
12381         Check for arithmetic overflow in size calculations.
12382         Fix bug in reallocation of dot array that caused getcwd to fail
12383         on directories nested deeper than 75.
12384         Be more careful about saving errno on error.
12385         Do not use realloc; use only free+malloc, as this is a bit
12386         more flexible and avoids a needless copy operation.
12387         Do not inspect st_dev and st_ino for symbolic links; POSIX
12388         doesn't specify the latter.
12389         Check for closedir errors.
12390         Avoid needless casts.
12391         Use "#ifdef weak_alias" around weak_alias, to be like other
12392         glibc code.
12393         The following changes to getcwd.c have effect only when used in
12394         gnulib; they have no effect inside glibc proper.
12395         (#pragma alloca) [defined _AIX && !defined __GNUC__]: Remove,
12396         as alloca isn't used.
12397         (alloca, __alloca): Likewise.
12398         [!_LIBC]: Include "getcwd.h", "mempcpy.h".
12399         Include <stddef.h>, <stdlib.h>, <string.h>, <limits.h>
12400         unconditionally, as gnulib assumes C89 or better.
12401         Do not include <sys/param.h>.
12402         (errno) [!defined __GNU_LIBRARY__ && !defined STDC_HEADERS]: Remove
12403         no-longer-necessary 'extern int errno' decl; gnulib assumes C89 or
12404         better.
12405         (NULL) [!defined NULL]: Remove; we assume C89 or better.
12406         Include <dirent.h> in a way that is compatible with modern Autoconf.
12407         (_D_ALLOC_NAMELEN, _D_EXACT_NAMLEN):
12408         New macros, if not already defined.
12409         Include <unistd.h> if _LIBC, not if __GNU_LIBRARY__.
12410         Use "_LIBC", not "defined _LIBC", for consistency.
12411         (HAVE_MEMPCPY): Remove; no longer needed now that gnulib has
12412         a mempcpy module.
12413         (__lstat, __closedir, __opendir, __readdir) [!_LIBC]: New macros.
12414         (GETCWD_RETURN_TYPE): Remove.  All uses replaced by char *.
12415         * lib/xgetcwd.c: David MacKenzie's old code was removed, so give
12416         credit only to Jim Meyering and adjust the copyright dates.
12417         Do not include <limits.h>, <stdio.h>, <sys/types.h>,
12418         <stdlib.h>, <unistd.h>, "pathmax.h".
12419         Instead, include "xgetcwd.h" (first) and "getcwd.h".
12420         (INITIAL_BUFFER_SIZE): Remove.
12421         (xgetcwd): Rely on getcwd, since we now depend on a reliable one.
12422
12423 2004-11-25  Paul Eggert  <eggert@cs.ucla.edu>
12424
12425         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Renamed from
12426         GL_FUNC_GETCWD_PATH_MAX for consistency.  All uses changed.
12427         Use the _ONCE methods, for efficiency.
12428         Check for fcntl.h.  In test program, include <errno.h>
12429         and <fcntl.h> if available.  Remove old K&R cruft from
12430         test program.  Check for common errors in GNU/Linux,
12431         OpenBSD, and Solaris.  Just set gl_cv_func_getcwd_path_max;
12432         don't do AC_LIBOBJ, as that's getcwd.m4's job.
12433         * m4/getcwd.m4 (gl_FUNC_GETCWD_NULL): Renamed from
12434         AC_FUNC_GETCWD_NULL.  All used changed.  Change cache variable
12435         name accordingly.
12436         (gl_FUNC_GETCWD, gl_PREREQ_GETCWD): New macros.  Revamp to
12437         accommodate new getcwd.c.
12438         * m4/jm-macros.m4 (gl_MACROS): Don't require GL_FUNC_GETCWD_PATH_MAX.
12439         * m4/prereq.m4 (gl_PREREQ): Add gl_FUNC_MEMPCPY.
12440         * m4/xgetcwd.m4 (gl_XGETCWD): Replace with gl_FUNC_GETCWD, since
12441         that's all we need now.
12442
12443 2004-11-23  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
12444
12445         * m4/argp.m4 (gl_ARGP): Require gl_GETOPT_SUBSTITUTE unconditionally:
12446         argp-parse.c depends on getopt internals, that means we should
12447         always use our getopt, to be on the safe side.
12448         * m4/getopt.m4 (gl_GETOPT): Check if GETOPT_H is already set, in
12449         order not to spoil the result of an eventual previous invocation
12450         of gl_GETOPT_SUBSTITUTE.
12451
12452 2004-11-23  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
12453
12454         * lib/getopt_.h: Re-addition of __getopt_argv_const caused
12455         redefinition warnings. To avoid them, include the defines
12456         in `#if !defined __need_getopt ... #endif'. The only place
12457         where __getopt_argv_const is used is in definitions
12458         of getopt_long and getopt_long_only below, which are as well
12459         protected by `#ifndef __need_getopt'.
12460         [defined __GETOPT_PREFIX && !defined __need_getopt]: Undef
12461         __need_getopt after including <stdio.h> and <unistd.h> These
12462         headers might have defined it.
12463
12464 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
12465
12466         * m4/utimens.m4 (gl_UTIMENS): Check for futimes function.
12467
12468 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
12469
12470         * lib/utimens.c (__attribute__, ATTRIBUTE_UNUSED): New macros.
12471         (futimens): New function, which uses futimes if available.
12472         (futimens, utimens): Support timespec==NULL, with same semantics
12473         as utime and utimens.
12474         * lib/utimens.h (futimens): New decl.
12475
12476 2004-11-23  Jim Meyering  <jim@meyering.net>
12477
12478         * lib/getopt_.h: Remove trailing blanks.
12479
12480 2004-11-23  Jim Meyering  <jim@meyering.net>
12481
12482         * lib/__fpending.c: Add comment.
12483
12484 2004-11-22  Paul Eggert  <eggert@cs.ucla.edu>
12485
12486         * modules/canonicalize (Depends-on): Add xreadlink.
12487         Problem reported by James Youngman.
12488
12489 2004-11-20  Paul Eggert  <eggert@cs.ucla.edu>
12490
12491         * lib/getopt_.h (__GETOPT_CONCAT, __GETOPT_XCONCAT, __GETOPT_ID):
12492         New macros.
12493         (getopt, getopt_long, getopt_long_only, optarg, opterr, optind,
12494         optopt): Use them instead of invoking ## directly; otherwise, the
12495         symbols will be __GETOPT_PREFIXgetopt rather than rpl_getopt.
12496
12497 2004-11-19  Bruno Haible  <bruno@clisp.org>
12498
12499         * lib/strtok_r.c: Move comments from here...
12500         * lib/strtok_r.h: ... to here.
12501
12502 2004-11-17  Paul Eggert  <eggert@cs.ucla.edu>
12503
12504         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Check for buggy calloc
12505         implementations that mishandle size_t overflow.
12506
12507 2004-11-17  Paul Eggert  <eggert@cs.ucla.edu>
12508
12509         * lib/realloc.c (rpl_realloc): Call 'free' if n==0, since realloc
12510         might fail.  Problem reported by Yoann Vandoorselaere.
12511         * lib/calloc.c (rpl_calloc): Defend against buggy calloc
12512         implementations that mishandle size_t overflow.
12513
12514 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
12515
12516         * modules/canon-host (Depends-on): Add strdup.
12517
12518 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
12519
12520         * m4/canon-host.m4 (gl_CANON_HOST): Check for getaddrinfo.
12521
12522 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
12523
12524         * lib/canon-host.c: Include "strdup.h".
12525         (canon_host): Use getaddrinfo if available, so that IPv6 works.
12526         Use strdup instead of malloc/strcpy to duplicate strings.
12527
12528         * lib/human.h (LONGEST_HUMAN_READABLE): Add 1 for space before unit.
12529         (human_space_before_unit): New constant.
12530         * lib/human.c (human_readable): Support it.
12531
12532         * lib/xgetcwd.c: Include <limits.h>, for PATH_MAX.
12533         (xgetcwd): Set errno correctly when failing.
12534         Work around Solaris 9 bug: getcwd sets errno==ERANGE even though
12535         the failure is actually due to a PATH_MAX problem.
12536
12537         Further getopt changes to make it more likely that glibc will
12538         buy the changes back.
12539         * lib/getopt.c (POSIXLY_CORRECT): New constant.
12540         (getopt): Use it, so to preserve glibc semantic
12541         * lib/getopt1.c (getopt_long, getopt_long_only): Arg is char * const *
12542         when compiling for libc.
12543         * lib/getopt_.h (__getopt_argv_const): Bring it back.
12544         (getopt_long, getopt_long_only): Use it.
12545
12546         * lib/getopt.c (_getopt_initialize, _getopt_internal_r,
12547         _getopt_internal): New arg POSIXLY_CORRECT.  All callers changed.
12548         (getopt): Argv is now char * const *, as per standard.
12549         (_getopt_internal_r, _getopt_internal): Argv is now char **,
12550         not char *__getopt_argv_const *.
12551         * lib/getopt1.c (getopt_long, _getopt_long_r, getopt_long_only,
12552         _getopt_long_only_r): Likewise.
12553         * lib/getopt_.h (getopt, getopt_long, geopt_long_only): Likewise.
12554         * lib/getopt_int.h (_getopt_internal, _getopt_internal_r,
12555         _getopt_long_r, _getopt_long_only_r): Likewise.
12556         * lib/getopt_.h (__getopt_argv_const): Remove.
12557         (getopt): Argv is now char * const *, as per standard.
12558
12559         * lib/getdate.y (tORDINAL): New token.
12560         (day, relunit): Allow it for relative times.
12561         (relative_time_table): Use tORDINAL for ordinals.
12562
12563 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
12564
12565         * doc/getdate.texi (General date syntax): "next" is 1, not 2.
12566         Document that "second" isn't allowed as an ordinal number.
12567
12568 2004-11-16  Jim Meyering  <jim@meyering.net>
12569
12570         * modules/closeout (Depends-on): Add fpending.
12571
12572 2004-11-15  Jim Meyering  <jim@meyering.net>
12573
12574         * lib/closeout.c: Include "__fpending.h" once again.
12575         Include <stdbool.h>.
12576         (close_stdout): Don't fail just because stdout was closed initially,
12577         since some programs don't write to stdout in the normal course of
12578         operation (other than --version and --help), and we don't want this
12579         function to make e.g. `touch file >&-' fail.
12580         But do fail if it was closed and someone has tried to write to it.
12581         E.g., `printf foo >&-' must fail.
12582
12583 2004-11-13  Jim Meyering  <jim@meyering.net>
12584
12585         * m4/jm-macros.m4: Do require gl_FUNC_FPENDING.
12586
12587 2004-11-12  Simon Josefsson  <jas@extundo.com>
12588
12589         * config/srclist.txt: Add strtok_r.c, glibc bought our changes, but a
12590         small doc fix is still pending.
12591
12592 2004-11-11  Simon Josefsson  <jas@extundo.com>
12593
12594         * modules/strtok_r: New file.
12595
12596         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
12597         strtok_r.
12598
12599 2004-11-11  Simon Josefsson  <jas@extundo.com>
12600
12601         * m4/strtok_r.m4: New file.
12602
12603         * m4/getopt.m4: Replace opterr.
12604
12605 2004-11-11  Simon Josefsson  <jas@extundo.com>
12606
12607         * lib/strtok_r.h, strtok_r.c: New file.
12608
12609 2004-11-11  Paul Eggert  <eggert@cs.ucla.edu>
12610
12611         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): Define __GETOPT_PREFIX instead
12612         of replacing opterr, getopt, etc.  This should handle the
12613         powerpc-apple-darwin5.5 problem recently noted by Simon Josefsson.
12614
12615 2004-11-11  Paul Eggert  <eggert@cs.ucla.edu>
12616
12617         * lib/getopt_.h (__getopt_argv_const): New macro, to be used so that
12618         we can stop lying to compilers about the constness of argv when we
12619         are compiled outside glibc.
12620         (getopt, getopt_long, getopt_long_only): Use it.
12621         * lib/getopt.c (_getopt_initialize, _getopt_internal_r,
12622         _getopt_internal, getopt): Likewise.
12623         * lib/getopt1.c (getopt_long, _getopt_long_r, getopt_long_only,
12624         _getopt_long_only_r): Likewise.
12625         * lib/getopt_int.h (_getopt_internal, _getopt_internal_r,
12626         _getopt_long_r, _getopt_long_only_r): Likewise.
12627
12628         * lib/getopt_.h [defined __GETOPT_PREFIX && !defined __need_getopt]:
12629         Include <stdlib.h> and <stdio.h>, and <unistd.h> if available.
12630         Then rename getopt to __GETOPT_PREFIX##getopt, and so forth for
12631         the other external symbols.
12632         (getopt) [!defined __GNU_LIBRARY]: Use prototype, not old-style
12633         declaration, since the above renaming now works around collisions.
12634
12635 2004-11-11  Jim Meyering  <jim@meyering.net>
12636
12637         * lib/linebreak.c: Remove trailing blanks.
12638         * lib/alloca_.h: Likewise.
12639         * lib/acosl.c: Likewise.
12640         * lib/euidaccess.c: Likewise.
12641         * lib/allocsa.h: Likewise.
12642
12643 2004-11-10  Simon Josefsson  <jas@extundo.com>
12644
12645         * m4/getaddrinfo.m4: New file.
12646
12647 2004-11-10  Simon Josefsson  <jas@extundo.com>
12648
12649         * lib/getaddrinfo.h, getaddrinfo.c: New files.
12650
12651 2004-11-10  Simon Josefsson  <jas@extundo.com>
12652
12653         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
12654         getaddrinfo.
12655
12656         * modules/getaddrinfo: New file.
12657
12658 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
12659
12660         * m4/prereq.m4 (gl_PREREQ): Require gt_FUNC_SETENV.
12661
12662 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
12663
12664         * lib/mktime.c (SHR): New macro, which is a portable
12665         substitute for >> that should work even on Crays.
12666         (TIME_T_MIDPOINT, ydhms_diff, __mktime_internal): Use it.
12667         Problem reported by Mark D. Baushke in
12668         <http://lists.gnu.org/archive/html/bug-gnulib/2004-11/msg00071.html>.
12669         * lib/getdate.y (SHR): Likewise.
12670         (tm_diff): Use it.
12671         * lib/strftime.c (SHR): Likewise.
12672         (tm_diff): Use it.
12673         * lib/quotearg.c (struct quoting_options): Use unsigned int for
12674         quote_these_too, so that right shifts are well defined.  All uses
12675         changed.
12676
12677 2004-11-10  Jim Meyering  <jim@meyering.net>
12678
12679         Ensure that no close failure goes unreported.
12680         * lib/closeout.c (close_stdout): Always close stdout.  I.e., don't
12681         return early when it seems there's nothing to flush.
12682         Don't include __fpending.h.
12683
12684 2004-11-10  Jim Meyering  <jim@meyering.net>
12685
12686         * modules/closeout (Depends-on): Remove fpending.
12687
12688 2004-11-10  Jim Meyering  <jim@meyering.net>
12689
12690         * m4/jm-macros.m4 (gl_MACROS): Don't require gl_FUNC_FPENDING.
12691
12692 2004-11-09  Paul Eggert  <eggert@cs.ucla.edu>
12693
12694         * m4/strftime.m4 (_gl_STRFTIME_PREREQS): Remove.  Move its body to
12695         gl_FUNC_STRFTIME.
12696         (gl_FUNC_STRFTIME): Use AC_CHECK_FUNCS_ONCE and AC_CHECK_HEADERS_ONCE
12697         and AC_REQUIRE when possible, to avoid duplicate checks.
12698         Check for <wchar.h>.
12699
12700 2004-11-09  Paul Eggert  <eggert@cs.ucla.edu>
12701
12702         * lib/strftime.c (DO_MULTIBYTE): Check for wchar.h, too.
12703
12704 2004-11-09  Bruno Haible  <bruno@clisp.org>
12705
12706         * m4/sockpfaf.m4: New file.
12707
12708 2004-11-05  Bruno Haible  <bruno@clisp.org>
12709
12710         * lib/readlink.c: Include stddef.h, needed for size_t on Woe32.
12711         Reported by Mark D. Baushke <mdb@cvshome.org>.
12712
12713 2004-11-04  Bruno Haible  <bruno@clisp.org>
12714
12715         2004-09-11  Bruno Haible  <bruno@clisp.org>
12716                 * allocsa.valgrind: New file.
12717         2004-02-06  Bruno Haible  <bruno@clisp.org>
12718                 * allocsa.h (sa_alignof): Define differently with HP-UX cc, to
12719                 avoid a bug of this cc on HP-UX 10.20 dealing with enums.
12720                 Reported by Christopher Seip <chris.seip@hp.com>.
12721
12722 2004-11-04  Bruno Haible  <bruno@clisp.org>
12723
12724         * modules/allocsa (Files): Add lib/allocsa.valgrind.
12725         (Makefile.am): Distribute it.
12726
12727 2004-11-03  Paul Eggert  <eggert@cs.ucla.edu>
12728
12729         * lib/xreadlink.c (xreadlink): AIX and HP-UX readlink return -1
12730         with errno == ERANGE if the buffer is too small.
12731         Problem reported by Mark D. Baushke.
12732
12733 2004-11-03  Albert Chin <china@thewrittenword.com>
12734             Paul Eggert  <eggert@cs.ucla.edu>
12735
12736         * m4/uint32_t.m4 (gl_AC_TYPE_UINT32_T): When determining uint32_t
12737         equivalent, substitute $ac_type for equivalent type rather than
12738         blindly using uint32_t *always* which won't work if uint32_t is not
12739         available.  Define _UINT32_T to work around typedef of uint32_t if
12740         <sys/sched.h>, <pthread.h>, or <semaphore.h> used on Solaris
12741         2.5.1.
12742
12743 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
12744
12745         * m4/jm-macros.m4: Sync from coreutils.
12746         (gl_MACROS): Check for mbrlen, for pathchk.
12747         (gl_CHECK_ALL_TYPES): Require AC_TYPE_MBSTATE_T, for pathchk.
12748
12749 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
12750
12751         * lib/xreadlink.c (MAXSIZE): New macro.
12752         (xreadlink): Use it instead of SSIZE_MAX.  Ensure initial buffer
12753         size does not exceed MAXSIZE.  Avoid cast.
12754         As suggested by Mark D. Baushke in
12755         <http://lists.gnu.org/archive/html/bug-gnulib/2004-11/msg00009.html>,
12756         if readlink fails with buffer size just under MAXSIZE, try again
12757         with MAXSIZE.
12758
12759 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
12760
12761         * config/srclist.txt: Add mktime.c; glibc bought all our changes.
12762
12763 2004-11-02  Derek R. Price  <derek@ximbiot.com>
12764         and  Paul Eggert  <eggert@cs.ucla.edu>
12765
12766         * lib/getdate.y [!TEST]: Include <stdio.h>, since we use sprintf now.
12767         (get_date): Overparenthesize to avoid GCC warning.
12768
12769 2004-11-02  Bruno Haible  <bruno@clisp.org>
12770
12771         * m4/setenv.m4 (gt_FUNC_SETENV): Define VOID_UNSETENV if unsetenv()
12772         returns void.
12773
12774 2004-11-02  Bruno Haible  <bruno@clisp.org>
12775
12776         * lib/setenv.h (unsetenv): Define as a macro if the system's unsetenv()
12777         function returns void.
12778
12779 2004-11-01  Paul Eggert  <eggert@cs.ucla.edu>
12780
12781         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for declarations of
12782         fflush_unlocked, flockfile, funlockfile, funlockfile,
12783         fputs_unlocked, putc_unlocked.
12784
12785 2004-11-01  Paul Eggert  <eggert@cs.ucla.edu>
12786
12787         * lib/getpass.c (fflush_unlocked, flockfile, funlockfile)
12788         (funlockfile, fputs_unlocked, putc_unlocked): Don't define if
12789         already declared.
12790
12791 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
12792
12793         * modules/getdate (Files): Add doc/getdate.texi.
12794         (Depends-on): Add setenv, xalloc.
12795
12796 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
12797
12798         * lib/getdate.y: Add support for TZ="foo" within a date string.
12799         Fix some bugs near time_t boundaries.  Reject dates with
12800         out-of-range components, e.g., "Sept 31".
12801         Include <stdlib.h>, "setenv.h", "xalloc.h".
12802         (ISDIGIT_LOCALE): Remove; unused.
12803         Note that the TZ and time functions used here are not reentrant.
12804         (mktime_ok, get_tz): New functions.
12805         (TZBUFSIZE): New constant.
12806         (get_date): Parse leading TZ="foo".  Reject out-of-range components;.
12807         This requires that we sometimes generate our own TZ="XXX..." setting.
12808
12809 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
12810
12811         * doc/getdate.texi: New file, from coreutils with modifications for
12812         the new TZ parsing.
12813
12814 2004-10-27  Derek R. Price  <derek@ximbiot.com>
12815
12816         * lib/mktime.c (not_equal_tm): Remove redundant check.
12817
12818 2004-10-24  Paul Eggert  <eggert@cs.ucla.edu>
12819
12820         * modules/regex (lib_SOURCES): Add regex.c.
12821         Reported by James Youngman in
12822         <http://lists.gnu.org/archive/html/bug-gnulib/2004-10/msg00199.html>.
12823
12824 2004-10-24  Paul Eggert  <eggert@cs.ucla.edu>
12825
12826         * lib/getdate.y: Use Bison 1.875 features, and some minor
12827         code cleanups.  This change does not affect semantics.
12828         Don't include <stdlib.h>; no longer needed.
12829         Don't include unlocked-io.h; only the "#if TEST" code uses
12830         stdio, and performance isn't crucial there.
12831         (PC, YYLEX_PARAM, YYPARSE_PARAM): Remove; replaced by
12832         Bison 1.875 features as described below.
12833         All uses of "PC." replaced by "pc->".
12834         (YYSTYPE): Add a forward declaration.
12835         (yylex, yyerror): Use full prototypes in forward decls.
12836         Use "%pure-parser" rather than obsolescent "%pure_parser".
12837         Use %parse-param and %lex-param instead of obsolescent
12838         YYPARSE_PARAM and YYLEX_PARAM.
12839         (meridian_table, month_and_day_table, time_units_table,
12840         relative_time_table, time_zone_table, military_table,
12841         lookup_zone, lookup_word, get_date):
12842         Use NULL instead of 0 where appropriate.
12843         (to_hour): Avoid abort (), to avoid a dependency on
12844         stdlib.h.
12845         (yyerror, yylex): Now accepts parser_control * arg.
12846         (main) [TEST]: Use '\0' rather than 0 for char.
12847
12848 2004-10-22  Paul Eggert  <eggert@cs.ucla.edu>
12849
12850         * m4/getpagesize.m4 (gl_GETPAGESIZE): Check for <sys/param.h>.
12851
12852 2004-10-22  Paul Eggert  <eggert@cs.ucla.edu>
12853
12854         * lib/getpagesize.c (getpagesize): Don't assume <sys/param.h> exists.
12855         It's now the caller's responsibility to handle the case where
12856         !HAVE_GETPAGESIZE && !defined getpagesize.
12857
12858         * lib/mktime.c (leapyear): Arg is long int, not int.
12859
12860 2004-10-18  Paul Eggert  <eggert@cs.ucla.edu>
12861
12862         * lib/argp-fs-xinl.c, argp-xinl.c: Update from glibc.
12863
12864 2004-10-17  Paul Eggert  <eggert@cs.ucla.edu>
12865
12866         * gnulib-tool (func_emit_lib_Makefile_am): Fix typo: a $ was
12867         missing.  Problem reported by James Youngman.
12868
12869 2004-10-16  Simon Josefsson  <jas@extundo.com>
12870
12871         * gnulib-tool: Fix comments.  Fix parse problem.
12872         (func_emit_lib_Makefile_am): Don't hard code a in libgl_a_SOURCES.
12873
12874 2004-10-15  Paul Eggert  <eggert@cs.ucla.edu>
12875
12876         * m4/getopt.m4 (gl_GETOPT): Detect and reject the incompatible BSD
12877         implementation of getopt_long.  Problem reported by Alexander Taler in:
12878         http://lists.gnu.org/archive/html/bug-gnulib/2004-10/msg00103.html
12879
12880 2004-10-15  Bruno Haible  <bruno@clisp.org>
12881
12882         * gnulib-tool: Untabify. Initialize supplied_libname.
12883         (func_usage): More homogenous output.
12884         (func_modules_transitive_closure, func_modules_to_filelist,
12885         func_emit_lib_Makefile_am): New functions.
12886         (func_import): New function, extracted from big case statement. Use
12887         func_get_license, func_modules_transitive_closure,
12888         func_modules_to_filelist, func_emit_lib_Makefile_am. Initialize
12889         opt_lgpl. Don't use test -a, as it's not portable.
12890         (func_create_testdir): Use func_modules_transitive_closure,
12891         func_modules_to_filelist, func_emit_lib_Makefile_am.
12892
12893 2004-10-15  Bruno Haible  <bruno@clisp.org>
12894
12895         * gnulib-tool (func_import): Let gl_INIT define LTALLOCA when needed.
12896
12897 2004-10-15  Bruno Haible  <bruno@clisp.org>
12898
12899         * gnulib-tool (func_emit_lib_Makefile_am): Add markers to separate
12900         the portions belonging to each module.
12901         Suggested by Derek Robert Price <derek@ximbiot.com>.
12902
12903 2004-10-12  Simon Josefsson  <jas@extundo.com>
12904
12905         * lib/getpass.c (fflush_unlocked, flockfile, funlockfile)
12906         (fputs_unlocked, putc_unlocked) [!_LIBCS && !USE_UNLOCKED_IO]: Map
12907         to real functions.
12908
12909 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
12910
12911         * modules/vsnprintf: New file.
12912
12913 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
12914
12915         * m4/vsnprintf.m4: New file.
12916
12917 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
12918
12919         * lib/vsnprintf.h: New file.
12920         * lib/vsnprintf.c: New file.
12921
12922 2004-10-11  Bruno Haible  <bruno@clisp.org>
12923
12924         * MODULES.html.sh (Support for systems lacking ISO C 99): Add
12925         vsnprintf.
12926
12927 2004-10-10  Paul Eggert  <eggert@cs.ucla.edu>
12928
12929         * config/srclistvars.sh: Add GNUSTANDARDS (for eggert only).
12930
12931 2004-10-07  Bruno Haible  <bruno@clisp.org>
12932
12933         * lib/snprintf.c (snprintf): Avoid a memory allocation if the result
12934         fits into the provided buffer.
12935
12936 2004-10-06  Paul Eggert  <eggert@cs.ucla.edu>
12937
12938         * lib/diacrit.c, diacrit.h: Add GPL notice.
12939
12940         * lib/atanl.c, logl.c: Add GPL notice, to match glibc's added LGPL
12941         notice.
12942         * lib/atanl.c (atanl): Keep the code as similar to glibc as possible.
12943         * lib/logl.c (logl): Keep the code as similar to glibc as possible.
12944         This avoids a potential constant-folding bug.
12945
12946 2004-10-05  Bruno Haible  <bruno@clisp.org>
12947
12948         * m4/strsep.m4 (gl_FUNC_STRSEP): Require AC_GNU_SOURCE. Don't check
12949         for the declaration of strsep.
12950
12951 2004-10-05  Bruno Haible  <bruno@clisp.org>
12952
12953         * lib/strsep.h: Don't declare strsep() if HAVE_STRSEP.
12954
12955 2004-10-04  Simon Josefsson  <jas@extundo.com>
12956
12957         * modules/memmem: New file.
12958         * tests/test-memmem.c: New file.
12959         * MODULES.html.sh (Extra functions based on ANSI C 89): Add memmem.
12960
12961 2004-10-04  Simon Josefsson  <jas@extundo.com>
12962
12963         * m4/memmem.m4: New file.
12964
12965 2004-10-04  Simon Josefsson  <jas@extundo.com>
12966
12967         * lib/memmem.h: New file.
12968         * lib/memmem.c: New file, taken from glibc.
12969
12970 2004-10-04  Simon Josefsson  <jas@extundo.com>
12971
12972         * lib/error.c, md5.c, regex.c: Use '#if USE_UNLOCKED_IO' instead of
12973         '#ifdef USE_UNLOCKED_IO'.
12974
12975 2004-10-04  Simon Josefsson  <jas@extundo.com>
12976
12977         * config/srclist.txt: Add memmem from glibc.
12978
12979 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
12980
12981         * modules/xalloc (Files, Makefile.am): Remove xstrdup.c.
12982
12983         * modules/argmatch, modules/argp, modules/closeout, modules/error,
12984         modules/exclude, modules/getdate, modules/getline,
12985         modules/getndelim2, modules/getpass, modules/getpass-gnu,
12986         modules/getusershell, modules/linebuffer, modules/md5,
12987         modules/mountlist, modules/posixtm, modules/readtokens,
12988         modules/readutmp, modules/regex, modules/sha1,
12989         modules/version-etc, modules/yesno:
12990         Remove dependency on unlocked-io.
12991
12992 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
12993
12994         * m4/xalloc.m4 (gl_PREREQ_XSTRDUP): Remove.  All uses removed.
12995
12996         * m4/unlocked-io.m4: Add copyright notice.
12997         (gl_FUNC_GLIBC_UNLOCKED_IO): Define USE_UNLOCKED_IO.
12998
12999 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
13000
13001         * lib/xalloc.h (xmemdup): Renamed from xclone.  All uses changed.
13002         * lib/xmalloc.c (xmemdup): Likewise.
13003         * lib/xalloc.h (CCLONE, CLONE, NEW, XCALLOC, XMALLOC, XREALLOC,
13004         XFREE): Remove these long-obsolescent macros.
13005         * lib/xmalloc.c (xstrdup): Implementation moved here from xstrdup.c
13006         * lib/xstrdup.c: Remove.
13007
13008         * lib/regex.c (re_comp): Cast gettext return value to char *,
13009         Problem reported by Martin Neitzel via Mark D. Baushke.
13010
13011 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
13012
13013         * lib/argmatch.c, closeout.c, error.c, exclude.c, getdate.y,
13014         getndelim2.c, getpass.c, getusershell.c, linebuffer.c,
13015         md5.c, mountlist.c, posixtm.c, readtokens.c, readutmp.c,
13016         regex.c, sha1.c, version-etc.c, yesno.c:
13017         Include "unlocked-io.h" only if USE_UNLOCKED_IO.
13018         * lib/unlocked-io.h: Don't worry about USE_UNLOCKED_IO; that's now
13019         the includer's responsibility.
13020
13021         Sync from coreutils.
13022
13023         * lib/modechange.c (mode_compile): Don't decrement a pointer that
13024         points to the start of a string, as the C Standard says the
13025         resulting behavior is undefined.
13026
13027         * lib/backupfile.h (enum backuptype): Rename none -> no_backups,
13028         simple -> simple_backups, numbered_existing ->
13029         numbered_existing_backups, numbered -> numbered_backups
13030         to avoid shadowing problems.  All uses changed.
13031         * lib/argmatch.c (enum backuptype) [defined TEST]: Likewise.
13032         * lib/backupfile.c (check_extension, numbered_backup):
13033         Rename locals to avoid shadowing 'basename'.
13034         * lib/backupfile.h (VALID_BACKUP_TYPE): Don't evaluate arg more than
13035         once.
13036
13037         * lib/.cppi-disable: Add getopt_.h, getopt_int.h.
13038         * lib/.cvsignore: Add getopt.h.
13039
13040 2004-10-04  Bruno Haible  <bruno@clisp.org>
13041
13042         * modules/README: New file.
13043         * gnulib-tool (func_all_modules, func_verify_module): modules/README is
13044         not a module.
13045
13046 2004-10-02  Jim Meyering  <jim@meyering.net>
13047
13048         * lib/dirfd.h, getpagesize.h: Add copyright notice.
13049
13050 2004-10-01  Yoann Vandoorselaere <yoann@prelude-ids.org>
13051
13052         * modules/strsep: New file.
13053
13054 2004-10-01  Yoann Vandoorselaere <yoann@prelude-ids.org>
13055
13056         * m4/strsep.m4: New file.
13057
13058 2004-10-01  Yoann Vandoorselaere <yoann@prelude-ids.org>
13059
13060         * lib/strsep.h: New file.
13061         * lib/strsep.c: New file.
13062
13063 2004-10-01  Simon Josefsson  <jas@extundo.com>
13064
13065         * lib/snprintf.c (snprintf): Handle size==0.
13066
13067 2004-10-01  Simon Josefsson  <jas@extundo.com>
13068             Bruno Haible  <bruno@clisp.org>
13069
13070         * lib/snprintf.c: Include <stdarg.h>, <stdlib.h>, <string.h>.
13071         (snprintf): Declare 'args'.
13072
13073 2004-10-01  Paul Eggert  <eggert@cs.ucla.edu>
13074
13075         * lib/snprintf.c: Remove comments as to why each header is needed.
13076
13077 2004-10-01  Bruno Haible  <bruno@clisp.org>
13078
13079         * MODULES.html.sh: Add strsep.
13080
13081 2004-09-30  Simon Josefsson  <jas@extundo.com>
13082
13083         * modules/snprintf: New file.
13084
13085 2004-09-30  Simon Josefsson  <jas@extundo.com>
13086
13087         * m4/snprintf.m4: New file.
13088
13089 2004-09-30  Simon Josefsson  <jas@extundo.com>
13090
13091         * lib/snprintf.h, snprintf.c: New files.
13092
13093 2004-09-30  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
13094
13095         * lib/argp-help.c (canon_doc_option): Fixed coredump if *name==NULL
13096         (hol_entry_help): Never translate an empty string.
13097         Do not translate option tag (opt->name) if OPTION_NO_TRANS is set
13098         * lib/argp.h (OPTION_NO_TRANS): New option.
13099
13100 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
13101
13102         * modules/argp (Maintainer): Replace Simon Josefsson
13103         by Sergey Poznyakoff.
13104
13105 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
13106
13107         * config/srclist.txt: Comment-out argp/argp.h, until we get the argp
13108         changes merged back into glibc.
13109
13110 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
13111
13112         * MODULES.html.sh (Support for systems lacking ISO C 99): Add snprintf.
13113
13114 2004-09-29  Oskar Liljeblad  <oskar@osk.mine.nu>
13115
13116         * lib/xvasprintf.c: Include xalloc.h.
13117         (xvasprintf): Use xalloc_die, not xmalloc_die.
13118
13119 2004-09-29  Bruno Haible  <bruno@clisp.org>
13120
13121         * modules/alloca-opt: New file, derived from modules/alloca.
13122         * modules/allocsa: Depend on alloca-opt instead of alloca.
13123         * modules/setenv: Likewise.
13124         * modules/vasnprintf: Likewise.
13125         * MODULES.html.sh: Add alloca-opt.
13126
13127 2004-09-28  Simon Josefsson  <jas@extundo.com>
13128
13129         * gnulib-tool: New parameter --lgpl, to asseert that modules are
13130         LGPL, and to replace license template from GPL to LGPL.
13131
13132 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
13133
13134         * modules/dummy: Change license to LGPL.
13135
13136 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
13137
13138         * lib/dummy.c: Change copyright notice to FSF, and license to GPL.
13139
13140 2004-09-24  Simon Josefsson  <jas@extundo.com>
13141
13142         * modules/minmax (License): Change from GPL to LGPL.
13143
13144 2004-09-23  Simon Josefsson  <jas@extundo.com>
13145
13146         * gnulib-tool (--import): Typo.
13147
13148 2004-09-23  Simon Josefsson  <jas@extundo.com>
13149
13150         * gnulib-tool (--import): Make sure *.m4 end up in m4/ by default.
13151
13152 2004-09-22  Bruno Haible  <bruno@clisp.org>
13153
13154         * modules/*: Add 'License' field.
13155         * gnulib-tool: Accept --extract-license option.
13156         (func_get_license): New function.
13157
13158 2004-09-21  Bruno Haible  <bruno@clisp.org>
13159
13160         * modules/vasnprintf (Files): Add m4/stdint_h.m4, m4/inttypes_h.m4.
13161         Reported by Simon Josefsson.
13162
13163 2004-09-20  Paul Eggert  <eggert@cs.ucla.edu>
13164
13165         * modules/inttostr (Files): Add m4/longlong.m4, since it uses
13166         gl_AC_TYPE_LONG_LONG.
13167
13168 2004-09-20  Paul Eggert  <eggert@cs.ucla.edu>
13169
13170         * config/srclist.txt: Add getsubopt.c, since libc bought our changes.
13171
13172 2004-09-18  Simon Josefsson  <jas@extundo.com>
13173         and  Paul Eggert  <eggert@cs.ucla.edu>
13174
13175         * gnulib-tool: Replace various ad-hoc automake/autoconf/aclocal
13176         calls with autoreconf.  Define GL_LIB.
13177
13178 2004-09-14  Karl Berry  <karl@gnu.org>
13179
13180         * config/srclist.txt: unsync setenv.c, sigh.
13181
13182 2004-09-13  Paul Eggert  <eggert@cs.ucla.edu>
13183
13184         * lib/argp-pvh.c (argp_program_version_hook): Provide initial value.
13185         Problem reported by Bruno Haible in:
13186         http://lists.gnu.org/archive/html/bug-tar/2004-09/msg00023.html
13187
13188 2004-09-13  Paul Eggert  <eggert@cs.ucla.edu>
13189
13190         * config/srclist.txt: Comment out argp-pvh.c.
13191
13192 2004-09-11  Paul Eggert  <eggert@cs.ucla.edu>
13193
13194         * lib/mempcpy.h: Wrap the entire include file inside #ifndef mempcpy,
13195         in case some system header has #define'd it.  Problem reported by
13196         Soeren D. Schulze in
13197         <http://lists.gnu.org/archive/html/bug-gnulib/2004-09/msg00017.html>.
13198
13199 2004-09-09  Karl Berry  <karl@gnu.org>
13200
13201         * regex.[ch]: delete from the root.  These were supposed to be
13202                 synced with emacs cvs, but this has not happened for about
13203                 a year, and anyway nothing else uses emacs regex.[ch].
13204                 bug-gnulib mail from Jeff Bailey, 9 Sep 2004 15:49:24 -0700.
13205                 lib/regex[.ch] is untouched.
13206
13207 2004-09-09  Bruno Haible  <bruno@clisp.org>
13208
13209         * modules/vasnprintf (Files): Add m4/eoverflow.m4.
13210
13211 2004-09-09  Bruno Haible  <bruno@clisp.org>
13212
13213         * m4/eoverflow.m4: New file, taken from GNU libiconv eilseq.m4 with
13214         modifications.
13215         * m4/vasnprintf.m4 (gl_FUNC_VASNPRINTF): Require gl_EOVERFLOW.
13216
13217 2004-09-08  Oskar Liljeblad  <oskar@osk.mine.nu>
13218
13219         * modules/xvasprintf: New file.
13220         * MODULES.html.sh (Extra functions based on ANSI C 89): Add vasprintf.
13221
13222 2004-09-08  Oskar Liljeblad  <oskar@osk.mine.nu>
13223
13224         * lib/xvasprintf.h: New file.
13225         * lib/xvasprintf.c: New file.
13226         * lib/xasprintf.c: New file.
13227
13228 2004-09-08  Bruno Haible  <bruno@clisp.org>
13229
13230         * m4/stdint.m4: New file, taken from GNU clisp with modifications.
13231
13232 2004-09-08  Bruno Haible  <bruno@clisp.org>
13233
13234         * lib/vasnprintf.c (VASNPRINTF): Signal EOVERFLOW if the resulting
13235         length is > INT_MAX.
13236         * lib/vasprintf.c (vasprintf): Don't test for length > INT_MAX any
13237         more.
13238
13239 2004-09-08  Bruno Haible  <bruno@clisp.org>
13240
13241         * lib/stdint_.h: New file, taken from GNU clisp.
13242
13243 2004-09-08  Bruno Haible  <bruno@clisp.org>
13244             Oskar Liljeblad  <oskar@osk.mine.nu>
13245
13246         * modules/stdint: New file.
13247         * MODULES.html.sh (Support for systems lacking ISO C 99): Add stdint.
13248
13249 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
13250
13251         Import from coreutils.
13252         * lib/userspec.c: Don't use <alloca.h>, so that we don't use alloca on
13253         strings on unbounded length.  alloca's performance benefits aren't
13254         that important here.
13255         (V_STRDUP): Remove.
13256         (parse_with_separator): New function, with most of the internals
13257         of the old parse_user_spec.  Allow user to omit both user and group,
13258         for compatibility with FreeBSD.
13259         Clone only the user name, not the entire spec.
13260         Do not set *uid, *gid unless entirely successful.
13261         Avoid memory leak in some failing cases.
13262         Fix regression for USER.GROUP reported by Dmitry V. Levin in
13263         <http://lists.gnu.org/archive/html/bug-coreutils/2004-08/msg00102.html>
13264         (parse_user_spec): Rewrite to use parse_with_separator.
13265
13266 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
13267
13268         * modules/userspec: Don't depend on alloca.
13269
13270 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
13271
13272         * m4/userspec.m4 (gl_USERSPEC): Don't require AC_FUNC_ALLOCA.
13273
13274 2004-08-17  Paul Eggert  <eggert@cs.ucla.edu>
13275
13276         * MODULES.html.sh: Add xalloc-die, c-strtod, c-strtold, raise,
13277         readtokens0, getcwd, fcntl-safer, canonicalize, cycle-check,
13278         utimecmp, utimens, xnanosleep.  Rename sha to sha1.
13279
13280 2004-08-16  Simon Josefsson  <jas@extundo.com>
13281
13282         * gnulib-tool: Use sed instead of autoconf --trace, inspired by
13283         libtoolize behaviour by "Gary V. Vaughan" <gary@gnu.org>.
13284         Add --dry-run for --import.
13285         Let user provided command line parameters override configure.ac
13286         settings.
13287
13288 2004-08-12  Simon Josefsson  <jas@extundo.com>
13289
13290         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): New macro,
13291         as discussed with Paul Eggert in threads rooted at
13292         <http://lists.gnu.org/archive/html/bug-gnulib/2004-06/msg00039.html>
13293         and
13294         <http://lists.gnu.org/archive/html/bug-gnulib/2004-07/msg00001.html>.
13295         Before, the test was empty, and relied on ELIDE_CODE in source
13296         code.)
13297         (gl_PREREQ_GETOPT): New macro.
13298         (gl_GETOPT): Use them.
13299
13300 2004-08-12  Simon Josefsson  <jas@extundo.com>
13301
13302         * lib/getopt.c, getopt1.c: Remove ELIDE_CODE hack.
13303         * lib/getopt_.h: Renamed from getopt.h.
13304
13305 2004-08-12  Simon Josefsson  <jas@extundo.com>
13306
13307         * gnulib-tool: Add --source-base, --m4-base, --libtool options.
13308         Change default library name from libfoo to libgnu.
13309         Now, if you have a configure.ac that says:
13310                 gl_SOURCE_BASE(gl)
13311                 gl_M4_BASE(gl/m4)
13312                 gl_MODULES(error getopt etcetera)
13313                 gl_INIT
13314         you can import all you need by running:
13315                 ../gnulib/gnulib-tool --import
13316
13317         * modules/getopt (Files): Rename getopt.h to getopt_.h.
13318         (Makefile.am): Rewrite, use logic from argz.
13319         (Include): Use <getopt.h> instead of "getopt.h".
13320
13321 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
13322
13323         * modules/argp (Files): Add m4/unlocked-io.m4.
13324         (Depends-on): Add extensions.
13325
13326 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
13327
13328         * m4/argp.m4 (gl_ARGP): Do not check for argp.h or argp_parse; nobody
13329         uses HAVE_ARGP_H or HAVE_ARGP_PARSE.
13330         Require gl_FUNC_GLIBC_UNLOCKED_IO, gl_USE_SYSTEM_EXTENSIONS.
13331         Check for program_invocation_name, program_invocation_short_name,
13332         flockfile, funlockfile, features.h, _getopt_long_only_r.
13333
13334 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
13335
13336         * lib/argp-help.c, argp-parse.c: Use "gettext.h" instead of
13337         its complicated substitute.
13338         * lib/argp-help.c: Include <errno.h>, for program_invocation_short_name
13339         and program_invocation_name.
13340         (__argp_basename) [!_LIBC]: Remove; the only use was
13341         replaced by its body.
13342         (__argp_short_program_name): Change condition from
13343         !defined __argp_short_program_name to
13344         ! (defined _LIBC || HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME),
13345         to match argp-namefrob.h.
13346         (__argp_failure): Don't assume strerror_r returns char *.
13347         * lib/argp-parse.c (N_): Define unconditionally.
13348         (argp_default_options): Fill out initializers with 0 to avoid
13349         gcc warnings.
13350
13351 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
13352
13353         * config/srclist.txt: Remove getopt.c, getopt.h (renamed to getopt_.h),
13354         getopt1.c.
13355
13356 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
13357
13358         Merge from coreutils.
13359
13360         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for wmemchr and wmemcpy.
13361
13362         * m4/obstack.m4 (gl_PREREQ_OBSTACK): Require
13363         gl_AC_HEADER_INTTYPES_H, gl_AC_HEADER_STDINT_H, gl_AC_TYPE_UINTMAX_T.
13364
13365 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
13366
13367         Merge from coreutils.
13368
13369         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Don't set to 1 if missing
13370         wmemchr or wmemcpy.  Problem reported by Robert Dahlem
13371         for Reliant Unix 5.43.
13372
13373         * lib/obstack.c: Include <inttypes.h> and <stdint.h> if available.
13374         (union fooround): Use uintmax_t, not long int.
13375         The rest is a merge from libc:
13376         [defined _LIBC]: Include <shlib-compat.h>.
13377         (_obstack) [defined _LIBC]: Remove after 2.3.4.
13378
13379         * lib/settime.c (settime): Recode to avoid warning with
13380         Sun Forte C 6U2.
13381
13382         * lib/strverscmp.c: Convert to UTF-8.
13383
13384 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
13385
13386         * modules/obstack (Files): Add m4/inttypes_h.m4, m4/stdint_h.m4,
13387         m4/uintmax_t.m4.
13388
13389 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
13390
13391         * modules/xalloc-die: New file.
13392         * modules/xalloc: Remove dependencies on error, gettext, exitfail.
13393
13394         * modules/md5 (Files): Add m4/uint32_t.m4.
13395         * modules/sha1: Renamed from modules/sha.
13396         (Files):
13397         Rename lib/sha.h to lib/sha1.h.
13398         Rename lib/sha.c to lib/sha1.c.
13399         Rename m4/sha.m4 to m4/sha1.m4.
13400         (lib_SOURCES): Likewise.
13401         (configure.ac): Rename gl_SHA to gl_SHA1.
13402         (Include): sha.h -> sha1.h.
13403
13404 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
13405
13406         * m4/uint32_t.m4, uintptr_t.m4: New files.
13407         * m4/sha1.m4: Renamed from sha.m4.
13408         (gl_SHA1): Renamed from gl_SHA.  All uses changed.
13409
13410 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
13411
13412         * lib/obstack.h (obstack_empty_p):
13413         Don't assume that chunk->contents is suitably aligned.
13414         * lib/obstack.c (_obstack_begin, _obstack_begin_1, _obstack_newchunk):
13415         Likewise. Problem reported by Benno in
13416         <http://sources.redhat.com/ml/libc-alpha/2004-08/msg00055.html>.
13417
13418         * lib/chown.c (rpl_chown): Work even if the file is writeable but not
13419         readable.  This could be improved further but it'd take some work.
13420
13421 2004-08-08  Simon Josefsson  <jas@extundo.com>
13422
13423         * modules/xgethostname (Depends-on): Remove exit and error (not
13424         used).
13425
13426         * modules/getpass-gnu: Add getpass.h.
13427         (Depends-on): Add stdbool.
13428         * modules/getpass: Add getpass.h.
13429
13430 2004-08-08  Simon Josefsson  <jas@extundo.com>
13431
13432         * m4/getpass.m4 (gl_FUNC_GETPASS, gl_FUNC_GETPASS_GNU):
13433         Check getpass declaration.
13434
13435 2004-08-08  Simon Josefsson  <jas@extundo.com>
13436
13437         * lib/xgethostname.c: Don't include error.h (not used).
13438
13439         * lib/getpass.h: Add.
13440         * lib/getpass.c: Include getpass.h first.
13441
13442 2004-08-08  Paul Eggert  <eggert@cs.ucla.edu>
13443
13444         * lib/xalloc-die.c: New files.
13445         * lib/xalloc.h (xalloc_fail_func, xalloc_msg_memory_exhausted): Remove.
13446         All uses removed.
13447         * lib/xmalloc.c (xalloc_fail_func, xalloc_msg_memory_exhausted):
13448         Likewise. Move inclusions of gettext.h, error.h, exitfail.h to
13449         xalloc-die.c.
13450         (_, N_, xalloc_die): Move to xalloc-die.c.
13451         * lib/userspec.c (parse_user_spaec): Use xstrdup rather than strdup,
13452         so that we needn't mess with xalloc_msg_memory_exhausted.
13453
13454         * lib/sha1.h: Renamed from sha.h.
13455         (SHA1_H): Renamed from _SHA_H.
13456         (sha1_ctx): Renamed from sha_ctx.
13457         (sha1_init_ctx): Renamed from sha_init_ctx.
13458         (sha1_process_block): Renamed from sha_process_block.
13459         (sha1_process_bytes): Renamed from sha_process_bytes.
13460         (sha1_finish_ctx): Renamed from sha_finish_ctx.
13461         (sha1_read_ctx): Renamed from sha_read_ctx.
13462         (sha1_stream): Renamed from sha_stream.
13463         (sha1_buffer): Renamed from sha_buffer.
13464         * lib/sha1.c: Likewise; renamed from sha.c.
13465         Do not include <sys/types.h>.
13466         Include <stddef.h> rather than <stdlib.h>.
13467
13468 2004-08-08  Bruno Haible  <bruno@clisp.org>
13469
13470         * lib/pathname.h (FILE_SYSTEM_PREFIX_LEN): Renamed from
13471         FILESYSTEM_PREFIX_LEN.
13472         * lib/progreloc.c: Likewise.
13473         * lib/concatpath.c (concatenated_pathname): Use FILE_SYSTEM_PREFIX_LEN.
13474
13475 2004-08-06  Simon Josefsson  <jas@extundo.com>
13476
13477         * modules/progname (Depends-on): Don't depend on stdbool.
13478
13479 2004-08-06  Simon Josefsson  <jas@extundo.com>
13480
13481         * modules/getsubopt: New file.
13482         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
13483         getsubopt.
13484
13485 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
13486
13487         More merge from coreutils.
13488
13489         * m4/utimens.m4, utimecmp.m4: New files.
13490         * m4/backupfile.m4, euidacces.m4, acl.m4, afs.m4, calloc.m4, dirfd.m4,
13491         fsusage.m4, jm-macros.m4, ls-mntd-fs.m4, md5.m4, mountlist.m4,
13492         prereq.m4, sha.m4: Import changes from coreutils.
13493
13494 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
13495
13496         More merge from coreutils.
13497         * modules/raise, modules/readtokens0, modules/utimens,
13498         modules/utimecmp, module/xnanosleep: New files.
13499         * modules/strftime: Add lib/strftime.h.
13500         Change include from <time.h> to "strftime.h".
13501         * modules/yesno: Add lib/yesno.h.
13502         * modules/backupfile: Remove lib/addext.c.
13503         * modules/euidaccess: Add stat-macros.h.
13504         * modules/canonicalize, modules/euidaccess,
13505         modules/filemode, modules/lchown, modules/makepath,
13506         modules/rmdir, modules/stat: Likewise.
13507
13508 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
13509
13510         Merge from tar.
13511         * lib/argp-help.c (make_hol, hol_append): Don't assume that
13512         SIZE_MAX is a valid preprocessor constant.
13513         (__argp_basename): Change from "#ifndef _LIBC"
13514         to "#ifndef __argp_short_program_name", so that
13515         we don't compile these functions for tar.
13516
13517         More merges from coreutils.
13518         * lib/raise.c, lib/readtokens0.h, lib/readtokens0.c, lib/strftime.h,
13519         lib/utimens.h, lib/utimens.c, lib/utimecmp.h, lib/utimecmp.c,
13520         lib/xnanosleep.h, lib/xnanosleep.c, lib/yesno.h: New files.
13521         * lib/addext.c: Remove; no longer needed.
13522         * lib/yesno.c, lib/argmatch.h, lib/argmatch.c, lib/backupfile.h,
13523         lib/backupfile.c, lib/euidaccess.c, lib/filemode.c, lib/closeout.c,
13524         lib/dup2.c, lib/exclude.c, lib/fileblocks.c, lib/filemode.c,
13525         lib/fnmatch.c, lib/fnmtahc_loop.c, lib/fopen-safer.c, lib/fsusage.c,
13526         lib/fsusage.h, lib/ftruncate.c, lib/full-write.c, lib/getdate.y,
13527         lib/getloadavg.c, lib/getugroups.c, lib/hard-locale.c,
13528         lib/hard-locale.h, lib/hash.c, lib/human.c, lib/human.h, lib/lchown.c,
13529         lib/lchown.h, lib/makepath.c, lib/makepath.h, lib/md5.c, lib/md5.h,
13530         lib/memchr.c, lib/memcoll.c, lib/memrchr.c, lib/modechange.c,
13531         lib/modechange.h, lib/mountlist.c, lib/mountlist.h, lib/nanosleep.c,
13532         lib/posixtm.c, lib/putenv.c, quotearg.c, lib/quotearg.h,
13533         lib/readtokens.c, lib/readutmp.c, lib/readutmp.h, lib/rmdir.c,
13534         lib/safe-read.c, lib/save-cwd.c, lib/savedir.c, lib/setenv.c,
13535         lib/sig2str.c, lib/stat.c, lib/strtoimax.c, lib/strverscmp.c,
13536         lib/userspec.c, lib/utime.c, lib/version-etc.c., lib/xgethostname.c,
13537         lib/xmemcoll.c, lib/xreadlink.c, lib/xstrtod.c, lib/xstrtod.h,
13538         lib/xstrtoimax.c, lib/xstrtol.c, lib/xstrtol.h, lib/xstrtoumax.c:
13539         Import changes from coreutils.
13540
13541 2004-08-05  Simon Josefsson  <jas@extundo.com>
13542
13543         * m4/strdup.m4: Always run gl_PREREQ_STRDUP, since strdup.h need it.
13544
13545 2004-08-05  Simon Josefsson  <jas@extundo.com>
13546
13547         * m4/getsubopt.m4: New file.
13548
13549 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
13550
13551         Merge from coreutils.
13552
13553         * m4/c-strtod.m4, canonicalize.m4, fcntl-safer.m4, getcwd-path-max.m4:
13554         New files.
13555
13556         * m4/dos.m4 (gl_AC_DOS): filesystem -> file system renaming.
13557         FILESYSTEM_PREFIX_LEN ->
13558         FILE_SYSTEM_PREFIX_LEN.
13559         FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX ->
13560         FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX.
13561         FILESYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR ->
13562         FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR.
13563
13564         * m4/path-concat.m4 (gl_PATH_CONCAT): Don't require gl_AC_DOS, the
13565         prerequisite modules now handle the DOS stuff.
13566         Don't check for unistd.h.
13567
13568 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
13569
13570         Merge from coreutils.
13571
13572         * lib/.gdb-history: Remove; this doesn't belong here.
13573
13574         * lib/c-strtod.c, c-strtod.h, c-strtold.c, cycle-check.c,
13575         cycle-check.h, dev-ino.h, canonicalize.h, canonicalize.c,
13576         fcntl-safer.h, fcntl-safer.c, getcwd.c: New files.
13577
13578         * lib/dirname.h: Include <stdbool.h>.
13579         (FILE_SYSTEM_PREFIX_LEN): Renamed from FILESYSTEM_PREFIX_LEN,
13580         for consistency with POSIX terminology.  All uses changed.
13581         (IS_ABSOLUTE_FILE_NAME, IS_RELATIVE_FILE_NAME): New macros.
13582         (strip_trailing_slashes): Use bool for booleans.
13583         * lib/stripslash.c (strip_trailing_slashes): Likewise.
13584
13585         * lib/error.c: Work around bug in OpenBSD 3.4 sterror_r: it
13586         sometimes returns a positive errno value even when it succeeds.
13587         (print_errno_message) [!LIBC]: Fall back on strerror if
13588         __strerror_r fails.
13589
13590         * lib/path-concat.c (mempcpy): Don't define if a system header defines
13591         it. Don't include stdio.h, stdlib.h, unistd.h, strdup.h.
13592         (longest_relative_suffix): New function.
13593         (path_concat): Use it.  Assume first argument is not NULL.
13594         Port to DOS.  Omit redundant separators.
13595         Report an error instead of returning NULL.
13596         Use mempcpy instead of memcpy.
13597         (xpath_concat): Remove: not declared or used.
13598
13599         * lib/same.h: Include <stdbool.h>
13600         (same_name): Return bool, not int.
13601         * lib/same.c (same_name): Likewise.
13602         (errno): Don't declare; we assume C89 or better now.
13603
13604         * lib/stat-macros (S_ISCTG, S_ISOFD, S_ISOFL): New macros,
13605         if not already defined.
13606
13607         * lib/xgetcwd.c (errno): Don't declare; we assume C89 or better now.
13608         * lib/dup-safer.c (errno): Likewise.
13609
13610 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
13611
13612         Merge from coreutils.
13613         * modules/c-strtod, modules/c-strtold, modules/canonicalize,
13614         modules/cycle-check, modules/fcntl-safer, modules/getcwd: New files.
13615         * modules/path-concat: Don't depend on strdup.
13616
13617 2004-08-03  Simon Josefsson  <jas@extundo.com>
13618
13619         * lib/strdup.h: Only use HAVE_DECL_STRDUP if defined.
13620         * lib/progname.h: Don't include stdbool.h.
13621
13622 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
13623
13624         * modules/fatal: Remove, as the "fatal" module wasn't used or working.
13625         * MODULES.html.sh (func_all_modules): Remove fatal.
13626
13627 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
13628
13629         * m4/fatal.m4: Remove, as the "fatal" module wasn't used or working.
13630
13631 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
13632
13633         * lib/fatal.c, fatal.h: Remove as the "fatal" module wasn't used or
13634         working.
13635
13636 2004-08-02  Simon Josefsson  <jas@extundo.com>
13637
13638         * lib/getsubopt.h: New file, with comments from Bruno Haible.
13639         * lib/getsubopt.c: New file, from glibc, but slightly modified based on
13640         suggestions from Paul Eggert <eggert@cs.ucla.edu>.
13641
13642 2004-08-01  Simon Josefsson  <jas@extundo.com>
13643
13644         * lib/xgetdomainname.c: Include stdlib.h, for free().
13645
13646 2004-07-19  Bruno Haible  <bruno@clisp.org>
13647
13648         * MODULES.html.sh (func_all_modules): Add dummy.
13649
13650 2004-07-16  Simon Josefsson  <jas@extundo.com>
13651
13652         * modules/dummy: New file.
13653
13654 2004-07-16  Simon Josefsson  <jas@extundo.com>
13655
13656         * lib/dummy.c: New file.
13657
13658 2004-07-16  Bruno Haible  <bruno@clisp.org>
13659
13660         * lib/backupfile.h: Add extern "C" for C++.
13661         * lib/closeout.h: Likewise.
13662         * lib/copy-file.h: Likewise.
13663         * lib/findprog.h: Likewise.
13664         * lib/full-write.h: Likewise.
13665         * lib/pathname.h: Likewise.
13666         * lib/progname.h: Likewise.
13667         * lib/stpcpy.h: Likewise.
13668         * lib/stpncpy.h: Likewise.
13669         * lib/strcase.h: Likewise.
13670         * lib/strstr.h: Likewise.
13671         * lib/xalloc.h: Likewise.
13672
13673         * lib/mbswidth.h: Add extern "C" for C++.
13674         Reported by Albert Chin-A-Young <china@thewrittenword.com>.
13675
13676 2004-07-13  Robert Millan  <robertmh@gnu.org>
13677
13678         * m4/host-os.m4: s/KNetBSD/kNetBSD/g and s/KFreeBSD/kFreeBSD/g.
13679
13680 2004-07-09  Simon Josefsson  <jas@extundo.com>
13681
13682         * lib/getndelim2.c: Include stddef.h, for ptrdiff_t.  (FreeBSD 4.9
13683         failed without this.)
13684
13685 2004-07-09  Paul Eggert  <eggert@cs.ucla.edu>
13686
13687         * modules/chown (Files): Add lib/fchown-stub.c, since
13688         gl_PREREQ_CHOWN invokes AC_LIBOBJ(fchown-stub).
13689
13690 2004-07-09  Paul Eggert  <eggert@cs.ucla.edu>
13691
13692         * lib/fchown-stub.c: New file.
13693
13694 2004-06-24  Jim Meyering  <jim@meyering.net>
13695
13696         * lib/obstack.h (obstack_base): Cast to (void *), per documentation.
13697
13698 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
13699
13700         * modules/argz: Omit "#include".
13701
13702         * MODULES.html.sh (func_all_modules): Add calloc, to match
13703         2004-06-01 addition of calloc module.
13704
13705 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
13706
13707         * m4/argz.m4: New file, which is autoupdated from libtool.
13708
13709 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
13710
13711         * lib/argz.c, argz_.h: New files, which are autoupdated from libtool.
13712
13713 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
13714
13715         * config/srclist-update: Don't insist on "USA." before the
13716         close-comment, as libtool omits the period and puts the */ on a
13717         separate line.
13718         * config/srclist.txt: Add argz.c, argz_.h, argz.m4.
13719         * config/srclistvars.sh: Add LIBTOOL (for eggert only).
13720
13721 2004-06-22  Gary V. Vaughan  <gary@gnu.org>
13722
13723         * modules/argz: New file.
13724         * MODULES.html.sh (func_all_modules): Add argz.
13725
13726 2004-06-12  Jim Meyering  <jim@meyering.net>
13727         and  Paul Eggert  <eggert@cs.ucla.edu>
13728
13729         * modules/hash (Files): Add lib/xalloc.h.
13730         * modules/pipe (Depends-on): Add wait-process.
13731         * modules/stat (Depends-on): Add xalloc.
13732         * modules/userspec (Files): Add lib/userspec.h.
13733         * modules/xstrto
13734
13735         Upgrade from gettext-0.13.
13736         * modules/gettext (Files): Add m4/intmax.m4, m4/longdouble.m4,
13737         m4/longlong.m4, m4/printf-posix.m4, m4/signed.m4, m4/size_max.m4,
13738         m4/wchar_t.m4, m4/wint_t.m4, m4/xsize.m4.
13739
13740 2004-06-10  Jim Meyering  <jim@meyering.net>
13741
13742         * lib/calloc.c: New file.
13743
13744 2004-06-06  Paul Eggert  <eggert@cs.ucla.edu>
13745
13746         * lib/getdate.y (yylex): Allow space between sign and number.
13747         Problem reported by Dan Jacobson.
13748
13749 2004-06-01  Paul Eggert  <eggert@cs.ucla.edu>
13750
13751         Merge from coreutils CVS.
13752
13753         * m4/backupfile.m4, dirname.m4, human.m4, inttypes.m4, longlong.m4,
13754         makepath.m4, memchr.m4, memcmp.m4, mountlist.m4, path-concat.m4,
13755         putenv.m4, quotearg.m4, readutmp.m4, strtoimax.m4, strtoll.m4,
13756         strtoull.m4, strtoumax.m4, ulonglong.m4, vasnprintf.m4,
13757         xstrtol.m4: Fix copyright date and/or serial number.
13758
13759         * m4/chown.m4 (gl_PREREQ_CHOWN): Check for fcntl.h.
13760         See if we need an fchown replacement.
13761         (gl_FUNC_CHOWN_FOLLOWS_SYMLINK): New macro.
13762         (gl_FUNC_CHOWN): Require gl_FUNC_CHOWN_FOLLOWS_SYMLINK,
13763         and use the replacement function if we detect either defect.
13764
13765         * m4/prereq.m4 (gl_PREREQ): Add gl_ALLOCSA, gl_CLOEXEC, gl_INTTOSTR,
13766         gl_UTIMECMP.
13767
13768 2004-06-01  Paul Eggert  <eggert@cs.ucla.edu>
13769         and  Jim Meyering  <jim@meyering.net>
13770
13771         Merge from coreutils CVS.
13772
13773         * lib/stat-macros.h: New file, with contents from file-type.h
13774         and coreutils' system.h.
13775         * lib/file-type.c: Include "stat-macros.h".
13776         * lib/file-type.h (file_type): Move all macro definitions to new file,
13777         stat-macros.h.
13778
13779         * lib/chown.c (rpl_chown) [CHOWN_FAILS_TO_HONOR_ID_OF_NEGATIVE_ONE]:
13780         Wrap old code with this conditional.
13781         [CHOWN_MODIFIES_SYMLINK]: Try to work around a chown
13782         function that does not dereference symlinks.
13783         * lib/lchown.c (lchown) [CHOWN_MODIFIES_SYMLINK]: Just call chown.
13784
13785         * lib/xreadlink.c: Include xreadlink.h first, to catch .h file
13786         dependency problems.
13787         (xreadlink): Accept new arg SIZE, for efficiency.
13788         All decls and uses changed.
13789         * lib/xreadlink.h: Include <stddef.h>, for size_t.
13790
13791         * lib/.cppi-disable: Add alloca_.h, allocsa.h, exit.h, getndelim2.h,
13792         gettext.h, localcharset.h, strdup.h, strndup.h, strtoul.c, time_r.h.
13793
13794         * lib/.cvsignore: Add alloca.h, fnmatch.h, poll.h, stdbool.h,
13795         sysexits.h.
13796
13797 2004-06-01  Jim Meyering  <jim@meyering.net>
13798
13799         * m4/calloc.m4: New file.
13800
13801 2004-05-31  Paul Eggert  <eggert@cs.ucla.edu>
13802
13803         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Detect _Bool bug in HP aC++/ANSI
13804         C B3910B A.05.55 [Dec 04 2003].  Problem reported by Jim Meyering.
13805         Also, fix a typo in a diagnostic.
13806
13807 2004-05-30  Paul Eggert  <eggert@cs.ucla.edu>
13808
13809         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Do not require AC_FUNC_MALLOC
13810         or AC_FUNC_REALLOC.
13811
13812 2004-05-30  Paul Eggert  <eggert@cs.ucla.edu>
13813
13814         * lib/xmalloc.c (HAVE_MALLOC, HAVE_REALLOC): Do not require these
13815         macros to be defined.
13816         (xnmalloc_inline, xnrealloc_inline, xcalloc): Do not die if
13817         the allocator returns NULL because the requested size is zero.
13818
13819 2004-05-20  Paul Eggert  <eggert@cs.ucla.edu>
13820
13821         * lib/malloc/obstack.c (_obstack) [defined _LIBC]: Bring back this
13822         var.  Add comment explaining why libc still defines it.  This
13823         merges the following patch from glibc:
13824         http://sources.redhat.com/ml/libc-alpha/2004-05/msg00157.html
13825
13826 2004-05-20  Andreas Schwab  <schwab@suse.de>
13827
13828         * m4/free.m4: Replace free if it not known to work, not the other
13829         way round.
13830
13831 2004-05-19  Paul Eggert  <eggert@cs.ucla.edu>
13832
13833         * lib/obstack.c (_obstack): Remove unused variable.  It hasn't been
13834         present in glibc since revision 1.1 of this file.
13835         * lib/obstack.h (_obstack_free, obstack_1grow, obstack_1grow_fast,
13836         obstack_alignment_mask, obstack_alloc, obstack_base,
13837         obstack_blank, obstack_blank_fast, obstack_chunk_size,
13838         obstack_copy, obstack_copy0, obstack_finish, obstack_grow,
13839         obstack_grow0, obstack_init, obstack_int_grow,
13840         obstack_int_grow_fast, obstack_make_room, obstack_memory_used,
13841         obstack_next_free, obstack_object_size, obstack_ptr_grow,
13842         obstack_ptr_grow_fast, obstack_room): Remove declarations of
13843         nonexistent functions.
13844
13845 2004-05-18  Karl Berry  <karl@gnu.org>
13846
13847         * config/srclist.txt: break link for vasnprintf.c.
13848
13849 2004-05-17  Paul Eggert  <eggert@cs.ucla.edu>
13850
13851         Port obstack to the AS/400, where pointers are 16 bytes wide and
13852         you cannot cast an integer to a valid pointer.  This patch is
13853         currently waiting to be integrated into glibc; see
13854         <http://sources.redhat.com/ml/libc-alpha/2004-05/msg00073.html>.
13855
13856         * lib/obstack.h (__PTR_TO_INT, __INT_TO_PTR): Remove.
13857         All uses of __INT_TO_PTR (PTR_TO_INT ...) replaced by __PTR_ALIGN.
13858         (__BPTR_ALIGN, __PTR_ALIGN): New macros.
13859         (struct obstack): temp member is now a union of a pointer and
13860         an integer, instead of an integer.  All integer uses changed.
13861         This does not affect the physical layout of struct obstack,
13862         except on hosts (like the AS/400) where the size or alignment of
13863         void * is greater than that of ptrdiff_t.
13864         (obstack_finish) [! (defined __GNUC__ && defined __STDC__ &&
13865         __STDC__)]: Store temporary in pointer member of union, not
13866         integer member.
13867         * lib/obstack.c: Include <stddef.h>, for offsetof.
13868         (struct fooalign): Remove; it doesn't need a name.
13869         (union fooround): Change double to long double, and add void *.
13870         (DEFAULT_ALIGNMENT): Use offsetof to compute.
13871         (DEFAULT_ALIGNMENT, DEFAULT_ROUNDING): Now an enum constant,
13872         not a macro.  Hence the values are always int; so remove all
13873         casts-to-int in uses.
13874
13875 2004-05-17  Paul Eggert  <eggert@cs.ucla.edu>
13876
13877         * config/srclist.txt: Break link for argp-help.c and argp-parse.c until
13878         we can get this patch merged into glibc.
13879
13880 2004-05-17  Derek R. Price  <derek@ximbiot.com>
13881             Paul Eggert  <eggert@cs.ucla.edu>
13882
13883         * m4/argp: Depend on alloca.
13884
13885 2004-05-17  Derek R. Price  <derek@ximbiot.com>
13886             Paul Eggert  <eggert@cs.ucla.edu>
13887
13888         * lib/argp-help.c, argp-parse.c: Assume <alloca.h> rather than
13889         freecoding.
13890
13891 2004-05-17  Bruno Haible  <bruno@clisp.org>
13892
13893         * lib/vasnprintf.c (VASNPRINTF): Correctly handle the case of a
13894         precision that consists of a '.' followed by an empty digit string.
13895         Patch by Tor Lillqvist <tml@iki.fi>.
13896
13897 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
13898
13899         * m4/alloca.m4 (gl_FUNC_ALLOCA): Define HAVE_ALLOCA_H always,
13900         for backward compatibility with older code.  We need our own
13901         alloca.h if _AIX is defined.  Define HAVE_ALLOCA if we discover
13902         it under some other name, and our alloca.h will define it.
13903
13904 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
13905             Derek Price  <derek@ximbiot.com>
13906
13907         * lib/alloca.c: Include <alloca.h>, to get our interface.
13908         * lib/alloca_.h: Use __alloca on AIX, so that we don't have to
13909         include <alloca.h> first.  Use C89 prototype for alloca; this
13910         requires including <stddef.h> for size_t.  Use extern "C" if C++.
13911         Use #elif for simplicity, since we can assume C89 now.
13912         Don't try to source the system alloca.h since it will not be found
13913         and to prevent recursively including its replacement.
13914         * lib/fnmatch.c: Include <alloca.h> instead of opencoding.
13915         * lib/regex.c: Likewise.
13916
13917 2004-05-16  Derek Price  <derek@ximbiot.com>
13918             Paul Eggert  <eggert@cs.ucla.edu>
13919
13920         getline cleanup.  This changes the getndelim2 API: both order of
13921         arguments, and meaning of delim2 (now uses EOF, not 0, to indicate
13922         no delimiter).
13923
13924         * lib/getline.c: Don't include stddef.h or stdio.h, since our
13925         interface does that.
13926         (getline): Always use getdelim, so that we don't have two
13927         copies of this code.
13928         * lib/getndelim2.c: Include <limits.h>, <inttypes.h>, <stdint.h>
13929         if available.
13930         (PTRDIFF_MAX, SIZE_MAX, SSIZE_MAX): Define if not defined.
13931         (GETNDELIM2_MAXIMUM): New macro.
13932         (getndelim2): Reorder arguments.  delim==EOF now means no delimiter,
13933         instead of the old practice of delim2==0.  All callers changed.
13934         Return -1 on overflow, instead of returning junk.
13935         Do not set *linesize unless allocation succeeds.
13936         * lib/getndelim2.h: Do not include stddef.h; no longer needed, now
13937         that we include sys/types.h.
13938         * lib/getnline.h: Likewise.
13939         * lib/getndelim2.h (GETNLINE_NO_LIMIT): New macro.
13940         (getndelim2): Reorder arguments.
13941         * lib/getnline.c (getnline, getndelim):
13942         Don't discard the NMAX argument.
13943         (getnline): Invoke getndelim, to avoid code duplication.
13944         * lib/getnline.h (GETNLINE_NO_LIMIT): New macro, used instead
13945         of (size_t) -1 by callers of the getnline family.
13946
13947 2004-05-13  Paul Eggert  <eggert@cs.ucla.edu>
13948
13949         * m4/gettime.m4 (gl_GETTIME): Require gl_TIMESPEC.
13950         Check for gettimeofday.
13951         * m4/settime.m4 (gl_SETTIME): Require gl_TIMESPEC.
13952         Check for settimeofday, stime.
13953
13954 2004-05-13  Paul Eggert  <eggert@cs.ucla.edu>
13955
13956         * lib/nanosleep.c (suspended): Change its type from int to
13957         sig_atomic_t volatile.
13958         (first_call): Make it private to rpl_nanosleep, and have it
13959         be zero initially as that's a bit faster.
13960         (my_usleep): Round up fractional times instead of truncating them,
13961         as this is the usual meaning for 'sleep'.
13962
13963         * lib/gettime.c (gettime): Fall back on `time' if `gettimeofday'
13964         doesn't work.
13965         * lib/settime.c: Include <unistd.h>, for stime (on Solaris 8, anyway).
13966         (ENOSYS): Define if not defined.
13967         (settime): Fall back on stime if it exists and settimeofday fails.
13968         But don't bother with fallbacks if a method fails with errno == EPERM.
13969
13970 2004-05-11  Jim Meyering  <jim@meyering.net>
13971
13972         Prior to this change, the save_cwd caller required read access to the
13973         current directory on most systems (ones with the fchdir function).
13974
13975         * lib/save-cwd.c (save_cwd) [HAVE_FCHDIR]: If opening `.' read-only
13976         fails, try write-only, and finally, resort to using xgetcwd.
13977
13978 2004-05-06  Paul Eggert  <eggert@cs.ucla.edu>
13979
13980         * lib/obstack.c, obstack.h: Import changes from libc.
13981
13982 2004-04-28  Bruno Haible  <bruno@clisp.org>
13983
13984         * lib/findprog.c (find_in_path): Treat Cygwin like Windows, since it
13985         also implicitly appends .exe to executables.
13986         * lib/localcharset.c (ISSLASH): Treat Cygwin like Windows, since it now
13987         accepts Windows pathnames.
13988         * lib/pathname.h (ISSLASH, IS_PATH_WITH_DIR, FILESYSTEM_PREFIX_LEN):
13989         Treat Cygwin like Windows, since it now accepts Windows pathnames.
13990         * lib/progreloc.c (ISSLASH, IS_PATH_WITH_DIR, FILESYSTEM_PREFIX_LEN):
13991         Treat Cygwin like Windows, since it now accepts Windows pathnames.
13992         Reported by Derek Robert Price <derek@ximbiot.com>.
13993
13994 2004-04-21  Karl Berry  <karl@gnu.org>
13995
13996         * config/srclist.txt (localcharset.c): break sync.
13997
13998 2004-04-20  Paul Eggert  <eggert@twinsun.com>
13999
14000         * m4/host-os.m4: Add a copyright notice.
14001
14002 2004-04-20  Jim Meyering  <jim@meyering.net>
14003
14004         Change UTILS_ to gl_ in AC_DEFINE'd names.
14005         Change utils_- and jm_-prefixed variables, too.
14006         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Renamed from
14007         UTILS_FUNC_MKDIR_TRAILING_SLASH.
14008         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Renamed from UTILS_FUNC_MKSTEP.
14009
14010         * m4/dirfd.m4 (gl_FUNC_DIRFD): Rename from UTILS_FUNC_DIRFD.
14011         Don't emit trailing blanks.
14012         Also rename jm_-prefixed variables to have gl_ prefix.
14013
14014         * m4/host-os.m4 (gl_HOST_OS): Rename from UTILS_HOST_OS.
14015         Also rename jm_-prefixed variables to have gl_ prefix.
14016
14017         * m4/jm-macros.m4: Reflect the renamings.
14018         * m4/prereq.m4: Likewise.
14019
14020 2004-04-20  Jim Meyering  <jim@meyering.net>
14021
14022         * lib/getndelim2.c (getndelim2): Upon realloc failure, don't leak
14023         memory.
14024
14025 2004-04-20  Jim Meyering  <jim@meyering.net>
14026             Bruno Haible  <bruno@clisp.org>
14027
14028         * lib/localcharset.c (get_charset_aliases) [!VMS && !WIN32]: Don't leak
14029         memory when realloc fails.
14030
14031 2004-04-19  Jim Meyering  <jim@meyering.net>
14032
14033         * m4/readutmp.m4 (gl_PREREQ_READUTMP): Require gl_FUNC_FREE,
14034         now that readutmp.c may call `free (0)'.
14035
14036 2004-04-19  Bruno Haible  <bruno@clisp.org>
14037
14038         * m4/mbrtowc.m4: Change jm_ to gl_ in cache variables as well.
14039         * m4/inttypes_h.m4: Likewise.
14040         * m4/stdint_h.m4: Likewise.
14041         * m4/intmax_t.m4: Likewise.
14042         * m4/uintmax_t.m4: Likewise.
14043
14044 2004-04-18  Jim Meyering  <jim@meyering.net>
14045
14046         * m4/prereq.m4: Don't forbid jm_ prefix.
14047
14048         * m4/afs.m4, m4/allocsa.m4, m4/assert.m4, m4/backupfile.m4:
14049         * m4/bison.m4, m4/check-decl.m4, m4/chown.m4, m4/d-ino.m4:
14050         * m4/d-type.m4, m4/dirname.m4, m4/dos.m4, m4/error.m4, m4/fpending.m4:
14051         * m4/fstypename.m4, m4/fsusage.m4, m4/ftruncate.m4, m4/getdate.m4:
14052         * m4/getgroups.m4, m4/gettext.m4, m4/glibc21.m4, m4/group-member.m4:
14053         * m4/human.m4, m4/intmax.m4, m4/intmax_t.m4, m4/inttostr.m4:
14054         * m4/inttypes.m4, m4/inttypes_h.m4, m4/jm-macros.m4, m4/jm-winsz1.m4:
14055         * m4/jm-winsz2.m4, m4/lchown.m4, m4/lib-check.m4, m4/link-follow.m4:
14056         * m4/localcharset.m4, m4/longlong.m4, m4/ls-mntd-fs.m4, m4/lstat.m4:
14057         * m4/makepath.m4, m4/mbrtowc.m4, m4/mbswidth.m4, m4/memchr.m4:
14058         * m4/memcmp.m4, m4/mkdtemp.m4, m4/mkstemp.m4, m4/mountlist.m4:
14059         * m4/nanosleep.m4, m4/path-concat.m4, m4/perl.m4, m4/prereq.m4:
14060         * m4/putenv.m4, m4/quotearg.m4, m4/regex.m4, m4/stat.m4:
14061         * m4/stdint_h.m4, m4/strftime.m4, m4/strtoimax.m4, m4/strtoll.m4:
14062         * m4/strtoull.m4, m4/strtoumax.m4, m4/timespec.m4, m4/uintmax_t.m4:
14063         * m4/ulonglong.m4, m4/unlink-busy.m4, m4/unlocked-io.m4, m4/uptime.m4,
14064         * m4/utimbuf.m4, m4/utime.m4, m4/utimes-null.m4, m4/vasnprintf.m4:
14065         * m4/xstrtoimax.m4, m4/xstrtol.m4, m4/xstrtoumax.m4:
14066         Change jm_ to gl_ in AC_DEFINE'd names. Update all uses.
14067
14068 2004-04-18  Jim Meyering  <jim@meyering.net>
14069
14070         * lib/readutmp.c (read_utmp) [UTMP_NAME_FUNCTION]: Upon realloc
14071         failure, don't leak memory and do call END_UTMP_ENT.
14072
14073 2004-04-16  Jim Meyering  <jim@meyering.net>
14074
14075         * m4/prereq.m4 (jm_PREREQ_STAT): Remove macro.  It is specific to
14076         coreutils' stat program.
14077         (gl_PREREQ): Don't require jm_PREREQ_STAT.
14078
14079 2004-04-11  Paul Eggert  <eggert@twinsun.com>
14080
14081         * lib/inttostr.h: Include <limits.h> unconditionally, since we assume
14082         C89.
14083         (CHAR_BIT): Remove, since we assume C89.
14084         Include <stdint.h> if available, as per current Autoconf CVS advice.
14085
14086 2004-03-31  Jim Meyering  <jim@meyering.net>
14087
14088         * m4/prereq.m4: Require AC_FUNC_MALLOC, not jm_FUNC_MALLOC.
14089         Require AC_FUNC_REALLOC, not jm_FUNC_REALLOC.
14090         * m4/xalloc.m4: Likewise.
14091
14092 2004-03-30  Paul Eggert  <eggert@twinsun.com>
14093
14094         Merge from coreutils.
14095
14096         * m4/inttostr.m4: New file.
14097         * m4/getdate.m4 (gl_GETDATE): Remove time-related stuff.
14098         Require AM_STDBOOL_H and gl_TIMESPEC instead.
14099         Require gl_CLOCK_TIME.
14100         * m4/clock_time.m4 (gl_CLOCK_TIME): Require AC_GNU_SOURCE.
14101
14102 2004-03-30  Paul Eggert  <eggert@twinsun.com>
14103
14104         * lib/cloexec.h, cloexec.c (set_cloexec_flag): Return int
14105         not bool, to be more consistent with Unix conventions.
14106         Suggested by Bruno Haible.
14107
14108         Merge from coreutils.
14109
14110         * lib/imaxtostr.c, inttostr.c, inttostr.h, offtostr.c, umaxtostr.c:
14111         New files.
14112
14113         * lib/getdate.h: Include stdbool.h, and timespec.h instead of
14114         the usual <time.h> dance.
14115         (get_date): Change signature to support fractional time stamps.
14116         All callers changed.
14117         * lib/getdate.y: Include "getdate.h" first, as we can now
14118         assume C89 and don't need to worry about 'const'.
14119         Similarly, include "unlocked-io.h" near start, not in middle.
14120         Include <limits.h>.
14121         (textint.value): Use long int rather than int.
14122         (textint.digits): Use size_t rather than int.
14123         (BILLION, LOG10_BILLION): New constants.
14124         (parser_control): New member rel_ns.  Members day_ordinal,
14125         time_zone, month, day, hour, minutes, rel_year, rel_month,
14126         rel_day, rel_hour, rel_minutes, rel_seconds
14127         are now long int, not int.  Member seconds is now struct timespec,
14128         not int.  New member timespec_seen.  Members dates_seen, days_seen,
14129         local_zones_seen, rels_seen, times_seen, zones_seen are now size_t,
14130         not int.
14131         (%union.intval): Now long int, not int.
14132         New member timespec.
14133         (tSDECIMAL_NUMBER, tUDECIMAL_NUMBER): New tokens.
14134         (seconds, signed_seconds, unsigned_seconds): New nonterminals.
14135         (spec): Now is a timespec or an item list.
14136         (timespec, items): New nonterminals.
14137         (time, rel, relunit, number, get_date):
14138         Add support for fractional seconds.
14139         (time): Fix bug: seconds weren't cleared in "00:00 +0000" syntax.
14140         (gmtime, localtime, mktime): Remove decls; not needed with C89.
14141         (to_hour): First arg is now long int, not int.
14142         (to_year): Returns long int, not int.
14143         Don't treat year -70 like 70.
14144         (tm_diff): Returns long int, not int.
14145         (lookup_word): Use bool instead of int when appropriate.
14146         (yylex): Use size_t for count, not int.
14147         Detect overflow when parsing large integer constants.
14148         Add support for fractions.
14149         (get_date): Make pointers 'const' if possible.
14150         Use more-portable code to detect integer overflow.
14151         (main) [TEST]: Adjust to above changes.  Test for localtime failure.
14152         Don't use ctime; it's not reliable if the year has >4 digits.
14153
14154         * lib/human.c (humblock): Inspect BLOCKSIZE if BLOCK_SIZE isn't set.
14155         This is for compatibility with BSD.
14156
14157         * lib/timespec.h (ST_TIME_CMP_NS, ST_TIME_CMP): Define.
14158         (ATIME_CMP, CTIME_CMP, MTIME_CMP, TIMESPEC_NS): Likewise.
14159         From coreutils' system.h.
14160
14161         * lib/userspec.c: Don't include "posixver.h".
14162         (parse_user_spec): Fall back on USER.GROUP parsing, regardless
14163         of POSIX version, as POSIX 1003.1-2001 allows that behavior as a
14164         compatible extension.  Simplify code by removing a boolean int
14165         that was always nonzero if a string was nonnull.
14166
14167 2004-03-30  Jim Meyering  <jim@meyering.net>
14168
14169         Merge from coreutils.
14170
14171         Avoid a configure-time warning about sys/ucred.h on OSF V4.0.
14172         * m4/ls-mntd-fs.m4: Test for sys/ucred.h separately, since
14173         on some systems one must include <grp.h> before it.
14174         Reported by Christian Krackowizer.
14175
14176 2004-03-30  Jim Meyering  <jim@meyering.net>
14177
14178         Merge from coreutils.
14179
14180         * lib/mountlist.c [HAVE_SYS_UCRED_H]: Include grp.h before sys/ucred.h.
14181
14182         * lib/readtokens.c (readtoken): Don't leak 64 bytes when reading
14183         an empty input stream.
14184
14185         * lib/readtokens.c: Include <stdbool.h>.
14186         (readtoken): Use `size_t' rather than int/long.
14187         All callers adjusted.
14188         Use `bool' rather than `int' where appropriate.
14189         Use memset rather than an explicit loop.
14190         Use x2nrealloc rather than xrealloc.
14191         Allow the use of `\0' as a delimiter.
14192         (readtokens): Likewise.
14193         * lib/readtokens.h (readtoken, readtokens): Update prototypes.
14194
14195 2004-03-30  Jim Meyering  <jim@meyering.net>
14196
14197         * m4/realloc.m4: Remove file, since now it does no more than
14198         AC_REQUIRE([AC_FUNC_REALLOC]), and that can be done via
14199         the `configure.ac' section of module/realloc.
14200         * m4/malloc.m4: Likewise, but for AC_FUNC_MALLOC.
14201
14202 2004-03-30  Bruno Haible  <bruno@clisp.org>
14203
14204         * lib/getloadavg.c (getloadavg): Don't assume setlocale returns
14205         nonnull.
14206
14207 2004-03-29  Paul Eggert  <eggert@twinsun.com>
14208
14209         Merge changes to getloadavg.c from coreutils and Emacs.
14210
14211         * lib/getloadavg.c [!defined HAVE_SETLOCALE] (setlocale):
14212         Define to an expression, not to the empty string.
14213         Include cloexec.h and xalloc.h.
14214         (getloadavg): Restore LC_NUMERIC locale after setting it temporarily.
14215         Use set_cloexec_flag rather than rolling our own.
14216         * lib/cloexec.c, cloexec.h: New files.
14217
14218 2004-03-29  Paul Eggert  <eggert@twinsun.com>
14219
14220         * m4/cloexec.m4: New file.
14221
14222 2004-03-18  Paul Eggert  <eggert@twinsun.com>
14223
14224         * lib/getopt.h: Sync with libc CVS.
14225
14226 2004-03-18  Paul Eggert  <eggert@twinsun.com>
14227             Bruno Haible  <bruno@clisp.org>
14228
14229         * m4/mbswidth.m4 (gl_MBSWIDTH): Also test whether <wchar.h> declares
14230         mbswidth.
14231
14232 2004-03-18  Paul Eggert  <eggert@twinsun.com>
14233             Bruno Haible  <bruno@clisp.org>
14234
14235         * lib/mbswidth.h: Include <wchar.h> only if
14236         HAVE_DECL_MBSWIDTH_IN_WCHAR_H, not on all platforms that have
14237         <wchar.h>.
14238         * lib/mbswidth.c: Include <stdio.h> and <time.h> before <wchar.h>.
14239
14240 2004-03-09  Paul Eggert  <eggert@twinsun.com>
14241
14242         * lib/argp-parse.c, getopt.c, getopt.h, getopt1.c:
14243         Sync with libc CVS.
14244         * lib/getopt_int.h: New file, also synced from libc.
14245
14246 2004-03-09  Paul Eggert  <eggert@twinsun.com>
14247
14248         * config/srclistvars.sh: Add GNUWWWLICENSES for eggert.
14249         * config/srclist.txt: Sync getopt with libc.  Add getopt_int.h.
14250         Bring back getopt.c, getopt.h, getopt1.c.
14251
14252 2004-03-07  Paul Eggert  <eggert@twinsun.com>
14253
14254         * m4/c-stack.m4 (gl_PREREQ_C_STACK): Renamed from jm_PREREQ_C_STACK.
14255         All uses changed.  Check for sa_sigaction member; this fixes
14256         a bug first reported by Jason Andrade in
14257         <http://mail.gnu.org/archive/html/bug-textutils/2003-03/msg00027.html>.
14258
14259 2004-03-07  Paul Eggert  <eggert@twinsun.com>
14260
14261         * lib/c-stack.c (SIGACTION_WORKS): New macro.  Use it instead of long
14262         '#if' expressions.  Unlike the code it replaces, it does not
14263         depend on (defined _SC_PAGESIZE).  However, it does depend on
14264         HAVE_STRUCT_SIGACTION_SA_SIGACTION; this last change fixes a bug
14265         first reported by Jason Andrade in
14266         <http://mail.gnu.org/archive/html/bug-textutils/2003-03/msg00027.html>.
14267
14268 2004-02-25  Simon Josefsson  <jas@extundo.com>
14269
14270         * m4/strdup.m4 (gl_PREREQ_STRDUP): Check whether strdup is declared.
14271
14272 2004-02-25  Simon Josefsson  <jas@extundo.com>
14273
14274         * lib/strdup.h: New file.
14275         * lib/strdup.c: Include it.
14276         * lib/path-concat.c: Include strdup.h. Drop strdup declaration.
14277         * lib/userspec.c: Include strdup.h. Drop strdup declaration.
14278
14279 2004-02-23  Karl Berry  <karl@gnu.org>
14280
14281         * doc/maintain.texi, standards.texi, make-stds.texi: new files
14282         (from fencepost.gnu.org:/gd/gnuorg).
14283
14284 2004-02-23  Karl Berry  <karl@gnu.org>
14285
14286         * config/srclistvars.sh (GNUORG) [karl]: redefine.
14287         * config/srclist.txt: add maintain/standards documents.
14288
14289 2004-02-18  Bruno Haible  <bruno@clisp.org>
14290
14291         * m4/xsize.m4 (gl_XSIZE): Require AC_C_INLINE.
14292         Reported by Derek Robert Price <derek@ximbiot.com>.
14293
14294 2004-02-16  Karl Berry  <karl@gnu.org>
14295
14296         * config/mkinstalldirs, install-sh: update from automake.
14297
14298 2004-02-06  Karl Berry  <karl@gnu.org>
14299
14300         * m4/po.m4: update from gettext 0.14.1.
14301
14302 2004-02-06  Karl Berry  <karl@gnu.org>
14303
14304         * lib/config.charset: update from gettext 0.14.1.
14305
14306 2004-02-05  Paul Eggert  <eggert@twinsun.com>
14307
14308         Add comments and code, prompted by suggestions from Bruno Haible
14309         for sh-quote.
14310         * lib/quotearg.h (quotearg_alloc): New decl.  Improve the comments
14311         describing the enum quoting_style values.
14312         * lib/quotearg.c (quotearg_alloc): New function.
14313         (quotearg_buffer_restyled): Treat lone { and } as special.
14314         Treat = as special.  Work around bug with older shells
14315         that "see" a '\' that is really the 2nd byte of a multibyte char.
14316         Quote empty string with shell_quoting_style.
14317
14318 2004-02-03  Bruno Haible  <bruno@clisp.org>
14319
14320         * m4/pipe.m4: New file, from GNU gettext.
14321
14322 2004-02-03  Bruno Haible  <bruno@clisp.org>
14323
14324         * lib/pipe.h: New file, from GNU gettext.
14325         * lib/pipe.c: New file, from GNU gettext.
14326
14327 2004-01-27  Bruno Haible  <bruno@clisp.org>
14328
14329         * m4/execute.m4: New file, from GNU gettext.
14330
14331 2004-01-27  Bruno Haible  <bruno@clisp.org>
14332
14333         * lib/execute.h: New file, from GNU gettext.
14334         * lib/execute.c: New file, from GNU gettext.
14335         * lib/w32spawn.h: New file, from GNU gettext.
14336
14337 2004-01-24  Paul Eggert  <eggert@twinsun.com>
14338
14339         Merge from diffutils.
14340
14341         * lib/file-type.c (file_type): Add typed memory objects.
14342         * lib/file-type.h (S_TYPEISTMO): New macro.
14343
14344         * lib/c-stack.h (c_stack_action): Remove argv argument.
14345         * lib/c-stack.c (c_stack_action): Likewise.  All uses changed.
14346         (die): Don't calculate message unless segv_action returns.
14347         (get_stack_location, min_address_from_argv, max_address_from_argv,
14348         volatile stack_base, volatile_stack_size): Remove.
14349         (segv_handler): If ! HAVE_XSI_STACK_OVERFLOW_HEURISTIC, assume
14350         that every segmentation violation is a stack overflow.  (Ouch!)
14351         See Debian bug 136249 (still outstanding) for more info about why
14352         HAVE_XSI_STACK_OVERFLOW_HEURISTIC fails on Linux kernels.
14353
14354 2004-01-24  Paul Eggert  <eggert@twinsun.com>
14355
14356         Exit-status fix from coreutils.
14357
14358         Use exit_failure consistently in place of EXIT_FAILURE,
14359         so that program exit statuses are consistent on failure.
14360
14361         * lib/argmatch.c (ARGMATCH_DIE) [! defined ARGMATCH_DIE]:
14362         Include "exitfail.h", and use exit_failure rather than EXIT_FAILURE.
14363         * lib/argmatch.h: Comment fix to match the above.
14364         * lib/obstack.c (obstack_exit_failure) [!defined _LIBC]:
14365         Now a macro referring to exit_failure, instead of a separate
14366         variable.  Include "exitfail.h" to get it.
14367         * lib/xstrtol.h: Include "exitfail.h".
14368         (STRTOL_FATAL_ERROR): Exit with status exit_failure, not 2.
14369
14370         * lib/long-options.c (parse_long_options): Use prototype
14371         for usage function arg.  Pass it EXIT_SUCCESS rather than 0,
14372         for clarity.
14373
14374 2004-01-21  Jim Meyering  <jim@meyering.net>
14375
14376         * lib/mktime.c (__mktime_internal) [!_LIBC]: Define to mktime_internal
14377         so as not to conflict with a different-sized __mktime_internal
14378         function in GNU libc.
14379         * lib/timegm.c (__mktime_internal) [!_LIBC]: Likewise.
14380         Problem building statically-linked `ls' reported by Michael Brunnbauer.
14381
14382 2004-01-20  Karl Berry  <karl@gnu.org>
14383
14384         * config/config.guess: update from config.
14385
14386         * config/srclistvars.sh: GNUWWWLICENSES for karl.
14387
14388 2004-01-20  Bruno Haible  <bruno@clisp.org>
14389
14390         Safer stack allocation.
14391         * lib/setenv.c: Include allocsa.h.
14392         (alloca): Remove fallback definition.
14393         (freea): Remove macro.
14394         (__add_to_environ) [!_LIBC]: Use allocsa instead of alloca. Use freesa
14395         instead of freea.
14396
14397 2004-01-20  Bruno Haible  <bruno@clisp.org>
14398
14399         * m4/eealloc.m4: New file, from GNU gettext.
14400
14401 2004-01-20  Bruno Haible  <bruno@clisp.org>
14402
14403         * m4/allocsa.m4: New file, from GNU gettext.
14404
14405 2004-01-20  Bruno Haible  <bruno@clisp.org>
14406
14407         * lib/xallocsa.h: New file, from GNU gettext.
14408         * lib/xallocsa.c: New file, from GNU gettext.
14409
14410 2004-01-20  Bruno Haible  <bruno@clisp.org>
14411
14412         * lib/wait-process.c: On Windows, include windows.h. Needed on mingw.
14413
14414 2004-01-20  Bruno Haible  <bruno@clisp.org>
14415
14416         * lib/wait-process.c (wait_subprocess): Add ignore_sigpipe argument.
14417         * lib/wait-process.c (wait_subprocess): Likewise. Handle SIGPIPE
14418         specially.
14419
14420 2004-01-20  Bruno Haible  <bruno@clisp.org>
14421
14422         * lib/wait-process.c (wait_process): Disable the 2003-10-31 waitid()
14423         patch.
14424
14425 2004-01-20  Bruno Haible  <bruno@clisp.org>
14426
14427         * lib/wait-process.c (cleanup_slaves): Use ANSI C declaration.
14428
14429 2004-01-20  Bruno Haible  <bruno@clisp.org>
14430
14431         * lib/eealloc.h: New file.
14432
14433 2004-01-20  Bruno Haible  <bruno@clisp.org>
14434
14435         * lib/binary-io.h: Avoid warnings on Cygwin.
14436
14437 2004-01-20  Bruno Haible  <bruno@clisp.org>
14438
14439         * lib/allocsa.h: New file, from GNU gettext.
14440         * lib/allocsa.c: New file, from GNU gettext.
14441
14442 2004-01-18  Karl Berry  <karl@gnu.org>
14443
14444         * doc/gpl.texi, lgpl.texi: new files.
14445
14446 2004-01-18  Karl Berry  <karl@gnu.org>
14447
14448         * config/srclistvars.sh (GNUWWWLICENSES): new variable.
14449         * config/srclist.txt ({fdl,gpl,lgpl}.text): get from there.
14450
14451 2004-01-15  Paul Eggert  <eggert@twinsun.com>
14452
14453         Merge from coreutils.
14454
14455         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for uintptr_t.
14456         * m4/posixver.m4 (gl_POSIXVER): Require gl_DEFAULT_POSIX2_VERSION.
14457         (gl_DEFAULT_POSIX2_VERSION): Move
14458         the documentation from 'configure' into 'config.hin',
14459         so that 'configure --help' isn't burdened by it and
14460         we don't have to worry about its formatting there.
14461         Reword the documentation so that it's more succinct
14462         and can be run together into a single paragraph.
14463         * m4/same.m4 (gl_SAME): Check for pathconf.
14464
14465 2004-01-15  Paul Eggert  <eggert@twinsun.com>
14466
14467         Merge from coreutils.
14468
14469         * lib/posixver.c: Include posixver.h.
14470
14471         * lib/same.c: Include <stdbool.h>, <limits.h>.
14472         (_POSIX_NAME_MAX): Define if not defined.
14473         (MIN): New macro.
14474         (same_name): If file names are silently truncated, report
14475         that the file names are the same if they are the same after
14476         the silent truncation.
14477
14478         * lib/xstrtod.h (xstrtod): Accept an extra arg, specifying the
14479         conversion function.
14480         * lib/xstrtod.c (xstrtod): Likewise.  All callers changed to
14481         include c-strtod.h and use c_strtod.  Don't include stdlib.h; no
14482         longer needed.
14483
14484 2004-01-15  Jim Meyering  <jim@meyering.net>
14485
14486         Merge from coreutils.
14487
14488         * m4/clock_time.m4 (gl_CLOCK_TIME): Don't set LIB_CLOCK_GETTIME
14489         if no library is required.
14490         * m4/jm-macros.m4: Don't require UTILS_SYS_OPEN_MAX.
14491         * m4/jm-macros.m4 (jm_MACROS): Require gl_FUNC_FREE.
14492         * m4/jm-macros.m4 (jm_MACROS): Require autoconf-2.58.
14493         (AC_LANG_SOURCE): Remove definition, now that we require autoconf-2.58.
14494         * m4/jm-macros.m4 (jm_MACROS): Don't require AC_FUNC_FTW.
14495         * m4/lib-check.m4 (jm_LIB_CHECK): Do not set LIB_CRYPT to the
14496         value, $ac_cv_search_crypt, if it's "none required".
14497         * m4/posixver.m4 (gl_DEFAULT_POSIX2_VERSION): New macro.
14498         * m4/prereq.m4 (jm_PREREQ): Require AC_FUNC_GETLOADAVG,
14499         not gl_FUNC_GETLOADAVG.
14500         * m4/prereq.m4 (jm_PREREQ): Require gl_READTOKENS, gl_MD5, gl_MAKEPATH,
14501         gl_LONG_OPTIONS, and gl_IDCACHE, gl_GETUGROUPS.
14502
14503 2004-01-15  Jim Meyering  <jim@meyering.net>
14504
14505         Merge from coreutils.
14506
14507         * lib/md5.h (rol) [__GNUC__ && __i386__]: Don't use `asm' code.  These
14508         days, gcc-3.x does better all by itself.  Patch from Dean Gaudet:
14509         http://mail.gnu.org/archive/html/bug-coreutils/2003-11/msg00144.html
14510
14511         * lib/posixver.c (DEFAULT_POSIX2_VERSION): Use definition of new,
14512         optional configure-time default.
14513
14514         * lib/version-etc.c (version_etc_copyright): Update copyright date.
14515
14516         * lib/xreadlink.c (xreadlink): Correct outdated comment.
14517
14518 2004-01-15  Alexandre Duret-Lutz  <adl@gnu.org>
14519
14520         Merge from coreutils.
14521
14522         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Do not set LIB_NANOSLEEP to the
14523         value, $ac_cv_search_nanosleep, if it's "none required".
14524
14525 2004-01-14  Paul Eggert  <eggert@twinsun.com>
14526
14527         * lib/fnmatch_loop.c (ALLOCA_LIMIT): Remove macro, which collided
14528         with like-named macro in fnmatch.c.
14529         (EXT): Use an internal constant instead.
14530
14531         Merge fnmatch patches from glibc.
14532         * lib/fnmatch.c (mbsinit): Remove define.
14533         Add libc_hidden_ver (__fnmatch, fnmatch).
14534         * lib/fnmatch_loop.c (FCT): Cast to int32_t and UCHAR when appropriate.
14535         Adjust to renaming of collseq_table_lookup to __collseq_table_lookup.
14536
14537 2004-01-14  Karl Berry  <karl@gnu.org>
14538
14539         * config/install-sh: update from automake.
14540
14541 2004-01-13  Karl Berry  <karl@gnu.org>
14542
14543         * config/install-sh: update from automake.
14544
14545 2004-01-09  Karl Berry  <karl@gnu.org>
14546
14547         * config/install-sh: update from automake.
14548
14549 2004-01-05  Karl Berry  <karl@gnu.org>
14550
14551         * config/config.{sub,guess}: update from config.
14552
14553 2003-12-31  Karl Berry  <karl@gnu.org>
14554
14555         * config/depcomp: update from automake.
14556
14557 2003-12-14  Karl Berry  <karl@gnu.org>
14558
14559         * lib/config.charset: update from gettext-runtime.
14560
14561 2003-12-03  Paul Eggert  <eggert@twinsun.com>
14562
14563         * lib/getgroups.c (getgroups): xmalloc takes one argument, not two.
14564         Bug reported by Alfred M. Szmidt.
14565
14566 2003-12-03  Bruno Haible  <bruno@clisp.org>
14567
14568         * m4/gettext.m4: Upgrade from gettext-0.13.
14569         * m4/po.m4: Upgrade from gettext-0.13.
14570         * m4/size_max.m4 (gl_SIZE_MAX): Don't use the _ONCE macros here.
14571         * m4/intmax.m4: New file, from gettext-0.13.
14572         * m4/printf-posix.m4: New file, from gettext-0.13.
14573
14574 2003-11-29  Karl Berry  <karl@gnu.org>
14575
14576         * lib/argp-{help.c,parse.c,namefrob.h}, argp.h: update from libc.
14577
14578 2003-11-25  Paul Eggert  <eggert@twinsun.com>
14579             Bruno Haible  <bruno@clisp.org>
14580
14581         * lib/printf-parse.h: Don't include sys/types.h.
14582         (ARG_NONE): New macro.
14583         (char_directive): Change type of *arg_index fields to size_t.
14584         * lib/printf-parse.c: Don't include sys/types.h.
14585         (SSIZE_MAX): Remove macro.
14586         (PRINTF_PARSE): Change the type of the arg_index variables to size_t.
14587         Remove unnecessary overflow check.
14588         * lib/vasnprintf.c (VASNPRINTF): Update for type change of *arg_index
14589         fields.
14590
14591 2003-11-25  Bruno Haible  <bruno@clisp.org>
14592
14593         * modules/vasnprintf (Files): Remove m4/ssize_t.m4.
14594
14595 2003-11-25  Bruno Haible  <bruno@clisp.org>
14596
14597         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Don't require
14598         gt_TYPE_SSIZE_T.
14599
14600 2003-11-24  Paul Eggert  <eggert@twinsun.com>
14601
14602         * modules/alloca: Remove dependency on xalloc.
14603
14604 2003-11-24  Paul Eggert  <eggert@twinsun.com>
14605
14606         * lib/alloca.c: Remove dependency on xalloc module.
14607         (xalloc_die): Remove.
14608         (memory_full) [!defined emacs]: New macro.
14609         [!defined emacs]: Don't include xalloc.h.
14610         (alloca): Invoke memory_full, not xalloc_die, if malloc fails or
14611         address arithmetic overflows.  Change datatypes a bit to avoid
14612         unnecessary casts.
14613
14614 2003-11-22  Jim Meyering  <jim@meyering.net>
14615
14616         * lib/xmalloc.c (x2nrealloc_inline): Fix typos in comments:
14617         s/size/size_t/.
14618
14619 2003-11-21  Karl Berry  <karl@gnu.org>
14620
14621         * config/config.{sub,guess}: update from config.
14622
14623 2003-11-18  Karl Berry  <karl@gnu.org>
14624
14625         * config/config.{sub,guess}: update from config.
14626
14627         * config/(printf-{parse,args}.[ch]): sync broken, sigh.
14628
14629 2003-11-17  Paul Eggert  <eggert@twinsun.com>
14630
14631         * README: Mention that S+T cannot overflow if S is the size of
14632         an existing object and T is sufficiently small.
14633
14634 2003-11-17  Jim Meyering  <jim@meyering.net>
14635
14636         On systems without utime and without a utimes function capable of
14637         dealing with a NULL struct utimbuf* argument, this utime replacement
14638         could -- in unusual circumstances -- leak a file descriptor.
14639         * lib/utime.c: Include <unistd.h> and <errno.h>.
14640         (utime_null): Be sure to close `fd' and to preserve errno.
14641         Reported by Geoff Collyer via Arnold Robbins.
14642
14643 2003-11-17  Bruno Haible  <bruno@clisp.org>
14644
14645         * modules/vasnprintf (Files): Add m4/ssize_t.m4.
14646         (Depends-on): Add xsize.
14647
14648 2003-11-17  Bruno Haible  <bruno@clisp.org>
14649
14650         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Require gt_TYPE_SSIZE_T.
14651
14652 2003-11-17  Bruno Haible  <bruno@clisp.org>
14653
14654         * lib/vasnprintf.c (alloca): Remove fallback definition.
14655         (freea): Remove definition.
14656         (VASNPRINTF): Use alloca only for small sizes, say <= 4000 bytes.
14657         Reported by Paul Eggert.
14658
14659 2003-11-16  Paul Eggert  <eggert@twinsun.com>
14660             Bruno Haible  <bruno@clisp.org>
14661
14662         Protect against address arithmetic overflow.
14663         * lib/printf-args.h: Include stddef.h.
14664         (arguments): Change type of field 'count' to size_t.
14665         * lib/printf-args.c (printf_fetchargs): Use size_t instead of
14666         'unsigned int' where appropriate.
14667         * lib/printf-parse.h: Include sys/types.h.
14668         (char_directive): Change type of *arg_index fields to ssize_t.
14669         (char_directives): Change type of fields 'count', max_*_length to
14670         size_t.
14671         * lib/printf-parse.c: Include sys/types.h and xsize.h.
14672         (SSIZE_MAX): Define fallback value.
14673         (PRINTF_PARSE): Use size_t instead of 'unsigned int' and ssize_t
14674         instead of 'int' where appropriate. Check a_allocated, d_allocated
14675         against overflow. Reject %m$ argument numbers > SSIZE_MAX + 1.
14676         * lib/vasnprintf.c: Include xsize.h.
14677         (VASNPRINTF): Use size_t instead of 'unsigned int' where appropriate.
14678         Check alloca, malloc, realloc, ENSURE_ALLOCATION arguments against
14679         overflow. Avoid wraparound when converting a width or precision from
14680         decimal to binary.
14681
14682 2003-11-16  Bruno Haible  <bruno@clisp.org>
14683
14684         Update from GNU gettext.
14685         * lib/printf-parse.c: Generalize to it can be compiled for wide
14686         strings.
14687         (PRINTF_PARSE, CHAR_T, DIRECTIVE, DIRECTIVES): New macros.
14688         * lib/vasnprintf.c: Generalize to it can be compiled for wide strings.
14689         (VASNPRINTF, CHAR_T, DIRECTIVE, DIRECTIVES, PRINTF_PARSE, USE_SNPRINTF,
14690         SNPRINTF): New macros.
14691         Don't include <alloca.h> if the file is used inside libintl.
14692         (local_wcslen): New function, for Solaris 2.5.1.
14693         (VASNPRINTF): Use it instead of wcslen.
14694
14695 2003-11-16  Bruno Haible  <bruno@clisp.org>
14696
14697         * lib/xsize.h (xmax): New function.
14698         (xsum, xsum3, xsum4): Declare as "pure" functions.
14699
14700 2003-11-12  Paul Eggert  <eggert@twinsun.com>
14701
14702         * modules/xalloc (Files): Undo latest change, since xalloc.h
14703         no longer needs SIZE_MAX or PTRDIFF_MAX.
14704
14705 2003-11-12  Paul Eggert  <eggert@twinsun.com>
14706
14707         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Do not require gl_SIZE_MAX or
14708         gl_PTRDIFF_MAX.
14709
14710 2003-11-12  Paul Eggert  <eggert@twinsun.com>
14711
14712         * lib/xstrtol.c (__xstrtol): Remove "break" immediately after
14713         "return", to pacify some unknown compiler.  Problem reported
14714         by Joerg Schilling.
14715
14716 2003-11-12  Paul Eggert  <eggert@twinsun.com>
14717
14718         * lib/xalloc.h: Do not include <limits.h> or <stdint.h>.
14719         (xalloc_oversized): Use sizeof (ptrdiff_t) and sizeof (size_t) for
14720         the heuristic, rather than PTRDIFF_MAX and SIZE_MAX.  This
14721         heuristic is just as accurate as far as we know, and it removes a
14722         dependency on size_max.m4 and ptrdiff_max.m4.
14723
14724 2003-11-11  Bruno Haible  <bruno@clisp.org>
14725
14726         * modules/xsize (Files): Add m4/size_max.m4.
14727         * modules/xalloc (Files): Add m4/size_max.m4, m4/ptrdiff_max.m4.
14728
14729 2003-11-11  Bruno Haible  <bruno@clisp.org>
14730
14731         * m4/size_max.m4: New file.
14732         * m4/ptrdiff_max.m4: New file.
14733         * m4/xsize,m4 (gl_XSIZE): Require gl_SIZE_MAX.
14734         * m4/xalloc.m4 (gl_PREREQ_XALLOC): New macro.
14735         (gl_XALLOC): Invoke it.
14736
14737 2003-11-11  Bruno Haible  <bruno@clisp.org>
14738
14739         * lib/xsize.h (SIZE_MAX): Remove fallback definition.
14740         * lib/xalloc.h: Include limits.h. Assume SIZE_MAX and PTRDIFF_MAX are
14741         defined.
14742
14743 2003-11-10  Paul Eggert  <eggert@twinsun.com>
14744
14745         * lib/xalloc.h (xalloc_oversized): [! (defined PTRDIFF_MAX &&
14746         PTRDIFF_MAX < SIZE_MAX)]: Fix off-by-one error that would have
14747         rejected some allocations of exactly SIZE_MAX - 2 bytes.
14748         From Bruno Haible.
14749         [defined PTRDIFF_MAX && PTRDIFF_MAX < SIZE_MAX]: Use SIZE_MAX,
14750         not (size_t) -1, since it's defined here.
14751
14752 2003-11-09  Karl Berry  <karl@gnu.org>
14753
14754         * config/mkinstalldirs, depcomp, mdate-sh: update from automake.
14755
14756 2003-11-06  Paul Eggert  <eggert@twinsun.com>
14757
14758         * lib/xalloc.h [HAVE_STDINT_H]: Include <stdint.h>.
14759         (xalloc_oversized) [! (PTRDIFF_MAX < SIZE_MAX)]:
14760         Reject sizes of exactly SIZE_MAX bytes.
14761         * lib/xreadlink.c: Include "xalloc.h" before checking whether SIZE_MAX
14762         is defined, since "xalloc.h" now defines SIZE_MAX on modern hosts.
14763
14764 2003-11-05  Bruno Haible  <bruno@clisp.org>
14765
14766         * lib/xsize.h: Include limits.h, to avoid a possible collision with
14767         SIZE_MAX defined in <limits.h> on Solaris.
14768
14769 2003-11-04  Jim Meyering  <jim@meyering.net>
14770
14771         * modules/sysexits: Use the `$(VAR)' notation for AC_SUBST'd
14772         variable names, rather than @VAR@.
14773         * modules/poll: Likewise.
14774
14775 2003-11-04  Bruno Haible  <bruno@clisp.org>
14776
14777         * modules/xsize: New file.
14778         * modules/linebreak: Depend on xsize.
14779         * MODULES.html.sh (func_all_modules): Add xsize.
14780
14781 2003-11-04  Bruno Haible  <bruno@clisp.org>
14782
14783         * m4/xsize.m4: New file.
14784
14785 2003-11-04  Bruno Haible  <bruno@clisp.org>
14786
14787         * lib/xsize.h: New file.
14788         * lib/linebreak.c: Include xsize.h.
14789         (mbs_possible_linebreaks, mbs_width_linebreaks): Check malloc()
14790         argument for overflow.
14791         Suggested by Paul Eggert.
14792
14793 2003-11-03  Karl Berry  <karl@gnu.org>
14794
14795         * config/config.{guess,sub}: update from config.
14796
14797 2003-11-03  Jim Meyering  <jim@meyering.net>
14798
14799         * modules/userspec (lib_SOURCES): Add userspec.h.
14800         (Include): Add "userspec.h".
14801         Improve description.
14802
14803 2003-11-03  Jim Meyering  <jim@meyering.net>
14804
14805         * lib/userspec.c: Include "userspec.h".
14806         * lib/userspec.h: New file.
14807
14808 2003-11-03  Bruno Haible  <bruno@clisp.org>
14809
14810         * m4/wait-process.m4 (gl_WAIT_PROCESS): Also check for waitid.
14811
14812 2003-11-03  Bruno Haible  <bruno@clisp.org>
14813
14814         * lib/wait-process.c (wait_process): Use waitid with WNOWAIT if
14815         available, to avoid (extremely rare) race condition.
14816         Suggested by Paul Eggert.
14817
14818 2003-11-02  Karl Berry  <karl@gnu.org>
14819
14820         * config/srclist.txt (vasprintf.c): sync broken, sigh.
14821
14822 2003-10-31  Paul Eggert  <eggert@twinsun.com>
14823
14824         * lib/mountlist.h (struct mount_entry.me_type_malloced): New member.
14825         * lib/mountlist.c (SIZE_MAX): Define if not defined already.
14826         (read_filesystem_list): Set and use me_type_malloced.
14827         Use "sizeof *me" rather than "sizeof (struct mount_entry)" (or
14828         whatever the type happens to be), for brevity and consistency.
14829         Check for size calculation overflow on Alphas running OSF/1.
14830
14831 2003-10-31  Jim Meyering  <jim@meyering.net>
14832
14833         * lib/hash.c: Include "xalloc.h" for use of xalloc_oversized.
14834
14835         * lib/linebuffer.c: Include <string.h> for declaration of memset.
14836
14837 2003-10-30  Paul Eggert  <eggert@twinsun.com>
14838             Bruno Haible  <bruno@clisp.org>
14839
14840         * lib/vasprintf.c: Include <limits.h>, <stdlib.h>.
14841         (vasprintf): Fail if the resulting length doesn't fit in an 'int'.
14842
14843 2003-10-30  Paul Eggert  <eggert@cs.ucla.edu>
14844
14845         * m4/host-os.m4 (UTILS_HOST_OS): Change netbsd*-gnu pattern back to
14846         netbsd*-gnu*.  Suggested by Robert Millan.
14847
14848 2003-10-29  Paul Eggert  <eggert@twinsun.com>
14849
14850         * modules/group-member: Depend on stdbool.
14851
14852 2003-10-29  Paul Eggert  <eggert@twinsun.com>
14853
14854         * m4/xalloc.m4 (gl_XALLOC): Undo previous change.
14855
14856 2003-10-29  Paul Eggert  <eggert@twinsun.com>
14857
14858         * m4/host-os.m4 (UTILS_HOST_OS): Resurrect netbsd*-gnu.  Add comments
14859         to it, and to knetbsd*-gnu and kfreebsd*-gnu.  Remove the '*' from
14860         after the 'gnu' in these cases.  This fixes some bugs in the
14861         previous change, and is based on suggestions by Robert Millan.
14862
14863 2003-10-29  Paul Eggert  <eggert@twinsun.com>
14864
14865         * lib/xalloc.h (xalloc_oversized): Now a macro, not a function,
14866         so that it works even if SIZE_MAX < N.  Do not include <stdbool.h>;
14867         no longer needed.
14868         * lib/quotearg.c (quotearg_n_options): Use it.
14869         * lib/group-member.c: Include <stdbool.h>.
14870         (free_group_info): Arg is now const *; don't free arg.
14871         (get_group_info): Now returns bool and accepts struct group_info *,
14872         rather than returning a malloc'ed struct group_info *.
14873         All uses changed.  Check for overflow in internal size calculation.
14874
14875         * lib/getusershell.c (readname): Simplify the code by using x2nrealloc
14876         rather than xmalloc/xrealloc.
14877         * lib/linebuffer.c (initbuffer, readlinebuffer): Simplify the code by
14878         using x2realloc rather than xmalloc/xrealloc.  Also, fix a C
14879         conformance bug: the old code used a pointer after freeing the
14880         storage that it addressed.
14881         * lib/hash.c (hash_initialize): Simplify the code by using
14882         xalloc_oversized rather than doing it by hand.
14883         * lib/getgroups.c (getgroups): Don't use xrealloc, since we don't need
14884         the buffer preserved.  Use free and xmalloc instead.
14885         * lib/quotearg.c (quotearg_n_options): Likewise.
14886         Use a simpler test for size overflow.  Don't use xalloc_oversized
14887         because unsigned int might be wider than size_t (!); this suggests
14888         that we should switch from unsigned int to size_t for slot numbers.
14889
14890 2003-10-28  Paul Eggert  <eggert@twinsun.com>
14891
14892         * m4/host-os.m4 (UTILS_HOST_OS): Identify GNU/KFreeBSD and
14893         GNU/KNetBSD.  These implementations use glibc atop the FreeBSD and
14894         NetBSD kernels.  Requested by Richard Stallman.
14895
14896 2003-10-27  Paul Eggert  <eggert@twinsun.com>
14897
14898         * lib/exclude.c (new_exclude): Use xzalloc rather than xmalloc
14899         to allocate the returned structure.  Do not allocate a subarray,
14900         as x2nrealloc will do that.
14901         (add_exclude): Use x2nrealloc to reallocate ex->exclude,
14902         instead of xnrealloc.
14903         (add_exclude_file): Use x2realloc instead of malloc + xnrealloc.
14904
14905 2003-10-27  Bruno Haible  <bruno@clisp.org>
14906
14907         * lib/stdbool_.h: Better support for BeOS.
14908
14909 2003-10-26  Paul Eggert  <eggert@twinsun.com>
14910
14911         * m4/xalloc.m4 (gl_XALLOC): Requore AC_C_INLINE, since xalloc.h
14912         now uses inline.
14913
14914 2003-10-26  Paul Eggert  <eggert@twinsun.com>
14915
14916         * lib/xalloc.h (xalloc_oversized): New static inline function, for
14917         callers that want to do their own size-overflow checking.  Include
14918         <stdbool.h>, since xalloc_oversized returns bool.
14919         * lib/xalloc.c (array_size_overflow): Remove.  All callers changed
14920         to use xalloc_oversized.
14921
14922         Add two functions x2realloc, x2nrealloc, for programs that grow
14923         arrays dynamically by doubling their sizes.
14924         * lib/xalloc.h (x2realloc, x2nrealloc): New decls.
14925         * lib/xmalloc.c (x2nrealloc_inline, x2nrealloc, x2realloc):
14926         New functions.
14927
14928         Port to C99 semantics for 'inline' of external functions.
14929         Bug reported by Bruno Haible.
14930         * lib/xmalloc.c (xnmalloc_inline): New static inline function,
14931         with the old contents of xnmalloc.
14932         (xnmalloc, xmalloc): Use it.
14933         (xnrealloc_inline): New static inline function,
14934         with the old contents of xnrealloc.
14935         (xnrealloc, xrealloc): Use it.
14936
14937         * lib/alloc.c (alloca): xmalloc cannot return NULL, so don't test for
14938         that.
14939
14940 2003-10-26  Karl Berry  <karl@gnu.org>
14941
14942         * config/srclist.txt (COPYING.DOC): no longer available from
14943         /gd/gnuorg; don't know where the ultimate source is.
14944
14945 2003-10-25  Paul Eggert  <eggert@twinsun.com>
14946
14947         Fix several address-calculation bugs in the hash modules,
14948         plus some minor code cleanup.
14949
14950         * lib/hash.h: Include <stdbool.h>, for bool.
14951         * lib/hash.c: Don't include <stdbool.h>, since hash.h does it now.
14952         * lib/hash.h (Hash_hasher, hash_get_n_buckets, hash_get_n_buckets_used,
14953         hash_get_n_entries, hash_get_max_bucket_length,
14954         hash_get_entries, hash_do_for_each, hash_string, hash_initialize,
14955         hash_rehash): Use size_t rather than unsigned.
14956         * lib/hash.c (struct hash_table, hash_get_n_buckets,
14957         hash_get_n_buckets_used, hash_get_n_entries,
14958         hash_get_max_bucket_length, hash_table_ok, hash_print_statistics,
14959         hash_get_entries, hash_do_for_each, hash_string, is_prime,
14960         next_prime, hash_initialize, hash_rehash, hash_delete, hash_print):
14961         Likewise.
14962         (SIZE_MAX): Define if not defined.
14963         (hash_get_max_bucket_length, hash_table_ok, hash_lookup,
14964         hash_get_first, hash_get_next, hash_get_entries, hash_do_for_each,
14965         hash_print):
14966         Use const * when possible.
14967         (hash_string): Use (unsigned char) *P rather than *(unsigned char *) P.
14968         (check_tuning): Fix bug: if tuning parameters were very close to
14969         0 or 1, rounding errors could have caused subscript violations.
14970         (hash_initialize, allocate_entry, hash_print): Remove unnecessary cast.
14971         (hash_initialize): Add 'fail:' label
14972         to free table and return NULL, and use it to simplify code.
14973         Use calloc rather than clearing the storage ourself.
14974         (hash_initialize, hash_rehash): Check for arithmetic overflow in
14975         buffer size calculations.
14976         * lib/hash-pjw.h (hash_pjw): Use size_t, not unsigned.
14977         Include <stddef.h>, for size_t.
14978         * lib/hash-pjw.c (hash_pjw): Likewise.
14979         Switch to method described by Bruno Haible.
14980         Include <limits.h>, for CHAR_BIT.
14981         (SIZE_BITS): New macro.
14982
14983 2003-10-23  Paul Eggert  <eggert@twinsun.com>
14984
14985         * m4/getline.m4 (AM_FUNC_GETLINE):
14986         Don't include getndelim2.o twice into LIBOBJS; this breaks on some
14987         hosts.  Problem reported by Derek Robert Price in
14988         <http://mail.gnu.org/archive/html/bug-gnulib/2003-10/msg00092.html>.
14989         This patch can be withdrawn after Autoconf 2.58 is required for gnulib.
14990         * m4/getndelim2.m4 (gl_GETNDELIM2): Likewise.
14991
14992 2003-10-21  Paul Eggert  <eggert@twinsun.com>
14993
14994         * lib/getndelim2.c (getndelim2): When size calculation overflows,
14995         ceiling the allocation at NMAX bytes rather than silently
14996         discarding input bytes before NMAX is reached.  This makes
14997         a difference only if NMAX exceeds SIZE_MAX / 2.
14998
14999         * lib/obstack.c: Merge from glibc.
15000         [defined _LIBC]: Include <obstack.h>, not "obstack.h".
15001         Add libc_hidden_def (_obstack_newchunk).
15002         (_obstack_free) [! defined _LIBC]: Remove.
15003         [defined _LIBC]: Make a strong alias from obstack_free, rather than
15004         a clone of the function body.
15005         (fputs) [defined _LIBC && defined USE_IN_LIBIO]: Remove.
15006         [defined _LIBC && !defined USE_IN_LIBIO]: Include <libio/iolibio.h>.
15007
15008         * lib/obstack.h: Indenting cleanup, to make it easier to merge with
15009         glibc.
15010         (obstack_grow, obstack_grow0): Remove unnecessary parentheses around
15011         arg to memcpy.
15012
15013         * lib/obstack.h (obstack_1grow_fast): Properly parenthesize arg.
15014         (obstack_ptr_grow_fast, obstack_int_grow_fast):
15015         Don't use lvalue casts, as GCC plans to remove support for them
15016         in GCC 3.5.  Reported by Joseph S. Myers.  This bug
15017         was also present in the non-GCC version, indicating that this
15018         code had always been buggy and had never been widely used.
15019         (obstack_1grow, obstack_ptr_grow, obstack_int_grow, obstack_blank):
15020         Use the fast variant of each macro, rather than copying the
15021         definiens of the fast variant; that way, we'll be more likely to
15022         catch future bugs in the fast variants.
15023
15024 2003-10-20  Bruno Haible  <bruno@clisp.org>
15025
15026         * modules/wait-process: New file.
15027         * MODULES.html.sh (func_all_modules): Add wait-process.
15028
15029 2003-10-20  Bruno Haible  <bruno@clisp.org>
15030
15031         * m4/wait-process.m4: New file.
15032
15033 2003-10-20  Bruno Haible  <bruno@clisp.org>
15034
15035         * lib/wait-process.h: New file, from GNU gettext.
15036         * lib/wait-process.c: New file, from GNU gettext.
15037
15038 2003-10-19  Jim Meyering  <jim@meyering.net>
15039
15040         * lib/vasnprintf.c (vasnprintf): Work around losing snprintf on
15041         HPUX 10.20.
15042
15043 2003-10-18  Karl Berry  <karl@gnu.org>
15044
15045         * config/config.guess: update from config.
15046
15047 2003-10-16  Paul Eggert  <eggert@twinsun.com>
15048
15049         * lib/getgroups.c: Include <errno.h>, <stdlib.h>.
15050         (getgroups): First arg is int, not size_t.
15051         Don't let 'free' mangle errno.
15052
15053 2003-10-16  Paul Eggert  <eggert@twinsun.com>
15054
15055         * README: Mention that gnulib assumes that (foo *) NULL + 0 == NULL.
15056
15057 2003-10-16  Karl Berry  <karl@gnu.org>
15058
15059         * config/config.{guess,sub}: update from config.
15060
15061 2003-10-16  Jim Meyering  <jim@meyering.net>
15062
15063         * lib/xmalloc.c: Include <string.h>, for declarations of memset and
15064         memcpy.
15065
15066 2003-10-15  Paul Eggert  <eggert@twinsun.com>
15067
15068         * lib/exclude.c: Do not include <inttypes.h> or <stdint.h>.
15069         (SIZE_MAX): Remove.
15070         (new_exclude, add_exclude_file): Initial size no longer needs to
15071         be a power of 2.
15072         (add_exclude, add_exclude_file): Use xnrealloc instead of rolling
15073         our own address arithmetic overflow checking.
15074
15075         * lib/fnmatch.c (SIZE_MAX): Define if standard headers don't.
15076         (fnmatch): Do not alloca more than 2000 wide characters;
15077         instead, use malloc for large buffers.
15078         Check for address arithmetic overflow, and return -1
15079         with errno set to ENOMEM in that case.
15080         * lib/fnmatch_loop.c (ALLOCA_LIMIT): New macro.
15081         (NEW_PATTERN): Do not alloca more than 8000 bytes;
15082         instead, return -1.  Check for address arithmetic overflow.
15083
15084 2003-10-14  Paul Eggert  <eggert@twinsun.com>
15085
15086         Handle invalid suffixes and overflow independently, so that
15087         callers can treat them independently as needed.  Fix some bugs in
15088         suffix handling, e.g., "100k@" was not diagnosed as an invalid
15089         suffix for a human-readable blocksize.  The major caller-visible
15090         change is the addition of a new
15091         LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW enum value, indicating
15092         that both overflow and suffix chars were found.
15093
15094         * lib/human.c (humblock): Don't check separately for invalid suffix
15095         char; that is xstrtoumax's job (now that its bug is fixed).
15096         * lib/xstrtoimax.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM) [defined
15097         INTMAX_MAX]: New macros.
15098         * lib/xstrtol.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM, TYPE_MINIMUM,
15099         TYPE_MAXIMUM): New macros.
15100         (bkm_scale, bkm_scale_by_power): Return strtol_error, not int.
15101         (bkm_scale, bkm_scale_by_power, __xstrtol): Return maximal values
15102         if overflow occurs, as it's what __strtol does and it's more useful
15103         in practice.
15104         (__xstrtol): If __strtol reports some error other than ERANGE,
15105         reflect it to the caller as LONGINT_INVALID.  If it reports
15106         ERANGE, continue the rest of parsing, and report LONGINT_OVERFLOW
15107         | LONGINT_INVALID_SUFFIX_CHAR if both errors occur.
15108         * lib/xstrtol.h (LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW): New enum
15109         value.
15110         (_STRTOL_ERROR): Handle it.  Abort when given unknown error codes.
15111         * lib/xstrtoul.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM): New macros.
15112         * lib/xstrtoumax.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM)
15113         [defined UINTMAX_MAX]: New macros.
15114
15115 2003-10-14  Bruno Haible  <bruno@clisp.org>
15116
15117         * modules/fatal-signal: Add m4/sig_atomic_t.m4 to file list.
15118
15119 2003-10-14  Bruno Haible  <bruno@clisp.org>
15120
15121         * m4/sig_atomic_t: New file, from GNU gettext.
15122         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Require gt_TYPE_SIG_ATOMIC_T.
15123
15124 2003-10-14  Bruno Haible  <bruno@clisp.org>
15125
15126         * lib/fatal-signal.h: Improved comments. Suggested by Paul Eggert.
15127         * lib/fatal-signal.c: Use sig_atomic_t. Suggested by Paul Eggert.
15128         Also use volatile where needed.
15129
15130 2003-10-12  Paul Eggert  <eggert@twinsun.com>
15131
15132         * modules/xalloc: Do not depend on 'exit'.  Depend on 'stdbool'.
15133         Change maintainer from Bruno Haible to 'all'.
15134
15135 2003-10-12  Paul Eggert  <eggert@twinsun.com>
15136
15137         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Require AC_C_INLINE.
15138
15139 2003-10-12  Paul Eggert  <eggert@twinsun.com>
15140
15141         * lib/xalloc.h (xnmalloc, xzalloc, xnrealloc, xclone): New decls.
15142         (XMALLOC, XCALLOC, XREALLOC, XFREE, CCLONE, CLONE): Deprecate,
15143         and define in terms of the other primitives.
15144         * lib/xmalloc.c: Include stdbool.h; do not include exit.h.
15145         (SIZE_MAX): Define if not already defined.
15146         (array_size_overflow): New function.
15147         (xalloc_die): Abort instead of exiting if 'error' returns.
15148         (xnmalloc, xnrealloc, xzalloc, xclone): New functions.
15149         (xmalloc, xrealloc): Use them.
15150         (xcalloc): Check for address arithmetic overflow.
15151         * lib/xstrdup.c (xstrdup): Use xclone, since memcpy should be
15152         a bit faster than strcpy.
15153
15154 2003-10-10  Simon Josefsson  <jas@extundo.com>
15155
15156         * modules/argp (Depends-on): Add restrict and strcase.
15157
15158 2003-10-10  Simon Josefsson  <jas@extundo.com>
15159
15160         * m4/argp.m4: Add AC_C_INLINE.
15161
15162 2003-10-08  Paul Eggert  <eggert@twinsun.com>
15163
15164         Merge getpass from libc, plus a few fixes.
15165
15166         * lib/getpass.c (HAVE_STDIO_EXT) [_LIBC]: Define to 1.
15167         Include <stdbool.h>.
15168         Include <stdio_ext.h> if HAVE_STDIO_H, otherwise define
15169         __fsetlocking to empty.
15170         [_LIBC]: Do not include "getline.h" or "unlocked-io.h", but
15171         do include <bits/libc-lock.h>.
15172         Do not include <fcntl.h>; not needed.
15173         [_LIBC]: Include <wchar.h>.
15174         (NOTCANCEL_MODE): New macro.
15175         (flockfile, funlockfile) [_LIBC]: New macros.
15176         (__libc_cleanup_push, __libc_cleanup_pop, __getline, __tcgetattr)
15177         [!_LIBC]: New macros.
15178         (call_fclose): New function.
15179         (getpass): Use it.  Save tty stream separately; this simplifies the
15180         code and makes it more reliable if stdin happens to equal stdout.
15181         Invoke __fsetlocking on tty.
15182         Handle thread cancellation if needed.
15183         Namespace cleanup (use __tcgetattr, __getline).
15184         Use bool for Booleans.
15185         [USE_IN_LIBIO]: Handle wide streams.
15186         [!_LIBC]: Unconditionally do the fseek, since we don't know what
15187         stream might go where.
15188
15189         * lib/unlocked-io.h: Include <stdio.h>, so that the caller
15190         doesn't have to include <stdio.h> before us.
15191         (clearerr_unlocked, feof_unlocked, ferror_unlocked,
15192         fflush_unlocked, fgets_unlocked, fputc_unlocked, fputs_unlocked,
15193         fread_unlocked, fwrite_unlocked, getc_unlocked, getchar_unlocked,
15194         putc_unlocked, putchar_unlocked): Define to the unlocked counterpart
15195         if not declared, so that we can use getpass.c code from libc without
15196         rewriting it.
15197         (flockfile, ftrylockfile, funlockfile): New macros.
15198
15199 2003-10-08  Paul Eggert  <eggert@twinsun.com>
15200
15201         * modules/getpass: Depend on stdbool.
15202
15203 2003-10-08  Paul Eggert  <eggert@twinsun.com>
15204
15205         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for stdio_ext.h.
15206
15207 2003-10-07  Karl Berry  <karl@gnu.org>
15208
15209         * config/config.{guess,sub}: update from config.
15210
15211 2003-10-06  Jim Meyering  <jim@meyering.net>
15212             Bruno Haible  <bruno@clisp.org>
15213
15214         This lets translators provide better translations for the
15215         "Written by ..." part of --version output.
15216         * lib/version-etc.h: Include stdarg.h.
15217         (version_etc_copyright): Declare as readonly.
15218         (version_etc): Make this function variadic with a NULL-terminated list
15219         of author name strings.
15220         (version_etc_va): New declaration.
15221         * lib/version-etc.c: Include stdarg.h, stdlib.h.
15222         (version_etc_copyright): Declare as readonly.
15223         (version_etc_va): New function. Provide a different translatable string
15224         for each possible number of authors < 10. Abbreviate when there are 10
15225         authors or more.
15226         (version_etc): Make this function variadic. Call version_etc_va.
15227         Suggestion from Gary V. Vaughan.
15228
15229         * lib/long-options.h (parse_long_options): Change prototype: the
15230         authors string is moved to the end and becomes variadic.
15231         * lib/long-options.c: Include stdarg.h.
15232         (parse_long_options): Make this function variadic, too.
15233         Call version_etc_va, not version_etc.
15234
15235 2003-10-06  Bruno Haible  <bruno@clisp.org>
15236
15237         * modules/version-etc-2: Remove file.
15238         * MODULES.html.sh (func_all_modules): Remove version-etc-2.
15239
15240 2003-10-06  Bruno Haible  <bruno@clisp.org>
15241
15242         * modules/fatal-signal: New file.
15243         * MODULES.html.sh (func_all_modules): Add fatal-signal.
15244
15245 2003-10-06  Bruno Haible  <bruno@clisp.org>
15246
15247         * m4/fatal-signal.m4: New file.
15248         * m4/signalblocking.m4: New file, from GNU gettext.
15249
15250 2003-10-06  Bruno Haible  <bruno@clisp.org>
15251
15252         * lib/version-etc-2.h: Remove file.
15253         * lib/version-etc-2.c: Remove file.
15254
15255 2003-10-06  Bruno Haible  <bruno@clisp.org>
15256
15257         * lib/fatal-signal.h: New file, from GNU gettext.
15258         * lib/fatal-signal.c: New file, from GNU gettext.
15259
15260 2003-10-05  Paul Eggert  <eggert@twinsun.com>
15261
15262         * README: Rework advice for preventing empty .o files.
15263         Don't recommend ELIDE constructs.  Recommend <stddef.h>,
15264         not <sys/types.h>.
15265
15266 2003-10-04  Karl Berry  <karl@gnu.org>
15267
15268         * lib/argp*: update from libc.
15269
15270 2003-10-04  Karl Berry  <karl@gnu.org>
15271
15272         * config/config.{guess,sub}: update from config.
15273
15274 2003-10-02  Bruno Haible  <bruno@clisp.org>
15275
15276         * modules/lchown (Include): Add lchown.h.
15277         * modules/time_r (Include): Use "..." syntax.
15278         * modules/xgetdomainname (Include): Add xgetdomainname.h.
15279
15280 2003-10-01  Simon Josefsson  <jas@extundo.com>
15281
15282         * MODULES.html.sh (func_all_modules): Move gethostname from section
15283         'based on' to section 'lacking' POSIX:2001.
15284
15285 2003-10-01  Larry Jones  <lawrence.jones@eds.com>
15286
15287         * lib/getpass.c (getpass): Use a no-op fseek when switching from input
15288         to output mode on the same stream.
15289
15290 2003-09-29  Paul Eggert  <eggert@twinsun.com>
15291
15292         * lib/strftime.c (tm_diff) [! HAVE_TM_GMTOFF]:
15293         Fix arg typo in previous patch.
15294
15295 2003-09-28  Jim Meyering  <jim@meyering.net>
15296
15297         * lib/error.c: Correct cpp indentation.
15298
15299 2003-09-27  Paul Eggert  <eggert@twinsun.com>
15300
15301         * modules/free: New file.
15302
15303 2003-09-27  Paul Eggert  <eggert@twinsun.com>
15304
15305         * m4/free.m4: New file.
15306
15307 2003-09-27  Paul Eggert  <eggert@twinsun.com>
15308
15309         * lib/minmax.h (MIN, MAX)
15310         [__STDC__ && defined __GNUC__ && __GNUC__ >= 2]:
15311         Omit the special code that used __typeof__, since we worry that
15312         it could be more trouble than it's worth.  See:
15313         http://mail.gnu.org/archive/html/bug-gnulib/2003-01/msg00090.html
15314         http://mail.gnu.org/archive/html/bug-gnulib/2003-01/msg00095.html
15315
15316         * lib/free.c: New file.
15317
15318 2003-09-27  Oskar Liljeblad  <oskar@osk.mine.nu>
15319
15320         Trivial fixes to Makefile.am parts of module listings.
15321         * modules/strstr: Append strstr.h to lib_SOURCES.
15322         * modules/strcase: Likewise, for strcase.h.
15323
15324 2003-09-27  Karl Berry  <karl@gnu.org>
15325
15326         * config/mkinstalldirs: update from automake.
15327
15328 2003-09-26  Paul Eggert  <eggert@twinsun.com>
15329
15330         * lib/error.c (SIZE_MAX) [!defined SIZE_MAX]: Define.
15331         (error_tail): Do not loop, reallocating temporary buffer, since
15332         the output cannot contain more wide characters than the input
15333         contains bytes, the size must be big enough already.  This avoids
15334         one potential size overflow calculation.  Check for size overflow
15335         when calculating temporary buffer size.  Free temporary buffer
15336         when done, if it was allocated with malloc; this plugs a memory
15337         leak.  Remove casts from void * to pointers, that are no longer
15338         needed now that we're assuming C89 or better.
15339
15340         Merge error changes from glibc.
15341
15342         * lib/error.c, error.h: Update copyright notice header to match glibc.
15343         * lib/error.c [defined _LIBC]: Include <errno.h>, <bits/libc-lock.h>.
15344         (error, error_at_line) [defined _LIBC && defined __libc_ptf_call]:
15345         Disable cancellation while printing error.
15346         * lib/error.h: Prepend __ to parameter names.
15347
15348 2003-09-26  Jim Meyering  <jim@meyering.net>
15349
15350         * lib/error.c (error_tail): Move some declarations
15351         into inner scope where the local variables are used.
15352
15353 2003-09-26  Bruno Haible  <bruno@clisp.org>
15354
15355         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Add comments about the AIX
15356         stpncpy().
15357         Don't define stpncpy through config.h; it's now done through stpncpy.h.
15358
15359 2003-09-26  Bruno Haible  <bruno@clisp.org>
15360
15361         * lib/stpncpy.h (gnu_stpncpy): New declaration.
15362         (stpncpy): Define as alias for gnu_stpncpy.
15363         * lib/stpncpy.c [!_LIBC]: Define gnu_stpncpy, not stpncpy.
15364
15365 2003-09-25  Simon Josefsson  <jas@extundo.com>
15366
15367         * lib/xgetdomainname.h: New file.
15368         * lib/xgetdomainname.c: New file.
15369
15370 2003-09-25  Simon Josefsson  <jas@extundo.com>
15371             Bruno Haible  <bruno@clisp.org>
15372
15373         * modules/getdomainname: New file.
15374         * modules/xgetdomainname: New file.
15375         * MODULES.html.sh (func_all_modules): Add getdomainname,
15376         xgetdomainname.
15377
15378 2003-09-25  Simon Josefsson  <jas@extundo.com>
15379             Bruno Haible  <bruno@clisp.org>
15380
15381         * m4/getdomainname.m4: New file.
15382
15383 2003-09-25  Simon Josefsson  <jas@extundo.com>
15384             Bruno Haible  <bruno@clisp.org>
15385
15386         * lib/getdomainname.h: New file.
15387         * lib/getdomainname.c: New file.
15388
15389 2003-09-25  Karl Berry  <karl@gnu.org>
15390
15391         * lib/argp-fmtstream.c, argp-help.c: update from libc.
15392
15393 2003-09-25  Karl Berry  <karl@gnu.org>
15394
15395         * config/install-sh: update from automake.
15396
15397 2003-09-25  Bruno Haible  <bruno@clisp.org>
15398
15399         * modules/version-etc-2: New file, from modules/version-etc with
15400         modifications.
15401         * MODULES.html.sh (func_all_modules): Add version-etc-2.
15402
15403 2003-09-25  Bruno Haible  <bruno@clisp.org>
15404
15405         * lib/version-etc-2.h: New file, from version-etc.h with modifications.
15406         * lib/version-etc-2.c: New file, from version-etc.c with modifications.
15407
15408 2003-09-24  Simon Josefsson  <jas@extundo.com>
15409
15410         * modules/xgethostname: Add xgethostname.h.
15411
15412 2003-09-24  Paul Eggert  <eggert@twinsun.com>
15413
15414         * lib/linebuffer.c (freebuffer): Don't free the argument, just
15415         the buffer associated with the argument.  Bug reported by
15416         Simon Josefsson.
15417
15418 2003-09-24  Paul Eggert  <eggert@twinsun.com>
15419
15420         * README: Document assumptions that 'int' is at least 32 bits
15421         wide, that integer arithmetic is 2's complement without overflow,
15422         that there are no holes in integer values, that adding sizes of
15423         two nonoverlapping objects can't overflow, and that all-bits-zero
15424         yields scalar zero.  Fix spelling and capitalization typos.
15425
15426 2003-09-19  Karl Berry  <karl@gnu.org>
15427
15428         * lib/argp.h: update from libc.
15429
15430 2003-09-17  Paul Eggert  <eggert@twinsun.com>
15431
15432         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Call AC_BEFORE first,
15433         to avoid spurious warnings like "AC_RUN_IFELSE was called before
15434         gl_USE_SYSTEM_EXTENSIONS" from autoreconf.
15435
15436 2003-09-17  Paul Eggert  <eggert@twinsun.com>
15437
15438         * gnulib-tool: Use "test -h", not "test -L", for portability
15439         to Solaris 8 /bin/sh.  (This bug is fixed in Solaris 9.)
15440         (tags_regexp): Remove, since \| doesn't conform to POSIX.
15441         (sed_extract_prog): Issue s commands one-by-one, rather than
15442         using \| in one s command.
15443
15444 2003-09-16  Paul Eggert  <eggert@twinsun.com>
15445
15446         * lib/linebuffer.c (readlinebuffer): Return NULL immediately upon
15447         input error, instead of returning NULL the next time we are called
15448         (and therefore losing track of errno).
15449
15450 2003-09-16  Bruno Haible  <bruno@clisp.org>
15451
15452         * gnulib-tool (func_create_testdir): Warn about duplicated
15453         dependencies.
15454
15455 2003-09-15  Paul Eggert  <eggert@twinsun.com>
15456
15457         * modules/argmatch, modules/fatal, modules/obstack,
15458         modules/xalloc, modules/xgethostname: Sort dependencies by
15459         importance, not alphabetically.
15460
15461 2003-09-15  Paul Eggert  <eggert@twinsun.com>
15462
15463         * lib/getndelim2.c (getndelim2): Don't trash errno when a read
15464         fails, so that the caller gets the proper errno.
15465
15466         * lib/readutmp.c (read_utmp): Likewise.
15467         Check for fstat error.  Close stream and free storage
15468         when failing.
15469
15470 2003-09-14  Karl Berry  <karl@gnu.org>
15471
15472         * config/srclist.txt (strdup.c): disable for c89 changes.
15473
15474 2003-09-14  Jim Meyering  <jim@meyering.net>
15475
15476         * lib/getloadavg.c: Correct cpp indentation.
15477         * lib/strdup.c: Likewise.
15478         * lib/vasnprintf.c: Likewise.
15479
15480 2003-09-14  Bruno Haible  <bruno@clisp.org>
15481
15482         * modules/fwriteerror: New file.
15483         * MODULES.html.sh (func_all_modules): Add fwriteerror.
15484
15485 2003-09-14  Bruno Haible  <bruno@clisp.org>
15486
15487         * lib/fwriteerror.h: New file.
15488         * lib/fwriteerror.c: New file.
15489
15490 2003-09-12  Paul Eggert  <eggert@twinsun.com>
15491
15492         * modules/argmatch, modules/exitfail, modules/fatal, modules/obstack,
15493         modules/xgethostname, modules/xalloc: Depend on exit.
15494
15495 2003-09-12  Paul Eggert  <eggert@twinsun.com>
15496
15497         * m4/error.m4: Require AC_FUNC_STRERROR_R rather than invoking it.
15498
15499         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Require AC_AIX
15500         and AC_MINIX, too, so that their extensions are available.
15501
15502         * m4/prereq.m4 (jm_PREREQ_ADDEXT): Remove.  All uses removed.
15503         This macro has been superseded by gl_BACKUPFILE.
15504
15505         More patches to assume C89 or better.
15506
15507         * m4/error.m4 (gl_ERROR): Don't check for vprintf.
15508
15509         * m4/check-decl.m4 (jm_CHECK_DECLS): Include <string.h>, <stdlib.h>
15510         unconditionally.
15511         * m4/closeout.m4 (gl_CLOSEOUT): Don't check for stdlib.h.
15512         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER):
15513         Include <string.h>, <stdlib.h> unconditionally.
15514         * m4/lstat.m4 (gl_PREREQ_LSTAT): Don't check for stdlib.h, free.
15515         * m4/readdir.m4 (GL_FUNC_READDIR): Don't check for string.h.
15516         * m4/readutmp.m4 (gl_PREREQ_READUTMP): Don't check for standard C
15517         headers or for string.h.
15518         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Don't check for stdlib.h
15519         or strtoul.
15520
15521         * m4/mkstemp.m4 (jm_PREREQ_TEMPNAME): Do not require standard C
15522         headers.
15523         * m4/strdup.m4 (gl_PREREQ_STRDUP): Likewise.
15524         * m4/userspec.m4 (gl_USERSPEC): Likewise.
15525         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Likewise.
15526         * m4/xstrtod.m4 (gl_XSTRTOD): Likewise.
15527         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
15528         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't check for limits.h,
15529         memcpy, memset.
15530         (jm_FUNC_GNU_STRFTIME): Don't require standard C headers.
15531         * m4/strtod.m4 (gl_FUNC_STRTOD): Do not check for float.h.
15532         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Do not check for stdlib.h,
15533         strtol.
15534         * m4/strtol.m4 (gl_FUNC_STRTOL): Do not check for limits.h.
15535         * m4/userspec.m4 (gl_USERSPEC): Do not check for string.h.
15536         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Do not check for string.h, strtol,
15537         strtoul.
15538
15539 2003-09-12  Paul Eggert  <eggert@twinsun.com>
15540
15541         * lib/argmatch.c, fatal.c, xgethostname.c, xmalloc.c: Include exit.h.
15542         * lib/obstack.c [!defined _LIBC]: Likewise.
15543         * lib/argmatch.c (EXIT_FAILURE): Remove; now done by exit.h
15544         * lib/exitfail.c, fatal.c, xgethostname.c, xmalloc.c: Likewise.
15545         * lib/exitfail.c: Don't include stdlib.h; no longer needed.
15546
15547         More changes to assume C89 or better.
15548
15549         * lib/error.c (error_tail): Assume vprintf.
15550
15551         * lib/argmatch.c (getenv): Remove decl.
15552         * lib/progreloc.c (get_full_program_name): Define via prototype.
15553         * lib/setenv.c (clearenv): Likewise.
15554         * lib/stpncpy.c: Do not include <string.h> or <sys/types.h>; not
15555         needed.
15556         * lib/strdup.c: Include <stdlib.h>, <string.h> unconditionally.
15557         (malloc, memcpy): Remove decls.
15558         * lib/strftime.c (HAVE_LIMITS_H, STDC_HEADERS) [defined _LIBC]: Remove.
15559         (HAVE_MEMCPY) [defined emacs && !defined HAVE_BCOPY]: Remove.
15560         Include <limits.h>, <stddef.h>, <stdlib.h>, <string.h> unconditionally.
15561         (memcpy): Remove macro.
15562         (MEMCPY) [!defined COMPILE_WIDE]: Define to memcpy unconditionally.
15563         (__P): Remove.  All uses removed.
15564         (PTR): Remove.  All uses changed to void *.
15565         (CHAR_BIT, NULL): Remove.
15566         (spaces, zeros, memset_space, memset_zero)
15567         [!defined memset && !defined HAVE_MEMSET && !defined _LIBC]:
15568         Remove.
15569         (LOCALE_PARAM, LOCALE_PARAM_DECL): Remove.
15570         (memcpy_lowcase, memcpy_uppcase, tm_diff, iso_week_days):
15571         Define with prototype.
15572         Remove now-unnecessary prototype decl.
15573         (extra_args_spec): Assume ANSI C.  All uses changed.
15574         (extra_args_spec_iso): Remove.
15575         (my_strftime, emacs_strftimeu): Define via prototype.
15576         * lib/strtod.c: Include <float.h>, <stdlib.h>, <string.h>
15577         unconditionally.
15578         (DBL_MAX, DBL_MIN, HUGE_VAL, NULL): Remove decls.
15579         * lib/strtoimax.c: Include <stdlib.h> unconditionally.
15580         (strtoul, strtol): Remove decls.
15581         * lib/strtol.c (STDC_HEADERS, HAVE_LIMITS_H, NULL, ULONG_MAX,
15582         LONG_MAX): Remove.
15583         Include <limits.h>, <stddef.h>, <stdlib.h>, <string.h> unconditionally.
15584         (LOCALE_PARAM_DECL): Remove.  All uses changed to LOCALE_PARAM_PROTO.
15585         (LOCALE_PARAM_PROTO): New macro.
15586         (INTERNAL, INTERNAL1, WEAKNAME): Assume ANSI C, not K&R.
15587         (INTERNAL (strtol), strtol): Define with a prototype.
15588         (PARAMS): Remove.  All uses removed.
15589         * lib/tempname.c: Include <string.h> unconditionally.
15590         * lib/userspec.c: Include <stdlib.h>, <string.h> unconditionally.
15591         * lib/xgethostname.c (main): Define with a prototype.
15592         * lib/xmalloc.c: Include "xalloc.h" first, to check interface.
15593         Include <stdlib.h> unconditionally.
15594         (calloc, malloc, realloc, free): Remove decls.
15595         * lib/xstrtod.c: Include "xstrtod.h" first, to check interface.
15596         Include <stdlib.h> unconditionally.  Sort include file names.
15597         (strtod): Remove.
15598         (xstrtod): Define with a prototype.
15599         * lib/xstrtol.c: Include <stdlib.h>, <string.h> unconditionally.
15600         (strtol, strtoul): Remove decls.
15601
15602 2003-09-11  Paul Eggert  <eggert@twinsun.com>
15603
15604         More patches to assume C89 or better.
15605         * m4/strndup.m4 (gl_PREREQ_STRNDUP): Remove STDC_HEADERS check.
15606         * m4/strnlen.m4 (gl_PREREQ_STRNLEN): Don't check for memory.h,
15607         string.h, memchr, STDC_HEADERS.
15608
15609 2003-09-11  Paul Eggert  <eggert@twinsun.com>
15610
15611         * lib/strndup.c: Don't include <stdio.h>, <sys/types.h>.
15612         Include <stdlib.h>, <string.h> unconditionally.
15613         Remove now-unnecessary cast to char *.
15614         * lib/strnlen.c: Include <string.h> unconditionally.
15615         * lib/yesno.c (yesno): Define with a prototype.
15616
15617 2003-09-11  Bruno Haible  <bruno@clisp.org>
15618
15619         * config/srclist.txt (setenv.c, unsetenv.c): Disable for the moment.
15620
15621 2003-09-10  Jim Meyering  <jim@meyering.net>
15622
15623         * lib/error.c: Correct indentation of cpp directives.
15624
15625 2003-09-10  Bruno Haible  <bruno@clisp.org>
15626
15627         * m4/strcspn.m4 (gl_PREREQ_STRCSPN): Remove <string.h> check.
15628         * m4/strpbrk.m4 (gl_PREREQ_STRPBRK): Remove <string.h> check.
15629         * m4/strstr.m4 (gl_PREREQ_STRSTR): Remove <string.h> check.
15630         * m4/unicodeio.m4 (gl_UNICODEIO): Remove <string.h> check.
15631         * m4/setenv.m4 (gl_PREREQ_SETENV, gl_PREREQ_UNSETENV): Remove
15632         <stdlib.h> and <string.h> checks.
15633         * m4/xreadlink.m4 (gl_XREADLINK): Remove <stdlib.h> check.
15634         * m4/yesno.m4 (gl_YESNO): Remove <stdlib.h> check.
15635
15636 2003-09-10  Bruno Haible  <bruno@clisp.org>
15637
15638         * lib/strcspn.c: Include <string.h> unconditionally.
15639         * lib/strpbrk.c: Include <string.h> unconditionally.
15640         * lib/strstr.c: Include <string.h> unconditionally.
15641         * lib/unicodeio.c: Include <string.h> unconditionally.
15642         * lib/setenv.c: Include <stdlib.h> and <string.h> unconditionally.
15643         * lib/unsetenv.c: Likewise.
15644         * lib/xreadlink.c: Include <stdlib.h> unconditionally.
15645         * lib/yesno.c: Include <stdlib.h> unconditionally.
15646         (rpmatch): Add prototype.
15647
15648 2003-09-09  Paul Eggert  <eggert@twinsun.com>
15649
15650         More patches to assume C89 or better.
15651         * m4/getcwd.m4 (AC_FUNC_GETCWD_NULL): Don't check for stdlib.h.
15652         * m4/getopt.m4 (gl_GETOPT): Don't check for string.h.
15653         * m4/getugroups.m4 (gl_GETUGROUPS): Do not check for standard C headers
15654         or for string.h.
15655         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Do not check for
15656         stdlib.h.
15657         * m4/group-member.m4 (gl_PREREQ_GROUP_MEMBER): Do not require standard
15658         C headers.
15659         * m4/hard-locale.m4 (gl_HARD_LOCALE): Do not check for stdlib.h,
15660         string.h.
15661         * m4/hash.m4 (gl_HASH): Do not check for stdlib.h, malloc, free.
15662         * m4/human.m4 (gl_HUMAN): Do not check for stdlib.h, string.h, getenv.
15663         * m4/idcache.m4 (gl_IDCACHE): Do not check for standard C headers,
15664         or for string.h.
15665         * m4/long-options.m4 (gl_LONG_OPTIONS): Do not check for stdlib.h.
15666         * m4/makepath.m4 (gl_MAKEPATH): Do not check for string.h or standard
15667         C headers.
15668         * m4/md5.m4 (gl_MD5): Don't check for limits.h, standard C headers,
15669         memcpy.
15670         * m4/sha.m4 (gl_SHA): Don't check for standard Cheaders, memcpy.
15671         * m4/memchr.m4 (jm_PREREQ_MEMCHR): Don't check for limits.h, stdlib.h.
15672         * m4/memcmp.m4 (gl_PREREQ_MEMCMP): Don't check for string.h.
15673         * m4/memcoll.m4 (gl_MEMCOLL): Likewise.
15674         * m4/memrchr.c (gl_PREREQ_MEMRCHR): Don't check for limits.h.
15675         * m4/mkdir-slash.m4 (gl_PREREQ_MKDIR): Don't check for stdlib.h,
15676         string.h, free.
15677         * m4/mktime.m4 (gl_PREREQ_MKTIME): Don't check for standard C headers.
15678         * m4/modechange.m4 (gl_MODECHANGE): Don't check for standard C headers.
15679         * m4/mountlist.m4 (gl_PREREQ_MOUNTLIST_EXTRA): Don't check for standard
15680         C headers, or for string.h.
15681         * m4/obstack.m4 (gl_OBSTACK): Don't check for stddefe.h, string.h.
15682         (gl_PREREQ_OBSTACK): Don't check for stdlib.h.
15683         * m4/path-concat.m4 (gl_PATH_CONCAT): Don't check for standard C
15684         headers, memory.h, stdlib.h, string.h, strings.h.
15685         * m4/posixtm.m4 (gl_POSIXTM): Don't check for stdlib.h, string.h.
15686         * m4/posixver.m4 (gl_POSIXVER): Don't check for getenv.
15687         * m4/putenv.m4 (gl_PREREQ_PUTENV): Don't check for string.h, memcpy,
15688         strchr.
15689         * m4/readtokens.m4 (gl_READTOKENS): Don't check for standard C
15690         headers, memory.h, string.h.
15691         * m4/regex.m4 (jm_PREREQ_REGEX): Do not check for limits.h, string.h.
15692         * m4/rename.m4 (gl_PREREQ_RENAME): Do not check for stdlib.h, string.h,
15693         free.
15694         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Don't check for standard C
15695         headers.
15696         * m4/same.m4 (gl_SAME): Don't check for stdlib.h, string.h, free.
15697         * m4/save-cwd.m4 (gl_SAVE_CWD): Don't check for standard C headers.
15698         * m4/savedir.m4 (gl_SAVEDIR): Don't check for standard C headers.
15699         * m4/strchrnul.m4 (gl_PREREQ_STRCHRNUL): Don't check for string.h.
15700         * m4/xgetcwd.m4 (gl_XGETCWD): Don't check for stdlib.h.
15701
15702 2003-09-09  Paul Eggert  <eggert@twinsun.com>
15703
15704         More K&R removal.
15705
15706         * lib/acosl.c (main): Use a prototype.
15707         * lib/asinl.c, cosl.c, expl.c, frexpl.c, ldexpl.c, sinl.c,
15708         tanl.c: Likewise.
15709
15710         * lib/getloadavg.c (getloadavg, main): Define via prototypes.
15711
15712         * lib/getopt.h (struct option.name): Assume C89, and use 'const'.
15713         (getopt, etopt_long, getopt_long_only, _getopt_internal)
15714         [defined __GNU_LIBRARY__]: Assume C89, so we can always declare
15715         with a prototype.
15716         * lib/getopt.c (const): Remove macro.
15717         Include <string.h> unconditionally.
15718         (my_index): Remove; all uses changed to strchr.
15719         (strlen): Remove decl.
15720         (exchange): Remove forward decl; no longer needed.
15721         (exchange, _getopt_initialize, _getopt_internal, getopt, main):
15722         Define with prototype.
15723         * lib/getopt1.c (const): Remove macro.
15724         (getopt_long, getopt_long_only, main): Define with prototype.
15725
15726         * lib/getugroups.c: Include <string.h> unconditionally.
15727
15728         * lib/getusershell.c: Include <stdlib.h> unconditionally.
15729         (getusershell, setusershell, endusershell, readname, main):
15730         Define with prototypes.
15731
15732         * lib/group-member.c: Include group-member.h first.
15733         Include <stdlib.h> unconditionally.
15734
15735         * lib/hard-locale.c: Include hard-locale.h first.
15736         Include <stdlib.h>, <string.h> unconditionally.
15737
15738         * lib/hash.c (free, malloc): Remove decls.
15739         Include <stdlib.h> unconditionally.
15740
15741         * lib/human.c: Include <stdlib.h>, <string.h> unconditionally.
15742         (getenv): Do not declare.
15743
15744         * lib/idcache.c: Include <string.h> unconditionally.
15745
15746         * lib/long-options.c: Include long-options.h first, to test interface.
15747         Include <stdlib.h> unconditionally.
15748
15749         * lib/makepath.c: Include makepath.h first, to test interface.
15750         Include <stdlib.h> and <string.h> unconditionally.
15751
15752         * lib/linebuffer.c: Include <stdlib.h>.
15753         (free): Remove decl.
15754
15755         * lib/malloc.c: Include <stdlib.h>, for malloc; don't bother with
15756         stddef.h. rpl_malloc returns void *, not char *.
15757         * lib/realloc.c (rpl_realloc): Likewise.  Also, define with a
15758         prototype.
15759
15760         * lib/md5.h: Include <limits.h> unconditionally.
15761         (UINT_MAX_32_BITS): Don't worry about non-__STDC__ case.
15762         (__P): Remove; all uses removed.
15763         * lib/md5.c: Include "md5.h" first.
15764         (md5_init_ctx, md5_read_ctx, md5_finish_ctx, md5_stream,
15765         md5_buffer, md5_process_bytes, md5_process_block):
15766         Define with prototypes.
15767         * lib/sha.h (__P): Remove all uses.  (It wasn't defined??)
15768         * lib/sha.c: Include "sha.h" first.
15769         Include <stdlib.h>, <string.h> unconditionally.
15770
15771         * lib/memchr.c (__ptr_t): Remove; all uses changed to void *.
15772         * lib/memcmp.c (__ptr_t): Likewise.
15773         * lib/memrchr.c (__ptr_t): Likewise.
15774         * lib/memchr.c, memcmp.c, memcoll.c, memrchr.c:
15775         Include <string.h> unconditionally.
15776         * lib/memchr.c, memrchr.c: Include <limits.h> unconditionally.
15777         * lib/memchr.c: Include <stdlib.h> unconditionally.
15778         * lib/memchr.c (LONG_MAX): Remove.
15779         * lib/memrchr.c (LONG_MAX): Likewise.
15780         * lib/memchr.c (__memchr): Define via a prototype.
15781         * lib/memrchr.c (__memrchr): Likewise.
15782         * lib/memcmp.c (__P): Remove, and remove all uses.
15783         (memcmp_bytes, memcmp_common_alignment, memcmp_not_common_alignment):
15784         Remove forward decls; no longer needed.
15785         * lib/memcpy.c, memmove.c, memset.c: Include <stddef.h>.
15786         Use types required by C89 in prototype.
15787
15788         * lib/mkdir.c: Include <stdlib.h>, <string.h> unconditionally.
15789         * lib/savedir.c: Likewise.
15790         * lib/mkdir.c (free): Remove decl.
15791         * lib/rmdir.c (rmdir): Define with a prototype.
15792         * lib/savedir.c: Include savedir.h first, to test interface.
15793
15794         * lib/mktime.c (STDC_HEADERS): Remove.
15795         Include <stdlib.h>, <string.h> unconditionally.
15796
15797         * lib/modechange.c: Include <stdlib.h> unconditionally.
15798         (malloc): Remove decl.
15799
15800         * lib/mountlist.c: Include <stdlib.h>, <string.h> unconditionally.
15801         (free): Remove decl.
15802
15803         * lib/obstack.h (PTR_INT_TYPE) [!defined __PTRDIFF_TYPE__]:
15804         Define to ptrdiff_t, without bothering to check HAVE_STDDEF_H.
15805         (This type really should be intptr_t, but that's a C99ism.)
15806         (_obstack_memcpy): Remove: all uses changed to memcpy.
15807         Include <string.h> unconditionally.
15808         (struct obstack): Assume __STDC__ for types of members
15809         chunkfun, freefun, extra_arg.
15810         (_obstack_newchunk, _obstack_free, _obstack_begin, _obstack_begin_1,
15811         _obstack_memory_used, obstack_alloc_failed_handler, obstack_init,
15812         obstack_begin, obstack_specify_allocation,
15813         obstack_specify_allocation_with_arg, obstack_chunkfun,
15814         obstack_freefun, obstack_free) [! (defined __STDC__ && __STDC__)]:
15815         Remove unprototyped decls and the macros that use them.
15816         * lib/obstack.c (POINTER): Remove.  All uses changed to void *.
15817         (obstack_alloc_failed_handler, CALL_CHUNKFUN, CALL_FREEFUN,
15818         _obstack_begin, _obstack_begin_1, _obstack_allocated_p)
15819         (defined __STDC__ && __STDC__)]:
15820         Remove nonprototyped code.
15821         Include <stdlib.h> unconditionally.
15822         (_obstack_begin, _obstack_begin_1, _obstack_newchunk,
15823         _obstack_allocated_p, _obstack_free, obstack_free,
15824         _obstack_memory_used, print_and_abort):
15825         Define using prototypes.
15826         (obstack_1grow, obstack_1grow_fast, obstack_alloc, obstack_base,
15827         obstack_blank, obstack_blank_fast, obstack_copy, obstack_copy0,
15828         obstack_finish, obstack_grow, obstack_grow0, obstack_make_room,
15829         obstack_next_free, obstack_object_size, obstack_room) [0]:
15830         Remove unused, unprototyped code.
15831
15832         * lib/path-concat.c: Include <stdlib.h>, <string.h> unconditionally.
15833
15834         * lib/physmem.c (physmem_total, physmem_available, main): Define
15835         with prototypes.
15836
15837         * lib/posixtm.c: Include <stdlib.h>, <string.h> unconditionally.
15838         (main): Define with a prototype.
15839
15840         * lib/posixver.c (getenv): Remove decl.
15841
15842         * lib/putenv.c (malloc): Returns void *, not char *.
15843         Include <string.h> unconditionally.
15844         (strchr, memcpy, NULL): Do not define.
15845
15846         * lib/readtokens.c: Include readtokens.h first, to test interface.
15847         Include <stdlib.h>, <string.h> unconditionally.
15848         (init_tokenbuffer): Define with a prototype.
15849
15850         * lib/regex.c (PARAMS): Remove.  All uses removed.
15851         All uses of _RE_ARGS removed, too.
15852         Include <stddef.h>, <stdlib.h>, <string.h>, <limits.h>
15853         unconditionally.
15854         (bzero): Assume memset exists.
15855         (memcmp, memcpy, NULL): Remove.
15856         (SIGN_EXTEND_CHAR): Remove; all uses replaced by casts to signed
15857         char, or assignments to local vars of type signed char.
15858         (init_syntax_once, PREFIX(extract_number_and_incr),
15859         PREFIX(print_partial_compiled_pattern),
15860         PREFIX(print_compiled_pattern), PREFIX(print_double_string),
15861         convert_mbs_to_wcs, print_fastmap, re_set_syntax,
15862         PREFIX(regex_grow_registers), PREFIX(regex_compile),
15863         PREFIX(store_op1), PREFIX(store_op2), PREFIX(insert_op1),
15864         PREFIX(insert_op2), PREFIX(at_begline_loc_p),
15865         PREFIX(at_endline_loc_p), group_in_compile_stack, insert_space,
15866         wcs_compile_range, byte_compile_range, truncate_wchar,
15867         PREFIX(re_compile_fastmap), re_compile_fastmap, re_set_registers,
15868         re_search, re_search_2, PREFIX(re_search_2), re_match, re_match_2,
15869         count_mbs_length, wcs_re_match_2_internal,
15870         byte_re_match_2_internal, PREFIX(group_match_null_string_p),
15871         PREFIX(alt_match_null_string_p),
15872         PREFIX(common_op_match_null_string_p), PREFIX(bcmp_translate),
15873         re_compile_pattern, re_comp, re_exec, regcomp, regexec, regerror,
15874         regfree, PREFIX(extract_number)): Define with prototype.  Remove
15875         now-unnecessary declaration, if any.
15876         (byte_compile_range, PREFIX(regex_compile), re_comp, re_exec,
15877         regcomp, regexec):
15878         Remove now-unnecessary casts among pointer types.
15879         * lib/regex.h (_RE_ARGS): Remove.  All uses removed.
15880
15881         * lib/rename.c: Include <stdlib.h>, <string.h> unconditionally.
15882         (free): Remove decl.
15883
15884         * lib/rpmatch.c: Include <stdlib.h> unconditionally.
15885
15886         * lib/same.c: Include <stdlib.h>, <string.h> unconditionally.
15887         (free): Remove decl.
15888
15889         * lib/save-cwd.c: Include <stdlib.h> unconditionally.
15890         * lib/xgetcwd.c: Likewise.
15891
15892         * lib/stat.c: Include <stdlib.h>, <string.h> unconditionally.
15893         (free): Remove decl.
15894
15895         * lib/strchrnul.c (strchrnul): Define with a prototype.
15896         Fix bug: c_in was not converted to char before searching.
15897
15898         The following changes are not K&R related:
15899
15900         * lib/group-member.h: Include <sys/types.h>, so that this file is
15901         self-contained.
15902         * lib/makepath.h: Likewise.
15903
15904         * lib/getusershell.c (readname, default_index, line_size, readname):
15905         Use size_t, not int, for sizes.
15906         (readname): If the size overflows, report an error instead of
15907         looping forever.
15908
15909 2003-09-09  Paul Eggert  <eggert@twinsun.com>
15910
15911         * config/srclist.txt: Do not get getopt.h, getopt1.c, or regex.h from
15912         libc.
15913
15914 2003-09-09  Paul Eggert  <eggert@twinsun.com>
15915
15916         * README: New section: portability guidelines.
15917
15918 2003-09-09  Derek Robert Price  <derek@ximbiot.com>
15919
15920         * m4/getndelim2.m4 (gl_PREREQ_GETNDELIM2): Assume stdlib.h per the
15921         C89 spec.
15922
15923 2003-09-09  Derek Robert Price  <derek@ximbiot.com>
15924
15925         * lib/getndelim2.c: Assume stdlib.h per the C89 spec.
15926
15927 2003-09-08  Paul Eggert  <eggert@twinsun.com>
15928
15929         Assume C89 or better; remove K&R cruft.
15930         A few of these changes were first proposed by Derek Robert Price
15931         in <http://mail.gnu.org/archive/html/bug-gnulib/2003-07/msg00105.html>.
15932
15933         * lib/addext.c: Include <string.h> unconditionally.
15934         * lib/backupfile.c: Include <string.h>, <stdlib.h> unconditionally.
15935         Don't declare getenv or malloc.
15936
15937         * lib/alloca.c: Include <string.h>, <stdlib.h> unconditionally.
15938         (POINTER_TYPE, pointer): Remove; all uses changed to void *.
15939         (NULL): Remove.
15940         (find_stack_direction, alloca): Use prototypes.
15941
15942         * lib/atexit.c (atexit): Define using a prototype.
15943
15944         * lib/basename.c, dirname.c, stripslash.c:
15945         Include <string.h> unconditionally.
15946
15947         * lib/bcopy.c: Include <stddef.h>.
15948         (bcopy): Define with prototype, using 'const' and 'void' and 'size_t'.
15949
15950         * lib/canon-host.c: Include <stdlib.h>, <string.h> unconditionally.
15951
15952         * lib/error.h (error, error_at_line, error_print_progname)
15953         [! (defined (__STDC__) && __STDC__)]: Remove decls.
15954         * lib/error.c: Include error.h first, to check interface.
15955         Include <stdarg.h>, <stdlib.h>, <string.h> unconditionally.
15956         (VA_START): Remove; all uses changeed to va_start.
15957         (exit, strerror): Remove decls.
15958         (error_print_progname): Prototype uncondionally.
15959         Don't include <errno.h>; no longer needed.
15960         (private_strerror): Remove.
15961         (error_tail): Always define.
15962         (error, error_at_line): Assume C89 or better; always use prototypes.
15963         * lib/fatal.c: Include "fatal.h" first, to test interface.
15964         Include <stdarg.h>, <stdlib.h>, <string.h> unconditionally.
15965         (VA_START): Remove; all uses changed to va_start.
15966         [! (HAVE_VPRINTF || HAVE_DOPRNT || _LIBC)]: Remove support for
15967         this case.
15968         (exit): Remove decl.
15969         (fatal): Prototype unconditionally.  Assume va_start works.
15970         Abort at end, to pacify gcc.
15971
15972         * lib/euidaccess.c (main): Define with a prototype.
15973
15974         * lib/exclude.c: Include <stdlib.h>, <string.h> unconditionally.
15975
15976         * lib/exitfail.c: Include <stdlib.h> unconditionally.
15977
15978         * lib/fnmatch_.h (__P): Remove.  All uses changed to assume
15979         prototypes.
15980         * lib/fnmatch.c: Include fnmatch.h first, to test interface.
15981         Include <string.h>, <stddef.h>, <stdlib.h> unconditionally.
15982         (getenv): Remove decl.
15983         (fnmatch): Define using a prototype.
15984         * lib/fnmatch_loop.c (FCT): Remove forward decl; no longer needed.
15985         (FCT): Define using a prototype.
15986
15987         * lib/getdate.y: Include <stdlib.h>, <string.h> unconditionally.
15988
15989         * lib/gethostname.c: Include <stddef.h>.
15990         (gethostname): Define with prototype.  Length is size_t, not int.
15991
15992 2003-09-08  Paul Eggert  <eggert@twinsun.com>
15993
15994         Assume C89 or better; remove K&R cruft.
15995         * m4/alloca.m4 (gl_PREREQ_ALLOCA): Don't check for stdlib.h, string.h.
15996         * m4/backupfile.m4 (gl_BACKUPFILE): Don't check for stdlib.h,
15997         string.h, getenv, malloc.
15998         * m4/dirname.m4 (gl_DIRNAME): Don't check for string.h or C standard
15999         headers.
16000         * m4/canon-host.m4 (gl_CANON_HOST): Don't check for string.h, stdlib.h.
16001         * m4/error.m4 (jm_PREREQ_ERROR): Do not require STDC headers, and
16002         do not check for strerror.
16003         * m4/exclude.m4: Do not check for stdlib.h, string.h, strings.h.
16004         * m4/exitfail.m4 (gl_EXITFAIL): Do not check for stdlib.h.
16005         * m4/fatal.m4 (gl_FATAL): Do not require STDC headers, and
16006         do not check for doprnt or vprintf.
16007         * m4/fnmatch.m4 (gl_PREREQ_FNMATCH_EXTRA): Remove.  All uses removed.
16008         * m4/getdate.m4 (gl_GETDATE): Don't check for stdlib.h or string.h.
16009
16010 2003-09-08  Paul Eggert  <eggert@twinsun.com>
16011
16012         * lib/getversion.c: Remove; was migrated to backupfile.c in 1997.
16013         getversion.c should have been removed then, but was accidentally
16014         preserved.
16015
16016         * lib/utime.c [!HAVE_UTIMES_NULL]: Include <sys/stat.h>, <fcntl.h>.
16017         (utime_null): Fix typo: 'st' was sometimes called 'sb'.
16018
16019 2003-09-08  Karl Berry  <karl@gnu.org>
16020
16021         * config/config.sub, config.guess, srclistvars.sh: update from savannah
16022                 config, forget about prep.
16023
16024         * config/depcomp, missing: update from automake.
16025
16026 2003-09-07  Paul Eggert  <eggert@twinsun.com>
16027
16028         * modules/time_r: Depend on 'restrict'.  Fix from Simon Josefsson in
16029         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00028.html>.
16030
16031 2003-09-07  Paul Eggert  <eggert@twinsun.com>
16032
16033         * lib/time_r.c (gmtime_r, localtime_r): Fix silly typo: missing arg to
16034         copy_tm_result.  Bug reported by Simon Josefsson in
16035         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00028.html>.
16036
16037 2003-09-06  Paul Eggert  <eggert@twinsun.com>
16038
16039         * m4/time_r.m4: New file.
16040         * m4/mktime.m4 (gl_PREREQ_MKTIME): Remove check for limits.h.
16041         * m4/timegm.m4 (gl_FUNC_TIMEGM): Assume that timegm is buggy if mktime
16042         is. Check for timegm declaration.
16043         (gl_PREREQ_TIMEGM): Require gl_FUNC_MKTIME.
16044         Do not check for gmtime_r.
16045         Replace mktime if __mktime_internal does not exist and if mktime
16046         hasn't been replaced already.
16047
16048 2003-09-06  Paul Eggert  <eggert@twinsun.com>
16049
16050         * lib/time_r.c, time_r.h: New files.
16051
16052         * lib/mktime.c (my_mktime_localtime_r): Remove; all uses changed to
16053         __localtime_r.
16054         (__localtime_r) [!defined _LIBC]: New macro.  Include <time_r.h>.
16055         (__mktime_internal) [!defined _LIBC]: Now extern, not static.
16056
16057         * lib/strftime.c (my_strftime_gmtime_r): Remove; all uses changed to
16058         __gmtime_r.
16059         (my_strftime_localtime_r): Remove; all uses changed to __localtime_r.
16060         (__gtime_r, __localtime_r) [!HAVE_TM_GMTOFF]: New macros.
16061         Include <time_r.h>.
16062
16063         * lib/timegm.c: Switch to glibc implementation, with the following
16064         changes:
16065         [defined HAVE_CONFIG_H]: Include <config.h>.
16066         [!defined _LIBC]: Include "timegm.h" rather than <time.h>.
16067         (__mktime_internal) [!defined _LIBC]: New decl.
16068         (__gmtime_r) [!defined _LIBC]: New macro and function.
16069         (timegm): Use a prototype, since gnulib assumes C89.
16070         Do not bother declaring tmp to be const, as it's not really usefu.
16071         * lib/timegm.h: Hoist "#include <time.h>" out of #ifdef.
16072         (timegm): Declare only if HAVE_DECL_TIMEGM.
16073
16074 2003-09-06  Paul Eggert  <eggert@twinsun.com>
16075
16076         * MODULES.html.sh (func_all_modules): Add time_r.
16077         * modules/time_r: New file.
16078         * modules/mktime, modules/strftime, modules/timegm: Depend on time_r.
16079         * modules/timegm: Depend on mktime.  Change maintainer to "all, glibc".
16080
16081 2003-09-03  Paul Eggert  <eggert@twinsun.com>
16082
16083         * lib/human.c (human_readable): Fix bug that rounded 10501 to 10k.
16084         Bug reported by Lute Kamstra in
16085         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00003.html>.
16086
16087         * lib/getdate.y (relative_time_table): Use tDAY_UNIT for "tomorrow",
16088         "yesterday", "today", and "now" rather than tMINUTE_UNIT.  Of
16089         course with correspondingly smaller numbers for tomorrow and
16090         yesterday.  From Tadayoshi Funaba.  Originally installed into
16091         sh-utils on 1999-08-07, but the patch got lost (I guess during the
16092         coreutils merge?).
16093
16094 2003-08-31  Simon Josefsson  <jas@extundo.com>
16095
16096         * modules/timegm: New file.
16097         * MODULES.html.sh (func_all_modules): Add timegm.
16098
16099 2003-08-31  Simon Josefsson  <jas@extundo.com>
16100
16101         * m4/timegm.m4: New file.
16102
16103 2003-08-31  Simon Josefsson  <jas@extundo.com>
16104
16105         * lib/timegm.h: New file.
16106         * lib/timegm.c: New file.  Based on
16107         wget-1.8.2/src/http.c:mktime_from_utc.
16108
16109 2003-08-31  Karl Berry  <karl@gnu.org>
16110
16111         * lib/argp.h: update from libc.
16112
16113 2003-08-28  Bruno Haible  <bruno@clisp.org>
16114
16115         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Remove AC_DEFINE of fnmatch here.
16116         This avoids havoc on compilers for which '#define fnmatch rpl_fnmatch'
16117         followed by '#define fnmatch fnmatch_posix' gives an error.
16118
16119 2003-08-28  Bruno Haible  <bruno@clisp.org>
16120
16121         * lib/binary-io.h: Undefine O_BINARY before defining it. This avoids a
16122         warning on QNX, which defines O_BINARY to 000000.
16123
16124 2003-08-27  Jim Meyering  <jim@meyering.net>
16125
16126         * m4/mkstemp.m4: Require that the system mkstemp be able to create
16127         70 temporary files, not just 30.  Tru64 V4.0F's mkstemp function
16128         would fail after 32.  Reported by Danny Levinson.  Details here:
16129         http://mail.gnu.org/archive/html/bug-coreutils/2003-08/msg00124.html
16130
16131 2003-08-24  Bruno Haible  <bruno@clisp.org>
16132
16133         * lib/binary-io.h: Include <stdio.h>, to avoid a compilation error when
16134         MSVC7 <stdio.h> is included later.
16135
16136 2003-08-22  Simon Josefsson  <jas@extundo.com>
16137
16138         * modules/strndup (Makefile.am): Add strndup.h to lib_SOURCES.
16139
16140 2003-08-20  Karl Berry  <karl@gnu.org>
16141
16142         * m4/lib-ld.m4: serial 1003 from gettext, no changes besides serial.
16143
16144 2003-08-20  Bruno Haible  <bruno@clisp.org>
16145
16146         * modules/progname: New file.
16147         * MODULES.html.sh (func_all_modules): Add progname.
16148
16149 2003-08-20  Bruno Haible  <bruno@clisp.org>
16150
16151         * lib/progname.h: New file, from GNU gettext.
16152         * lib/progname.c: New file, from GNU gettext.
16153         * lib/progreloc.c: New file, from GNU gettext.
16154
16155 2003-08-19  Jim Meyering  <jim@meyering.net>
16156
16157         * m4/lib-ld.m4: Revert yesterday's change, per Bruno's request here:
16158         http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00155.html
16159
16160 2003-08-19  Bruno Haible  <bruno@clisp.org>
16161
16162         * m4/xalloc.m4 (gl_PREREQ_XSTRDUP): Don't check for <string.h> any
16163         more.
16164
16165 2003-08-19  Bruno Haible  <bruno@clisp.org>
16166
16167         * lib/xstrdup.c: Assume <string.h> exists.
16168
16169 2003-08-18  Paul Eggert  <eggert@twinsun.com>
16170
16171         * modules/stdbool: Add BUILT_SOURCES.  Prefer $@ to target name
16172         in makefile rules.
16173
16174 2003-08-18  Jim Meyering  <jim@meyering.net>
16175
16176         * m4/getloadavg.m4: Use [\t ], not [ \t] (where \t is a literal TAB).
16177         * m4/lib-ld.m4: Likewise.
16178
16179 2003-08-18  Jim Meyering  <jim@meyering.net>
16180
16181         * lib/setenv.h: Indent nested cpp directive.
16182         * lib/vasnprintf.c: Remove trailing blanks.
16183
16184 2003-08-17  Simon Josefsson  <jas@extundo.com>
16185
16186         * modules/xstrndup: New file.
16187         * MODULES.html.sh (func_all_modules): Add xstrndup.
16188
16189 2003-08-17  Simon Josefsson  <jas@extundo.com>
16190
16191         * modules/argp: Fix autoconf macro name. Add more dependencies.
16192
16193 2003-08-17  Simon Josefsson  <jas@extundo.com>
16194
16195         * m4/xstrndup.m4: New file.
16196
16197 2003-08-17  Simon Josefsson  <jas@extundo.com>
16198
16199         * m4/argp.m4: New file.
16200
16201 2003-08-17  Simon Josefsson  <jas@extundo.com>
16202             Bruno Haible  <bruno@clisp.org>
16203
16204         * lib/xstrndup.h: New file.
16205         * lib/xstrndup.c: New file.
16206
16207 2003-08-17  Bruno Haible  <bruno@clisp.org>
16208
16209         * modules/strndup (Files, Include): Add lib/strndup.h.
16210
16211 2003-08-17  Bruno Haible  <bruno@clisp.org>
16212
16213         * modules/euidaccess (Files): Add lib/euidaccess.h.
16214
16215 2003-08-17  Bruno Haible  <bruno@clisp.org>
16216
16217         * lib/strndup.h: New file.
16218
16219 2003-08-17  Bruno Haible  <bruno@clisp.org>
16220
16221         * gnulib-tool (func_create_testdir): Handle gl_USE_SYSTEM_EXTENSIONS
16222         like AC_GNU_SOURCE.
16223         * modules/extensions (configure.ac): Comment out the invocation of
16224         gl_USE_SYSTEM_EXTENSIONS.
16225
16226 2003-08-16  Paul Eggert  <eggert@twinsun.com>
16227
16228         Merges from coreutils, etc.
16229         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Insert ':' to prevent a syntax
16230         error in gl_FUNC_MATCH.  This fixes a bug I introduced on 2003-05-28.
16231         * m4/readlink.m4 (gl_PREREQ_READLINK): Renamed from gl_PREREQ_READLINE,
16232         fixing a typo.
16233         * m4/host-os.m4 (UTILS_HOST_OS): Add GNU/NetBSD, GNU/FreeBSD.
16234         * m4/hash.m4 (gl_HASH): Use AM_STDBOOL_H, not AC_HEADER_STDBOOL.
16235
16236 2003-08-16  Paul Eggert  <eggert@twinsun.com>
16237
16238         Document merge from coreutils.
16239         * modules/alloca: Append $(ALLOCA_H) to BUILT_SOURCES.
16240         * modules/fnmatch: Append $(FNMATCH_H) to BUILT_SOURCES.
16241         * modules/utime: Add m4/utimes-null.m4.
16242
16243 2003-08-16  Paul Eggert  <eggert@twinsun.com>
16244
16245         * lib/regex.h, strdup.c, strtoll.c, strtoul.c: Do not normalize white
16246         space, undoing this 2003-08-12 change:
16247         <http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00080.html>
16248
16249 2003-08-16  Paul Eggert  <eggert@twinsun.com>
16250
16251         * config/srclist.txt: Get regex.h, strdup.c, strtoll.c,
16252         strtoul.c from libc, undoing this 2003-08-12 change:
16253         <http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00080.html>
16254
16255 2003-08-16  Jim Meyering  <jim@meyering.net>
16256
16257         Merges from coreutils.
16258         * m4/readdir.m4 (GL_FUNC_READDIR): Change name to have GL_ (not jm_)
16259         prefix.  Adjust cache variables similarly.  Create 500 rather than
16260         just 300 files, to exercise bug on Darwin6.5, too.
16261         * m4/perl.m4 (jm_PERL): Use $am_missing_run, not undefined
16262         $missing_dir.
16263         * m4/jm-winsz1.m4: Require AC_SYS_POSIX_TERMIOS, not
16264         AM_SYS_POSIX_TERMIOS.
16265         Reported by mkc@mathdogs.com.
16266         Also change use of $am_cv_sys_posix_termios
16267         to $ac_cv_sys_posix_termios.  Reported by Andreas Schwab.
16268         * m4/getgroups.m4 (jm_FUNC_GETGROUPS): Rewrite to use AC_FUNC_GETGROUPS
16269         and (if needed) to call AC_LIBOBJ and to set GETGROUPS_LIB.
16270         * m4/fsusage.m4 [__GLIBC__]: GNU libc's statvfs stats each mount point
16271         in /proc/mounts until it finds one with matching device number.  This
16272         is unnecessary when the FILE argument *is* a mount point.  No stat call
16273         is necessary in that case.  So, disable the statvfs-testing code on
16274         systems with GNU libc.  Reported by Andrei Gaponenko via Tim Waugh
16275         as RedHat bug# 84846.
16276         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size
16277         to 1MB, so as not to render systems with no stack size limit (e.g.,
16278         linux-2.2.x) unusable.  Suggestion and code from Bruno Haible.
16279         Include <unistd.h>.  On some systems,
16280         it is required for the definition of _SC_PAGESIZE.
16281
16282 2003-08-16  Jim Meyering  <jim@meyering.net>
16283
16284         Merge from coreutils.
16285         * lib/xstrtoimax.c: #else #if -> #elif.
16286         * lib/xstrtoumax.c: Likewise.
16287
16288 2003-08-16  Jim Meyering  <jim@meyering.net>
16289
16290         * m4/utimes.m4 (gl_FUNC_UTIMES): New file.
16291         * m4/utimes.m4: Removed.
16292         * m4/utimes-null.m4: Renamed from utimes.m4.
16293
16294         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size
16295         to 1MB, so as not to render systems with no stack size limit (e.g.,
16296         linux-2.2.x) unusable.  Suggestion and code from Bruno Haible.
16297         Include <unistd.h>.  On some systems,
16298         it is required for the definition of _SC_PAGESIZE.
16299
16300 2003-08-16  Jim Meyering  <jim@meyering.net>
16301         and Paul Eggert  <eggert@cs.ucla.edu>
16302
16303         Merges from coreutils, etc.
16304
16305         * m4/jm-macros.m4 (AC_LANG_SOURCE(C)): New macro, undefine, then define
16306         using the latest version from cvs.  This avoids problems with #line
16307         directives using a vendor (Sun) compiler.
16308         (jm_MACROS): Bump prerequisite from 2.52g to 2.57.
16309         Don't set GETGROUPS_LIB here; now it's
16310         done via getgroups.m4's wrapper function.
16311         AC_SUBST OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, and MAN here,
16312         rather than just in sh-util/configure.in, so that the
16313         now-shared-by-fileutils-and-textutils lib/Makefile.am are all the
16314         same.
16315         Use AC_CONFIG_LIBOBJ_DIR(lib) to tell the new
16316         AC_FUNC_GETLOADAVG where to find getloadavg.c.
16317         Require AC_FUNC_FTW, gt_INTTYPES_PRI, gl_CLOCK_TIME,
16318         UTILS_SYS_OPEN_MAX, GL_FUNC_GETCWD_PATH_MAX, GL_FUNC_READDIR,
16319         gl_FSUSAGE, gl_MOUNTLIST, AC_FUNC_CANONICALIZE_FILE_NAME.
16320         Remove code that is now done by the newly-required macros.
16321         Append $(EXEEXT) to DF_PROG.
16322         AC_LIBOBJ fchdir-stub if fchdir doesn't exist; similarly for fchown.
16323         Do not invoke or require the following here,
16324         since prereq.m4 or some gnulib .m4 now does this for us:
16325         gl_REGEX, UTILS_FUNC_MKDIR_TRAILING_SLASH, jm_BISON, gl_FUNC_MKTIME,
16326         jm_FUNC_LSTAT, jm_FUNC_STAT, jm_FUNC_REALLOC, jm_FUNC_MALLOC,
16327         jm_FUNC_NANOSLEEP, jm_FUNC_READDIR, jm_FUNC_MEMCMP,
16328         jm_FUNC_GLIBC_UNLOCKED_IO, AC_FUNC_FNMATCH_GNU, jm_FUNC_PUTENV,
16329         jm_AC_PREREQ_XSTRTOUMAX, jm_AC_PREREQ_XSTRTOIMAX,
16330         AC_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, AC_FUNC_VPRINTF,
16331         vb_FUNC_RENAME, UTILS_FUNC_MKSTEP, jm_FUNC_UTIME, AM_FUNC_GETLINE,
16332         AC_FUNC_OBSTACK.
16333         Do not replace the following functions, as this is now the job
16334         of some gnulib .m4: strcasecmp, strncasecmp, dup2, gethostname,
16335         getusershell, sig2str, strcspn, stpcpy, strstr, strtol, strtoul
16336         strpbrk, euidaccess, memcmp, rmdir, rpmatch, strndup, strverscmp,
16337         atexit getpass, strdup, getpagesize.
16338         Replace 'raise'.
16339         Do not check for the following functions, as this is now the job
16340         of some gnulib .m4: bcopy, canonicalize_file_name, fchdir, ftime,
16341         getcwd, getmntinfo, resolvepath.  But check for sysctl, setreuid,
16342         setregid.
16343         (jm_CHECK_ALL_HEADERS): Do not check for fenv.h.
16344         Check for sys/sysctl.h.
16345         (jm_CHECK_ALL_TYPES): Do not require AC_STRUCT_TM, AC_STRUCT_TIMEZONE,
16346         jm_CHECK_TYPE_STRUCT_TIMESPEC.  Invoke gt_TYPE_SSIZE_T instead
16347         of checking for ssize_t ourselves.
16348
16349         * m4/prereq.m4 (jm_PREREQ): Don't invoke macros; AC_REQUIRE them.
16350         Require every macro that gnulib/modules/* suggests for us.
16351         (jm_PREREQ_ADDEXT): New macro.
16352         (jm_PREREQ_STAT): Check for 'struct statfs' on Ultrix 4.4.
16353         Require jm_AC_TYPE_LONG_LONG instead of invoking it.
16354
16355         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): New macro.
16356         (gl_PHYSMEM): Use it.
16357         Also check for `table' function.
16358         Check for new headers and functions.
16359         Add check for sys/sysmp.h.
16360         With suggestions from Kaveh Ghazi.
16361         Ignore headers that are present but cannot be compiled.  This
16362         avoids spurious warnings on Solaris 9 sparc with Forte Developer 7
16363         C 5.4.
16364
16365 2003-08-15  Paul Eggert  <eggert@twinsun.com>
16366
16367         Document merge from coreutils.
16368         * modules/userspec: Depend on posixver.
16369         * modules/strftime: Depend on tzset.
16370
16371 2003-08-15  Paul Eggert  <eggert@twinsun.com>
16372
16373         * lib/config.charset, ref-add.sin, ref-del.sin: Use three spaces,
16374         rather than tab, after '#' in shell-script copyright notices.
16375         Suggested by Bruno Haible.
16376
16377 2003-08-15  Paul Eggert  <eggert@twinsun.com>
16378
16379         * config/srclist-update: Use three spaces, rather than tab, after '#'
16380         in shell-script copyright notices.  Suggested by Bruno Haible.
16381         Remove unnecessary parenthesization in regular expression.
16382
16383 2003-08-15  Jim Meyering  <jim@meyering.net>
16384
16385         Merge from coreutils.
16386         * lib/xgethostname.c: Include <stdlib.h>.
16387         (xghostname): Don't exit for anything other than memory-related
16388         failure; just return NULL.
16389         * lib/userspec.c: Include "posixver.h".
16390         (parse_user_spec): Accept `.' as a separator only
16391         in pre-POSIX-200112 mode.
16392         * lib/strtoimax.c: Use #elif rather than #else #if.
16393         * lib/strftime.c (my_strftime) [!_LIBC && HAVE_TZNAME && HAVE_TZSET]:
16394         Remove function, now that we can rely on a working tzset function.
16395         [!_LIBC]: Ensure that the required autoconf test has been run.
16396         [!defined _NL_CURRENT && HAVE_STRFTIME]:
16397         Use underlying_strftime for %r.
16398         * lib/sha.c: Merge in some clean-up and optimization changes from
16399         glibc.
16400         * lib/sha.c (sha_stream) [BLOCKSIZE]: Move definition to top of file.
16401         Ensure that it is a multiple of 64.
16402         Rearrange loop exit tests so as to avoid performing an
16403         additional fread after encountering an error or EOF.
16404         * lib/realloc.c: Update copyright date.
16405
16406 2003-08-15  Jim Meyering  <jim@meyering.net>
16407         and Paul Eggert  <eggert@twinsun.com>
16408
16409         Merge from coreutils.
16410         * lib/readutmp.h (HAVE_UTMPX_H): Undef if struct utmp has the ut_exit
16411         member but strut utmpx does not.  Needed for AIX 4.3.3.
16412         (UT_EXIT_E_TERMINATION, UT_EXIT_E_EXIT): Define.
16413
16414 2003-08-15  Jim Meyering  <jim@meyering.net>
16415         and Paul Eggert  <eggert@cs.ucla.edu>
16416
16417         Merges from coreutils, etc.
16418         * m4/strftime.m4 (_jm_STRFTIME_PREREQS):
16419         Require gl_FUNC_TZSET_CLOBBER.
16420         * m4/readutmp.m4 (gl_READUTMP): Check for ut_exit.ut_exit,
16421         ut_exit.e_exit, ut_exit.ut_termination, and ut_exit.e_termination
16422         members.
16423
16424 2003-08-14  Paul Eggert  <eggert@twinsun.com>
16425
16426         Help the merge from coreutils.
16427         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): New macro.
16428         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Use it.
16429         * m4/tzset.m4: Use it too.
16430
16431 2003-08-14  Paul Eggert  <eggert@twinsun.com>
16432
16433         * modules/tzset: New file.
16434
16435 2003-08-14  Jim Meyering  <jim@meyering.net>
16436
16437         Merges from coreutils.
16438         * modules/fnmatch: Use the `$(FNMATCH_H)' notation for AC_REPLACED
16439         variable names, rather than @FNMATCH_H@.
16440         * modules/alloca: Likewise for $(ALLOCA_H).
16441
16442         * modules/fnmatch (fnmatch.h): Use `$@' in the commands, in place of
16443         the three copies of the literal target, `fnmatch.h'.
16444         * modules/alloca (alloca.h): Likewise.
16445
16446 2003-08-14  Jim Meyering  <jim@meyering.net>
16447
16448         Merge from coreutils.
16449         * m4/tzset.m4: New file.
16450         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Move the
16451         MOUNTED_VMOUNT test to precede the MOUNTED_GETMNTENT1 tests, since
16452         otherwise, AIX 5.1 systems would end up using the latter.
16453         MOUNTED_GETMNTENT1 support is inadequate on such systems: 1) detecting
16454         whether a file system is remote doesn't work  2) the MOUNTED_VMOUNT
16455         code reports the HOSTNAME:/MOUNT_POINT, while the MOUNTED_GETMNTENT1
16456         code reports merely /MOUNT_POINT.  Reported by Mike Jetzer.
16457
16458 2003-08-14  Jim Meyering  <jim@meyering.net>
16459
16460         Merge from coreutils.
16461         * lib/obstack.h: Whitespace changes.
16462         * lib/mountlist.c: Remove anachronistic casts of xmalloc, xrealloc,
16463         and xcalloc return values.
16464         (read_filesystem_list) [MOUNTED_GETFSSTAT]:
16465         Use MNT_NOWAIT, rather than MNT_WAIT.  Otherwise, `df DIR' could
16466         hang on OSF/1 5.1 for DIR on both local and remote file systems.
16467         Reported by (and fix confirmed by) Nelson H. F. Beebe.
16468         (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
16469         error from mntctl.
16470         Use mntctl's return value to drive the entry-processing loop, since
16471         we can't rely on the value of the vmt_length member in the last
16472         entry.  On some systems doing so could result in exhausting
16473         virtual memory.  Based in part on a patch from Mike Jetzer.
16474
16475 2003-08-14  Jim Meyering  <jim@meyering.net>
16476         and Paul Eggert  <eggert@twinsun.com>
16477
16478         Merges from coreutils, plus other fixes.
16479         * lib/physmem.c: Merge in portability changes from gcc/libiberty
16480         to support AIX, IRIX, Tru64, and Windows.  See the ChangeLog there
16481         for credits and details.  Thanks to Kaveh Ghazi for helping
16482         to keep these files in sync.
16483         (ARRAY_SIZE): Define it.
16484         (physmem_total, physmem_available): Add comments. From Kaveh Ghazi.
16485         * lib/memcasecmp.c: Remove unnecessary parentheses after 'defined'.
16486         (memcasecmp): Don't assume size_t fits in unsigned int.
16487         Remove casts and duplicate code.
16488         * lib/md5.c: Include <string.h> and <stdlib.h> unconditionally.
16489         (memcpy): Remove definition.
16490         Merge in some clean-up and optimization changes from glibc.
16491         [BLOCKSIZE]: Move definition to top of file.
16492         Ensure that it is a multiple of 64.
16493         Rearrange loop exit tests so as to avoid performing an
16494         additional fread after encountering an error or EOF.
16495         * lib/md5.h (md5_uintptr): Define.
16496         * lib/makepath.c (CLEANUP_CWD): Report an error if we failed to
16497         return to the initial working directory.  Preserve errno
16498         for caller.
16499         * lib/idcache.c: Include "xalloc.h".
16500         (xmalloc, xrealloc): Remove decls.
16501         (getuser): Remove casts no longer required in C89.
16502         * lib/human.c: Include stdio.h, for sprintf.
16503         * lib/group-member.c: Include "xalloc.h".
16504         (xmalloc, xrealloc): Remove decls.
16505         (get_group_info): Remove casts no longer required in C89.
16506         * lib/getusershell.c (readname): Remove casts no longer required in
16507         C89.
16508         * lib/gettimeofday.c (rpl_gmtime, rpl_tzset): New functions.
16509         * lib/getline.c: Whitespace fix, from coreutils.
16510
16511 2003-08-13  Paul Eggert  <eggert@twinsun.com>
16512
16513         * m4/exclude.m4 (gl_EXCLUDE): Require AC_C_INLINE, AC_HEADER_STDC.
16514         Check for isascii.
16515
16516         * m4/gettext.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, lib-link.m4,
16517         lib-prefix.m4, longdouble.m4, po.m4, progtest.m4, signed.m4:
16518         Undo previous (whitespace-only) change.
16519
16520 2003-08-13  Paul Eggert  <eggert@twinsun.com>
16521
16522         * lib/exclude.c: Include <ctype.h>
16523         (IN_CTYPE_DOMAIN): New macro.
16524         (is_space): New fn.
16525         (add_exclude_file): If LINE_END is a space, ignore trailing spaces
16526         and empty lines.
16527
16528         * lib/argp-help.c, argp-parse.c, config.charset, getopt.h:
16529         Undo previous (whitespace-only) change.
16530
16531 2003-08-13  Paul Eggert  <eggert@twinsun.com>
16532
16533         * config/srclist-update: Change update back to the old behavior,
16534         leaving whitespace alone.  Use one 'sed' command rather than a
16535         pipeline.
16536         (fixlicense): Now a variable, not a function.
16537         (remove_trailing_blanks): Remove.
16538         (fixfile): Don't invoke unexpand or cat, or remove trailing blanks.
16539         * config/config.guess, config.sub, install-sh, missing, texinfo.tex:
16540         Undo previous (whitespace-only) change.
16541
16542 2003-08-12  Paul Eggert  <eggert@twinsun.com>
16543
16544         Merge from coreutils.
16545         * modules/euidaccess: Add lib_SOURCES, include for new
16546         file euidaccess.h
16547
16548 2003-08-12  Paul Eggert  <eggert@twinsun.com>
16549
16550         * m4/gettext.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, lib-link.m4,
16551         lib-prefix.m4, longdouble.m4, po.m4, progtest.m4, signed.m4:
16552         Normalize leading white space and remove trailing white space.
16553
16554         Merge from coreutils
16555         * m4/euidaccess.m4 (gl_FUNC_EUIDACCESS): Check for euidaccess decl.
16556
16557         * m4/lib-ld.m4, lib-link.m4, lib-prefix.m4: Regenerate from gettext
16558         0.12.1.  These files are now being upgraded automatically by
16559         ../config/srclist-update.
16560
16561 2003-08-12  Paul Eggert  <eggert@twinsun.com>
16562
16563         * lib/argp-help.c, argp-parse.c, config.charset, getopt.h:
16564         Normalize leading white space and remove trailing white space.
16565         * lib/ref-add.sin, ref-del.sin: Use '#' before empty line in copyright
16566         notice, as per ../config/srclist-update.
16567
16568         Merge from coreutils.
16569         * lib/euidaccess.h: New file.
16570         * lib/euidaccess.c: Include it.
16571         * lib/.cppi-disable: Add printf-args.h, printf-parse.h, stdbool_.h,
16572         vasnprintf.h, vasprintf.h.  Remove strdup.c, gettext.h.
16573         * lib/regex.h, strdup.c, strtoll.c, strtoul.c: Normalize white space.
16574
16575 2003-08-12  Paul Eggert  <eggert@twinsun.com>
16576
16577         * config/srclist-update: Add copyright notice.
16578         (remove_id_lines, remove_trailing_blanks): New constants.
16579         (fixfile): Use them to normalize spacing a bit in copied files.
16580         * config/config.guess, config.sub, install-sh, missing, texinfo.tex:
16581         Normalize leading white space and remove trailing white space.
16582
16583         * config/texinfo.tex: Sync with texinfo.
16584
16585         * config/srclist.txt: Don't get regex.h, strdup.c, strtoll.c,
16586         strtoul.c from libc, to merge coreutils whitespace changes.
16587
16588         * config/srclist.txt: Get the following m4 files from gettext:
16589         codeset.m4, gettext.m4, glibc21.m4, iconv.m4, intdiv0.m4,
16590         inttypes-pri.m4, lcmessage.m4, lib-ld.m4, lib-link.m4, lib-prefix.m4,
16591         longdouble.m4, nls.m4, po.m4, progtest.m4, signed.m4, wchar_t.m4,
16592         wint_t.m4.
16593
16594 2003-08-12  Karl Berry  <karl@gnu.org>
16595
16596         * config/srclist.txt: can't sync vasnprintf.c any more, changes have
16597         been made.
16598
16599 2003-08-11  Paul Eggert  <eggert@twinsun.com>
16600
16601         * modules/gnu-source, m4/gnu-source.m4:
16602         Remove; we're assuming Autoconf 2.54 or later now.
16603         Suggested by Bruno Haible.
16604         * MODULES.html.sh (func_all_modules): Remove gnu-source.
16605
16606 2003-08-11  Bruno Haible  <bruno@clisp.org>
16607
16608         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Also check for wcslen.
16609
16610 2003-08-11  Bruno Haible  <bruno@clisp.org>
16611
16612         * lib/vasnprintf.c (local_wcslen): New function, for Solaris 2.5.1.
16613         (vasnprintf): Use it instead of wcslen.
16614
16615 2003-08-11  Bruno Haible  <bruno@clisp.org>
16616
16617         * lib/stdbool_.h (_Bool): Undo last change; instead use a negative enum
16618         value to ensure that _Bool promotes to int. Use #define for _Bool when
16619         using the Solaris C compiler. Adds comments suggested by Paul Eggert.
16620
16621 2003-08-10  Karl Berry  <karl@gnu.org>
16622
16623         * lib/regex.h: update from libc (whitespace fix).
16624
16625 2003-08-09  Paul Eggert  <eggert@twinsun.com>
16626
16627         Merge some files from coreutils.  These changes were
16628         originally made by Jim Meyering.
16629         * lib/acl.c: Include <sys/types.h> before <sys/stat.h>;
16630         many older Unixes require this.
16631         * lib/alloca.c (alloca): Remove cast to argument of free;
16632         no longer needed in C89.
16633         * lib/alloca_.h, regex.h: Fix white space to match
16634         what GNU indent does.
16635
16636 2003-08-09  Paul Eggert  <eggert@twinsun.com>
16637
16638         * m4/regex.m4 (jm_INCLUDED_REGEX): Change "\201" to "\371";
16639         apparently Emacs's Unicode mode got confused before my 2003-08-05
16640         checkin.
16641
16642 2003-08-08  Paul Eggert  <eggert@twinsun.com>
16643
16644         * m4/extensions.m4: New file.
16645         * m4/timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC):
16646         Require gl_USE_SYSTEM_EXTENSIONS.
16647         * m4/unlocked-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO):
16648         Require gl_USE_SYSTEM_EXTENSIONS rather than AC_GNU_SOURCE.
16649
16650 2003-08-08  Paul Eggert  <eggert@twinsun.com>
16651
16652         * MODULES.html.sh (func_all_modules): Add extensions, gnu-source.
16653         * modules/extensions, modules/gnu-source: New files.
16654         * modules/timespec, modules/unlocked-io: Depend on extensions.
16655
16656 2003-08-07 Paul Eggert  <eggert@twinsun.com>
16657
16658         * modules/restrict: New file.
16659         * MODULES.html.sh (func_all_modules): Add restrict.
16660         * modules/regex: Depend on restrict.
16661
16662 2003-08-07  Paul Eggert  <eggert@twinsun.com>
16663
16664         * m4/restrict.m4: New file.
16665         * m4/regex.m4 (jm_PREREQ_REGEX): Add gl_C_RESTRICT.
16666
16667 2003-08-07  Bruno Haible  <bruno@clisp.org>
16668
16669         * modules/getndelim2 (Makefile.am): Add the files to EXTRA_DIST, not
16670         lib_SOURCES, because getndelim2.m4 now uses AC_LIBOBJ(getndelim2).
16671
16672 2003-08-07  Bruno Haible  <bruno@clisp.org>
16673
16674         * m4/getndelim2.m4 (gl_GETNDELIM2): Use AC_LIBOBJ(getndelim2). This
16675         makes the module 'getndelim2' compatible with the module 'getline'.
16676
16677 2003-08-05  Paul Eggert  <eggert@twinsun.com>
16678
16679         * m4/regex.m4 (jm_INCLUDED_REGEX): Replace a single non-ASCII
16680         byte with "\201" to avoid glitches when editing that source file
16681         with multi-gnome-terminal.
16682
16683 2003-08-05  Paul Eggert  <eggert@twinsun.com>
16684
16685         * lib/bumpalloc.h: Remove.
16686
16687 2003-08-05  Paul Eggert  <eggert@twinsun.com>
16688
16689         * MODULES.html.sh (func_all_modules): Remove bumpalloc.
16690         * modules/bumpalloc: Remove.
16691
16692 2003-08-04  Paul Eggert  <eggert@twinsun.com>
16693
16694         * lib/getloadavg.c: Change copyright notice and spacing to conform to
16695         GNU coding style.
16696
16697         Merge from coreutils.
16698         * lib/error.c [!USE_IN_LIBIO]: Omit this case; assume USE_IN_LIBIO is
16699         1. From glibc.
16700         * lib/getdate.y (date): Also accept dates like May-23-2003; suggestion
16701         from Karl Berry, implemented by Jim Meyering.
16702         * lib/getgroups.c: Include "xalloc.h" instead of declaring xalloc fns;
16703         from Dmitry V. Levin.
16704         Remove anachronistic cast of xrealloc.
16705         * lib/fnmatch_.h (__const): Remove.  Use 'const'.
16706         * lib/fnmatch_loop.c (NEW_PATTERN): Cast alloca return value to proper
16707         type. Otherwise, it wouldn't compile with at least /bin/cc on
16708         ymp-cray-unicos9.0.2.X.
16709         Combine two mostly-identical uses of alloca into one.
16710         Thanks to the Cray-Cyber project for access to a Cray Y-MP.
16711
16712 2003-08-04  Dave Love <d.love@dl.ac.uk>
16713
16714         [From Emacs.]
16715
16716         * lib/getloadavg.c: Check `__unix' as well as `unix'.  Use #ifdef, not
16717         #if.  Check HAVE_LIBKSTAT as well as LOAD_AVE_TYPE.  Check
16718         F_SETFD, not FD_SETFD.  Use HAVE_STRUCT_NLIST_N_UN_N_NAME, not
16719         obsolete NLIST_NAME_UNION.
16720         [__GNU__]: Undef BSD and FSCALE.
16721         [!NLIST_STRUCT]: Remove conditional definition of NLIST_STRUCT.
16722
16723 2003-08-03  Paul Eggert  <eggert@twinsun.com>
16724
16725         * lib/stdbool_.h (_Bool): Make it signed char, instead of
16726         an enum type, so that it's guaranteed to promote to int.  See:
16727         <http://mail.gnu.org/archive/html/bug-gnulib/2003-07/msg00124.html>
16728
16729 2003-08-03  Karl Berry  <karl@gnu.org>
16730
16731         * config/depcomp: update from automake.
16732
16733 2003-07-31  Paul Eggert  <eggert@twinsun.com>
16734
16735         * lib/strerror.c: Include config.h, limits.h.  Declare sprintf.
16736         (strerror): Don't assume that a printable int fits in 14 bytes.
16737
16738 2003-07-31  Bruno Haible  <bruno@clisp.org>
16739
16740         * modules/getpass-gnu: New file.
16741         * MODULES.html.sh (func_all_modules): Add getpass-gnu.
16742
16743 2003-07-31  Bruno Haible  <bruno@clisp.org>
16744
16745         * m4/getpass.m4 (gl_FUNC_GETPASS_GNU): New macro.
16746
16747 2003-07-24  Karl Berry  <karl@gnu.org>
16748
16749         * config/missing: update from automake.
16750
16751 2003-07-24  Derek Robert Price  <derek@ximbiot.com>
16752             Bruno Haible  <bruno@clisp.org>
16753
16754         * lib/getline.h (getline, getdelim): Change return type to ssize_t.
16755         * lib/getline.c (getline, getdelim): Likewise.
16756         Remove _GNU_SOURCE define; now it's defined in config.h through
16757         m4/getline.m4.
16758
16759 2003-07-23  Karl Berry  <karl@gnu.org>
16760
16761         * config/config.sub: update from prep.
16762
16763 2003-07-22  Paul Eggert  <eggert@twinsun.com>
16764
16765         * modules/xalloc (Depends-on): Add exitfail.
16766         * modules/xmemcoll: Likewise.
16767
16768 2003-07-22  Paul Eggert  <eggert@twinsun.com>
16769
16770         * lib/xalloc.h (XCALLOC, XREALLOC, CCLONE): Fix under- and
16771         over-parenthesization in macros.
16772
16773         Sync with coreutils.
16774
16775         * lib/xalloc.h (XMALLOC, XCALLOC, XREALLOC): Remove casts not
16776         required by C99.
16777
16778         Use `exit_failure' for xalloc and xmemcoll instead of their own
16779         private exit-failure variables.
16780         * lib/xalloc.h (xalloc_exit_failure): Remove.
16781         * lib/xmalloc.c: Likewise.  Include exitfail.h.
16782         (xalloc_die): Use exit_failure instead of xalloc_exit_failure.
16783         * lib/xmemcoll.h (xmemcoll_exit_failure): Remove.
16784         * lib/xmemcoll.c: Likewise.  Include exitfail.h.
16785         (xmemcoll): Use exit_failure instead of xalloc_exit_failure.
16786
16787 2003-07-20  Jim Meyering  <jim@meyering.net>
16788
16789         * modules/closeout (Depends-on): Add exitfail.
16790         Suggestion from Bruno Haible.
16791
16792 2003-07-19  Karl Berry  <karl@gnu.org>
16793
16794         * config/config.sub: update from prep.
16795
16796 2003-07-18  Paul Eggert  <eggert@twinsun.com>
16797
16798         * lib/closeout.h (close_stdout_set_status, close_stdout_status):
16799         Remove.
16800         * lib/closeout.c: Likewise.  Include "closeout.h" right after config.h,
16801         to test that it can stand by itself.  Include "exitfail.h".
16802         Clients should set exit_failure instead.
16803         (EXIT_FAILURE): Remove; no longer needed.  Do not include <stdlib.h>.
16804
16805 2003-07-18  Bruno Haible  <bruno@clisp.org>
16806
16807         * modules/getndelim2: New file.
16808         * modules/getline: Share files with module getndelim2.
16809         * modules/getnline: Depend on getndelim2 instead of sharing files with
16810         it. Add getnline.c to lib_SOURCES.
16811         * MODULES.html.sh (func_all_modules): Add getndelim2.
16812
16813 2003-07-18  Bruno Haible  <bruno@clisp.org>
16814
16815         * m4/getndelim2.m4: New file.
16816         * m4/getline.m4 (AM_FUNC_GETLINE): Add AC_LIBOBJ of getndelim2.c and
16817         invoke gl_PREREQ_GETNDELIM2.
16818         (gl_PREREQ_GETLINE): Drop AC_HEADER_STDC, now done by
16819         gl_PREREQ_GETNDELIM2.
16820         * m4/getnline.m4 (gl_GETNLINE): Drop AC_HEADER_STDC, now done by
16821         gl_GETNDELIM2.
16822
16823 2003-07-18  Bruno Haible  <bruno@clisp.org>
16824
16825         * lib/getndelim2.h: New file.
16826         * lib/getndelim2.c: Make into a module of its own. Include config.h,
16827         getndelim2.h.
16828         (getndelim2): Make non-static. Change return type to ssize_t.
16829         * lib/getline.h: Change argument names.
16830         * lib/getline.c: Include getndelim2.h instead of getndelim2.c.
16831         * lib/getnline.c: Include getndelim2.h.
16832
16833 2003-07-18  Andreas Schwab  <schwab@suse.de>
16834
16835         * lib/memcoll.c (memcoll) [!HAVE_STRCOLL]: Clear errno.
16836
16837 2003-07-17  Karl Berry  <karl@gnu.org>
16838
16839         * config/config.sub: update from prep.
16840
16841 2003-07-17  Bruno Haible  <bruno@clisp.org>
16842
16843         * modules/getnline: New file.
16844         * modules/getline: Add lib/getndelim2.c to source file list.
16845         * MODULES.html.sh (func_all_modules): Add getnline.
16846
16847 2003-07-17  Bruno Haible  <bruno@clisp.org>
16848
16849         * m4/getnline.m4: New file.
16850
16851 2003-07-17  Bruno Haible  <bruno@clisp.org>
16852
16853         * m4/Makefile.am.in: Remove file.
16854         * m4/Makefile.am: Remove file.
16855         * m4/Makefile.in: Remove file.
16856
16857 2003-07-17  Bruno Haible  <bruno@clisp.org>
16858
16859         * lib/getnline.h: New file.
16860         * lib/getnline.c: New file.
16861         * lib/getndelim2.c: New file, extracted from getline.c.
16862         (getndelim2): Renamed from getdelim2, with added nmax argument.
16863         * lib/getline.c: Include getndelim2.c.
16864         (getdelim2): Moved out to getndelim2.c.
16865         (getline, getdelim): Update.
16866
16867 2003-07-17  Bruno Haible  <bruno@clisp.org>
16868
16869         * lib/Makefile.am: Remove file.
16870         * lib/Makefile.in: Remove file.
16871
16872 2003-07-17  Bruno Haible  <bruno@clisp.org>
16873
16874         * configure.in: Remove file.
16875         * Makefile.in: Remove file.
16876
16877 2003-07-17  Bruno Haible  <bruno@clisp.org>
16878
16879         * MODULES.html.sh: Put the </BODY> right before </HTML>.
16880
16881 2003-07-16  Karl Berry  <karl@gnu.org>
16882
16883         * config/srclist-update: was running fixlicense twice, which caused
16884                 texinfo.tex to be nullified for some reason.  Simplify,
16885                 $gplsrc is no longer needed as far as I can see?
16886
16887 2003-07-16  Jim Meyering  <jim@meyering.net>
16888
16889         * modules/save-cwd: Depend on xgetcwd.  From Derek Price.
16890
16891 2003-07-15  Paul Eggert  <eggert@twinsun.com>
16892
16893         * config/srclist.txt: Get the following files from gettext-runtime/intl
16894         instead: config.charset, localcharset.c, localcharset.h, ref-add.sin,
16895         ref-del.sin.  From Bruno Haible.
16896         * config/srclist-update (fixfile): Change grep pattern again, since the
16897         previous fix didn't work (there was another trailing $).  Use
16898         '[$]' to escape the $s.
16899
16900 2003-07-15  Karl Berry  <karl@gnu.org>
16901
16902         * lib/vasnprintf.c: update from gettext.
16903
16904 2003-07-15  Karl Berry  <karl@gnu.org>
16905
16906         * config/srclist-update (fixfile): Change grep pattern, since 'Id'
16907         gets expanded when surrounded by '$'.
16908
16909 2003-07-15  Jim Meyering  <jim@meyering.net>
16910
16911         * modules/save-cwd: Don't depend on error.  From Derek Price.
16912
16913 2003-07-15  Jim Meyering  <jim@meyering.net>
16914
16915         * lib/makepath.c (make_path): Enclose diagnostic in _(...).
16916
16917 2003-07-14  Simon Josefsson  <jas@extundo.com>
16918
16919         * modules/mempcpy: New file.
16920         * MODULES.html.sh (func_all_modules): Add mempcpy.
16921
16922 2003-07-14  Simon Josefsson  <jas@extundo.com>
16923
16924         * m4/mempcpy.m4: New file.
16925
16926 2003-07-14  Simon Josefsson  <jas@extundo.com>
16927
16928         * lib/mempcpy.h: New file.
16929         * lib/mempcpy.c: New file.
16930
16931 2003-07-14  Paul Eggert  <eggert@twinsun.com>
16932
16933         * modules/getdate, modules/posixtm: Depend on mktime.
16934
16935 2003-07-14  Paul Eggert  <eggert@twinsun.com>
16936
16937         * lib/ceill.c, expl.c, floorl.c, frexpl.c, ldexpl.c, mathl.h,
16938         sincosl.c, sqrtl.c, trigl.c, trigl.h, poll.c, poll_.h, mkstemp.c,
16939         unicodeio.c, unicodeio.h, unlocked-io.h:
16940         Switch from LGPL to GPL.
16941
16942 2003-07-14  Paul Eggert  <eggert@twinsun.com>
16943
16944         * lib/asnprintf.c, asprintf.c, config.charset, gettext.h,
16945         localcharset.c, localcharset.h, mkdtemp.c, printf-args.c,
16946         printf-args.h, printf-parse.c, printf-parse.h, ref-add.sin,
16947         ref-del.sin, setenv.c, unsetenv.c, vasnprintf.c, vasnprintf.h,
16948         vasprintf.c, vasprintf.h: Regenerate.  These files are now being
16949         updated automatically by ../config/srclist-update.  This changes
16950         their license from LPGL to GPL.
16951
16952 2003-07-14  Paul Eggert  <eggert@twinsun.com>
16953
16954         * config/srclist.txt: Add tons more gettext files.  $GETTEXT is now
16955         assumed to refer to the root of the most recent stable gettext version.
16956         * config/srclistvars.sh: Add defaults for eggert.
16957         * config/srclist-update: Convert LGPL to GPL in shell scripts, too.
16958         Match "This program" as well as "The program".  This is needed
16959         for gettext.
16960
16961 2003-07-14  Jim Meyering  <jim@meyering.net>
16962
16963         Don't emit diagnostics.  Let callers do that.
16964         * lib/save-cwd.c: Don't include "error.h".
16965         (save_cwd): Don't call error.  Ensure that errno is valid
16966         when returning nonzero.
16967
16968         * lib/save-cwd.h (restore_cwd): Update prototype.
16969         * lib/save-cwd.c (restore_cwd): Remove two parameters.
16970         Simplify.  Don't call error upon failure.  Let callers do that.
16971         (save_cwd): Mention that Irix 5.3 has the same problem as SunOS 4
16972         when auditing is enabled.  But don't bother updating the #if.
16973
16974 2003-07-11  Alexandre Duret-Lutz  <adl@gnu.org>
16975
16976         * lib/obstack.h (__INT_TO_PTR): Revert change of 2003-03-13;
16977         it breaks C++ compilation.
16978         [!__GNUC__ || !__STDC__] (obstack_finish): Cast result to void*.
16979
16980 2003-07-10  Simon Josefsson  <jas@extundo.com>
16981
16982         * modules/strchrnul (Makefile.am): Add strchrnul.h.
16983
16984 2003-07-10  Jim Meyering  <jim@meyering.net>
16985
16986         * m4/clock_time.m4: Remove trailing blank.
16987         * m4/intmax_t.m4: Likewise.
16988
16989 2003-07-10  Jim Meyering  <jim@meyering.net>
16990
16991         * lib/vasnprintf.c: Remove trailing blanks.
16992         Make cpp indentation consistent.
16993
16994 2003-07-09  Paul Eggert  <eggert@twinsun.com>
16995
16996         * lib/alloca_.h, euidaccess.c, getpass.c, memrchr.c, obstack.h,
16997         posixver.c, strftime.c, strnlen.c, strverscmp.c:
16998         Switch from LGPL to GPL.
16999
17000 2003-07-09  Paul Eggert  <eggert@twinsun.com>
17001
17002         * config/srclist.txt: Sort sublists.  Add
17003         $LIBCSRC/sysdeps/generic/strtoul.c. In comments, add more libc files
17004         that differ from gnulib for one reason or another; we'd like this list
17005         to be smaller but for now let's document what we have.
17006
17007 2003-07-08  Paul Eggert  <eggert@twinsun.com>
17008
17009         * config/srclist-update: Port to POSIX 1003.1-2001 hosts by avoiding
17010         the use of GNU extensions.  Change "x=`eval echo $x`" to the shorter
17011         and sweeter "eval x=$x".
17012         * config/srclist.txt: Get lib/argp* from glibc.
17013
17014 2003-07-07  Paul Eggert  <eggert@twinsun.com>
17015
17016         * lib/mktime.c: Fix some boundary cases and remove need for floating
17017         point.
17018
17019         Issue a compile-time diagnostic if time_t is floating point, or if
17020         two's complement arithmetic is not in effect, or if arithmetic
17021         right shift does not propagate the sign.  These assumptions were
17022         all in the original code but they weren't checked.
17023
17024         (TIME_T_MIDPOINT, verify): New macros.
17025         (__isleap): Remove; it has integer overflow problems.
17026         (leapyear): New function, without those problems.
17027         (ydhms_tm_diff): Remove; splitting into two parts.
17028         (ydhms_diff): New function, containing the arithmetic part of
17029         the old ydhms_tm_diff function.  Issue a compile-time
17030         diagnostic if we are not using C99 integer division.
17031         Avoid casts when possible.
17032         (guess_time_tm): New function, containing the checking part of
17033         the old ydhms_tm_diff function.  Return the new value, rather than
17034         the difference between it and the old.  Accept a new argument T
17035         so that *T specifies the old value.  Check for overflow in the result.
17036
17037         (__mktime_internal): Use a time_t offset, not a long int offset.
17038         This undoes the 2003-06-04 change, which is no longer needed now
17039         that we have better overflow checking.
17040         (localtime_offset): Likewise.
17041
17042         (__mktime_internal): Avoid harmful overflow on hosts where time_t
17043         and long are 64-bit but int is only 32-bit.
17044         (ydhms_diff): Use long int to store year1 and yday1.
17045         Issue a compile-time diagnostic if long int is not wide enough.
17046
17047         (__mktime_internal): Use long int to store adjusted year and yday.
17048         Use plain C rather than preprocessor commands, if that doesn't
17049         affect efficiency.
17050         Check for overflow (and try to repair) after each probe
17051         rather than checking only at the very end.  This avoids some bugs
17052         (e.g., southern hemisphere, behind GMT, and GMT offset at minimum time
17053         does not equal GMT offset at maximum time).
17054         Use integer to check for overflow rather than floating point; this
17055         is more portable to non-IEEE hosts, and is a tad faster.
17056         When we detect that we are oscillating between two values,
17057         don't check whether tm_isdst has the requested value, since
17058         we already know the answer.  When tm_isdst has the wrong value,
17059         use a different heuristic to find the right one, based on the
17060         extreme values actually observed in practice in tz2003a,
17061         rather than the (overly optimistic) "previous 3 calendar quarters".
17062
17063         (not_equal_tm, print_tm, check_result): Use "const T" rather than
17064         "T const" to accommodate glibc style.
17065         (check_result): Use less-confusing report format.  "long" -> "long int.
17066         (main): Likewise.
17067         Don't loop if the iteration overflows time_t.
17068         Allow a negative step in the iteration.
17069
17070 2003-07-06  Karl Berry  <karl@gnu.org>
17071
17072         * config/depcomp: update from automake.
17073         * config/config.sub: update from prep.
17074
17075 2003-07-03  Karl Berry  <karl@gnu.org>
17076
17077         * config/config.guess: update from prep.
17078
17079 2003-07-01  Paul Eggert  <eggert@twinsun.com>
17080
17081         * m4/xreadlink.m4 (gl_XREADLINK): Don't check for sys/types.h, since
17082         xreadlink.c now includes it unconditionally.
17083
17084 2003-07-01  Paul Eggert  <eggert@twinsun.com>
17085
17086         * lib/xreadlink.c: Include <sys/types.h> unconditionally, instead of
17087         having it depend on HAVE_SYS_TYPES_H.
17088
17089 2003-07-01  Bruno Haible  <bruno@clisp.org>
17090
17091         * m4/ssize_t.m4 (gt_TYPE_SSIZE_T): Don't include <unistd.h>.
17092         <sys/types.h> should be sufficient.
17093         Reported by Paul Eggert.
17094
17095 2003-06-26  Karl Berry  <karl@gnu.org>
17096
17097         * config/depcomp: update from automake.
17098
17099 2003-06-26  Bruno Haible  <bruno@clisp.org>
17100
17101         * modules/human: Depend on module stdbool.
17102
17103 2003-06-25  Bruno Haible  <bruno@clisp.org>
17104
17105         * modules/readlink: New file.
17106         * modules/xreadlink: Depend on it.
17107         * MODULES.html.sh (func_all_modules): Add readlink.
17108
17109 2003-06-25  Bruno Haible  <bruno@clisp.org>
17110
17111         * m4/readlink.m4: New file.
17112
17113 2003-06-25  Bruno Haible  <bruno@clisp.org>
17114
17115         * lib/readlink.c: New file.
17116
17117 2003-06-22  Karl Berry  <karl@gnu.org>
17118
17119         * config/srclist.txt: update mkinstalldirs from automake.
17120         * config/mkinstalldirs: update.
17121
17122 2003-06-22  Bruno Haible  <bruno@clisp.org>
17123
17124         Portability to mingw32.
17125         * m4/ssize_t.m4: New file, from GNU gettext.
17126         * m4/safe-read.m4 (gl_PREREQ_SAFE_READ): Require gt_TYPE_SSIZE_T.
17127         * m4/xreadlink.m4 (gl_XREADLINK): Require gt_TYPE_SSIZE_T.
17128
17129 2003-06-22  Bruno Haible  <bruno@clisp.org>
17130
17131         * modules/safe-read: Add m4/ssize_t.m4.
17132         * modules/xreadlink: Add m4/ssize_t.m4.
17133
17134 2003-06-20  Bruno Haible  <bruno@clisp.org>
17135
17136         Assume C89, so PARAMS isn't needed.
17137         * lib/unicodeio.h (PARAMS): Remove.
17138         * lib/unicodeio.c: Don't use PARAMS.
17139
17140 2003-06-18  Karl Berry  <karl@gnu.org>
17141
17142         * config/config.{guess,sub}: update from prep.
17143
17144 2003-06-18  Jim Meyering  <jim@meyering.net>
17145
17146         Merge changes from coreutils.
17147         * lib/readutmp.c: Include <string.h> and <stdlib.h> unconditionally.
17148         Remove explicit declarations of xmalloc and realloc.
17149         Include xalloc.h.
17150         (read_utmp): Remove anachronistic cast of xmalloc.
17151
17152 2003-06-17  Paul Eggert  <eggert@twinsun.com>
17153
17154         Assume C89, so PARAMS isn't needed.
17155         * lib/backupfile.h (PARAMS): Remove.  All uses removed.
17156         * lib/closeout.h, lib/dirname.h, lib/filemode.h, lib/fsusage.h,
17157         lib/getdate.h, lib/getline.h, lib/group-member.h, lib/hard-locale.h,
17158         lib/hash.h, lib/linebuffer.h, lib/long-options.h, lib/makepath.h,
17159         lib/memcasecmp.h, lib/memcoll.h, lib/modechange.h, lib/mountlist.h,
17160         lib/path-concat.h, lib/physmem.h, lib/posixtm.h, lib/quote.h,
17161         lib/readutmp.h, lib/same.h, lib/save-cwd.h, lib/savedir.h,
17162         lib/stdio-safer.h, lib/strtoimax.c, lib/strverscmp.h,
17163         lib/unistd-safer.h, lib/version-etc.h, lib/xalloc.h, lib/xreadlink.h,
17164         lib/xstrtod.h, lib/xstrtol.h: Likewise.
17165         * lib/filemode.h, lib/hard-locale.h, lib/memcoll.h, lib/modechange.h,
17166         lib/physmem.h, lib/same.h, lib/strverscmp.h: Do not include config.h;
17167         no longer needed. Anyway, config.h should always be included before any
17168         other file.
17169
17170 2003-06-11  Simon Josefsson  <jas@extundo.com>
17171
17172         * modules/sysexits: New file.
17173         * MODULES.html.sh (func_all_modules): Add sysexits.
17174
17175 2003-06-11  Simon Josefsson  <jas@extundo.com>
17176
17177         * lib/sysexit_.h: New file.
17178
17179 2003-06-11  Derek Price  <derek@ximbiot.com>
17180
17181         * lib/stat.c [LSTAT]: Compile/use slash_aware_lstat only if it is
17182         necessary.
17183
17184 2003-06-11  Bruno Haible  <bruno@clisp.org>
17185
17186         * m4/sysexits.m4: New file.
17187
17188 2003-06-10  Simon Josefsson <jas@extundo.com>
17189
17190         * lib/argp.h: New file, from glibc.
17191         * lib/argp-ba.c: New file, from glibc.
17192         * lib/argp-eexst.c: New file, from glibc.
17193         * lib/argp-fmtstream.c: New file, from glibc.
17194         * lib/argp-fmtstream.h: New file, from glibc.
17195         * lib/argp-fs-xinl.c: New file, from glibc.
17196         * lib/argp-help.c: New file, from glibc.
17197         * lib/argp-namefrob.h: New file, from glibc.
17198         * lib/argp-parse.c: New file, from glibc.
17199         * lib/argp-pv.c: New file, from glibc.
17200         * lib/argp-pvh.c: New file, from glibc.
17201         * lib/argp-xinl.c: New file, from glibc.
17202
17203 2003-06-10  Simon Josefsson  <jas@extundo.com>
17204
17205         * modules/strchrnul: New file.
17206
17207 2003-06-10  Simon Josefsson  <jas@extundo.com>
17208
17209         * modules/argp: New file.
17210
17211 2003-06-10  Simon Josefsson  <jas@extundo.com>
17212
17213         * m4/strchrnul.m4: New file.
17214
17215 2003-06-10  Simon Josefsson  <jas@extundo.com>
17216
17217         * lib/strchrnul.h: New file.
17218         * lib/strchrnul.c: New file.
17219
17220 2003-06-10  Bruno Haible  <bruno@clisp.org>
17221
17222         * MODULES.html.sh (func_all_modules): Add strchrnul and argp.
17223
17224 2003-06-07  Karl Berry  <karl@gnu.org>
17225
17226         * config/config.{guess,sub}: update from prep.
17227
17228 2003-06-07  Jim Meyering  <jim@meyering.net>
17229
17230         * modules/strtod: Use $(...) notation, not @...@ for
17231         AC_REPLACE'd variables.
17232         * modules/localcharset: Likewise.
17233
17234 2003-06-07  Jim Meyering  <jim@meyering.net>
17235
17236         * lib/readtokens.h: Put `Free Software Foundation, Inc.'
17237         in place of my name in the copyright comment.
17238         Remove definition and uses of __P.
17239
17240         From coreutils.
17241         * lib/stat.c: Don't declare xmalloc explicitly.
17242         Instead, include "xalloc.h".
17243         * lib/readtokens.c (readtokens): Remove anachronistic casts of xmalloc,
17244         xrealloc, and xcalloc return values.
17245         * lib/xgetcwd.c (xgetcwd): Include "xgetcwd.h".
17246         Improve comment.
17247         * lib/xgetcwd.h: Remove definition/uses of PARAMS.
17248
17249 2003-06-07  Bruno Haible  <bruno@clisp.org>
17250
17251         * modules/poll (Makefile.am): Use explicit creation rule for poll.h, to
17252         avoid AC_CONFIG_LINKS.
17253         * modules/fnmatch (Makefile.am): Use explicit creation rule for
17254         fnmatch.h, to avoid AC_CONFIG_LINKS.
17255         * modules/alloca (Makefile.am): Make creation of alloca.h Ctrl-C safe.
17256
17257 2003-06-07  Bruno Haible  <bruno@clisp.org>
17258
17259         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH, gl_FUNC_FNMATCH_POSIX,
17260         gl_FUNC_FNMATCH_GNU): Set FNMATCH_H instead of invoking
17261         AC_CONFIG_LINKS. Needed to allow for a different name of the lib
17262         directory.
17263         * m4/poll.m4 (gl_FUNC_POLL): Set POLL_H instead of invoking
17264         AC_CONFIG_LINKS. Needed to allow for a different name of the lib
17265         directory.
17266
17267 2003-06-06  Jim Meyering  <jim@meyering.net>
17268
17269         Merge from coreutils.
17270         * lib/same.c: (same_name): Declare *_basename locals to be `const'.
17271         Consolidate declarations and initializations of *_base* locals.
17272
17273         Merge from coreutils.
17274         This avoids a core dump on systems without GNU putenv,
17275         when running `env -u SOME_ALREADY_UNSET_VARIABLE'.
17276         * lib/putenv.c (__set_errno, LOCK, UNLOCK): Define.
17277         (unsetenv): New static function, from GNU libc.
17278         (rpl_putenv): Use it.
17279
17280         * lib/modechange.c: Remove trailing blanks.
17281
17282         Merge from coreutils.
17283         * lib/fsusage.c: Remove declaration of statfs.
17284         It conflicted with one from OSF/1 5.1 in <sys/mount.h>.
17285
17286         * lib/posixtm.c: Include <stdbool.h> unconditionally.
17287
17288 2003-06-06  Jim Meyering  <jim@meyering.net>
17289
17290         * lib/stdbool_.h: Renamed from stdbool.h.in.
17291
17292 2003-06-06  Jim Meyering  <jim@meyering.net>
17293             Bruno Haible  <bruno@clisp.org>
17294
17295         * modules/stdbool: Reflect renaming: stdbool.h.in -> stdbool_.h.
17296         Adjust Makefile.am snippet not to redirect directly to target.
17297         Use $(STDBOOL_H) notation, not @STDBOOL_H@ for AC_REPLACE'd variables.
17298
17299 2003-06-05  Paul Eggert  <eggert@twinsun.com>
17300
17301         * lib/mktime.c (__mktime_internal): When resolving a tm_isdst
17302         mismatch, look in future quarters as well as past.  This fixes a
17303         bug when processing fall-backwards gaps immediately after a long
17304         period of daylight-saving time.
17305
17306         * lib/mktime.c: Assume freestanding C89 or better.
17307         (HAVE_LIMITS_H): Remove.  Assume it's 1.
17308         (__P): Remove; not used.
17309         (CHAR_BIT, INT_MIN, INT_MAX): Remove; <limits.h> defines them.
17310         (mktime, not_equal_tm, print_tm, check_result,
17311         main): Use prototypes.  Use const * where appropriate.
17312         (main): Fix typo in testing code that uncovered by above changes.
17313         (Local Variables): Remove -DHAVE_LIMITS_H from compile-command.
17314
17315 2003-06-04  Paul Eggert  <eggert@twinsun.com>
17316
17317         * m4/human.m4 (gl_HUMAN): Require AM_STDBOOL_H.  Check for
17318         locale.h, localeconv.  This merges changes from coreutils.
17319
17320         * m4/mktime.m4 (AC_FUNC_MKTIME): New macro, taken from Autoconf CVS.
17321         It can be removed after the next Autoconf is released.
17322         * m4/exclude.m4 (gl_EXCLUDE): Don't check for sys/types.h; no loner
17323         needed.
17324
17325 2003-06-04  Paul Eggert  <eggert@twinsun.com>
17326
17327         * lib/mktime.c: Fix Debian bug 177940
17328         <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=177940>.
17329         (localtime_offset): Now long int, not time_t, because we want it
17330         to be guaranteed to be signed.  All uses changed.
17331         (__mktime_internal): If overflow would occur when adding offset,
17332         don't add it.
17333
17334         Merge 'human' changes from coreutils.  Rewrite to support
17335         locale-specific notations like thousands separators.
17336         * lib/human.c: Simplify authorship notice.
17337         Include human.h immediately after config.h.
17338         <sys/types.h>, <stdio.h>: Do not include; no longer needed.
17339         <limits.h>: Do not include, since human.h does.
17340         (SIZE_MAX, UINTMAX_MAX): New macros.
17341         <strings.h>: Include if HAVE_STRINGS_H, not if !HAVE_STRING_H.
17342         <locale.h>: Include if HAVE_LOCALE_H and HAVE_LOCALECONV.
17343         (HUMAN_READABLE_SUFFIX_LENGTH_MAX): New macro.
17344         (power_letter): Renamed from suffixes.
17345         (generate_suffix_backwards): Remove.
17346         (adjust_value): Now takes int style (because of human.h changes)
17347         and long double value (for greater precision on some platforms).
17348         (group_number): New function.
17349         (human_readable): Use it.  Use integer options, not enum.
17350         Put the options before the sizes in the arg list.
17351         Support all the new options.
17352         The old human_readable function has been removed;
17353         use inttostr.h instead.
17354         (human_readable, default_block_size, humblock):
17355         Use uintmax_t, not int, for block sizes.
17356         (human_readable_inexact, block_size_types): Remove.
17357         (block_size_opts): New constant.
17358         (human_options): Renamed from human_block_size, with new signature
17359         that allows block sizes up to UINTMAX_MAX.  All callers changed.
17360         * lib/human.h: Add copyright and authorship notice.
17361         Include <limits.h> and <stdbool.h> unconditionally.
17362         (PARAMS): Remove.  All uses removed.
17363         (LONGEST_HUMAN_READABLE): Add support for thousands separator.
17364         (enum human_inexact_style): Remove tag; now a nameless enum.
17365         (human_floor, human_ceiling, human_round_to_even): Now have
17366         values 2, 0, 1 rather than -1, 1, 0.
17367         (human_group_digits, human_suppress_point_zero, human_autoscale,
17368         human_base_1024, human_SI, human_B): New constants.
17369         (human_readable_inexact, human_block_size): Remove.
17370         (human_readable): Size args are now uintmax_t, not int.
17371         (human_options): New decl.
17372
17373         * lib/exclude.c: (new_exclude, add_exclude): Remove casts that are
17374         unnecessary now that we assume C89 or better.  This change
17375         imported from coreutils.
17376
17377         * lib/mktime.c (__mktime_internal): Do not reject negative timestamps
17378         arbitrarily.  This is the same patch as 2003-05-28, but it got lost
17379         in the 2003-05-30 sync from glibc.
17380
17381         .h files should stand alone, but we shouldn't include <sys/types.h>
17382         if we can get away with just <stddef.h>.
17383
17384         * lib/__fpending.h, addext.c, backupfile.c, exclude.c, getline.c,
17385         malloc.c, putenv.c, realloc.c, strcasecmp.c: Include <stddef.h>
17386         rather than <sys/types.h>, as we merely need size_t.
17387         * lib/dirname.h, memcoll.h, xalloc.h, xmemcoll.h: Include <stddef.h>,
17388         to get size_t.
17389         * lib/hash.h, linebuffer.h, readtokens.h, stdio-safer.h, version-etc.h:
17390         Include <stdio.h>, to get FILE.
17391         * lib/memcasecmp.c: Don't include <sys/types.h>, as we can assume
17392         memcasecmp.h has included <stddef.h> and all we need is size_t.
17393         * lib/memcoll.c: Include "memcoll.h", which gets us size_t and checks
17394         our interface, instead of including <sys/types.h>
17395
17396 2003-06-04  Paul Eggert  <eggert@twinsun.com>
17397
17398         * config/srclist.txt ($LIBCSRC/time/mktime.c lib gpl): Comment out for
17399         now, as glibc mktime is buggy on non-glibc systems.
17400
17401 2003-06-03  Karl Berry  <karl@gnu.org>
17402
17403         * config/config.sub: update from prep.
17404
17405 2003-06-02  Paul Eggert  <eggert@twinsun.com>
17406
17407         [from coreutils]
17408         Fix some minor time-related bugs with POSIX time arguments.
17409         Some valid time stamps were being rejected (notably -1, and
17410         time stamps before 1900 on 64-bit hosts).  And some invalid
17411         time stamps were being accepted, e.g. September 31.
17412
17413         * lib/posixtm.h (posixtime): Return bool instead of time_t, so
17414         that we can return (time_t) -1 successfully.
17415         * lib/posixtm.c: Likewise.
17416         [HAVE_STDBOOL_H]: Include <stdbool.h>.
17417         (bool, false, true) [!HAVE_STDBOOL_H]: New type.
17418         (t): Remove static var.
17419         (year, posix_time_parse): Now takes struct tm * arg to modify, instead
17420         of static var.  All uses changed.
17421         (year): Do not reject years before 1900; they can occur with
17422         64-bit time_t.
17423         (posix_time_parse): Do not check for out-of-range components;
17424         that is now the caller's responsibility, since our checks were
17425         only approximations.
17426         (posixtime): Use mktime to check for out-of-range components,
17427         since it knows them exactly.
17428         If mktime returns (time_t) -1, check whether an error actually occurred
17429         by invoking localtime on -1.
17430         (main) [TEST_POSIXTIME]: Check for input data errors, and report
17431         posixtime failures better.
17432         Improve the test data (in comments only).
17433
17434 2003-06-02  Karl Berry  <karl@gnu.org>
17435
17436         * config/mkinstalldirs (version): new variable.
17437         (--version): new option.
17438         (usage): improve message.
17439
17440 2003-05-30  Karl Berry  <karl@gnu.org>
17441
17442         * lib/mktime.c: update from libc.
17443
17444 2003-05-30  Bruno Haible  <bruno@clisp.org>
17445
17446         * modules/gettext: Add files m4/nls.m4 and m4/po.m4.
17447         * config/config.rpath: Upgrade to gettext-0.12.1.
17448
17449 2003-05-30  Bruno Haible  <bruno@clisp.org>
17450
17451         * m4/gettext.m4: Upgrade to gettext-0.12.1.
17452         * m4/nls.m4: New file, from gettext-0.12.1.
17453         * m4/po.m4: New file, from gettext-0.12.1.
17454         * m4/progtest.m4: Upgrade to gettext-0.12.1.
17455
17456 2003-05-30  Bruno Haible  <bruno@clisp.org>
17457
17458         * lib/config.charset: Upgrade to gettext-0.12.1 and libiconv-1.9.1.
17459         * lib/localcharset.h: Likewise.
17460         * lib/localcharset.c: Likewise.
17461
17462 2003-05-29  Karl Berry  <karl@gnu.org>
17463
17464         * config/config.rpath: update from gettext.
17465
17466 2003-05-28  Paul Eggert  <eggert@twinsun.com>
17467
17468         Assume the headers required for C89 freestanding compilers.
17469         * m4/backupfile.m4 (gl_BACKUPFILE): Don't check for limits.h.
17470         * m4/fsusage.m4 (gl_PREREQ_FSUSAGE_EXTRA): Likewise.
17471         * m4/human.m4 (gl_HUMAN): Likewise.
17472         * m4/pathmax.m4 (gl_PATHMAX): Likewise.
17473         * m4/rpmatch.m4 (gl_FUNC_RPMATCH): Likewise.
17474         * m4/userspec.m4 (gl_USERSPEC): Likewise.
17475         * m4/xreadlink.m4 (gl_XREADLINK): Likewise.
17476         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
17477         * m4/quote.m4 (gl_QUOTE): Don't check for stddef.h.
17478
17479 2003-05-28  Paul Eggert  <eggert@twinsun.com>
17480
17481         Assume the headers required for C89 freestanding compilers.
17482         * lib/addext.c, lib/backupfile.c, lib/fsusage.c, lib/human.c,
17483         lib/pathmax.h, lib/rpmatch.c, lib/userspec.c, lib/xreadlink.c,
17484         lib/xstrtol.c: Include <limits.h> without checking for HAVE_LIMITS_H.
17485         * lib/backupfile.c, lib/fsusage.c, lib/hash.c, lib/human.c,
17486         lib/safe-read.c, lib/userspec.c, lib/xstrtol.c (CHAR_BIT): Don't
17487         define, since <limits.h> is guaranteed to do that.
17488         * lib/fatal.c: Include <stdarg.h> without checking for __STDC__.
17489         * lib/exclude.c: Include <stdbool.h> unconditionally.
17490         * lib/tempname.c: Include <stddef.h> unconditionally.
17491         * lib/hash.c: Include <limits.h>, since we no longer define CHAR_BIT.
17492         * lib/modechange.c, rpmatch.c (NULL): Don't define, since
17493         <stddef.h> does that.
17494         * lib/quote.c: Dont include <stddef.h> or <sys/types.h>; not needed.
17495         * lib/safe-read.c (INT_MAX): Don't define, since <limits.h> does that.
17496         * lib/safe-read.c (TYPE_MINIMUM, TYPE_MAXIMUM): Remove; no longer
17497         needed.
17498         * lib/xstrtol.c: Likewise.
17499         * lib/safe-read.c: Remove TYPE_SIGNED; no longer needed.
17500         * lib/savedir.c: Include <stddef.h> instead of defining NULL.
17501
17502         * lib/addext.c (addext): Use assignment rather than cast, to avoid
17503         warnings on some platforms.
17504
17505         * lib/mktime.c (__mktime_internal): Do not reject negative timestamps
17506         arbitrarily.
17507
17508 2003-05-26  Jim Meyering  <jim@meyering.net>
17509
17510         Merge in a change from coreutils:
17511         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Test the cache variable, not one
17512         that is guaranteed to be `no'.  Use `no_such_member' to indicate
17513         that condition, rather than `-1' which is slightly misleading.
17514         Change the name of the cache variable to have the gl_ prefix.
17515         Prompted by a patch from Richard Dawe for DJGPP.
17516
17517 2003-05-24  Karl Berry  <karl@gnu.org>
17518
17519         * config/config.guess: update from prep.
17520
17521 2003-05-22  Karl Berry  <karl@gnu.org>
17522
17523         * gnulib-tool (func_usage): =LIBRARY not =libRARY in help msg.
17524
17525 2003-05-20  Karl Berry  <karl@gnu.org>
17526
17527         * config/config.guess: update from prep.
17528
17529 2003-05-18  Karl Berry  <karl@gnu.org>
17530
17531         * config/srclistvars.sh (TEXMF): use TEXMFROOT instead, since TEXMF
17532         might actually be set by the user.
17533
17534         * config/depcomp, install-sh, mdate-sh: update from automake.
17535
17536 2003-05-17  Bruno Haible  <bruno@clisp.org>
17537
17538         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Fix a quoting bug leading to an
17539         invalid expansion for AC_EGREP_CPP.
17540         * m4/strtoimax.m4 (gl_FUNC_STRTOIMAX): Likewise.
17541         * m4/strtoumax.m4 (gl_FUNC_STRTOUMAX): Likewise.
17542         Suggested by Akim Demaille <akim@epita.fr> in
17543         http://mail.gnu.org/archive/html/bug-autoconf/2003-05/threads.html
17544
17545 2003-05-12  Jim Meyering  <jim@meyering.net>
17546
17547         * lib/strftime.c (my_strftime): Let the `-' (no-pad) flag affect
17548         the space-padded-by-default conversion specifiers, %e, %k, %l.
17549
17550 2003-05-12  Bruno Haible  <bruno@clisp.org>
17551
17552         * lib/linebreak.c (iconv_string_length): Don't return -1 just because
17553         the string is longer than 4 KB.
17554
17555 2003-05-11  Karl Berry  <karl@gnu.org>
17556
17557         * config/config.{guess,sub}: update from prep.
17558
17559 2003-05-09  Bruno Haible  <bruno@clisp.org>
17560
17561         * modules/error: Add m4/strerror_r.m4 to file list.
17562
17563 2003-05-03  Bruno Haible  <bruno@clisp.org>
17564
17565         Upgrade to Unicode-4.0.
17566         * lib/linebreak.c (nonspacing_table_data): Change width of U+00AD,
17567         U+0350..U+0357, U+035D..U+035F, U+0600..U+0603, U+0610..U+0615,
17568         U+0656..U+0658, U+0A01, U+0AE2..U+0AE3, U+0CBC, U+17B4..U+17B5,
17569         U+17DD, U+1920..U+1922, U+1927..U+192B, U+1932, U+1939..U+193B
17570         from 1 to 0. Change width of U+0CBF, U+0CC6, U+180E from 0 to 1.
17571         (uc_width): Change width of U+4DC0..U+4DFF from 2 to 1. Change width
17572         of U+2A6D7..U+2F7FF, U+2FA1E..U+2FFFD, U+30000..U+3FFFD from 1 to 2.
17573         Change width of U+E0100..U+E01EF from 1 to 0.
17574
17575 2003-04-25  Jim Meyering  <jim@meyering.net>
17576
17577         * lib/copy-file.c (copy_file_preserving): Declare buf_size to be
17578         of type size_t, not int.
17579
17580 2003-04-25  Bruno Haible  <bruno@clisp.org>
17581
17582         * lib/copy-file.c: Include <stddef.h>, for size_t.
17583
17584 2003-04-21  Paul Eggert  <eggert@twinsun.com>
17585
17586         * m4/error.m4 (gl_ERROR): Do not put under dynamic conditions some
17587         code which expansion is under static control.  Patch imported from
17588         Akim Demaille's patch to Bison; see
17589         <http://mail.gnu.org/archive/html/bison-patches/2003-03/msg00057.html>.
17590
17591 2003-04-14  Bruno Haible  <bruno@clisp.org>
17592
17593         * m4/error.m4 (jm_PREREQ_ERROR): Use AC_FUNC_VPRINTF.
17594
17595 2003-04-11  Jim Meyering  <jim@meyering.net>
17596
17597         Merge changes from Coreutils.
17598
17599         2003-03-22  Jim Meyering  <jim@meyering.net>
17600
17601         * lib/strftime.c (widen): Cast alloca return value to proper type.
17602
17603         2003-01-19  Ulrich Drepper  <drepper@redhat.com>
17604
17605         From GNU libc.
17606         * lib/strftime.c (my_strftime): Handle very large width
17607         specifications for numeric values correctly.  Improve checks for
17608         overflow.
17609
17610         2003-01-19  Jim Meyering  <jim@meyering.net>
17611
17612         * lib/strftime.c (widen) [COMPILE_WIDE]: Merge nearly-identical
17613         definitions.
17614         (nl_get_alt_digit) [! defined my_strftime]: Define.
17615         (my_strftime) [_NL_CURRENT]: Merge nearly-identical uses of
17616         _nl_get_alt_digit and _nl_get_walt_digit.
17617
17618         * lib/strftime.c (my_strftime): Merge in locale-related changes from
17619         libc. These changes have no effect outside of _LIBC.
17620
17621 2003-04-10  Bruno Haible  <bruno@clisp.org>
17622
17623         * modules/findprog: New file.
17624         * MODULES.html.sh (func_all_modules): Add it.
17625
17626 2003-04-10  Bruno Haible  <bruno@clisp.org>
17627
17628         * m4/findprog.m4: New file.
17629         * m4/eaccess.m4: New file.
17630
17631 2003-04-10  Bruno Haible  <bruno@clisp.org>
17632
17633         * lib/findprog.h: New file, from GNU gettext.
17634         * lib/findprog.c: New file, from GNU gettext.
17635
17636 2003-04-05  Jim Meyering  <jim@meyering.net>
17637
17638         Merge changes from Coreutils.
17639
17640         * lib/exclude.h (PARAMS): Remove definition and uses.
17641         * lib/exclude.c: Remove uses of `PARAMS'.
17642
17643         * lib/dirname.c [TEST_DIRNAME]: Update build instructions for test.
17644         Add test-cases for DOS filenames. Declare program_name.
17645         (main): Set up program_name.  Patch by Rich Dawe.
17646
17647         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
17648         error from mntctl.
17649         Use mntctl's return value to drive the entry-processing loop, since
17650         we can't rely on the value of the vmt_length member in the last
17651         entry.  On some systems doing so could result in exhausting
17652         virtual memory.  Based in part on a patch from Mike Jetzer.
17653
17654 2003-04-04  Bruno Haible  <bruno@clisp.org>
17655
17656         * modules/linebreak: New file.
17657         * MODULES.html.sh (func_all_modules): Add it.
17658
17659 2003-04-04  Bruno Haible  <bruno@clisp.org>
17660
17661         * m4/linebreak.m4: New file.
17662
17663 2003-04-04  Bruno Haible  <bruno@clisp.org>
17664
17665         * lib/linebreak.h: New file, from GNU gettext.
17666         * lib/linebreak.c: New file, from GNU gettext with slight
17667         modifications.
17668         * lib/lbrkprop.h: New file, from GNU gettext.
17669
17670 2003-04-03  Bruno Haible  <bruno@clisp.org>
17671
17672         * modules/utf8-ucs4: New file.
17673         * modules/utf16-ucs4: New file.
17674         * modules/ucs4-utf8: New file.
17675         * modules/ucs4-utf16: New file.
17676         * MODULES.html.sh (func_all_modules): Add them.
17677
17678 2003-04-03  Bruno Haible  <bruno@clisp.org>
17679
17680         * m4/utf-ucs4.m4: New file.
17681         * m4/ucs4-utf.m4: New file.
17682
17683 2003-04-03  Bruno Haible  <bruno@clisp.org>
17684
17685         * lib/utf8-ucs4.h: New file, from GNU gettext.
17686         * lib/utf16-ucs4.h: New file, from GNU gettext.
17687         * lib/ucs4-utf8.h: New file, from GNU gettext.
17688         * lib/ucs4-utf16.h: New file, from GNU gettext.
17689
17690 2003-04-02  Bruno Haible  <bruno@clisp.org>
17691
17692         * modules/binary-io: New file.
17693         * MODULES.html.sh (func_all_modules): Add it.
17694
17695 2003-04-02  Bruno Haible  <bruno@clisp.org>
17696
17697         * lib/binary-io.h: New file, from GNU gettext.
17698
17699 2003-04-01  Bruno Haible  <bruno@clisp.org>
17700
17701         * modules/pathname: New file.
17702         * MODULES.html.sh (func_all_modules): Add it.
17703
17704 2003-04-01  Bruno Haible  <bruno@clisp.org>
17705
17706         * lib/pathname.h: New file, from GNU gettext.
17707         * lib/concatpath.c: New file, from GNU gettext.
17708
17709 2003-03-30  Bruno Haible  <bruno@clisp.org>
17710
17711         * m4/copy-file.m4 (gl_COPY_FILE): Add check for chown().
17712
17713 2003-03-30  Bruno Haible  <bruno@clisp.org>
17714
17715         * lib/copy-file.c (copy_file_preserving): Don't set owner if the
17716         function chown() doesn't exist.
17717
17718 2003-03-28  Bruno Haible  <bruno@clisp.org>
17719
17720         * modules/copy-file: New file.
17721         * MODULES.html.sh (func_all_modules): Add it.
17722
17723 2003-03-28  Bruno Haible  <bruno@clisp.org>
17724
17725         * m4/copy-file.m4: New file.
17726
17727 2003-03-28  Bruno Haible  <bruno@clisp.org>
17728
17729         * lib/copy-file.h: New file, from GNU gettext.
17730         * lib/copy-file.c: New file, from GNU gettext.
17731
17732 2003-03-18  Jim Meyering  <jim@meyering.net>
17733
17734         * lib/quote.c (quote_n): Fix typo in comment.
17735
17736 2003-03-18  Bruno Haible  <bruno@clisp.org>
17737
17738         * m4/onceonly.m4: Use m4_defn instead of defn, for better error
17739         checking.
17740         * m4/onceonly_2_57.m4: Likewise.
17741
17742 2003-03-17  Bruno Haible  <bruno@clisp.org>
17743
17744         * m4/onceonly.m4: Require autoconf 2.54 or newer.
17745         (m4_quote): Remove macro.
17746         * m4/onceonly_2_57.m4: Require autoconf 2.54 or newer.
17747
17748 2003-03-14  Jim Meyering  <jim@meyering.net>
17749
17750         Merge changes from Coreutils.
17751         * lib/obstack.h (obstack_object_size): Declare temporary, __o,
17752         to be const, in order to avoid warnings.
17753         (obstack_room): Likewise.
17754         (obstack_empty_p): Likewise.
17755
17756 2003-03-14  Bruno Haible  <bruno@clisp.org>
17757
17758         * m4/onceonly_2_57.m4 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE,
17759         AC_CHECK_DECLS_ONCE): Quote AC_FOREACH variable-expansions properly.
17760
17761 2003-03-13  Paul Eggert  <eggert@twinsun.com>
17762
17763         Merge changes from Bison.
17764         * lib/obstack.h: (__INT_TO_PTR) [__STDC__]: Cast result to
17765         (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
17766         when compiling Bison 1.875's `bitset bset = obstack_alloc
17767         (bobstack, bytes);'.  Problem reported by Nelson H. F. Beebe.
17768         * lib/hash.c: Include <stdbool.h> unconditionally.
17769
17770 2003-03-13  Paul Eggert  <eggert@twinsun.com>
17771
17772         * m4/onceonly.m4 (m4_quote): New macro.
17773         (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
17774         Quote AC_FOREACH variable-expansions properly.
17775
17776 2003-03-13  Paul Eggert  <eggert@twinsun.com>
17777
17778         * doc/COPYING.DOC, fdl.texi: Sync with latest FSF version.
17779
17780 2003-03-09  Paul Eggert  <eggert@twinsun.com>
17781
17782         * lib/argmatch.c (EXIT_FAILURE): Define if the system doesn't.
17783         Reported by Bruce Becker; see:
17784         http://mail.gnu.org/archive/html/bug-bison/2003-03/msg00017.html
17785
17786 2003-03-03  Paul Eggert  <eggert@twinsun.com>
17787             Bruno Haible  <bruno@clisp.org>
17788
17789         * lib/mbswidth.h: Include <wchar.h>. Needed for UnixWare 7.1.1.
17790         Reported by John Hughes, see
17791         http://mail.gnu.org/archive/html/bug-bison/2003-02/msg00030.html
17792
17793 2003-02-20  Bruno Haible  <bruno@clisp.org>
17794
17795         * MODULES.html.sh (func_all_modules): Add poll.
17796
17797 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
17798
17799         * modules/poll: New file.
17800
17801 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
17802
17803         * lib/poll_.h: New file.
17804         * lib/poll.c: New file.
17805
17806 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
17807
17808         * m4/poll.m4: New file.
17809
17810 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
17811
17812         * modules/mathl: New file.
17813
17814 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
17815
17816         * lib/mathl.h: New file.
17817         * lib/acosl.c: New file.
17818         * lib/asinl.c: New file.
17819         * lib/atanl.c: New file.
17820         * lib/ceill.c: New file.
17821         * lib/cosl.c: New file.
17822         * lib/expl.c: New file.
17823         * lib/floorl.c: New file.
17824         * lib/frexpl.c: New file.
17825         * lib/ldexpl.c: New file.
17826         * lib/logl.c: New file.
17827         * lib/sincosl.c: New file.
17828         * lib/sinl.c: New file.
17829         * lib/sqrtl.c: New file.
17830         * lib/tanl.c: New file.
17831         * lib/trigl.c: New file.
17832         * lib/trigl.h: New file.
17833
17834 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
17835
17836         * m4/mathl.m4: New file.
17837
17838 2003-02-18  Bruno Haible  <bruno@clisp.org>
17839
17840         * MODULES.html.sh (func_all_modules): Add mathl.
17841
17842 2003-02-17  Bruno Haible  <bruno@clisp.org>
17843
17844         * modules/mkdtemp: New module.
17845         * MODULES.html.sh (func_all_modules): Add it.
17846
17847 2003-02-17  Bruno Haible  <bruno@clisp.org>
17848
17849         * m4/mkdtemp.m4: New file, from GNU gettext with modifications.
17850
17851 2003-02-17  Bruno Haible  <bruno@clisp.org>
17852
17853         * lib/mkdtemp.h: New file, from GNU gettext.
17854         * lib/mkdtemp.c: New file, from GNU gettext.
17855
17856 2003-02-02  Jim Meyering  <jim@meyering.net>
17857
17858         * m4/regex.m4 (jm_INCLUDED_REGEX): Detect broken re_search in
17859         e.g. glibc-2.2.93.
17860
17861 2003-01-31  Bruno Haible  <bruno@clisp.org>
17862
17863         * m4/rename.m4 (vb_FUNC_RENAME): Add a redirection from 'rename' to
17864         'rpl_rename'.
17865         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Add a redirection from 'strnlen' to
17866         'rpl_strnlen'.
17867         * m4/strtod.m4 (gl_FUNC_STRTOD): Add a redirection from 'strtod' to
17868         'rpl_strtod'.
17869         * m4/utime.m4 (jm_FUNC_UTIME): Add a redirection from 'utime' to
17870         'rpl_utime'.
17871
17872 2003-01-31  Bruno Haible  <bruno@clisp.org>
17873
17874         * lib/rename.c: #undef rename before defining rpl_rename.
17875         * lib/strnlen.c: #undef strnlen, define rpl_strnlen instead of strnlen.
17876
17877 2003-01-30  Bruno Haible  <bruno@clisp.org>
17878
17879         * modules/vasnprintf, modules/vasprintf: New modules.
17880         * MODULES.html.sh (func_all_modules): Add them.
17881
17882 2003-01-30  Bruno Haible  <bruno@clisp.org>
17883
17884         * m4/signed.m4: New file, from GNU gettext.
17885         * m4/longdouble.m4: New file, from GNU gettext.
17886         * m4/wchar_t.m4: New file, from GNU gettext.
17887         * m4/wint_t.m4: New file, from GNU gettext.
17888         * m4/vasnprintf.m4: New file.
17889         * m4/vasprintf.m4: New file.
17890
17891 2003-01-30  Bruno Haible  <bruno@clisp.org>
17892
17893         * lib/printf-args.h: New file, from GNU gettext.
17894         * lib/printf-args.c: New file, from GNU gettext.
17895         * lib/printf-parse.h: New file, from GNU gettext.
17896         * lib/printf-parse.c: New file, from GNU gettext.
17897         * lib/vasnprintf.h: New file, from GNU gettext.
17898         * lib/vasnprintf.c: New file, from GNU gettext.
17899         * lib/asnprintf.c: New file, from GNU gettext.
17900         * lib/vasprintf.h: New file, from GNU gettext with modifications.
17901         * lib/vasprintf.c: New file, from GNU gettext.
17902         * lib/asprintf.c: New file, from GNU gettext.
17903
17904 2003-01-29  Bruno Haible  <bruno@clisp.org>
17905
17906         * modules/stpncpy: New module.
17907         * MODULES.html.sh (func_all_modules): Add it.
17908
17909 2003-01-29  Bruno Haible  <bruno@clisp.org>
17910
17911         * m4/stpncpy.m4: New file.
17912
17913 2003-01-29  Bruno Haible  <bruno@clisp.org>
17914
17915         * lib/stpncpy.h: New file, from GNU gettext with modifications.
17916         * lib/stpncpy.c: New file, from GNU gettext with modifications.
17917
17918 2003-01-28  Bruno Haible  <bruno@clisp.org>
17919
17920         * modules/c-ctype: New module.
17921         * MODULES.html.sh (func_all_modules): Add it.
17922
17923 2003-01-28  Bruno Haible  <bruno@clisp.org>
17924
17925         * lib/c-ctype.h: New file, from GNU gettext, with changes suggested by
17926         Paul Eggert.
17927         * lib/c-ctype.c: New file, from GNU gettext, with changes suggested by
17928         Paul Eggert.
17929
17930 2003-01-27  Bruno Haible  <bruno@clisp.org>
17931
17932         * modules/xsetenv: New module.
17933         * MODULES.html.sh (func_all_modules): Add it.
17934
17935 2003-01-27  Bruno Haible  <bruno@clisp.org>
17936
17937         * lib/xsetenv.h: New file, from GNU gettext.
17938         * lib/xsetenv.c: New file, from GNU gettext.
17939
17940 2003-01-23  Jim Meyering  <jim@meyering.net>
17941
17942         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Correct typo: s/-1/no/ that kept this
17943         from working on systems without dirfd (at least Irix and OSF1/Tru64).
17944
17945 2003-01-23  Bruno Haible  <bruno@clisp.org>
17946
17947         * modules/minmax: New module.
17948         * MODULES.html.sh (func_all_modules): Add it.
17949
17950 2003-01-23  Bruno Haible  <bruno@clisp.org>
17951
17952         * lib/minmax.h: New file, from GNU gettext, with comments from Paul
17953         Eggert.
17954
17955 2003-01-22  Bruno Haible  <bruno@clisp.org>
17956
17957         * modules/exit: New module.
17958         * MODULES.html.sh (func_all_modules): Add it.
17959
17960 2003-01-22  Bruno Haible  <bruno@clisp.org>
17961
17962         * lib/exit.h: New file, from GNU gettext.
17963
17964 2003-01-19  Bruno Haible  <bruno@clisp.org>
17965
17966         * gnulib-tool: Recognize option --extract-maintainer.
17967         (func_get_maintainer): New function.
17968         * modules/*: Add Maintainer entry.
17969
17970 2003-01-16  Jim Meyering  <jim@meyering.net>
17971
17972         * m4/regex.m4: The `regex' struct is both input and output.
17973         Initialize it before each use.  Patch by Tim Waugh.
17974
17975 2003-01-16  Bruno Haible  <bruno@clisp.org>
17976
17977         * MODULES.html.sh: Add a table of contents. Add the module name as
17978         leftmost column. Add hyperlinks.
17979
17980 2003-01-15  Bruno Haible  <bruno@clisp.org>
17981
17982         * m4/md5.m4 (gl_MD5): Require AC_C_INLINE.
17983
17984 2003-01-15  Bruno Haible  <bruno@clisp.org>
17985
17986         * m4/longlong.m4 (jm_AC_TYPE_LONG_LONG): Also test the LL suffix.
17987         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Also test the ULL
17988         suffix.
17989
17990 2003-01-15  Bruno Haible  <bruno@clisp.org>
17991
17992         * m4/alloca.m4 (gl_FUNC_ALLOCA): Invoke AC_EGREP_CPP prerequisites.
17993
17994 2003-01-15  Bruno Haible  <bruno@clisp.org>
17995
17996         * lib/stpcpy.h (stpcpy): Use ANSI C function declarations.
17997         * lib/strcase.h (strcasecmp, strncasecmp): Likewise.
17998
17999 2003-01-14  Jim Meyering  <jim@meyering.net>
18000
18001         * lib/same.c (same_name): Tweak a comment.
18002
18003 2003-01-14  Bruno Haible  <bruno@clisp.org>
18004
18005         * lib/same.c (same_name): Reorder tests so as to avoid calling stat()
18006         when a string comparison is sufficient.
18007
18008 2003-01-14  Bruno Haible  <bruno@clisp.org>
18009
18010         * lib/readtokens.c (readtoken): Cast character to 'unsigned char', not
18011         'unsigned int'.
18012
18013 2003-01-14  Bruno Haible  <bruno@clisp.org>
18014
18015         * lib/hash-pjw.c: Add comment about low quality of this function.
18016
18017 2003-01-13  Bruno Haible  <bruno@clisp.org>
18018
18019         * modules/stpcpy: Distribute lib/stpcpy.h.
18020         * modules/setenv: Depend on alloca. Distribute lib/setenv.h.
18021
18022 2003-01-13  Bruno Haible  <bruno@clisp.org>
18023
18024         * modules/*: Add a description.
18025         * modules/strpbrk: Fix Makefile.am snippet.
18026         * modules/strtoimax: Fix dependencies.
18027         * modules/strtoumax: Likewise.
18028
18029 2003-01-13  Bruno Haible  <bruno@clisp.org>
18030
18031         * gnulib-tool (func_create_testdir): Substitute lib_OBJECTS.
18032         * modules/alloca (Makefile.am): All object files depend on alloca.h.
18033         * modules/stdbool (Makefile.am): All object files depend on stdbool.h.
18034
18035 2003-01-13  Bruno Haible  <bruno@clisp.org>
18036
18037         * gnulib-tool (func_create_testdir): Store config/* files in the main
18038         directory.
18039         * config.rpath: Move to ...
18040         * config/config.rpath: ... here.
18041         * modules/gettext: Contains config/config.rpath, not config.rpath.
18042         * modules/iconv: Likewise.
18043
18044 2003-01-12  Paul Eggert  <eggert@twinsun.com>
18045
18046         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
18047         to avoid collisions with libcurses and libreadline.
18048
18049         * m4/getstr.m4: Remove.
18050         * m4/getline.m4 (gl_PREREQ_GETLINE): Require AC_HEADER_STDC.
18051
18052 2003-01-12  Paul Eggert  <eggert@twinsun.com>
18053
18054         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
18055         to avoid collisions with libcurses and libreadline.
18056
18057         * lib/Makefile.am (libfetish_a_SOURCES): Remove getstr.c, getstr.h.
18058         * lib/getstr.h, getstr.c: Remove.
18059         * lib/getline.c: Include "getline.h", to check interface.
18060         Move body of old getstr.c here: this defines MIN_CHUNK and
18061         declares getdelim2, which is renamed from getstr.
18062         (getline, getdelim): Adjust to renaming of getstr -> getdelim2.
18063
18064         * lib/linebuffer.c (readlinebuffer): Renamed from readline.
18065         All uses changed.
18066         * lib/linebuffer.h: Likewise.
18067         (readline): Remove backward-compatibility macro.
18068
18069 2003-01-12  Paul Eggert  <eggert@twinsun.com>
18070
18071         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
18072         to avoid collisions with libcurses and libreadline.
18073         * getstr: Remove.
18074         * MODULES.html.sh: Remove getstr.
18075         * modules/getline: Depend on unlocked-io, not getstr.
18076
18077 2003-01-12  Jim Meyering  <jim@meyering.net>
18078
18079         * lib/makepath.c: Don't test HAVE_ERRNO_H.  It's not necessary.
18080
18081 2003-01-10  Bruno Haible  <bruno@clisp.org>
18082
18083         * modules/alloca: Change Makefile.am requirements. Simplify Include
18084         requirements. Add lib/alloca_.h to file list.
18085
18086 2003-01-10  Bruno Haible  <bruno@clisp.org>
18087
18088         * m4/alloca.m4 (gl_FUNC_ALLOCA): Also define ALLOCA_H.
18089
18090 2003-01-10  Bruno Haible  <bruno@clisp.org>
18091
18092         * lib/alloca_.h: New file.
18093         * lib/getdate.y: Unconditionally include alloca.h.
18094         * lib/makepath.c: Likewise.
18095         * lib/setenv.c: Likewise.
18096         * lib/userspec.c: Likewise.
18097
18098 2003-01-09  Karl Berry  <karl@gnu.org>
18099
18100         * MODULES.html.sh: include `dirname $0` in PATH, to find
18101         gnulib-tool.
18102
18103 2003-01-09  Bruno Haible  <bruno@clisp.org>
18104
18105         * modules/stdbool: Change configure.ac, Makefile.am requirements.
18106         Simplify Include requirements. Add lib/stdbool.h.in to file list.
18107
18108 2003-01-09  Bruno Haible  <bruno@clisp.org>
18109
18110         * m4/stdbool.m4 (AM_STDBOOL_H): New macro.
18111
18112 2003-01-09  Bruno Haible  <bruno@clisp.org>
18113
18114         * lib/stdbool.h.in: New file.
18115
18116 2003-01-09  Bruno Haible  <bruno@clisp.org>
18117
18118         * gnulib-tool (func_all_modules): Ignore files ending in ~.
18119         * MODULES.html.sh: Likewise.
18120
18121 2003-01-08  Jim Meyering  <jim@meyering.net>
18122
18123         * lib/full-write.c: Undefine and define-away `const' after inclusion
18124         of errno.h, not before.  Suggestion from Bruno Haible.
18125
18126 2003-01-08  Bruno Haible  <bruno@clisp.org>
18127
18128         * modules/full-read: Depend on full-write.
18129
18130 2003-01-08  Bruno Haible  <bruno@clisp.org>
18131
18132         * lib/safe-read.c: Include specification header first, to ensure its
18133         selfcontainedness.
18134         * lib/full-write.c: Likewise.
18135
18136 2003-01-07  Jim Meyering  <jim@meyering.net>
18137
18138         * lib/full-write.c: Rework so that it may serve to define full_read,
18139         too.
18140         * lib/full-read.c: Simply #define FULL_READ and include full-write.c.
18141
18142 2003-01-07  Bruno Haible  <bruno@clisp.org>
18143
18144         * lib/strtoimax.c: Include <stdint.h> as an alternative to
18145         <inttypes.h>.
18146         * lib/xstrtol.h: Likewise.
18147         * lib/xstrtoimax.c: Likewise.
18148         * lib/xstrtoumax.c: Likewise.
18149         * lib/human.h: Likewise.
18150
18151         * lib/tempname.c: Include <inttypes.h> too. Avoids a compilation error
18152         on systems that have <inttypes.h> but not <stdint.h>.
18153
18154 2003-01-07  Bruno Haible  <bruno@clisp.org>
18155
18156         * MODULES.html.sh: Add copyright notice.
18157         (missed_files): Omit CVS directory entries.
18158         (func_module): Make it work with sed-3.02.
18159         * MODULES.txt: Remove file.
18160
18161 2003-01-06  Jim Meyering  <jim@meyering.net>
18162
18163         * lib/version-etc.c: Update year in translatable copyright string.
18164
18165 2003-01-03  Karl Berry  <karl@gnu.org>
18166
18167         * config/config.{guess,sub}: update from prep.
18168
18169 2003-01-02  Karl Berry  <karl@gnu.org>
18170
18171         * doc/COPYING.DOC: belatedly updated to 1.2.
18172
18173 2003-01-01  Karl Berry  <karl@gnu.org>
18174
18175         * gnulib-tool (func_verify_module): report module name $module in
18176         error message, not $1.
18177         * gnulib-tool (create-testdir): don't complain if destdir couldn't
18178         be created, only if it doesn't exist.
18179         * gnulib-tool (last_checkin_date): don't expand the $Date here.
18180
18181 2002-12-31  Paul Eggert  <eggert@twinsun.com>
18182
18183         * m4/memcoll.m4 (gl_MEMCOLL): Require AC_FUNC_MEMCMP.
18184
18185 2002-12-31  Paul Eggert  <eggert@twinsun.com>
18186
18187         * lib/memcoll.c (memcoll): Fall back on a simple algorithm using
18188         memcmp if strcoll doesn't work.
18189
18190 2002-12-31  Bruno Haible  <bruno@clisp.org>
18191
18192         * lib/utime.c (utime_null): No need to call ftruncate if the file was
18193         nonempty.
18194
18195 2002-12-31  Bruno Haible  <bruno@clisp.org>
18196
18197         * lib/memcoll.c (STRCOLL): New macro.
18198         (memcoll): Use it.
18199
18200 2002-12-31  Bruno Haible  <bruno@clisp.org>
18201
18202         * lib/localcharset.h: New file.
18203         * lib/localcharset.c: Include it.
18204         * lib/unicodeio.c: Likewise.
18205
18206 2002-12-31  Bruno Haible  <bruno@clisp.org>
18207
18208         * lib/getstr.h (getstr): Define, to avoid clash with libcurses.
18209         * lib/linebuffer.h (readline): Define, to avoid clash with libreadline.
18210
18211 2002-12-31  Bruno Haible  <bruno@clisp.org>
18212
18213         * lib/getline.h: Include <stddef.h>, for size_t.
18214
18215         * lib/unicodeio.h: Include <stddef.h>, for size_t.
18216         * lib/unicodeio.c: Don't include <stddef.h>.
18217
18218 2002-12-31  Bruno Haible  <bruno@clisp.org>
18219
18220         * lib/getdate.y (get_date): Test HAVE_STRUCT_TM_TM_ZONE, not
18221         HAVE_TM_ZONE.
18222
18223 2002-12-24  Karl Berry  <karl@gnu.org>
18224
18225         * config/config.guess: update from prep.
18226
18227 2002-12-24  Bruno Haible  <bruno@clisp.org>
18228
18229         General infrasructure.
18230         * m4/README: Rewritten.
18231         * m4/onceonly.m4: New file.
18232         * m4/onceonly_2_57.m4: New file.
18233
18234         Module atexit.
18235         * m4/atexit.m4: New file.
18236
18237         Module strtod.
18238         * m4/strtod.m4: New file.
18239
18240         Module strtol.
18241         * m4/strtol.m4: New file.
18242
18243         Module strtoul.
18244         * m4/strtoul.m4: New file.
18245
18246         Module memchr.
18247         * m4/memchr.m4: New file.
18248
18249         Module memcmp.
18250         * m4/memcmp.m4 (gl_PREREQ_MEMCMP): New macro.
18251         (jm_FUNC_MEMCMP): Invoke it.
18252
18253         Module memcpy.
18254         * m4/memcpy.m4: New file.
18255
18256         Module memmove.
18257         * m4/memmove.m4: New file.
18258
18259         Module memset.
18260         * m4/memset.m4: New file.
18261
18262         Module strcspn.
18263         * m4/strcspn.m4: New file.
18264
18265         Module strpbrk.
18266         * m4/strpbrk.m4: New file.
18267
18268         Module strstr.
18269         * m4/strstr.m4: New file.
18270
18271         Module strerror.
18272         * m4/strerror.m4: New file.
18273
18274         Module mktime.
18275         * m4/mktime.m4: Renamed from jm-mktime.m4.
18276         (gl_PREREQ_MKTIME): New macro.
18277         (gl_FUNC_MKTIME): Renamed from jm_FUNC_MKTIME. Invoke gl_PREREQ_MKTIME.
18278
18279         Module malloc.
18280         * m4/malloc.m4 (gl_PREREQ_MALLOC): New macro.
18281         (jm_FUNC_MALLOC): Use AC_FUNC_MALLOC. Invoke gl_PREREQ_MALLOC.
18282         Don't define HAVE_DONE_WORKING_MALLOC_CHECK, since nothing uses it.
18283
18284         Module realloc.
18285         * m4/realloc.m4 (gl_PREREQ_REALLOC): New macro.
18286         (jm_FUNC_REALLOC): Use AC_FUNC_REALLOC. Invoke gl_PREREQ_REALLOC.
18287         Don't define HAVE_DONE_WORKING_REALLOC_CHECK, since nothing uses it.
18288
18289         Module strftime.
18290         * m4/tm_gmtoff.m4: New file, extracted from strftime.m4.
18291         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Use AC_FUNC_STRFTIME.
18292         Don't test for bcopy (we are not emacs). Invoke AC_TYPE_MBSTATE_T and
18293         gl_TM_GMTOFF.
18294         (_jm_STRFTIME_PREREQS, jm_FUNC_GNU_STRFTIME): Use onceonly macros.
18295
18296         Module xalloc.
18297         * m4/xalloc.m4: New file.
18298
18299         Module alloca.
18300         * m4/alloca.m4: New file.
18301
18302         Module putenv.
18303         * m4/putenv.m4 (gl_PREREQ_PUTENV): New macro.
18304         (jm_FUNC_PUTENV): Invoke it.
18305
18306         Module setenv.
18307         * m4/setenv.m4 (gt_FUNC_SETENV): New macro.
18308         (gt_CHECK_VAR_DECL): Fix quoting error that led to infinite loop in m4
18309         when invoked twice.
18310         (gt_PREREQ_SETENV, gt_PREREQ_UNSETENV): New macros, replacing old
18311         gt_FUNC_SETENV.
18312
18313         Module memrchr.
18314         * m4/memrchr.m4: New file.
18315
18316         Module stpcpy.
18317         * m4/stpcpy.m4: New file.
18318
18319         Module strcase.
18320         * m4/strcase.m4: New file.
18321
18322         Module strdup.
18323         * m4/strdup.m4: New file.
18324
18325         Module strnlen.
18326         * m4/strnlen.m4: New file.
18327
18328         Module strndup.
18329         * m4/strndup.m4: New file.
18330
18331         Module xstrtod.
18332         * m4/xstrtod.m4: New file.
18333
18334         Module xstrtol.
18335         * m4/xstrtol.m4: New file.
18336
18337         Module getdate.
18338         * m4/getdate.m4: New file.
18339
18340         Module unlocked-io.
18341         * m4/unlocked-io.m4: Renamed from jm-glibc-io.m4.
18342         (jm_FUNC_GLIBC_UNLOCKED_IO): Invoke AC_GNU_SOURCE. Use onceonly macros.
18343         * m4/jm-glibc-io.m4n: Remove file.
18344
18345         Module long-options.
18346         * m4/long-options.m4: New file.
18347
18348         Module md5.
18349         * m4/md5.m4: New file.
18350
18351         Module sha.
18352         * m4/sha.m4: New file.
18353
18354         Module getstr.
18355         * m4/getstr.m4: New file.
18356
18357         Module getline.
18358         * m4/getline.m4 (gl_PREREQ_GETLINE): New macro.
18359         (AM_FUNC_GETLINE): Invoke AC_GNU_SOURCE. Use <stdlib.h>, not
18360         <sys/types.h>, for size_t. Use the function name gnu_getline, not
18361         simply getline. Infoke gl_PREREQ_GETLINE.
18362
18363         Module obstack.
18364         * m4/obstack.m4: New file.
18365
18366         Module hash.
18367         * m4/hash.m4: New file.
18368
18369         Module readtokens.
18370         * m4/readtokens.m4: New file.
18371
18372         Module strverscmp.
18373         * m4/strverscmp.m4: New file.
18374
18375         Module stdbool.
18376         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Add test for _Bool. Needed for
18377         OSF/1.
18378
18379         Module strtoll.
18380         * m4/strtoll.m4: New file.
18381
18382         Module strtoull.
18383         * m4/strtoull.m4: New file.
18384
18385         Module strtoimax.
18386         * m4/strtoimax.m4: New file.
18387
18388         Module strtoumax.
18389         * m4/strtoumax.m4: New file.
18390
18391         Module xstrtoimax.
18392         * m4/xstrtoimax.m4 (jm_XSTRTOIMAX): Renamed from
18393         jm_AC_PREREQ_XSTRTOIMAX.
18394         Moved the strtol prerequisites to strtol.m4.
18395         Moved the strtoll prerequisites to strtoll.m4.
18396         Moved the strtoimax prerequisites to strtoimax.m4.
18397
18398         Module xstrtoumax.
18399         * m4/xstrtoumax.m4 (jm_XSTRTOUMAX): Renamed from
18400         jm_AC_PREREQ_XSTRTOUMAX.
18401         Moved the strtoul prerequisites to strtoul.m4.
18402         Moved the strtoull prerequisites to strtoull.m4.
18403         Moved the strtoumax prerequisites to strtoumax.m4.
18404
18405         Module chown.
18406         * m4/chown.m4 (gl_PREREQ_CHOWN): New macro.
18407         (jm_FUNC_CHOWN): Use AC_FUNC_CHOWN. Invoke gl_PREREQ_CHOWN.
18408
18409         Module dup2.
18410         * m4/dup2.m4: New file.
18411
18412         Module ftruncate.
18413         * m4/ftruncate.m4 (gl_PREREQ_FTRUNCATE): New macro.
18414         (jm_FUNC_FTRUNCATE): Use AC_REPLACE_FUNCS. Invoke gl_PREREQ_FTRUNCATE.
18415
18416         Module getgroups.
18417         * m4/getgroups.m4 (gl_PREREQ_GETGROUPS): New macro.
18418         (jm_FUNC_GETGROUPS): Use AC_FUNC_GETGROUPS. Invoke gl_PREREQ_GETGROUPS.
18419
18420         Module gettimeofday.
18421         * m4/gettimeofday.m4 (gl_PREREQ_GETTIMEOFDAY): New macro.
18422         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Use onceonly macros. Invoke
18423         gl_PREREQ_GETTIMEOFDAY.
18424
18425         Module mkdir.
18426         * m4/mkdir-slash.m4 (gl_PREREQ_MKDIR): New macro.
18427         (UTILS_FUNC_MKDIR_TRAILING_SLASH): Invoke gl_PREREQ_MKDIR.
18428
18429         Module mkstemp.
18430         * m4/mkstemp.m4 (gl_PREREQ_MKSTEMP): New macro.
18431         (jm_PREREQ_TEMPNAME): New macro, from prereq.m4. Also invoke
18432         jm_AC_TYPE_UINTMAX_T.
18433         (UTILS_FUNC_MKSTEMP): Invoke gl_PREREQ_MKSTEMP and jm_PREREQ_TEMPNAME.
18434
18435         Module stat.
18436         * m4/stat.m4 (gl_PREREQ_STAT): New macro.
18437         (jm_FUNC_STAT): Use AC_FUNC_STAT. Invoke gl_PREREQ_STAT.
18438
18439         Module lstat.
18440         * m4/lstat.m4 (gl_PREREQ_LSTAT): New macro.
18441         (jm_FUNC_LSTAT): Use AC_FUNC_LSTAT. Invoke gl_PREREQ_LSTAT.
18442
18443         Module timespec.
18444         * m4/timespec.m4 (gl_TIMESPEC): New macro.
18445         (jm_CHECK_TYPE_STRUCT_TIMESPEC): Add check for <sys/time.h>.
18446         * m4/st_mtim.m4: Indentation.
18447
18448         Module nanosleep.
18449         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): New macro.
18450         (jm_FUNC_NANOSLEEP): Add check for <sys/time.h>. Invoke
18451         gl_PREREQ_NANOSLEEP.
18452
18453         Module regex.
18454         * m4/regex.m4 (jm_PREREQ_REGEX): New macro.
18455         (jm_INCLUDED_REGEX): Invoke jm_PREREQ_REGEX.
18456         (gl_REGEX): New macro.
18457
18458         Module rename.
18459         * m4/rename.m4 (gl_PREREQ_RENAME): New macro.
18460         (vb_FUNC_RENAME): Invoke gl_PREREQ_RENAME.
18461
18462         Module rmdir.
18463         * m4/rmdir.m4: New file.
18464
18465         Module utime.
18466         * m4/utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Use onceonly macros.
18467         * m4/utime.m4 (gl_PREREQ_UTIME): New macro.
18468         (jm_FUNC_UTIME): Invoke gl_PREREQ_UTIME.
18469
18470         Module dirname.
18471         * m4/dirname.m4: New file.
18472
18473         Module getopt.
18474         * m4/getopt.m4: New file.
18475
18476         Module unistd-safer.
18477         * m4/unistd-safer.m4: New file.
18478
18479         Module fnmatch.
18480         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Include <stdlib.h>, for exit()
18481         declaration.
18482         (gl_PREREQ_FNMATCH_EXTRA): New macro.
18483         (gl_FUNC_FNMATCH_POSIX): New macro.
18484         (gl_FUNC_FNMATCH_GNU): Renamed from AC_FUNC_FNMATCH_GNU. Invoke
18485         gl_PREREQ_FNMATCH_EXTRA. Use the function name gnu_fnmatch, not
18486         simply fnmatch.
18487
18488         Module exclude.
18489         * m4/exclude.m4: New file.
18490
18491         Module human.
18492         * m4/human.m4: New file.
18493
18494         Module acl.
18495         * m4/acl.m4: Nop.
18496
18497         Module backupfile.
18498         * m4/backupfile.m4: New file.
18499         * m4/d-ino.m4: Indentation.
18500
18501         Module fsusage.
18502         * m4/fsusage.m4 (gl_FSUSAGE): New macro.
18503         (jm_STATFS_TRUNCATES): New macro, from coreutils-4.5.4/configure.ac.
18504         (gl_PREREQ_FSUSAGE_EXTRA): New macro.
18505
18506         Module dirfd.
18507         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Invoke some AC_EGREP_CPP
18508         requirements.
18509
18510         Module euidaccess.
18511         * m4/euidaccess.m4: New file.
18512
18513         Module file-type.
18514         * m4/file-type.m4: New file.
18515
18516         Module fileblocks.
18517         * m4/fileblocks.m4: New file.
18518
18519         Module filemode.
18520         * m4/filemode.m4: New file.
18521
18522         Module isdir.
18523         * m4/isdir.m4: New file.
18524
18525         Module lchown.
18526         * m4/lchown.m4 (gl_PREREQ_LCHOWN): New macro.
18527         (jm_FUNC_LCHOWN): Invoke gl_PREREQ_LCHOWN.
18528
18529         Module makepath.
18530         * m4/makepath.m4: New file.
18531
18532         Module modechange.
18533         * m4/modechange.m4: New file.
18534
18535         Module mountlist.
18536         * m4/mountlist.m4: New file.
18537         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Use onceonly macros.
18538         Indentation.
18539
18540         Module path-concat.
18541         * m4/path-concat.m4: New file.
18542
18543         Module pathmax.
18544         * m4/pathmax.m4: New file.
18545
18546         Module same.
18547         * m4/same.m4: New file.
18548
18549         Module save-cwd.
18550         * m4/save-cwd.m4: New file.
18551
18552         Module savedir.
18553         * m4/savedir.m4: New file.
18554
18555         Module xgetcwd.
18556         * m4/xgetcwd.m4: New file.
18557         * m4/getcwd.m4 (AC_FUNC_GETCWD_NULL): Use onceonly macros.
18558
18559         Module xreadlink.
18560         * m4/xreadlink.m4: New file.
18561
18562         Module safe-read.
18563         * m4/safe-read.m4: New file.
18564
18565         Module safe-write.
18566         * m4/safe-write.m4: New file.
18567
18568         Module closeout.
18569         * m4/closeout.m4: New file.
18570
18571         Module stdio-safer.
18572         * m4/stdio-safer.m4: New file.
18573
18574         Module getpass.
18575         * m4/getpass.m4: New file.
18576
18577         Module getugroups.
18578         * m4/getugroups.m4: New file.
18579
18580         Module group-member.
18581         * m4/group-member.m4 (gl_PREREQ_GROUP_MEMBER): New macro.
18582         (jm_FUNC_GROUP_MEMBER): Invoke AC_GNU_SOURCE, gl_PREREQ_GROUP_MEMBER.
18583
18584         Module idcache.
18585         * m4/idcache.m4: New file.
18586
18587         Module userspec.
18588         * m4/userspec.m4: New file.
18589
18590         Module gettime.
18591         * m4/clock_time.m4: New file.
18592         * m4/gettime.m4: New file.
18593
18594         Module settime.
18595         * m4/settime.m4: New file.
18596
18597         Module posixtm.
18598         * m4/posixtm.m4: New file.
18599
18600         Module gethostname.
18601         * m4/gethostname.m4: New file.
18602
18603         Module canon-host.
18604         * m4/canon-host.m4: New file.
18605
18606         Module gettext.
18607         * m4/codeset.m4: New file, from gettext-0.11.5.
18608         * m4/gettext.m4: New file, from gettext-0.11.5.
18609         * m4/glibc21.m4: New file, from gettext-0.11.5.
18610         * m4/iconv.m4: New file, from gettext-0.11.5.
18611         * m4/intdiv0.m4: New file, from gettext-0.11.5.
18612         * m4/inttypes-pri.m4: New file, from gettext-0.11.5.
18613         * m4/inttypes.m4: New file, from gettext-0.11.5.
18614         * m4/inttypes_h.m4: New file, from gettext-0.11.5 with modifications.
18615         * m4/isc-posix.m4: New file, from gettext-0.11.5.
18616         * m4/lcmessage.m4: New file, from gettext-0.11.5.
18617         * m4/lib-ld.m4: New file, from gettext-0.11.5.
18618         * m4/lib-link.m4: New file, from gettext-0.11.5.
18619         * m4/lib-prefix.m4: New file, from gettext-0.11.5.
18620         * m4/progtest.m4: New file, from gettext-0.11.5.
18621         * m4/stdint_h.m4: New file, from gettext-0.11.5 with modifications.
18622         * m4/uintmax_t.m4: New file, from gettext-0.11.5 with modifications.
18623         * m4/ulonglong.m4: New file, from gettext-0.11.5 with modifications.
18624
18625         Module localcharset.
18626         * m4/localcharset.m4: New file.
18627
18628         Module hard-locale.
18629         * m4/hard-locale.m4: New file.
18630
18631         Module mbswidth.
18632         * m4/mbswidth.m4 (gl_MBSWIDTH): Renamed from jm_PREREQ_MBSWIDTH. Use
18633         onceonly macros.
18634         * m4/mbrtowc.m4: Add comment.
18635
18636         Module memcasecmp.
18637         * m4/memcasecmp.m4: New file.
18638
18639         Module memcoll.
18640         * m4/memcoll.m4: New file.
18641
18642         Module unicodeio.
18643         * m4/unicodeio.m4: New file.
18644
18645         Module rpmatch.
18646         * m4/rpmatch.m4: New file.
18647
18648         Module yesno.
18649         * m4/yesno.m4: New file.
18650
18651         Module exitfail.
18652         * m4/exitfail.m4: New file.
18653
18654         Module c-stack.
18655         * m4/c-stack.m4 (gl_C_STACK): New macro.
18656         (jm_PREREQ_C_STACK): Check for <sys/time.h>. Use onceonly macros.
18657
18658         Module error.
18659         * m4/error.m4 (gl_ERROR): New macro.
18660         (jm_PREREQ_ERROR): Use onceonly macros.
18661
18662         Module fatal.
18663         * m4/fatal.m4: New file.
18664
18665         Module getloadavg.
18666         * m4/getloadavg.m4 (AC_FUNC_GETLOADAVG): Use onceonly macros.
18667         (gl_FUNC_GETLOADAVG, gl_PREREQ_GETLOADAVG): New macros.
18668
18669         Module getpagesize.
18670         * m4/getpagesize.m4: New file.
18671
18672         Module getusershell.
18673         * m4/getusershell.m4: New file.
18674
18675         Module physmem.
18676         * m4/physmem.m4: New file.
18677
18678         Module posixver.
18679         * m4/posixver.m4: New file.
18680
18681         Module quotearg.
18682         * m4/quotearg.m4: New file.
18683
18684         Module quote.
18685         * m4/quote.m4: New file.
18686
18687         Module readutmp.
18688         * m4/readutmp.m4: New file, based on jm_PREREQ_READUTMP from prereq.m4.
18689
18690         Module sig2str.
18691         * m4/sig2str.m4: New file.
18692
18693         Other.
18694         * m4/longlong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Remove, moved to
18695         ulonglong.m4.
18696         * m4/intmax_t.m4: New file.
18697         * m4/d-type.m4: Indentation.
18698         * m4/jm-macros.m4: Update.
18699         * m4/prereq.m4 (jm_PREREQ): Update.
18700         (jm_PREREQ_ADDEXT): Remove, obsoleted by backupfile.m4.
18701         (jm_PREREQ_CANON_HOST): Remove, obsoleted by canon-host.m4.
18702         (jm_PREREQ_DIRNAME): Remove, obsoleted by dirname.m4.
18703         (jm_PREREQ_EXCLUDE): Remove, obsoleted by exclude.m4.
18704         (jm_PREREQ_GETPAGESIZE): Remove, obsoleted by getpagesize.m4.
18705         (jm_PREREQ_HARD_LOCALE): Remove, obsoleted by hard-locale.m4.
18706         (jm_PREREQ_HASH): Remove, obsoleted by hash.m4.
18707         (jm_PREREQ_HUMAN): Remove, obsoleted by human.m4.
18708         (jm_PREREQ_MEMCHR): Remove, obsoleted by memchr.m4.
18709         (jm_PREREQ_PHYSMEM): Remove, obsoleted by physmem.m4.
18710         (jm_PREREQ_POSIXVER): Remove, obsoleted by posixver.m4.
18711         (jm_PREREQ_QUOTEARG): Remove, obsoleted by quotearg.m4.
18712         (jm_PREREQ_READUTMP): Remove, obsoleted by readutmp.m4.
18713         (jm_PREREQ_REGEX): Remove, obsoleted by regex.m4.
18714         (jm_PREREQ_STRNLEN): Remove, obsoleted by strnlen.m4.
18715         (jm_PREREQ_TEMPNAME): Remove, obsoleted by mkstemp.m4.
18716         (jm_PREREQ_XGETCWD): Remove, obsoleted by xgetcwd.m4.
18717         (jm_PREREQ_XREADLINK): Remove, obsoleted by xreadlink.m4.
18718         * m4/readdir.m4 (jm_FUNC_READDIR): Use onceonly macros.
18719
18720 2002-12-24  Bruno Haible  <bruno@clisp.org>
18721
18722         * MODULES.txt: Update according to m4/ changes.
18723
18724         Module gettext.
18725         * config.rpath: New file, from gettext-0.11.5.
18726
18727         * modules/*: New module descriptions.
18728         * gnulib-tool: New file.
18729         * MODULES.html.sh: New file.
18730
18731 2002-12-21  Karl Berry  <karl@gnu.org>
18732
18733         * doc/fdl.texi: update to version 1.2.
18734
18735 2002-12-19  Karl Berry  <karl@gnu.org>
18736
18737         * config/config.guess: update from prep.
18738
18739 2002-12-18  Bruno Haible  <bruno@clisp.org>
18740
18741         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't test for localtime_r.
18742         * m4/jm-mktime.m4 (jm_FUNC_MKTIME): Likewise.
18743
18744 2002-12-17  Bruno Haible  <bruno@clisp.org>
18745
18746         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Remove checks for limits.h,
18747         stdlib.h, string.h.
18748
18749 2002-12-17  Bruno Haible  <bruno@clisp.org>
18750
18751         * lib/canon-host.c (strdup): Remove unused declaration.
18752
18753         * lib/fsusage.c: Include full_read.h.
18754         (get_fs_usage): Use full_read instead of safe_read.
18755
18756         * lib/utime.c (utime_null): Use SAFE_READ_ERROR.
18757
18758 2002-12-12  Karl Berry  <karl@gnu.org>
18759
18760         * config/config.guess: update from prep.
18761
18762 2002-12-11  Bruno Haible  <bruno@clisp.org>
18763
18764         * m4/setenv.m4: New file, from gettext-0.11.5.
18765
18766 2002-12-11  Bruno Haible  <bruno@clisp.org>
18767
18768         * lib/setenv.h: Rewritten to cope with systems that have setenv() but
18769         not unsetenv().
18770         * lib/setenv.c, unsetenv.c: Taken from glibc-2.2.4 with the following
18771         modifications:
18772
18773         2002-12-11  Bruno Haible  <bruno@clisp.org>
18774
18775                 * setenv.c (alloca): Fall back to malloc.
18776                 (freea): New macro.
18777                 (setenv): Use freea() to free memory allocated with alloca().
18778
18779         2002-11-13  Bruno Haible  <bruno@clisp.org>
18780
18781                 * setenv.c (compar_fn_t, __add_to_environ, setenv): Use ANSI C
18782                 function declarations.
18783                 * unsetenv.c (unsetenv): Likewise.
18784
18785         2002-03-04  Bruno Haible  <bruno@clisp.org>
18786
18787                 Portability to AIX 4.3.3.
18788                 * unsetenv.c: New file, extracted from setenv.c.
18789                 * setenv.c: Move the unsetenv() function to unsetenv.c.
18790
18791         2001-12-20  Bruno Haible  <bruno@clisp.org>
18792
18793                 * setenv.c (__add_to_environ): Don't call realloc(NULL,...),
18794                 use malloc instead. For SunOS 4.
18795
18796         2001-12-11  Bruno Haible  <bruno@clisp.org>
18797
18798                 * setenv.c: Declare alloca.
18799                 (compar_fn_t): New typedef.
18800                 (KNOWN_VALUE, STORE_VALUE): Use it.
18801
18802         * lib/Makefile.am (libfetish_a_SOURCES): Add setenv.c, unsetenv.c,
18803         setenv.h.
18804
18805 2002-12-10  Paul Eggert  <eggert@twinsun.com>
18806
18807         Port exclude.c and exclude.h to more non-GNU systems, e.g. Solaris 7.
18808         * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE, EXCLUDE_WILDCARDS):
18809         Choose values that are less likely to collide with system fnmatch
18810         options.
18811         * lib/exclude.c (FNM_CASEFOLD, FNM_LEADING_DIR): Define to 0 if not
18812         defined (e.g., a pure POSIX system).
18813         (EXCLUDE_macros_do_not_collide_with_FNM_macros): Use FNM_PATHNAME
18814         instead of FNM_FILE_NAME, for compatibility with pure POSIX sytems.
18815
18816 2002-12-06  Paul Eggert  <eggert@twinsun.com>
18817
18818         Undo the 2001-07-02 change for jm-glibc-io, as it was too much of
18819         a pain in practice to deal with generated m4 files.  This change
18820         goes together with the 2002-12-04 unlocked-io.h change in ../lib.
18821
18822         * m4/Makefile.am.in (Makefile.am): Don't mention jm-glibc-io.m4n
18823         and jm-glibc-io.m4, as they are no longer a special case.
18824         * m4/jm-glibc-io.m4: Rename from jm-glibc-io.m4n, and remove the
18825         kludge and the auto-generation stuff.  Check only whether the
18826         functions are declared, not whether they exist, since older hosts
18827         that don't declare the functions can't use the optimization anyway.
18828
18829 2002-12-06  Jim Meyering  <jim@meyering.net>
18830
18831         * lib/error.c: Be consistent: change `#ifndef _LIBC' to `#if !_LIBC'.
18832
18833         Merge in changes from libc's misc/error.c, in preparation
18834         for the merge of gnulib's changes back into libc.
18835
18836         * lib/error.c (_): Define only if not already defined.
18837         Move definition to follow all #include directives.
18838         Include unlocked-io.h only if !_LIBC.
18839         [_LIBC]: Include <libio/libioP.h>.
18840         [USE_IN_LIBIO]: Include <libio/iolibio.h>
18841         (fflush): Tweak definition to use INTUSE.
18842         (putc): Define.
18843
18844 2002-12-05  Paul Eggert  <eggert@twinsun.com>
18845
18846         * lib/alloca.c [defined emacs]: Include "lisp.h".
18847         (xalloc_die) [defined emacs]: New macro.
18848         (free) [defined emacs && defined EMACS_FREE]: Define to EMACS_FREE.
18849         [! defined emacs]: Include <xalloc.h>.
18850         (POINTER_TYPE) [!defined POINTER_TYPE]: New macro.
18851         (pointer): Typedef to POINTER_TYPE *.
18852         (malloc): Remove decl; we now always use xmalloc.
18853         (alloca): Use old-style definition, since Emacs needs this.
18854         Check for arithmetic overflow when computing combined size.
18855
18856 2002-12-04  Paul Eggert  <eggert@twinsun.com>
18857
18858         Do not generate unlocked-io.h automatically, since it's easier to
18859         maintain it by hand.
18860
18861         * lib/unlocked-io.h: New file, from GNU diffutils,
18862         but with proper copyright notice and attribution.
18863         * lib/gen-uio: Remove.
18864         * lib/Makefile.am: Add copyright notice.
18865         (libfetish_a_SOURCES): Add unlocked-io.h.
18866         (BUILT_SOURCES, all-local): Remove unlocked-io.h.
18867         (DISTCLEANFILES, io_functions): Remove macros.
18868         (EXTRA_DIST): Remove gen_uio.
18869         (unlocked-io.h): Remove rule.
18870
18871 2002-12-04  Jim Meyering  <jim@meyering.net>
18872
18873         Reflect the fact that stat.c and lstat.c are no longer generated.
18874         * lib/Makefile.am (BUILT_SOURCES): Remove stat.c and lstat.c.
18875         (DISTCLEANFILES): Likewise.
18876         (EXTRA_DIST): Likewise.
18877         (all_local): Don't depend on stat.c or lstat.c.
18878         (stat.c, lstat.c): Remove rules.
18879         (EXTRA_DIST): Remove xstat.in.
18880
18881         * lib/xstat.in: Remove file.  Contents moved into stat.c.
18882         * lib/stat.c: New file.  Contents mostly from xstat.in.
18883         * lib/stat.c: Rework so that it may serve to define rpl_lstat, too.
18884         * lib/lstat.c: New file. Simply #define LSTAT and include stat.c.
18885
18886         * lib/safe-read.c: Rework so that it may serve to define safe_write,
18887         too.
18888         * lib/safe-write.c: Simply #define SAFE_WRITE and include safe-read.c.
18889
18890 2002-12-03  Jim Meyering  <jim@meyering.net>
18891
18892         * lib/safe-read.c, safe-write.c: Change variable names and comments,
18893         but not semantics, to minimize the differences between these two files.
18894         (safe_read): Change comment to mention SAFE_READ_ERROR.
18895
18896         * lib/safe-read.c (IS_EINTR): Define.
18897         (safe_read): Use IS_EINTR in place of in-function cpp directives.
18898
18899 2002-12-02  Jim Meyering  <jim@meyering.net>
18900
18901         * lib/safe-read.c (EINTR): Define.
18902         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
18903         (INT_MAX): Provide fallback.
18904         (safe_read): Rewrite to iterate IFF the read fails with EINTR.
18905
18906         * lib/safe-read.h (SAFE_READ_ERROR): Define.
18907
18908 2002-12-02  Bruno Haible  <bruno@clisp.org>
18909
18910         * lib/safe-write.c (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM):
18911         Define, taken from safe-read.c.
18912         (INT_MAX): Provide fallback.
18913         (safe_write): Rewrite to iterate IFF the write fails with EINTR.
18914         * lib/safe-write.h (SAFE_WRITE_ERROR): Define.
18915
18916         * lib/safe-read.c (EINTR): Remove definition.
18917         (safe_read): Don't use EINTR if it is absent.
18918
18919 2002-12-01  Jim Meyering  <jim@meyering.net>
18920
18921         * lib/safe-read.c: (safe_read): Also exit the loop when read returns
18922         zero.
18923         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM, INT_MAX): Define.
18924
18925 2002-11-27  Paul Eggert  <eggert@twinsun.com>
18926
18927         * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
18928         hash_find_entry, hash_rehash): Replace `if (limit <= value) abort ();'
18929         with `if (! (value < limit)) abort ();', for readability.
18930
18931 2002-11-26  Karl Berry  <karl@gnu.org>
18932
18933         * lib/strdup.c: copy from libc again, with jim's ok.
18934         * lib/.cppi-disable: re-add strdup.c
18935
18936 2002-11-25  Karl Berry  <karl@gnu.org>
18937
18938         * lib/strtoll.c: copy from libc, meaning we now #include <strtol.c>
18939         instead of "strtol.c".
18940
18941 2002-11-25  Karl Berry  <karl@gnu.org>
18942
18943         * config/install-sh: update from automake for variable quoting, $0 in
18944         error msgs, etc.
18945
18946         * config/srclist.txt ($LIBCSRC/time/mktime.c lib gpl): new entry.
18947         * config/srclist.txt ($LIBCSRC/sysdeps/generic/strtoll.c lib gpl): new
18948         entry.
18949
18950 2002-11-25  Jim Meyering  <jim@meyering.net>
18951
18952         * lib/mktime.c: Sync from libc, now that it has the latest fix.
18953
18954 2002-11-24  Karl Berry  <karl@gnu.org>
18955
18956         * lib/error.c, getopt.c, getopt.h, getopt1.c, obstack.c, regex.c,
18957         regex.h, strdup.c, strtoll.c, tempname.c: change license to gpl.
18958
18959 2002-11-24  Jim Meyering  <jim@meyering.net>
18960
18961         Update from coreutils:
18962
18963         * lib/mktime.c: Merge in changes from libc.
18964
18965         Avoid a link-time failure on some Linux systems.
18966         * lib/mktime.c (STATIC): Define to be empty (_LIBC) or `static'
18967         (otherwise).
18968         (__mon_yday): Declare with the STATIC attribute.
18969         (__mktime_internal): Likewise.
18970         Based on a report from Greg Schafer.
18971
18972 2002-11-23  Jim Meyering  <jim@meyering.net>
18973
18974         * lib/sig2str.c (str2signum, sig2str): Avoid a warning from gcc:
18975         Use `unsigned', not `int', as type of index.
18976
18977         * lib/xstat.in [@BEGIN_LSTAT_ONLY@]: Include <string.h>.
18978
18979         * lib/fsusage.c: Remove unneeded parentheses around operands of
18980         `defined'.
18981
18982 2002-11-22  Paul Eggert  <eggert@twinsun.com>
18983
18984         * lib/quotearg.h: Allow multiple inclusion by surrounding with
18985         "#ifndef QUOTEARG_H_".  Include <stddef.h>, for size_t,
18986         so that we can be included first.
18987         (PARAMS): Remove; we now assume C89 or later.  All uses removed.
18988         * lib/quotearg.c: Include quotearg.h immediately after config.h.
18989         No need to include stddef.h or sys/types.h any more.
18990         Surround local include files with "", not "<>".
18991         Assume HAVE_LIMITS_H unconditionally, as we assume C89.
18992         Similarly, assume HAVE_C_BACKSLASH_A, CHAR_BIT, UCHAR_MAX, UINT_MAX,
18993         HAVE_STDLIB_H, HAVE_STRING_H, STDC_HEADERS.
18994         (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
18995         (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
18996         (ISPRINT): Remove; no longer needed now that we assume C89.
18997
18998         (clone_quoting_options, quotearg_buffer, quotearg_n_options):
18999         Preserve errno.
19000
19001         (quotearg_buffer_restyled, quotearg_n, quotearg_n_style,
19002         quotearg_char): Use SIZE_MAX rather than
19003         (size_t) -1 when we are talking about "infinity".
19004
19005         (quotearg_buffer_restyled): Fix bug when quoting trigraphs.
19006
19007 2002-11-22  Paul Eggert  <eggert@twinsun.com>
19008
19009         * lib/hash.c: Avoid use of <assert.h>, as the GNU Coding Standards
19010         hint that one should use `if (! x) abort ();' rather than `assert
19011         (x);', and anyway it's one less thing to worry about configuring.
19012         (hash_lookup, hash_get_first, hash_get_next, hash_find_entry,
19013         hash_rehash, hash_insert): Use abort rather than assert.
19014
19015 2002-11-22  Bruno Haible  <bruno@clisp.org>
19016
19017         * lib/safe-read.h: Assume C89. Add comments.
19018         (safe_read): Change return type to size_t.
19019         * lib/safe-read.c (safe_read): Change return type to size_t. Handle
19020         byte counts > SSIZE_MAX correctly.
19021         * lib/safe-write.h: New file.
19022         * lib/safe-write.c: New file.
19023         * lib/full-read.h: New file.
19024         * lib/full-read.c: New file.
19025         * lib/full-write.h: Assume C89. Add comments.
19026         * lib/full-write.c: Include safe-write.h.
19027         (full_write): Rewritten to use safe_write.
19028         Suggested by Jim Meyering and Paul Eggert.
19029
19030 2002-11-21  Jim Meyering  <jim@meyering.net>
19031
19032         * lib/strdup.c (strdup): Tweak comment and initial #if/#include.
19033
19034         Merge in changes from the coreutils.
19035
19036         2002-09-25  Paul Eggert  <eggert@twinsun.com>
19037         * lib/fsusage.c [! HAVE_INTTYPES_H && HAVE_STDINT_H] Include
19038         <stdint.h>.
19039         (UINTMAX_MAX) [!defined UINTMAX_MAX]: New macro.
19040         (PROPAGATE_ALL_ONES): Work even if X is unsigned and narrower than
19041         int.  Work more efficiently if X is the same width as uintmax_t.
19042         Do not compare X to -1, to avoid bogus compiler warning.
19043         (get_fs_usage): (uintmax_t) -1 -> UINTMAX_MAX to avoid a cast.
19044         Don't assume that f_frsize and f_bsize are the same type.
19045
19046         * lib/mountlist.c: #undef MNT_IGNORE before defining it, to avoid
19047         warning on FreeBSD.
19048
19049         * lib/makepath.c (make_path): Restore umask *before* creating the final
19050         component.
19051         (make_path): Minor reformatting.
19052
19053         * lib/xmalloc.c: Adjust to work with new autoconf macros,
19054         AC_FUNC_MALLOC and AC_FUNC_REALLOC: test #ifndef
19055         HAVE_MALLOC/HAVE_REALLOC.
19056
19057         * lib/mountlist.h (ME_DUMMY): Don't count entries of type `auto' as
19058         dummy ones.  At least on GNU/Linux systems, `auto' means something
19059         else.
19060         From Michael Stone.
19061
19062 2002-11-21  Bruno Haible  <bruno@clisp.org>
19063
19064         Remove case insensitive option matching.
19065         * lib/argmatch.h (argcasematch): Remove declaration.
19066         (ARGCASEMATCH): Remove macro.
19067         (__xargmatch_internal): Remove case_sensitive argument.
19068         (XARGMATCH): Update.
19069         (XARGCASEMATCH): Remove macro.
19070         * lib/argmatch.c (argmatch): Renamed from __argmatch_internal. Remove
19071         case_sensitive argument.
19072         (argcasematch): Remove function.
19073         (__xargmatch_internal): Remove case_sensitive argument.
19074         (main): Use XARGMATCH instead of XARGCASEMATCH.
19075
19076         * lib/xmalloc.c: Change compile-time error message. Add comment about
19077         required autoconf version.
19078
19079 2002-11-20  Paul Eggert  <eggert@twinsun.com>
19080
19081         Merge argmatch cleanups from Bison.  Assume C89.
19082
19083         * lib/argmatch.c: Include config.h here, not in argmatch.h.
19084         Include stdlib.h, for EXIT_FAILURE.
19085         Always include <string.h>, since we assume C89.
19086         (EXIT_FAILURE): Remove pre-C89 bug workaround.
19087         * lib/argmatch.h: Do not include <config.h> or <sys/types.h>.
19088         Include <stddef.h> instead, since it's all we need for size_t.
19089         (PARAMS): Remove.  All uses removed.
19090         (ARRAY_CARDINALITY): Do not bother to #undef.
19091         (ARRAY_CARDINALITY, ARGMATCH, ARGCASEMATCH, invalid_arg,
19092         ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
19093         Remove unnecessary parentheses.
19094         (ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
19095         Insert necessary parentheses.
19096         (ARGMATCH_CONSTRAINT, ARGMATCH_VERIFY): New macros.
19097         (ARGMATCH_ASSERT): Use ARGMATCH_CONSTRAINT.
19098
19099 2002-11-19  Bruno Haible  <bruno@clisp.org>
19100
19101         * lib/mbswidth.c: Include mbswidth.h right at the beginning.
19102         * lib/mbswidth.h: Include <stddef.h>, for size_t.
19103
19104         * lib/mbswidth.h (PARAMS): Remove macro.
19105         (mbswidth, mbsnwidth): Use ANSI C function declarations.
19106         * lib/mbswidth.c (mbswidth, mbsnwidth): Likewise.
19107
19108         * lib/gcd.h (PARAMS): Remove macro.
19109         (gcd): Use ANSI C function declarations.
19110         * lib/gcd.c (gcd): Likewise.
19111
19112 2002-11-15  Bruno Haible  <bruno@clisp.org>
19113
19114         * lib/strcspn.c: Include <stddef.h>.
19115         (strcspn): Use ANSI C function declaration. Change return type to
19116         size_t. Use NULL.
19117         * lib/strpbrk.c: Minimize diffs to glibc. Include <stddef.h>.
19118         (strpbrk): Use NULL.
19119         * lib/strpbrk.h (PARAMS): Remove macro.
19120         (strpbrk): Use ANSI C function declaration.
19121         * lib/strstr.c: Don't include <sys/types.h>.
19122         * lib/strstr.h (PARAMS): Remove macro.
19123         (strstr): Use ANSI C function declarations.
19124
19125 2002-11-14  Karl Berry  <karl@gnu.org>
19126
19127         * config/mkinstalldirs: `do' on separate line, instead of
19128         `for var; do'.
19129
19130 2002-11-06  Bruno Haible  <bruno@clisp.org>
19131
19132         * lib/gcd.h (gcd): Change argument type to 'unsigned long'.
19133         * lib/gcd.c (gcd): Likewise.
19134
19135 2002-11-05  Bruno Haible  <bruno@clisp.org>
19136
19137         * lib/gcd.h: New file, from gettext-0.11.5.
19138         * lib/gcd.c: New file, from gettext-0.11.5.
19139
19140 2002-11-05  Bruno Haible  <bruno@clisp.org>
19141
19142         * lib/error.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
19143         * lib/getopt.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
19144         * lib/obstack.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
19145         * lib/regex.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
19146
19147         * lib/argmatch.c: Include gettext.h instead of <locale.h> and
19148         <libintl.h>.
19149         * lib/makepath.c: Include gettext.h instead of <locale.h> and
19150         <libintl.h>.
19151
19152         * lib/closeout.c: Include gettext.h instead of <libintl.h>.
19153         * lib/human.c: Include gettext.h instead of <libintl.h>.
19154         * lib/quotearg.c: Include gettext.h instead of <libintl.h>.
19155         * lib/rpmatch.c: Include gettext.h instead of <libintl.h>.
19156         * lib/unicodeio.c: Include gettext.h instead of <libintl.h>.
19157         * lib/userspec.c: Include gettext.h instead of <libintl.h>.
19158         * lib/version-etc.c: Include gettext.h instead of <libintl.h>.
19159         * lib/xmalloc.c: Include gettext.h instead of <libintl.h>.
19160         (textdomain): Remove definition.
19161         * lib/xmemcoll.c: Include gettext.h instead of <libintl.h>.
19162
19163         * lib/long-options.c: Remove include of <libintl.h> and definition of
19164         _.
19165         * lib/same.c: Remove include of <libintl.h> and definition of _.
19166
19167 2002-11-04  Owen Taylor  <otaylor@redhat.com>
19168
19169         * lib/config.charset: A few additions for Solaris.
19170
19171 2002-11-04  Bruno Haible  <haible@clisp.cons.org>
19172
19173         Make it possible to build libcharset with CC=gcc CFLAGS="-x c++".
19174         * lib/localcharset.c (locale_charset): Declare as extern "C".
19175
19176 2002-11-04  Bruno Haible  <haible@clisp.cons.org>
19177
19178         * lib/config.charset: msdos in uk_UA uses CP1125.
19179
19180 2002-11-04  Bruno Haible  <bruno@clisp.org>
19181
19182         * lib/stpcpy.h: New file, from GNU gettext-0.11.5.
19183         * lib/strcase.h: New file, from GNU gettext-0.11.5.
19184         * lib/strpbrk.h: New file, from GNU gettext-0.11.5.
19185         * lib/strstr.h: New file, from GNU gettext-0.11.5.
19186         * lib/xgetcwd.h: New file, from GNU gettext-0.11.5.
19187
19188 2002-11-04  Bruno Haible  <bruno@clisp.org>
19189
19190         * lib/localcharset.c (locale_charset): Don't return an empty string.
19191
19192 2002-11-04  Bruno Haible  <bruno@clisp.org>
19193
19194         * lib/localcharset.c (get_charset_aliases): Add more Windows specific
19195         aliases.
19196
19197 2002-11-04  Bruno Haible  <bruno@clisp.org>
19198
19199         * lib/config.charset: Update for newest glibc. Add canonical names
19200         ISO-8859-14, KOI8-T, TCVN5712-1, GEORGIAN-PS.
19201
19202 2002-11-04  Bruno Haible  <bruno@clisp.org>
19203
19204         * lib/config.charset: Add support for NetBSD.
19205
19206 2002-11-04  Bruno Haible  <bruno@clisp.org>
19207
19208         * lib/config.charset [msdosdjgpp]: For Russian, use CP866.
19209
19210 2002-11-01  Bruno Haible  <bruno@clisp.org>
19211
19212         * configure.in: Add AC_CONFIG_AUX_DIR call.
19213         (AC_OUTPUT): Add m4/Makefile, lib/Makefile. Remove doc/Makefile,
19214         test/Makefile.
19215         * Makefile.in (subdirs): Add m4, lib. Remove doc, test.
19216
19217 2002-09-28  Karl Berry  <karl@gnu.org>
19218
19219         * config/srclist.txt: can't copy install-sh/mkinstalldirs from
19220         installed automake until the next release, since changes have been
19221         made.
19222
19223 2002-09-25  Karl Berry  <karl@gnu.org>
19224
19225         * lib/strdup.c: copy from libc/string (via ../config/srclist*).
19226         * lib/getopt*: copy from libc/posix.
19227         * lib/gettext.h: copy from gettext.
19228         * lib/.cppi-disable: add strdup.c, gettext.h.
19229
19230 2002-09-25  Karl Berry  <karl@gnu.org>
19231
19232         * config/srclist.txt: enable gettext.h check.
19233         * config/config.{guess,sub}: update from prep.
19234         * config/depcomp, install-sh, mdate-sh, missing, mkinstalldirs: update
19235                 from automake 1.6.3.
19236         See srclist*.
19237
19238 2002-08-23  Stefan Monnier  <monnier@cs.yale.edu>
19239
19240         * regex.c (PATFETCH): Remove the translating fetch.
19241         (PATFETCH_RAW): Rename to PATFETCH.
19242         (set_image_of_range): New fun.
19243         (SET_RANGE_TABLE_WORK_AREA): Use it.
19244         (regex_compile): Don't translate the pattern chars so eagerly.
19245         Only do it when inserting an `exactn' bytecode or when handling
19246         a char-range.
19247         (mutually_exclusive_p): Avoid empty statement.
19248
19249 2002-07-06  Jim Meyering  <meyering@lucent.com>
19250
19251         * m4/README: Don't mention Makefile.am.in.
19252         Outline how I've tested changes to .m4 files.  Yep, it's a pain.
19253
19254 2002-07-01  Jim Meyering  <meyering@lucent.com>
19255
19256         * lib/c-stack.c: Include sys/time.h.
19257         From Volker Borchert.
19258
19259 2002-06-26  Paul Eggert  <eggert@twinsun.com>
19260
19261         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for btowc.
19262
19263 2002-06-26  Paul Eggert  <eggert@twinsun.com>
19264
19265         * lib/fnmatch.c, fnmatch_loop.c (WIDE_CHAR_SUPPORT):
19266         New macro.  Use it uniformly instead of
19267         (defined HAVE_WCTYPE_H && defined HAVE_WCHAR_H).
19268         It also uses HAVE_BTOWC, to fix a porting bug on Solaris 2.5.1
19269         reported by Vin Shelton.
19270
19271 2002-06-22  Paul Eggert  <eggert@twinsun.com>
19272
19273         * lib/c-stack.h (segv_handler, c_stack_action) [! defined SA_SIGINFO]:
19274         Do not assume SA_SIGINFO behavior.
19275         Bug reported by Jim Meyering on NetBSD 1.5.2.
19276
19277 2002-06-22  Jim Meyering  <meyering@lucent.com>
19278
19279         * m4/c-stack.m4: New file, from diffutils-2.8.2.
19280         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_C_STACK.
19281
19282         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Don't require AC__GNU_SOURCE,
19283         now that configure.ac uses AC_GNU_SOURCE.
19284         (jm_MACROS): Rename: jm_FUNC_FNMATCH to AC_FUNC_FNMATCH_GNU.
19285         * m4/prereq.m4 (jm_PREREQ_EXCLUDE): Likewise, wrt jm_FUNC_FNMATCH.
19286
19287         Update to latest tools.  Suggestions from Paul Eggert.
19288         * m4/stdbool.m4: New file, from diffutils-2.8.2.
19289         * m4/gnu-source.m4: Update from diffutils-2.8.2.
19290         * m4/fnmatch.m4: Likewise.
19291         * m4/prereq.m4: Change each use of AC_CHECK_HEADERS(stdbool.h)
19292         to AC_HEADER_STDBOOL
19293
19294 2002-06-22  Jim Meyering  <meyering@lucent.com>
19295
19296         * lib/fnmatch.c (ISASCII, ISPRINT): Undefine, to avoid warning about
19297         redefinition due to Solaris 2.6's definition in /usr/include/sys/euc.h.
19298
19299 2002-06-22  Jim Meyering  <meyering@lucent.com>
19300
19301         * lib/c-stack.c, c-stack.h: New files, from diffutils-2.8.2.
19302
19303         * lib/exitfail.c, exitfail.h: Likewise.
19304         * lib/Makefile.am (libfetish_a_SOURCES): Add exitfail.c and exitfail.h.
19305
19306         * lib/Makefile.am (libfetish_a_SOURCES): Add fnmatch_.h in place
19307         of fnmatch.h.
19308         (EXTRA_DIST): Add fnmatch_loop.c.
19309         (libfetish_a_SOURCES): Add c-stack.c and c-stack.h.
19310
19311         * lib/fnmatch_loop.c: New file, from diffutils-2.8.2.
19312         * lib/fnmatch.c: Update from diffutils-2.8.2.
19313         * lib/fnmatch_.h: New file.  From diffutils-2.8.2.
19314         * lib/fnmatch.h: Remove file.
19315
19316 2002-06-21  Jim Meyering  <meyering@lucent.com>
19317
19318         * m4/c-bs-a.m4: Add comment, from diffutils-2.8.2.
19319         * m4/mbrtowc.m4: Likewise.
19320
19321         * m4/mbstate_t.m4: Update from diffutils-2.8.2.
19322         * m4/mbswidth.m4: Reflect name change:
19323         s/AC_MBSTATE_T/AC_TYPE_MBSTATE_T.
19324         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Likewise.
19325
19326         * m4/lib-link.m4: Update from gettext-0.11.2.
19327         * m4/gettext.m4: Likewise.
19328
19329         * m4/jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for hurd.h.
19330         From Alfred M. Szmidt.
19331
19332 2002-06-18  Paul Eggert  <eggert@twinsun.com>
19333
19334         * lib/file-type.h: Report an error if neither S_ISREG nor
19335         S_IFREG is defined, instead of using a test specific to glibc
19336         2.2.  This should be safe, since POSIX requires S_ISREG and
19337         Unix Version 7 had S_IFREG.  We don't need to check for
19338         <sys/types.h> since we don't use any symbols that it defines.
19339
19340 2002-06-15  Richard Dawe  <richdawe@bigfoot.com>
19341
19342         * lib/Makefile.am (lstat.c, stat.c, .sin.sed): Use t-$@, rather than
19343         $@-t, so that each temporary file name is unique and valid in the first
19344         8 characters, for operation under DOS.
19345
19346 2002-06-15  Paul Eggert  <eggert@twinsun.com>
19347
19348         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for st_author.
19349
19350 2002-06-15  Jim Meyering  <meyering@lucent.com>
19351
19352         Work even with DJGPP 2.03, which lacks support for symlinks.
19353         From Richard Dawe.
19354         * lib/xstat.in (S_ISLNK): Define to 0 if neither S_ISLNK nor S_IFLNK
19355         is defined.
19356         * lib/lchown.c (S_ISLNK): Likewise.
19357
19358 2002-06-15  Jim Meyering  <meyering@lucent.com>
19359
19360         * lib/file-type.h (FILE_TYPE_H): Guard entire contents with #ifndef.
19361         For GNU libc 2.2 and newer, ensure that <sys/types.h> and <sys/stat.h>
19362         have been included before this file.
19363
19364 2002-06-14  Jim Meyering  <meyering@lucent.com>
19365
19366         * lib/file-type.h: Use the version from diffutils-2.8.2.
19367         * lib/file-type.c: Likewise.
19368
19369 2002-06-07  Jim Meyering  <meyering@lucent.com>
19370
19371         * m4/prereq.m4 (jm_PREREQ_STAT): Check for sys/param.h and sys/mount.h.
19372         They're needed at least for NetBSD 1.5.2.
19373         ($statxfs_includes): Include those same headers.
19374         ($statxfs_includes): Include sys/vfs.h if available.
19375         ($statxfs_includes): Likewise for sys/statvfs.h.
19376         Check for the following members in both structs statfs and statvfs:
19377         f_basetype, f_type, f_fsid.__val, f_namemax, f_namelen.
19378
19379 2002-06-01  Jim Meyering  <meyering@lucent.com>
19380
19381         * m4/d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename macro:
19382         s/D_TYPE_IN_DIRENT/HAVE_STRUCT_DIRENT_D_TYPE/.
19383
19384 2002-05-28  Jim Meyering  <meyering@lucent.com>
19385
19386         * m4/readdir.m4 (jm_FUNC_READDIR): Undefine `mkdir', not `rmdir'.
19387         Reported by Volker Borchert.
19388
19389 2002-05-27  Jim Meyering  <meyering@lucent.com>
19390
19391         Fix a problem seen only on nonconforming systems whereby ls.c's
19392         use of localtime, and then of gettimeofday would cause trouble:
19393         the localtime call used to initialize rpl_gettimeofday's save
19394         mechanism would clobber ls's current local time information so
19395         that in any long listing the first file would always be listed
19396         with date 1970-01-01.  Analysis by Volker Borchert.
19397
19398         * lib/gettimeofday.c (localtime): Undefine.
19399         (rpl_localtime): New function.
19400
19401 2002-05-27  Jim Meyering  <meyering@lucent.com>
19402
19403         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Also replace
19404         localtime.
19405
19406         * m4/readdir.m4 (jm_FUNC_READDIR): Undefine `rmdir' so we don't try to
19407         use the replacement function; it wouldn't resolve at link time.
19408         Reported by Volker Borchert.
19409
19410 2002-05-22  Jim Meyering  <meyering@lucent.com>
19411
19412         * lib/Makefile.am (libfetish_a_SOURCES): Add file-type.c and
19413         file-type.h.
19414         * lib/file-type.h: New file.
19415         * lib/file-type.c (file_type): New file/function.  Extracted from
19416         diffutils.
19417
19418 2002-04-30  Jim Meyering  <meyering@lucent.com>
19419
19420         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_STAT.
19421
19422 2002-04-29  Paul Eggert  <eggert@twinsun.com>
19423
19424         * m4/prereq.m4 (jm_PREREQ_SIG2STR): Remove; all callers changed.
19425
19426 2002-04-29  Paul Eggert  <eggert@twinsun.com>
19427
19428         * m4/prereq.m4 (jm_PREREQ_HARD_LOCALE): Check for stdlib.h.
19429         Do not check for alloca.h (no longer used) or stdbool.h (was never
19430         used?).  Add AM_C_PROTOTYPES since hard-locale.h uses it.
19431
19432 2002-04-29  Paul Eggert  <eggert@twinsun.com>
19433
19434         * lib/hard-locale.c: Upgrade to version used in GNU Diffutils 2.8.1.
19435
19436 2002-04-29  Jim Meyering  <meyering@lucent.com>
19437
19438         * m4/jm-macros.m4 (jm_MACROS): Remove use of AC_FUNC_STRNLEN.
19439         * m4/prereq.m4: Add jm_PREREQ_STRNLEN.
19440         Use AC_FUNC_STRNLEN here instead.
19441
19442         * m4/jm-macros.m4: Don't AC_REQUIRE([AC_PROG_CC_STDC]).
19443         With autoconf-2.53a, it's part of AC_PROG_CC.
19444
19445 2002-04-28  Paul Eggert  <eggert@twinsun.com>
19446
19447         * m4/jm-macros.m4 (jm_MACROS): Add AC_REPLACE_FUNCS(sig2str).
19448         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_SIG2STR.
19449
19450 2002-04-28  Paul Eggert  <eggert@twinsun.com>
19451
19452         * lib/sig2str.h, sig2str.c: New files.
19453         * lib/Makefile.am (libfetish_a_SOURCES): Add sig2str.h.
19454
19455 2002-04-28  Paul Eggert  <eggert@twinsun.com>
19456
19457         * lib/sig2str.h (SIGNUM_BOUND): Do not use WTERMSIG, to avoid
19458         depending on <sys/wait.h> and WTERMSIG.  Default to 64 instead
19459         of 127, since 64 is the largest conceivable number for ancient
19460         nonstandard hosts.
19461         * lib/sig2str.c: Do not include <sys/wait.h>; no longer needed.
19462
19463 2002-04-28  Jim Meyering  <meyering@lucent.com>
19464
19465         * lib/sig2str.c (WTERMSIG): Remove definition (unused).
19466
19467 2002-04-24  Jim Meyering  <meyering@lucent.com>
19468
19469         * m4/prereq.m4 (jm_PREREQ_HARD_LOCALE): New macro.
19470         (jm_PREREQ): Use it.
19471
19472         * m4/getloadavg.m4: Check for these headers: locale.h unistd.h
19473         mach/mach.h fcntl.h.
19474         Check for this function: setlocale.
19475
19476 2002-04-24  Jim Meyering  <meyering@lucent.com>
19477
19478         * lib/gettext.h: New file, from Gettext.
19479         * lib/Makefile.am (INCLUDES): Remove -I../intl.
19480         (libfetish_a_SOURCES): Add gettext.h.
19481
19482 2002-04-16  Jim Meyering  <meyering@lucent.com>
19483
19484         * m4/prereq.m4 (jm_PREREQ_READUTMP): Also check for these members:
19485         ut_pid, ut_id, ut_exit.
19486
19487 2002-04-16  Jim Meyering  <meyering@lucent.com>
19488
19489         * lib/readutmp.h (UT_TYPE): Remove definition (now in who.c).
19490         (HAVE_STRUCT_XTMP_UT_EXIT, HAVE_STRUCT_XTMP_UT_ID): Define.
19491         (HAVE_STRUCT_XTMP_UT_PID, HAVE_STRUCT_XTMP_UT_TYPE): Define.
19492
19493 2002-04-12  Jim Meyering  <meyering@lucent.com>
19494
19495         * m4/ls-mntd-fs.m4 (checking for getmntinfo function...): Remove
19496         now-bogus check for f_type in sys/mount.h.  Instead, just test for the
19497         existence of the getmntinfo function.  Needed for Darwin 5.3.
19498
19499         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Also detect when dirfd is a macro.
19500         This is necessary at least on Darwin 5.3.
19501
19502         * m4/jm-macros.m4: Don't AC_REPLACE(strnlen), now that we use
19503         AC_FUNC_STRNLEN.  Otherwise, we'd end up putting two copies of
19504         strnlen.o in the library, and that makes some versions of ranlib
19505         object.
19506
19507 2002-04-12  Jim Meyering  <meyering@lucent.com>
19508
19509         * lib/dirfd.h (dirfd): Elide prototype if dirfd is a macro.
19510
19511 2002-04-09  Jim Meyering  <meyering@lucent.com>
19512
19513         * m4/malloc.m4: (jm_FUNC_MALLOC): Change the `checking ...' message
19514         to be more precise.  Rather than saying we're checking whether the
19515         function `works', say what we're testing.
19516         * m4/realloc.m4 (jm_FUNC_REALLOC): Likewise.
19517         Reported by Bruno Haible.
19518
19519 2002-03-10  Jim Meyering  <meyering@lucent.com>
19520
19521         * lib/makepath.c (make_path): Remove a comma from a diagnostic.
19522         Suggestion from Santiago Vila.
19523
19524 2002-03-08  Jim Meyering  <meyering@lucent.com>
19525
19526         * lib/rename.c: Mention that this wrapper is needed also on
19527         mips-dec-ultrix4.4 systems.
19528
19529 2002-03-02  Jim Meyering  <meyering@lucent.com>
19530
19531         * lib/gettime.c (gettime): Test HAVE_CLOCK_GETTIME,
19532         not HAVE_CLOCK_SETTIME.
19533
19534 2002-02-27  Paul Eggert  <eggert@twinsun.com>
19535
19536         * m4/jm-macros.m4 (jm_MACROS): Do not replace stime; no longer used.
19537         Check for clock_settime.
19538
19539 2002-02-27  Paul Eggert  <eggert@twinsun.com>
19540
19541         * lib/nanosleep.h: Rename to....
19542         * lib/timespec.h: New name for nanosleep.h.  All uses changed.
19543
19544         * lib/gettime.c: New file.
19545         * lib/settime.c: New file.
19546         * lib/stime.c: Remove.
19547
19548         * lib/Makefile.am (libfetish_a_SOURCES): Add gettime.c, settime.c,
19549         timespec.h.  Remove nanosleep.h.
19550
19551 2002-02-25  Paul Eggert  <eggert@twinsun.com>
19552
19553         * m4/acl.m4: New file.
19554         * m4/jm-macros.m4 (jm_MACROS): Require AC_FUNC_ACL.
19555         Do not check for acl or sys/acl.h, as AC_FUNC_ACL does that now.
19556
19557 2002-02-25  Paul Eggert  <eggert@twinsun.com>
19558
19559         * lib/acl.c, acl.h: New files.
19560         * lib/Makefile.am (libfetish_a_SOURCES): Add acl.h, acl.c.
19561
19562 2002-02-24  Jim Meyering  <meyering@lucent.com>
19563
19564         * lib/strnlen.c (strnlen): Define-away/undef so that an inconsistent
19565         prototype in string.h (on at least AIX4.3.2.0 w/gcc-2.95.3) doesn't
19566         cause trouble.  Reported by Nelson Beebe.
19567
19568 2002-02-23  Paul Eggert  <eggert@twinsun.com>
19569
19570         * lib/path-concat.c (xpath_concat): Reorder code to pacify
19571         compilers that don't know that xalloc_die never returns.
19572
19573 2002-02-20  Jim Meyering  <meyering@lucent.com>
19574
19575         * lib/getdate.c: Regenerate using bison-1.33.
19576
19577 2002-02-17  Jim Meyering  <meyering@lucent.com>
19578
19579         * config/config.guess (main): Don't use `head -1'; it's no longer
19580         portable. Use `sed 1q' instead.
19581
19582 2002-02-16  gettextize  <bug-gnu-gettext@gnu.org>
19583
19584         * m4/codeset.m4: Upgrade to gettext-0.11.
19585         * m4/gettext.m4: Upgrade to gettext-0.11.
19586         * m4/glibc21.m4: Upgrade to gettext-0.11.
19587         * m4/iconv.m4: Upgrade to gettext-0.11.
19588         * m4/isc-posix.m4: Upgrade to gettext-0.11.
19589         * m4/lcmessage.m4: Upgrade to gettext-0.11.
19590         * m4/lib-ld.m4: New file, from gettext-0.11.
19591         * m4/lib-link.m4: New file, from gettext-0.11.
19592         * m4/lib-prefix.m4: New file, from gettext-0.11.
19593         * m4/progtest.m4: Upgrade to gettext-0.11.
19594
19595 2002-02-15  Paul Eggert  <eggert@twinsun.com>
19596
19597         * m4/prereq.m4 (jm_PREREQ_POSIXVER): New macro.
19598         (jm_PREREQ): Use it.
19599
19600 2002-02-15  Paul Eggert  <eggert@twinsun.com>
19601
19602         * lib/posixver.c, posixver.h: New files.
19603         * lib/Makefile.am (libfetish_a_SOURCES): Add them.
19604
19605 2002-02-02  Paul Eggert  <eggert@twinsun.com>
19606             Bruno Haible  <bruno@clisp.org>
19607
19608         * lib/unicodeio.h (print_unicode_char): Add exit_on_error argument.
19609         (fwrite_success_callback): New declaration.
19610         * lib/unicodeio.c (unicode_to_mb): New function, extracted from
19611         print_unicode_char. Call failure callback instead of error.
19612         (fwrite_success_callback): New function.
19613         (exit_failure_callback): New function.
19614         (fallback_failure_callback): New function.
19615         (print_unicode_char): Call unicode_to_mb.
19616
19617 2002-01-26  Jim Meyering  <meyering@lucent.com>
19618
19619         * m4/jm-macros.m4 (jm_MACROS): Require autoconf-2.52g.
19620         * m4/strnlen.m4: Remove file, now that it's part of autoconf.
19621
19622 2002-01-26  Jim Meyering  <meyering@lucent.com>
19623
19624         * lib/Makefile.am (getdate$U.o): Depend on unlocked-io.h.
19625
19626 2002-01-22  Paul Eggert  <eggert@twinsun.com>
19627
19628         * m4/jm-macros.m4 (jm_MACROS): Require AC_FUNC_FSEEKO.
19629
19630 2002-01-22  Jim Meyering  <meyering@lucent.com>
19631
19632         * lib/Makefile.am (Makefile): Don't depend on $(BUILT_SOURCES).
19633         Otherwise, some versions of automake would omit the rule that makes
19634         Makefile from Makefile.in.
19635
19636 2002-01-21  Paul Eggert  <eggert@twinsun.com>
19637
19638         * lib/xmemcoll.h, xmemcoll.c: New files.
19639         * lib/Makefile.am (libfetish_a_SOURCES): Add them.
19640         * lib/memcoll.c: Include errno.h, and declare errno if not defined.
19641         (memcoll): Set errno to zero if there is no error.
19642
19643         * lib/quotearg.c (quotearg_buffer_restyled):
19644         Fix bug with quoting buffers containing NUL when backslashing escapes.
19645         This bug was exposed by the other changes in this patch.
19646         (quotearg_n_options): New arg ARGSIZE.
19647         All callers changed.
19648         (quoting_options_from_style): New function.
19649         (quotearg_n_style): Use it.
19650         (quotearg_n_style_mem): New function.
19651
19652         * lib/quotearg.h (quotearg_n_style_mem): New function.
19653
19654 2002-01-19  Jim Meyering  <meyering@lucent.com>
19655
19656         * m4/jm-macros.m4 (jm_MACROS): Use AC_FUNC_STRNLEN.
19657         Remove useless quotes: DF_PROG="df".
19658         * m4/strnlen.m4: New file.
19659
19660 2002-01-16  Paul Eggert  <eggert@twinsun.com>
19661
19662         * lib/backupfile.c (ISDIGIT): Comment fix.
19663         * lib/getdate.y (ISDIGIT): Likewise.
19664         * lib/posixtm.c (ISDIGIT, year): Likewise.
19665         * lib/strverscmp.c (ISDIGIT): Likewise.
19666         * lib/userspec.c (ISDIGIT): Likewise.
19667
19668 2002-01-16  Jim Meyering  <meyering@lucent.com>
19669
19670         * lib/getdate.y: Add three semicolons, each just before a closing
19671         brace. Bison (as of version 1.31) no longer papers over that mistake.
19672
19673 2002-01-05  Jim Meyering  <meyering@lucent.com>
19674
19675         * lib/version-etc.c (version_etc_copyright): Update copyright year.
19676
19677 2001-12-19  Paul Eggert  <eggert@twinsun.com>
19678
19679         * lib/closeout.c (close_stdout_status): If ferror (stdout), do
19680         not silently exit merely because the output buffer happens to
19681         have nothing pending.
19682
19683 2001-12-18  Paul Eggert  <eggert@twinsun.com>
19684
19685         See the big note in ../ChangeLog.
19686         * lib/human.c (suffixes): Prefer K to k for 1024.
19687         (generate_suffix_backwards): New function.
19688         (human_readable_inexact): Use it.
19689         * lib/xstrtol.c (__xstrtol): If there is no number but there
19690         is a valid suffix, assume 1.  "MB" now means decimal, "MiB" binary.
19691         Accept 'K' as well as 'k'.
19692
19693 2001-12-15  Jim Meyering  <meyering@lucent.com>
19694
19695         * lib/regex.h (__restrict_arr): Update from libc.
19696
19697         * lib/mountlist.h (ME_REMOTE): Recognize file systems of type smbfs
19698         as `remote' if the name starts with `//'.  Suggested by Michael Stone.
19699         (STREQ): Define.
19700
19701 2001-12-14  Jim Meyering  <meyering@lucent.com>
19702
19703         * m4/jm-macros.m4 (jm_MACROS): Check for iswspace.
19704         Suggestion from Bruno Haible.
19705
19706 2001-12-10  Jim Meyering  <meyering@lucent.com>
19707
19708         * lib/linebuffer.c: Remove explicit declarations of xmalloc and
19709         xrealloc, Instead, include "xalloc.h".
19710         (initbuffer): Don't cast xmalloc return value to char*.
19711         (readline): Reword comment.
19712         Don't cast xrealloc return value to char*
19713         Return NULL, not 0.
19714
19715 2001-12-09  Jim Meyering  <meyering@lucent.com>
19716
19717         * lib/modechange.c (mode_compile): Add cast to avoid pedantic warning
19718         about `signed and unsigned type in conditional expression'.
19719         * lib/posixtm.c (posix_time_parse): Likewise.
19720
19721         * lib/xreadlink.c (xreadlink): Add cast to avoid a pedantic warning.
19722
19723         * lib/readtokens.c (readtoken): Declare an index to be of type unsigned
19724         to avoid a pedantic warning.
19725
19726         * lib/getstr.c: Don't include assert.h.
19727         (getstr): Remove warning-evoking assertions.
19728         Return -1 if offset parameter is out of bounds.
19729         Change the type of a local from int to size_t.
19730
19731         * lib/strftime.c (my_strftime_localtime_r): Include this function
19732         definition in the `#if ! HAVE_TM_GMTOFF' block.
19733
19734         * lib/xgethostname.c: Remove declarations of xmalloc and xrealloc.
19735         Include xalloc.h instead.
19736
19737 2001-12-02  Jim Meyering  <meyering@lucent.com>
19738
19739         * lib/tempname.c: Don't declare getenv, thus reverting the change of
19740         2001-11-18.  It's no longer necessary, now that stdlib.h is always
19741         included.
19742
19743         * lib/regex.c [!__BOUNDED_POINTERS__]: Define away __bounded,
19744         __unbounded, and __ptrvalue.  Reported by Uwe H. Steinfeld.
19745
19746 2001-11-30  Akim Demaille  <akim@epita.fr>
19747
19748         * lib/xstrdup.c: Include xalloc.h, so that xstrdup is declared
19749         before being defined.
19750
19751 2001-11-27  Paul Eggert  <eggert@twinsun.com>
19752
19753         * lib/quotearg.h (quotearg_n, quotearg_n_style):
19754         First arg is int, not unsigned.
19755         * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
19756         (SIZE_MAX, UINT_MAX): New macros.
19757         (quotearg_n_options): Abort if N is negative.
19758         Avoid overflow check on hosts where size_t is 64 bits and int
19759         is 32 bits, as overflow is impossible there.
19760         Fix off-by-one typo that caused unnecessary reallocation.
19761
19762 2001-11-27  Jim Meyering  <meyering@lucent.com>
19763
19764         * lib/tempname.c: Merge with version from libc.
19765         * lib/regex.c: Likewise.
19766
19767         * lib/tempname.c: Include stdlib.h unconditionally.  On some old
19768         systems for which STDC_HEADERS is 0, it was not included, resulting in
19769         a warning about an integer-to-pointer conversion problem with getenv.
19770         Reported by Volker Borchert.
19771
19772 2001-11-26  Jim Meyering  <meyering@lucent.com>
19773
19774         * lib/gtod.h: Remove file.
19775         * lib/Makefile.am (libfetish_a_SOURCES): Remove gtod.h.
19776         * lib/gettimeofday.c: Don't include gtod.h.
19777         (GTOD_init): Remove function.
19778         (rpl_gettimeofday): Do its job here instead, rather than aborting.
19779         Suggestion from Volker Borchert.
19780
19781 2001-11-23  Jim Meyering  <meyering@lucent.com>
19782
19783         * lib/hash.h (struct hash_table): Don't define here.  Merely declare
19784         it.
19785         * lib/hash.c (struct hash_table): Define it here instead.
19786
19787 2001-11-22  Jim Meyering  <meyering@lucent.com>
19788
19789         * lib/hash.h: Bracket contents of file with #ifndef HASH_H_ ... #endif.
19790
19791 2001-11-20  Jim Meyering  <meyering@lucent.com>
19792
19793         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Update comment to reflect that
19794         SunOS 4.1.4 and Solaris 2.5.1 lose, too.
19795
19796 2001-11-19  Jim Meyering  <meyering@lucent.com>
19797
19798         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Don't bother with a temporary
19799         directory.  Use "conftestXXXXXX" as the template.
19800         Suggestion from Paul Eggert.
19801
19802         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Close each descriptor
19803         immediately, so the test doesn't mistakenly hit the max-open-files
19804         limit.
19805
19806 2001-11-18  Paul Eggert  <eggert@twinsun.com>
19807
19808         * lib/tempname.c (TMP_MAX): Remove; no longer needed.
19809         (TEMPORARIES): New macro.
19810         (__gen_tempname): Use TEMPORARIES rather than TMP_MAX.  This
19811         removes an artificial limitation (e.g. HP-UX 10.20, where
19812         TMP_MAX is 17576).
19813
19814 2001-11-18  Jim Meyering  <meyering@lucent.com>
19815
19816         * m4/prereq.m4 (jm_PREREQ_TEMPNAME): Check for declaration of getenv.
19817
19818 2001-11-18  Jim Meyering  <meyering@lucent.com>
19819
19820         * lib/tempname.c [!HAVE_DECL_GETENV]: Declare getenv to avoid warning
19821         on SunOS 4.
19822
19823         * lib/Makefile.am (Makefile): Depend on $(BUILT_SOURCES), so those
19824         files will be created before anything else.
19825
19826 2001-11-17 Paul Eggert  <eggert@twinsun.com>
19827
19828         * m4/jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): Do not define
19829         WINSIZE_IN_PTEM if <termios.h> defines struct winsize.
19830
19831 2001-11-17  Jim Meyering  <meyering@lucent.com>
19832
19833         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): New file and macro.
19834         Prompted by a report from Bob Proulx.
19835
19836         * m4/jm-macros.m4 (jm_MACROS): Don't test for mkstemp here.
19837         Instead, require UTILS_FUNC_MKSTEMP.
19838
19839 2001-11-17  Jim Meyering  <meyering@lucent.com>
19840
19841         * m4/jm-macros.m4 (jm_MACROS): Remove code to set POW_LIBM.
19842         Now, that's done as part of AC_FUNC_STRTOD.
19843
19844 2001-11-17  Jim Meyering  <meyering@lucent.com>
19845
19846         * lib/modechange.c (mode_adjust): Fix error introduced on 1999-04-26
19847         that made e.g., `chmod a=,o=w,g=o F' cause F to be group readable
19848         rather than group writable.  Patch by Juan F. Codagnone.
19849
19850         * lib/readtokens.c: Remove explicit declarations of xmalloc and
19851         xrealloc, Instead, include "xalloc.h".
19852
19853         * lib/mountlist.c: Include unlocked-io.h after all system headers.
19854         Remove explicit declarations of xmalloc, xrealloc,
19855         and xstrdup.  Instead, include "xalloc.h".
19856
19857         * lib/argmatch.c, closeout.c, error.c, exclude.c: Include
19858         unlocked-io.h.
19859         * lib/fatal.c, getdate.y, getpass.c, getstr.c, getusershell.c:
19860         Likewise.
19861         * lib/mountlist.c, posixtm.c, readtokens.c, readutmp.c: Likewise.
19862
19863         * lib/regex.c, sha.c, version-etc.c, yesno.c: Likewise.
19864         Reported by Padraig Brady.
19865
19866         * lib/mkstemp.c: #undef mkstemp.
19867         Include config.h.
19868         (rpl_mkstemp): Rename from mkstemp.
19869         Protoize.
19870
19871 2001-11-16  Jim Meyering  <meyering@lucent.com>
19872
19873         * lib/physmem.c [HAVE_SYS_PSTAT_H]: Include <sys/pstat.h>.
19874         (physmem_total) [HAVE_PSTAT_GETSTATIC]: If sysconf couldn't be used to
19875         determine the amount of total physical memory, use pstat_getstatic.
19876         HPUX-11 doesn't define _SC_PHYS_PAGES.
19877         (physmem_available) [HAVE_PSTAT_GETSTATIC && HAVE_PSTAT_GETDYNAMIC]:
19878         If sysconf couldn't be used to determine the amount of available
19879         physical memory, use both pstat_getstatic and pstat_getdynamic.
19880         Based on a patch from Bob Proulx.
19881
19882 2001-11-10  Jim Meyering  <meyering@lucent.com>
19883
19884         * m4/prereq.m4 (jm_PREREQ_PHYSMEM): New function.
19885         (jm_PREREQ): Use it.
19886
19887 2001-11-09  Jim Meyering  <meyering@lucent.com>
19888
19889         * m4/jm-macros.m4: Require autoconf-2.52f.
19890         (AC_FUNC_ERROR_AT_LINE, AC_FUNC_OBSTACK, AC_FUNC_STRTOD):
19891         Use these AC_-prefixed names, not the AM_-prefixed ones.
19892
19893         * m4/afs.m4 (jm_AFS): Quote the body.  Patch by Akim Demaille.
19894
19895 2001-11-05  Jim Meyering  <meyering@lucent.com>
19896
19897         * lib/xstat.in (slash_aware_lstat): Correct a misleading comment.
19898
19899 2001-11-04  Jim Meyering  <meyering@lucent.com>
19900
19901         * m4/fpending.m4: Remove unused cruft that saved, set, and restored
19902         $DEFS.
19903
19904 2001-11-03  Jim Meyering  <meyering@lucent.com>
19905
19906         * m4/jm-glibc-io.m4n (jm_FUNC_GLIBC_UNLOCKED_IO): Quote first arg
19907         of AC_DEFUN.
19908
19909         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Rework so dirfd.c doesn't have to
19910         know the name of the variable in the macro definition.
19911
19912 2001-11-03  Jim Meyering  <meyering@lucent.com>
19913
19914         * lib/argmatch.h (ARGMATCH_TO_ARGUMENT): Remove casts of first two args
19915         in argmatch_to_argument call.
19916
19917         * lib/dirfd.c (dirfd): Reflect the fact that DIR_TO_FD now takes an
19918         argument.
19919
19920         * lib/hash.c (hash_clear): Fix a bug that could lead to an infloop or
19921         e.g., a fault due to an attempt to free a NULL pointer.
19922
19923 2001-11-01  Jim Meyering  <meyering@lucent.com>
19924
19925         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): New macro.
19926         * m4/jm-macros.m4 (jm_MACROS): Require UTILS_FUNC_DIRFD.
19927
19928 2001-11-01  Jim Meyering  <meyering@lucent.com>
19929
19930         * lib/dirfd.c, dirfd.h: New files.
19931         * lib/Makefile.am (libfetish_a_SOURCES): Add dirfd.h.
19932
19933         * lib/hash.c (hash_print) [TESTING]: Clean up.
19934
19935 2001-10-22  Paul Eggert  <eggert@twinsun.com>
19936
19937         * lib/hard-locale.c (alloca): Define to __builtin_alloca if __GNUC__,
19938         to avoid a warning if -Wall.
19939
19940 2001-10-22  Jeff Bailey  <jbailey@outpost.dnsalias.org>
19941
19942         * README: New file
19943         * doc/*: Add COPYING, COPYING.LIB, COPYING.DOC, fdl.texi
19944         (per RMS's instructions, this is now the canonical source)
19945         * lgpl/, gpl/: New directories.
19946
19947 2001-10-21  Paul Eggert  <eggert@twinsun.com>
19948
19949         * lib/regex.c (uintptr_t): Remove macro and decl; it's config.h's job.
19950
19951 2001-10-21  Jim Meyering  <meyering@lucent.com>
19952
19953         * lib/obstack.c (_): Honor the setting of ENABLE_NLS.  Otherwise,
19954         this code would end up calling gettext even in packages built
19955         with --disable-nls.
19956         * lib/getopt.c (_): Likewise.
19957         * lib/regex.c (_): Likewise.
19958
19959 2001-10-20  Paul Eggert  <eggert@twinsun.com>
19960
19961         * m4/error.m4 (jm_PREREQ_ERROR):
19962         Do not invoke AC_CHECK_FUNCS with strerror_r, as
19963         AC_FUNC_STRERROR_R does that.
19964         Check for strerror declaration.
19965
19966         * m4/strerror_r.m4: Add copyright notice, as nontrivial m4 files
19967         are supposed to have them these days.
19968         (AC_FUNC_STRERROR_R): Always do char* test, so that it gets cached.
19969         Merge changes from latest Autoconf CVS.
19970         Rename ac_cv_func_strerror_r_works to ac_cv_func_strerror_r_char_p,
19971         and rename HAVE_WORKING_STRERROR_R to STRERROR_R_CHAR_P, since
19972         POSIX decided to standardize on the int flavor of strerror_r.
19973
19974 2001-10-20  Paul Eggert  <eggert@twinsun.com>
19975
19976         * lib/error.c (strerror_r): Do not declare unless !_LIBC.
19977         Do not check for HAVE_DECL_STRERROR_R missing unless STRERROR_R_CHAR_P.
19978         Use strerror_r that is only a macro, even if it is not a function.
19979         (strerror): Check for HAVE_DECL_STRERROR before declaring.
19980         (private_strerror): Use prototypes, not old-style function definition.
19981         (print_errno_message): New function.
19982         Support the POSIX 'int'-flavored strerror_r, as well as the traditional
19983         char*-flavored one.
19984         (error_tail, error, error_at_line): Use it.
19985
19986 2001-10-11  Jim Meyering  <meyering@lucent.com>
19987
19988         * lib/argmatch.c (argmatch_invalid): Use quotearg_n_style (0, ...
19989         and quote_n (1, ... to avoid clobbering a buffer.
19990
19991 2001-10-05  Jim Meyering  <meyering@lucent.com>
19992
19993         * lib/Makefile.am: (libfetish_a_SOURCES): Add hash-pjw.c and
19994         hash-pjw.h.
19995         * lib/hash-pjw.c: New file (factored out of fileutils' remove.c).
19996         * lib/hash-pjw.h: New file.
19997
19998 2001-09-30  Jim Meyering  <meyering@lucent.com>
19999
20000         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): See if
20001         `struct fsstat' has the `f_fstypename' member.
20002         Use that to define FS_TYPE, which is now used to make
20003         the getfsstat link test tighter.
20004
20005 2001-09-30  Jim Meyering  <meyering@lucent.com>
20006
20007         * lib/mountlist.c [MOUNTED_GETFSSTAT]:
20008         Include <sys/ucred.h>, for Apple Darwin.
20009         Include sys/mount.h and sys/fs_types.h only if available.
20010         (FS_TYPE): Define.
20011         (read_filesystem_list): Use FS_TYPE.
20012
20013 2001-09-29  Paul Eggert  <eggert@twinsun.com>
20014
20015         * lib/exclude.c (excluded_filename): 0 -> false, since it's
20016         a boolean context.
20017
20018 2001-09-29  Jim Meyering  <meyering@lucent.com>
20019
20020         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS)
20021         [one-argument getmntent function]): Include stdio.h before mntent.h.
20022         SunOS 4.1.x needs it for the declaration of `FILE'.
20023         Patch by Volker Borchert.
20024
20025         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS)
20026         Check for these headers: sys/param.h sys/ucred.h sys/mount.h
20027         sys/fs_types.h, and make the link-test for getfsstat guard #include
20028         directives with appropriate #if HAVE_*_H tests so that we can
20029         detect getfsstat on Apple Darwin1.3.7 systems.
20030         Reported by Nelson Beebe.
20031         Fix harmless typo in cache variable name: s/getsstat/getfsstat/.
20032
20033 2001-09-28  Paul Eggert  <eggert@twinsun.com>
20034
20035         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
20036         #defines strtoimax.  Also treat the other strto* functions
20037         like strtoimax.
20038
20039         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
20040         Check for strtoul and strtoumax,
20041         as those declarations are made even in the signed case.
20042         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX):
20043         Likewise, for strtol and strtoimax.
20044
20045 2001-09-28  Paul Eggert  <eggert@twinsun.com>
20046
20047         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
20048         #defines strtoimax.  Also treat the other strto* functions
20049         like strtoimax.
20050
20051         * lib/xstrtol.c (strtol): Do not declare if HAVE_DECL_STRTOL.
20052         (strtoul): Do not declare if HAVE_DECL_STRTOUL.
20053         (strtoimax, strtoumax): Do not declare if already defined as a macro.
20054
20055 2001-09-26  Jim Meyering  <meyering@lucent.com>
20056
20057         Most macros in unlocked-io.h had the wrong number of arguments.
20058         * lib/gen-uio: New script.
20059         (USE_UNLOCKED_IO): Define to 1 if not already defined.
20060         * lib/unlocked-io.hin: Remove file.
20061         * lib/Makefile.am (unlocked-io.h): Rewrite to use a separate script,
20062         rather than trying to embed it here.
20063         (EXTRA_DIST): Add gen-uio.  Remove unlocked-io.hin
20064         Reported by Padraig Brady.
20065
20066 2001-09-25  Volker Borchert  <bt@teknon.de>
20067
20068         * lib/gettimeofday.c (rpl_gettimeofday): Declare local variable
20069         `result'.
20070
20071 2001-09-24  Jim Meyering  <meyering@lucent.com>
20072
20073         * m4/gettext.m4: Use the version from gettext-0.10.40, not CVS.
20074
20075 2001-09-23  Jim Meyering  <meyering@lucent.com>
20076
20077         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add a compile-test
20078         instead of the mere test for existence of mntent.h.  The latter
20079         would get a false-positive on AIX 3.4 systems.
20080         In the outer getmntent if-block, don't die if neither of the getmntent
20081         tests succeeds.  Instead, just fall through and continue with the
20082         remaining tests.
20083
20084 2001-09-23  Jim Meyering  <meyering@lucent.com>
20085
20086         * lib/mountlist.c: Remove useless parentheses in #if directives.
20087         (MOUNTED) [!defined MOUNTED]: Define to _PATH_MOUNTED, for when
20088         the deprecated MOUNTED symbol is no longer defined in mntent.h.
20089
20090 2001-09-22  Jim Meyering  <meyering@lucent.com>
20091
20092         * m4/gettext.m4: New file.  From gettext.
20093         * m4/lcmessage.m4: Sync with gettext -- this changes only comments.
20094         * m4/progtest.m4: Likewise
20095         * m4/isc-posix.m4: Decrement serial number to sync with gettext.
20096         * m4/glibc21.m4: Likewise.
20097
20098         * m4/libintl.m4: Remove.  No longer used.
20099
20100 2001-09-22  Jim Meyering  <meyering@lucent.com>
20101
20102         * lib/localcharset.c: Update from latest gettext.
20103         * lib/config.charset: Likewise.
20104
20105 2001-09-20  Jim Meyering  <meyering@lucent.com>
20106
20107         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX): Check for declaration of
20108         strtoimax.
20109         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check for declaration of
20110         strtoumax.
20111
20112 2001-09-20  Jim Meyering  <meyering@lucent.com>
20113
20114         * lib/xstrtol.c (strtoimax): Guard declaration with
20115         `#if !HAVE_DECL_STRTOIMAX', rather than just `#ifndef strtoimax'.
20116         The latter fails because some systems (at least rs6000-ibm-aix4.3.3.0)
20117         have their own, conflicting declaration of strtoimax in sys/inttypes.h.
20118         (strtoumax): Likewise, for completeness (it wasn't necessary).
20119
20120 2001-09-17  Paul Eggert  <eggert@twinsun.com>
20121
20122         * lib/strtoimax.c (HAVE_LONG_LONG):
20123         Redefine to HAVE_UNSIGNED_LONG_LONG if unsigned.
20124         (strtoimax): Use sizeof (long), not sizeof strtol (ptr, endptr, base),
20125         to work around bug in IBM C compiler.
20126
20127 2001-09-17  Jim Meyering  <meyering@lucent.com>
20128
20129         * m4/chown.m4, fstypename.m4, getgroups.m4, gettimeofday.m4,
20130         * m4/jm-mktime.m4, lstat.m4, malloc.m4, memcmp.m4, mkdir-slash.m4,
20131         * m4/nanosleep.m4, putenv.m4, readdir.m4, realloc.m4, rename.m4,
20132         * m4/st_dm_mode.m4, stat.m4, strerror_r.m4, timespec.m4, utimbuf.m4,
20133         * m4/utimes.m4: Use AC_DEFINE rather than AC_DEFINE_UNQUOTED,
20134         whenever the right hand side need not be expanded by the shell.
20135
20136 2001-09-16  Paul Eggert  <eggert@twinsun.com>
20137
20138         * m4/fnmatch.m4 (jm_FUNC_FNMATCH): Remove test for GNU C
20139         library.  It's not correct, as some older glibcs are buggy.
20140         fnmatch wasn't fixed until glibc 2.2.
20141
20142         Use AC_DEFINE, not AC_DEFINE_UNQUOTED, as there's no
20143         special shell magic here.
20144
20145 2001-09-16  Jim Meyering  <meyering@lucent.com>
20146
20147         * m4/mkdir-slash.m4 (UTILS_FUNC_MKDIR_TRAILING_SLASH): New file/macro.
20148         * m4/jm-macros.m4: Require it.
20149
20150 2001-09-16  Jim Meyering  <meyering@lucent.com>
20151
20152         * lib/mkdir.c: New file.
20153
20154 2001-09-15  Jim Meyering  <meyering@lucent.com>
20155
20156         * m4/jm-macros.m4: Check for help2man.
20157
20158 2001-09-11  Jim Meyering  <meyering@lucent.com>
20159
20160         * m4/host-os.m4 (UTILS_HOST_OS): New file/macro.
20161         The body, by Paul Eggert, was moved here from configure.in.
20162         * m4/jm-macros.m4: Require UTILS_HOST_OS.
20163
20164 2001-09-04  Paul Eggert  <eggert@twinsun.com>
20165
20166         * m4/prereq.m4 (jm_PREREQ_XREADLINK): New macro.
20167         (jm_PREREQ): Use it.
20168
20169 2001-09-04  Paul Eggert  <eggert@twinsun.com>
20170
20171         * lib/xreadlink.c (xreadlink): Omit size_t* arg.  All uses changed.
20172         Use ssize_t, not int, to store result of readlink.
20173         Check for ssize_t overflow as well as size_t overflow,
20174         as POSIX says the result of readlink is implementation-defined
20175         when ssize_t overflows.
20176         Remove unnecessary cast to char*.
20177         Use free+malloc instead of realloc, as the storage doesn't need
20178         to be preserved and it's clearer and can be more efficient that way.
20179         (SIZE_MAX, SSIZE_MAX): New macros, if <limits.h> doesn't declare.
20180         * lib/xreadlink.h (xreadlink): Update prototype.
20181
20182 2001-09-04  Paul Eggert  <eggert@twinsun.com>
20183
20184         * lib/xgetcwd.c: Revert some of the previous change; intead,
20185         fix the HAVE_GETCWD_NULL code to behave more like the
20186         !HAVE_GETCWD_NULL code used to.
20187
20188         Include "xalloc.h".
20189         (xgetcwd): Do not return NULL when memory is exhausted; instead,
20190         invoke xalloc_die.
20191
20192 2001-09-03  Paul Eggert  <eggert@twinsun.com>
20193
20194         * m4/prereq.m4 (jm_PREREQ_XGETCWD): Check for limits.h and
20195         sys/param.h, as pathmax.h includes them.
20196
20197 2001-09-03  Paul Eggert  <eggert@twinsun.com>
20198
20199         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_XGETCWD.
20200         (jm_PREREQ_XGETCWD): New macro.
20201
20202         * m4/getcwd.m4: New file.
20203
20204 2001-09-03  Paul Eggert  <eggert@twinsun.com>
20205
20206         * lib/xgetcwd.c: Fix the !HAVE_GETCWD_NULL code to behave more
20207         like the HAVE_GETCWD_NULL code.
20208         Include pathmax.h if not HAVE_GETCWD.
20209         Do not include xalloc.h.
20210         (INITIAL_BUFFER_SIZE): New symbol.
20211         Do not use xmalloc / xrealloc, since the caller is responsible for
20212         handling errors.  Preserve errno around `free' during failure.
20213         Do not overrun buffer when using getwd.
20214
20215 2001-09-03  Paul Eggert  <eggert@twinsun.com>
20216
20217         * lib/xgetcwd.c (xgetcwd): Use HAVE_GETCWD_NULL, not (defined
20218         __GLIBC__ && __GLIBC__ >= 2), to decide whether to use
20219         getcwd (NULL, 0).
20220
20221 2001-09-03  Paul Eggert  <eggert@twinsun.com>
20222
20223         * lib/exclude.c (fnmatch_no_wildcards): Fix confusion between
20224         usage of FNM_CASEFOLD and FNM_LEADING_DIR.  The bug was
20225         spotted by Jim Meyering.
20226
20227 2001-09-03  Jim Meyering  <meyering@lucent.com>
20228
20229         * lib/xreadlink.c (xreadlink): Preserve errno around `free' during
20230         failure.
20231
20232 2001-09-02  Jim Meyering  <meyering@lucent.com>
20233
20234         * lib/error.c: Update from GNU libc.
20235
20236 2001-09-01  Jim Meyering  <meyering@lucent.com>
20237
20238         * m4/jm-macros.m4 (jm_MACROS): Check for canonicalize_file_name.
20239         Used by df.
20240
20241 2001-09-01  Jim Meyering  <meyering@lucent.com>
20242
20243         * lib/xreadlink.c: New file.
20244         * lib/xreadlink.h: New file.
20245         * lib/Makefile.am (libfetish_a_SOURCES): Add xreadlink.c and
20246         xreadlink.h.
20247
20248         * lib/regex.c (uintptr_t) [!_LIBC]: Define to private_uintptr_t, so it
20249         doesn't conflict with sparc Solaris 7's definition in
20250         /usr/include/sys/int_types.h.
20251
20252         * lib/exclude.c: Use `""', not `<>' to #include non-system header
20253         files.
20254         (fnmatch_no_wildcards): Rewrite not to use function names, strcasecmp
20255         and strncasecmp as r-values.  Unixware didn't have declarations.
20256
20257 2001-08-31  Paul Eggert  <eggert@twinsun.com>
20258
20259         * lib/xstrtol.h: Add copyright notice.
20260         (_DECLARE_XSTRTOL): Improve quality of diagnostic for
20261         LONGINT_INVALID_SUFFIX_CHAR.
20262
20263 2001-08-31  Paul Eggert  <eggert@twinsun.com>
20264
20265         * lib/xstrtol.c (strtoimax): New decl.
20266
20267 2001-08-31  Paul Eggert  <eggert@twinsun.com>
20268
20269         * lib/xgetcwd.c: Don't include pathmax.h.
20270         Include stdlib.h and unistd.h if available.
20271         Include xalloc.h.
20272         (xmalloc, xstrdup, free): Remove decls.
20273         (xgetcwd): Don't assume sizes fit in unsigned.
20274         Check for overflow when computing sizes.
20275         Simplify reallocation code.
20276
20277 2001-08-31  Paul Eggert  <eggert@twinsun.com>
20278
20279         * lib/savedir.c (savedir): Remove size parameter, as POSIX says that
20280         a directory's st_size can have an arbitrary value, so the old
20281         usage could waste an arbitrary amount of memory.  All uses
20282         changed.
20283         * lib/savedir.h: Update prototype.
20284
20285 2001-08-31  Paul Eggert  <eggert@twinsun.com>
20286
20287         * lib/Makefile.am (libfetish_a_SOURCES): Remove strtoxmax.c.
20288
20289         * lib/strtoimax.c: Renamed from strtoxmax.c, removing the
20290         old strtoimax.c.
20291
20292         Also, make the following further changes to make this file's
20293         configuration more similar to that of strtol.c:
20294         (UNSIGNED): Renamed from STRTOUXMAX_UNSIGNED.  All uses changed.
20295         (strtoumax, uintmax_t, strtoull, strtol): Remove.
20296         (intmax_t, strtoimax, strtol, strtoll): New macros, if UNSIGNED.
20297         (strtoimax): Renamed from strtoumax.  All uses of unsigned values
20298         changed to signed values.
20299
20300         And make the following changes as well:
20301         Fix copyright notice, as 1999 was missing.
20302         (verify): New macro.
20303         (strtoimax): Check sizes at compile-time, not run-time.
20304         Prefer strtol to strtoll if both work.
20305         (main): Remove; it was not that useful and was a pain to maintain.
20306
20307         * lib/strtoumax.c: Include strtoimax.c, not strtouxmax.c.
20308
20309 2001-08-31  Jim Meyering  <meyering@lucent.com>
20310
20311         * lib/xgetcwd.c (xgetcwd): Reorganize to avoid some duplication.
20312         Use an initial, malloc'd, buffer of length 128 rather than
20313         a statically allocated one of length 1024.
20314
20315 2001-08-30  Paul Eggert  <eggert@twinsun.com>
20316
20317         Simplify code, partly by assuming autoconf 2.52 semantics.
20318
20319         * m4/Makefile.am (EXTRA_DIST): Remove uintmax_t.m4.
20320
20321         * m4/inttypes.m4 (AC_PREREQ): Bump to 2.52.
20322         (jm_AC_HEADER_INTTYPES_H): Remove; now done by autoconf in 2.52.
20323         All uses removed.
20324         (jm_AC_TYPE_INTMAX_T, jm_AC_TYPE_UINTMAX_T):
20325         Move AC_REQUIRE to next-to-top level, to avoid confusion.
20326         Use 2.52's AC_CHECK_TYPE instead of merely looking for the header.
20327         * m4/prereq.m4 (jm_PREREQ_HUMAN): Don't require
20328         jm_AC_HEADER_INTTYPES_H.
20329         * m4/jm-macros.m4 (jm_MACROS): Likewise.
20330
20331         * m4/uintmax_t.m4: Remove, as it duplicates inttypes.m4.
20332
20333         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
20334         Quote first arg of AC_DEFUN.
20335         Require jm_AC_TYPE_UINTMAX_T and jm_AC_TYPE_UNSIGNED_LONG_LONG
20336         since they are needed to parse the include file even if we need
20337         only xstrtoimax.  Simplify logic behind the args to AC_REPLACE.
20338         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Likewise,
20339         but with opposite signedness.
20340
20341 2001-08-30  Paul Eggert  <eggert@twinsun.com>
20342
20343         Merge 'exclude' changes from tar 1.13.22.
20344         This fixes one or two unlikely storage allocation overflow bugs,
20345         but doesn't change user-visible behavior otherwise.
20346
20347 2001-08-30  Paul Eggert  <eggert@twinsun.com>
20348
20349         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_EXCLUDE.
20350         (jm_PREREQ_EXCLUDE): New macro.
20351
20352 2001-08-30  Paul Eggert  <eggert@twinsun.com>
20353
20354         * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
20355         tm to be declared.
20356
20357 2001-08-30  Paul Eggert  <eggert@twinsun.com>
20358
20359         * lib/hash.c: Remove '2001' from copyright notice.
20360
20361 2001-08-30  Paul Eggert  <eggert@twinsun.com>
20362
20363         * lib/full-write.h: New file.
20364         * lib/Makefile.am (libfetish_a_SOURCES): Add full-write.h.
20365         * lib/full-write.c: Correct credits, as cccp.c no longer
20366         exists and anyway it was so heavily changed from the old cccp
20367         code as to be unrecognizable.  Include full-write.h.
20368         (full_write) Return size_t, with short writes meaning failure.
20369         All callers changed.  This fixes a bug with large buffers
20370         on 64-bit hosts.
20371         * lib/utime.c: Include full-write.h.
20372
20373 2001-08-30  Paul Eggert  <eggert@twinsun.com>
20374
20375         * lib/exclude.c (bool): Declare, perhaps by including stdbool.h.
20376         (<sys/types.h>): Include only if HAVE_SYS_TYPES_H.
20377         (<stdlib.h>, <string.h>, <strings.h>, <inttypes.h>, <stdint.h>):
20378         Include if available.
20379         (<xalloc.h>): Include
20380         (SIZE_MAX): Define if <stdint.h> or <inttypes.h> doesn't.
20381         (verify): New macro.  Use it to verify that EXCLUDE macros do not
20382         collide with FNM macros.
20383         (struct patopts): New struct.
20384         (struct exclude): Use it, as exclude patterns now come with options.
20385         (new_exclude): Support above changes.
20386         (new_exclude, add_exclude_file):
20387         Initial size must now be a power of two to simplify overflow checking.
20388         (free_exclude, fnmatch_no_wildcards): New function.
20389         (excluded_filename): No longer requires options arg, as the options
20390         are determined by add_exclude.  Now returns bool, not int.
20391         (excluded_filename, add_exclude):
20392         Add support for the fancy new exclusion options.
20393         (add_exclude, add_exclude_file): Now takes int options arg.
20394         Check for arithmetic overflow when computing sizes.
20395         (add_exclude_file): xrealloc might modify errno, so don't
20396         realloc until after errno might be used.
20397
20398         * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE,EXCLUDE_WILDCARDS):
20399         New macros.
20400         (free_exclude): New decl.
20401         (add_exclude, add_exclude_file): Now takes int options arg.
20402         (excluded_filename): No longer requires options arg, as the options
20403         are determined by add_exclude.  Now returns bool, not int.
20404
20405 2001-08-30  Paul Eggert  <eggert@twinsun.com>
20406
20407         * lib/alloca.c (alloca): Arg is of type size_t, not unsigned.
20408
20409 2001-08-27  Jim Meyering  <meyering@lucent.com>
20410
20411         * lib/Makefile.am (libfetish_a_SOURCES): Add strtoxmax.c
20412
20413         * lib/version-etc.c (N_): Remove definition.
20414         Revert most of last change.
20415         Instead, simply don't mark the `Copyright...' string for translation.
20416         Based on advice from Paul Eggert.
20417
20418         * lib/strtoxmax.c: Tweak comment.
20419
20420 2001-08-26  Jim Meyering  <meyering@lucent.com>
20421
20422         * m4/jm-macros.m4: Require jm_AC_PREREQ_XSTRTOIMAX.
20423
20424         * m4/xstrtoimax.m4: New file.
20425         * m4/xstrtoumax.m4: Add comments explaining why we
20426         AC_REPLACE_FUNCS(strtol).
20427
20428 2001-08-26  Jim Meyering  <meyering@lucent.com>
20429
20430         * lib/version-etc.c (version_etc_copyright_fmt): Replace literal year
20431         of copyright with `%s' so translators don't get an untranslated
20432         message in 2002.
20433         (COPYRIGHT_YEAR): Define.
20434         (version_etc): Use fprintf rather than fputs.
20435         Suggestion from Ulrich Drepper.
20436
20437         * lib/Makefile.am (libfetish_a_SOURCES): Add xstrtoimax.c.
20438
20439         * lib/strtoll.c: New file, from GNU libc.
20440         * lib/xstrtoimax.c: New file.
20441
20442         * lib/xstrtol.h: Add xstrtoimax.
20443         * lib/strtoumax.c: New file.  Simply include "strtoumax.c".
20444         * lib/strtoimax.c: New file.  Likewise, but first define
20445         STRTOUXMAX_SIGNED.
20446
20447         * lib/strtoumax.c: Factor to work both for unsigned and signed types,
20448         ...
20449         * lib/strtoxmax.c: ... then renamed to this.
20450
20451 2001-08-18  Paul Eggert  <eggert@twinsun.com>
20452
20453         * m4/inttypes.m4: Add AC_PREREQ(2.13).
20454         (jm_AC_HEADER_INTTYPES_H): Test for intmax_t, too.
20455         (jm_AC_TYPE_INTMAX_T): New macro.
20456         (jm_AC_TYPE_UINTMAX_T): Moved here from uintmax_t.m4.
20457
20458         * m4/longlong.m4 (jm_AC_TYPE_LONG_LONG): New macro.
20459
20460         * m4/longlong.m4: Renamed from ulonglong.m4.
20461         * m4/inttypes.m4: Renamed from inttypes_h.m4.
20462         * m4/uintmax_t.m4: Removed.
20463
20464 2001-08-13  Paul Eggert  <eggert@twinsun.com>
20465
20466         * lib/Makefile.am (unlocked-io.h): Do not append "_unlocked" twice.
20467         Port to Solaris 8, where 'sed' requires a space after the 'r'
20468         command, and where sh dislikes "$/".  Clean up the spacing a bit.
20469         Redirect output to $tmp just once.
20470
20471 2001-08-12  Paul Eggert  <eggert@sic.twinsun.com>
20472
20473         * lib/addext.c (<errno.h>): Include.
20474         (errno): Declare if not defined.
20475         (addext): Work correctly when pathconf returns -1 and leaves
20476         errno alone because there is no limit.  Also, work even if
20477         pathconf returns a value greater than SIZE_MAX.
20478
20479 2001-08-12  Jim Meyering  <meyering@lucent.com>
20480
20481         * m4/afs.m4, assert.m4, bison.m4, check-decl.m4, chown.m4, d-ino.m4,
20482         d-type.m4, dos.m4, error.m4, fnmatch.m4, fpending.m4, fstypename.m4,
20483         fsusage.m4, ftruncate.m4, getgroups.m4, glibc.m4, gnu-source.m4,
20484         group-member.m4, jm-glibc-io.m4, jm-macros.m4, jm-mktime.m4,
20485         jm-winsz1.m4, jm-winsz2.m4, lchown.m4, lib-check.m4, libintl.m4,
20486         link-follow.m4, ls-mntd-fs.m4, lstat.m4, malloc.m4, mbrtowc.m4,
20487         mbstate_t.m4, mbswidth.m4, memcmp.m4, nanosleep.m4, perl.m4,
20488         prereq.m4, putenv.m4, readdir.m4, realloc.m4, regex.m4, rename.m4,
20489         rmdir-errno.m4, search-libs.m4, st_dm_mode.m4, st_mtim.m4, stat.m4,
20490         strftime.m4, timespec.m4, unlink-busy.m4, uptime.m4, utimbuf.m4,
20491         utime.m4, utimes.m4, xstrtoumax.m4:
20492         Quote the first argument in each use of AC_DEFUN.
20493
20494 2001-08-12  Jim Meyering  <meyering@lucent.com>
20495
20496         * lib/xgetcwd.c (xgetcwd) [defined __GLIBC__ && __GLIBC__ >= 2]:
20497         Simply `return getcwd (NULL, 0);'.
20498         [! (defined __GLIBC__ && __GLIBC__ >= 2)]:
20499         Use 1300 as initial value for length, not PATH_MAX.
20500
20501         * lib/pathmax.h: Clean up cpp syntax.
20502
20503 2001-08-12  Jim Meyering  <meyering@lucent.com>
20504
20505         * lib/gettimeofday.c: New file.
20506         * lib/gtod.h: New file.
20507         * lib/Makefile.am (libfetish_a_SOURCES): Add gtod.h.
20508
20509 2001-08-05  Jim Meyering  <meyering@lucent.com>
20510
20511         * m4/jm-macros.m4: Require autoconf-2.52.
20512
20513 2001-08-04  Jim Meyering  <meyering@lucent.com>
20514
20515         * lib/error.h (__attribute__): Remove `|| __STRICT_ANSI__' from #if
20516         stmt, to get in sync with glibc.
20517
20518 2001-08-03  Paul Eggert  <eggert@twinsun.com>
20519
20520         The following changes are from gettext 0.10.39 as maintained by
20521         Bruno Haible.
20522
20523         * lib/mbswidth.h (MBSW_REJECT_UNPRINTABLE, MBSW_REJECT_INVALID):
20524         Renamed from MBSW_ACCEPT_UNPRINTABLE and MBSW_ACCEPT_INVALID
20525         with inverted sense.  All uses changed.
20526
20527         * lib/mbswidth.c: Don't include <limits.h>.
20528         Include <stdlib.h> and <string.h> unconditionally.
20529         (iswcntrl, mbsinit, ISCNTRL): New macros.
20530         (mbsnwidth): Use K&R style function declarations.
20531         Don't bother checking for MB_LEN_MAX == 1, since the compiler
20532         can optimize it when MB_CUR_MAX == 1.
20533         The width of control characters is zero, not 1.
20534
20535 2001-08-03  Paul Eggert  <eggert@twinsun.com>
20536
20537         The following changes are from gettext 0.10.39 as maintained by
20538         Bruno Haible, except that getline.m4 continues to use AC_LIBOBJ.
20539
20540         * m4/codeset.m4: Upgrade to serial AM1.
20541         (AM_LANGINFO_CODESET): Renamed from jm_LANGINFO_CODESET;
20542         all uses changed.  Quote first arg of AC_DEFUN.
20543         (am_cv_langinfo_codeset): Renamed from jm_cv_langinfo_codeset.
20544
20545         * m4/iconv.m4: Upgrade to serial AM2.
20546         (AM_ICONV): Renamed from jm_ICONV; all uses changed.
20547         Add --with-libconv-prefix.
20548         Quote first arg of AC_DEFUN.  Add description for ICONV_CONST.
20549         (am_cv_func_iconv): Renamed from jm_cv_func_iconv.
20550         (am_cv_lib_iconv): Renamed from jm_cv_lib_iconv.
20551         (am_cv_proto_iconv): Renamed from jm_cv_proto_iconv.
20552         * m4/jm-macros.m4 (jm_MACROS): Reflect s/jm_/AM_/ renamings.
20553
20554         * m4/c-bs-a.m4 (AC_C_BACKSLASH_A): Quote first arg of AC_DEFUN.
20555         * m4/getline.m4 (AM_FUNC_GETLINE): Likewise.
20556         * m4/glibc21.m4 (jm_GLIBC21): Likewise.
20557         * m4/inttypes_h.m4 (jm_AC_HEADER_INTTYPES_H): Likewise.
20558         * m4/isc-posix.m4 (AC_ISC_POSIX): Likewise.
20559         * m4/lcmessage.m4 (AM_LC_MESSAGES): Likewise.
20560         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): Likewise.
20561         * m4/uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Likewise.
20562         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Likewise.
20563
20564         * m4/getline.m4 (AM_FUNC_GETLINE): Don't bother checking for
20565         string.h any more.
20566
20567         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): If not found, print "no",
20568         not the default value.
20569
20570         2001-06-25  Bruno Haible  <haible@clisp.cons.org>
20571         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Don't require AM_C_PROTOTYPES.
20572         Also check for mbsinit.  Needed for SCO 3.2v5.0.2.
20573         Also include <string.h>; this is where AIX 3.2.5 declares wcwidth.
20574         Also check for iswcntrl, used for wcwidth fallback.
20575         Use AC_TRY_COMPILE to emulate AC_CHECK_DECLS, for portability
20576         to Autoconf 2.13.
20577
20578 2001-08-03  Jim Meyering  <meyering@lucent.com>
20579
20580         * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): Use `#include', not `@%:@include',
20581         as it was in the original.  Reported by Paul Eggert.
20582
20583 2001-07-16  Jim Meyering  <meyering@lucent.com>
20584
20585         * m4/gettimeofday.m4: New file.
20586         Prompted by a report from Bernhard Baehr.
20587
20588 2001-07-15  Jim Meyering  <meyering@lucent.com>
20589
20590         * m4/Makefile.am.in (Makefile.am): Remove most of the unlocked-io.h
20591         stuff. Now it's in ../Makefile.cfg.
20592
20593 2001-07-15  Jim Meyering  <meyering@lucent.com>
20594
20595         * lib/Makefile.am (EXTRA_DIST): Add unlocked-io.hin.
20596         (BUILT_SOURCES): Add unlocked-io.h.
20597         (io_functions): Define.
20598         (unlocked-io.h): New rule.
20599         (DISTCLEANFILES): Add unlocked-io.h.
20600         (all-local): Depend on unlocked-io.h, to ensure it is created.
20601
20602         * lib/unlocked-io.hin: New file
20603
20604         * lib/regex.c: Update from glibc.
20605
20606 2001-07-05  Jim Meyering  <meyering@lucent.com>
20607
20608         * lib/Makefile.am (noinst_HEADERS): Remove definition, per new automake
20609         recommendation.
20610         (libfetish_a_SOURCES): Put all .h files here instead.
20611         Remove a thus-exposed (better checks in automake) duplicate and
20612         two unnecessary .h files.
20613
20614 2001-07-04  Jim Meyering  <meyering@lucent.com>
20615
20616         * m4/Makefile.am.in (glibc-io.struct): New target.  Rework the code
20617         that generates jm-glibc-io.m4 so that it doesn't trigger any make
20618         distcheck failure.
20619
20620 2001-07-02  Jim Meyering  <meyering@lucent.com>
20621
20622         The following changes were prompted by suggestions from Bruno Haible.
20623
20624         * m4/jm-glibc-io.m4n: New file, the template from which jm-glibc-io.m4
20625         is now generated.
20626         * m4/Makefile.am.in (Makefile.am): Include jm-glibc-io.m4n in emitted
20627         definition of EXTRA_DIST.
20628         (Makefile.am): Emit the dependency, `all-local: jm-glibc-io.m4' to
20629         ensure that the generated file is created/updated whenever the list
20630         of $(unlocked_functions) is changed.
20631         (jm-glibc-io.m4): New rule.
20632         (unlocked-io.h): New rule -- currently unused.
20633
20634 2001-06-24  Jim Meyering  <meyering@lucent.com>
20635
20636         * m4/regex.m4 (jm_INCLUDED_REGEX): Use a quadrigraph to represent an
20637         unmatched right bracket, rather than kludging it with an extra,
20638         falsely-matching quote in a comment.  Patch by Akim Demaille.
20639
20640 2001-06-11  Jim Meyering  <meyering@lucent.com>
20641
20642         * lib/regex.c: Update from GNU libc.
20643
20644 2001-05-27  Jim Meyering  <meyering@lucent.com>
20645
20646         * m4/prereq.m4 (jm_PREREQ_READUTMP): Check for ut_type in struct utmpx.
20647         Check for ut_type in struct utmp.
20648
20649 2001-05-27  Jim Meyering  <meyering@lucent.com>
20650
20651         * lib/readutmp.h (UT_TYPE): Define.
20652
20653 2001-05-24  Jim Meyering  <meyering@lucent.com>
20654
20655         * lib/argmatch.c: Include "quote.h".
20656         (argmatch_invalid): Remove explicit `' quotes.  Instead, use the
20657         quote function.  Reported by Göran Uddeborg.
20658
20659 2001-05-22  Jim Meyering  <meyering@lucent.com>
20660
20661         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't use AC_LIBOBJ(strftime),
20662         now that we use the package-supplied version unconditionally.
20663         (jm_FUNC_STRFTIME): Don't replace strftime, for the same reason.
20664
20665 2001-05-21  Jim Meyering  <meyering@lucent.com>
20666
20667         * m4/regex.m4: Change a couple backticks to single quotes to avoid
20668         shell syntax errors.
20669
20670 2001-05-21  Alexandre Duret-Lutz  <duret_g@epita.fr>
20671
20672         * m4/dos.m4 (jm_AC_DOS): Check for _WIN32, __WIN32__, and __MSDOS__.
20673
20674 2001-05-20  Paul Eggert  <eggert@twinsun.com>
20675
20676         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME):
20677         Don't bother to check library strftime, since
20678         we'll be using our own my_strftime function anyway.
20679         Define my_strftime instead of strftime.
20680
20681 2001-05-20  Alexandre Duret-Lutz  <duret_g@epita.fr>
20682
20683         * lib/dirname.c (dir_name): Compute append_dot using path, not newpath
20684         which is not yet declared.
20685
20686 2001-05-15  Jim Meyering  <meyering@lucent.com>
20687
20688         * m4/regex.m4: Use proper quoting so brackets appear in the test
20689         program.
20690         Reported by, and with help from, Bruno Haible.
20691
20692 2001-05-13  Jim Meyering  <meyering@lucent.com>
20693
20694         * m4/jm-macros.m4 (major_t, minor_t): Define to unsigned int if
20695         undefined.
20696
20697 2001-05-11  Paul Eggert  <eggert@twinsun.com>
20698
20699         dirname code cleanup.  base_name now behaves more compatibly
20700         with POSIX basename when given file names that have trailing
20701         slashes, and similarly for dir_name.  Add new primitives
20702         base_len and dir_len.  Put the directory-name-related decls
20703         into dirname.h.
20704
20705         * lib/addext.c (ISSLASH, base_name): Remove; now in dirname.h.
20706         * lib/backupfile.c (base_name): Likewise.
20707         * lib/basename.c (FILESYSTEM_PREFIX_LEN, PARAMS, ISSLASH): Likewise.
20708         * lib/dirname.c (FILESYSTEM_PREFIX_LEN, ISSLASH): Likewise.
20709         * lib/makepath.c (strip_trailing_slashes): Likewise.
20710         * lib/path-concat.c (DIRECTORY_SEPARATOR, FILESYSTEM_PREFIX_LEN,
20711         ISSLASH): Likewise.
20712         * lib/rename.c (strip_trailing_slashes): Likewise.
20713         * lib/same.c (base_name): Likewise.
20714         * lib/stripslash.c (ISSLASH): Likewise.
20715
20716         * lib/addext.c: Include <dirname.h> after size_t is defined.
20717         * lib/backupfile.c: Likewise.
20718
20719         * lib/addext.c (addext): Use base_len to trim redundant
20720         trailing slashes instead of doing it ourselves.
20721         But do not trim the last slash if it is not redundant.
20722
20723         * lib/backupfile.c (find_backup_file_name,
20724         max_backup_version): Use base_len instead of rolling it ourselves.
20725         Handle the case of "" and (on DOS) "C:" correctly.
20726
20727         * lib/basename.c: Do not include <stdio.h>, <assert.h>; no longer
20728         needed. Include <string.h>, <dirname.h>.
20729         (base_name): Allow file names ending in slashes, other than names
20730         that are all slashes.  In this case, return the basename followed
20731         by the slashes.  This is more general, and can be used in places
20732         where the original base_name purposely had an assertion failure.
20733         (base_len): New function.
20734
20735         * lib/dirname.c: Include <string.h> instead of <stdlib.h>.
20736         Do not include <assert.h>; no longer needed.
20737         Include xalloc.h.
20738         (memrchr): Remove decl.
20739         (dir_name_r): Remove.
20740         (dir_len): Renamed from dirlen.  All callers changed.
20741         Rewrite in terms of base_name, for simplicity and consistency.
20742         (dir_name): Never return NULL.  All callers changed.
20743         Do not include <stdlib.h> in test program; no longer needed.
20744         return 0; is fine for test program.
20745
20746         * lib/dirname.h (DIRECTORY_SEPARATOR, ISSLASH, FILESYSTEM_PREFIX_LEN):
20747         New macros.
20748         (base_name, base_len, dir_len, strip_trailing_slashes): New decls.
20749
20750         * lib/path-concat.c (path_concat): Use base_len to compute
20751         base length, not strlen; this means we cannot rely on memcpy
20752         to null-terminate.
20753
20754         * lib/same.c (STREQ): Remove.
20755         (same_name): Handle the case where the basename ends in trailing '/'.
20756
20757         * lib/stripslash.c (strip_trailing_slashes): Return nonzero if
20758         a slash was stripped.  Do not strip the last slash after a
20759         file system prefix.
20760
20761 2001-05-11  Paul Eggert  <eggert@twinsun.com>
20762
20763         * lib/Makefile.am (libfetish_a_SOURCES):
20764         Add strftime.c, since we now compile it on all hosts.
20765
20766         * lib/strftime.c (my_strftime):
20767         Define to nstrftime if emacs, but only if my_strftime is not defined.
20768         (extra_args, extra_args_spec, extra_args_spec_iso): Rename from
20769         ut_argument, ut_argument_spec, ut_argument_spec_iso, respectively.
20770         Add one more extra argument: a nanoseconds value.
20771         All uses changed.
20772         (ns): New macro.
20773         (my_strftime function): Add %N format.
20774         (emacs_strftimeu): Renamed from emacs_strftime,
20775         with extra ut argument.
20776
20777 2001-05-09  Paul Eggert  <eggert@twinsun.com>
20778
20779         * m4/jm-macros.m4 (jm_MACROS): Do not check for fseeko; no longer used.
20780
20781 2001-04-21  Jim Meyering  <meyering@lucent.com>
20782
20783         * m4/rmdir-errno.m4: Write to a new file, so that a restrictive umask
20784         doesn't interfere.
20785
20786 2001-04-21  Alexandre Duret-Lutz  <duret_g@epita.fr>
20787
20788         * m4/ftruncate.m4: Check for chsize.
20789         Link with ftruncate.o unconditionally if ftruncate is missing.
20790         This was required when cross-compiling to i586-mingw32msvc.
20791
20792 2001-04-08  Jim Meyering  <meyering@lucent.com>
20793
20794         * lib/getdate.y (get_date): Set tm_isdst to -1 to ensure that it is
20795         recomputed; that's necessary when the offset spans a DST transition.
20796         Patch by David J. MacKenzie.  Reported by Hon-Yin Kok.
20797
20798 2001-04-02  Jim Meyering  <meyering@lucent.com>
20799
20800         * lib/regex.h, regex.c: Update from GNU libc.
20801
20802 2001-03-24  Jim Meyering  <meyering@lucent.com>
20803
20804         * m4/jm-macros.m4: Require autoconf-2.49d.
20805
20806 2001-03-20  Bruno Haible  <haible@clisp.cons.org>
20807
20808         * m4/iconv.m4 (jm_ICONV): Recommend GNU libiconv.
20809
20810 2001-03-19  Paul Eggert  <eggert@twinsun.com>
20811
20812         * lib/version-etc.c (version_etc_copyright): Update to 2001.
20813
20814 2001-03-17  Jim Meyering  <meyering@lucent.com>
20815
20816         * m4/memcmp.m4 (jm_AC_FUNC_MEMCMP): Remove my copy of AC_FUNC_MEMCMP,
20817         now that the version in autoconf is equivalent.
20818         (jm_FUNC_MEMCMP): Adjust to use AC_FUNC_MEMCMP.
20819
20820         * m4/error.m4 (jm_PREREQ_ERROR): Invoke AC_FUNC_STRERROR_R.
20821         Suggestion from Akim Demaille.
20822
20823         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_TEMPNAME.
20824         (jm_PREREQ_TEMPNAME): New function.
20825
20826 2001-03-16  Paul Eggert  <eggert@twinsun.com>
20827
20828         * lib/tempname.c (uint64_t): Define to uintmax_t if
20829         not defined, and if UINT64_MAX is not defined.
20830         Required at least for Vax Ultrix4.3, which doesn't define uint64_t.
20831         Reported by John David Anglin.
20832
20833 2001-03-15  Bruno Haible  <haible@clisp.cons.org>
20834
20835         * lib/localcharset.c (locale_charset): Allow wildcard syntax. Also
20836         resolve alias if codeset is empty.
20837         * lib/config.charset (BeOS): Use wildcard syntax.
20838
20839 2001-03-13  Jim Meyering  <meyering@lucent.com>
20840
20841         * lib/path-concat.c (path_concat)
20842         [FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]: Don't insert a backslash when
20843         concatenating e.g., `C:' and `foo'.
20844         From Bruno Haible.
20845
20846 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
20847
20848         * lib/localcharset.c (locale_charset): Don't use
20849         setlocale(LC_CTYPE,NULL). Don't return NULL.
20850         * lib/unicodeio.c (print_unicode_char): Simplify accordingly.
20851
20852 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
20853
20854         * lib/config.charset: Update for FreeBSD 4.2 and OSF/1 5.1. Add
20855         support for DOS/DJGPP.
20856
20857 2001-03-01  Paul Eggert  <eggert@twinsun.com>
20858
20859         * m4/jm-macros.m4 (jm_MACROS): Use mkstemp replacement if the system
20860         lacks mkstemp.  Compile our own tempname.c if we compile our own
20861         mkstemp.c, as mkstemp relies on tempname.
20862
20863 2001-03-01  Jim Meyering  <meyering@lucent.com>
20864
20865         * m4/dos.m4 (jm_AC_DOS): Remove extra backslashes, now that
20866         AH_VERBATIM really does output its argument verbatim.
20867
20868 2001-02-28  Paul Eggert  <eggert@twinsun.com>
20869
20870         * lib/Makefile.am (libfetish_a_SOURCES):
20871         Add dup-safer.c, fopen-safer.c.
20872         (noinst_HEADERS): Add stdio-safer.h, unistd-safer.h.
20873
20874         * lib/dup-safer.c, lib/fopen-safer.c, lib/stdio-safer.h,
20875         lib/unistd-safer.h: New files.
20876
20877 2001-02-25  Paul Eggert  <eggert@twinsun.com>
20878
20879         The mkstemp replacement is taken from glibc 2.2.2, with some
20880         portability fixes for use outside glibc, as follows:
20881
20882         * lib/tempname.c (struct_stat64): New macro.
20883         (direxists, __gen_tempname): Use it.
20884         This avoids a portability problem with Solaris 8.
20885
20886         * lib/tempname.c (<config.h>): Include if HAVE_CONFIG_H.
20887         (<stddef.h>, <stdint.h>, <string.h>):
20888         Include only if STDC_HEADERS || _LIBC.
20889         (<fcntl.h>): Include only if HAVE_FCNTL_H || _LIBC.
20890         (<unistd.h>): Include only if HAVE_UNISTD_H || _LIBC.
20891         (<sys/time.h>): Include only if HAVE_SYS_TIME_H || _LIBC.
20892         (__set_errno): Define this macro if <errno.h> doesn't.
20893         (P_tmpdir, TMP_MAX, __GT_FILE, __GT_BIGFILE, __GT_DIR, __GT_NOCREATE):
20894         Define these macros if <stdio.h> doesn't.
20895         (S_ISDIR, S_IRUSR, S_IWUSR, S_IXUSR):
20896         Define these macros if <sys/stat.h>
20897         doesn't.  Ignore <sys/stat.h> S_ISDIR if STAT_MACROS_BROKEN.
20898         (stat64, __getpid, __gettimeofday, __mkdir, __open, __open64, lxstat64,
20899         __xstat64): Define if not _LIBC.
20900         (__secure_getenv): Define if ! (HAVE___SECURE_GETENV || _LIBC).
20901         (__gen_tempname): Invoke gettimeofday only if
20902         HAVE_GETTIMEOFDAY || _LIBC;
20903         otherwise, fall back on plain "time".
20904         Use macros like S_IRUSR | S_IWUSR rather than octal values like 0600.
20905
20906         * lib/mkstemp.c (__GT_FILE): Define to zero if not defined.
20907
20908         * lib/mkstemp.c, tempname.c: New files, taken from glibc 2.2.2.
20909
20910 2001-02-18  Paul Eggert  <eggert@twinsun.com>
20911
20912         * m4/jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for sys/resource.h.
20913
20914 2001-02-17  Paul Eggert  <eggert@twinsun.com>
20915
20916         * m4/mbrtowc.m4: New file, defining jm_FUNC_MBRTOWC.
20917         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH):
20918         Use jm_FUNC_MBRTOWC, not AC_CHECK_FUNCS(mbrtowc).
20919         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Likewise.
20920
20921 2001-02-17  Paul Eggert  <eggert@twinsun.com>
20922
20923         * lib/mbswidth.c, quotearg.c (mbrtowc, mbsinit):
20924         Remove workaround macros for hosts that have mbrtowc but not
20925         mbstate_t, as we now insist on proper declarations for both
20926         before using mbrtowc.
20927
20928 2001-02-17  Jim Meyering  <meyering@lucent.com>
20929
20930         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Don't check for
20931         getmntent via AC_CHECK_FUNCS, since that would get a `no' and disrupt
20932         further attempts by AC_FUNC_GETMNTENT to check with e.g., -lgen on
20933         UnixWare 7.1.1.
20934
20935         * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): Adapt to use AC_CACHE_CHECK etc.,
20936         rather than AC_CACHE_VAL.
20937
20938 2001-02-17  Jim Meyering  <meyering@lucent.com>
20939
20940         * lib/strtoul.c: Sync from GNU libc.  Use double quotes, not <...>
20941         around included file name.
20942
20943         * lib/strnlen.c (__strnlen): Merge in a change from GNU libc.
20944
20945         * lib/strftime.c: Update from GNU libc (the only changes were to
20946         comments).
20947
20948 2001-02-17  Jim Meyering  <meyering@lucent.com>
20949
20950         * lib/regex.c: Update from libc.
20951
20952 2001-02-17  Bruno Haible  <haible@clisp.cons.org>
20953
20954         * lib/mbswidth.h (mbswidth): Also define as macro, to avoid prototype
20955         clash.
20956
20957 2001-02-16  Paul Eggert  <eggert@twinsun.com>
20958
20959         * lib/alloca.c (malloc): Undef before defining, since stdlib.h
20960         may have defined it.  Needed for Encore Umax-3.0.9.16b systems.
20961         Reported by Mark Hounschell via Paul Eggert.
20962
20963 2001-02-07  Jim Meyering  <meyering@lucent.com>
20964
20965         * m4/regex.m4 (jm_INCLUDED_REGEX): Add a test for the latest bug.
20966
20967 2001-02-05  Jim Meyering  <meyering@lucent.com>
20968
20969         * m4/jm-macros.m4: Require autoconf-2.14d (not yet released), because
20970         it includes the patch required for `large file' support with at least
20971         HP-UX's 10.20 /bin/cc.
20972
20973 2001-02-03  Jim Meyering  <meyering@lucent.com>
20974
20975         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Restore prior use of
20976         AS_IF, now that it works once again (mysteriously).
20977         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise.
20978
20979 2001-01-30  Jim Meyering  <meyering@lucent.com>
20980
20981         Don't use filenames that are 8.3-equivalent to "conftest" on DOS.
20982         * m4/chown.m4: Rename conftestchown to conftest.chown.
20983         * m4/rename.m4: s/conftestdir/conftest.d1/ and
20984         s/conftestdir2/conftest.d2/.
20985         * m4/utimes.m4: s/conftestdata/conftest.data/
20986         Inspired by Pavel Roskin's change in autoconf.
20987
20988 2001-01-30  Bruno Haible  <haible@clisp.cons.org>
20989
20990         * lib/config.charset: Update for FreeBSD 4.2.
20991
20992 2001-01-27  Jim Meyering  <meyering@lucent.com>
20993
20994         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Open-code what was
20995         a use of AS_IF.
20996         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise.
20997
20998 2001-01-26  Jim Meyering  <meyering@lucent.com>
20999
21000         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for stddef.h, now that
21001         quotearg.c includes it.
21002
21003 2001-01-26  Jim Meyering  <meyering@lucent.com>
21004
21005         * lib/quotearg.c: Include stddef.h.
21006         * lib/quote.c: Include stddef.h.
21007         Reported by Axel Kittenberger.
21008
21009         * lib/xmalloc.c [HAVE_DONE_WORKING_MALLOC_CHECK]: Enclose error-evoking
21010         line in double quotes so that it evokes a better diagnostic.
21011         [HAVE_DONE_WORKING_REALLOC_CHECK]: Likewise.
21012         Reported by Axel Kittenberger.
21013
21014 2001-01-24  Stefan Monnier  <monnier@cs.yale.edu>
21015
21016         * regex.c (mutually_exclusive_p): Don't blindly handle `charset_not'
21017         as if it was a `charset'.
21018
21019 2001-01-21  Bruno Haible  <haible@clisp.cons.org>
21020
21021         * m4/iconv.m4 (jm_ICONV): Also check whether the iconv declaration
21022         has const.
21023
21024 2001-01-21  Bruno Haible  <haible@clisp.cons.org>
21025
21026         * lib/unicodeio.c (print_unicode_char): Cast the second iconv() arg,
21027         to avoid a warning.  Add back 'const' to inptr.
21028
21029 2001-01-20  Jim Meyering  <meyering@lucent.com>
21030
21031         Be sure that headers are checked before used in code compiled
21032         for the type checks.
21033         * m4/jm-macros.m4 (jm_MACROS): Remove all header checks.
21034         In place of that, invoke jm_CHECK_ALL_TYPES.
21035         (jm_CHECK_ALL_HEADERS): New functions with the above checks.
21036         (jm_CHECK_ALL_TYPES): Require jm_CHECK_ALL_HEADERS.
21037         Alan Iwi reported a build failure on an f300-fujitsu-uxpv4.1_ES;
21038         The check for ssize_t was mistakenly run before the test for unistd.h.
21039
21040         The configure-time check for stdbool.h was missing.
21041         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_HASH.
21042         (jm_PREREQ_HASH): New function.
21043
21044 2001-01-17  Jim Meyering  <meyering@lucent.com>
21045
21046         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use AS_IF, not AS_IFELSE,
21047         for autoconf-2.49c.
21048         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Likewise.
21049
21050 2001-01-16  Jim Meyering  <meyering@lucent.com>
21051
21052         * lib/basename.c: Include <stdio.h>, needed by assert on SunOS 4.
21053         From Bruno Haible.
21054
21055 2001-01-14  Jim Meyering  <meyering@lucent.com>
21056
21057         * m4/rename.m4: Use temporary directories named conftestdir{,2}, not
21058         foo and bar.  Create conftestdir/ in the script, not in the C code.
21059         Remove directories in the script, not in the C code.
21060         Remove conftestdir{,2} before trying to create the directory.
21061         Make the entire configure script fail if the mkdir fails.
21062
21063 2001-01-14  Jim Meyering  <meyering@lucent.com>
21064
21065         * lib/rename.c: New file.  From Volker Borchert.
21066         Include stdlib.h, string.h or strings.h, and xalloc.h.
21067         Use strip_trailing_slashes rather than open-coding it.
21068
21069 2001-01-03  Paul Eggert  <eggert@twinsun.com>
21070
21071         * lib/strftime.c: Sync with glibc time/strftime.c 1.81.
21072
21073 2001-01-03  Jim Meyering  <meyering@lucent.com>
21074
21075         * lib/unicodeio.c (print_unicode_char): Remove `const' from declaration
21076         of local `inptr' to avoid warning with some system declarations of
21077         iconv.
21078
21079 2001-01-02  Volker Borchert  <bt@teknon.de>
21080
21081         * m4/rename.m4: New file.
21082         * m4/jm-macros.m4 (jm_MACROS): Require vb_FUNC_RENAME.
21083
21084 2001-01-01  Jim Meyering  <meyering@lucent.com>
21085
21086         * m4/prereq.m4 (jm_PREREQ_READUTMP): Include utmp.h (if available),
21087         even on systems with utmpx.h.  It's necessary for the declaration of
21088         utmp's ut_user member.  Reported by Andreas Jaeger.
21089
21090         * m4/check-decl.m4 (jm_CHECK_DECLS): Include grp.h and pwd.h if
21091         available. They are required for the declarations of getgrgid and
21092         getpwuid resp.
21093         (_jm_DECL_HEADERS): Check for grp.h and pwd.h.
21094         Reported by Andreas Jaeger.
21095
21096 2001-01-01  Alexandre Duret-Lutz  <duret_g@epita.fr>
21097
21098         * m4/libintl.m4 (AM_GNU_GETTEXT): Define MKINSTALLDIRS by
21099         expanding the value of $ac_aux_dir, as in AM_MISSING_HAS_RUN,
21100         so `make install' also works in VPATH builds.
21101
21102 2000-12-31  Alexandre Duret-Lutz  <duret_g@epita.fr>
21103
21104         * m4/libintl.m4 (AM_WITH_NLS): When using AC_CONFIG_AUX_DIR,
21105         prepend $(top_srcdir) to the value of MKINSTALLDIRS so that it
21106         can be used in subdirectories.
21107
21108 2000-12-29  Paul Eggert  <eggert@twinsun.com>
21109
21110         * lib/modechange.c: Do not assume that mode_t uses the
21111         traditional octal encoding.  E.g. "chmod 1 FOO" should set
21112         the other-execute bit of FOO even if S_IXOTH != 1.
21113
21114         (SUID, SGID, SVTX, RUSR, WUSR, XUSR, RGRP, WGRP, XGRP, ROTH,
21115         WOTH, XOTH, ALLM): New macros.
21116         (S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR,
21117          S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH):
21118         Use them.
21119         (S_ISGID): Fix typo; it was defaulting to the same value as S_ISUID.
21120         (S_IRWXU, S_IRWXG, S_IRWXO): Specify defaults in terms of the above.
21121         (mode_compile):
21122         No need to use uintmax_t; unsigned long is long enough.
21123         Don't bother to get suffix since we don't use it.
21124
21125 2000-12-26  Jim Meyering  <meyering@lucent.com>
21126
21127         * m4/dos.m4 (jm_AC_DOS): Rewrite (though it's still a stub) to work
21128         better with autoheader.
21129
21130 2000-12-24  Jim Meyering  <meyering@lucent.com>
21131
21132         * lib/hash.c (is_prime): Return explicit boolean values.
21133         (hash_get_first): Return NULL to appease Irix5.6's 89.
21134         Reported by Nelson Beebe.
21135
21136 2000-12-19  Bruno Haible  <haible@clisp.cons.org>
21137
21138         * lib/localcharset.c (locale_charset): Add support for Win32.
21139
21140 2000-12-18  Paul Eggert  <eggert@twinsun.com>
21141
21142         * lib/physmem.h, physmem.c: New files.
21143
21144         * lib/Makefile.am (libfetish_a_SOURCES): Add physmem.c.
21145         (noinst_HEADERS): Add physmem.h.
21146
21147         * lib/xstrtol.c (__xstrtol): Add undocumented suffixes 'g' and
21148         't' for compatibility with Solaris 8 sort.
21149
21150 2000-12-18  Bruno Haible  <haible@clisp.cons.org>
21151
21152         * lib/config.charset: Add support for BeOS.
21153
21154 2000-12-17  Jim Meyering  <meyering@lucent.com>
21155
21156         * m4/dos.m4 (jm_AC_DOS): New file and macro.
21157         * m4/jm-macros.m4 (jm_MACROS): Require jm_AC_DOS.
21158
21159 2000-12-16  Jim Meyering  <meyering@lucent.com>
21160
21161         This bug had a serious impact on chown: `chown N:M FILE' (for integer
21162         N and M) would have treated it like `chown N:N FILE'.
21163
21164         * lib/userspec.c (parse_user_spec): Fix typo: s/u/g/.
21165
21166 2000-12-16  Jim Meyering  <meyering@lucent.com>
21167
21168         * lib/getusershell.c [!SHELLS_FILE && __DJGPP__]: Define
21169         SHELLS_FILE to a file name that's useful on djgpp systems.
21170         Include stdlib.h.
21171         (ADDITIONAL_DEFAULT_SHELLS): Define.
21172         (default_shells): Prepend ADDITIONAL_DEFAULT_SHELLS.
21173         Based mostly on a patch from Prashant TR.
21174
21175 2000-12-16  Bruno Haible  <haible@clisp.cons.org>
21176
21177         * lib/config.charset: Add ISO-8859-3, BIG5HKSCS, GB18030, JOHAB,
21178         VISCII, CP874, CP949, CP950, CP1250, CP1253, CP1254, CP1255, CP1256,
21179         CP1257 to the list of canonical encodings. Rename EUC-CN to GB2312.
21180
21181 2000-12-08  Andreas Schwab  <schwab@suse.de>
21182
21183         * lib/mbswidth.c (mbsnwidth): Don't loop endlessly when called with an
21184         invalid mulitbyte sequence and with the MBSW_ACCEPT_INVALID flag set.
21185
21186 2000-12-07  Jim Meyering  <meyering@lucent.com>
21187
21188         * lib/stripslash.c (ISSLASH): Define.
21189         (strip_trailing_slashes): Use ISSLASH rather than comparing against
21190         `/'.
21191         From Prashant TR.
21192
21193         * lib/dirname.c (FILESYSTEM_PREFIX_LEN): Define.
21194         (dir_name_r): Declare this function as static.
21195         [BACKSLASH_IS_PATH_SEPARATOR]: Fix a bug that'd
21196         manifest itself on a name containing a mix of slashes and
21197         backslashes.
21198         Make this function work with names starting with a DOS-style
21199         drive letter and colon prefix.
21200         (dir_name): Append `.' if necessary.
21201         Based mostly on patches from Prashant TR and Eli Zaretskii.
21202
21203         * lib/dirname.h (dir_name_r): Remove prototype.
21204
21205 2000-12-06  Paul Eggert  <eggert@twinsun.com>
21206
21207         * m4/off_t-format.m4: Remove this file.
21208         * m4/jm-macros.m4 (jm_MACROS): Remove jm_SYS_OFF_T_PRINTF_FORMAT.
21209
21210 2000-12-06  Jim Meyering  <meyering@lucent.com>
21211
21212         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): If we need the
21213         replacement strtoull, we may well need the replacement strtoul, too.
21214         Check for declarations of strtoul and strtoull.
21215         Check for strtol.  Mainly as a cue to cause automake to include
21216         strtol.c -- that file is included by each of strtoul.c and strtoull.c.
21217         Check for limits.h -- strtol.c needs it.
21218
21219 2000-12-05  Jim Meyering  <meyering@lucent.com>
21220
21221         * lib/dirname.c (dir_name_r): Add `const' in a few local declarations.
21222
21223 2000-12-04  Jim Meyering  <meyering@lucent.com>
21224
21225         * lib/path-concat.c: [!HAVE_DECL_MALLOC]: Declare malloc.
21226         Also include memory.h, stdlib.h, unistd.h if appropriate.
21227         Reported by Andreas Jaeger (conflicting declaration of malloc).
21228
21229 2000-12-02  Jim Meyering  <meyering@lucent.com>
21230
21231         * m4/off_t-format.m4 (OFF_T_PRINTF_FORMAT_STRING): New file/macro.
21232         * m4/jm-macros.m4 (jm_MACROS): require it.
21233
21234 2000-12-02  Jim Meyering  <meyering@lucent.com>
21235
21236         * lib/closeout.h: Make idempotent, to avoid some obscure warnings.
21237
21238 2000-12-01  Paul Eggert  <eggert@twinsun.com>
21239
21240         * lib/memrchr.c: Include <config.h> before any system include file.
21241
21242 2000-11-30  Jim Meyering  <meyering@lucent.com>
21243
21244         * m4/jm-macros.m4 (jm_MACROS): Check for stdint.h.
21245
21246 2000-11-30  Jim Meyering  <meyering@lucent.com>
21247
21248         * m4/getloadavg.m4: s/ifval/m4_ifval/ to accommodate new autoconf.
21249
21250 2000-11-29  Paul Eggert  <eggert@twinsun.com>
21251
21252         * lib/dirname.c (dir_name_r): Fix typo: int -> size_t.
21253
21254 2000-11-26  Jim Meyering  <meyering@lucent.com>
21255
21256         * lib/memcoll.c: Include sys/types.h.  From Werner Almesberger.
21257
21258 2000-11-22  Paul Eggert  <eggert@twinsun.com>
21259
21260         * lib/strftime.c (my_strftime): Do not invoke mbrlen with a
21261         size of (size_t) -1; it's not portable.
21262
21263 2000-11-17  Jim Meyering  <meyering@lucent.com>
21264
21265         * lib/strstr.c: Update from GNU libc.
21266
21267 2000-11-17  Akim Demaille  <akim@epita.fr>
21268
21269         * lib/obstack.h: Formatting changes.
21270         (obstack_grow, obstack_grow0): Don't cast WHERE at all: that would
21271         prevent type checking.
21272         (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
21273         cast the value to (void *): assigning a `foo *' to a `void *'
21274         variable is valid.
21275         (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
21276
21277 2000-11-16  Jim Meyering  <meyering@lucent.com>
21278
21279         * lib/strverscmp.c: Incorporate weak-alias-related changes from glibc.
21280
21281 2000-11-11  Jim Meyering  <meyering@lucent.com>
21282
21283         * lib/error.c: Add a couple #includes, merging from GNU libc version.
21284
21285 2000-11-10  Jim Meyering  <meyering@lucent.com>
21286
21287         * lib/obstack.h: Update from GNU libc.
21288         * lib/obstack.c: Likewise.
21289
21290 2000-11-08  Bruno Haible  <haible@clisp.cons.org>
21291
21292         * m4/jm-macros.m4 (jm_MACROS): Add test for wcrtomb.
21293
21294 2000-11-06  Paul Eggert  <eggert@twinsun.com>
21295
21296         * lib/getusershell.c (setusershell): Use rewind rather than
21297         fseek/fseeko, to avoid configuration hassles with fseeko.
21298         Don't bother opening SHELLS_FILE if shellstream is NULL;
21299         it's not necessary.
21300
21301 2000-11-05  Jim Meyering  <meyering@lucent.com>
21302
21303         * lib/makepath.h (make_dir): Declare.
21304         * lib/makepath.c (make_dir): Remove `static' attribute.
21305         Tweak a comment.
21306
21307 2000-11-04  Jim Meyering  <meyering@lucent.com>
21308
21309         * m4/regex.m4: Use the `m4_' prefix on `syscmd' and `m4_sysval'.
21310
21311 2000-11-04  Alexandre Duret-Lutz  <duret_g@epita.fr>
21312
21313         * lib/hash.c (hash_get_next): Fix a thinko:  when ENTRY is the
21314         last one in a bucket, advance to the next bucket.
21315
21316 2000-11-02  Vesselin Atanasov  <vesselin@bgnet.bg>
21317
21318         * lib/fnmatch.c: Do not comment out all the code if we are using
21319         the GNU C library, because in some cases we are replacing buggy
21320         code in the GNU C library itself.
21321
21322 2000-10-30  Stefan Monnier  <monnier@cs.yale.edu>
21323
21324         * regex.c (re_iswctype, re_wctype_to_bit): Fix braino.
21325         (regex_compile): Catch bogus \(\1\).
21326
21327 2000-10-30  Paul Eggert  <eggert@twinsun.com>
21328
21329         * lib/fnmatch.c (FOLD): Do not assume that characters are unsigned.
21330         (fnmatch): Fix some FNM_FILE_NAME and FNM_LEADING_DIR bugs,
21331         e.g. fnmatch("d*/*1", "d/s/1", FNM_FILE_NAME) incorrectly yielded zero.
21332
21333 2000-10-30  Paul Eggert  <eggert@twinsun.com>
21334
21335         * lib/error.h, getline.h, modechange.h:
21336         Remove "2000" from Copyright line, as the file hasn't been
21337         changed this year other than in the copyright notice.
21338
21339         * lib/xalloc.h: Add "2000" to Copyright line, as this file
21340         was changed this year.
21341
21342 2000-10-29  Jim Meyering  <meyering@lucent.com>
21343
21344         * m4/fsusage.m4: s/AC_SHELL_IFELSE/AS_IFELSE/ to match autoconf
21345         renaming.
21346         * m4/ls-mntd-fs.m4: Likewise
21347
21348 2000-10-29  Jim Meyering  <meyering@lucent.com>
21349
21350         * lib/xstat.in: Fix grammar in comment.
21351
21352 2000-10-29  Greg Louis  <glouis@dynamicro.on.ca>
21353
21354         * lib/regex.h (__restrict_arr): Move definition out of #ifndef block.
21355         Required because egcs-2.91.66 (aka 1.1.2) defines __restrict, but
21356         doesn't define __restrict_arr.
21357
21358 2000-10-28  Jim Meyering  <meyering@lucent.com>
21359
21360         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_MEMCHR.
21361         (jm_PREREQ_MEMCHR): New function.
21362
21363 2000-10-28  Jim Meyering  <meyering@lucent.com>
21364
21365         * lib/memchr.c: Update from libc.
21366         Adjust for portability:
21367         [HAVE_STDLIB_H]: Include stdlib.h.
21368         [HAVE_BP_SYM_H || _LIBC]: Guard inclusion of bp-sym.h.
21369         Undef __memchr, too.
21370         [!weak_alias]: Define __memchr to memchr.
21371
21372         * lib/regex.c: Update from libc.
21373         * lib/regex.h: Likewise.
21374         * lib/getopt1.c: Likewise.
21375         * lib/memcmp.c: Likewise.
21376
21377         * lib/getusershell.c (setusershell) [HAVE_FSEEKO]: Use fseeko.
21378         Avoid using fseek, when possible -- it's broken by design.
21379         Patch by Ulrich Drepper.
21380
21381 2000-10-27  Stefan Monnier  <monnier@cs.yale.edu>
21382
21383         * regex.c (POP_FAILURE_REG_OR_COUNT, re_match_2_internal)
21384         (re_match_2_internal, re_match_2_internal, re_match_2_internal):
21385         Giving in to popular pressure to shut up the compiler with casts.
21386
21387 2000-10-26  Jim Meyering  <meyering@lucent.com>
21388
21389         * lib/strftime.c: Update from libc.
21390
21391 2000-10-25  Stefan Monnier  <monnier@cs.yale.edu>
21392
21393         * regex.c: More `unsigned char' -> `re_char' changes.
21394         Also change several `int' into `re_wchar_t'.
21395         (PATTERN_STACK_EMPTY, PUSH_PATTERN_OP, POP_PATTERN_OP): Remove.
21396         (PUSH_FAILURE_POINTER): Don't cast any more.
21397         (POP_FAILURE_REG_OR_COUNT): Remove the cast that strips `const'.
21398         We want GCC to complain, since this piece of code makes
21399         re_match non-reentrant, which *should* be fixed.
21400         (GET_BUFFER_SPACE): Use size_t rather than unsigned long.
21401         (EXTEND_BUFFER): Use RETALLOC.
21402         (SET_LIST_BIT): Don't cast.
21403         (re_wchar_t): New type.
21404         (re_iswctype, re_wctype_to_bit): Make it crystal clear to GCC
21405         that those two functions will always properly return.
21406         (IMMEDIATE_QUIT_CHECK): Cast to void.
21407         (analyse_first): Use recursion rather than an explicit stack.
21408         (re_compile_fastmap): Can't fail anymore.
21409         (re_search_2): Don't check re_compile_fastmap for failure.
21410         (PUSH_NUMBER): Renamed from PUSH_FAILURE_COUNT.
21411         Now also sets the new value (passed in a new argument).
21412         (re_match_2_internal): Use it.
21413         Also, use a new var `reg' of type size_t when looping through regs
21414         rather than reuse the inappropriate `mcnt'.
21415
21416 2000-10-25  Jim Meyering  <meyering@lucent.com>
21417
21418         * lib/obstack.c: Update from libc.
21419
21420 2000-10-24  Kenichi Handa  <handa@etl.go.jp>
21421
21422         * regex.c (regex_compile): Change the way of handling a range from
21423         a char less than 256 to a char not less than 256.
21424
21425 2000-10-24  Andrew Innes  <andrewi@gnu.org>
21426
21427         * regex.c (IMMEDIATE_QUIT_CHECK): New macro, which does QUIT on
21428         NT-Emacs only.
21429         (re_match_2_internal): Use IMMEDIATE_QUIT_CHECK instead of QUIT,
21430         so that re_search functions only quit when callers expect them to.
21431
21432 2000-10-23  Jim Meyering  <meyering@lucent.com>
21433
21434         * lib/hard-locale.c (hard_locale): Revert last change -- it was simply
21435         wrong.  That set_locale call must not have any side effects.
21436         From Paul Eggert.
21437
21438 2000-10-22  Jim Meyering  <meyering@lucent.com>
21439
21440         * lib/md5.c (md5_process_block) [OP]: Use `rol', not CYCLIC.
21441         [CYCLIC]: Remove now-unused definition.
21442
21443         * lib/save-cwd.c (O_DIRECTORY): Define, if needed.
21444         (save_cwd) [HAVE_FCHDIR]: Use O_DIRECTORY when opening ".".
21445         Suggestion from Ulrich Drepper.
21446
21447 2000-10-21  Jim Meyering  <meyering@lucent.com>
21448
21449         * m4/check-decl.m4 (jm_CHECK_DECLS): Also check for memrchr.
21450         * m4/prereq.m4 (jm_PREREQ_DIRNAME): New macro.
21451         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memrchr.
21452
21453 2000-10-21  Jim Meyering  <meyering@lucent.com>
21454
21455         * lib/dirname.c (memrchr): Declare if necessary.
21456         (dir_name): Remove the restriction that there be no
21457         trailing slashes.  Now, this code skips past them, effectively
21458         ignoring them.
21459         [TEST_DIRNAME] (main): New unit tests.
21460
21461         * lib/memrchr.c: New file from GNU libc.
21462         Undef __memrchr, too.
21463         [!weak_alias]: Define __memrchr to memrchr.
21464         Guard weak_alias use with `#ifdef weak_alias'.
21465
21466 2000-10-21  Jim Meyering  <meyering@lucent.com>
21467
21468         * lib/dirname.c (dir_name_r): New function, factored out of dir_name.
21469         (dir_name): Use dir_name_r.
21470         * lib/dirname.h (dir_name_r): Declare it.
21471
21472 2000-10-17  Jim Meyering  <meyering@lucent.com>
21473
21474         * lib/quote.h (PARAMS): Define and use.
21475         Reported by Akim Demaille.
21476
21477         * lib/getopt.c: Update from libc.
21478
21479 2000-10-16  Jim Meyering  <meyering@lucent.com>
21480
21481         * lib/hard-locale.c (hard_locale): Use "", not 0 as 2nd arg to
21482         setlocale.
21483         From Jan Fedak.
21484
21485 2000-10-15  Stefan Monnier  <monnier@cs.yale.edu>
21486
21487         * regex.c (WIDE_CHAR_SUPPORT): Define if _LIBC as well.
21488
21489 2000-09-25  Jim Meyering  <meyering@lucent.com>
21490
21491         * lib/md5.h (rol): Define (from GnuPG).
21492
21493         * lib/sha.c: Give credit (GnuPG) where due.
21494         (M): Use rol rather than open-coding it.
21495         Add a FIXME comment.
21496
21497 2000-09-21  Jim Meyering  <meyering@lucent.com>
21498
21499         * lib/userspec.c (parse_user_spec): Remove debugging printf I'd added.
21500         Reported by Michael Stone.
21501
21502 2000-09-20  Jim Meyering  <meyering@lucent.com>
21503
21504         * lib/Makefile.am (libfetish_a_SOURCES): Add sha.c.
21505         (noinst_HEADERS): Add sha.h.
21506         Based on code from Scott G. Miller and from GnuPG.
21507
21508 2000-09-18  Jim Meyering  <meyering@lucent.com>
21509
21510         * m4/getloadavg.m4 (AC_FUNC_GETLOADAVG): Restore the initial value of
21511         LIBS. Otherwise, everyone ends up linking with -lelf for some
21512         configurations.
21513         Reported by Mike Stone.
21514
21515 2000-09-15  Jim Meyering  <meyering@lucent.com>
21516
21517         * lib/regex.c: Update from libc.
21518
21519 2000-09-10  Jim Meyering  <meyering@lucent.com>
21520
21521         * lib/getopt.c (_getopt_internal): Update from glibc.
21522
21523 2000-09-09  Jim Meyering  <meyering@lucent.com>
21524
21525         * lib/quotearg.c: Rename ISASCII to IN_CTYPE_DOMAIN, so people don't
21526         think it should be used as a general replacement for isascii.
21527         * lib/fnmatch.c: Likewise.
21528         * lib/mbswidth.c: Likewise
21529         * lib/regex.c: Likewise.
21530
21531         Don't use atoi.
21532         * lib/userspec.c: Include sys/param.h and limits.h.
21533         Include xstrtol.h.
21534         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
21535         (UID_T_MAX, GID_T_MAX, MAXUID, MAXGID): Define.
21536         (parse_user_spec): Use xstrtoul, not atoi when converting numeric
21537         UID, GID.  Check range.
21538
21539 2000-09-06  Jim Meyering  <meyering@lucent.com>
21540
21541         * lib/getopt.c (_getopt_internal): Update from glibc.
21542
21543 2000-08-30  Jim Meyering  <meyering@lucent.com>
21544
21545         * lib/strftime.c: Merge in changes from GNU libc.
21546
21547 2000-08-26  Jim Meyering  <meyering@lucent.com>
21548
21549         * m4/jm-macros.m4: Use jm_FUNC_FPENDING.
21550         * m4/fpending.m4: New file.
21551
21552 2000-08-26  Jim Meyering  <meyering@lucent.com>
21553
21554         * lib/closeout.c: Include "__fpending.h".
21555         (close_stdout_status): Return right away if there's nothing to flush.
21556
21557         * lib/Makefile.am (noinst_HEADERS): Add __fpending.h.
21558         * lib/__fpending.c: New file.
21559         * lib/__fpending.h: New file.
21560
21561 2000-08-20  Jim Meyering  <meyering@lucent.com>
21562
21563         * m4/check-decl.m4: Include utmp.h `#if HAVE_UTMP_H', rather than
21564         `#if !HAVE_UTMPX_H'.  The latter would lose on systems with neither
21565         utmp.h nor utmpx.h.  Reported by Eli Zaretskii.
21566
21567 2000-08-11  J. David Anglin  <dave@hiauly1.hia.nrc.ca>
21568
21569         Improve fileutils installation on systems where running
21570         programs (like install) can't be unlinked.
21571         * m4/unlink-busy.m4 (jm_FUNC_UNLINK_BUSY_TEXT): New file/macro.
21572         * m4/jm-macros.m4: Use jm_FUNC_UNLINK_BUSY_TEXT.
21573
21574 2000-08-07  Paul Eggert  <eggert@twinsun.com>
21575
21576         Standardize on "memory exhausted" instead of "Memory exhausted"
21577         or "virtual memory exhausted".
21578         * lib/obstack.c (print_and_abort): Use "memory exhausted", not
21579         "virtual memory exhausted".
21580         * lib/same.c (same_name): Invoke xalloc_die instead of printing
21581         our own message.
21582         * lib/userspec.c (parse_user_spec): Likewise.
21583         * lib/bumpalloc.h: comment fix
21584         * lib/same.c, userspec.c: Include xalloc.h.
21585
21586         * lib/xalloc.h (xalloc_msg_memory_exhausted): Now char const[],
21587         not char *const and pointing to a constant array.
21588         * lib/xmalloc.c (xalloc_msg_memory_exhausted): Likewise.
21589         (xrealloc): Comment fix.
21590
21591         * lib/userspec.c (parse_user_spec):
21592         Don't translate a message until just before returning,
21593         to avoid unnecessary translation.
21594
21595 2000-08-07  Jim Meyering  <meyering@lucent.com>
21596
21597         * lib/addext.c, argmatch.c, argmatch.h, backupfile.h, bumpalloc.h,
21598         chown.c, diacrit.h, dirname.h, dup2.c, exclude.h, fileblocks.c,
21599         fnmatch.c, fnmatch.h, fsusage.c, fsusage.h, getdate.h,
21600         getgroups.c, gethostname.c, getopt.h, group-member.c,
21601         hard-locale.c, hash.h, isdir.c, lchown.c, linebuffer.c,
21602         linebuffer.h, long-options.h, malloc.c, md5.c, md5.h, memchr.c,
21603         memcmp.c, memcoll.c, memset.c, mktime.c, modechange.h, obstack.h,
21604         pathmax.h, realloc.c, rmdir.c, safe-read.c, save-cwd.c, stime.c,
21605         stpcpy.c, strcasecmp.c, strcspn.c, strdup.c, stripslash.c,
21606         strstr.c, strtod.c, strtol.c, strtoul.c, strtoull.c, strtoumax.c,
21607         utime.c, version-etc.h, xalloc.h, xstrdup.c, xstrtoumax.c,
21608         yesno.c: Back out Copyright date changes for each file with no change
21609         this year.  This eases coordination with other programs using the same
21610         source code modules.  From Paul Eggert.
21611
21612 2000-08-06  Paul Eggert  <eggert@twinsun.com>
21613
21614         * m4/mbstate_t.m4 (AC_MBSTATE_T): Define mbstate_t to be int,
21615         not char, for compatibility with glibc 2.1.3 strftime.c.
21616
21617 2000-08-03  Greg McGary  <greg@mcgary.org>
21618
21619         * lib/regex.c (SET_HIGH_BOUND, MOVE_BUFFER_POINTER,
21620         ELSE_EXTEND_BUFFER_HIGH_BOUND): New macros.
21621         (EXTEND_BUFFER): Use them.
21622
21623 2000-08-01  Jim Meyering  <meyering@lucent.com>
21624
21625         * lib/dirname.c (ISSLASH): Define.
21626         (BACKSLASH_IS_PATH_SEPARATOR): Define.
21627         (dir_name) [BACKSLASH_IS_PATH_SEPARATOR]: Handle the case in which
21628         both `\' and `/' may be use as path separators.
21629         Based on a patch from Prashant TR.
21630
21631 2000-07-31  Paul Eggert  <eggert@twinsun.com>
21632
21633         * lib/quotearg.c (quotearg_n_options): Don't make the initial
21634         slot vector a constant, since it might get modified.
21635
21636 2000-07-31  Jim Meyering  <meyering@lucent.com>
21637
21638         * lib/xmalloc.c: Use `virtual memory exhausted', not
21639         `Memory exhausted'.
21640         * lib/obstack.c (print_and_abort): Likewise.
21641
21642 2000-07-30  Paul Eggert  <eggert@twinsun.com>
21643
21644         * lib/quotearg.c (quotearg_n_options): Preallocate a slot 0
21645         buffer, so that the caller can always quote one small
21646         component of a "memory exhausted" message in slot 0.
21647         From a suggestion by Jim Meyering.
21648
21649 2000-07-30  Jim Meyering  <meyering@lucent.com>
21650
21651         * lib/makepath.c (make_path): Quote the other instance, too.
21652
21653         * lib/quotearg.c (N_STATIC_SLOTVECS): Define.
21654         (STATIC_BUF_SIZE): Define.
21655         (quotearg_n_options): Use only statically allocated storage when
21656         N < N_STATIC_SLOTVECS and the length of the quoted result is smaller
21657         than STATIC_BUF_SIZE.
21658
21659 2000-07-29  Jim Meyering  <meyering@lucent.com>
21660
21661         * lib/diacrit.c (diacrit_diac): Use __MSDOS__ in favor of MSDOS.
21662         * lib/dirname.c (dir_name): Likewise.
21663
21664         * lib/basename.c (base_name): Use ISSLASH rather than comparing against
21665         `/'.
21666
21667         * lib/dirname.c (dir_name) [MSDOS]: Declare `lim' to be const.
21668         (dir_name): Assert that there are no trailing slashes.
21669
21670 2000-07-29  Bruno Haible  <haible@clisp.cons.org>
21671
21672         * lib/mbswidth.h (mbswidth): Add a flags argument.
21673         (mbswidth): New declaration.
21674         (MBSW_ACCEPT_INVALID, MBSW_ACCEPT_UNPRINTABLE): New macros.
21675         * lib/mbswidth.c (mbswidth): Add a flags argument.
21676         (mbsnwidth): New function.
21677
21678 2000-07-24  Jim Meyering  <meyering@lucent.com>
21679
21680         * lib/mbswidth.c: Remove useless #else.  From Bruno Haible.
21681
21682 2000-07-23  Paul Eggert  <eggert@twinsun.com>
21683
21684         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Check for wcwidth declaration.
21685
21686 2000-07-23  Paul Eggert  <eggert@twinsun.com>
21687
21688         * lib/quotearg.c: Streamline by invoking multibyte code only if needed.
21689         <wchar.h>: Include only if HAVE_MBRTOWC && 1 < MB_LEN_MAX.
21690         (MB_CUR_MAX): Redefine to 1 if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX).
21691         (quotearg_buffer_restyled): If a unibyte locale, don't bother to
21692         invoke multibyte primitives.
21693
21694 2000-07-23  Paul Eggert  <eggert@twinsun.com>
21695
21696         * lib/quotearg.c:
21697         Include <wchar.h> even if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX),
21698         so that mbstate_t is always defined.
21699
21700         Do not inspect MB_LEN_MAX, since it's incorrectly defined to
21701         be 1 in at least one GCC installation, and this configuration
21702         error is likely to be common.  Ignoring MB_LEN_MAX hurts
21703         performance on hosts that have mbrtowc but have only unibyte
21704         locales, but I assume these hosts are rare.
21705
21706 2000-07-23  Paul Eggert  <eggert@twinsun.com>
21707
21708         * lib/mbswidth.c (_XOPEN_SOURCE):
21709         Don't define; this causes problems on Solaris 7.
21710         (wcwidth) [!HAVE_DECL_WCWIDTH]: Declare.
21711
21712 2000-07-23  Jim Meyering  <meyering@lucent.com>
21713
21714         * m4/check-decl.m4 (jm_CHECK_DECLS): Check for declarations of these,
21715         too: getgrgid, getpwuid, getuid.
21716
21717 2000-07-23  Jim Meyering  <meyering@lucent.com>
21718
21719         * lib/basename.c (base_name): Add an assertion.
21720
21721 2000-07-23  Bruno Haible  <haible@clisp.cons.org>
21722
21723         * lib/quotearg.c: When the system forces us to redefine mbstate_t,
21724         shadow its mbsinit function.
21725
21726 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
21727
21728         * lib/mbswidth.h: New file.
21729         * lib/mbswidth.c: New file.
21730         * lib/Makefile.am (libfetish_a_SOURCES): Add mbswidth.c.
21731         (noinst_HEADERS): Add mbswidth.h.
21732
21733 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
21734
21735         * lib/config.charset: Add support for FreeBSD. Improve support for
21736         HP-UX and IRIX 6.
21737
21738 2000-07-16  Bruno Haible  <haible@clisp.cons.org>
21739
21740         * m4/mbswidth.m4: New file.
21741         * m4/prereq.m4 (jm_PREREQ): Call jm_PREREQ_MBSWIDTH.
21742
21743 2000-07-15  Jim Meyering  <meyering@lucent.com>
21744
21745         * lib/makepath.c: Include quote.h.
21746         (make_path): Convert "`%s'" in format strings to "%s", and wrap each
21747         corresponding argument in a `quote (...)' call.
21748         Give better diagnostics.
21749
21750         * lib/Makefile.am (libfetish_a_SOURCES): Add quote.c.
21751         (noinst_HEADERS): Add quote.h.
21752
21753         * lib/quote.c (quote, quote_n): New file.  Two functions taken verbatim
21754         from tar's src/misc.c.
21755         * lib/quote.h: New file.  Prototypes for same.
21756
21757 2000-07-14  Paul Eggert  <eggert@twinsun.com>
21758
21759         From a suggestion by Bruno Haible.
21760         * lib/quotearg.c (mbrtowc): Do not use HAVE_WCHAR_H in the definition.
21761         Use defined mbstate_t, not HAVE_MBSTATE_T_OBJECT,
21762         to decide whether to define the BeOS workaround macro;
21763         this adjusts to the change to AC_MBSTATE_T.
21764
21765 2000-07-14  Jim Meyering  <meyering@lucent.com>
21766
21767         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Require
21768         jm_AC_TYPE_UINTMAX_T.
21769
21770 2000-07-13  Paul Eggert  <eggert@twinsun.com>
21771
21772         * lib/quotearg.h (enum quoting style): New enum clocale_quoting_style.
21773
21774         * lib/quotearg.c (quoting_style_args, quoting_style_vals,
21775         quotearg_buffer_restyled): Add support for
21776         clocale_quoting_style.  Undo previous change to
21777         locale_quoting_style behavior, and undo the "{LEFT QUOTATION MARK}"
21778         and "{RIGHT QUOTATION MARK}" msgids.
21779
21780 2000-07-10  Paul Eggert  <eggert@twinsun.com>
21781
21782         From a suggestion by Bruno Haible.
21783         * m4/mbstate_t.m4 (AC_MBSTATE_T):
21784         Renamed from AC_MBSTATE_T_OBJECT.  All uses changed.
21785         Change from a two-part test, which defines both HAVE_MBSTATE_T_OBJECT
21786         and mbstate_t, to a single-part test that simply defines mbstate_t.
21787         * m4/prereq.m4 (jm_PREREQ_QUOTEARG):
21788         s/AC_MBSTATE_T_OBJECT/AC_MBSTATE_T/.
21789
21790 2000-07-10  Jim Meyering  <meyering@lucent.com>
21791
21792         * m4/strerror_r.m4: Mirror the correction made in autoconf.
21793
21794         * m4/gnu-source.m4: Output to confdefs.h directly.
21795         Suggestion from Akim Demaille.
21796
21797 2000-07-09  Paul Eggert  <eggert@twinsun.com>
21798
21799         The old behavior of quoting `like this' doesn't look good with
21800         newer, ISO-style fonts.  See:
21801         http://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html
21802
21803         Instead, quote "like this" by default.  Let the translator
21804         tailor the locale-specific quoting behavior by providing
21805         translations for {LEFT QUOTATION MARK} and {RIGHT QUOTATION MARK}.
21806
21807         * lib/quotearg.c (N_): New macro.
21808         (gettext_default): New function.
21809         (quotearg_buffer_restyled): Use
21810         gettext_default ("{LEFT QUOTATION MARK}", "\"") for left quote, and
21811         gettext_default ("{RIGHT QUOTATION MARK}", "\"") for right quote.
21812
21813 2000-07-09  Jim Meyering  <meyering@lucent.com>
21814
21815         * m4/jm-macros.m4 (jm_MACROS): Add a test to see if -lm is required
21816         to link seq.  If so, set SEQ_LIBM to -lm.  From Bruno Haible.
21817
21818         * m4/gnu-source.m4 (AC__GNU_SOURCE): New file/macro.
21819         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require it.
21820
21821 2000-07-09  Jim Meyering  <meyering@lucent.com>
21822
21823         * lib/Most files: Update copyright dates to include 2000.
21824
21825 2000-07-08  Jim Meyering  <meyering@lucent.com>
21826
21827         * lib/xgethostname.c (ENAMETOOLONG): Define to an unlikely value
21828         if not defined.
21829         (xgethostname): Remove now-unnecessary #ifdef.
21830         Move declaration of `err' into loop where it's used.
21831
21832 2000-07-05  Paul Eggert  <eggert@twinsun.com>
21833         and Bruno Haible  <haible@clisp.cons.org>
21834
21835         * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Test for mbstate_t
21836         only if the test for an object-type mbstate_t fails.  This
21837         prevents us from mistakenly reporting that mbstate_t is a
21838         system object type after we "#define mbstate_t int" to work
21839         around its lack.
21840
21841 2000-07-05  Paul Eggert  <eggert@twinsun.com>
21842         and Bruno Haible  <haible@clisp.cons.org>
21843
21844         * lib/quotearg.c (mbrtowc): Declare returned type, since BeOS doesn't.
21845
21846 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
21847
21848         * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Pass a reasonably large buffer
21849         to strerror_r.
21850         Include <ctype.h> for use of isalpha.
21851
21852 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
21853
21854         * lib/xgethostname.c (xgethostname): Protect against the SunOS 5.5 bug
21855         by allocating a larger buffer. Test the gethostname return value for
21856         being >= 0, not == 0, for BeOS.  Don't exhaust memory if gethostname
21857         returns an error and ENAMETOOLONG isn't defined.
21858
21859 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
21860
21861         * lib/quotearg.c (struct quoting_options): Simplify quote_these_too
21862         dimension.
21863
21864 2000-07-04  Jim Meyering  <meyering@lucent.com>
21865
21866         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use plain old `echo' instead
21867         of the deprecated AC_CHECKING.
21868
21869 2000-07-04  Jim Meyering  <meyering@lucent.com>
21870
21871         * lib/strndup.c: [!HAVE_DECL_STRNLEN]: Declare strnlen.
21872         Reported by Bruno Haible.
21873
21874 2000-07-04  Jim Meyering  <meyering@lucent.com>
21875
21876         * lib/quotearg.c: Make inclusion of <wchar.h> independent of whether
21877         HAVE_MBRTOWC is set.  Required at least for irix-5.6, which
21878         lacks mbrtowc.
21879
21880 2000-07-03  Paul Eggert  <eggert@twinsun.com>
21881
21882         * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Port to autoconf 2.13.
21883         Add AC_CHECK_HEADERS(stdlib.h), since we use HAVE_STDLIB_H.
21884
21885 2000-07-03  Paul Eggert  <eggert@twinsun.com>
21886         and Bruno Haible  <haible@clisp.cons.org>
21887
21888         * lib/quotearg.c (mbrtowc):
21889         Assign to *pwc, and return 1 only if result is nonzero.
21890         (iswprint): Use ISPRINT when substituting our own mbrtowc.
21891
21892 2000-07-03  Jim Meyering  <meyering@lucent.com>
21893
21894         * m4/check-decl.m4 (AC_CHECK_DECLS): Add strnlen.
21895
21896 2000-07-03  Jim Meyering  <meyering@lucent.com>
21897
21898         * lib/readutmp.h: [HAVE_UTMPX_H]: Include <utmp.h> if HAVE_UTMP_H.
21899         This is necessary to get a definition of e.g., UTMP_FILE on
21900         HP-UX 10.20.
21901         From Bob Proulx.
21902
21903 2000-07-02  Jim Meyering  <meyering@lucent.com>
21904
21905         * m4/mbstate_t.m4: Also define mbstate_t, if necessary.
21906
21907         * m4/chown.m4: Replace each use of AC_SUBST(LIBOBJS)/LIBOBJS=... with
21908         AC_LIBOBJ(function_name).
21909         * m4/chown.m4: Likewise.
21910         * m4/fnmatch.m4: Likewise.
21911         * m4/ftruncate.m4: Likewise.
21912         * m4/getgroups.m4: Likewise.
21913         * m4/getline.m4: Likewise.
21914         * m4/group-member.m4: Likewise.
21915         * m4/jm-macros.m4: Likewise.
21916         * m4/lstat.m4: Likewise.
21917         * m4/malloc.m4: Likewise.
21918         * m4/memcmp.m4: Likewise.
21919         * m4/nanosleep.m4: Likewise.
21920         * m4/putenv.m4: Likewise.
21921         * m4/realloc.m4: Likewise.
21922         * m4/regex.m4: Likewise.
21923         * m4/stat.m4: Likewise.
21924         * m4/strftime.m4: Likewise.
21925
21926 2000-07-02  Jim Meyering  <meyering@lucent.com>
21927
21928         * lib/quotearg.c (mbstate_t): Don't define here.
21929
21930 2000-07-02  Jim Meyering  <meyering@lucent.com>
21931
21932         * lib/nanosleep.c (SIGCONT): Define if not already defined.
21933
21934 2000-07-01  Jim Meyering  <meyering@lucent.com>
21935
21936         * m4/uptime.m4: Put double quotes around use of $cross_compiling.
21937
21938 2000-07-01  Jim Meyering  <meyering@lucent.com>
21939
21940         * m4/ls-mntd-fs.m4: Remove a `FIXME' comment and fix the associated
21941         problem.
21942
21943 2000-07-01  Bruno Haible  <haible@clisp.cons.org>
21944
21945         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Rename BeOS specific
21946         macro from MOUNTED_NEXT_DEV to MOUNTED_FS_STAT_DEV.
21947
21948 2000-07-01  Bruno Haible  <haible@clisp.cons.org>
21949
21950         * lib/mountlist.c: Use MOUNTED_FS_STAT_DEV instead of MOUNTED_NEXT_DEV,
21951         per change in ../m4/ls-mntd-fs.m4.
21952         (read_filesystem_list): Ignore symbolic links.
21953
21954 2000-06-29  Jim Meyering  <meyering@lucent.com>
21955
21956         * lib/same.c: Include <string.h> or <strings.h>, as appropriate,
21957         for declaration of strcmp.
21958
21959         * lib/long-options.c: Include <stdlib.h>, for declaration of exit.
21960
21961         * lib/mountlist.c (fsp_to_string) [HAVE_F_FSTYPENAME_IN_STATFS]:
21962         Avoid warning by casting result to `char *' to remove `const'.
21963
21964 2000-06-28  Jim Meyering  <meyering@lucent.com>
21965
21966         * m4/mbstate_t.m4: Use stdlib.h, not stdio.h.  The latter is not
21967         included by quotearg.c, for which we perform this test.  From
21968         Bruno Haible.
21969
21970 2000-06-27  Bruno Haible  <haible@clisp.cons.org>
21971
21972         * m4/check-decl.m4 (_jm_DECL_HEADERS): Check for utmp.h as well.
21973         * m4/prereq.m4 (jm_PREREQ_READUTMP): Likewise. If either <utmp.h> or
21974         <utmpx.h> exists, put readutmp.o into LIBOBJS.
21975
21976 2000-06-27  Bruno Haible  <haible@clisp.cons.org>
21977
21978         * lib/Makefile.am (libfetish_a_SOURCES): Remove readutmp.c.
21979
21980 2000-06-26  Paul Eggert  <eggert@twinsun.com>
21981
21982         savedir now sets errno on failure and invokes xmalloc to get memory.
21983         Fix a couple of other minor bugs while we're at it.
21984
21985         * lib/savedir.c (<unistd.h>): Do not include; there's no need.
21986         (NAMLEN): Remove macro.
21987         (malloc, realloc): Remove decls.
21988         (stpcpy): Likewise.
21989         ("xalloc.h"): Include.
21990         (NAME_SIZE_DEFAULT): New macro.
21991         (savedir): Use xmalloc / xrealloc to allocate memory.
21992         Use NAME_SIZE_DEFAULT if name_size is negative or overflows to zero.
21993         Skip "" directory entries.
21994         Use strlen to calculate directory entry length, since the old method
21995         is rarely used these days and isn't worth supporting.
21996         Don't use a pointer after freeing it.
21997         Check for integer overflow when calculating allocation size.
21998         Use memcpy to copy entries, instead of stpcpy.
21999         Set errno properly when returning NULL.
22000         Check for readdir error.
22001
22002 2000-06-26  Jim Meyering  <meyering@lucent.com>
22003
22004         * lib/posixtm.c [HAVE_STDLIB_H]: Include stdlib.h, for decl of abort.
22005
22006 2000-06-25  Jim Meyering  <meyering@lucent.com>
22007
22008         * m4/mbstate_t.m4: Include stdio.h before wchar.h to work around
22009         Linux header bug when _XOPEN_SOURCE is defined to 500.
22010
22011 2000-06-25  Bruno Haible  <haible@clisp.cons.org>
22012
22013         * lib/unicodeio.c (print_unicode_char): Work around ansi2knr
22014         deficiency.
22015
22016 2000-06-25  Bruno Haible  <haible@clisp.cons.org>
22017
22018         * lib/getusershell.c (xmalloc, xrealloc): Remove functions.
22019         Include xalloc.h.
22020         Don't include <stdlib.h>.  Don't declare malloc, realloc.
22021
22022 2000-06-24  Jim Meyering  <meyering@lucent.com>
22023
22024         * m4/strerror_r.m4: Revive this file -- to try out an experimental
22025         version of AC_FUNC_STRERROR_R that may work even on BeOS, a system
22026         for which strerror does return char*, but which lacks a conveniently
22027         accessible declaration of the function.  If the compile-test says
22028         strerror_r doesn't work, then resort to a `run'-test that works on
22029         BeOS and segfaults on DEC Unix.
22030
22031 2000-06-24  Jim Meyering  <meyering@lucent.com>
22032
22033         * lib/error.c [!HAVE_DECL_STRERROR_R]: Declare strerror_r.
22034
22035 2000-06-23  Paul Eggert  <eggert@twinsun.com>
22036
22037         * m4/mbstate_t.m4: New file, defining AC_MBSTATE_T_OBJECT.
22038         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Use it.  Add check for iswprint.
22039
22040 2000-06-23  Paul Eggert  <eggert@twinsun.com>
22041
22042         * lib/quotearg.c: Include <wctype.h> after <wchar.h>, for Solaris 2.5.
22043         (mbrtowc, mbstate_t): Define substitutes if
22044         HAVE_MBRTOWC && HAVE_WCHAR_H && !HAVE_MBSTATE_T_OBJECT.
22045         (iswprint): Define to 1 if !defined iswprint && !HAVE_ISWPRINT,
22046         not if ! (HAVE_MBRTOWC && HAVE_WCHAR_H).
22047
22048 2000-06-23  Jim Meyering  <meyering@lucent.com>
22049
22050         * m4/afs.m4: Add missing AC_MSG_RESULT.
22051         Reported by Bruno Haible.
22052
22053         * m4/fsusage.m4: s/AC_MSG_CHECKING/AC_CHECKING/.
22054         Suggestion from Bruno Haible.
22055
22056 2000-06-23  Jim Meyering  <meyering@lucent.com>
22057
22058         * lib/getpass.c: New file, from Bruno Haible.  Required for BeOS.
22059
22060 2000-06-21  Jim Meyering  <meyering@lucent.com>
22061
22062         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add getpass.
22063
22064 2000-06-21  Jim Meyering  <meyering@lucent.com>
22065
22066         * lib/Makefile.am (libfetish_a_SOURCES): Add getstr.c.
22067         (noinst_HEADERS): Add getstr.h.
22068
22069         * lib/getline.c (getstr): Move into a separate file.
22070         * lib/getstr.c (getstr): New file, extracted from getline.c, with
22071         the following changes: new parameter, delim2; both delim[12]
22072         parameters have type `int', not `char'.  The latter would lose
22073         with 8-bit delimiters.
22074         * lib/getstr.h: New file.
22075
22076 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
22077
22078         * lib/xgetcwd.c (xgetcwd): If the required pathname length is smaller
22079         than 1024, return a memory chunk of least possible size, instead
22080         of size PATH_MAX + 2. In the loop, increment the size proportionally.
22081         Use free/xmalloc instead of xrealloc to avoid copying for very long
22082         paths.
22083
22084 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
22085
22086         * lib/path-concat.c (path_concat): Don't access dir[-1] if dir is
22087         the empty string.
22088
22089 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
22090
22091         * lib/canon-host.c (canon_host): Use malloc and memcpy to copy an
22092         address, not strdup.  Include <stdlib.h> and don't declare free().
22093
22094 2000-06-19  Jim Meyering  <meyering@lucent.com>
22095
22096         * lib/getloadavg.c [HAVE_NLIST_H] (NLIST_STRUCT): Define.
22097
22098 2000-06-18  Jim Meyering  <meyering@lucent.com>
22099
22100         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Remove mkdir.
22101
22102         * m4/link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): Change the
22103         `checking whether...' message to be consistent with that of the
22104         lstat test.
22105
22106 2000-06-18  Jim Meyering  <meyering@lucent.com>
22107
22108         * lib/mkdir.c: Remove file, due mainly to copyright incompatibility.
22109         Besides, these days every porting target provides a mkdir function.
22110
22111         * lib/strnlen.c: Include memory.h, string.h, and/or strings.h as
22112         needed. (this snippet comes from src/system.h).
22113
22114 2000-06-16  Bruno Haible  <haible@clisp.cons.org>
22115
22116         * m4/glibc21.m4 (jm_GLIBC21): Define GLIBC21 for Makefiles, not for C.
22117
22118 2000-06-15  Paul Eggert  <eggert@twinsun.com>
22119
22120         * lib/human.c (adjust_value): New function.
22121         (human_readable_inexact): Apply rounding style even when
22122         printing approximate values.
22123
22124 2000-06-14  Paul Eggert  <eggert@twinsun.com>
22125
22126         * lib/human.c (human_readable_inexact): Allow an input block
22127         size that is not a multiple of the output block size, and vice versa.
22128         Reported by Piergiorgio Sartor.
22129
22130 2000-06-14  Paul Eggert  <eggert@twinsun.com>
22131
22132         * lib/getdate.y (get_date): Apply relative times after time
22133         zone indicator, not before.  Reported by Todd A. Jacobs.
22134
22135 2000-06-13  Jim Meyering  <meyering@lucent.com>
22136
22137         * lib/Makefile.am (all-local): Depend on lstat.c and stat.c.
22138
22139         * lib/xstat.in [!HAVE_DECL_FREE]: Declare free in lstat.c.
22140
22141 2000-06-12  Paul Eggert  <eggert@twinsun.com>
22142
22143         * lib/xstat.in: Include <stdlib.h> in lstat, to declare "free".
22144
22145 2000-06-12  Jim Meyering  <meyering@lucent.com>
22146
22147         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Replace with
22148         AC_FUNC_GETLOADAVG from autoconf, and tweak the latter to accept an
22149         optional argument.
22150         * m4/jm-macros.m4: s/AM_FUNC_GETLOADAVG/AC_FUNC_GETLOADAVG/, and supply
22151         the optional argument, `lib'.
22152
22153 2000-06-08  Jim Meyering  <meyering@lucent.com>
22154
22155         * m4/largefile.m4: Remove file (now that it's part of autoconf).
22156
22157 2000-06-04  Paul Eggert  <eggert@twinsun.com>
22158
22159         Rewrite largefile configuration so that we don't need to run
22160         getconf and don't need AC_CANONICAL_HOST.  [I'm leaving the use of
22161         AC_CANONICAL_HOST in configure.in -- jmm]
22162
22163         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS,
22164         AC_SYS_LARGEFILE_SPACE_APPEND): Remove.
22165         (AC_SYS_LARGEFILE_TEST_INCLUDES): New macro.
22166         (AC_SYS_LARGEFILE_MACRO_VALUE): Change arguments from
22167         CODE-TO-SET-DEFAULT to VALUE, INCLUDES, FUNCTION-BODY.
22168         All uses changed.
22169         Instead of inspecting the output of getconf, try to compile the
22170         test program without and with the macro definition.
22171         (AC_SYS_LARGEFILE): Do not require AC_CANONICAL_HOST or check
22172         for getconf.  Instead, check for the needed flags by compiling
22173         test programs.
22174
22175 2000-06-04  Paul Eggert  <eggert@twinsun.com>
22176
22177         * lib/strnlen.c: Include <config.h> if HAVE_CONFIG_H.
22178
22179 2000-06-04  Jim Meyering  <meyering@lucent.com>
22180
22181         * lib/getugroups.c (getugroups): Cast -1 to gid_t, for systems like
22182         SunOS 4.1.4 for which gid_t is an unsigned type.
22183
22184 2000-06-03  Jim Meyering  <meyering@lucent.com>
22185
22186         * m4/prereq.m4 (jm_PREREQ_HUMAN): Use []-quoted list in AC_CHECK_DECLS,
22187         now that autoconf requires that.
22188
22189         * m4/jm-glibc-io.m4: Add a kludge to make autoheader emit the required
22190         #undefs.  E.g., #undef HAVE_DECL_FERROR_UNLOCKED.
22191         Use []-quoted list in AC_CHECK_DECLS, now that autoconf requires that.
22192
22193 2000-06-03  Jim Meyering  <meyering@lucent.com>
22194
22195         * lib/strnlen.c [!HAVE_DECL_MEMCHR]: Declare memchr.
22196
22197 2000-06-03  Bruno Haible  <haible@clisp.cons.org>
22198
22199         * m4/glibc21.m4: New file.
22200         * m4/jm-macros.m4 (jm_MACROS): Call jm_GLIBC21.
22201
22202 2000-06-03  Bruno Haible  <haible@clisp.cons.org>
22203
22204         * lib/Makefile.am (install-exec-local): On systems with glibc-2.1 or
22205         newer, don't install charset.alias.
22206         * lib/config.charset: Change the Linux/glibc rules so they become empty
22207         on glibc-2.1 or newer.
22208
22209 2000-06-02  Jim Meyering  <meyering@lucent.com>
22210
22211         * lib/mountlist.c: Back out last change.  Instead, do this...
22212         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Set the
22213         me_dummy member using the same `ignore'-testing code.
22214         * lib/mountlist.h (ME_DUMMY): Add `autofs' to the list of ignored
22215         fs_type strings.
22216         From Mark D. Roth.
22217
22218 2000-05-29  Jim Meyering  <meyering@lucent.com>
22219
22220         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Ignore
22221         mounts with the `ignore' attribute.  Based on a patch from
22222         Mark D. Roth.
22223
22224 2000-05-28  Jim Meyering  <meyering@lucent.com>
22225
22226         * m4/jm-macros.m4 (AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK): Rename from
22227         jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
22228         * m4/stat.m4: Likewise.
22229         * m4/lstat.m4: Likewise.
22230         * m4/lstat-slash.m4: Remove file (absorbed into autoconf).
22231
22232         * m4/jm-macros.m4 (AC_FUNC_STRERROR_R): Rename from jm_FUNC_STRERROR_R.
22233         * m4/strerror_r.m4: Remove file (absorbed into autoconf).
22234
22235 2000-05-26  Jim Meyering  <meyering@lucent.com>
22236
22237         * m4/uptime.m4: Use `$cross_compiling', not `$ac_cv_prog_cc_cross'.
22238
22239 2000-05-24  Jim Meyering  <meyering@lucent.com>
22240
22241         * m4/prereq.m4: Use []-quoted list in AC_CHECK_MEMBERS, now that
22242         autoconf requires that.
22243         * m4/lib-check.m4: Likewise.
22244         * m4/jm-macros.m4: Likewise.
22245         * m4/strftime.m4: Likewise.
22246
22247         * m4/check-decl.m4 (jm_CHECK_DECLS): Use []-quoted list in
22248         AC_CHECK_DECLS, now that autoconf requires that.
22249
22250 2000-05-22  Jim Meyering  <meyering@lucent.com>
22251
22252         * m4/stat.m4: Require jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
22253         * m4/lstat.m4: Likewise.
22254
22255 2000-05-22  Jim Meyering  <meyering@lucent.com>
22256
22257         * lib/makepath.c: Remove old, now-unnecessary `#ifdef __MSDOS__' block.
22258
22259 2000-05-20  Jim Meyering  <meyering@lucent.com>
22260
22261         * m4/prereq.m4 (jm_PREREQ_HUMAN): New macro.
22262         (jm_PREREQ): Use it.
22263
22264 2000-05-18  Jim Meyering  <meyering@lucent.com>
22265
22266         * lib/hash.c (hash_rehash): Fix a nasty bug: copy the free entry list
22267         back, too, since it may have been modified by allocate_entry.
22268         (hash_delete): Rewrite to use neither the assignment operator
22269         nor the comma operator in an if-expression.
22270
22271 2000-05-15  Paul Eggert  <eggert@twinsun.com>
22272
22273         * lib/closeout.c:
22274         <sys/stat.h>, <sys/types.h>, <unistd.h>, (STDOUT_FILENO):
22275         Remove; no longer needed.
22276         "quotearg.h": Add include.
22277         (file_name): Do not bother to explicitly initialize to NULL; it's less
22278         efficient on some hosts.
22279         (close_stdout_status): Remove test as to whether stdout was already
22280         closed; it breaks for the case "echo x | sort >&-".
22281         Quote file name colons.
22282         Do not assume that _("write error") lacks format strings.
22283
22284 2000-05-15  Jim Meyering  <meyering@lucent.com>
22285
22286         * lib/version-etc.c (version_etc_copyright): Update the copyright
22287         string used in all --version output.
22288
22289 2000-05-14  Jim Meyering  <meyering@lucent.com>
22290
22291         * lib/closeout.c (close_stdout_set_file_name): New function.
22292         (close_stdout_status): Use new file-scoped global.
22293         Return right away if fstat says the stdout file descriptor is invalid.
22294         * lib/closeout.h (close_stdout_set_file_name): Declare.
22295
22296 2000-05-10  Jim Meyering  <meyering@lucent.com>
22297
22298         * lib/closeout.c [default_exit_status]: New file-scoped variable.
22299         (close_stdout_set_status): New function.
22300         * lib/closeout.h (close_stdout_set_status): Declare.
22301
22302 2000-05-09  Jim Meyering  <meyering@lucent.com>
22303
22304         * m4/gettext.m4: Rename this...
22305         * m4/libintl.m4: ...to this.
22306
22307 2000-05-08  Jim Meyering  <meyering@lucent.com>
22308
22309         * lib/long-options.c: Don't include closeout.h.
22310         (parse_long_options): Don't call close_stdout for --version.
22311
22312 2000-05-06  Paul Eggert  <eggert@twinsun.com>
22313
22314         * m4/largefile.m4 (AC_SYS_LARGEFILE): Define _XOPEN_SOURCE to
22315         be 500, instead of _GNU_SOURCE to be 1, to work around glibc
22316         2.1.3 bug.  This avoids a clash when files like regex.c define
22317         _GNU_SOURCE.
22318
22319 2000-05-06  Jim Meyering  <meyering@lucent.com>
22320
22321         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add atexit.
22322         (AC_REPLACE_FUNCS): Add strnlen.
22323
22324         * m4/rmdir-errno.m4 (fetish_FUNC_RMDIR_NOTEMPTY): New macro and file.
22325         * m4/jm-macros.m4: Require fetish_FUNC_RMDIR_NOTEMPTY.
22326
22327         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Save and restore LIBS around
22328         AC_SEARCH_LIBS call for nanosleep.
22329         (LIB_NANOSLEEP): Set and AC_SUBST.
22330
22331 2000-05-06  Jim Meyering  <meyering@lucent.com>
22332
22333         * lib/strnlen.c: Undefine __strnlen and strnlen.
22334         [!weak_alias]: Define __strnlen to strnlen.
22335
22336         * lib/atexit.c: New file, from libiberty.
22337
22338 2000-05-06  Jim Meyering  <meyering@lucent.com>
22339
22340         * lib/closeout.c (close_stdout_status): Also check for errors on the
22341         stderr stream.
22342
22343 2000-05-05  Jim Meyering  <meyering@lucent.com>
22344
22345         * m4/jm-macros.m4 (jm_MACROS): Save and restore LIBS around
22346         AC_SEARCH_LIBS call for clock_gettime.
22347         (LIB_CLOCK_GETTIME): Set and AC_SUBST.
22348
22349         * m4/search-libs.m4: Update from autoconf.
22350
22351         su doesn't work on Solaris 2.6.
22352         * m4/lib-check.m4: When checking for struct spwd.sp_pwdp, also include
22353         <shadow.h>.  Reported by Dragos Harabor.
22354
22355 2000-05-05  Bruno Haible  <haible@clisp.cons.org>
22356
22357         * lib/localcharset.c (get_charset_aliases): Use malloc, realloc and
22358         memcpy instead of xmalloc, xrealloc, path_concat.
22359         (locale_charset): Treat empty environment variables as absent.
22360         (DIRECTORY_SEPARATOR, ISSLASH): New macros.
22361
22362 2000-05-04  Jim Meyering  <meyering@lucent.com>
22363
22364         * lib/getopt.c: Update from glibc.
22365         * lib/obstack.c: Likewise.
22366         * lib/obstack.h: Likewise.
22367         * lib/regex.c: Likewise.  NB: K&R compiler support is dropped for this
22368         file
22369
22370         * lib/regex.h: Likewise.
22371         * lib/strndup.c: Likewise.
22372         * lib/strnlen.c: New file, from glibc.
22373
22374 2000-05-03  Jim Meyering  <meyering@lucent.com>
22375
22376         * m4/check-decl.m4 (AC_CHECK_DECLS): Add strndup.
22377
22378 2000-05-02  Paul Eggert  <eggert@twinsun.com>
22379
22380         * m4/largefile.m4 (AC_SYS_LARGEFILE): Define _GNU_SOURCE if
22381         this is needed to make ftello visible (e.g. glibc 2.1.3).  Use
22382         compile-time test, rather than inspecting host and OS, to
22383         decide whether to define _LARGEFILE_SOURCE.
22384
22385 2000-05-01  Jim Meyering  <meyering@lucent.com>
22386
22387         * m4/fsusage.m4: Use AC_MSG_CHECKING instead of obsolete AC_CHECKING.
22388
22389         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add BeOS support.
22390         Based on a patch from Bruno Haible.
22391
22392 2000-05-01  Jim Meyering  <meyering@lucent.com>
22393
22394         * lib/full-write.c (full_write): Remove `FIXME' part of comment.
22395
22396 2000-04-29  Jim Meyering  <meyering@lucent.com>
22397
22398         * lib/path-concat.c: Declare strdup only if it's not defined.
22399         * lib/canon-host.c: Likewise.
22400
22401 2000-04-28  Jim Meyering  <meyering@lucent.com>
22402
22403         * lib/rpmatch.c [HAVE_LIMITS_H]: Include limits.h before regex.h to
22404         avoid redefinition warning on some systems (HPUX).  Otherwise, regex.h
22405         is included first, then limits.h is included by locale.h by libintl.h.
22406         From John David Anglin.
22407
22408 2000-04-25  Jim Meyering  <meyering@lucent.com>
22409
22410         * lib/makepath.c (S_IRWXUGO): Define.
22411         (make_path): Always perform explicit chmod if MODE specifies any
22412         of the `special' permission bits.  Prompted by a bug report against
22413         install from Mate Wierdl and Joost van Baal.
22414
22415 2000-04-18  Jim Meyering  <meyering@lucent.com>
22416
22417         * m4/prereq.m4 (jm_PREREQ_GETPAGESIZE): New macro.
22418         (jm_PREREQ): Use it.
22419
22420 2000-04-18  Jim Meyering  <meyering@lucent.com>
22421
22422         * lib/README: New file.
22423
22424         * lib/getpagesize.h [!getpagesize && HAVE_OS_H && B_PAGE_SIZE]: Define
22425         getpagesize.  For BeOS.  Based on a patch from Bruno Haible.
22426
22427 2000-04-17  Jim Meyering  <meyering@lucent.com>
22428
22429         Get it right :-)
22430         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Emit the
22431         actual #define via AH_VERBATIM.  Don't need separate AC_DEFINE.
22432         Suggestion from Akim Demaille.
22433
22434 2000-04-17  Jim Meyering  <meyering@lucent.com>
22435
22436         * lib/strftime.c (my_strftime) [strftime]: Declare strftime here, since
22437         the definition of it to rpl_strftime also defined-away the system's
22438         declaration.
22439
22440 2000-04-15  Jim Meyering  <meyering@lucent.com>
22441
22442         Use `C' to denote so-called `contiguous' files, the same way
22443         that tar does.
22444         * lib/filemode.c (S_ISCTG) [!S_ISCTG && S_IFCTG]: Define.
22445         (ftypelet): Use S_ISCTG.
22446         From Michael Deutschmann.
22447
22448 2000-04-14  Jim Meyering  <meyering@lucent.com>
22449
22450         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use the one-arg
22451         form of AC_DEFINE.  Otherwise, the #ifndef in AH_VERBATIM gets
22452         clobbered.
22453
22454 2000-04-14  Jim Meyering  <meyering@lucent.com>
22455
22456         * lib/strftime.c (my_strftime) [#ifdef strftime]: Declare strftime.
22457
22458 2000-04-13  Jim Meyering  <meyering@lucent.com>
22459
22460         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use new
22461         AH_VERBATIM to insert required #ifndef into config.h.in.
22462         Suggestion from Akim Demaille.
22463
22464 2000-04-12  Jim Meyering  <meyering@lucent.com>
22465
22466         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Use AC_CHECK_HEADERS, not
22467         `AC_CHECK_HEADER' to check for locale.h.  Thanks to a report from
22468         Christian Krackowizer.
22469
22470         More code moved from ../configure.in into (jm_CHECK_ALL_TYPES).
22471         * m4/jm-macros.m4 (_GNU_SOURCE): Define.
22472         (AC_SYS_LARGEFILE): Require.
22473         (AM_C_PROTOTYPES): Require.
22474
22475 2000-04-08  Jim Meyering  <meyering@lucent.com>
22476
22477         * lib/Makefile.am (charset.alias): Use t-$@, not $@-t so the DOS 8.3
22478         names don't conflict.  Reported by Eli Zaretskii.
22479
22480 2000-04-07  Jim Meyering  <meyering@lucent.com>
22481
22482         * lib/putenv.c: Move inclusion of errno.h so it follows that of
22483         sys/types.h, to work around system header problems on AIX 3.2.5.
22484         From Bruno Haible.
22485
22486 2000-04-07  Bruno Haible  <haible@clisp.cons.org>
22487
22488         * lib/unicodeio.c (print_unicode_char): Avoid triggering Solaris iconv
22489         bug.  Deal with the different error behavior of Irix iconv.
22490
22491 2000-04-05  Paul Eggert  <eggert@twinsun.com>
22492
22493         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Don't use -n32 on
22494         IRIX if the installer said otherwise.
22495
22496 2000-04-05  Jim Meyering  <meyering@lucent.com>
22497
22498         Portability tweaks required for ultrix4.3.
22499         * m4/check-decl.m4 [!HAVE_UTMPX_H] (headers): Include <utmp.h>.
22500         (jm_CHECK_DECLS): Add getutent to the list of functions.
22501         (_jm_DECL_HEADERS): Add utmpx.h.
22502         From John David Anglin.
22503
22504         * m4/strftime.m4: Back out the 2000-04-02 change.
22505         Instead of that change, simply undefine putenv in the test program.
22506
22507 2000-04-05  Jim Meyering  <meyering@lucent.com>
22508
22509         Portability tweaks required for ultrix4.3.
22510         * lib/readutmp.h [HAVE_UTMPX_H && !HAVE_DECL_GETUTENT]: Declare
22511         getutent.
22512         * lib/readutmp.c: Include sys/types.h before sys/stat.h.
22513         * lib/canon-host.c: Declare strdup.
22514         * lib/path-concat.c: Likewise.
22515         From John David Anglin.
22516
22517 2000-04-04  Jim Meyering  <meyering@lucent.com>
22518
22519         Be more DOS 8.3-friendly.
22520         * lib/ref-add.sin: Renamed from ref-add.sed.in.
22521         * lib/ref-del.sin: Renamed from ref-del.sed.in.
22522         * lib/Makefile.am: Reflect renaming.
22523         Reported by Eli Zaretskii.
22524
22525         Use a temporary file name that won't clash with `charset.alias'
22526         in the DOS 8.3 name space.
22527         * lib/Makefile.am (charset_tmp): Define.
22528         (install-exec-local): Use $(charset_tmp) instead of $(charset_alias)-t.
22529         (uninstall-local): Likewise.
22530         Reported by Eli Zaretskii.
22531
22532 2000-04-03  Jim Meyering  <meyering@lucent.com>
22533
22534         * m4/gettext.m4: Fix typo in comment.
22535
22536         * m4/codeset.m4 (AC_CHECK_HEADERS): Add langinfo.h (moved here from
22537         textutils/configure.in).  Suggestion from Paul Eggert.
22538         (AC_CHECK_FUNCS): Add nl_langinfo.  (also from textutils/configure.in)
22539
22540 2000-04-02  Paul Eggert  <eggert@twinsun.com>
22541
22542         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME): Set TZ environment
22543         variable in the shell rather than using putenv, which isn't
22544         portable.  This avoids the configure-time inter-test dependency
22545         on the potentially-renamed putenv function.
22546
22547 2000-03-30  Paul Eggert  <eggert@twinsun.com>
22548
22549         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Include <sys/stat.h>
22550         before checking struct stat.st_blksize, so that
22551         HAVE_STRUCT_STAT_ST_BLKSIZE is defined correctly.
22552
22553 2000-03-29  Paul Eggert  <eggert@twinsun.com>
22554
22555         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Check for strftime,
22556         since strftime.c uses HAVE_STRFTIME to decide whether to use
22557         the underlying strftime.
22558
22559 2000-03-29  Paul Eggert  <eggert@twinsun.com>
22560
22561         * lib/time/strftime.c (my_strftime): Make sure we call the system
22562         strftime, not ourselves, when invoking the underlying strftime.
22563
22564 2000-03-24  Jim Meyering  <meyering@lucent.com>
22565
22566         * lib/Makefile.am (EXTRA_DIST): Add ref-add.sed.in and ref-del.sed.in.
22567         (charset_alias): Define.
22568         (install-exec-local): Factor out common code.
22569         (uninstall-local): Split lines longer than 80.
22570         (ref-add.sed, ref-del.sed): Remove rules... (do the following instead)
22571         (SUFFIXES): Define.
22572         (.sed.in.sed): New rule.  Don't redirect directly to $@.
22573         (CLEANFILES): Add ref-add.sed and ref-del.sed.
22574
22575 2000-03-19  Bruno Haible  <haible@clisp.cons.org>
22576
22577         * lib/config.charset: Output a line containing "Packages using this
22578         file".
22579         * lib/ref-add.sed.in, ref-del.sed.in: New files.
22580         * lib/Makefile.am (install-exec-local, uninstall-local, ref-add.sed,
22581         ref-del.sed): New rules.
22582
22583 2000-03-17  Jim Meyering  <meyering@lucent.com>
22584
22585         * lib/unicodeio.c (<string.h>): Include only #if HAVE_STRING_H.
22586         Otherwise, include <strings.h>
22587
22588 2000-03-17  Bruno Haible  <haible@clisp.cons.org>
22589
22590         * lib/unicodeio.c (utf8_wctomb): New function.
22591         (print_unicode_char): Pass the Unicode character to iconv in UTF-8
22592         format instead of in UCS-4 with platform dependent endianness.
22593
22594 2000-03-10  Jim Meyering  <meyering@lucent.com>
22595
22596         * m4/lib-check.m4: Look for getspnam in -lgen, too.
22597         From Marco Franzen.
22598
22599 2000-03-07  Paul Eggert  <eggert@twinsun.com>
22600
22601         * lib/savedir.c (savedir): Work even if directory size is
22602         negative; this can happen with some screwy NFS configurations.
22603
22604 2000-03-06  Jim Meyering  <meyering@lucent.com>
22605
22606         * lib/localcharset.c (get_charset_aliases): Don't try to free file_name
22607         if it's NULL (because we ran out of memory).  From Bruno Haible.
22608
22609 2000-03-05  Jim Meyering  <meyering@lucent.com>
22610
22611         * lib/localcharset.c ("path-concat.h"): Include.
22612         (get_charset_aliases): Use path_concat instead of ANSI string
22613         concatenation.
22614
22615         * lib/unicodeio.h (PARAMS): Define.
22616         Use it to guard prototype.
22617
22618 2000-03-04  Jim Meyering  <meyering@lucent.com>
22619
22620         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require AC_C_VOLATILE,
22621         for lib/localcharset.c.
22622
22623 2000-03-04  Jim Meyering  <meyering@lucent.com>
22624
22625         * lib/Makefile.am (install-exec-local): Create $(libdir) before
22626         installing into it.
22627         (uninstall-local): Uncomment this rule so `make distcheck' works
22628         once again.
22629
22630         * lib/unicodeio.c (<errno.h>): Include it.
22631         (errno): Declare if not defined.
22632
22633         * lib/localcharset.c: Add Bruno's comment justifying use of volatile.
22634
22635         * lib/config.charset: New version, incorporating remarks from a linux
22636         i18n mailing list.  From Bruno Haible.
22637
22638 2000-03-04  Bruno Haible  <haible@clisp.cons.org>
22639
22640         * m4/codeset.m4: New file.
22641         * m4/iconv.m4: New file.
22642         * m4/jm-macros.m4 (jm_MACROS): Call jm_LANGINFO_CODESET and jm_ICONV.
22643
22644 2000-03-03  Jim Meyering  <meyering@lucent.com>
22645
22646         * m4/regex.m4: Make sure re_compile_pattern accepts patterns like `{1'.
22647
22648 2000-03-02  Jim Meyering  <meyering@lucent.com>
22649
22650         * m4/timespec.m4: Require AC_HEADER_TIME before the cache check so
22651         the messages come out on separate lines.
22652
22653         * m4/jm-glibc-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO): Use AC_CHECK_DECLS,
22654         rather than jm_CHECK_DECLARATIONS.
22655         * m4/decl.m4: Remove now-unused file.
22656
22657         * m4/check-decl.m4 (AC_CHECK_DECLS): Add getlogin, ttyname, and
22658         geteuid.
22659
22660 2000-03-02  Jim Meyering  <meyering@lucent.com>
22661
22662         * lib/Makefile.am (EXTRA_DIST): Add config.charset.
22663
22664 2000-03-01  Jim Meyering  <meyering@lucent.com>
22665
22666         * lib/localcharset.c: Guard some #includes with `#if HAVE_...'.
22667         * lib/unicodeio.c: Likewise.
22668
22669 2000-03-01  Bruno Haible  <haible@clisp.cons.org>
22670
22671         * lib/config.charset: New file.
22672         * lib/localcharset.c: New file.
22673         * lib/unicodeio.h, unicodeio.c: New files.
22674         * lib/Makefile.am (DEFS): Add -DLIBDIR=...
22675         (libfetish_a_SOURCES): Add localcharset.c and unicodeio.c.
22676         (noinst_HEADERS): Add unicodeio.h.
22677         (all-local, install-exec-local, charset.alias): New targets.
22678
22679 2000-02-28  Paul Eggert  <eggert@twinsun.com>
22680
22681         * lib/quotearg.c (ALERT_CHAR): New macro.
22682         (quotearg_buffer_restyled): Use it.
22683
22684 2000-02-27  Jim Meyering  <meyering@lucent.com>
22685
22686         * m4/check-decl.m4: Add getenv to the list.
22687
22688 2000-02-27  Jim Meyering  <meyering@lucent.com>
22689
22690         * lib/strtoumax.c: Fix typo in decl of strtoul: s/long long/long/.
22691         Guard declaration of strtoull also with `&& HAVE_UNSIGNED_LONG_LONG'.
22692
22693         * lib/backupfile.c: Guard inclusion of stdlib.h with
22694         `#if HAVE_STDLIB_H', not `#if STDC_HEADERS'.
22695         Declare malloc if needed.
22696
22697         * lib/backupfile.c: Use `#if !HAVE_DECL...' instead of
22698         `#ifndef HAVE_DECL..'
22699         now that autoconf always defines the HAVE_DECL_ symbols.
22700         * lib/human.c: Likewise.
22701         * lib/same.c: Likewise.
22702         * lib/strtoumax.c: Likewise.
22703
22704         * lib/backupfile.c: Arrange for cpp to fail if the configure-time
22705         declaration check was not run.
22706         * lib/hash.c: Likewise.
22707         * lib/human.c: Likewise.
22708         * lib/same.c: Likewise.
22709         * lib/strtoumax.c: Likewise.
22710
22711         * lib/userspec.c (parse_user_spec): If there is no `:' but there is a
22712         `.', then first look up the entire `.'-containing string as a login
22713         name.
22714
22715 2000-02-23  Jim Meyering  <meyering@lucent.com>
22716
22717         * m4/check-decl.m4: Now that we have the new AC_CHECK_DECLS, use it
22718         in place of my hack.
22719
22720 2000-02-18  Paul Eggert  <eggert@twinsun.com>
22721
22722         * lib/getdate.y: Handle two-digit years with leading zeros correctly.
22723         (textint): New typedef.
22724         (parser_control): Member year changed from int to textint.
22725         All uses changed.
22726         (YYSTYPE): Removed; replaced by %union with int and textint members.
22727         (tDAY, tDAY_UNIT, tDAYZONE, tHOUR_UNIT, tID, tLOCAL_ZONE, tMERIDIAN,
22728         tMINUTE_UNIT, tMONTH, tMONTH_UNIT tSEC_UNIT, tSNUMBER, tUNUMBER,
22729         tYEAR_UNIT, tZONE, o_merid): Now of type <intval>.
22730         (tSNUMBER, tUNUMBER): Now of type <textintval>.
22731         (date, number, to_year): Use width of number in digits, not its value,
22732         to determine whether it's a 2-digit year, or a 2-digit time.
22733         (yylex): Store number of digits of numeric tokens.
22734         Reported by John Kendall.
22735
22736         (parser_control): Changed from struct parser_control to typedef (for
22737         consistency).  All uses changed.
22738
22739         (tID): Removed; not used.
22740         (yylex): Return '?' for unknown identifiers, rather than (unused) tID.
22741
22742 2000-02-14  Paul Eggert  <eggert@twinsun.com>
22743
22744         * lib/getpagesize.h (getpagesize): Port to VMS for Alpha;
22745         adapted from changes to grep getpagesize.h by Martin P.J. Zinser.
22746
22747 2000-02-12  Jim Meyering  <meyering@lucent.com>
22748
22749         * lib/userspec.c (ISDIGIT): Define it.
22750         (isdigit): Remove definition.
22751         (is_number): Use ISDIGIT, not isdigit.
22752         <libintl.h>: Include.
22753         (_ and N_): Define.
22754         (parse_user_spec): Mark translatable strings.
22755
22756 2000-02-10  Jim Meyering  <meyering@lucent.com>
22757
22758         With these changes, nanosleep.[ch] are finally enough like the other
22759         lib/* replacement files to compile on a few more losing systems.
22760
22761         * lib/nanosleep.h: Don't include config.h.
22762         Remove prototype from declaration of nanosleep.
22763         (PARAMS): Remove now-unneeded definition.
22764         * lib/nanosleep.c: #undef nanosleep.
22765         (rpl_nanosleep): Rename from nanosleep.
22766
22767 2000-02-10  Jim Meyering  <meyering@lucent.com>
22768
22769         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Rename replacement function from
22770         gnu_nanosleep to rpl_nanosleep.
22771
22772 2000-02-09  Jim Meyering  <meyering@lucent.com>
22773
22774         * m4/lib-check.m4 (jm_LIB_CHECK): Fix typo: check for sp_pwdp in
22775         struct spwd, rather than in struct passwd.  Reported by Gaël Quéri.
22776
22777 2000-02-08  Akim Demaille  <akim@epita.fr>
22778
22779         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Quote square brackets with
22780         `[' and `]' and remove uses of `changequote'.
22781         (AC_SYS_LARGEFILE_MACRO_VALUE): Likewise.
22782         (AC_SYS_LARGEFILE): Likewise.
22783         * m4/gettext.m4 (AM_GNU_GETTEXT): Likewise.
22784         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME): Remove now-unnecessary use
22785         of changequote.
22786         * m4/regex.m4 (jm_INCLUDED_REGEX): Likewise.
22787         * m4/readdir.m4 (jm_FUNC_READDIR): Likewise
22788         * m4/memcmp.m4 (jm_AC_FUNC_MEMCMP): Likewise, and add `int' for main.
22789         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Likewise.
22790
22791 2000-02-05  Jim Meyering  <meyering@lucent.com>
22792
22793         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require most macros.
22794         Remove explicit use of AC_HEADER_TIME.  It is required by
22795         jm_CHECK_TYPE_STRUCT_TIMESPEC.  Using AC_HEADER_TIME and
22796         `AC_REQUIRE'ing jm_CHECK_TYPE_STRUCT_TIMESPEC provoked a but
22797         in autoconf whereby the expansion of the latter ended up preceding
22798         the expansion of its prerequisite, AC_HEADER_TIME.
22799         Reported by Volker Borchert.
22800
22801 2000-02-03  Jim Meyering  <meyering@lucent.com>
22802
22803         * m4/prereq.m4 (jm_PREREQ_READUTMP): Check for utmpxname.
22804
22805 2000-02-03  Jim Meyering  <meyering@lucent.com>
22806
22807         * lib/readutmp.c (read_utmp): Guard with `#ifdef UTMP_NAME_FUNCTION',
22808         rather than with `#if HAVE_UTMPNAME'.
22809
22810 2000-02-02  Jim Meyering  <meyering@lucent.com>
22811
22812         * m4/prereq.m4 (jm_PREREQ_ADDEXT): Fix typo that resulted in no
22813         definition of HAVE_PATHCONF: s/AC_CHECK_FUNC/AC_CHECK_FUNCS/.
22814         Reported by Eli Zaretskii.
22815
22816 2000-02-01  Jim Meyering  <meyering@lucent.com>
22817
22818         * lib/readutmp.h (UT_USER): Add parens.  From Andreas Schwab.
22819
22820 2000-01-31  Jim Meyering  <meyering@lucent.com>
22821
22822         * m4/check-decl.m4 (jm_CHECK_DECLS): Add nanosleep to the list of
22823         functions.  Add the time.h and sys/time.h headers along with the
22824         AC_REQUIRE'ment of AC_HEADER_TIME.
22825
22826 2000-01-31  Jim Meyering  <meyering@lucent.com>
22827
22828         * lib/nanosleep.h (nanosleep): Guard declaration with
22829         `#if ! HAVE_DECL_NANOSLEEP'.
22830         Without this, OFS gets a redeclaration error for rpl_nanosleep, due to
22831         the declaration in that vendor's sys/timers.h.
22832         Reported by Christian Krackowizer.
22833
22834         * lib/quotearg.c (ISASCII): Add #undef and move definition to follow
22835         inclusion of wctype.h to work around Solaris 2.6 namespace pollution.
22836         (ISPRINT): Likewise.
22837         Reported by Tom Tromey.
22838
22839 2000-01-30  Jim Meyering  <meyering@lucent.com>
22840
22841         * m4/lib-check.m4: Clean up some kludgy old shadow password tests.
22842
22843         * m4/prereq.m4 (utmp_includes): Define.
22844         Check for ut_user and ut_name members in both struct utmpx
22845         and struct utmp.
22846
22847 2000-01-30  Jim Meyering  <meyering@lucent.com>
22848
22849         * lib/readutmp.c (extract_trimmed_name): Use UT_USER instead of
22850         hard-coding uses of ->ut_name.  The latter doesn't work with new Linux
22851         header files where only utmpx.ut_user is declared.
22852
22853         * lib/readutmp.h (UT_USER): Define.
22854
22855 2000-01-29  Jim Meyering  <meyering@lucent.com>
22856
22857         * m4/lib-check.m4: New file containing library-related checks from
22858         fileutils and sh-utils (textutils had none).
22859
22860 2000-01-28  Jim Meyering  <meyering@lucent.com>
22861
22862         * m4/perl.m4: Change format of warning message to look more like that
22863         from the missing script.  Suggestion from François Pinard.
22864
22865 2000-01-25  Jim Meyering  <meyering@lucent.com>
22866
22867         * m4/timespec.m4: Require AC_HEADER_TIME, and include sys/time.h as
22868         well as time.h in the compile check.
22869         * m4/nanosleep.m4: Require AC_HEADER_TIME rather than simply using it.
22870         Fix typo in cross-compiling case: s/yes/no/.
22871
22872 2000-01-23  Jim Meyering  <meyering@lucent.com>
22873
22874         * m4/jm-macros.m4: Move df-related tests here from
22875         fileutils/configure.in
22876
22877         * m4/ls-mntd-fs.m4: s/list_mounted_fs/ac_list_mounted_fs/
22878         (jm_LIST_MOUNTED_FILESYSTEMS): Take two parameters.
22879
22880         * m4/fsusage.m4: New file.  Extracted from fileutils/configure.in.
22881         s/space/ac_fsusage_space/.
22882         (jm_FILE_SYSTEM_USAGE): Take two parameters.
22883
22884         * m4/ftruncate.m4: New file (derived from part of
22885         fileutils/configure.in).
22886         * m4/jm-macros.m4 (jm_FUNC_FTRUNCATE): AC_REQUIRE it.
22887         (jm_CHECK_ALL_TYPES): Require AC_HEADER_MAJOR and AC_HEADER_DIRENT.
22888
22889         * m4/jm-macros.m4 (OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, MAN):
22890         AC_SUBST these here, rather than just in sh-util/configure.in, so
22891         that the now-shared-by-fileutils-and-textutils lib/Makefile.am are
22892         all the same.
22893         (AM_FUNC_OBSTACK): Add (from fileutils/configure.in).
22894         (AC_CHECK_FUNCS): Merge all checks from fileutils, textutils, sh-utils.
22895         (AM_FUNC_STRTOD): Added (from textutils', sh-utils' configure.in).
22896         (AC_SUBST(POW_LIBM)): Likewise.
22897         (AC_SUBST(DF_PROG)): Moved from fileutils/configure.in.
22898
22899 2000-01-23  Jim Meyering  <meyering@lucent.com>
22900
22901         * lib/Makefile.am (libfetish_a_SOURCES): Remove explicit mention of
22902         obstack.c.
22903
22904 2000-01-22  Jim Meyering  <meyering@lucent.com>
22905
22906         * m4/jm-macros.m4: Call AC_PROG_CC_STDC just before AC_C_CONST.
22907
22908         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Add wctype.h.
22909
22910         * m4/jm-macros.m4 (AC_CHECK_HEADERS): Add checks from fileutils'
22911         configure.in
22912         (AC_CHECK_HEADERS): Likewise for sh-utils.
22913         (AC_CHECK_HEADERS): Likewise for textutils.
22914         Merge the three lists of headers.
22915
22916         * m4/prereq.m4 (jm_PREREQ_ADDEXT): New macro.  Parts moved here
22917         from fileutils' configure.in.
22918
22919         * m4/decl.m4: Remove kludgy `test -z $ac_...AC_CHECK_HEADERS(...)'
22920         code. Moved tests into their own function (_jm_DECL_HEADERS) in
22921         check-decl.m4.
22922
22923         * m4/check-decl.m4: Use #if rather than #ifdef.
22924         Add HAVE_DECL_STRTOUL and HAVE_DECL_STRTOULL.
22925         (jm_CHECK_DECLARATIONS): Add strtoul strtoull.
22926         (_jm_DECL_HEADERS): Define new function.
22927         (jm_CHECK_DECLARATIONS): Require it.
22928
22929 2000-01-22  Jim Meyering  <meyering@lucent.com>
22930
22931         * lib/strtoumax.c: [! HAVE_DECL_STRTOUL]: Declare strtoul.
22932         [! HAVE_DECL_STRTOULL]: Declare strtoull.
22933         Required for some AIX systems.  Reported by Christian Krackowizer.
22934         [TESTING] (main): New function.
22935
22936         1997-10-17  Eli Zaretskii  <eliz@is.elta.co.il>
22937         * lib/dirname.c (dir_name): Support for DOS-style file names with drive
22938         letters.
22939
22940         * lib/quotearg.c [HAVE_WCTYPE_H]: Include <wctype.h> for decl of
22941         iswprint.
22942
22943         * lib/strverscmp.c (ISDIGIT): Define.
22944         (strverscmp): Use ISDIGIT, not isdigit.
22945
22946 2000-01-19  Jim Meyering  <meyering@lucent.com>
22947
22948         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Include <sys/time.h>, too.
22949         Use AC_HEADER_TIME.  Volker Borchert reported that OpenBSD-2.3/sparc
22950         defines `struct timespec' in <sys/time.h>
22951
22952         * m4/c-bs-a.m4: Remove uses of changequote altogether.
22953         Thanks to Akim for explaining.
22954
22955 2000-01-17  Paul Eggert  <eggert@twinsun.com>
22956
22957         * lib/nanosleep.c (nanosleep):
22958         Don't use SA_INTERRUPT to decide whether to call sigaction, as
22959         POSIX.1 doesn't require SA_INTERRUPT and some systems
22960         (e.g. Solaris 7) don't define it.  Use SA_NOCLDSTOP instead;
22961         it's been part of POSIX.1 since day 1 (in 1988).
22962
22963 2000-01-17  Jim Meyering  <meyering@lucent.com>
22964
22965         * lib/interlock: Remove unused file.  Reported by François Pinard.
22966
22967 2000-01-16  Paul Eggert  <eggert@twinsun.com>
22968
22969         * lib/quotearg.c (quotearg_buffer_restyled): Do not quote
22970         alert, backslash, formfeed, and vertical tab unnecessarily in
22971         shell quoting style.
22972
22973 2000-01-16  Jim Meyering  <meyering@lucent.com>
22974
22975         * m4/jm-macros.m4: Require jm_FUNC_GROUP_MEMBER, jm_FUNC_PUTENV,
22976         AM_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, jm_FUNC_MKTIME,
22977         jm_FUNC_GETGROUPS AC_FUNC_VPRINTF, AC_FUNC_ALLOCA,
22978         AM_FUNC_GETLOADAVG, and jm_SYS_PROC_UPTIME.
22979
22980 2000-01-16  Jim Meyering  <meyering@lucent.com>
22981
22982         * m4/c-bs-a.m4: Use `changequote(<<,>>)', rather than `changequote(, )'
22983         because the latter didn't work.
22984
22985 2000-01-15  Jim Meyering  <meyering@lucent.com>
22986
22987         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add gethostname and getusershell.
22988         (AC_REPLACE_FUNCS): Add memcpy and memset.
22989         Add these, too: stime strcspn stpcpy strstr strtol strtoul.
22990         Add strpbrk.
22991         Add these: euidaccess memcmp mkdir rmdir rpmatch strndup strverscmp.
22992
22993 2000-01-12  Jim Meyering  <meyering@lucent.com>
22994
22995         * m4/prereq.m4 (jm_PREREQ_CANON_HOST): New macro.
22996         (jm_PREREQ): Use it.
22997         (jm_PREREQ_READUTMP): New macro.
22998         (jm_PREREQ): Use it.
22999
23000 2000-01-11  Paul Eggert  <eggert@twinsun.com>
23001
23002         Quote multibyte characters correctly.
23003         * m4/c-bs-a.m4: New file.
23004         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): New macro.
23005         (jm_PREREQ): Use it.
23006
23007 2000-01-11  Paul Eggert  <eggert@twinsun.com>
23008
23009         * m4/uintmax_t.m4: Port to autoconf 2.13.
23010
23011 2000-01-08  Jim Meyering  <meyering@ascend.com>
23012
23013         * m4/strerror_r.m4 (jm_FUNC_STRERROR_R): New file/macro.
23014         * m4/jm-macros.m4 (jm_FUNC_STRERROR_R): Require it.
23015
23016 2000-01-04  Jim Meyering  <meyering@ascend.com>
23017
23018         * m4/d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename from
23019         jm_STRUCT_DIRENT_D_TYPE.
23020         * m4/d-ino.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_INO): Rename from
23021         jm_STRUCT_DIRENT_D_INO.
23022         * m4/utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Rename from
23023         jm_STRUCT_UTIMBUF.
23024         * m4/jm-macros.m4: Reflect s/jm_STRUCT_/jm_CHECK_TYPE_STRUCT_/
23025         renamings.
23026         * m4/utime.m4: Likewise.
23027
23028         * m4/timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): New file, macro.
23029         * m4/jm-macros.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): Require it.
23030
23031 2000-01-03  Paul Eggert  <eggert@twinsun.com>
23032
23033         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Search for nanosleep in -lrt
23034         (for Solaris 7) and in -lposix4 (for Solaris 2.5.1).
23035
23036 2000-01-02  Jim Meyering  <meyering@ascend.com>
23037
23038         * m4/search-libs.m4: Escape `$' in $3 of dnl comment.  I no longer
23039         remember if this is necessary.
23040
23041 1999-12-26  Jim Meyering  <meyering@ascend.com>
23042
23043         * m4/jm-macros.m4: Use it here.
23044         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): New file/macro.
23045
23046 1999-12-23  Jim Meyering  <meyering@ascend.com>
23047
23048         * m4/jm-macros.m4: Check for clock_gettime (moved from
23049         fileutils/configure.in)
23050         Check for gettimeofday.
23051
23052 1999-12-20  Jim Meyering  <meyering@ascend.com>
23053
23054         * m4/strftime.m4: Remove kludge, now that I'm using the fixed
23055         autoconf-2.14a-1999-12-20.
23056
23057 1999-12-19  Jim Meyering  <meyering@ascend.com>
23058
23059         * m4/lstat-slash.m4: New file.
23060         * m4/jm-macros.m4: Use the new macro:
23061         jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
23062
23063 1999-12-07  Jim Meyering  <meyering@ascend.com>
23064
23065         * m4/perl.m4: Require that File::Compare be available, too.
23066         Too many systems seem to lack it.
23067
23068         * m4/strftime.m4: Add checks for most of the cpp macros tested in
23069         GNU's strftime.c.  Prompted by a patch from Paul Eggert.
23070
23071 1999-11-18  Paul Eggert  <eggert@twinsun.com>
23072
23073         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around a
23074         problem with the QNX 4.25 shell, which doesn't propagate exit
23075         status of failed commands inside shell assignments.
23076
23077 1999-11-17  Jim Meyering  <meyering@ascend.com>
23078
23079         * m4/gettext.m4: Use new AC_CONFIG_LINKS in place of AC_LINK_FILES.
23080
23081 1999-11-07  Jim Meyering  <meyering@ascend.com>
23082
23083         * m4/getloadavg.m4: Add `, 1, [FIXME]' to each use of AC_DEFINE.
23084
23085 1999-11-06  Jim Meyering  <meyering@ascend.com>
23086
23087         * m4/link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): New file/macro.
23088         * m4/jm-macros.m4 (jm_MACROS): Use it here.
23089
23090 1999-11-05  Jim Meyering  <meyering@ascend.com>
23091
23092         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Move some tests from
23093         configure.in of textutils, fileutils, and sh-utils into this one
23094         (shared between those packages) file.
23095         Use `AC_CHECK_MEMBERS((struct stat.st_blksize))' instead of deprecated
23096         AC_STRUCT_ST_BLKSIZE.
23097
23098 1999-11-03  Jim Meyering  <meyering@ascend.com>
23099
23100         * m4/ssize_t.m4: Remove file.  No longer needed since the new version
23101         of AC_CHECK_TYPE checks includes unistd.h.
23102         * m4/jm-macros.m4: Use straight `AC_CHECK_TYPE(ssize_t, int)'.
23103         Suggestion from Akim Demaille.
23104
23105 1999-10-30  Jim Meyering  <meyering@ascend.com>
23106
23107         * m4/uintmax_t.m4: Require 2.14a.  Remove backslash before backtick in
23108         m4-quoted string.
23109         * m4/ls-mntd-fs.m4: Likewise.
23110         * m4/jm-macros.m4: Likewise.  Also, use AC_TYPE_SSIZE_T instead
23111         * m4/jm-winsz1.m4: Likewise.
23112
23113         * m4/const.m4: Remove file, since the fix made it into the experimental
23114         version of autoconf.
23115         * m4/mktime.m4: Likewise.
23116
23117         * m4/check-type.m4: Remove file, now that the latest version of
23118         AC_CHECK_TYPE takes a third arg to specify additional #includes.
23119
23120         * m4/ssize_t.m4: New file, requires experimental version of autoconf.
23121         * m4/jm-macros.m4: Use new AC_TYPE_SSIZE_T instead of my hacked
23122         AC_CHECK_TYPE.
23123
23124 1999-10-04  Jim Meyering  <meyering@ascend.com>
23125
23126         * m4/jm-macros.m4: Don't require autoconf-2.14.1.
23127
23128 1999-09-22  Paul Eggert  <eggert@twinsun.com>
23129
23130         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around GCC
23131         2.95.1 bug with HP-UX 10.20.
23132
23133 1999-09-17  Jim Meyering  <meyering@ascend.com>
23134
23135         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add strdup.
23136         Paul Nevai reported a link failure on a NeXT CUBE with NeXTSTEP 3.3
23137         due to missing strdup (against sh-utils-2.0).
23138
23139 1999-08-29  Jim Meyering  <meyering@ascend.com>
23140
23141         * m4/jm-macros.m4: Require jm_BISON.
23142         * m4/bison.m4: New file.
23143
23144 1999-08-17  Paul Eggert  <eggert@twinsun.com>
23145
23146         * m4/largefile.m4 (AC_SYS_LARGEFILE): Fix typo: missing comma
23147         in value for _FILE_OFFSET_BITS, which broke ports to HP-UX 10.20.
23148
23149 1999-08-05  Jim Meyering  <meyering@ascend.com>
23150
23151         * m4/getline.m4: Rename test file from conftestdata to conftest.data
23152         to avoid conflicts with `conftest' on 8+3 filesystems.
23153         Suggestion from Eli Zaretskii.
23154
23155 1999-08-04  Jim Meyering  <meyering@ascend.com>
23156
23157         * m4/jm-macros.m4: Move a 4-line block of code from the configure.in of
23158         fileutils and sh-utils (textutils's getline test was inadequate).
23159         (AM_FUNC_GETLINE): Run this test.
23160         (AC_CHECK_FUNCS): Check for getdelim.
23161         Reported by Bob Proulx.
23162
23163 1999-08-02  Jim Meyering  <meyering@ascend.com>
23164
23165         * m4/jm-macros.m4: Add a comment.
23166
23167 1999-08-01  Paul Eggert  <eggert@twinsun.com>
23168
23169         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check whether
23170         <inttypes.h> defines strtoumax as a macro (and not as a
23171         function).
23172
23173 1999-08-01  Paul Eggert  <eggert@twinsun.com>
23174
23175         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Make sure
23176         that we can shift, multiply and divide unsigned long long
23177         values; Ultrix cc can't do it.
23178
23179 1999-08-01  Paul Eggert  <eggert@twinsun.com>
23180
23181         * m4/mktime.m4: New file, which is a preview of what should appear
23182         in the next public autoconf release.
23183
23184 1999-08-01  Paul Eggert  <eggert@twinsun.com>
23185
23186         * m4/lfs.m4: Remove this file.
23187         * m4/largefile.m4: New file.  It contains the old contents of
23188         lfs.m4, except that all names with prefix AC_LFS have been
23189         changed to use the prefix AC_SYS_LARGEFILE instead, to be
23190         compatible with future autoconf versions.  Also, some minor m4
23191         quoting problems have been fixed.
23192
23193 1999-08-01  Paul Eggert  <eggert@twinsun.com>
23194
23195         * m4/gettext.m4 (AM_WITH_NLS): Remove unnecessary lines.
23196         Fix typo: $nls_cv_header_intl was misspelled as $nsl_cv_header_intl.
23197         (AM_GNU_GETTEXT): Fix problem with brackets and m4 quoting,
23198         and simplify the shell code.
23199
23200 1999-08-01  Jim Meyering  <meyering@ascend.com>
23201
23202         * m4/mktime.m4 (AC_FUNC_MKTIME): Undefine to avoid syntax errors from
23203         m4.
23204
23205 1999-07-20  Jim Meyering  <meyering@ascend.com>
23206
23207         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memmove.
23208
23209 1999-07-15  Jim Meyering  <meyering@ascend.com>
23210
23211         * m4/jm-macros.m4 (AC_CHECK_FUNCS): Check for getpagesize.
23212
23213 1999-05-22  Jim Meyering  <meyering@ascend.com>
23214
23215         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memchr.
23216
23217 1999-05-20  Jim Meyering  <meyering@ascend.com>
23218
23219         * m4/search-libs.m4 [AC_SEARCH_LIBS]: Quote name in undefine.
23220         Add a colon after each `then' in case $4 is empty.
23221
23222 1999-05-16  Jim Meyering  <meyering@ascend.com>
23223
23224         * m4/search-libs.m4: New file to override autoconf's AC_SEARCH_LIBS.
23225
23226 1999-05-10  Jim Meyering  <meyering@ascend.com>
23227
23228         * m4/jm-mktime.m4: Reflect renaming: AM_FUNC_MKTIME -> AC_FUNC_MKTIME.
23229
23230         * m4/jm-macros.m4: Require 2.14.1, since we use newly-renamed
23231         AC_FUNC_MKTIME.
23232
23233 1999-05-10  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
23234
23235         * m4/jm-mktime.m4, putenv.m4: Fix typos in config.h comments.
23236
23237 1999-05-04  Paul Eggert  <eggert@twinsun.com>
23238
23239         * m4/lfs.m4 (AC_LFS): -n32, -o32, and -n64 should be in CFLAGS,
23240         not CPPFLAGS, so that linking works correctly in IRIX.
23241
23242 1999-04-30  Paul Eggert  <eggert@twinsun.com>
23243
23244         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add dup2.
23245
23246 1999-04-20  Paul Eggert  <eggert@twinsun.com>
23247
23248         * m4/uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Move unsigned long
23249         long check into new jm_AC_TYPE_UNSIGNED_LONG_LONG macro.
23250         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require
23251         jm_AC_TYPE_UNSIGNED_LONG_LONG.
23252         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): New file/macro.
23253
23254         * m4/lfs.m4: Port to AIX and HP-UX.  Support cross-compilation.
23255
23256 1999-04-20  Jim Meyering  <meyering@ascend.com>
23257
23258         * m4/xstrtoumax.m4: Require jm_AC_TYPE_UNSIGNED_LONG_LONG.
23259         AC_REPLACE xstroull if necessary.  From Paul Eggert.
23260         (AC_CHECK_FUNCS): Remove strtoull, strtoumax, strtouq.
23261
23262 1999-04-18  Jim Meyering  <meyering@ascend.com>
23263
23264         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): New file/macro.
23265         * m4/jm-macros.m4: Use it.
23266
23267 1999-04-06  Jim Meyering  <meyering@ascend.com>
23268
23269         * m4/strftime.m4: Remove test for %f.
23270
23271 1999-03-29  Jim Meyering  <meyering@ascend.com>
23272
23273         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): New macro, contains the
23274         superset of the AC_TYPE_* checks in the textutils, fileutils,
23275         and sh-utils, plus AC_TYPE_PID_T.  Paul Eggert suggested adding
23276         AC_TYPE_PID_T.
23277
23278 1999-03-28  Jim Meyering  <meyering@ascend.com>
23279
23280         * m4/jm-macros.m4: Define GNU_PACKAGE here.
23281         Be sure to AC_SUBST it, once again, so that @GNU_PACKAGE@ is
23282         replaced e.g., in the *.sh files of the sh-utils.
23283
23284 1999-03-20  Jim Meyering  <meyering@ascend.com>
23285
23286         * m4/jm-macros.m4: s/jm_WITH_REGEX/jm_INCLUDED_REGEX/.
23287         * m4/regex.m4 (jm_INCLUDED_REGEX): Rename from jm_WITH_REGEX.
23288         Don't depend on AM_GLIBC.  Suggestions from Alain Magloire.
23289
23290 1999-03-19  Jim Meyering  <meyering@ascend.com>
23291
23292         * m4/jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): New macro.
23293
23294 1999-03-12  Jim Meyering  <meyering@ascend.com>
23295
23296         * m4/jm-macros.m4: Use AC_FUNC_SETVBUF_REVERSED.
23297
23298 1999-03-07  Jim Meyering  <meyering@ascend.com>
23299
23300         * m4/jm-glibc-io.m4: Use only those *_unlocked macros that are
23301         declared.
23302
23303 1999-02-17  Jim Meyering  <meyering@ascend.com>
23304
23305         * m4/gettext.m4 (AM_GNU_GETTEXT): Do `changequote' around use of
23306         brackets in macro definition.  From Eli Zaretskii and Alain Magloire.
23307
23308 1999-02-07  Jim Meyering  <meyering@ascend.com>
23309
23310         * m4/group-member.m4: New file -- extracted from sh-utils'
23311         configure.in.
23312
23313         1999-02-05  Eli Zaretskii  <eliz@is.elta.co.il>
23314         * m4/gettext.m4: Support DOS-style d:/foo/bar absolute file names.
23315
23316 1999-02-06  Jim Meyering  <meyering@ascend.com>
23317
23318         * m4/chown.m4: Use `AC_SUBST(LIBOBJS)' since we set LIBOBJS.
23319         * m4/fnmatch.m4: Likewise.
23320         * m4/getgroups.m4: Likewise.
23321         * m4/lstat.m4: Likewise.
23322         * m4/malloc.m4: Likewise.
23323         * m4/putenv.m4: Likewise.
23324         * m4/realloc.m4: Likewise.
23325         * m4/regex.m4: Likewise.
23326         * m4/stat.m4: Likewise.
23327         * m4/strftime.m4: Likewise.
23328         Suggestion from Alain Magloire.
23329
23330         * m4/chown.m4: Use `.$ac_objext', not `.o'.
23331         * m4/fnmatch.m4: Likewise.
23332         * m4/getgroups.m4: Likewise.
23333         * m4/getline.m4: Likewise.
23334         * m4/lstat.m4: Likewise.
23335         * m4/malloc.m4: Likewise.
23336         * m4/memcmp.m4: Likewise.
23337         * m4/putenv.m4: Likewise.
23338         * m4/realloc.m4: Likewise.
23339         * m4/regex.m4: Likewise.
23340         * m4/stat.m4: Likewise.
23341         * m4/strftime.m4: Likewise.
23342         Suggestion from Alain Magloire.
23343
23344         * m4/jm-macros.m4: Actually invoke jm_WITH_REGEX now that it requires
23345         an argument.
23346
23347         * m4/regex.m4: Add a run-time Test for proper operation of
23348         re_compile_pattern.
23349
23350 1999-01-31  Jim Meyering  <meyering@ascend.com>
23351
23352         * m4/getloadavg.m4: Check for locale.h and the function, setlocale.
23353
23354 1999-01-30  Jim Meyering  <meyering@ascend.com>
23355
23356         * m4/check-type.m4: Use 3-arg form of AC_DEFINE.
23357
23358         * m4/jm-mktime.m4: Make this a wrapper around the official
23359         AM_FUNC_MKTIME rather than my private copy, now that the official one
23360         is up to date.
23361         * m4/mktime.m4: Remove file.
23362
23363         * m4/getloadavg.m4: Use 3-arg form of AC_DEFINE.
23364         * m4/uptime.m4: Likewise.
23365         * m4/uintmax_t.m4: Likewise.
23366
23367 1999-01-28  Jim Meyering  <meyering@ascend.com>
23368
23369         * m4/jm-macros.m4: Use jm_AFS.
23370         * m4/afs.m4: New file (from fileutils' configure.in).
23371
23372         * m4/assert.m4: Use the 3-argument forms of AC_DEFINE* macros.
23373         * m4/chown.m4: Likewise.
23374         * m4/d-ino.m4: Likewise.
23375         * m4/d-type.m4: Likewise.
23376         * m4/fnmatch.m4: Likewise.
23377         * m4/getgroups.m4: Likewise.
23378         * m4/gettext.m4: Likewise.
23379         * m4/jm-mktime.m4: Likewise.
23380         * m4/jm-winsz2.m4: Likewise.
23381         * m4/lcmessage.m4: Likewise.
23382         * m4/ls-mntd-fs.m4: Likewise.
23383         * m4/malloc.m4: Likewise.
23384         * m4/memcmp.m4: Likewise.
23385         * m4/putenv.m4: Likewise.
23386         * m4/realloc.m4: Likewise.
23387         * m4/st_mtim.m4: Likewise.
23388         * m4/strftime.m4: Likewise.
23389
23390 1999-01-16  Jim Meyering  <meyering@ascend.com>
23391
23392         * m4/jm-macros.m4 (ARGMATCH_DIE): Define.
23393         (ARGMATCH_DIE_DECL): Define.
23394
23395 1999-01-12  Jim Meyering  <meyering@ascend.com>
23396
23397         * m4/Makefile.am.in: Rewrite to avoid using fmt.
23398         Reported by Lars Hecking.
23399
23400 1999-01-10  Jim Meyering  <meyering@ascend.com>
23401
23402         * m4/fstypename.m4: Use the new 3-arg form of AC_DEFINE instead of my
23403         gross kludge.
23404         * m4/inttypes_h.m4: Likewise.
23405         * m4/lstat.m4: Likewise.
23406         * m4/malloc.m4: Likewise.
23407         * m4/readdir.m4: Likewise.
23408         * m4/realloc.m4: Likewise.
23409         * m4/st_dm_mode.m4: Likewise.
23410         * m4/stat.m4: Likewise.
23411         * m4/utimbuf.m4: Likewise.
23412         * m4/utimes.m4: Likewise.
23413
23414         * m4/check-decl.m4: Use the new 3-arg form of AC_DEFINE instead of the
23415         AC_CHECK_FUNCS hack.  Now, it's still a hack, but at least the
23416         comments in config.h.in are meaningful.
23417
23418         * m4/jm-macros.m4: Require autoconf-2.13 here.
23419
23420         * m4/regex.m4: By default, don't use the included regex.c on systems
23421         with glibc 2.  Suggestion from Uli Drepper.
23422
23423 1999-01-02  Jim Meyering  <meyering@ascend.com>
23424
23425         * m4/jm-macros.m4: Replace strcasecmp and strncasecmp.
23426
23427 1998-12-18  Jim Meyering  <meyering@ascend.com>
23428
23429         * m4/Makefile.am.in (Makefile.am): Simplify rule.
23430         Based on a suggestion from Lars Hecking.
23431
23432 1998-11-16  Paul Eggert  <eggert@twinsun.com>
23433
23434         * m4/lfs.m4 (AC_LFS): Add support for HP-UX 10.20 and HP-UX 11.
23435
23436 1998-11-16  Jim Meyering  <meyering@ascend.com>
23437
23438         * m4/lfs.m4: Double-quote the `uname...` expression.
23439
23440 1998-11-14  Jim Meyering  <meyering@ascend.com>
23441
23442         * m4/lstat.m4: Correct comment.  POSIX does not permit it to succeed.
23443         * m4/stat.m4: Likewise.
23444
23445 1998-11-03  Jim Meyering  <meyering@ascend.com>
23446
23447         * m4/stat.m4: Rewrite to set HAVE_STAT_EMPTY_STRING_BUG.
23448         * m4/lstat.m4: Rewrite to set HAVE_LSTAT_EMPTY_STRING_BUG.
23449
23450 1998-10-18  Jim Meyering  <meyering@ascend.com>
23451
23452         * m4/check-decl.m4 (jm_CHECK_DECL_LOCALTIME_R): Remove macro.
23453
23454 1998-10-17  Jim Meyering  <meyering@ascend.com>
23455
23456         * m4/decl.m4 (jm_CHECK_DECLARATION): Don't hard-code which headers to
23457         include, though we still hard-code the `require'-like AC_CHECK_HEADERS
23458         calls for those previously hard-coded headers.  Instead, take a new
23459         parameter.
23460         (jm_CHECK_DECLARATIONS): Reflect interface change.
23461         * m4/check-decl.m4 (jm_CHECK_DECLS): Likewise.
23462         (jm_CHECK_DECL_LOCALTIME_R): New macro.
23463
23464         * m4/mktime.m4: Test for spring-forward gap before long-running test.
23465
23466 1998-10-14  Jim Meyering  <meyering@ascend.com>
23467
23468         * m4/mktime.m4: Use the more portable "TZ=PST8PDT,M4.1.0,M10.5.0"
23469         instead of "TZ=America/Vancouver".  From Paul Eggert.
23470
23471 1998-10-11  Jim Meyering  <meyering@ascend.com>
23472
23473         * m4/mktime.m4 (jm_AM_FUNC_MKTIME): New file and macro.
23474         This adds a test for a recently added compatibility fix for mktime.c.
23475         * m4/jm-mktime.m4: Require jm_AM_FUNC_MKTIME, not AM_FUNC_MKTIME.
23476
23477 1998-09-27  Jim Meyering  <meyering@ascend.com>
23478
23479         * m4/jm-macros.m4 (jm_MACROS): Require jm_FUNC_FNMATCH.
23480
23481         * m4/fnmatch.m4 (jm_FUNC_FNMATCH): New file/macro.  Extracted from
23482         ../configure.in, including a change from Gordon Matzigkeit to allow
23483         cross-compiling for the Hurd.
23484
23485         * m4/glibc.m4: New file/macro to test for the GNU C Library
23486         versions 1 and 2.  From Gordon Matzigkeit.
23487         Indent.
23488
23489 1998-09-21  Jim Meyering  <meyering@ascend.com>
23490
23491         * m4/chown.m4: Declare locals: before, after.  From Andries Brouwer.
23492
23493 1998-08-18  Paul Eggert  <eggert@twinsun.com>
23494
23495         Port nanosecond-resolution times to UnixWare 2.1.2 and
23496         pedantic Solaris 2.6.
23497
23498         * m4/st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC): Renamed from
23499         AC_STRUCT_ST_MTIM.
23500         * m4/st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC):
23501         Generate name of ns member, instead of just 1 or undef.
23502         Allow for UnixWare 2.1.2 and Solaris 2.6 if in pedantic mode.
23503
23504 1998-08-15  Jim Meyering  <meyering@ascend.com>
23505
23506         * m4/ssize_t.m4 (jm_TYPE_SSIZE_T): Remove file.
23507         * m4/check-type.m4: New file.  Replacement for AC_CHECK_TYPE.
23508         * m4/jm-macros.m4: Use the new AC_CHECK_TYPE(ssize_t, int)
23509         instead of jm_TYPE_SSIZE_T.
23510
23511 1998-08-12  Jim Meyering  <meyering@ascend.com>
23512
23513         * m4/st_dm_mode.m4: New file.  From Johan Danielsson.
23514
23515 1998-08-02  Jim Meyering  <meyering@ascend.com>
23516
23517         * m4/st_mtim.m4: Use hack to avoid having to put #undef HAVE_ST_MTIM
23518         in acconfig.h manually.
23519
23520 1998-07-31  Paul Eggert  <eggert@twinsun.com>
23521
23522         * m4/st_mtim.m4: New file.
23523
23524 1998-07-28  Jim Meyering  <meyering@ascend.com>
23525
23526         * m4/utimes.m4: Undef stat.
23527
23528 1998-07-25  Jim Meyering  <meyering@ascend.com>
23529
23530         * m4/utime.m4 (jm_FUNC_UTIME): New file and macro.
23531         * m4/utimes.m4 (jm_FUNC_UTIMES_NULL): New file and macro.
23532
23533 1998-07-09  Manfred Hollstein  <manfred@s-direktnet.de>
23534
23535         * m4/chown.m4 (jm_FUNC_CHOWN): Add a check to verify that the
23536         uid and gid actually remain unchanged.
23537
23538 1998-07-07  Jim Meyering  <meyering@ascend.com>
23539
23540         * m4/jm-glibc-io.m4: Remove fclose_unlocked.
23541
23542 1998-07-04  Jim Meyering  <meyering@ascend.com>
23543
23544         * m4/regex.m4: Use syscmd, ifelse, and sysval.  Mainly as an exercise
23545         to prove that this macro can be used in packages without regex.c.
23546
23547 1998-07-04  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
23548
23549         * m4/gettext.m4 (AM_WITH_NLS): Remove intl/libintl.h if <libintl.h>
23550         is to be used.
23551
23552 1998-07-03  Jim Meyering  <meyering@ascend.com>
23553
23554         * m4/gettext.m4: Add -lintl if it's found to be necessary.
23555
23556         * m4/gettext.m4: New file -- from gettext-0.10.35.
23557         * m4/lcmessage.m4: Likewise.
23558         * m4/progtest.m4: Likewise.
23559
23560         * m4/regex.m4 (jm_WITH_REGEX): New file and macro.
23561         * m4/jm-macros.m4: Require the new macro.
23562
23563 1998-06-29  Jim Meyering  <meyering@ascend.com>
23564
23565         * m4/fstypename.m4: Include sys/param.h.  NetBSD 1.3.1 requires this
23566         for the definition of NGROUPS (used in a system header included
23567         by sys/mount.h).
23568
23569 1998-06-28  Jim Meyering  <meyering@ascend.com>
23570
23571         * m4/ls-mntd-fs.m4: New file.
23572         * m4/fstypename.m4: New file.
23573
23574         * m4/jm-macros.m4: Require the new macro.
23575         * m4/jm-glibc-io.m4: New file.
23576
23577 1998-05-19  Jim Meyering  <meyering@ascend.com>
23578
23579         * m4/jm-macros.m4: Add jm_FUNC_LCHOWN.
23580         * m4/lchown.m4: New file.
23581
23582         * m4/Makefile.am.in: New file.
23583         * m4/Makefile.am (Makefile.am): Depend on Makefile.am.in.
23584
23585 1998-05-14  Jim Meyering  <meyering@ascend.com>
23586
23587         * m4/Makefile.am (EXTRA_DIST): Add them.
23588         * m4/jm-macros.m4: New file.
23589         * m4/utimbuf.m4: New file.
23590
23591 1998-05-12  Jim Meyering  <meyering@ascend.com>
23592
23593         * m4/Makefile.am (EXTRA_DIST): Add isc-posix.m4.
23594
23595 1998-05-11  Jim Meyering  <meyering@ascend.com>
23596
23597         * m4/isc-posix.m4: New file.
23598
23599 1998-05-10  Jim Meyering  <meyering@ascend.com>
23600
23601         * m4/jm-mktime.m4: Use AM_FUNC_MKTIME, now that it's up to date.
23602
23603 1998-05-09  Jim Meyering  <meyering@ascend.com>
23604
23605         * m4/Makefile.am (EXTRA_DIST): Add ssize_t.m4.
23606         (EXTRA_DIST): Remove mktime.m4, now that the new version is included
23607         with automake.
23608
23609         * m4/ssize_t.m4: New file.
23610         * m4/mktime.m4: Remove file -- the new automake has this now.
23611
23612 1998-04-26  Jim Meyering  <meyering@ascend.com>
23613
23614         * m4/assert.m4: New file.
23615         * m4/Makefile.am (EXTRA_DIST): Add assert.m4.
23616
23617 1998-04-05  Jim Meyering  <meyering@ascend.com>
23618
23619         * m4/prereq.m4 (jm_PREREQ_REGEX): New macro.
23620         (jm_PREREQ): Use it here.
23621
23622 1998-03-23  Jim Meyering  <meyering@eng.ascend.com>
23623
23624         * m4/inttypes_h.m4: Kludges so I don't have to add HAVE_INTTYPES_H
23625         in acconfig.h.
23626
23627 1998-03-15  Jim Meyering  <meyering@eng.ascend.com>
23628
23629         * m4/prereq.m4: New file.
23630         * m4/error.m4: New file.
23631         * m4/Makefile.am (EXTRA_DIST): Add error.m4 and prereq.m4.
23632
23633 1998-02-07  Jim Meyering  <meyering@eng.ascend.com>
23634
23635         * m4/getline.m4: Don't set am_cv_func_working_getline before the
23636         cache-check for the same variable -- that defeated the purpose of
23637         the test; the test program was never run.  This was a problem only
23638         on systems with losing getline functions -- HP-UX 10.20 is one.
23639         Reported by Bjorn Helgaas.
23640
23641 1998-02-06  Jim Meyering  <meyering@eng.ascend.com>
23642
23643         * m4/Makefile.am (EXTRA_DIST): Add perl.m4.
23644
23645 1998-01-10  Jim Meyering  <meyering@na-net.ornl.gov>
23646
23647         * m4/Makefile.am (EXTRA_DIST): Add const.m4.
23648
23649         * m4/const.m4: New file.  Use an initializer in this declaration
23650         typedef int charset[2]; const charset x;
23651         Reported by Bob Glickstein.
23652
23653 1997-12-21  Jim Meyering  <meyering@na-net.ornl.gov>
23654
23655         * m4/chown.m4: Fix reversed types on -1 args to chown.
23656         From Kaveh Ghazi.
23657
23658 1997-12-14  Jim Meyering  <meyering@na-net.ornl.gov>
23659
23660         * m4/check-decl.m4: s/DECLARATION_/DECL_/g.
23661         Add lseek and memchr.
23662
23663         * m4/decl.m4: s/HAVE_DECLARATION_/HAVE_DECL_/g.
23664         T.E.Dickey <dickey@clark.net> said that some older preprocessors
23665         have a 20-character limit on names.
23666
23667 1997-11-30  Jim Meyering  <meyering@na-net.ornl.gov>
23668
23669         * m4/inttypes_h.m4: New file.
23670         * m4/uintmax_t.m4: New file.
23671         * m4/Makefile.am (EXTRA_DIST): Add inttypes_h.m4 and uintmax_t.m4.
23672
23673 Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006
23674   Free Software Foundation, Inc.
23675 Copying and distribution of this file, with or without modification,
23676 are permitted provided the copyright notice and this notice are preserved.