8825af1e2ead4e05cf83b4bacd218d14f41d381e
[gnulib.git] / ChangeLog
1 2007-01-18  Jim Meyering  <jim@meyering.net>
2
3         Use "$(MKDIR_P) sys", not race-prone "test -d sys || mkdir sys".
4         * modules/sys_stat (Makefile.am): Use "$(MKDIR_P) sys", rather
5         than the race-prone "test -d sys || mkdir sys".
6         (configure.ac): Use AC_PROG_MKDIR_P.
7         * modules/sys_select: Likewise.
8         * modules/sys_socket: Likewise.
9         * modules/sys_time: Likewise.
10
11 2007-01-18  Eric Blake  <ebb9@byu.net>
12
13         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Also
14         replace gettimeofday.
15         * lib/gettimeofday.c (rpl_gettimeofday): Declare with replacement
16         name, to avoid infinite recursion.
17
18 2007-01-17  Paul Eggert  <eggert@cs.ucla.edu>
19
20         * MODULES.html.sh (Support for systems lacking POSIX:2001): New
21         module sys_time.
22         * lib/gethrxtime.c: Include <sys/time.h>, since we can no longer
23         assume timespec.h defines struct timeval.
24         * lib/settime.c: Likewise.
25         * lib/utimens.c: Likewise.
26         * lib/gettime.c (gettime): Remove test against HAVE_GETTIMEOFDAY,
27         since we now assume the gettimeofday module.
28         * lib/tempname.c (__gen_tempname): Likewise.
29         * lib/gettimeofday.h: Remove.
30         * lib/gettimeofday.c: Include <sys/time.h> instead of "gettimeofday.h".
31         Don't include <sys/types.h> and <stdlib.h>; shouldn't be needed.
32         Include <time.h>, for 'time()'.
33         (localtime_buffer_addr): Also use this workaround if
34         TZSET_CLOBBERS_LOCALTIME.  Set to a dummy static variable by default,
35         to simplify the uses.  All uses changed.
36         (localtime, gmtime, tzset, gettimeofday): Reformat slightly so
37         that #undef is inside {}, and 'const' follows type name consistently.
38         (tzset): Define replacement only if TZSET_CLOBBERS_LOCALTIME.
39         (gettimeofday): Do not use the maximum possible value for
40         tv->tv_usec, since that might break usages other than ls.c.
41         Instead, we'll leave ls.c alone.  This undoes today's patch
42         by Bruno.  Add a compile-time warning for 1s-clock resolution;
43         we've never observed the problem but might as well keep the
44         canary.
45         * lib/nanosleep.c: Include timespec.h first, for interface check.
46         * lib/nanosleep.c: Include <sys/time.h> unconditionally, since we
47         now assume the sys_time module.
48         * lib/tempname.c: Likewise.
49         * lib/timespec.h: Likewise.
50         * lib/nanosleep.c: Don't worry about TIME_WITH_SYS_TIME; no longer
51         needed.
52         * lib/strftime.c: Likewise.
53         * lib/timespec.h: Likewise.
54         * lib/posixtm.c: Include posixtm.h first, for interface check.
55         Don't worry about TM_IN_SYS_TIME; that's wayyy obsolete.
56         * lib/posixtm.h: Include stdbool.h and time.h, for proper interface.
57         * lib/strftime.c: Don't include <sys/types.h>; shouldn't be needed.
58         * lib/sys_time_.h: New file.
59         * lib/timespec.h (struct timespec): Use long int, not long.
60         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY):
61         (gl_FUNC_GETTIMEOFDAY_CLOBBER, gl_PREREQ_GETTIMEOFDAY):
62         Remove obsolescent call to AC_HEADER_TIME.
63         * m4/mktime.m4 (AC_FUNC_MKTIME): Likewise.
64         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
65         * m4/strftime.m4 (gl_FUNC_STRFTIME): Likewise.
66         * m4/timespec.m4 (gl_TIMESPEC, gl_CHECK_TYPE_STRUCT_TIMESPEC):
67         Likewise.
68         * m4/tzset.m4 (gl_FUNC_TZSET_CLOBBER): Likewise.
69         * m4/utimbuf.m4 (gl_CHECK_TYPE_STRUCT_UTIMBUF): Likewise.
70         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): Move sys/time.h tests
71         into the sys_time module.  Check for gettimeofday just once.
72         Prefix our variables with gl_, not with ac_ or jm_.  Tighten test
73         for gettimeofday signature to just check the signature.  Merely
74         compile it, since linking doesn't test signature.  Improve test for
75         whether gettimeofday.o is actually needed.
76         (gl_FUNC_GETTIMEOFDAY_CLOBBER): Renamed from
77         AC_FUNC_GETTIMEOFDAY_CLOBBER.  All uses changed.  Use
78         AC_RUN_IFELSE rather than AC_TRY_RUN.  If clobbering, set
79         and define GETTIMEOFDAY_CLOBBERS_LOCALTIME.
80         (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Don't define
81         GETTIMEOFDAY_CLOBBERS_LOCALTIME; that's gl_FUNC_GETTIMEOFDAY_CLOBBER's
82         job.  Don't define tzset; that's gl_FUNC_TZSET_CLOBBER's job.
83         * m4/mktime.m4 (AC_FUNC_MKTIME): Just include <time.h> rather
84         than worrying about sys/time.h.
85         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
86         Don't bother worrying about TIME_WITH_SYS_TIME.
87         * m4/stat-time.m4 (gl_STAT_TIME): Likewise.
88         * m4/posixtm.m4 (gl_POSIXTM): Remove obsolescent call to AC_STRUCT_TM.
89         * m4/sys_time_h.m4: New file.
90         * m4/tzset.m4 (gl_FUNC_TZSET_CLOBBER): Require gl_HEADER_SYS_TIME_H.
91         Don't include sys/time.h.  Return from main rather than exiting.
92         Define TZSET_CLOBBERS_LOCALTIME, for consistency with other names;
93         all uses changed.
94         * modules/gethrxtime (Depends-on): Add sys_time.
95         * modules/gettime (Depends-on): Likewise.
96         * modules/gettimeofday (Depends-on): Likewise.
97         * modules/nanosleep (Depends-on): Likewise.
98         * modules/settime (Depends-on): Likewise.
99         * modules/tempname (Depends-on): Likewise.
100         * modules/utimens (Depends-on): Likewise.
101         * modules/gettimeofday (Files): Remove lib/gettimeofday.h.
102         (Include:) Change back to <sys/time.h>.
103         (Maintainer:) Add self.
104         * modules/sys_time: New file.
105         * modules/tempname (Depends-on): Add gettimeofday.
106         * tests/test-gettimeofday.c: Include <sys/time.h>
107         rather than gettimeofday.h.
108
109 2007-01-17  Bruno Haible  <bruno@clisp.org>
110
111         * gnulib-tool (func_get_license): Revert last patch. Instead, let
112         the license default to GPL.
113         (func_create_testdir): Don't complain if a module is LGPL and its
114         tests module depends on GPLed modules.
115
116 2007-01-17  Bruno Haible  <bruno@clisp.org>
117
118         * lib/gettimeofday.c (gettimeofday): Add code for the case
119         HAVE_GETTIMEOFDAY && !GETTIMEOFDAY_CLOBBERS_LOCALTIME. Use the
120         maximum possible value for tv->tv_usec, rather than the minimum one.
121
122 2005-10-08  Martin Lambers  <marlam@marlam.de>
123 2005-10-08  Paul Eggert  <eggert@cs.ucla.edu>
124 2007-01-16  Bruno Haible  <bruno@clisp.org>
125
126         * modules/gettimeofday (Files): Add lib/gettimeofday.h.
127         (configure.ac): Remove AC_FUNC_GETTIMEOFDAY_CLOBBER. Add
128         gl_FUNC_GETTIMEOFDAY.
129         (Include): Add gettimeofday.h.
130         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): New macro.
131         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Don't invoke gl_PREREQ_GETTIMEOFDAY.
132         (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Define
133         GETTIMEOFDAY_CLOBBERS_LOCALTIME. Invoke gl_PREREQ_GETTIMEOFDAY here.
134         (gl_PREREQ_GETTIMEOFDAY): Check for <sys/timeb.h> and _ftime.
135         * lib/gettimeofday.h: New file.
136         * lib/gettimeofday.c: Include <sys/timeb.h>.
137         (localtime_buffer_addr, rpl_localtime, rpl_gmtime, rpl_tzset): Define
138         only if GETTIMEOFDAY_CLOBBERS_LOCALTIME.
139         (rpl_gettimeofday) [!HAVE_GETTIMEOFDAY]: Use _ftime() when available;
140         fall back on time().
141
142         * tests/test-gettimeofday.c: New file.
143         * modules/gettimeofday-tests: New file.
144
145 2007-01-16  Eric Blake  <ebb9@byu.net>
146
147         * modules/fnmatch (Depends-on): Depend on wchar.
148         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Assume <wchar.h>.
149         * m4/fnmatch.m4: Likewise.
150         * modules/mbchar (Makefile.am): Assume <wchar.h>.
151         * m4/mbchar.m4: Likewise.
152         * modules/mbswidth (Depends-on): Depend on wchar.
153         * lib/mbswidth.c: Assume <wchar.h>.
154         * m4/mbswidth.m4: Likewise.
155         * modules/quotearg (Depends-on): Depend on wchar.
156         * lib/quotearg.c: Assume <wchar.h>.
157         * m4/quotearg.m4: Likewise.
158         * modules/regex (Depends-on): Depend on wchar.
159         * lib/regex_internal.h: Assume <wchar.h>.
160         * m4/regex.m4: Likewise.
161         * modules/stdint (Depends-on): Depend on wchar.
162         * lib/stdint_.h [!defined WCHAR_MIN]: Assume <wchar.h>.
163         * m4/stdint.m4: Likewise.
164         * tests/test-stdint.c [HAVE_WINT_T]: Likewise.
165         * modules/strftime (Depends-on): Depend on wchar.
166         * lib/strftime.c (DO_MULTIBYTE): Assume <wchar.h>.
167         * modules/strtol (Depends-on): Depend on wchar.
168         * lib/strtol.c: Assume <wchar.h>.
169         * modules/wcwidth (Depends-on): Depend on wchar.
170         * lib/wcwidth.h: Assume <wchar.h>.
171         * m4/wcwidth.m4: Likewise.
172
173 2007-01-16  Bruno Haible  <bruno@clisp.org>
174
175         * modules/csharpexec-script: New, created from...
176         * modules/csharpexec: ... this.
177
178 2007-01-16  Paolo Bonzini  <bonzini@gnu.org>
179
180         * modules/javaexec-script: New, created from...
181         * modules/javaexec: ... this.
182
183 2007-01-16  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
184
185         * modules/poll (Dependencies): Add sys_select.
186
187 2007-01-15  Jim Meyering  <jim@meyering.net>
188
189         * m4/readutmp.m4 (gl_READUTMP): Work around AIX 4.3 struct-
190         redefinition bug when using both <utmp.h> and <utmpx.h> headers.
191         * lib/readutmp.h: Likewise.  Reported by Daniel Richard G. in
192         <http://article.gmane.org/gmane.comp.gnu.core-utils.bugs/9415>.
193
194 2007-01-15  Bruno Haible  <bruno@clisp.org>
195
196         * modules/striconveh: New file.
197         * lib/striconveh.h: New file.
198         * lib/striconveh.c: New file.
199         * MODULES.html.sh (Internationalization functions): Add striconveh.
200
201         * modules/striconveh-tests: New file.
202         * tests/test-striconveh.c: New file.
203
204 2007-01-15  Bruno Haible  <bruno@clisp.org>
205
206         * lib/striconv.c (str_cd_iconv): Use the first algorithm if iconv is
207         not from GNU libiconv or GNU libc.
208
209 2007-01-15  Bruno Haible  <bruno@clisp.org>
210
211         * doc/gnulib-intro.texi (Copyright): Explain the different license
212         terms for module descriptions, autoconf macros, tests, documentation.
213
214 2007-01-14  Bruno Haible  <bruno@clisp.org>
215
216         * modules/striconv-tests: New file.
217         * tests/test-striconv.c: New file.
218
219 2007-01-14  Bruno Haible  <bruno@clisp.org>
220
221         * modules/iconv-tests: New file.
222         * tests/test-iconv.c: New file.
223
224 2007-01-14  Bruno Haible  <bruno@clisp.org>
225
226         * gnulib-tool (func_get_license): For test modules, use the license of
227         the main module.
228
229 2007-01-14  Bruno Haible  <bruno@clisp.org>
230
231         * modules/iconv (Include): Clarify that <iconv.h> can only be included
232         if iconv is found to exist.
233
234 2007-01-14  Bruno Haible  <bruno@clisp.org>
235
236         * modules/c-ctype-tests: New file.
237         * tests/test-c-ctype.c: New file.
238
239 2007-01-14  Bruno Haible  <bruno@clisp.org>
240
241         * modules/binary-io-tests: New file.
242         * tests/test-binary-io.sh: New file.
243         * tests/test-binary-io.c: New file.
244
245 2007-01-14  Bruno Haible  <bruno@clisp.org>
246
247         * modules/array-oset-tests: New file.
248         * tests/test-array_oset.c: New file.
249
250 2007-01-14  Bruno Haible  <bruno@clisp.org>
251
252         * modules/array-list-tests: New file.
253         * tests/test-array_list.c: New file.
254
255 2007-01-14  Bruno Haible  <bruno@clisp.org>
256
257         * gnulib-tool (func_create_testdir): Don't unnecessarily run configure
258         and make.
259         Reported by Simon Josefsson in
260         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00139.html>
261
262 2007-01-14  Bruno Haible  <bruno@clisp.org>
263
264         * modules/allocsa-tests: New file.
265         * tests/test-allocsa.c: New file.
266
267 2007-01-14  Bruno Haible  <bruno@clisp.org>
268
269         * modules/fchdir (Depends-on): Add absolute-header.
270         * modules/unistd (Depends-on): Likewise.
271
272 2006-12-30  Bruno Haible  <bruno@clisp.org>
273
274         * modules/fchdir: New file.
275         * modules/unistd (Files): Add lib/unistd_.h.
276         (Makefile.am): Generate unistd.h from unistd_.h.
277         * lib/fchdir.c: New file.
278         * lib/dirent_.h: New file.
279         * lib/unistd_.h: New file.
280         * lib/fcntl_.h (open) [FCHDIR_REPLACEMENT]: New replacement.
281         * m4/fchdir.m4: New file.
282         * m4/unistd_h.m4 (gl_PREREQ_UNISTD): New macro.
283         (gl_HEADER_UNISTD): Invoke it.
284         * lib/dup-safer.c (dup_safer) [FCHDIR_REPLACEMENT]: Use the dup
285         function.
286         * lib/backupfile.c (opendir, closedir): Undefine.
287         * lib/chown.c (open, close): Undefine.
288         * lib/clean-temp.c (open, close): Undefine.
289         * lib/copy-file.c (open, close): Undefine.
290         * lib/execute.c (open, close): Undefine.
291         * lib/fsusage.c (open, close): Undefine.
292         * lib/gc-gnulib.c (open, close): Undefine.
293         * lib/getcwd.c (opendir, closedir): Undefine.
294         * lib/glob.c (opendir, closedir): Undefine.
295         * lib/javacomp.c (open, close): Undefine.
296         * lib/mountlist.c (open, close, opendir, closedir): Undefine.
297         * lib/openat-proc.c (open, close): Undefine.
298         * lib/pagealign_alloc.c (open, close): Undefine.
299         * lib/pipe.c (open, close): Undefine.
300         * lib/progreloc.c (open, close): Undefine.
301         * lib/savedir.c (opendir, closedir): Undefine.
302         * lib/utime.c (open, close): Undefine.
303         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add fchdir.
304
305 2007-01-10  Bruno Haible  <bruno@clisp.org>
306
307         * lib/striconv.c (mem_cd_iconv): Align the temporary buffer.
308
309 2007-01-12  Eric Blake  <ebb9@byu.net>
310
311         Provide a robust <wchar.h>.  Further simplifications are now
312         possible in other modules, but not included here.
313         * modules/wchar: New module.
314         * m4/wchar.m4: New file.
315         * lib/wchar_.h: Likewise.
316         * modules/mbchar (Depends-on): Depend on wchar, as the first use
317         of the new module.
318         * MODULES.html.sh (Extended multibyte and wide character utilities):
319         New section.
320
321 2007-01-12  Paul Eggert  <eggert@cs.ucla.edu>
322
323         * lib/xreadlink.c (SYMLINK_MAX) [!defined SYMLINK_MAX]: Define
324         to a reasonable default for memory allocation.
325         (xreadlink): Don't allocate a huge buffer, to work around a buggy
326         file system that reports garbage st_size values for symlinks.
327         Problem reported by Liyang Hu.
328
329 2007-01-11  Simon Josefsson  <simon@josefsson.org>
330
331         * gnulib-tool (func_all_modules): Exclude all .* files (e.g.,
332         Emacs .#* auto-save files).
333
334 2007-01-11  Bruno Haible  <bruno@clisp.org>
335
336         * gnulib-tool (func_all_modules): Exclude all files inside the CVS
337         directory.
338
339 2007-01-10  Paul Eggert  <eggert@cs.ucla.edu>
340
341         Use @...@ consistently in lib/wctype_.h.
342         * lib/wctype_.h [HAVE_WINT_T]: Go back to using @...@, but rely
343         on it being set to 1 or 0.
344         * m4/wctype.m4 (gl_WCTYPE_H): Set HAVE_WINT_T to 1 or 0, and
345         go back to AC_SUBSTing it.
346         * modules/wctype (Makefile.am): Undo previous change.
347
348 2007-01-10  Eric Blake  <ebb9@byu.net>
349
350         * lib/wctype_.h [HAVE_WINT_T]: Rely on AC_DEFINE.
351         * m4/wctype.m4 (gl_WCTYPE_H): No need to AC_SUBST(HAVE_WINT_T).
352         * modules/wctype (Makefile.am): Likewise.
353         Reported by Chris McGuire.
354
355 2007-01-10  Jim Meyering  <jim@meyering.net>
356
357         fts.c: a small readability/maintainability improvement
358         * lib/fts.c (fts_read): Make this code slightly more readable and
359         maintainable by hoisting the "sp->fts_cur = p" assignments to
360         immediately follow the statements that set P.  Derived from
361         the patch by Miloslav Trmac in http://bugzilla.redhat.com/222089.
362
363 2007-01-10  Eric Blake  <ebb9@byu.net>
364
365         * lib/wctype_.h [HAVE_WINT_T]: Include <stddef.h> before
366         <wchar.h>, to work around BSDI bug in BSD/OS 4.0.1.
367         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
368         * m4/wint_t.m4 (gt_TYPE_WINT_T): Likewise.
369         Reported by Chris McGuire.
370
371 2007-01-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
372
373         * gnulib-tool (func_all_modules): Use POSIX conforming escaping
374         in sed script.
375
376 2007-01-09  Bruno Haible  <bruno@clisp.org>
377
378         * MODULES.html.sh: Accept options --cvs-urls, --git-urls.
379         (repo_url_prefix, repo_url_suffix, repo_url_suffix_repl): New
380         variables.
381         (func_module): Use them.
382
383 2007-01-09  Bruno Haible  <bruno@clisp.org>
384
385         * modules/unistr/base: New file.
386         * lib/unistr.h: New file.
387
388         * modules/unistr/u8-to-u16: New file.
389         * lib/unistr/u8-to-u16.c: New file.
390
391         * modules/unistr/u8-to-u32: New file.
392         * lib/unistr/u8-to-u32.c: New file.
393
394         * modules/unistr/u16-to-u8: New file.
395         * lib/unistr/u16-to-u8.c: New file.
396
397         * modules/unistr/u16-to-u32: New file.
398         * lib/unistr/u16-to-u32.c: New file.
399
400         * modules/unistr/u32-to-u8: New file.
401         * lib/unistr/u32-to-u8.c: New file.
402
403         * modules/unistr/u32-to-u16: New file.
404         * lib/unistr/u32-to-u16.c: New file.
405
406         * modules/unistr/u8-check: New file.
407         * modules/unistr/u16-check: New file.
408         * modules/unistr/u32-check: New file.
409         * lib/unistr/u8-check.c: New file.
410         * lib/unistr/u16-check.c: New file.
411         * lib/unistr/u32-check.c: New file.
412
413         * modules/unistr/u8-chr: New file.
414         * modules/unistr/u16-chr: New file.
415         * modules/unistr/u32-chr: New file.
416         * lib/unistr/u8-chr.c: New file.
417         * lib/unistr/u16-chr.c: New file.
418         * lib/unistr/u32-chr.c: New file.
419
420         * modules/unistr/u8-cmp: New file.
421         * modules/unistr/u16-cmp: New file.
422         * modules/unistr/u32-cmp: New file.
423         * lib/unistr/u8-cmp.c: New file.
424         * lib/unistr/u16-cmp.c: New file.
425         * lib/unistr/u32-cmp.c: New file.
426
427         * modules/unistr/u8-cpy: New file.
428         * modules/unistr/u16-cpy: New file.
429         * modules/unistr/u32-cpy: New file.
430         * lib/unistr/u8-cpy.c: New file.
431         * lib/unistr/u16-cpy.c: New file.
432         * lib/unistr/u32-cpy.c: New file.
433         * lib/unistr/u-cpy.h: New file.
434
435         * modules/unistr/u8-cpy-alloc: New file.
436         * modules/unistr/u16-cpy-alloc: New file.
437         * modules/unistr/u32-cpy-alloc: New file.
438         * lib/unistr/u8-cpy-alloc.c: New file.
439         * lib/unistr/u16-cpy-alloc.c: New file.
440         * lib/unistr/u32-cpy-alloc.c: New file.
441         * lib/unistr/u-cpy-alloc.h: New file.
442
443         * modules/unistr/u8-endswith: New file.
444         * modules/unistr/u16-endswith: New file.
445         * modules/unistr/u32-endswith: New file.
446         * lib/unistr/u8-endswith.c: New file.
447         * lib/unistr/u16-endswith.c: New file.
448         * lib/unistr/u32-endswith.c: New file.
449         * lib/unistr/u-endswith.h: New file.
450
451         * modules/unistr/u8-mblen: New file.
452         * modules/unistr/u16-mblen: New file.
453         * modules/unistr/u32-mblen: New file.
454         * lib/unistr/u8-mblen.c: New file.
455         * lib/unistr/u16-mblen.c: New file.
456         * lib/unistr/u32-mblen.c: New file.
457
458         * modules/unistr/u8-mbtouc: New file.
459         * modules/unistr/u16-mbtouc: New file.
460         * modules/unistr/u32-mbtouc: New file.
461         * lib/unistr/u8-mbtouc.c: New file.
462         * lib/unistr/u16-mbtouc.c: New file.
463         * lib/unistr/u32-mbtouc.c: New file.
464
465         * modules/unistr/u8-mbtouc-safe: New file.
466         * modules/unistr/u16-mbtouc-safe: New file.
467         * modules/unistr/u32-mbtouc-safe: New file.
468         * lib/unistr/u8-mbtouc-safe.c: New file.
469         * lib/unistr/u16-mbtouc-safe.c: New file.
470         * lib/unistr/u32-mbtouc-safe.c: New file.
471
472         * modules/unistr/u8-move: New file.
473         * modules/unistr/u16-move: New file.
474         * modules/unistr/u32-move: New file.
475         * lib/unistr/u8-move.c: New file.
476         * lib/unistr/u16-move.c: New file.
477         * lib/unistr/u32-move.c: New file.
478         * lib/unistr/u-move.h: New file.
479
480         * modules/unistr/u8-next: New file.
481         * modules/unistr/u16-next: New file.
482         * modules/unistr/u32-next: New file.
483         * lib/unistr/u8-next.c: New file.
484         * lib/unistr/u16-next.c: New file.
485         * lib/unistr/u32-next.c: New file.
486
487         * modules/unistr/u8-prev: New file.
488         * modules/unistr/u16-prev: New file.
489         * modules/unistr/u32-prev: New file.
490         * lib/unistr/u8-prev.c: New file.
491         * lib/unistr/u16-prev.c: New file.
492         * lib/unistr/u32-prev.c: New file.
493
494         * modules/unistr/u8-set: New file.
495         * modules/unistr/u16-set: New file.
496         * modules/unistr/u32-set: New file.
497         * lib/unistr/u8-set.c: New file.
498         * lib/unistr/u16-set.c: New file.
499         * lib/unistr/u32-set.c: New file.
500         * lib/unistr/u-set.h: New file.
501
502         * modules/unistr/u8-startswith: New file.
503         * modules/unistr/u16-startswith: New file.
504         * modules/unistr/u32-startswith: New file.
505         * lib/unistr/u8-startswith.c: New file.
506         * lib/unistr/u16-startswith.c: New file.
507         * lib/unistr/u32-startswith.c: New file.
508         * lib/unistr/u-startswith.h: New file.
509
510         * modules/unistr/u8-stpcpy: New file.
511         * modules/unistr/u16-stpcpy: New file.
512         * modules/unistr/u32-stpcpy: New file.
513         * lib/unistr/u8-stpcpy.c: New file.
514         * lib/unistr/u16-stpcpy.c: New file.
515         * lib/unistr/u32-stpcpy.c: New file.
516         * lib/unistr/u-stpcpy.h: New file.
517
518         * modules/unistr/u8-stpncpy: New file.
519         * modules/unistr/u16-stpncpy: New file.
520         * modules/unistr/u32-stpncpy: New file.
521         * lib/unistr/u8-stpncpy.c: New file.
522         * lib/unistr/u16-stpncpy.c: New file.
523         * lib/unistr/u32-stpncpy.c: New file.
524         * lib/unistr/u-stpncpy.h: New file.
525
526         * modules/unistr/u8-strcat: New file.
527         * modules/unistr/u16-strcat: New file.
528         * modules/unistr/u32-strcat: New file.
529         * lib/unistr/u8-strcat.c: New file.
530         * lib/unistr/u16-strcat.c: New file.
531         * lib/unistr/u32-strcat.c: New file.
532         * lib/unistr/u-strcat.h: New file.
533
534         * modules/unistr/u8-strchr: New file.
535         * modules/unistr/u16-strchr: New file.
536         * modules/unistr/u32-strchr: New file.
537         * lib/unistr/u8-strchr.c: New file.
538         * lib/unistr/u16-strchr.c: New file.
539         * lib/unistr/u32-strchr.c: New file.
540
541         * modules/unistr/u8-strcmp: New file.
542         * modules/unistr/u16-strcmp: New file.
543         * modules/unistr/u32-strcmp: New file.
544         * lib/unistr/u8-strcmp.c: New file.
545         * lib/unistr/u16-strcmp.c: New file.
546         * lib/unistr/u32-strcmp.c: New file.
547
548         * modules/unistr/u8-strcpy: New file.
549         * modules/unistr/u16-strcpy: New file.
550         * modules/unistr/u32-strcpy: New file.
551         * lib/unistr/u8-strcpy.c: New file.
552         * lib/unistr/u16-strcpy.c: New file.
553         * lib/unistr/u32-strcpy.c: New file.
554         * lib/unistr/u-strcpy.h: New file.
555
556         * modules/unistr/u8-strcspn: New file.
557         * modules/unistr/u16-strcspn: New file.
558         * modules/unistr/u32-strcspn: New file.
559         * lib/unistr/u8-strcspn.c: New file.
560         * lib/unistr/u16-strcspn.c: New file.
561         * lib/unistr/u32-strcspn.c: New file.
562         * lib/unistr/u-strcspn.h: New file.
563
564         * modules/unistr/u8-strdup: New file.
565         * modules/unistr/u16-strdup: New file.
566         * modules/unistr/u32-strdup: New file.
567         * lib/unistr/u8-strdup.c: New file.
568         * lib/unistr/u16-strdup.c: New file.
569         * lib/unistr/u32-strdup.c: New file.
570         * lib/unistr/u-strdup.h: New file.
571
572         * modules/unistr/u8-strlen: New file.
573         * modules/unistr/u16-strlen: New file.
574         * modules/unistr/u32-strlen: New file.
575         * lib/unistr/u8-strlen.c: New file.
576         * lib/unistr/u16-strlen.c: New file.
577         * lib/unistr/u32-strlen.c: New file.
578         * lib/unistr/u-strlen.h: New file.
579
580         * modules/unistr/u8-strmblen: New file.
581         * modules/unistr/u16-strmblen: New file.
582         * modules/unistr/u32-strmblen: New file.
583         * lib/unistr/u8-strmblen.c: New file.
584         * lib/unistr/u16-strmblen.c: New file.
585         * lib/unistr/u32-strmblen.c: New file.
586
587         * modules/unistr/u8-strmbtouc: New file.
588         * modules/unistr/u16-strmbtouc: New file.
589         * modules/unistr/u32-strmbtouc: New file.
590         * lib/unistr/u8-strmbtouc.c: New file.
591         * lib/unistr/u16-strmbtouc.c: New file.
592         * lib/unistr/u32-strmbtouc.c: New file.
593
594         * modules/unistr/u8-strncat: New file.
595         * modules/unistr/u16-strncat: New file.
596         * modules/unistr/u32-strncat: New file.
597         * lib/unistr/u8-strncat.c: New file.
598         * lib/unistr/u16-strncat.c: New file.
599         * lib/unistr/u32-strncat.c: New file.
600         * lib/unistr/u-strncat.h: New file.
601
602         * modules/unistr/u8-strncmp: New file.
603         * modules/unistr/u16-strncmp: New file.
604         * modules/unistr/u32-strncmp: New file.
605         * lib/unistr/u8-strncmp.c: New file.
606         * lib/unistr/u16-strncmp.c: New file.
607         * lib/unistr/u32-strncmp.c: New file.
608
609         * modules/unistr/u8-strncpy: New file.
610         * modules/unistr/u16-strncpy: New file.
611         * modules/unistr/u32-strncpy: New file.
612         * lib/unistr/u8-strncpy.c: New file.
613         * lib/unistr/u16-strncpy.c: New file.
614         * lib/unistr/u32-strncpy.c: New file.
615         * lib/unistr/u-strncpy.h: New file.
616
617         * modules/unistr/u8-strnlen: New file.
618         * modules/unistr/u16-strnlen: New file.
619         * modules/unistr/u32-strnlen: New file.
620         * lib/unistr/u8-strnlen.c: New file.
621         * lib/unistr/u16-strnlen.c: New file.
622         * lib/unistr/u32-strnlen.c: New file.
623         * lib/unistr/u-strnlen.h: New file.
624
625         * modules/unistr/u8-strpbrk: New file.
626         * modules/unistr/u16-strpbrk: New file.
627         * modules/unistr/u32-strpbrk: New file.
628         * lib/unistr/u8-strpbrk.c: New file.
629         * lib/unistr/u16-strpbrk.c: New file.
630         * lib/unistr/u32-strpbrk.c: New file.
631         * lib/unistr/u-strpbrk.h: New file.
632
633         * modules/unistr/u8-strrchr: New file.
634         * modules/unistr/u16-strrchr: New file.
635         * modules/unistr/u32-strrchr: New file.
636         * lib/unistr/u8-strrchr.c: New file.
637         * lib/unistr/u16-strrchr.c: New file.
638         * lib/unistr/u32-strrchr.c: New file.
639
640         * modules/unistr/u8-strspn: New file.
641         * modules/unistr/u16-strspn: New file.
642         * modules/unistr/u32-strspn: New file.
643         * lib/unistr/u8-strspn.c: New file.
644         * lib/unistr/u16-strspn.c: New file.
645         * lib/unistr/u32-strspn.c: New file.
646         * lib/unistr/u-strspn.h: New file.
647
648         * modules/unistr/u8-strstr: New file.
649         * modules/unistr/u16-strstr: New file.
650         * modules/unistr/u32-strstr: New file.
651         * lib/unistr/u8-strstr.c: New file.
652         * lib/unistr/u16-strstr.c: New file.
653         * lib/unistr/u32-strstr.c: New file.
654         * lib/unistr/u-strstr.h: New file.
655
656         * modules/unistr/u8-strtok: New file.
657         * modules/unistr/u16-strtok: New file.
658         * modules/unistr/u32-strtok: New file.
659         * lib/unistr/u8-strtok.c: New file.
660         * lib/unistr/u16-strtok.c: New file.
661         * lib/unistr/u32-strtok.c: New file.
662         * lib/unistr/u-strtok.h: New file.
663
664         * modules/unistr/u8-uctomb: New file.
665         * modules/unistr/u16-uctomb: New file.
666         * modules/unistr/u32-uctomb: New file.
667         * lib/unistr/u8-uctomb.c: New file.
668         * lib/unistr/u16-uctomb.c: New file.
669         * lib/unistr/u32-uctomb.c: New file.
670
671         * MODULES.html.sh (Unicode string functions): Add the new modules.
672
673 2007-01-08  Bruno Haible  <bruno@clisp.org>
674
675         * gnulib-tool (func_all_modules): Use find, not ls, to traverse the
676         modules directory. Filter out CVS, ChangeLog, COPYING, README also from
677         subdirectories.
678
679 2007-01-08  Karl Berry  <karl@gnu.org>
680
681         * doc/error.texi: mention that main() fns must set program_name
682         when progname is used.
683
684 2007-01-08  Paul Eggert  <eggert@cs.ucla.edu>
685
686         * m4/wctype.m4 (gl_WCTYPE_H): Compute ABSOLUTE_WCTYPE_H even if
687         WCTYPE_H is empty, for the benefit of builds from non-distclean
688         directories.  Problem reported by Eric Blake in
689         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00157.html>.
690
691 2007-01-08  Bruno Haible  <bruno@clisp.org>
692
693         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Remove
694         PROVIDE_CANONICALIZE_FILENAME_MODE macro definition.
695         * lib/canonicalize.h: Test GNULIB_CANONICALIZE instead of
696         PROVIDE_CANONICALIZE_FILENAME_MODE.
697         * modules/canonicalize (configure.ac): Use gl_MODULE_INDICATOR.
698
699 2007-01-08  Bruno Haible  <bruno@clisp.org>
700
701         * m4/fts.m4 (gl_FUNC_FTS_LGPL): Remove _LGPL_PACKAGE macro definition.
702         * lib/fts_.h (_LGPL_PACKAGE): Remove macro.
703         Use !GNULIB_FTS instead of _LGPL_PACKAGE.
704         * lib/fts.c: Likewise.
705         * modules/fts (configure.ac): Use gl_MODULE_INDICATOR.
706
707 2006-12-25  Bruno Haible  <bruno@clisp.org>
708
709         * modules/utf8-ucs4-safe: New file.
710         * lib/utf8-ucs4-safe.h: New file.
711         * lib/unistr/utf8-ucs4-safe.c: New file.
712
713         * modules/utf16-ucs4-safe: New file.
714         * lib/utf16-ucs4-safe.h: New file.
715         * lib/unistr/utf16-ucs4-safe.c: New file.
716
717         * MODULES.html.sh (Unicode string functions): Add the new modules.
718
719 2007-01-08  Bruno Haible  <bruno@clisp.org>
720
721         * modules/utf8-ucs4 (Files, lib_SOURCES): Add unistr/utf8-ucs4.c.
722         (Depends-on): Add unitypes.
723         * lib/utf8-ucs4.h: Add double-inclusion guard. Include unitypes.h.
724         (u8_mbtouc_aux): Move out to separate file.
725         (u8_mbtouc): Use ucs4_t, uint8_t types.
726         * lib/unistr/utf8-ucs4.c: New file.
727
728         * modules/utf16-ucs4 (Files, lib_SOURCES): Add unistr/utf16-ucs4.c.
729         (Depends-on): Add unitypes.
730         * lib/utf16-ucs4.h: Add double-inclusion guard. Include unitypes.h.
731         (u16_mbtouc_aux): Move out to separate file.
732         (u16_mbtouc): Use ucs4_t, uint16_t types.
733         * lib/unistr/utf16-ucs4.c: New file.
734
735         * modules/ucs4-utf8 (Files, lib_SOURCES): Add unistr/ucs4-utf8.c.
736         (Depends-on): Add unitypes.
737         * lib/ucs4-utf8.h: Add double-inclusion guard. Include unitypes.h.
738         (u8_uctomb_aux): Move out to separate file.
739         (u8_uctomb): Use ucs4_t, uint8_t types.
740         * lib/unistr/ucs4-utf8.c: New file.
741
742         * modules/ucs4-utf16 (Files, lib_SOURCES): Add unistr/ucs4-utf16.c.
743         (Depends-on): Add unitypes.
744         * lib/ucs4-utf16.h: Add double-inclusion guard. Include unitypes.h.
745         (u16_uctomb_aux): Move out to separate file.
746         (u16_uctomb): Use ucs4_t, uint16_t types.
747         * lib/unistr/ucs4-utf16.c: New file.
748
749 2006-12-25  Bruno Haible  <bruno@clisp.org>
750
751         * modules/unitypes: New file.
752         * lib/unitypes.h: New file.
753         * MODULES.html.sh (func_all_modules): New section "Unicode string
754         functions". Move ucs4-utf8, ucs4-utf16, utf8-ucs4, utf16-ucs4 to
755         this section. Add unitypes.
756
757 2007-01-08  Bruno Haible  <bruno@clisp.org>
758
759         Avoid variable names that conflict with those from libtool.
760         * m4/lib-link.m4 (AC_LIB_RPATH, AC_LIB_LINKFLAGS_BODY,
761         AC_LIB_LINKFLAGS_FROM_LIBS): Rename libext to acl_libext,
762         shlibext to acl_shlibext, libname_spec to acl_libname_spec,
763         library_names_spec to acl_library_names_spec, hardcode_* to
764         acl_hardcode_*.
765         Reported by Ralf Wildenhues.
766
767 2007-01-08  Bruno Haible  <bruno@clisp.org>
768
769         * m4/gc-arcfour.m4 (gl_GC_ARCFOUR): Remove GC_USE_ARCFOUR macro
770         definition.
771         * m4/gc-arctwo.m4 (gl_GC_ARCTWO): Remove GC_USE_ARCTWO macro
772         definition.
773         * m4/gc-des.m4 (gl_GC_DES): Remove GC_USE_DES macro definition.
774         * m4/gc-hmac-md5.m4 (gl_GC_HMAC_MD5): Remove GC_USE_HMAC_MD5 macro
775         definition.
776         * m4/gc-hmac-sha1.m4 (gl_GC_HMAC_SHA1): Remove GC_USE_HMAC_SHA1 macro
777         definition.
778         * m4/gc-md2.m4 (gl_GC_MD2): Remove GC_USE_MD2 macro definition.
779         * m4/gc-md4.m4 (gl_GC_MD4): Remove GC_USE_MD4 macro definition.
780         * m4/gc-md5.m4 (gl_GC_MD5): Remove GC_USE_MD5 macro definition.
781         * m4/gc-random.m4 (gl_GC_RANDOM): Remove GC_USE_RANDOM macro
782         definition.
783         * m4/gc-rijndael.m4 (gl_GC_RIJNDAEL): Remove GC_USE_RIJNDAEL macro
784         definition.
785         * m4/gc-sha1.m4 (gl_GC_SHA1): Remove GC_USE_SHA1 macro definition.
786         * lib/gc-gnulib.c: Use GNULIB_GC_<algorithm> instead of
787         GC_USE_<algorithm>.
788         * lib/gc-libgcrypt.c: Likewise.
789         * modules/gc-arcfour (configure.ac): Use gl_MODULE_INDICATOR.
790         * modules/gc-arctwo (configure.ac): Likewise.
791         * modules/gc-des (configure.ac): Likewise.
792         * modules/gc-hmac-md5 (configure.ac): Likewise.
793         * modules/gc-hmac-sha1 (configure.ac): Likewise.
794         * modules/gc-md2 (configure.ac): Likewise.
795         * modules/gc-md4 (configure.ac): Likewise.
796         * modules/gc-md5 (configure.ac): Likewise.
797         * modules/gc-random (configure.ac): Likewise.
798         * modules/gc-rijndael (configure.ac): Likewise.
799         * modules/gc-sha1 (configure.ac): Likewise.
800
801 2007-01-08  Bruno Haible  <bruno@clisp.org>
802
803         * m4/close-stream.m4 (gl_CLOSE_STREAM): Remove GNULIB_CLOSE_STREAM
804         macro definition.
805         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Remove GNULIB_FCNTL_SAFER macro
806         definition.
807         * m4/stdio-safer.m4 (gl_FOPEN_SAFER): Remove GNULIB_FOPEN_SAFER macro
808         definition.
809         * modules/close-stream (configure.ac): Invoke gl_MODULE_INDICATOR.
810         * modules/fcntl-safer (configure.ac): Likewise.
811         * modules/fopen-safer (configure.ac): Likewise.
812         * modules/fwriteerror (configure.ac): Likewise. Remove explicit
813         GNULIB_FWRITEERROR macro definition.
814
815 2007-01-08  Bruno Haible  <bruno@clisp.org>
816
817         * m4/gnulib-common.m4: New file.
818         * gnulib-tool (func_get_autoconf_snippet): Undo last change.
819         (func_get_filelist): Add m4/gnulib-common.m4.
820
821 2007-01-08  Bruno Haible  <bruno@clisp.org>
822
823         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Simplify the sorting
824         command.
825
826 2007-01-08  Jim Meyering  <jim@meyering.net>
827
828         Use a more robust test for a "can't happen" condition.
829         * lib/fts.c (fts_read): Revert the change of 2006-11-22, since it
830         narrowed the st_size value.  Presuming the "can't happen" condition
831         is true, that narrowing could conceivably convert an invalid st_size
832         value into a valid one.  Instead, use a change based on Matthew
833         Woehlke's original patch.
834
835         Slight readability improvement: use an assert-like macro
836         in place of literal "abort ()" uses.
837         * lib/fts.c (fts_assert): Define.
838         (fts_set_stat_required, cwd_advance_fd, fts_read, fd_ring_check):
839         Use this macro instead of a bare 'abort'.
840
841 2007-01-05  Paul Eggert  <eggert@cs.ucla.edu>
842
843         Don't worry about using IRIX 5.3's wctype.h broken definitions;
844         simply work around them.
845         * lib/wctype_.h: Remove test for HAVE_WCTYPE_CTMP_BUG.
846         (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit, iswgraph, iswlower):
847         (iswprint, iswpunct, iswspace, iswupper, iswxdigit): Undef before declaring.
848         Don't bother to define as macros, since the standard doesn't require it.
849         * m4/wctype.m4 (WCTYPE_H, ABSOLUTE_WCTYPE_H): Simplify, since we no
850         longer worry about IRIX 5.3.
851         (HAVE_WCTYPE_CTMP_BUG): Remove.
852
853 2007-01-04  Paul Eggert  <eggert@cs.ucla.edu>
854
855         * lib/wctype_.h (_ctmp_) [HAVE_WCTYPE_CTMP_BUG]: Now of type wchar_t,
856         not wint_t.  Also, include <ctype.h>, to fix another IRIX bug.
857         * m4/wctype.m4 (gl_WCTYPE_H): Likewise.
858         Problems reported by Georg Schwarz for IRIX 5.3.
859
860         * gnulib-tool (autoconf_minversion): Take the maximum version number
861         found, not the minimum.  Problem reported by James Youngman.
862
863 2007-01-03  Karl Berry  <karl@gnu.org>
864
865         * doc/error.texi: new file, explaining interaction with progname.
866         * doc/gnulib.texi: include it.  Update copyright.
867
868 2007-01-03  Simon Josefsson  <simon@josefsson.org>
869
870         * gnulib-tool (func_create_testdir): Run AC_CANONICAL_BUILD and
871         AC_CANONICAL_HOST, to improve autobuild outputs.
872
873 2007-01-03  Paolo Bonzini  <bonzini@gnu.org>
874             Yoann Vandoorselaere <yoann.v@prelude-ids.com>
875
876         * lib/poll.c (poll): Use recv on Mac OS X to distinguish connected
877         sockets, server sockets, and other file descriptors.  Count errors
878         to compute the return value.  Reorder the code a bit to be easier
879         to follow.  Don't set event bits that were not requested (except
880         POLLERR and POLLHUP).
881
882 2007-01-01  Bruno Haible  <bruno@clisp.org>
883
884         * modules/lchmod (Include): Require lchmod.h, not lchown.h.
885
886 2007-01-03  Jim Meyering  <jim@meyering.net>
887
888         * modules/fts-lgpl (Depends-on): Add i-ring.  Reported by Bruno Haible.
889
890 2007-01-02  Bruno Haible  <bruno@clisp.org>
891
892         * modules/settime (Include): Require timespec.h.
893         * modules/nanosleep (Include): Likewise.
894
895 2007-01-01  Bruno Haible  <bruno@clisp.org>
896
897         * gnulib-tool (func_emit_copyright_notice): Bump year.
898         (func_get_autoconf_snippet): Emit a GNULIB_<modulename> macro.
899
900 2007-01-01  Bruno Haible  <bruno@clisp.org>
901
902         Improve support for OpenBSD.
903         * build-aux/config.rpath (libname_spec): Export.
904         (library_names_spec): New variable. Export.
905         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Extract libname_spec and
906         library_names_spec from the config.rpath output. Locate shared library
907         through the name pattern in library_names_spec.
908
909 2007-01-01  Eric Blake  <ebb9@byu.net>
910
911         * lib/version-etc.c (COPYRIGHT_YEAR): Bump for new year.
912
913 2006-12-30  Paul Eggert  <eggert@cs.ucla.edu>
914
915         * gnulib-tool (SORT): Remove, since we no longer assume GNU sort.
916         Rewrite so as not to assume GNU sort or "tail -1".  Also, don't
917         assume the C locale, and avoid an "eval" that could cause trouble.
918         Problem with SORT reported by Bob Proulx.
919
920         * lib/getpagesize.h (getpagesize) [defined __amigaos4__]:
921         Define.  Trivial patch from Henning Nielsen Lund, originally
922         sent to bug-grep@gnu.org today.
923
924 2006-12-29  Paul Eggert  <eggert@cs.ucla.edu>
925
926         * lib/acl.h: Include sys/types.h and sys/stat.h, for mode_t and
927         struct stat.  Problem reported by Henning Nielsen Lund.
928         * lib/acl.c: Include acl.h first, to check interface.  Don't
929         bother to include sys/types.h and sys/stat.h again.
930
931 2006-12-28  Paul Eggert  <eggert@cs.ucla.edu>
932
933         Import the following change from libc; problem reported by
934         Sven Verdoolaege.
935
936         2005-10-13  Ulrich Drepper  <drepper@redhat.com>
937
938         [BZ #1373]
939         * lib/argp.h: Remove __NTH for __argp_usage inline function.
940
941 2006-12-28  Jim Meyering  <jim@meyering.net>
942
943         * build-aux/announce-gen: Do not assume that the package
944         builds any of tar.gz, tar.bz2, and .xdelta files.
945         Suggestion from Simon Josefsson.
946
947 2006-12-28  Simon Josefsson  <simon@josefsson.org>
948
949         * modules/announce-gen: New file.
950
951 2006-12-27  Paul Eggert  <eggert@cs.ucla.edu>
952
953         * lib/mbchar.h: Just include <wctype.h>; the wctype module
954         handles its gotchas now.
955         * lib/mbswidth.c: Likewise.
956         * lib/wcwidth.h: Likewise.
957         * m4/mbchar.m4 (gl_MBCHAR): Don't bother checking for wctype.h
958         and iswcntrl; the wctype module does this stuff now.
959         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
960         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
961         * modules/mbchar (Depends-on): Add wctype.
962         * modules/mbswidth (Depends-on): Likewise.
963         * modules/wcwidth (Depends-on): Likewise.
964
965 2006-12-27  Eric Blake  <ebb9@byu.net>
966
967         * lib/fnmatch.c: Reinstate inclusion of <wchar.h>, since this
968         module uses more than what <wctype.h> is required to provide.
969
970 2006-12-26  Eric Blake  <ebb9@byu.net>
971
972         * gnulib-tool (sed_extract_prog): Avoid space-tab.
973
974 2006-12-26  Eric Blake  <ebb9@byu.net>
975
976         * modules/absolute-header: New module.
977         * modules/fcntl (Depends-on): Depend on it.
978         * modules/inttypes (Depends-on): Likewise.
979         * modules/stdint (Depends-on): Likewise.
980         * modules/sys_stat (Depends-on): Likewise.
981         * modules/wctype (Depends-on): Likewise.
982         * MODULES.html.sh (Support for building libraries and
983         executables): Document it.
984
985 2006-12-25  Paul Eggert  <eggert@cs.ucla.edu>
986
987         * gnulib-tool (SED): Remove, undoing previous change.
988         The problem was that it broke coreutils on Solaris, because
989         "sed --posix" leaked into a makefile.
990         (sed): New alias, if 'alias' and GNU sed.
991
992 2006-12-24  Jim Meyering  <jim@meyering.net>
993
994         Work around an fchownat bug in glibc-2.4:
995         http://lists.ubuntu.com/archives/ubuntu-users/2006-September/093218.html
996         This bug would cause "chown -RP ... DIR" to follow symlinks in DIR,
997         in spite of the -P option.
998         * m4/openat.m4 (gl_FUNC_FCHOWNAT, gl_FUNC_FCHOWNAT_DEREF_BUG):
999         New macros.
1000         (gl_PREREQ_OPENAT): Require gl_FUNC_FCHOWNAT.
1001         * modules/openat (Files): Add lib/fchownat.c.
1002         * lib/openat.c (fchownat): Don't define here.  Move to...
1003         * lib/fchownat.c: ...this new file.
1004
1005 2006-12-23  Paul Eggert  <eggert@cs.ucla.edu>
1006
1007         Fix bug reported by Bruno Haible in
1008         <http://lists.gnu.org/archive/html/bug-gnulib/2006-12/msg00228.html>
1009         where quotearg.c didn't compile on Mac OS X 10.2 because it
1010         lacks <wchar.h> and wint_t.
1011         * lib/wctype_.h (__wctype_wint_t): New type.
1012         Include <stdio.h>, <time.h>, <wchar.h> only if HAVE_WINT_T.
1013         (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit, iswgraph):
1014         (iswlower, iswprint, iswpunct, iswspace, iswupper, ixwxdigit):
1015         Arg is now of type __wctype_wint_t, not wint_t.
1016         * m4/wctype.m4 (gl_WCTYPE_H): Require gt_TYPE_WINT_T, and
1017         substitute HAVE_WINT_T.
1018         * modules/wctype (Files): Add m4/wint_t.m4.
1019         (wctype.h): Substitute HAVE_WINT_T.
1020
1021 2006-12-23  Bruno Haible  <bruno@clisp.org>
1022
1023         * lib/safe-read.h [C++]: Wrap declarations in extern "C".
1024
1025 2006-12-23  Bruno Haible  <bruno@clisp.org>
1026
1027         * lib/canonicalize-lgpl.c (__realpath): Test HAVE_READLINK instead of
1028         S_ISLNK.
1029         Needed because gnulib's sys/stat.h replacement defines S_ISLNK on
1030         mingw.
1031
1032 2006-12-22  Bruno Haible  <bruno@clisp.org>
1033
1034         * lib/copy-file.c: Include acl.h.
1035         (copy_file_preserving) [USE_ACL]: Use copy_acl instead of chmod.
1036         Close the file descriptors only after being done with copy_acl.
1037         * modules/copy-file (Depends-on): Add acl.
1038
1039 2006-12-22  Bruno Haible  <bruno@clisp.org>
1040
1041         * gnulib-tool (SED): New variable.
1042         Use $SED instead of sed everywhere.
1043
1044 2006-12-22  Bruno Haible  <bruno@clisp.org>
1045
1046         * modules/no-c++: New file.
1047         * m4/no-c++.m4: New file.
1048         * MODULES.html.sh (Support for building libraries and executables):
1049         Add no-c++.
1050
1051 2006-12-22  Paul Eggert  <eggert@cs.ucla.edu>
1052
1053         * m4/mktime.m4 (AC_FUNC_MKTIME): Sync from Autoconf.
1054         Include <limits.h>, and use its INT_MAX to rewrite the
1055         j loop so that it does not overflow 'int'.  Problem reported by
1056         Ralf Wildenhues in
1057         <http://lists.gnu.org/archive/html/bug-gnulib/2006-12/msg00084.html>.
1058         Play it safe by shifting left by 1 rather than multiplying by 2,
1059         as GCC is less likely to optimize this away when the value
1060         is signed (when it assumes overflow leads to undefined behavior).
1061         Also, don't assume time_t uses two's complement.
1062
1063 2006-12-21  Paul Eggert  <eggert@cs.ucla.edu>
1064
1065         * MODULES.html.sh: New module wctype.
1066         * lib/wctype_.h, m4/wctype.m4, modules/wctype: New files.
1067         * lib/fnmatch.c: Don't bother to include <wchar.h> before
1068         <wctype.h>, since the new wctype module should fix this.
1069         * lib/quotearg.c: Include <wctype.h> unconditionally, since
1070         the wctype module should arrange for it.
1071         * lib/regex_internal.h: Likewise.
1072         * m4/quotearg.m4 (gl_QUOTEARG): Don't check for wctype.h or iswprint,
1073         since the wctype module should handle this now.
1074         * m4/regex.m4 (gl_PREREQ_REGEX): Don't check for wctype.h.
1075         * modules/fnmatch (Depends-on): Add wctype.
1076         * modules/quotearg (Depends-on): Likewise.
1077         * modules/regex (Depends-on): Likewise.
1078
1079 2006-12-19  Bruno Haible  <bruno@clisp.org>
1080
1081         * lib/strdup.h [C++]: Wrap definitions in extern "C".
1082         Suggested by Lorenzo Bettini <bettini@dsi.unifi.it>.
1083
1084 2006-12-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1085
1086         * modules/savewd (Depends-on): Fix dependency on fcntl.
1087
1088 2006-12-18  Paul Eggert  <eggert@cs.ucla.edu>
1089
1090         * m4/stdint.m4 (gl_STDINT_H): Set STDINT_H to empty if stdint.h
1091         conforms to C99, rather than relying on the user's environment
1092         setting of STDINT_H.
1093
1094 2006-12-18  Paul Eggert  <eggert@cs.ucla.edu>
1095         and Eric Blake  <ebb9@byu.net>
1096
1097         * lib/dirname.h (DOUBLE_SLASH_IS_DISTINCT_ROOT): Default to 0, not 1.
1098         This is more consistent with the other defines here.
1099         * m4/double-slash-root.m4 (gl_DOUBLE_SLASH_ROOT):
1100         Port to z/OS.  Problem reported by Paul Gilmartin.
1101         Change local vars to use gl_ prefix rather than ac_.
1102         Don't define DOUBLE_SLASH_IS_DISTINCT_ROOT to 0, for consistency
1103         with other defines.
1104         * modules/double-slash-root: New module.
1105         * modules/dirname (Files): Remove m4/double-slash-root.m4.
1106         (Depends-on): Add double-slash-root.
1107         * MODULES.html.sh (File system functions): Mention new module.
1108
1109 2006-12-14  Paul Eggert  <eggert@cs.ucla.edu>
1110
1111         * lib/yesno.c [!ENABLE_NLS]: Don't include getline.h.
1112         (yesno) [!ENABLE_NLS]: Don't invoke getline or rpmatch.
1113         This is for the benefit of gzip, which doesn't do i18n.
1114
1115 2006-12-12  Jim Meyering  <jim@meyering.net>
1116
1117         * m4/acl.m4 (gl_ACL_GET_FILE): Fix logic error.
1118         Reported by Andreas Schwab <schwab@suse.de>.
1119
1120 2006-12-12  Bruno Haible  <bruno@clisp.org>
1121
1122         Merge these changes.
1123         2006-09-05  Bruno Haible  <bruno@clisp.org>
1124         * lib/iconvme.c (iconv_string): No need to save and restore errno when
1125         iconv_alloc succeeded.
1126         (iconv_alloc): Don't assume that malloc() or realloc(), when failing,
1127         sets errno to ENOMEM. (malloc on GNU/kFreeBSD doesn't.) No need to
1128         test for " && dest " at the end - dest is always != NULL there. Call
1129         iconv with 4xNULL arguments initially, to reset the state. Call iconv
1130         with 2xNULL arguments, also to flush the state storage. Handle the
1131         IRIX iconv behaviour. Realloc the final result, to throw away unused
1132         memory.
1133
1134 2006-12-11  Paul Eggert  <eggert@cs.ucla.edu>
1135
1136         * m4/openat.m4 (gl_FUNC_OPENAT): Don't compile mkdirat
1137         and fchmodat unconditionally, since glibc 2.4 has them.
1138         Problem reported by Arkadiusz Miskiewicz.
1139
1140 2006-12-10  Bruno Haible  <bruno@clisp.org>
1141
1142         * gnulib-tool (func_import): Show the include files only for those
1143         modules that are copied and specified.
1144         Reported by Karl Berry.
1145
1146 2006-12-08  Jim Meyering  <jim@meyering.net>
1147
1148         * build-aux/announce-gen ($VERSION): Don't use of $Revision...$.
1149         Instead, use Emacs' time-stamp write hook.  Note that the time is UTC.
1150
1151         * build-aux/announce-gen: Add two new options, both optional:
1152         --bootstrap-tools=TOOL_LIST
1153               a comma-separated list of tools, e.g.,
1154               autoconf,automake,bison,gnulib
1155         --gnulib-snapshot-date=DATE
1156               if gnulib is in the bootstrap tool list,
1157               then report this as the snapshot date.
1158               If not specified, use the current date/time.
1159               If you specify a date here, be sure it's UTC.
1160
1161 2006-12-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1162
1163         * tests/test-argp-2.sh: Fix test to match actual output.
1164         (func_compare): Fix sed script to be portable.
1165
1166 2006-12-05  Paul Eggert  <eggert@cs.ucla.edu>
1167
1168         * lib/utimens.c (futimens) [HAVE_BUGGY_NFS_TIME_STAMPS]: Add a
1169         workaround for this case.  It is not autoconfigured now; offhand
1170         it's hard to see how to autoconfigure it.
1171
1172 2006-12-03  Paul Eggert  <eggert@cs.ucla.edu>
1173
1174         * lib/mkdir-p.c (make_dir_parents): Fix race condition when making
1175         a directory that is about to be chowned.  Such a directory's
1176         initial file permissions should permit the owner only and this
1177         should not be changed until after the chown, since the group and
1178         other bits would be incorrect if they granted permission before
1179         the chown.
1180
1181         Fix porting problem for iswctype reported by Georg Schwarz in:
1182         http://lists.gnu.org/archive/html/bug-coreutils/2006-12/msg00017.html
1183         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Require HAVE_ISWCTYPE, too.
1184         * lib/regex_internal.h (RE_ENABLE_I18N): Likewise.
1185         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for iswctype, too.
1186         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
1187
1188 2006-12-03  Jim Meyering  <jim@meyering.net>
1189
1190         * lib/fts.c (fts_load): Don't set sp->fts_dev here, since
1191         p->fts_statp may not yet be defined.
1192         (fts_read): Instead, set it in the caller, once p->fts_statp is
1193         sure to be defined, and corresponds to a top-level directory.
1194         This bug made du -x fail.  Here's the coreutils test case:
1195         http://git.sv.gnu.org/gitweb/?p=coreutils.git;a=commit;h=ba45154d8e9f
1196         Reported by Mike Frysinger.
1197
1198 2006-12-01  Jim Meyering  <jim@meyering.net>
1199
1200         * modules/savewd (Depends-on): Add fcntl_h to avoid self-test
1201         build failure due to missing definition of HAVE_WORKING_O_NOFOLLOW.
1202         Reported by Simon Josefsson.
1203
1204 2006-11-30  Jim Meyering  <jim@meyering.net>
1205
1206         * m4/warning.m4: Use the all-permissive copyright notice
1207         recommended by RMS (rather than LGPL).
1208         * m4/vararrays.m4: Likewise.
1209         * m4/flexmember.m4: Likewise.
1210
1211 2006-11-29  Bruno Haible  <bruno@clisp.org>
1212
1213         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
1214         noinst_LIBRARIES. Augment noinst_LIBRARIES and noinst_LTLIBRARIES
1215         using +=.
1216         Reported by Simon Josefsson <simon@josefsson.org>.
1217
1218 2006-11-28  James Youngman <jay@gnu.org>
1219
1220         * README: Advise users that they might find the bug-gnulib@gnu.org
1221         and autotools-announce@gnu.org mailing lists useful.
1222
1223 2006-11-28  Bruno Haible  <bruno@clisp.org>
1224
1225         * m4/ptrdiff_max.m4: Remove file.
1226
1227 2006-11-21  Bruno Haible  <bruno@clisp.org>
1228
1229         * m4/eoverflow.m4 (gl_EOVERFLOW): Use AC_COMPUTE_INT instead of
1230         _AC_COMPUTE_INT.
1231         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
1232         * m4/ptrdiff_max.m4 (gl_PTRDIFF_MAX): Use AC_COMPUTE_INT instead of
1233         _AC_COMPUTE_INT.
1234         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
1235         * m4/size_max.m4 (gl_SIZE_MAX): Use AC_COMPUTE_INT instead of
1236         _AC_COMPUTE_INT.
1237         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
1238
1239 2006-11-28  Jim Meyering  <jim@meyering.net>
1240
1241         * lib/regcomp.c (parse_branch): Rename local, exp->expr, to avoid
1242         warning from "gcc -Wshadow" about shadowing the builtin.
1243
1244 2006-11-27  Bruno Haible  <bruno@clisp.org>
1245
1246         * m4/stdint.m4 (gl_STDINT_BITSIZEOF): Use AC_COMPUTE_INT instead of
1247         _AC_COMPUTE_INT.
1248         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
1249
1250 2006-11-27  Bruno Haible  <bruno@clisp.org>
1251             Paul Eggert  <eggert@cs.ucla.edu>
1252
1253         * lib/regex.h (__restrict_arr): Redo logic of #if, for clarity.
1254
1255 2006-11-26  Bruno Haible  <bruno@clisp.org>
1256
1257         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
1258         noinst_LTLIBRARIES.
1259
1260 2006-11-27  Paul Eggert  <eggert@cs.ucla.edu>
1261             Bruno Haible  <bruno@clisp.org>
1262
1263         * lib/gettext.h (_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS): Define to 0
1264         if compiling with "gcc -ansi".
1265
1266 2006-11-26  Paul Eggert  <eggert@cs.ucla.edu>
1267
1268         Fix some incompatibilities with gcc -ansi -pedantic.
1269         * lib/regex.h (__restrict_arr): Don't use the [restrict] syntax
1270         if compiling pedantically with GCC, unless it's C99 or later.
1271         Don't trust sys/cdefs.h's definition of __restrict_arr, either, as
1272         it mishandles gcc -ansi -pedantic as well.
1273         * lib/regex_internal.h (re_token_t): Don't use enum bitfields
1274         if gcc -pedantic.
1275         * lib/regexec.c (check_node_accept_bytes): Don't use auto
1276         initializers for struct if -pedantic, unless it's C99 or later.
1277
1278 2006-11-25  Nix  <nix@esperi.org.uk>  (tiny change)
1279
1280         * m4/fcntl_h.m4 (gl_FCNTL_H): Test the atime, not the mtime.
1281         Don't close an fd more than once. Identical atimes indicate
1282         success, not failure.
1283
1284 2006-11-22  Robinson Mittmann <bob@hoplon.com>  (tiny change)
1285
1286         * lib/sincosl.c (kernel_sinl): Fix typo in threshold.
1287
1288 2006-11-23  Jim Meyering  <jim@meyering.net>
1289
1290         * build-aux/announce-gen: New file.  From coreutils.
1291
1292 2006-11-22  Jim Meyering  <jim@meyering.net>
1293
1294         Work around a compile-time error from the HP-UX 11.00 /bin/cc.
1295         * lib/fts.c (enum Fts_stat): Give this previously-anon enum a name.
1296         (fts_read): Use a temporary to narrow the overused st_size member
1297         before using it in a switch statement.  Reported by Matthew Woehlke.
1298
1299         * m4/clock_time.m4 (gl_CLOCK_TIME): Quote AC_SUBST argument.
1300         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Likewise.
1301
1302 2006-11-20  Bruno Haible  <bruno@clisp.org>
1303
1304         * gettext.m4 (AM_GNU_GETTEXT): Revert 2005-07-28 patch: Use
1305         changequote instead of pairs of brackets.
1306         Reported by Andreas Schwab <schwab@suse.de>.
1307
1308 2006-11-21  Jim Meyering  <jim@meyering.net>
1309
1310         * lib/fts.c (fts_safe_changedir): Move a declaration "up",
1311         so as to remain compatible with older compilers.
1312         Patch from Michael Deutschmann.
1313
1314 2006-11-20  Paul Eggert  <eggert@cs.ucla.edu>
1315
1316         * MODULES.html.sh (File system functions): Add openat.
1317
1318         * lib/openat.h (rpl_fstatat): New macro, if
1319         [HAVE_OPENAT && ! LSTAT_FOLLOWS_SLASHED_SYMLINK.
1320         (fstatat): Define to rpl_fstatat under the same conditions,
1321         unless COMPILING_FSTATAT.
1322         * m4/openat.m4 (gl_FUNC_OPENAT): Compile fstatat.c too, if fstatat
1323         seems to have the bug.
1324         * lib/fstatat.c: New file.
1325         * modules/openat (Files): Add it.
1326
1327 2006-11-20  Bruno Haible  <bruno@clisp.org>
1328
1329         * Makefile: New file.
1330
1331 2006-11-20  Jim Meyering  <jim@meyering.net>
1332
1333         The beginnings of syntax-related checks for gnulib.
1334         * lib/Makefile: New file.
1335         * lib/t-idcache: New script.  Ensure that the two halves of
1336         idcache.c stay in sync.
1337
1338         * lib/idcache.c: Adjust comments in user- and group- portions to
1339         be more accurate, and to be consistent with one another.
1340
1341 2006-11-20  Jim Meyering  <jim@meyering.net>
1342
1343         * lib/idcache.c: Restore most of the 2006-11-06 patch, so as to
1344         continue using the flexible array member (thus, this module performs
1345         half as many malloc calls), with the addition that...
1346         (getgroup, getuser): Consistently record a non-match via an empty
1347         "name" string, and map an empty string match to a NULL return value.
1348         * modules/idcache (Depends-on): Re-add flexmember.
1349
1350         * lib/idcache.c (getuser): Remove all uses of the register keyword.
1351         (getuidbyname, getgroup, getgidbyname): Likewise.
1352
1353         Use cleaner syntax: NULL rather than 0.
1354         * lib/idcache.c (getuidbyname, getgidbyname): Return NULL, not 0.
1355
1356 2006-11-20  Paul Eggert  <eggert@cs.ucla.edu>
1357
1358         * lib/idcache.c: Undo most recent patch, dated 2006-11-06.
1359         It mishandled the case where the group was missing.
1360         Problem reported by Greg Schafer.
1361         * modules/idcache: Likewise.
1362
1363 2006-11-18  Jim Meyering  <jim@meyering.net>
1364
1365         * check-module (%exempt_header): Add exception for some
1366         conditionally-included headers.
1367
1368         * modules/i-ring (Depends-on): Add verify.
1369         (License): Change to LGPL.
1370
1371 2006-11-16  Paul Eggert  <eggert@cs.ucla.edu>
1372
1373         * modules/getaddinfo (Depends-on): Remove inttostr; add snprintf.
1374         * lib/getaddrinfo.c: Include snprintf.h rather than intprops.h
1375         and inttostr.h.  Use snprintf rather than uinttostr, so that
1376         LGPLed code doesn't depend on GPLed.
1377
1378 2006-11-17  Paul Eggert  <eggert@cs.ucla.edu>
1379
1380         * modules/inline (License): Change from GPL to LGPL.
1381
1382 2006-11-17  Jim Meyering  <jim@meyering.net>
1383
1384         * modules/d-type (License): Switch to LGPL.
1385
1386 2006-11-15  Bruno Haible  <bruno@clisp.org>
1387
1388         * m4/alloca.m4 (gl_FUNC_ALLOCA): Fix the AC_CACHE_CHECK message.
1389
1390 2006-11-15  Eric Blake  <ebb9@byu.net>
1391
1392         * m4/allocsa.m4 (gl_ALLOCSA): Don't invoke macro already picked up by
1393         the module dependency.
1394
1395 2006-11-15  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
1396             Bruno Haible  <bruno@clisp.org>
1397
1398         * gnulib-tool (func_create_testdir): Add license consistency check.
1399
1400 2006-11-15  Eric Blake  <ebb9@byu.net>
1401
1402         * m4/alloca.m4 (gl_FUNC_ALLOCA): Use AC_CACHE_CHECK to avoid a
1403         random "(cached)" in configure output.
1404
1405 2006-11-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1406
1407         * m4/inttypes.m4 (gl_INTTYPES_H): Use AC_CACHE_CHECK so that the
1408         test for conforming inttypes.h is both announced and cached.
1409
1410         * MODULES.html.sh (seen_modules, seen_files): New variables.
1411         (func_module): Rewrite to use a few less gnulib-tool and sed
1412         invocations.  Avoid a couple of quadratic algorithms for ...
1413         (missed_modules, missed_files): ... these, with ...
1414         (func_append, func_tmpdir): ... these new functions, from
1415         gnulib-tool.  Analogously, install traps for cleanup.
1416
1417         * tests/test-gc.c (main): Remove unused variables.
1418         * tests/test-read-file.c: Include stdlib.h, for 'free'.
1419
1420 2006-11-14  Paul Eggert  <eggert@cs.ucla.edu>
1421
1422         * modules/inttostr (License): Change to LGPL.
1423
1424 2006-11-14  Eric Blake  <ebb9@byu.net>
1425
1426         * modules/tempname (License): Change to LGPL.
1427
1428 2006-11-14  Eric Blake  <ebb9@byu.net>
1429
1430         * doc/functions.texi (Function Portability): *printf functions on
1431         Cygwin now understand all POSIX size specifiers.
1432
1433 2006-11-14  Bruno Haible  <bruno@clisp.org>
1434
1435         * modules/c-ctype (License): Change to LGPL.
1436
1437 2006-11-12  Bruno Haible  <bruno@clisp.org>
1438
1439         * m4/lib-link.m4 (AC_LIB_LINKFLAGS, AC_LIB_HAVE_LINKFLAGS,
1440         AC_LIB_LINKFLAGS_BODY): Also set a LIB${NAME}_PREFIX variable. Needed
1441         for GNOME libraries, for which the include files are installed in
1442         subdirectories of $prefix/include.
1443
1444 2006-11-12  Bruno Haible  <bruno@clisp.org>
1445
1446         * m4/lib-link.m4: Require at least autoconf-2.54.
1447         (AC_LIB_LINKFLAGS_BODY) [autoconf < 2.61]: Turn dots into the library
1448         name to underscores for the --with option.
1449
1450 2006-11-13  Bruno Haible  <bruno@clisp.org>
1451
1452         * gnulib-tool (func_create_testdir): Set gl_source_base correctly in
1453         the tests directory.
1454         Reported by Ralf Wildenhues.
1455
1456 2006-11-13  Bruno Haible  <bruno@clisp.org>
1457
1458         * gnulib-tool (func_emit_initmacro_start): Also override AC_LIBSOURCES.
1459         (func_emit_initmacro_end): Undo the override here.
1460         (func_emit_initmacro_done): Emit a definition for gl_LIBSOURCES.
1461         Works around the famous automake error in coreutils.
1462
1463 2006-11-13  Eric Blake  <ebb9@byu.net>
1464
1465         * lib/gl_anytree_oset.h (gl_tree_search_atleast): Return the
1466         element, not its node.
1467
1468 2006-11-12  Bruno Haible  <bruno@clisp.org>
1469
1470         * gnulib-tool (func_emit_lib_Makefile_am): Replace occurrences of
1471         '$(top_srcdir)/build-aux/', taking into account the real auxdir.
1472
1473 2006-11-12  Bruno Haible  <bruno@clisp.org>
1474
1475         * gnulib-tool: New option --local-symlink.
1476         (func_usage): Document it.
1477         (lsymbolic): New variable.
1478         (func_import, func_create_testdir): If --symlink was not specified,
1479         test whether --local-symlink was specified and the file comes from
1480         the local_gnulib_dir.
1481
1482 2006-11-12  Bruno Haible  <bruno@clisp.org>
1483
1484         * gnulib-tool (func_ln): New function.
1485         (func_ln_if_changed, func_create_testdir): Use it instead of "ln -s".
1486
1487 2006-11-12  Bruno Haible  <bruno@clisp.org>
1488
1489         Finish support for source files in subdirectories.
1490         * gnulib-tool (func_emit_lib_Makefile_am): If some of the source files
1491         are in subdirectories, set uses_subdirs and add 'subdir-objects' to
1492         AUTOMAKE_OPTIONS.
1493         (func_import, func_create_testdir): Invoke AM_PROG_CC_C_O in this case.
1494
1495 2006-11-12  Bruno Haible  <bruno@clisp.org>
1496
1497         * gnulib-tool (func_get_automake_snippet): Synthesize also an
1498         EXTRA_lib_SOURCES augmentation.
1499         (func_emit_lib_Makefile_am): Initialize EXTRA_lib..._SOURCES to empty.
1500
1501 2006-11-12  Jim Meyering  <jim@meyering.net>
1502
1503         Make fts (in FTS_CWDFD mode) more efficient by caching a few open
1504         file descriptors.  This also averts a failure on systems with
1505         native openat support when a traversed directory lacks "x" access.
1506         * lib/fts_.h: Include "i-ring.h"
1507         (struct FTS) [fts_fd_ring]: New member.
1508         * lib/fts.c (RESTORE_INITIAL_CWD): Also call fd_ring_clear.
1509         (FCHDIR): Add parentheses.
1510         (fd_ring_check, fd_ring_print) [!FTS_DEBUG]: Define away.
1511         (cwd_advance_fd): Add a 3rd parameter.  Adjust all callers.
1512         When descending, rather than simply closing the previous
1513         fts_cwd_fd value, push that file descriptor onto the ring.
1514         (same_fd, fd_ring_print, fd_ring_check) [FTS_DEBUG]: New functions.
1515         (fts_open): Initialize the new fd_ring member.
1516         (fts_close): Clear the ring.
1517         (fts_safe_changedir): When possible, use our new fd_ring to skip
1518         the diropen and fstat and dev/ino comparison that would normally
1519         accompany a virtual `chdir ("..")'.
1520
1521         * modules/fts (Depends-on): Add i-ring.
1522         * modules/i-ring: New module.
1523         * lib/i-ring.c, lib/i-ring.h, lib/i-ring-test.c: New files.
1524         * m4/i-ring.m4: New file.
1525
1526 2006-11-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1527
1528         * gnulib-tool (func_create_testdir): Fix replacement of
1529         `build-aux' in configure.ac.  Run autotools in gltests
1530         subdirectory.
1531         (func_create_testdir, func_create_megatestdir, test): There is
1532         no need for '--force' in most autotool invocations in a new
1533         tree.  Actually fail the whole test if any of the tools, or the
1534         configure or make stages fail.
1535
1536         Sync from Automake.
1537         * build-aux/gnupload: Revert last change.  Add pointer to upload
1538         instructions of the GNU Maintenance Instructions.
1539         Suggestion by Karl Berry.
1540
1541 2006-11-10  Jim Meyering  <jim@meyering.net>
1542
1543         * lib/fts.c [FTS_DEBUG]: Don't try to print a pointer via %s.
1544
1545 2006-11-09  Paul Eggert  <eggert@cs.ucla.edu>
1546
1547         * lib/gettext.h (dgettext, dcgettext, ngettext) [! ENABLE_NLS]:
1548         (dngettext, dcngettext, bindtextdomain) [! ENABLE_NLS]:
1549         (bind_textdomain_codeset) [! ENABLE_NLS]:
1550         Evaluate all the arguments.  That way, callers get compatible behavior
1551         if the arguments have side effects.  Also, it avoids some GCC
1552         diagnostics in some cases; Joel E. Denny reported problems when Bison
1553         was configured with --enable-gcc-warnigs.
1554
1555 2006-11-10  Jim Meyering  <jim@meyering.net>
1556
1557         * m4/inline.m4 (gl_INLINE): Check with the compiler, not cpp, so that
1558         relevant options in CFLAGS (like -O, -fno-inline) are taken into
1559         account.
1560
1561 2006-11-10  Jim Meyering  <jim@meyering.net>
1562
1563         * modules/inline: New file/module.
1564         * modules/xalloc (Files): Remove m4/inline.m4.
1565         (Depends-on): Add inline, instead.
1566         * modules/oset: Likewise.
1567         * modules/list: Likewise.
1568
1569 2006-11-09  Paul Eggert  <eggert@cs.ucla.edu>
1570
1571         * lib/stdint_.h (uintmax_t): Fix typo: int64_t -> uint64_t.
1572         Problem reported by Matthew Woehlke.
1573
1574 2006-11-09  Bruno Haible  <bruno@clisp.org>
1575
1576         * lib/tempname.c (gen_tempname): Remove variant that invokes
1577         __gen_tempname.
1578         * m4/tempname.m4 (gl_FUNC_GEN_TEMPNAME): Don't test for
1579         __gen_tempname.
1580
1581 2006-11-08  Bruno Haible  <bruno@clisp.org>
1582
1583         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Set ac_cv_type_long_long_int
1584         to 'yes' instead of 'cross-compiling'.
1585
1586 2006-11-08  Paul Eggert  <eggert@cs.ucla.edu>
1587
1588         * lib/quotearg.h (quotearg_free): New decl.
1589         * lib/quotearg.c (quotearg_free): New function.
1590         (slot0, nslots, slotvec0, slotvec):
1591         Now file-scope so that quotearg_free can get at them.
1592
1593 2006-11-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1594
1595         Sync from Automake.
1596         * build-aux/gnupload: Add missing 'gnu' to example URL.
1597         Report by Karl Berry.
1598
1599 2006-11-08  Bruno Haible  <bruno@clisp.org>
1600
1601         * m4/inline.m4 (gl_INLINE): Also test __NO_INLINE__.
1602         Suggested by Paul Eggert.
1603
1604 2006-11-08  Jim Meyering  <jim@meyering.net>
1605
1606         * lib/fts.c [!_LGPL_PACKAGE]: Don't include fcntl--.h twice.
1607         It's already included if !_LIBC.
1608         (fts_safe_changedir): Add a comment.
1609
1610 2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
1611
1612         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Detect bug in
1613         Tandem NonStop Kernel (OSS) cc -O circa 2004, reported by
1614         Matthew Woehlke.
1615
1616         * lib/xalloc.h (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): Move
1617         definitions up, to avoid colliding with change below.
1618         (static_inline) [HAVE_INLINE]: New macro.
1619         (xnmalloc, xnrealloc, x2nrealloc, xcharalloc):
1620         Provide extern decls when !HAVE_INLINE.  Do not define unless
1621         static_inline is defined, either by us or by xmalloc.c.  Use
1622         static_inline rather than static inline.
1623         (XCALLOC): Optimize sizeof(T) = 1 case.
1624         * lib/xmalloc.c (static_inline) [!HAVE_INLINE]: New macro.
1625
1626 2006-11-07  Bruno Haible  <bruno@clisp.org>
1627
1628         * lib/xalloc.h (XNMALLOC): Restore optimization of sizeof(T) = 1 case.
1629         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Require gl_INLINE instead of
1630         AC_C_INLINE.
1631         * modules/xalloc (Files): Add m4/inline.m4.
1632
1633 2006-11-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1634
1635         * README: Fix typo.
1636         * doc/gnulib.texi (Miscellaneous Notes): Likewise, rename...
1637         (Miscellanous Notes): ...from this.
1638
1639 2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
1640
1641         * m4/flexmember.m4 (AC_C_FLEXIBLE_ARRAY_MEMBER):
1642         Mention that offsetof should be used instead of sizeof.
1643         From Bruno Haible.
1644
1645 2006-11-07  Bruno Haible  <bruno@clisp.org>
1646
1647         * lib/w32spawn.h (prepare_spawn): Use XNMALLOC instead of xmalloc.
1648
1649 2006-11-06  Paul Eggert  <eggert@cs.ucla.edu>
1650
1651         Simplify xmalloc expressions. Add overflow check in xmalloc arguments.
1652         * lib/gl_anyavltree_list2.h (create_subtree_with_contents):
1653         (gl_tree_create, gl_tree_add_first, gl_tree_add_last):
1654         (gl_tree_add_before, gl_tree_add_after):
1655         Use XMALLOC instead of xmalloc, and XCALLOC instead of xzalloc.
1656         * lib/gl_anyhash_list2.h (hash_resize): Likewise.
1657         * lib/gl_anylinked_list2.h (gl_linked_create_empty, gl_linked_create):
1658         (gl_linked_add_first, gl_linked_add_last, gl_linked_add_before):
1659         (gl_linked_add_after, gl_linked_add_at): Likewise.
1660         * lib/gl_anyrbtree_list2.h (create_subtree_with_contents):
1661         (gl_tree_create, gl_tree_add_first, gl_tree_add_last):
1662         (gl_tree_add_before, gl_tree_add_after): Likewise.
1663         * lib/gl_anytree_list2.h (gl_tree_create_empty): Likewise.
1664         * lib/gl_anytree_oset.h (gl_tree_create_empty): Likewise.
1665         * lib/gl_anytreehash_list1.h (add_to_bucket): Likewise.
1666
1667 2006-11-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1668
1669         * lib/gl_oset.h: Use C comment style, not C++ comment style.
1670
1671 2006-11-06  Bruno Haible  <bruno@clisp.org>
1672
1673         * m4/inline.m4: New file.
1674         * m4/gl_list.m4 (gl_LIST): Require gl_INLINE.
1675         * modules/list (Files): Add m4/inline.m4.
1676         * modules/oset (Files): Likewise.
1677
1678 2006-11-06  Paul Eggert  <eggert@cs.ucla.edu>
1679
1680         * lib/idcache.c: Include <stddef.h>, for offsetof.
1681         (struct userid.name): Change from char * to a flexible array member.
1682         All uses changed.
1683         * modules/idcache (Depends-on): Add flexmember.
1684
1685         * MODULES.html.sh (Core language properties): New module flexmember.
1686         * modules/flexmember, m4/flexmember.m4: New files.
1687
1688         * lib/xalloc.h (xnmalloc, xnrealloc, x2nrealloc): Now static
1689         inline functions that are identical with the old xnmalloc_inline,
1690         xnrealloc_inline, x2nrealloc_inline of lib/xmalloc.c.  This is so
1691         that we can avoid some unnecessary integer multiplications and
1692         divisions in the common case where the element size is known at
1693         compile time.
1694         (XNMALLOC) [HAVE_INLINE]: Remove special case, which is no longer
1695         needed.
1696         (xnboundedmalloc): Remove.
1697         (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): Use lower-case letters for
1698         arguments, for consistency with rest of this header.
1699         (xcharalloc): Rewrite using XNMALLOC.
1700         * lib/xmalloc.c (xnmalloc_inline, xnmalloc, xnrealloc_inline):
1701         (xnrealloc, x2nrealloc_inline, x2nrealloc): Remove.  The *_inline
1702         versions have been moved to lib/xalloc.h and renamed to be the
1703         non-*_inline versions.
1704         (xmalloc, xrealloc): Implement without reference to the xnmalloc
1705         and xnrealloc functions, since those functions are now inline and
1706         now call us.
1707         (x2realloc): Invoke x2realloc, not x2realloc_inline, to accommodate
1708         renaming described above.
1709         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Remove AC_C_INLINE since
1710         xmalloc.c no longer uses inline directly.  gl_PREREQ_XALLOC now
1711         captures the dependency in AC_C_INLINE.
1712
1713         New module canonicalize-lgpl, proposed by Charles Wilson in
1714         <http://lists.gnu.org/archive/html/bug-gnulib/2006-11/msg00020.html>
1715         with a few small changes afterwards.
1716         * MODULES.html.sh (File system functions): New module
1717         canonicalize-lgpl.
1718         * lib/canonicalize.h: Add comments for canonicalize_filename_mode
1719         and canonicalize_file_name.
1720         * lib/canonicalize-lgpl.c, m4/canonicalize-lgpl.m4:
1721         * modules/canonicalize-lgpl: New files.
1722
1723 2006-11-05  Bruno Haible  <bruno@clisp.org>
1724
1725         * gnulib-tool (func_import, func_create_testdir): Create directories
1726         also for files in subdirectories of lib/.
1727
1728 2006-11-05  Bruno Haible  <bruno@clisp.org>
1729
1730         * lib/gl_array_list.c (gl_array_iterator_next): Make pointer decrement
1731         ANSI C compliant.
1732
1733 2006-11-03  Bruno Haible  <bruno@clisp.org>
1734
1735         Simplify xmalloc expressions. Add overflow check in xmalloc arguments.
1736         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Require AC_C_INLINE.
1737         * lib/xalloc.h (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): New macros.
1738         (xnboundedmalloc): New inline function.
1739         * lib/classpath.c (new_classpath): Use XNMALLOC instead of xmalloc.
1740         * lib/clean-temp.c (create_temp_dir): Use XNMALLOC, XMALLOC instead of
1741         xmalloc.
1742         * lib/concatpath.c (concatenated_pathname): Use XNMALLOC instead of
1743         xmalloc.
1744         * lib/fatal-signal.c (at_fatal_signal): Use XNMALLOC instead of xmalloc.
1745         * lib/findprog.c (find_in_path): Use XNMALLOC instead of xmalloc.
1746         * lib/gl_array_list.c (gl_array_create_empty): Use XMALLOC instead of
1747         xmalloc.
1748         (gl_array_create): Use XNMALLOC, XMALLOC instead of xmalloc.
1749         * lib/gl_array_oset.c (gl_array_create_empty): Use XNMALLOC instead of
1750         xmalloc.
1751         * lib/gl_avltree_oset.c (gl_tree_add_first, gl_tree_add_before,
1752         gl_tree_add_after): Use XMALLOC instead of xmalloc.
1753         * lib/gl_carray_list.c (gl_carray_create_empty): Use XMALLOC instead of
1754         xmalloc.
1755         (gl_carray_create): Use XNMALLOC, XMALLOC instead of xmalloc.
1756         * lib/gl_rbtree_oset.c (gl_tree_add_first, gl_tree_add_before,
1757         gl_tree_add_after): Use XMALLOC instead of xmalloc.
1758         * lib/gl_sublist.c (gl_sublist_create): Use XMALLOC instead of xmalloc.
1759         * lib/pagealign_alloc.c (new_memnode): Use XMALLOC instead of xmalloc.
1760         * lib/sh-quote.c (shell_quote_argv): Use XNMALLOC instead of xmalloc.
1761         * lib/xvasprintf.c (xstrcat): Use XNMALLOC instead of xmalloc.
1762
1763 2006-11-03  Bruno Haible  <bruno@clisp.org>
1764
1765         * lib/c-ctype.h [C++]: Define functions without name mangling.
1766         * lib/fwriteerror.h [C++]: Likewise.
1767         * lib/gcd.h [C++]: Likewise.
1768         * lib/linebreak.h [C++]: Likewise.
1769
1770 2006-11-03  Paul Eggert  <eggert@cs.ucla.edu>
1771
1772         * lib/canonicalize.h: (canonicalize_mode_t, CAN_EXISTING):
1773         (CAN_ALL_BUT_LAST, CAN_MISSING, canonicalize_filename_mode):
1774         Define only if PROVIDE_CANONICALIZE_FILENAME_MODE is defined.
1775         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME):
1776         Check for functions and headers just once.
1777         Check for declaration of canonicalize_file_name.
1778         Define PROVIDE_CANONICALIZE_FILENAME_MODE.
1779
1780 2006-11-02  Charles Wilson  <cygwin@cwilson.fastmail.fm>
1781
1782         * gnulib-tool (func_import): Fix typo in actioncmd.
1783
1784 2006-11-02  Bruno Haible  <bruno@clisp.org>
1785
1786         * gnulib-tool (func_get_automake_snippet): Interpret a backslash-
1787         newline sequence in the Makefile.am snippet as a space, like "make"
1788         does.
1789         Reported by Roger Persson <perrog@gmail.com>.
1790
1791 2006-11-01  Bruno Haible  <bruno@clisp.org>
1792
1793         * m4/strcase.m4 (gl_FUNC_STRNCASECMP): Check whether strncasecmp is
1794         already declared in <string.h>.
1795         * lib/strcase.h (strncasecmp): Don't declare it if yes.
1796
1797 2006-11-01  Bruno Haible  <bruno@clisp.org>
1798
1799         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Don't define strcasecmp here.
1800         * lib/strcase.h: Include <string.h>.
1801         (strcasecmp): Define to rpl_strcasecmp here.
1802
1803 2006-11-01  Bruno Haible  <bruno@clisp.org>
1804
1805         * lib/printf-parse.c (PRINTF_PARSE): Cast malloc/realloc results.
1806
1807 2006-11-01  Eric Blake  <ebb9@byu.net>
1808
1809         * lib/mkstemp-safer.c (mkstemp_safer): Allow C++ compilation.
1810
1811         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Allow C++ configuration.
1812
1813 2006-10-29  Bruno Haible  <bruno@clisp.org>
1814
1815         Make it compile in C++ mode.
1816         * lib/full-write.c (full_rw): Add a cast.
1817
1818 2006-11-01  Bruno Haible  <bruno@clisp.org>
1819
1820         * gnulib-tool (func_get_automake_snippet): Change sed_combine_lines to
1821         be POSIX compliant.
1822         Reported by Roger Persson <perrog@gmail.com>.
1823
1824 2006-11-01  Eric Blake  <ebb9@byu.net>
1825
1826         * lib/getopt_.h: Fix comments.
1827
1828 2006-10-31  Eric Blake  <ebb9@byu.net>
1829
1830         * modules/tmpdir (Depends-on): Add sys_stat.
1831         * modules/mkdtemp (Depends-on): Add tempname, drop unistd.
1832         * lib/mkdtemp.c (gen_tempname): Remove; tempname covers this.
1833         * lib/tmpdir.c (S_ISDIR): Simplify, thanks to sys_stat.
1834         * m4/mkdtemp.m4 (gl_PREREQ_MKDTEMP): Simplify, thanks to
1835         tempname.
1836
1837 2006-10-31  Paul Eggert  <eggert@cs.ucla.edu>
1838
1839         Avoid some C++ diagnostics reported by Bruno Haible.
1840         * lib/quotearg.c (clone_quoting_options): Use xmemdup rather than
1841         xmalloc.
1842         (quotearg_alloc): Use xcharalloc rather than xmalloc.
1843         (struct slotvec): Move to top level.
1844         (quotearg_n_options): Rewrite to avoid xmalloc.
1845         * lib/xalloc.h (xcharalloc): New function.
1846         * (xrealloc, xnrealloc, x2realloc, x2nrealloc, xmemdup):
1847         [defined __cplusplus]: Add function template that provides result
1848         type propagation.  This part of the change is from Bruno Haible.
1849
1850 2006-10-29  Bruno Haible  <bruno@clisp.org>
1851
1852         Make it compile in C++ mode.
1853         * lib/striconv.c (mem_cd_iconv): Cast malloc/realloc result.
1854         * lib/strnlen1.c (strnlen1): Cast memchr result.
1855         * lib/mbchar.h (mb_copy): Rename arguments to 'new_mbc', 'old_mbc'.
1856         * lib/clean-temp.c (string_equals, string_hash): Add casts.
1857         (create_temp_dir): Rename local variable 'template'.
1858         (compile_csharp_using_sscli): Add cast.
1859         * lib/fatal-signal.c (at_fatal_signal): Cast xmalloc result.
1860         * lib/findprog.c (find_in_path): Likewise.
1861         * lib/linebreak.c (mbs_width_linebreaks): Cast malloc result.
1862         * lib/wait-process.c (register_slave_subprocess): Likewise.
1863
1864 2006-10-22  Bruno Haible  <bruno@clisp.org>
1865
1866         * modules/tsearch: New file.
1867         * lib/tsearch.h: New file.
1868         * lib/tsearch.c: New file, from glibc-2.5 with small modifications.
1869         * m4/tsearch.m4: New file.
1870         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add tsearch.
1871
1872 2006-10-29  Eric Blake  <ebb9@byu.net>
1873
1874         * lib/arcfour.c: Assume config.h.
1875         * lib/arctwo.c: Likewise.
1876         * lib/base64.c: Likewise.
1877         * lib/check-version.c: Likewise.
1878         * lib/crc.c: Likewise.
1879         * lib/des.c: Likewise.
1880         * lib/gc-gnulib.c: Likewise.
1881         * lib/gc-libgcrypt.c: Likewise.
1882         * lib/gc-pbkdf2-sha1.c: Likewise.
1883         * lib/getaddrinfo.c: Likewise.
1884         * lib/getdelim.c: Likewise.
1885         * lib/getline.c: Likewise.
1886         * lib/hmac-md5.c: Likewise.
1887         * lib/hmac-sha1.c: Likewise.
1888         * lib/iconvme.c: Likewise.
1889         * lib/md2.c: Likewise.
1890         * lib/md4.c: Likewise.
1891         * lib/memxor.c: Likewise.
1892         * lib/read-file.c: Likewise.
1893         * lib/readline.c: Likewise.
1894         * lib/rijndael-alg-fst.c: Likewise.
1895         * lib/rijndael-api-fst.c: Likewise.
1896         * lib/xgetdomainname.c: Likewise.
1897
1898 2006-10-28  Eric Blake  <ebb9@byu.net>
1899
1900         * lib/xstrndup.c: Assume config.h.
1901
1902 2006-10-27  Paul Eggert  <eggert@cs.ucla.edu>
1903
1904         Move stat.h-substitute stuff from lib/stat-macros.h to lib/stat_.h.
1905         stat-macros.h is now for our own macros, whereas stat_h is for
1906         macros in the <sys/stat.h> name space.
1907         * lib/stat-macros.h: Remove copyright notice, as this file is now tiny.
1908         (STAT_MACROS_H): Remove.
1909         (S_IFMT, S_ISBLK, S_ISCHR, S_ISDIR, S_ISFIFO, S_ISLNK, S_ISNAM):
1910         (S_ISMPB, S_ISMPC, S_ISNWK, S_ISREG, S_ISSOCK, S_ISDOOR, S_ISPORT):
1911         (S_TYPEISMQ, S_TYPEISTMO, S_TYPEISSEM, S_TYPEISSHM, S_ISCTG, S_ISOFD):
1912         (S_ISOFL, S_ISWHT, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IRGRP):
1913         (S_IROTH, S_IWUSR, S_IWGRP, S_IWOTH, S_IXUSR, S_IXGRP, S_IXOTH):
1914         (S_IRWXU, S_IRWXG, S_IRWXO, S_IXUGO, S_IRWXUGO):
1915         Move these macros to ...
1916         * lib/stat_.h: here.  Don't include stat-macros.h.
1917         * lib/canonicalize.c: Don't include stat-macros.h.
1918         * lib/chown.c: Likewise.
1919         * lib/euidaccess.c: Likewise.
1920         * lib/file-type.c: Likewise.
1921         * lib/filemode.c: Likewise.
1922         * lib/glob.c: Likewise.
1923         * lib/isapipe.c: Likewise.
1924         * lib/lchown.c: Likewise.
1925         * lib/lstat.c: Likewise.
1926         * lib/mkdir-p.c: Likewise.
1927         * lib/rmdir.c: Likewise.
1928         * m4/lchown.m4 (gl_FUNC_LCHOWN): Don't require gl_STAT_MACROS.
1929         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Don't check for io.h
1930         unless mkdir isn't declared, to speed up 'configure'.
1931         Always create sys/stat.h, since it's unlikely any real sys/stat.h
1932         would define all the S_* symbols.
1933         * modules/canonicalize (Depends-on):
1934         Depend on sys_stat, not stat-macros.
1935         * modules/chown: Likewise.
1936         * modules/euidaccess: Likewise.
1937         * modules/filemode: Likewise.
1938         * modules/file-type: Likewise.
1939         * modules/glob: Likewise.
1940         * modules/isapipe: Likewise.
1941         * modules/lchown: Likewise.
1942         * modules/lstat: Likewise.
1943         * modules/mkancesdirs: Likewise.
1944         * modules/rmdir: Likewise.
1945         * modules/mkdir-p (Depends-on): Also depend on sys_stat.
1946         * modules/modechange: Likewise.
1947         * modules/stat-macros (Files): Remove m4/stat-macros.m4.
1948         (configure.ac): Remove gl_STAT_MACROS.
1949         * modules/sys_stat (Depends-on): Remove stat-macros.
1950
1951 2006-10-27  Bruno Haible  <bruno@clisp.org>
1952
1953         * m4/signed.m4: Remove file.
1954         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_ARGS_: Remove bh_C_SIGNED
1955         invocation.
1956         * modules/vasnprintf (Files): Remove m4/signed.m4.
1957
1958 2006-10-27  Bruno Haible  <bruno@clisp.org>
1959
1960         Update to GNU gettext 0.16.
1961         * modules/gettext (Files): Add m4/intl.m4, m4/intldir.m4. Remove
1962         m4/inttypes-h.m4, m4/signed.m4.
1963         * m4/gettext.m4: Update to GNU gettext 0.16.
1964         * m4/intl.m4: New file, from GNU gettext.
1965         * m4/intldir.m4: New file, from GNU gettext.
1966         * config/srclist.txt: Update
1967
1968 2006-10-27  Eric Blake  <ebb9@byu.net>
1969
1970         * MODULES.html.sh: Document tempname.
1971         * modules/mkstemp (Depends-on): Add tempname, and drop transitive
1972         dependencies.
1973         (Files): Move lib/tempname.c...
1974         * modules/tempname: ...to this new module.
1975         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Remove tempname checks.
1976         (gl_PREREQ_TEMPNAME): Move...
1977         * m4/tempname.m4: ...to this new file.
1978         * lib/mkstemp.c (includes) [!_LIBC]: Use tempname.h.
1979         * modules/sys_stat (Depends-on): Add stat-macros.
1980         * lib/stat_.h (includes): Pick up stat macros.
1981         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Replace <sys/stat.h>
1982         if stat macros are broken.
1983         * lib/tempname.c (includes): No need to include "stat-macros.h".
1984         (__gen_tempname) [!_LIBC]: Expose as gen_tempname.
1985         (direxists, __path_search) [!_LIBC]: Don't compile these in
1986         gnulib; the tmpdir module covers that.
1987         * lib/tempname.h: New file.
1988
1989 2006-10-26  Paul Eggert  <eggert@cs.ucla.edu>
1990
1991         * COPYING: Explain how gnulib-tool converts licence headers.
1992         Almost all wording by Eric Blake.
1993
1994 2006-10-25  Paul Eggert  <eggert@cs.ucla.edu>
1995
1996         * lib/mbchar.h (is_basic_table): Make read-only.
1997         * lib/mbchar.c (is_basic_table): Likewise.
1998         Reported by John Darrington.
1999
2000 2006-10-25  Bruno Haible  <bruno@clisp.org>
2001
2002         * lib/progname.h (set_program_name): Undefine before defining.
2003
2004 2006-10-25  Bruno Haible  <bruno@clisp.org>
2005
2006         * lib/gettext.h (_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS): Define to
2007         false for non-gcc C++ compilers.
2008         Reported by Nelson H. F. Beebe <beebe@math.utah.edu>.
2009
2010 2006-10-24  Bruno Haible  <bruno@clisp.org>
2011
2012         * lib/striconv.c (mem_cd_iconv, str_cd_iconv): Treat all non-GNU
2013         iconv implementations like Irix iconv.
2014
2015 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
2016
2017         * modules/vararrays: New file.
2018         * m4/vararrays.m4: New file, taken from diffutils.
2019         * MODULES.html.sh: New module vararrays.
2020
2021 2006-10-24  Karl Berry  <karl@gnu.org>
2022
2023         * doc/gnulib-intro.texi: --- instead of --; non-naive naive.
2024         Don't call GNU Unix.
2025
2026 2006-10-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2027
2028         * users.txt: Add Libtool.
2029
2030         Sync from Libtool:
2031
2032         2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
2033
2034         * lib/argz.c: Remove check for HAVE_CONFIG_H, to conform
2035         to gnulib's policy of including config.h unconditionally.
2036
2037 2006-10-24  Bruno Haible  <bruno@clisp.org>
2038
2039         * modules/wcwidth (Files): Add m4/wint_t.m4.
2040         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Require gt_TYPE_WINT_T.
2041         * lib/wcwidth.h (iswprint): Use 'int' if 'wint_t' is not defined.
2042
2043 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
2044
2045         * lib/getdate.y (yyerror): Make the arguments pointer-to-const,
2046         to pacify GCC with some -W flags enabled.  Problem reported by
2047         Bruno Haible.
2048
2049 2006-10-24  Jim Meyering  <jim@meyering.net>
2050
2051         * MODULES.html.sh: Remove uinttostr.  It's not a module.
2052         Reported by Karl Berry.
2053
2054 2006-10-23  Bruno Haible  <bruno@clisp.org>
2055
2056         * lib/fts.c (fts_build): Move variable declaration, for C89 compliance.
2057
2058 2006-10-24  Bruno Haible  <bruno@clisp.org>
2059
2060         * lib/gl_list.h: Use C comment style, not C++ comment style.
2061
2062 2006-10-23  Eric Blake  <ebb9@byu.net>
2063
2064         * lib/getaddrinfo.c (includes): Add missing include.
2065
2066 2006-10-23  Bruno Haible  <bruno@clisp.org>
2067             Paul Eggert  <eggert@cs.ucla.edu>
2068
2069         Ability to rename obstack_free.
2070         * lib/obstack.h (__obstack_free): New macro. Declare instead of
2071         obstack_free.
2072         (obstack_free): Invoke the __obstack_free macro.
2073         * lib/obstack.c (obstack_free): Use __obstack_free macro.
2074
2075 2006-10-23  Bruno Haible  <bruno@clisp.org>
2076             Paul Eggert  <eggert@cs.ucla.edu>
2077
2078         * lib/argp.h (argp_parse, __argp_parse): Comment out the identifiers
2079         __argc, __argv from the declaration. (They are defined as macros on
2080         mingw.)
2081
2082 2006-10-22  Bruno Haible  <bruno@clisp.org>
2083
2084         * doc/gnulib-intro.texi: New file.
2085         * doc/gnulib.texi: Include it.
2086
2087 2006-10-21  Bruno Haible  <bruno@clisp.org>
2088
2089         * doc/gnulib.texi: Split the chapter "Gnulib" into 3 chapters
2090         "Introduction", "Miscellanous Notes", "Particular Modules".
2091
2092 2006-10-21  Bruno Haible  <bruno@clisp.org>
2093
2094         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
2095         Change mostlyclean-local rule to avoid sh syntax error from bash
2096         versions 2.00..2.05 when $(MOSTLYCLEANDIRS) is empty.
2097
2098 2006-10-23  Jim Meyering  <jim@meyering.net>
2099
2100         * lib/getaddrinfo.c (getnameinfo): Use new lightweight uinttostr,
2101         in place of snprintf.
2102
2103         * modules/inttostr (Files): Add lib/uinttostr.c.
2104         * lib/uinttostr.c (inttostr): New file/function.
2105         * lib/inttostr.h (uinttostr): Declare.
2106         * m4/inttostr.m4: Add AC_LIBOBJ([uinttostr]).
2107         * MODULES.html.sh (Numeric conversion functions <stdlib.h>):
2108         Add uinttostr.
2109         * modules/getaddrinfo (Depends-on): Remove snprintf.  Add inttostr.
2110
2111 2006-10-21  Paul Eggert  <eggert@cs.ucla.edu>
2112
2113         * lib/canonicalize.c (ELOOP): Define if not already defined.
2114         Problem reported by Bruno Haible in
2115         <http://lists.gnu.org/archive/html/bug-gnulib/2006-10/msg00282.html>.
2116
2117 2006-10-21  Paul Eggert  <eggert@cs.ucla.edu>
2118
2119         * lib/stdint_.h [defined _AIX]: Don't include <sys/types.h>.
2120         Problem reported by Perry Smith and Ville Laurikari.
2121
2122         * lib/getndelim2.c (SSIZE_MAX): Use same defn that getdelim.c
2123         uses.
2124
2125 2006-10-19  Bruno Haible  <bruno@clisp.org>
2126
2127         * lib/getndelim2.c (SSIZE_MAX): Provide fallback definition. Needed
2128         for mingw.
2129
2130 2006-10-19  Bruno Haible  <bruno@clisp.org>
2131
2132         * lib/openat-priv.h (EOPNOTSUPP): Provide fallback definition.
2133         Needed for mingw.
2134
2135 2006-10-19  Bruno Haible  <bruno@clisp.org>
2136
2137         * m4/size_max.m4 (gl_SIZE_MAX): Cache the result.
2138
2139 2006-10-19  Bruno Haible  <bruno@clisp.org>
2140
2141         * m4/allocsa.m4 (gl_ALLOCSA): Invoke gl_FUNC_ALLOCA, don't AC_REQUIRE
2142         it.
2143
2144 2006-10-19  Bruno Haible  <bruno@clisp.org>
2145
2146         * m4/alloca.m4 (gl_FUNC_ALLOCA): Cache the result of the AC_EGREP_CPP
2147         invocation.
2148
2149 2006-10-19  Bruno Haible  <bruno@clisp.org>
2150
2151         * gnulib-tool (func_create_testdir): Don't include ftruncate and
2152         mountlist by default.
2153
2154 2006-10-16  Bruno Haible  <bruno@clisp.org>
2155
2156         * lib/c-strstr.c: Include c-strstr.h.
2157
2158 2006-10-18  Charles Wilson  <cygwin@cwilson.fastmail.fm>
2159
2160         * gnulib-tool: Don't clobber $sourcebase when $local_gnulib_dir ends
2161         in a slash.
2162
2163 2006-10-18  Bruno Haible  <bruno@clisp.org>
2164
2165         * lib/lock.h [C++]: Wrap definitions in extern "C".
2166
2167 2006-10-18  Bruno Haible  <bruno@clisp.org>
2168
2169         * gnulib-tool (func_emit_initmacro_end): Remove duplicates from the
2170         gl_LIBOBJS list.
2171
2172 2006-10-18  Bruno Haible  <bruno@clisp.org>
2173
2174         * lib/findprog.c (find_in_path): Avoid "gcc -Wwrite-strings" warning.
2175
2176 2006-10-19  Paul Eggert  <eggert@cs.ucla.edu>
2177
2178         * lib/xstrtol.h: Include gettext.h.
2179         (_STRTOL_ERROR): Wrap English-language formats inside gettext.
2180         Problem reported by Eric Blake.
2181         * modules/xstrtol (Depends-on): Add gettext-h.
2182
2183 2006-10-19  Paul Eggert  <eggert@cs.ucla.edu>  (tiny change)
2184
2185         * lib/strftime.c (advance): New macro.
2186         (add): Use it to avoid adding 0 to a FILE *.  FILE can be an
2187         incomplete type, so you can't add 0 to it.  Problem and patch
2188         reported by Eelco Dolstra for dietlibc.
2189
2190 2006-10-18  Jim Meyering  <jim@meyering.net>
2191
2192         * lib/readutmp.c (desirable_utmp_entry): Use "bool" as the
2193         type for a local, and rename it: s/up/user_proc/.
2194
2195 2006-10-18  Sergey Poznyakoff  <gray@gnu.org.ua>
2196
2197         * lib/readutmp.c (desirable_utmp_entry): Implement new flag:
2198         READ_UTMP_USER_PROCESS.
2199         * lib/readutmp.h (READ_UTMP_USER_PROCESS): New flag
2200
2201 2006-10-17  Paul Eggert  <eggert@cs.ucla.edu>
2202
2203         * lib/localcharset.c: Do not check HAVE_SETLOCALE.
2204         * m4/localcharset.m4 (gl_LOCALCHARSET): Don't check for setlocale.
2205
2206 2006-10-17  Eric Blake  <ebb9@byu.net>
2207
2208         * lib/sigprocmask.c (sigprocmask): Fix typo.
2209
2210         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Fix typo.
2211
2212         * modules/clean-temp (Makefile.am): Don't add to make output...
2213         (configure.ac): ...instead define SIGNAL_SAFE_LIST inside
2214         config.h.
2215
2216 2006-10-17  Bruno Haible  <bruno@clisp.org>
2217
2218         * lib/gettext.h (gettext, ngettext, pgettext, npgettext): Define
2219         differently if DEFAULT_TEXT_DOMAIN is set.
2220
2221 2006-10-16  Bruno Haible  <bruno@clisp.org>
2222
2223         * lib/clean-temp.c: Include fwriteerror.h.
2224
2225 2006-10-16  Bruno Haible  <bruno@clisp.org>
2226
2227         * getndelim2.m4 (gl_GETNDELIM2): Remove 2003-10-23 hack.
2228
2229 2006-10-16  Bruno Haible  <bruno@clisp.org>
2230
2231         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Also test for sigset_t.
2232         * lib/sigprocmask.h: Include <sys/types.h>.
2233         (sigset_t): Use the system's definition if present.
2234
2235 2006-10-17  Eric Blake  <ebb9@byu.net>
2236
2237         * lib/xvasprintf.c (includes): Assume config.h.
2238         * lib/xasprintf.c (includes): Likewise.
2239
2240 2006-10-16  Paul Eggert  <eggert@cs.ucla.edu>
2241
2242         * lib/fsusage.c (PROPAGATE_ALL_ONES): Don't assume uintmax_t is
2243         at least as wide as intmax_t.
2244
2245 2006-10-16  Alexandre Duret-Lutz  <adl@gnu.org>
2246
2247         (Imported from Automake.)
2248         * build-aux/gnupload: Update to version 1.1 of directive file.
2249
2250 2006-10-16  Eric Blake  <ebb9@byu.net>
2251
2252         * modules/configmake (Makefile.am): Add pkglibexecdir support, to
2253         match Automake 1.10a.
2254
2255 2006-10-14  Bruno Haible  <bruno@clisp.org>
2256
2257         * modules/sigprocmask: New file.
2258         * lib/sigprocmask.h: New file.
2259         * lib/sigprocmask.c: New file.
2260         * m4/signalblocking.m4 (gl_SIGNALBLOCKING): Renamed from
2261         gt_SIGNALBLOCKING. When not defining HAVE_POSIX_SIGNALBLOCKING,
2262         request sigprocmask.o.
2263         (gl_PREREQ_SIGPROCMASK): New macro.
2264         * modules/fatal-signal (Files): Remove m4/signalblocking.m4.
2265         (Depends-on): Add sigprocmask.
2266         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Don't require
2267         gt_SIGNALBLOCKING. Test for 'raise' only once.
2268         * lib/fatal-signal.c: Include sigprocmask.h.
2269         (fatal_signal_set, init_fatal_signal_set, block_fatal_signals,
2270         unblock_fatal_signals): Define always.
2271         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
2272         sigprocmask.
2273
2274 2006-10-14  Paul Eggert  <eggert@cs.ucla.edu>
2275
2276         Sync from Automake.
2277         * build-aux/install-sh (posix_mkdir): Reject FreeBSD 6.1 mkdir -p -m,
2278         which incorrectly sets the mode of an existing destination
2279         directory.  In some cases the unpatched install-sh could do the
2280         equivalent of "chmod 777 /" or "chmod 0 /" on a buggy FreeBSD
2281         system.  We hope this is rare in practice, but it's clearly worth
2282         fixing.  Problem reported by Alex Unleashed in
2283         <http://lists.gnu.org/archive/html/bug-autoconf/2006-10/msg00012.html>.
2284         Also, don't bother to check for -m bugs unless we're using -m;
2285         suggested by Stepan Kasal.
2286
2287 2006-10-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2288
2289         Sync from Automake.
2290         * build-aux/depcomp (gcc3): Put dependency extraction flags before the
2291         `-c' flag, so they appear at the same position as in %FASTDEP%
2292         mode in depend2.am.  Fixes build failure for FreeBSD's c89,
2293         which ignores unknown options only after the first non-option.
2294         Bug report against M4 by Nelson H. F. Beebe.
2295
2296 2006-10-13  Jim Meyering  <jim@meyering.net>
2297
2298         Fix a bug in yesterday's change.
2299         * lib/fts.c (fts_open): When using FTS_XDEV|FTS_NOSTAT,
2300         p->fts_statp->st_dev would be used uninitialized.
2301         Ensures that we always call fts_stat on the very first entry.
2302         Miklos Szeredi reported that find -xdev stopped working.
2303
2304 2006-10-12  Bruno Haible  <bruno@clisp.org>
2305
2306         * gnulib-tool (func_get_automake_snippet): Append an automatically
2307         computed EXTRA_DIST augmentation.
2308         * modules/acl (Makefile.am): Remove EXTRA_DIST augmentation.
2309         * modules/alloca-opt (Makefile.am): Likewise.
2310         * modules/allocsa (Makefile.am): Likewise.
2311         * modules/arcfour (Makefile.am): Likewise.
2312         * modules/arctwo (Makefile.am): Likewise.
2313         * modules/argmatch (Makefile.am): Likewise.
2314         * modules/argz (Makefile.am): Likewise.
2315         * modules/atexit (Makefile.am): Likewise.
2316         * modules/backupfile (Makefile.am): Likewise.
2317         * modules/byteswap (Makefile.am): Likewise.
2318         * modules/c-strtod (Makefile.am): Likewise.
2319         * modules/c-strtold (Makefile.am): Likewise.
2320         * modules/calloc (Makefile.am): Likewise.
2321         * modules/canon-host (Makefile.am): Likewise.
2322         * modules/canonicalize (Makefile.am): Likewise.
2323         * modules/chdir-long (Makefile.am): Likewise.
2324         * modules/chdir-safer (Makefile.am): Likewise.
2325         * modules/check-version (Makefile.am): Likewise.
2326         * modules/chown (Makefile.am): Likewise.
2327         * modules/cloexec (Makefile.am): Likewise.
2328         * modules/close-stream (Makefile.am): Likewise.
2329         * modules/closeout (Makefile.am): Likewise.
2330         * modules/crc (Makefile.am): Likewise.
2331         * modules/csharpexec (Makefile.am): Likewise.
2332         * modules/cycle-check (Makefile.am): Likewise.
2333         * modules/des (Makefile.am): Likewise.
2334         * modules/dev-ino (Makefile.am): Likewise.
2335         * modules/dirfd (Makefile.am): Likewise.
2336         * modules/dirname (Makefile.am): Likewise.
2337         * modules/dup2 (Makefile.am): Likewise.
2338         * modules/eealloc (Makefile.am): Likewise.
2339         * modules/error (Makefile.am): Likewise.
2340         * modules/euidaccess (Makefile.am): Likewise.
2341         * modules/exclude (Makefile.am): Likewise.
2342         * modules/exitfail (Makefile.am): Likewise.
2343         * modules/fcntl-safer (Makefile.am): Likewise.
2344         * modules/fcntl (Makefile.am): Likewise.
2345         * modules/file-type (Makefile.am): Likewise.
2346         * modules/fileblocks (Makefile.am): Likewise.
2347         * modules/filemode (Makefile.am): Likewise.
2348         * modules/filenamecat (Makefile.am): Likewise.
2349         * modules/fnmatch (Makefile.am): Likewise.
2350         * modules/fopen-safer (Makefile.am): Likewise.
2351         * modules/fpending (Makefile.am): Likewise.
2352         * modules/fprintftime (Makefile.am): Likewise.
2353         * modules/free (Makefile.am): Likewise.
2354         * modules/fsusage (Makefile.am): Likewise.
2355         * modules/ftruncate (Makefile.am): Likewise.
2356         * modules/fts (Makefile.am): Likewise.
2357         * modules/gc-arcfour (Makefile.am): Likewise.
2358         * modules/gc-des (Makefile.am): Likewise.
2359         * modules/gc-hmac-md5 (Makefile.am): Likewise.
2360         * modules/gc-hmac-sha1 (Makefile.am): Likewise.
2361         * modules/gc-md4 (Makefile.am): Likewise.
2362         * modules/gc-pbkdf2-sha1 (Makefile.am): Likewise.
2363         * modules/gc-sha1 (Makefile.am): Likewise.
2364         * modules/gc (Makefile.am): Likewise.
2365         * modules/getaddrinfo (Makefile.am): Likewise.
2366         * modules/getcwd (Makefile.am): Likewise.
2367         * modules/getdelim (Makefile.am): Likewise.
2368         * modules/getdomainname (Makefile.am): Likewise.
2369         * modules/getgroups (Makefile.am): Likewise.
2370         * modules/gethostname (Makefile.am): Likewise.
2371         * modules/gethrxtime (Makefile.am): Likewise.
2372         * modules/getline (Makefile.am): Likewise.
2373         * modules/getloadavg (Makefile.am): Likewise.
2374         * modules/getlogin_r (Makefile.am): Likewise.
2375         * modules/getndelim2 (Makefile.am): Likewise.
2376         * modules/getopt (Makefile.am): Likewise.
2377         * modules/getpagesize (Makefile.am): Likewise.
2378         * modules/getpass-gnu (Makefile.am): Likewise.
2379         * modules/getpass (Makefile.am): Likewise.
2380         * modules/getsubopt (Makefile.am): Likewise.
2381         * modules/gettime (Makefile.am): Likewise.
2382         * modules/gettimeofday (Makefile.am): Likewise.
2383         * modules/getugroups (Makefile.am): Likewise.
2384         * modules/getusershell (Makefile.am): Likewise.
2385         * modules/glob (Makefile.am): Likewise.
2386         * modules/group-member (Makefile.am): Likewise.
2387         * modules/hard-locale (Makefile.am): Likewise.
2388         * modules/hash (Makefile.am): Likewise.
2389         * modules/hmac-md5 (Makefile.am): Likewise.
2390         * modules/hmac-sha1 (Makefile.am): Likewise.
2391         * modules/human (Makefile.am): Likewise.
2392         * modules/idcache (Makefile.am): Likewise.
2393         * modules/imaxabs (Makefile.am): Likewise.
2394         * modules/imaxdiv (Makefile.am): Likewise.
2395         * modules/inet_ntop (Makefile.am): Likewise.
2396         * modules/inet_pton (Makefile.am): Likewise.
2397         * modules/intprops (Makefile.am): Likewise.
2398         * modules/inttostr (Makefile.am): Likewise.
2399         * modules/inttypes (Makefile.am): Likewise.
2400         * modules/isapipe (Makefile.am): Likewise.
2401         * modules/javaversion (Makefile.am): Likewise.
2402         * modules/lchmod (Makefile.am): Likewise.
2403         * modules/lchown (Makefile.am): Likewise.
2404         * modules/localcharset (Makefile.am): Likewise.
2405         * modules/long-options (Makefile.am): Likewise.
2406         * modules/lstat (Makefile.am): Likewise.
2407         * modules/malloc (Makefile.am): Likewise.
2408         * modules/mathl (Makefile.am): Likewise.
2409         * modules/mbchar (Makefile.am): Likewise.
2410         * modules/md2 (Makefile.am): Likewise.
2411         * modules/md4 (Makefile.am): Likewise.
2412         * modules/md5 (Makefile.am): Likewise.
2413         * modules/memcasecmp (Makefile.am): Likewise.
2414         * modules/memchr (Makefile.am): Likewise.
2415         * modules/memcmp (Makefile.am): Likewise.
2416         * modules/memcoll (Makefile.am): Likewise.
2417         * modules/memcpy (Makefile.am): Likewise.
2418         * modules/memmem (Makefile.am): Likewise.
2419         * modules/memmove (Makefile.am): Likewise.
2420         * modules/mempcpy (Makefile.am): Likewise.
2421         * modules/memrchr (Makefile.am): Likewise.
2422         * modules/memset (Makefile.am): Likewise.
2423         * modules/memxor (Makefile.am): Likewise.
2424         * modules/mkancesdirs (Makefile.am): Likewise.
2425         * modules/mkdir-p (Makefile.am): Likewise.
2426         * modules/mkdir (Makefile.am): Likewise.
2427         * modules/mkdtemp (Makefile.am): Likewise.
2428         * modules/mkstemp (Makefile.am): Likewise.
2429         * modules/mktime (Makefile.am): Likewise.
2430         * modules/modechange (Makefile.am): Likewise.
2431         * modules/mountlist (Makefile.am): Likewise.
2432         * modules/nanosleep (Makefile.am): Likewise.
2433         * modules/obstack (Makefile.am): Likewise.
2434         * modules/openat (Makefile.am): Likewise.
2435         * modules/pagealign_alloc (Makefile.am): Likewise.
2436         * modules/pathmax (Makefile.am): Likewise.
2437         * modules/physmem (Makefile.am): Likewise.
2438         * modules/poll (Makefile.am): Likewise.
2439         * modules/posixtm (Makefile.am): Likewise.
2440         * modules/posixver (Makefile.am): Likewise.
2441         * modules/putenv (Makefile.am): Likewise.
2442         * modules/quote (Makefile.am): Likewise.
2443         * modules/quotearg (Makefile.am): Likewise.
2444         * modules/raise (Makefile.am): Likewise.
2445         * modules/read-file (Makefile.am): Likewise.
2446         * modules/readline (Makefile.am): Likewise.
2447         * modules/readlink (Makefile.am): Likewise.
2448         * modules/readtokens (Makefile.am): Likewise.
2449         * modules/readutmp (Makefile.am): Likewise.
2450         * modules/realloc (Makefile.am): Likewise.
2451         * modules/regex (Makefile.am): Likewise.
2452         * modules/rename-dest-slash (Makefile.am): Likewise.
2453         * modules/rename (Makefile.am): Likewise.
2454         * modules/rijndael (Makefile.am): Likewise.
2455         * modules/rmdir (Makefile.am): Likewise.
2456         * modules/rpmatch (Makefile.am): Likewise.
2457         * modules/safe-read (Makefile.am): Likewise.
2458         * modules/safe-write (Makefile.am): Likewise.
2459         * modules/same-inode (Makefile.am): Likewise.
2460         * modules/same (Makefile.am): Likewise.
2461         * modules/save-cwd (Makefile.am): Likewise.
2462         * modules/savedir (Makefile.am): Likewise.
2463         * modules/setenv (Makefile.am): Likewise.
2464         * modules/settime (Makefile.am): Likewise.
2465         * modules/sha1 (Makefile.am): Likewise.
2466         * modules/sig2str (Makefile.am): Likewise.
2467         * modules/snprintf (Makefile.am): Likewise.
2468         * modules/stat-macros (Makefile.am): Likewise.
2469         * modules/stat-time (Makefile.am): Likewise.
2470         * modules/stdbool (Makefile.am): Likewise.
2471         * modules/stdint (Makefile.am): Likewise.
2472         * modules/stdlib-safer (Makefile.am): Likewise.
2473         * modules/stpcpy (Makefile.am): Likewise.
2474         * modules/stpncpy (Makefile.am): Likewise.
2475         * modules/strcase (Makefile.am): Likewise.
2476         * modules/strcasestr (Makefile.am): Likewise.
2477         * modules/strchrnul (Makefile.am): Likewise.
2478         * modules/strcspn (Makefile.am): Likewise.
2479         * modules/strdup (Makefile.am): Likewise.
2480         * modules/strerror (Makefile.am): Likewise.
2481         * modules/strftime (Makefile.am): Likewise.
2482         * modules/strndup (Makefile.am): Likewise.
2483         * modules/strnlen (Makefile.am): Likewise.
2484         * modules/strpbrk (Makefile.am): Likewise.
2485         * modules/strsep (Makefile.am): Likewise.
2486         * modules/strstr (Makefile.am): Likewise.
2487         * modules/strtod (Makefile.am): Likewise.
2488         * modules/strtoimax (Makefile.am): Likewise.
2489         * modules/strtok_r (Makefile.am): Likewise.
2490         * modules/strtol (Makefile.am): Likewise.
2491         * modules/strtoll (Makefile.am): Likewise.
2492         * modules/strtoul (Makefile.am): Likewise.
2493         * modules/strtoull (Makefile.am): Likewise.
2494         * modules/strtoumax (Makefile.am): Likewise.
2495         * modules/strverscmp (Makefile.am): Likewise.
2496         * modules/sys_socket (Makefile.am): Likewise.
2497         * modules/sys_stat (Makefile.am): Likewise.
2498         * modules/sysexits (Makefile.am): Likewise.
2499         * modules/time_r (Makefile.am): Likewise.
2500         * modules/timegm (Makefile.am): Likewise.
2501         * modules/timespec (Makefile.am): Likewise.
2502         * modules/tmpfile-safer (Makefile.am): Likewise.
2503         * modules/trim (Makefile.am): Likewise.
2504         * modules/unistd-safer (Makefile.am): Likewise.
2505         * modules/unlinkdir (Makefile.am): Likewise.
2506         * modules/unlocked-io (Makefile.am): Likewise.
2507         * modules/userspec (Makefile.am): Likewise.
2508         * modules/utime (Makefile.am): Likewise.
2509         * modules/utimecmp (Makefile.am): Likewise.
2510         * modules/utimens (Makefile.am): Likewise.
2511         * modules/vasnprintf (Makefile.am): Likewise.
2512         * modules/vasprintf (Makefile.am): Likewise.
2513         * modules/vsnprintf (Makefile.am): Likewise.
2514         * modules/xalloc (Makefile.am): Likewise.
2515         * modules/xgetcwd (Makefile.am): Likewise.
2516         * modules/xnanosleep (Makefile.am): Likewise.
2517         * modules/xreadlink (Makefile.am): Likewise.
2518         * modules/xstrtod (Makefile.am): Likewise.
2519         * modules/xstrtol (Makefile.am): Likewise.
2520         * modules/xstrtold (Makefile.am): Likewise.
2521         * modules/yesno (Makefile.am): Likewise.
2522         * modules/getdate (Makefile.am): Don't add getdate.h to EXTRA_DIST.
2523
2524 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
2525
2526         * modules/error (Makefile.am): Distribute files through
2527         EXTRA_DIST, not lib_SOURCES.
2528
2529 2006-10-12  Eric Blake  <ebb9@byu.net>
2530
2531         * modules/error (Makefile.am): Distribute files in /lib.
2532         * modules/obstack (Makefile.am): Likewise.
2533
2534 2006-10-12  Bruno Haible  <bruno@clisp.org>
2535
2536         * modules/acl (Makefile.am): Distribute all files in lib/ through
2537         EXTRA_DIST.
2538         * modules/arcfour (Makefile.am): Likewise.
2539         * modules/arctwo (Makefile.am): Likewise.
2540         * modules/argmatch (Makefile.am): Likewise.
2541         * modules/argz (Makefile.am): Likewise.
2542         * modules/atexit (Makefile.am): Likewise.
2543         * modules/backupfile (Makefile.am): Likewise.
2544         * modules/c-strtod (Makefile.am): Likewise.
2545         * modules/c-strtold (Makefile.am): Likewise.
2546         * modules/calloc (Makefile.am): Likewise.
2547         * modules/canon-host (Makefile.am): Likewise.
2548         * modules/canonicalize (Makefile.am): Likewise.
2549         * modules/chdir-long (Makefile.am): Likewise.
2550         * modules/chdir-safer (Makefile.am): Likewise.
2551         * modules/check-version (Makefile.am): Likewise.
2552         * modules/chown (Makefile.am): Likewise.
2553         * modules/cloexec (Makefile.am): Likewise.
2554         * modules/close-stream (Makefile.am): Likewise.
2555         * modules/closeout (Makefile.am): Likewise.
2556         * modules/crc (Makefile.am): Likewise.
2557         * modules/cycle-check (Makefile.am): Likewise.
2558         * modules/des (Makefile.am): Likewise.
2559         * modules/dirfd (Makefile.am): Likewise.
2560         * modules/dirname (Makefile.am): Likewise.
2561         * modules/dup2 (Makefile.am): Likewise.
2562         * modules/euidaccess (Makefile.am): Likewise.
2563         * modules/exclude (Makefile.am): Likewise.
2564         * modules/exitfail (Makefile.am): Likewise.
2565         * modules/fcntl-safer (Makefile.am): Likewise.
2566         * modules/file-type (Makefile.am): Likewise.
2567         * modules/fileblocks (Makefile.am): Likewise.
2568         * modules/filemode (Makefile.am): Likewise.
2569         * modules/filenamecat (Makefile.am): Likewise.
2570         * modules/fnmatch (Makefile.am): Likewise.
2571         * modules/fopen-safer (Makefile.am): Likewise.
2572         * modules/fpending (Makefile.am): Likewise.
2573         * modules/fprintftime (Makefile.am): Likewise.
2574         * modules/free (Makefile.am): Likewise.
2575         * modules/fsusage (Makefile.am): Likewise.
2576         * modules/ftruncate (Makefile.am): Likewise.
2577         * modules/fts (Makefile.am): Likewise.
2578         * modules/gc (Makefile.am): Likewise.
2579         * modules/gc-pbkdf2-sha1 (Makefile.am): Likewise.
2580         * modules/getaddrinfo (Makefile.am): Likewise.
2581         * modules/getcwd (Makefile.am): Likewise.
2582         * modules/getdelim (Makefile.am): Likewise.
2583         * modules/getdomainname (Makefile.am): Likewise.
2584         * modules/getgroups (Makefile.am): Likewise.
2585         * modules/gethostname (Makefile.am): Likewise.
2586         * modules/gethrxtime (Makefile.am): Likewise.
2587         * modules/getline (Makefile.am): Likewise.
2588         * modules/getloadavg (Makefile.am): Likewise.
2589         * modules/getlogin_r (Makefile.am): Likewise.
2590         * modules/getopt (Makefile.am): Likewise.
2591         * modules/getpass (Makefile.am): Likewise.
2592         * modules/getpass-gnu (Makefile.am): Likewise.
2593         * modules/getsubopt (Makefile.am): Likewise.
2594         * modules/gettime (Makefile.am): Likewise.
2595         * modules/gettimeofday (Makefile.am): Likewise.
2596         * modules/getugroups (Makefile.am): Likewise.
2597         * modules/getusershell (Makefile.am): Likewise.
2598         * modules/glob (Makefile.am): Likewise.
2599         * modules/group-member (Makefile.am): Likewise.
2600         * modules/hard-locale (Makefile.am): Likewise.
2601         * modules/hash (Makefile.am): Likewise.
2602         * modules/hmac-md5 (Makefile.am): Likewise.
2603         * modules/hmac-sha1 (Makefile.am): Likewise.
2604         * modules/human (Makefile.am): Likewise.
2605         * modules/idcache (Makefile.am): Likewise.
2606         * modules/imaxabs (Makefile.am): Likewise.
2607         * modules/imaxdiv (Makefile.am): Likewise.
2608         * modules/inet_ntop (Makefile.am): Likewise.
2609         * modules/inet_pton (Makefile.am): Likewise.
2610         * modules/inttostr (Makefile.am): Likewise.
2611         * modules/isapipe (Makefile.am): Likewise.
2612         * modules/lchown (Makefile.am): Likewise.
2613         * modules/long-options (Makefile.am): Likewise.
2614         * modules/lstat (Makefile.am): Likewise.
2615         * modules/malloc (Makefile.am): Likewise.
2616         * modules/mathl (Makefile.am): Likewise.
2617         * modules/mbchar (Makefile.am): Likewise.
2618         * modules/md2 (Makefile.am): Likewise.
2619         * modules/md4 (Makefile.am): Likewise.
2620         * modules/md5 (Makefile.am): Likewise.
2621         * modules/memcasecmp (Makefile.am): Likewise.
2622         * modules/memchr (Makefile.am): Likewise.
2623         * modules/memcmp (Makefile.am): Likewise.
2624         * modules/memcoll (Makefile.am): Likewise.
2625         * modules/memcpy (Makefile.am): Likewise.
2626         * modules/memmem (Makefile.am): Likewise.
2627         * modules/memmove (Makefile.am): Likewise.
2628         * modules/mempcpy (Makefile.am): Likewise.
2629         * modules/memrchr (Makefile.am): Likewise.
2630         * modules/memset (Makefile.am): Likewise.
2631         * modules/memxor (Makefile.am): Likewise.
2632         * modules/mkancesdirs (Makefile.am): Likewise.
2633         * modules/mkdir (Makefile.am): Likewise.
2634         * modules/mkdir-p (Makefile.am): Likewise.
2635         * modules/mkdtemp (Makefile.am): Likewise.
2636         * modules/mkstemp (Makefile.am): Likewise.
2637         * modules/mktime (Makefile.am): Likewise.
2638         * modules/modechange (Makefile.am): Likewise.
2639         * modules/mountlist (Makefile.am): Likewise.
2640         * modules/nanosleep (Makefile.am): Likewise.
2641         * modules/openat (Makefile.am): Likewise.
2642         * modules/pagealign_alloc (Makefile.am): Likewise.
2643         * modules/physmem (Makefile.am): Likewise.
2644         * modules/poll (Makefile.am): Likewise.
2645         * modules/posixtm (Makefile.am): Likewise.
2646         * modules/posixver (Makefile.am): Likewise.
2647         * modules/putenv (Makefile.am): Likewise.
2648         * modules/quote (Makefile.am): Likewise.
2649         * modules/quotearg (Makefile.am): Likewise.
2650         * modules/raise (Makefile.am): Likewise.
2651         * modules/read-file (Makefile.am): Likewise.
2652         * modules/readline (Makefile.am): Likewise.
2653         * modules/readlink (Makefile.am): Likewise.
2654         * modules/readtokens (Makefile.am): Likewise.
2655         * modules/readutmp (Makefile.am): Likewise.
2656         * modules/realloc (Makefile.am): Likewise.
2657         * modules/regex (Makefile.am): Likewise.
2658         * modules/rename (Makefile.am): Likewise.
2659         * modules/rename-dest-slash (Makefile.am): Likewise.
2660         * modules/rijndael (Makefile.am): Likewise.
2661         * modules/rmdir (Makefile.am): Likewise.
2662         * modules/rpmatch (Makefile.am): Likewise.
2663         * modules/safe-read (Makefile.am): Likewise.
2664         * modules/safe-write (Makefile.am): Likewise.
2665         * modules/same (Makefile.am): Likewise.
2666         * modules/save-cwd (Makefile.am): Likewise.
2667         * modules/savedir (Makefile.am): Likewise.
2668         * modules/setenv (Makefile.am): Likewise.
2669         * modules/settime (Makefile.am): Likewise.
2670         * modules/sha1 (Makefile.am): Likewise.
2671         * modules/sig2str (Makefile.am): Likewise.
2672         * modules/snprintf (Makefile.am): Likewise.
2673         * modules/stdlib-safer (Makefile.am): Likewise.
2674         * modules/stpcpy (Makefile.am): Likewise.
2675         * modules/stpncpy (Makefile.am): Likewise.
2676         * modules/strcase (Makefile.am): Likewise.
2677         * modules/strcasestr (Makefile.am): Likewise.
2678         * modules/strchrnul (Makefile.am): Likewise.
2679         * modules/strcspn (Makefile.am): Likewise.
2680         * modules/strdup (Makefile.am): Likewise.
2681         * modules/strerror (Makefile.am): Likewise.
2682         * modules/strftime (Makefile.am): Likewise.
2683         * modules/strndup (Makefile.am): Likewise.
2684         * modules/strnlen (Makefile.am): Likewise.
2685         * modules/strpbrk (Makefile.am): Likewise.
2686         * modules/strsep (Makefile.am): Likewise.
2687         * modules/strstr (Makefile.am): Likewise.
2688         * modules/strtod (Makefile.am): Likewise.
2689         * modules/strtoimax (Makefile.am): Likewise.
2690         * modules/strtok_r (Makefile.am): Likewise.
2691         * modules/strtol (Makefile.am): Likewise.
2692         * modules/strtoll (Makefile.am): Likewise.
2693         * modules/strtoul (Makefile.am): Likewise.
2694         * modules/strtoull (Makefile.am): Likewise.
2695         * modules/strtoumax (Makefile.am): Likewise.
2696         * modules/strverscmp (Makefile.am): Likewise.
2697         * modules/time_r (Makefile.am): Likewise.
2698         * modules/timegm (Makefile.am): Likewise.
2699         * modules/tmpfile-safer (Makefile.am): Likewise.
2700         * modules/unistd-safer (Makefile.am): Likewise.
2701         * modules/unlinkdir (Makefile.am): Likewise.
2702         * modules/userspec (Makefile.am): Likewise.
2703         * modules/utime (Makefile.am): Likewise.
2704         * modules/utimecmp (Makefile.am): Likewise.
2705         * modules/utimens (Makefile.am): Likewise.
2706         * modules/vasnprintf (Makefile.am): Likewise.
2707         * modules/vasprintf (Makefile.am): Likewise.
2708         * modules/vsnprintf (Makefile.am): Likewise.
2709         * modules/xalloc (Makefile.am): Likewise.
2710         * modules/xgetcwd (Makefile.am): Likewise.
2711         * modules/xnanosleep (Makefile.am): Likewise.
2712         * modules/xreadlink (Makefile.am): Likewise.
2713         * modules/xstrtod (Makefile.am): Likewise.
2714         * modules/xstrtol (Makefile.am): Likewise.
2715         * modules/xstrtold (Makefile.am): Likewise.
2716         * modules/yesno (Makefile.am): Likewise.
2717
2718 2006-10-12  Jim Meyering  <jim@meyering.net>
2719
2720         * m4/getloadavg.m4: Revert the change below.
2721
2722         * m4/getloadavg.m4 (gl_GETLOADAVG): Test for the existence of
2723         lib/getloadavg.c using "ls -L", not "test -f".  The latter would
2724         fail with a symlink, which is what coreutils' ./bootstrap now
2725         creates by default.
2726
2727 2006-10-12  Bruno Haible  <bruno@clisp.org>
2728
2729         * lib/inttypes_.h (_LONG_LONG_FORMAT_PREFIX): Don't define for MSVC or
2730         mingw.
2731         (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX, _SCNu64_PREFIX): Handle
2732         MSVC and mingw explicitly.
2733
2734 2006-10-11  Simon Josefsson  <jas@extundo.com>
2735             Bruno Haible  <bruno@clisp.org>
2736
2737         Add support for multiple gnulib-tool invocations in the scope of a
2738         single configure.ac file.
2739         * gnulib-tool (func_emit_lib_Makefile_am): In the _LIBADD variable,
2740         use a private [LT]LIBOBJS variant. Define a _DEPENDENCIES variable
2741         with the same contents as the _LIBADD variable.
2742         (func_emit_initmacro_start, func_emit_initmacro_end,
2743         func_emit_initmacro_done): New functions.
2744         (func_import, func_create_testdir): Invoke them. Allow the identifiers
2745         gl_LIBOBJS and gl_LTLIBOBJS.
2746
2747 2006-10-11  Bruno Haible  <bruno@clisp.org>
2748
2749         * gnulib-tool (GETTEXTPATH, AUTOHEADER, AUTOPOINT): New variables.
2750         (func_create_testdir): Don't create po/Makefile.am, don't invoke
2751         autoreconf. Instead, invoke autopoint explicitly but move back the
2752         *.m4 files from gnulib.
2753
2754 2006-10-11  Bruno Haible  <bruno@clisp.org>
2755
2756         * gnulib-tool (func_usage): Make module names after --create-testdir
2757         optional.
2758         (func_create_testdir): If no module was specified, use nearly all
2759         modules.
2760
2761 2006-10-12  Jim Meyering  <jim@meyering.net>
2762
2763         Big performance improvement for fts-based tools that use FTS_NOSTAT.
2764         Avoid spurious inode-mismatch problems on non-POSIX file systems.
2765         Details: http://article.gmane.org/gmane.comp.lib.gnulib.bugs/7416
2766         * lib/fts_.h (FTS_DEFER_STAT): Define new flag.
2767         (FTS_OPTIONMASK): Extend the mask to reflect this addition.
2768         * lib/fts.c (DT_IS_KNOWN, DT_MUST_BE): Define.
2769         (FTS_NO_STAT_REQUIRED, FTS_STAT_REQUIRED): Define.
2770         (fts_set_stat_required): New function.
2771         (fts_open): Defer the calls to fts_stat, if possible or requested.
2772         Move the code that maps a command-line fts_info value FTS_DOT to FTS_D
2773         into fts_stat itself.
2774         (fts_read): Perform any required (deferred) fts_stat call.
2775         (fts_build): Likewise, for the directory we're about to open and read.
2776         In the readdir loop, carefully decide whether each entry will require
2777         an eventual call to fts_stat, using dirent.d_type info if available.
2778         (fts_stat): Move the test for whether to honor FTS_COMFOLLOW on
2779         a command line argument into this function.  Update all callers.
2780         Map a return value of FTS_DOT to FTS_D for a command line argument.
2781         * modules/fts (Depends-on): Add d-type.  Alphabetize.
2782         Thanks to Miklos Szeredi for his tenacity and for the initial
2783         bug report about "find" failing on a FUSE-based file system.
2784
2785         * lib/fts.c (fts_open): Use consistent indentation.
2786
2787 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
2788
2789         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Renamed from
2790         gl_USE_SYSTEM_EXTENSIONS, to fix a coreutils bootstrap failure
2791         reported by Jim Meyering.  All uses of cache variables renamed
2792         to match Autoconf's.
2793         (gl_USE_SYSTEM_EXTENSIONS): New macro, which simply requires
2794         the other one.
2795
2796         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH):
2797         Fix misspelling in diagnostic.
2798
2799 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
2800
2801         * lib/mkdir-p.c (HAVE_FCHMOD): Define to false if not already
2802         defined.  Problem reported by Matthew Woehlke.
2803
2804         * lib/inttypes_.h (_LONG_LONG_FORMAT_PREFIX): New macro.
2805         Add support for Tandem NonStop R series.
2806         (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX, _SCNu64_PREFIX):
2807         Use new macro.
2808
2809         * lib/rename-dest-slash.c: Include stdbool.h but not string.h.
2810         (has_trailing_slash): Omit size arg; all callers changed.
2811         Omit 'inline', since it doesn't help performance and we'd
2812         need to configure it.
2813         Don't count //, ///, etc. as having a trailing slash.
2814         As a side effect, this removes a C99ism reported by Matthew Woehlke.
2815         (rpl_rename_dest_slash): On failure, use rename's errno rather
2816         than (in some cases) an incorrect or junk errno.
2817         Simplify code by removing need to compute length; this does
2818         cause it to make two passes instead of one over the file name,
2819         but it's worth it.
2820
2821         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Undo previous
2822         change, since Autoconf's version may no longer be appropriate now
2823         that we are using CVS Autoconf's version.  Add support for Tandem.
2824
2825 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
2826             Bruno Haible  <bruno@clisp.org>
2827
2828         * lib/allocsa.h (sa_alignment_longlong, sa_alignment_max): Test
2829         HAVE_LONG_LONG_INT instead of HAVE_LONG_LONG.
2830         * m4/allocsa.m4 (gl_ALLOCSA): Invoke AC_TYPE_LONG_LONG_INT instead of
2831         gl_AC_TYPE_LONG_LONG.
2832
2833         * lib/printf-args.h (arg_type, argument): Test HAVE_LONG_LONG_INT
2834         instead of HAVE_LONG_LONG.
2835         * lib/printf-args.c (printf_fetchargs): Likewise.
2836         * lib/printf-parse.c (PRINTF_PARSE): Likewise.
2837         * lib/vasnprintf.c (VASNPRINTF): Likewise.
2838         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_ARGS, gl_PREREQ_PRINTF_PARSE,
2839         gl_PREREQ_VASNPRINTF): Invoke AC_TYPE_LONG_LONG_INT instead of
2840         gl_AC_TYPE_LONG_LONG.
2841
2842 2006-10-11  Bruno Haible  <bruno@clisp.org>
2843
2844         * m4/longlong.m4: Add comments.
2845         * m4/ulonglong.m4: Likewise.
2846
2847 2006-10-10  Bruno Haible  <bruno@clisp.org>
2848
2849         Make it possible to #define stpcpy, strdup to aliases.
2850         * lib/stpcpy.c (stpcpy) [!_LIBC]: Don't undefine.
2851         * lib/strdup.c (strdup) [!_LIBC]: Don't undefine.
2852
2853 2006-10-10  Bruno Haible  <bruno@clisp.org>
2854
2855         Make it possible to #define gcd to an alias.
2856         * lib/gcd.c: Include config.h.
2857
2858 2006-10-10  Bruno Haible  <bruno@clisp.org>
2859
2860         Make it possible to #define c_isascii to an alias.
2861         * lib/c-ctype.h: Don't define the macros if NO_C_CTYPE_MACROS is
2862         defined. Undefine the macros before defining them, to avoid gcc
2863         warnings.
2864         * lib/c-ctype.c: Include config.h. Don't undefine the macros; instead,
2865         define NO_C_CTYPE_MACROS early.
2866
2867 2006-10-10  Bruno Haible  <bruno@clisp.org>
2868
2869         Make it possible to #define set_program_name to an alias.
2870         * lib/progname.c: Don't undefine set_program_name; instead, undefine
2871         ENABLE_RELOCATABLE early.
2872
2873 2006-10-10  Paul Eggert  <eggert@cs.ucla.edu>
2874
2875         Port to Tandem NSK OSS, which has 64-bit signed int but at most
2876         32-bit unsigned int.  Problem reported by Matthew Woehlke in:
2877         http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00062.html
2878         More generally, don't assume that 64-bit signed int is available
2879         if unsigned int is, and vice versa.
2880         * lib/inttypes_.h (_PRIu64_PREFIX, _SCNu64_PREFIX): Depend on
2881         unsigned symbols, not on their signed counterparts.
2882         * lib/stdint_.h (uint64_t, uint_least64_t, uint_fast64_t, uintmax_t):
2883         (UINT64_MAX, UINT_LEAST64_MAX, UINT_FAST64_MAX, UINTMAX_MAX):
2884         (UINT64_C, UINTMAX_C):
2885         Likewise.
2886         * lib/strtoimax.c (strtoll): Depend on signed symbols, not their
2887         unsigned counterparts.
2888         (Have_long_long, Unsigned): New macros.
2889         (Int): Renamed from INT.
2890         (strtoimax): Use the new macros.
2891         * m4/stdint.m4 (gl_STDINT_H): Require AC_TYPE_UNSIGNED_LONG_LONG_INT
2892         and substitute HAVE_UNSIGNED_LONG_LONG_INT.
2893         * modules/inttypes (inttypes.h): Substitute
2894         HAVE_UNSIGNED_LONG_LONG_INT.
2895         * modules/stdint (stdint.h): Likewise.
2896         (Files): Add m4/ulonglong.m4.
2897
2898 2006-10-10  Bruno Haible  <bruno@clisp.org>
2899
2900         Fix a gcc -Wshadow warning.
2901         * lib/gl_anyhash_list2.h (hash_resize): Rename local variable 'index'
2902         to 'bucket'.
2903         * lib/gl_anylinked_list2.h (gl_linked_search_from_to,
2904         gl_linked_indexof_from_to): Likewise.
2905         * lib/gl_linkedhash_list.c (add_to_bucket, remove_from_bucket):
2906         Likewise.
2907         * lib/gl_anytreehash_list1.h (add_to_bucket, remove_from_bucket):
2908         Likewise.
2909         * lib/gl_anytreehash_list2.h (gl_tree_search_from_to): Likewise.
2910         Reported by Eric Blake.
2911
2912 2006-10-09  Paul Eggert  <eggert@cs.ucla.edu>
2913
2914         * lib/filemode.h [HAVE_DECL_STRMODE]: Include unistd.h too,
2915         for NetBSD.  Problem reported by Bruno Haible.
2916
2917 2006-10-09  Jim Meyering  <jim@meyering.net>
2918
2919         * lib/lchown.c: Include <sys/stat.h> before "stat-macros.h".
2920         Patch from Bruno Haible.
2921
2922 2006-10-09  Jim Meyering  <jim@meyering.net>
2923
2924         * lib/fts-cycle.c (leave_dir): When "leaving" a top level directory due
2925         to FTS_SKIP, don't copy the parent's uninitialized dev/ino values.
2926         Trigger with e.g., mkdir d && valgrind ./chmod u+rwx d d
2927
2928 2006-10-08  Paul Eggert  <eggert@cs.ucla.edu>
2929
2930         Don't include <config.h> twice; this doesn't work in some cases,
2931         e.g., when config.h has "#define intmax_t long long int" and
2932         we include <config.h>, <inttypes.h>, <config.h> in that order.
2933         Problem reported by Matthew Woehlke in:
2934         http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00073.html
2935         * lib/fprintftime.c: Don't include config.h or fprintftime.h.
2936         * lib/fts-cycle.c: Don't include config.h.
2937         * lib/strftime.c: Include fprintftime.h if FPRINTFTIME is defined.
2938         * lib/xstrtoimax.c: Remove copyright notice since it's short tnow.
2939         Don't include config.h or xstrtol.h.  Define STRTOL_T_MINIMUM
2940         and STRTOL_T_MAXIMUM unconditionally, since we now assume gnulib
2941         inttypes.h.
2942         * lib/xstrtoumax.c: Likewise.
2943         * lib/xstrtol.c: Include config.h and xstrtol.h after defining
2944         __strtol and the like, so that this module is more like its siblings.
2945         (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM) [! defined STRTOL_T_MINIMUM]:
2946         Remove; no longer needed now that we assume gnulib inttypes.h.
2947
2948 2006-10-08  Bruno Haible  <bruno@clisp.org>
2949
2950         * doc/gnulib-tool.texi: Emphasize the drawbacks of the --symlink
2951         option.
2952
2953 2006-10-07  Jim Meyering  <jim@meyering.net>
2954
2955         * modules/inttypes (inttypes.h): Revert what seems to have been
2956         an inadvertent part of today's change: use "|", not "/" in the
2957         substitution for the "/"-containing string, $(ABSOLUTE_INTTYPES_H).
2958
2959 2006-10-07  Bruno Haible  <bruno@clisp.org>
2960
2961         * modules/sublist: New file.
2962
2963 2006-10-07  Bruno Haible  <bruno@clisp.org>
2964
2965         * modules/alloca-opt (alloca.h): Add a "DO NOT EDIT" comment.
2966         * modules/argz (argz.h): Likewise.
2967         * modules/arpa_inet (arpa/inet.h): Likewise.
2968         * modules/byteswap (byteswap.h): Likewise.
2969         * modules/configmake (configmake.h): Likewise.
2970         * modules/fcntl (fcntl.h): Likewise.
2971         * modules/fnmatch (fnmatch.h): Likewise.
2972         * modules/getopt (getopt.h): Likewise.
2973         * modules/glob (glob.h): Likewise.
2974         * modules/inttypes (inttypes.h): Likewise.
2975         * modules/netinet_in (netinet/in.h): Likewise.
2976         * modules/poll (poll.h): Likewise.
2977         * modules/stdbool (stdbool.h): Likewise.
2978         * modules/stdint (stdint.h): Likewise.
2979         * modules/sys_select (sys/select.h): Likewise.
2980         * modules/sys_socket (sys/socket.h): Likewise.
2981         * modules/sys_stat (sys/stat.h): Likewise.
2982         * modules/sysexits (sysexits.h): Likewise.
2983         * modules/unistd (unistd.h): Likewise.
2984         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
2985         Add a "DO NOT EDIT" comment to the generated file.
2986         (func_import): Likewise for gnulib-comp.m4.
2987
2988 2006-10-07  Bruno Haible  <bruno@clisp.org>
2989
2990         * lib/gl_sublist.h: New file.
2991         * lib/gl_sublist.c: New file.
2992
2993 2006-10-06  Paul Eggert  <eggert@cs.ucla.edu>
2994
2995         * lib/mkancesdirs.c (mkancesdirs): Pass to MAKE_DIR both the full file
2996         name (relative to the original working directory) and the file
2997         name component (relative to the temporary working directory).  All
2998         callers changed.
2999         * lib/mkancesdirs.h (mkancesdirs): Adjust prototype to match.
3000         * lib/mkdir-p.c (make_dir_parents): Likewise.
3001         * lib/mkdir-p.h (make_dir_parents): Likewise.
3002
3003 2006-10-06  Eric Blake  <ebb9@byu.net>
3004
3005         Define several macros for use by the clean-temp module.
3006         * m4/close-stream.m4 (gl_CLOSE_STREAM): Define GNULIB_CLOSE_STREAM.
3007         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Define GNULIB_FCNTL_SAFER.
3008         * m4/stdio-safer.m4 (gl_FOPEN_SAFER): Define GNULIB_FOPEN_SAFER.
3009
3010         * lib/clean-temp.h (close_stream_temp): New declaration.
3011         * lib/clean-temp.c (includes): Pull in headers according to what
3012         other modules are in use.
3013         (close_stream_temp) [GNULIB_CLOSE_STREAM]: New function.
3014
3015 2006-10-06  Bruno Haible  <bruno@clisp.org>
3016
3017         * lib/javacomp.c (write_temp_file): Use fopen_temp, fwriteerror_temp
3018         instead of fopen, fwriteerror.
3019
3020 2006-10-06  Bruno Haible  <bruno@clisp.org>
3021
3022         * lib/clean-temp.h (cleanup_temp_file, cleanup_temp_subdir,
3023         cleanup_temp_dir_contents, cleanup_temp_dir): Change return type to
3024         int.
3025         * lib/clean-temp.c (do_unlink, do_rmdir, cleanup_temp_file,
3026         cleanup_temp_subdir, cleanup_temp_dir_contents, cleanup_temp_dir):
3027         Return an error indicator.
3028         Suggested by Eric Blake.
3029
3030 2006-10-06  Bruno Haible  <bruno@clisp.org>
3031
3032         * lib/clean-temp.c (PATH_MAX): Provide a fallback for GNU Hurd.
3033         Reported by Eric Blake.
3034
3035 2006-10-06  Bruno Haible  <bruno@clisp.org>
3036
3037         * modules/closeout (Description): Mention stderr too.
3038
3039 2006-10-06  Bruno Haible  <bruno@clisp.org>
3040         and Paul Eggert  <eggert@cs.ucla.edu>
3041
3042         * lib/closeout.c (close_stdout): Also close stderr.
3043         * lib/closeout.h: Update comment.
3044
3045 2006-10-05  Paul Eggert  <eggert@cs.ucla.edu>
3046
3047         Fix some Darwin-7.9.0 porting problems reported by Bruno Haible in
3048         <http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00063.html>.
3049         * lib/dirchownmod.c: Include lchown.h.
3050         * lib/lchown.c: Don't include files that lchown.h now includes.
3051         Don't declare chown, since lchown.h now does that.
3052         * lib/lchown.h: Include errno.h, sys/types.h, unistd.h.
3053         (lchown): Define to rpl_chown if lchown is declared but
3054         does not exist.  Declare using a prototype if lchown is not
3055         declared.  Add a copyright notice.
3056         * lib/mkstemp.h: Include <unistd.h>.
3057         * lib/openat.c: Include lchown.h.
3058
3059         * lib/fcntl_.h (O_NOFOLLOW): Don't depend on O_NOFOLLOW_IS_INEFFECTIVE;
3060         we now test for that separately.
3061         * lib/fts.c (fts_safe_changedir): Inspect HAVE_WORKING_O_NOFOLLOW
3062         rather than O_NOFOLLOW, when testing whether it's possible to
3063         avoid a race condition reliably.
3064         * lib/savewd.c (savewd_chdir): Likewise.
3065
3066         Remove macros that are no longer needed now that stdint.h is
3067         reliable.
3068         * lib/fsusage.c (UINTMAX_MAX): Remove.
3069         * lib/human.c (SIZE_MAX, UINTMAX_MAX): Remove.
3070         * lib/utimecmp.c (SIZE_MAX): Remove.
3071
3072         * m4/lchown.m4 (gl_FUNC_LCHOWN): Check whether lchown is declared.
3073
3074         * m4/fcntl_h.m4 (gl_FCNTL_H): Define HAVE_WORKING_O_NOFOLLOW instead
3075         of O_NOFOLLOW_IS_INEFFECTIVE.  Define HAVE_WORKING_O_NOATIME if
3076         O_NOATIME works.
3077
3078 2006-10-05  Bruno Haible  <bruno@clisp.org>
3079
3080         * lib/gl_list.h (gl_sortedlist_search_from_to,
3081         gl_sortedlist_indexof_from_to): New declarations.
3082         (gl_list_implementation): New fields sortedlist_search_from_to,
3083         sortedlist_indexof_from_to.
3084         (gl_sortedlist_search_from_to, gl_sortedlist_indexof_from_to): New
3085         inline functions.
3086         * lib/gl_list.c (gl_sortedlist_search_from_to,
3087         gl_sortedlist_indexof_from_to): New functions.
3088         * lib/gl_array_list.c (gl_array_sortedlist_indexof_from_to): New
3089         function.
3090         (gl_array_sortedlist_indexof, gl_array_sortedlist_search): Use it.
3091         (gl_array_sortedlist_search_from_to): New function.
3092         (gl_array_list_implementation): Update.
3093         * lib/gl_carray_list.c (gl_carray_sortedlist_indexof_from_to): New
3094         function.
3095         (gl_carray_sortedlist_indexof, gl_carray_sortedlist_search): Use it.
3096         (gl_carray_sortedlist_search_from_to): New function.
3097         (gl_carray_list_implementation): Update.
3098         * lib/gl_anylinked_list2.h (gl_linked_sortedlist_search_from_to,
3099         gl_linked_sortedlist_indexof_from_to): New functions.
3100         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
3101         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
3102         * lib/gl_anytree_list2.h (gl_tree_sortedlist_search_from_to,
3103         gl_tree_sortedlist_indexof_from_to): New functions.
3104         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
3105         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
3106         Update.
3107         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
3108         * lib/gl_rbtreehash_list.c (gl_avltreehash_list_implementation):
3109         Update.
3110
3111 2006-10-05  Bruno Haible  <bruno@clisp.org>
3112
3113         * lib/gl_list.h (gl_list_search_from, gl_list_search_from_to,
3114         gl_list_indexof_from, gl_list_indexof_from_to): New declarations.
3115         (struct gl_list_implementation): Add fields search_from_to,
3116         indexof_from_to. Remove fields search, indexof.
3117         (gl_list_search): Use the search_from_to method.
3118         (gl_list_search_from, gl_list_search_from_to): New functions.
3119         (gl_list_indexof): Use the indexof_from_to method.
3120         (gl_list_indexof_from, gl_list_indexof_from_to): New functions.
3121         * lib/gl_list.c (gl_list_search): Use the search_from_to method.
3122         (gl_list_search_from, gl_list_search_from_to): New functions.
3123         (gl_list_indexof): Use the indexof_from_to method.
3124         (gl_list_indexof_from, gl_list_indexof_from_to): New functions.
3125         * lib/gl_array_list.c (gl_array_indexof_from_to): Renamed from
3126         gl_array_indexof. Add start_index, end_index arguments.
3127         (gl_array_search_from_to): Renamed from gl_array_search. Add
3128         start_index, end_index arguments.
3129         (gl_array_remove, gl_array_list_implementation): Update.
3130         * lib/gl_carray_list.c (gl_carray_indexof_from_to): Renamed from
3131         gl_carray_indexof. Add start_index, end_index arguments.
3132         (gl_carray_search_from_to): Renamed from gl_carray_search. Add
3133         start_index, end_index arguments.
3134         (gl_carray_remove, gl_carray_list_implementation): Update.
3135         * lib/gl_anylinked_list2.h (gl_linked_search_from_to): Renamed from
3136         gl_linked_search. Add start_index, end_index arguments.
3137         (gl_linked_indexof_from_to): Renamed from gl_linked_indexof. Add
3138         start_index, end_index arguments.
3139         (gl_linked_remove): Update.
3140         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
3141         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
3142         * lib/gl_anytree_list1.h (iterstack_item_t): Change type of 'rightp'
3143         field to 'size_t'.
3144         * lib/gl_anytree_list2.h (gl_tree_search_from_to): Renamed from
3145         gl_tree_search. Add start_index, end_index arguments.
3146         (gl_tree_indexof_from_to): Renamed from gl_tree_indexof. Add
3147         start_index, end_index arguments.
3148         (gl_tree_remove): Update.
3149         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
3150         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
3151         * lib/gl_anytreehash_list1.h (compare_position_threshold): New
3152         function.
3153         * lib/gl_anytreehash_list2.h (gl_tree_search_from_to): Renamed from
3154         gl_tree_search. Add start_index, end_index arguments.
3155         (gl_tree_indexof_from_to): Renamed from gl_tree_indexof. Add
3156         start_index, end_index arguments.
3157         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
3158         Update.
3159         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Update.
3160
3161 2006-10-05  Bruno Haible  <bruno@clisp.org>
3162
3163         * modules/fwriteerror (configure.ac): Define GNULIB_FWRITEERROR.
3164
3165         * lib/clean-temp.h (open_temp, fopen_temp, close_temp, fclose_temp,
3166         fwriteerror_temp): New declarations.
3167         * lib/clean-temp.c (uintptr_t): Provide fallback definition.
3168         (descriptors): New variable.
3169         (cleanup): First, close the descriptors.
3170         (register_fd, unregister_fd, open_temp, fopen_temp, close_temp,
3171         fclose_temp, fwriteerror_temp): New functions.
3172
3173 2006-10-04  Jim Meyering  <jim@meyering.net>
3174
3175         * lib/fts.c (fts_open): Tiny comment change.
3176
3177 2006-10-04  Bruno Haible  <bruno@clisp.org>
3178
3179         Make it possible to invoke AC_GNU_SOURCE after gl_LOCK_EARLY.
3180         * m4/lock.m4 (gl_LOCK_EARLY_BODY): New macro, extracted code from
3181         gl_LOCK_BODY.
3182         (gl_LOCK_EARLY): Require gl_LOCK_EARLY_BODY, not gl_LOCK_BODY.
3183         (gl_LOCK_BODY): Remove settings of CPPFLAGS, now done in
3184         gl_LOCK_EARLY_BODY.
3185         (gl_LOCK): Require gl_LOCK_BODY.
3186
3187 2006-10-04  Bruno Haible  <bruno@clisp.org>
3188
3189         * lib/gl_oset.h (gl_setelement_threshold_fn): New type.
3190         (gl_oset_search_atleast): New declaration.
3191         (struct gl_oset_implementation): Add field 'search_atleast'.
3192         (gl_oset_search_atleast): New inline function.
3193         * lib/gl_oset.c (gl_oset_search_atleast): New function.
3194         * lib/gl_array_oset.c (gl_array_search_atleast): New function.
3195         (gl_array_oset_implementation): Update.
3196         * lib/gl_anytree_oset.h (gl_tree_search_atleast): New function.
3197         * lib/gl_avltree_oset.c (gl_avltree_oset_implementation): Update.
3198         * lib/gl_rbtree_oset.c (gl_rbtree_oset_implementation): Update.
3199
3200 2006-10-04  Bruno Haible  <bruno@clisp.org>
3201
3202         * lib/fatal-signal.c (fatal_signals) [WOE32]: Add the SIGBREAK signal.
3203
3204 2006-10-03  Bruno Haible  <bruno@clisp.org>
3205
3206         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Renamed
3207         from gl_avltreehash_list_implementation.
3208
3209 2006-10-03  Bruno Haible  <bruno@clisp.org>
3210
3211         * lib/gl_oset.c (gl_oset_add): Fix return type.
3212
3213 2006-10-02  Paolo Bonzini  <bonzini@gnu.org>  (tiny change)
3214
3215         * lib/quotearg.c (mbstate_t) [!HAVE_MBRTOWC]: #define to int.
3216
3217 2006-10-02  Eric Blake  <ebb9@byu.net>
3218
3219         * modules/strnlen (Depends-on): Add extensions.
3220
3221 2006-10-02  Eric Blake  <ebb9@byu.net>
3222
3223         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Use autoconf's
3224         definition in 2.60+.
3225
3226 2006-10-02  Dmitry V. Levin  <ldv@altlinux.org>
3227
3228         * lib/fts.c (fts_close, fts_build, fts_palloc): Remove redundant
3229         checks.
3230
3231 2006-10-02  Bruno Haible  <bruno@clisp.org>
3232
3233         * gnulib-tool (func_emit_lib_Makefile_am): Don't add no-dependencies
3234         to the AUTOMAKE_OPTIONS.
3235         Reported by Jim Meyering.
3236
3237 2006-09-29  Paul Eggert  <eggert@cs.ucla.edu>
3238
3239         Work around bug in Solaris 10 /proc file system:
3240         /proc/self/fd/NNN/.. isn't the parent directory of
3241         the directory whose file descriptor is NNN.  This needs to
3242         be worked around at run time, not compile time, since a
3243         program might be built on Solaris 8, where things work, and
3244         run on Solaris 10.
3245         * lib/openat-priv.h (BUILD_PROC_NAME): Remove.  All callers changed
3246         to use the following interface instead:
3247         (OPENAT_BUFFER_SIZE): New macro.
3248         (openat_proc_name): New function.
3249         * lib/at-func.c (AT_FUNC_NAME): Adjust to above changes.
3250         * lib/openat.c (openat_permissive, openat_needs_fchdir, fdopendir):
3251         Likewise.
3252         * lib/openat-proc.c: New file.
3253         * modules/openat (Files): Add lib/openat-proc.c.
3254         (Depends-on): Add same-inode, stdbool.
3255         * m4/openat.m4 (gl_FUNC_OPENAT): Add AC_LIBOBJ(openat-proc).
3256
3257 2006-09-29  Bruno Haible  <bruno@clisp.org>
3258
3259         * lib/fwriteerror.h (fwriteerror_no_ebadf): New declaration.
3260         * lib/(do_fwriteerror): Renamed from fwriteerror. Add ignore_ebadf
3261         argument. Set stdout_closed before testing for ferror, not after.
3262         (fwriteerror, fwriteerror_no_ebadf): New functions.
3263
3264 2006-09-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3265
3266         * m4/intmax.m4 (gt_TYPE_INTMAX_T): Avoid unused variables warning.
3267
3268 2006-09-28  Paolo Bonzini  <bonzini@gnu.org>
3269
3270         * lib/poll.c (rpl_poll) [__APPLE__]: Use FIONREAD instead of MSG_PEEK.
3271         * m4/poll.m4: Look for sys/ioctl.h and sys/filio.h.
3272
3273 2006-09-28  Jim Meyering  <jim@meyering.net>
3274
3275         * lib/mkdir-p.c: Include "dirchownmod.h", not "dirchownmod.c".
3276         Include <unistd.h>.
3277
3278 2006-09-28  Bruno Haible  <bruno@clisp.org>
3279
3280         * modules/avltreehash-list (Depends-on): Add stdint, remove size_max.
3281         * modules/linkedhash-list (Depends-on): Likewise.
3282         * modules/rbtreehash-list (Depends-on): Likewise.
3283
3284 2006-09-28  Bruno Haible  <bruno@clisp.org>
3285
3286         * lib/strndup.h: Simplify the redefinition of strndup.
3287         (_GL_CONCAT, _GL_XCONCAT, __STRNDUP_ID): Remove macros.
3288         * m4/strndup.m4 (gl_FUNC_STRNDUP): Don't define __STRNDUP_PREFIX.
3289
3290 2006-09-28  Bruno Haible  <bruno@clisp.org>
3291
3292         * lib/gl_avltreehash_list.c: Include <stdint.h> instead of size_max.h.
3293         * lib/gl_linkedhash_list.c: Likewise.
3294         * lib/gl_rbtreehash_list.c: Likewise.
3295
3296 2006-09-27  Paul Eggert  <eggert@cs.ucla.edu>
3297
3298         * lib/canon-host.c (canon_host_r): Work around bug in Darwin 7.9.0
3299         getaddrinfo.
3300
3301         * lib/__fpending.h: Don't include <stdio_ext.h> unless
3302         HAVE_DECL___FPENDING.  This avoids a bug with lsbcc, where
3303         it causes <stdio_ext.h> to cause a compile-time error.
3304         Problem reported by Nelson H. F. Beebe.
3305         * lib/getpass.c: Likewise, except for HAVE_DECL___FSETLOCKING instead
3306         of HAVE_DECL___PENDING.
3307
3308         * m4/fpending.m4 (gl_FUNC_FPENDING): Check for stdio_ext at most once.
3309         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for __fsetlocking's
3310         declaration.
3311
3312 2006-09-27  Jim Meyering  <jim@meyering.net>
3313
3314         This file could end up with a definition for a function
3315         named __strndup, rather than rpl_strndup on a system with
3316         incomplete weak_alias support.
3317         * lib/strndup.c (strndup): Rename from __strndup.
3318         Remove #defines that used to map __strndup to strndup.
3319         Don't use K&R prototypes.
3320         Remove LIBC-related code, since this file is not sync'd with glibc.
3321         * lib/strndup.h: Revamp, accordingly.
3322         * m4/strndup.m4: Modernize.
3323
3324 2006-09-26  Paul Eggert  <eggert@cs.ucla.edu>
3325
3326         * modules/savewd (Depends-on): Add 'raise'.
3327         * lib/savewd.c: Include <signal.h>, for 'raise'.
3328
3329 2006-09-26  Jim Meyering  <jim@meyering.net>
3330
3331         * m4/acl.m4 (AC_FUNC_ACL): Disable ACL support altogether
3332         when we detect Darwin 8.7.0's acl_get_file bug.
3333         Rearrange to perform the new (below) run-test while $LIBS
3334         contains any acl-related library.  Set USE_ACL at the end.
3335         (gl_ACL_GET_FILE): New function.
3336
3337 2006-09-26  Eric Blake  <ebb9@byu.net>
3338
3339         * lib/verror.c: Include <config.h> unconditionally.
3340
3341 2006-09-25  Paul Eggert  <eggert@cs.ucla.edu>
3342
3343         * modules/clock-time (Maintainer): Add self.
3344         * modules/getlogin_r (Depends-on): Add extensions.
3345
3346 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3347
3348         * modules/clock-time: New module.
3349         * modules/nanosleep (Depends-on): Add clock-time.
3350         * modules/gethrxtime (Depends-on): Likewise.
3351         * modules/gettime (Depends-on): Likewise.
3352         * modules/settime (Depends-on): Likewise.
3353
3354         * modules/fts-lgpl: Depend on openat.
3355         * modules/mkancesdirs: Depend on savewd.
3356         * modules/mkdir-p: Likewise.
3357
3358 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3359
3360         * m4/host-os.m4 (gl_HOST_OS): Require AC_CANONICAL_HOST.
3361
3362         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Rename cache variable from
3363         `gl_have_arbitrary_file_name_length_limit' to
3364         `gl_cv_have_arbitrary_file_name_length_limit', so that caching
3365         actually works between configure runs.
3366
3367 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3368             Bruno Haible  <bruno@clisp.org>
3369
3370         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Include <string.h>.
3371
3372 2006-09-25  Jim Meyering  <jim@meyering.net>
3373
3374         * m4/fcntl_h.m4 (gl_FCNTL_H): Fix typo in test for failed open.
3375         This typo caused coreutils/tests/dd/misc to fail on Darwin 8.7.0.
3376
3377 2006-09-25  Eric Blake  <ebb9@byu.net>
3378
3379         * gnulib-tool (func_import, func_create_testdir): Fix typos in
3380         exec's in 2006-09-18 patch when shuffling fds.
3381
3382 2006-09-25  Bruno Haible  <bruno@clisp.org>
3383
3384         * m4/getloadavg.m4 (gl_GETLOADAVG): Fix directory in error message.
3385         Reported by Jim Meyering.
3386
3387 2006-09-24  Jim Meyering  <jim@meyering.net>
3388
3389         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Don't use '>' to
3390         compare a pointer against a literal "0".  That caused failures with
3391         at least HP-UX's hpcc.
3392
3393 2006-09-22  Simon Josefsson  <jas@extundo.com>
3394
3395         * modules/gc-sha1:
3396         * modules/gc-md4:
3397         * modules/gc-hmac-sha1:
3398         * modules/gc-hmac-md5:
3399         * modules/gc-des:
3400         * modules/gc-arcfour: Distribute more files.
3401
3402 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3403
3404         * lib/gl_anylinked_list2.h [lint] (gl_linked_iterator)
3405         (gl_linked_iterator_from_to): Initialize struct completely.
3406         * lib/gl_anytree_list2.h [lint] (gl_tree_iterator): Likewise.
3407         (gl_tree_iterator_from_to): Likewise
3408         * lib/gl_anytree_oset.h [lint] (gl_tree_iterator): Likewise.
3409         * lib/gl_array_list.c [lint] (gl_array_iterator)
3410         (gl_array_iterator_from_to): Likewise.
3411         * lib/gl_array_oset.c [lint] (gl_array_iterator): Likewise.
3412         * lib/gl_carray_list.c [lint] (gl_carray_iterator)
3413         (gl_carray_iterator_from_to): Likewise.
3414
3415         * lib/gc-gnulib.c [GC_USE_HMAC_SHA1]: include hmac.h for hmac_sha1.
3416         * lib/md4.c (md4_process_block): Remove unused variable.
3417         * lib/rijndael-api-fst.c (rijndaelBlockDecrypt): GCC suggests
3418         parentheses for clarity.
3419
3420 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3421
3422         * modules/bison-i18n (Depends-on): Add gettext.
3423
3424 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3425
3426         * m4/fsusage.m4 (gl_STATFS_TRUNCATES): Avoid unused variable.
3427         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): Likewise.
3428         * m4/jm-winsz1.m4 (gl_HEADER_TIOCGWINSZ_IN_TERMIOS_H): Likewise;
3429         also add missing comma that caused broken test.
3430         * m4/link-follow.m4 (gl_AC_FUNC_LINK_FOLLOWS_SYMLINK): Include
3431         stdlib.h, for `abort'.
3432         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Avoid unused
3433         variables.
3434         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Check for and
3435         include unistd.h if present, for `rmdir'.
3436         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): Avoid unused
3437         variables.
3438         * m4/putenv.m4 (gl_FUNC_PUTENV): Rewrite using AC_RUN_IFELSE, and
3439         in the process include standard headers for prototypes.
3440         * m4/readutmp.m4 (gl_READUTMP): Require AC_GNU_SOURCE, so utmpxname
3441         gets declared on GNU/Linux.
3442         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Check for and include
3443         unistd.h, for `rmdir'.
3444         * m4/time_r.m4 (gl_TIME_R): Avoid unused variables.
3445
3446         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Avoid expression that is
3447         always true.
3448         * m4/strndup.m4 (gl_FUNC_STRNDUP): include stdlib.h, for `free'.
3449
3450         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Avoid gcc -Wall warnings.
3451
3452 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3453
3454         * gnulib-tool (func_version): Create output all at once.  This
3455         may help avoid triggering unnecessary SIGPIPEs, and at any
3456         rate it doesn't hurt.
3457
3458 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3459             Bruno Haible  <bruno@clisp.org>
3460
3461         * m4/lock.m4 (gl_LOCK_BODY): Avoid unused variables warning.
3462         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
3463         * m4/signed.m4 (bh_C_SIGNED): Likewise.
3464
3465         * m4/vasprintf.m4 (gl_PREREQ_VASPRINTF_H): New macro.
3466         (gl_FUNC_VASPRINTF): Invoke it.
3467
3468 2006-09-22  Bruno Haible  <bruno@clisp.org>
3469
3470         * m4/getloadavg.m4 (gl_GETLOADAVG): Expect the directory of
3471         getloadavg.c as first argument.
3472
3473 2006-09-22  Bruno Haible  <bruno@clisp.org>
3474
3475         * gnulib-tool (func_import, func_create_testdir): Set gl_source_base
3476         at the beginning of the gl_INIT macro.
3477         * modules/getloadavg (configure.ac): Pass $gl_source_base to
3478         gl_GETLOADAVG.
3479
3480 2006-09-22  Bruno Haible  <bruno@clisp.org>
3481
3482         * gnulib-tool (func_create_megatestdir): Don't include the config-h
3483         module.
3484         Suggested by Ralf Wildenhues.
3485
3486 2006-09-20  Paul Eggert  <eggert@cs.ucla.edu>
3487
3488         Import this patch from libc:
3489
3490         2006-09-06  Jakub Jelinek  <jakub@redhat.com>
3491
3492         * lib/regex_internal.c (re_string_reconstruct): Handle
3493         offset < pstr->valid_raw_len && pstr->offsets_needed case.
3494         Ensure no bytes read before raw_mbs array.  Pass a saved copy of
3495         pstr->valid_len - 1 rather than pstr->valid_raw_len - 1 to
3496         re_string_context_at.
3497
3498         * m4/regex.m4 (gl_REGEX): Check for locale.h, since the test
3499         now requires it.
3500         (gl_PREREQ_REGEX): Don't check for locale.h any more, since
3501         gl_REGEX now does it for us.
3502         (gl_REGEX): Add test taken from
3503         http://sourceware.org/ml/libc-hacker/2006-09/msg00008.html.
3504
3505         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Require AC_SYS_LARGEFILE.
3506         Check that large offsets work.  Modernize Autoconf usages.
3507         Prefer "yes" to mean a good thing rather than a bad.
3508         Don't put "#define mkstemp" in config.h, as this might interfere
3509         with standard system headers that "#define mkstemp mkstemp64".
3510
3511         * modules/mkstemp (Depends-on): Add extensions, so that
3512         mkstemp is visible on some platforms.
3513         (Makefile.am): Add mkstemp.h to EXTRA_DIST.
3514         (Include): Change to "mkstemp.h" from <stdlib.h>.
3515         (Files): Add mkstemp.h.
3516
3517         * lib/mkstemp.h: New file, since some standard headers
3518         #define mkstemp.
3519         * lib/mkstemp.c: Revamp to put the !_LIBC code together.
3520         Include "mkstemp.h".
3521         Make the _LIBC code resemble glibc original more,
3522         e.g., use K&R style.
3523         * lib/mkstemp-safer.c: Include "mkstemp.h" instead of <stdlib.h>.
3524         (mkstemp): Remove, since mkstemp.h does this for us.
3525         * lib/stdlib--.h: Include mkstemp.h.
3526
3527         Import this patch from libc:
3528
3529         2006-04-07  Ulrich Drepper  <drepper@redhat.com>
3530
3531         * lib/tempname.c (__gen_tempname): Change attempts_min
3532         into a macro.  Use preprocessor to decide how to initialize
3533         attempts [Coverity CID 67].
3534
3535 2006-09-20  Bruno Haible  <bruno@clisp.org>
3536
3537         * lib/mkdtemp.c: Import from libc.
3538         2006-04-07  Ulrich Drepper  <drepper@redhat.com>
3539                 * sysdeps/posix/tempname.c (__gen_tempname): Change
3540                 attempts_min into a macro.  Use preprocessor to decide how to
3541                 initialize attempts [Coverity CID 67].
3542         2001-11-27  Paul Eggert  <eggert@twinsun.com>
3543                 * sysdeps/posix/tempname.c (__gen_tempname): Try at least
3544                 ATTEMPTS_MIN or TMP_MAX times, whichever is greater.
3545
3546 2006-09-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3547
3548         * gnulib-tool (func_exit): New function, to allow to pass the
3549         exit status portably through the trap.  Use everywhere.
3550         (--help, --version): Signal a write error.
3551         (trap): catch SIGPIPE, for write errors.
3552         Exit at the end of the trap, with the correct exit status.
3553
3554 2006-09-19  Karl Berry  <karl@gnu.org>
3555
3556         * doc/gnulib.texi: note about the license texinfo files.
3557
3558 2006-09-19  Eric Blake  <ebb9@byu.net>
3559
3560         * gnulib-tool: Avoid space-tab.
3561
3562 2006-09-18  Paul Eggert  <eggert@cs.ucla.edu>
3563
3564         * lib/getaddrinfo.c (getaddrinfo) [defined HAVE_IPV6]: Fix typo
3565         that prevented coreutils 6.1 from building.  Problem reported
3566         by Petter Reinholdtsen.
3567
3568 2006-09-18  Paul Eggert  <eggert@cs.ucla.edu>
3569
3570         * gnulib-tool (avoidlist): Fix typo that broke options like
3571         --avoid=lock that are used by coreutils bootstrap.
3572
3573 2006-09-18  Mark D. Baushke  <mdb@gnu.org>
3574
3575         * m4/inttypes.m4 (gl_INTTYPES_H): Quote "test" args
3576         more systematically.
3577
3578 2006-09-18  Jim Meyering  <jim@meyering.net>
3579
3580         * lib/savewd.c (savewd_restore): Don't shadow: s/status/child_status/.
3581
3582 2006-09-18  Bruno Haible  <bruno@clisp.org>
3583
3584         * modules/inttypes (Files): Remove m4/inttypes-h.m4.
3585
3586 2006-09-18  Bruno Haible  <bruno@clisp.org>
3587
3588         * m4/inttypes-h.m4 (gl_HEADER_INTTYPES_H): Remove macro.
3589         * m4/inttypes-pri.m4: Require autoconf >= 2.52.
3590         (gt_INTTYPES_PRI): Invoke AC_CHECK_HEADERS on inttypes.h. Test
3591         ac_cv_header_inttypes_h instead of gl_cv_header_inttypes_h.
3592         * m4/gettext.m4: Require autoconf >= 2.52.
3593         (gt_INTL_SUBDIR_CORE): Invoke AC_CHECK_HEADERS on inttypes.h.
3594         * m4/inttypes.m4 (gl_INTTYPES_H): Test ac_cv_header_inttypes_h instead
3595         of gl_cv_header_inttypes_h.
3596
3597 2006-09-18  Bruno Haible  <bruno@clisp.org>
3598
3599         * lib/javaversion.c: Include configmake.h.
3600
3601 2006-09-18  Bruno Haible  <bruno@clisp.org>
3602
3603         * gnulib-tool (func_import, func_create_testdir): Use exec tricks to
3604         avoid that the while loops be executed in a subshell.
3605
3606 2006-09-18  Bruno Haible  <bruno@clisp.org>
3607
3608         * MODULES.html.sh (func_module): Break long lines.
3609         Suggested by Bruce Korb <bkorb@gnu.org>.
3610
3611 2006-09-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3612
3613         Speed up by a factor of 1.12.
3614         * gnulib-tool (nl): New variable.
3615         (func_import): Rewrite include directive extraction to only read each
3616         directive once.
3617
3618 2006-09-17  Bruno Haible  <bruno@clisp.org>
3619
3620         * modules/javaversion (Makefile.am): Remove DEFS setting.
3621         (Depends-on): Add configmake, for PKGDATADIR definition.
3622
3623 2006-09-17  Bruno Haible  <bruno@clisp.org>
3624
3625         * gnulib-tool (func_create_testdir): Rewrite all files at once.
3626
3627 2006-09-17  Bruno Haible  <bruno@clisp.org>
3628
3629         * gnulib-tool (func_append): New function, stolen from libtool.m4.
3630         (func_modules_transitive_closure, func_modules_add_dummy,
3631         func_modules_to_filelist, func_import, func_create_testdir,
3632         func_create_megatestdir, ...): Use it wherever possible.
3633         Suggested by Ralf Wildenhues.
3634
3635 2006-09-16  Karl Berry  <karl@gnu.org>
3636
3637         * doc/fdl.texi (ADDENDUM): switch to @heading from @appendixsubsec,
3638         to avoid sectioning errors.
3639         * doc/lgpl.texi, gpl.texi (Copying): downcase @unnumbered title.
3640         [ifinfo]: blank line after @center-ed titles.
3641         * doc/lgpl.texi (Library Copying): Rename main node to GNU LGPL.
3642         Spell FSF address consistently with others.
3643         (These changes approved by rms.)
3644
3645 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3646
3647         Speed up by a factor of 1.61.
3648         * gnulib-tool (func_modules_transitive_closure): Rewrite to not check
3649         already checked module names again.
3650
3651 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3652
3653         Speed up by a factor of 1.13.
3654         * gnulib-tool (func_import): Rewrite all old_files at once; likewise
3655         for new_files, and the input to func_add_or_update.
3656
3657 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3658
3659         * gnulib-tool (func_all_modules, func_modules_to_filelist, func_import,
3660         func_create_testdir, ...): Change 'sort | uniq' to 'sort -u'.
3661
3662 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
3663
3664         * modules/mkancesdirs (Depends-on): Add fcntl.
3665         * modules/savewd: New file.
3666         * MODULES.html.sh (File system functions): Add savewd.
3667
3668         * modules/configmake (Makefile.am): Add support for the
3669         Automake-supplied PKGLIBDIR, PKGINCLUDEDIR, PKGDATADIR.
3670
3671 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
3672
3673         * m4/savewd.m4: New file.
3674
3675 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
3676
3677         * lib/dirchownmod.c: Don't include fcntl.h; no longer needed.
3678         (dirchownmod): New arg FD.  All callers changed.
3679         Use FD rather than opening the directory ourself, as opening is
3680         now the caller's responsibility.
3681         * lib/dirchownmod.h: Likewise.
3682         * lib/mkancesdirs.c: Include <sys/types.h>, for portability to older
3683         hosts that require <sys/types.h> before <sys/stat.h>.  Include
3684         fcntl.h, savewd.h, and unistd.h, not dirname.h and stat-macros.h.
3685         (test_dir): Remove.
3686         (mkancesdirs): Return length of prefix of FILE that has already
3687         been made, or -2 if there is a child doing the work.  Redo
3688         algorithm so that it is O(N) rather than O(N**2).  Optimize away
3689         ".", and treat ".." specially since it might stray back into
3690         already-created areas.  Use a subprocess if necessary.  New arg
3691         WD; all users changed.  MAKE_DIR function should now return 1
3692         if it creates a directory that is not readable.  Return -2 if
3693         a child process is spun off.
3694         * lib/mkancesdirs.h: Include <stddef.h>, for ptrdiff_t.
3695         Adjust signature to match code.
3696         * lib/mkdir-p.c: Include dirname.h, for IS_ABSOLUTE_FILE_NAME.
3697         (make_dir_parents): Use a subprocess if necessary.  New arg WD;
3698         all users changed.
3699         * lib/savewd.c, lib/savewd.h: New files.
3700
3701 2006-09-15  Jim Meyering  <jim@meyering.net>
3702
3703         * modules/rename-dest-slash: New module.
3704         * MODULES.html.sh (posix_compat): Add it here.
3705
3706         * modules/rename: Reflect vb_FUNC_RENAME -> gl_FUNC_RENAME change.
3707
3708 2006-09-15  Jim Meyering  <jim@meyering.net>
3709
3710         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH): New
3711         file.
3712
3713         * m4/rename.m4 (gl_FUNC_RENAME): Rename from vb_FUNC_RENAME.
3714
3715 2006-09-15  Jim Meyering  <jim@meyering.net>
3716
3717         * lib/rename-dest-slash.c (has_trailing_slash): Use
3718         FILE_SYSTEM_PREFIX_LEN, for non-POSIX systems.
3719         (rpl_rename_dest_slash): Perform the cheaper trailing slash
3720         test before testing whether SRC is a directory.
3721         Suggestions from Bruno Haible.
3722
3723         Avoid a warning about an unused variable.
3724         * lib/regex_internal.c (re_dfa_add_node): Move declaration of "type"
3725         into the #ifdef block where it's used.
3726
3727         * lib/rename-dest-slash.c: New file.
3728
3729 2006-09-14  Bruno Haible  <bruno@clisp.org>
3730
3731         * lib/allocsa.c: Include <config.h> unconditionally.
3732         * lib/asnprintf.c: Likewise.
3733         * lib/asprintf.c: Likewise.
3734         * lib/c-strcasecmp.c: Likewise.
3735         * lib/c-strcasestr.c: Likewise.
3736         * lib/c-strncasecmp.c: Likewise.
3737         * lib/c-strstr.c: Likewise.
3738         * lib/classpath.c: Likewise.
3739         * lib/clean-temp.c: Likewise.
3740         * lib/concatpath.c: Likewise.
3741         * lib/copy-file.c: Likewise.
3742         * lib/csharpcomp.c: Likewise.
3743         * lib/csharpexec.c: Likewise.
3744         * lib/execute.c: Likewise.
3745         * lib/fatal-signal.c: Likewise.
3746         * lib/findprog.c: Likewise.
3747         * lib/fwriteerror.c: Likewise.
3748         * lib/gl_array_list.c: Likewise.
3749         * lib/gl_array_oset.c: Likewise.
3750         * lib/gl_avltree_list.c: Likewise.
3751         * lib/gl_avltree_oset.c: Likewise.
3752         * lib/gl_avltreehash_list.c: Likewise.
3753         * lib/gl_carray_list.c: Likewise.
3754         * lib/gl_linked_list.c: Likewise.
3755         * lib/gl_linkedhash_list.c: Likewise.
3756         * lib/gl_list.c: Likewise.
3757         * lib/gl_oset.c: Likewise.
3758         * lib/gl_rbtree_list.c: Likewise.
3759         * lib/gl_rbtree_oset.c: Likewise.
3760         * lib/gl_rbtreehash_list.c: Likewise.
3761         * lib/imaxabs.c: Likewise.
3762         * lib/imaxdiv.c: Likewise.
3763         * lib/javacomp.c: Likewise.
3764         * lib/javaexec.c: Likewise.
3765         * lib/javaversion.c: Likewise.
3766         * lib/linebreak.c: Likewise.
3767         * lib/localcharset.c: Likewise.
3768         * lib/lock.c: Likewise.
3769         * lib/mbchar.c: Likewise.
3770         * lib/mbswidth.c: Likewise.
3771         * lib/mkdtemp.c: Likewise.
3772         * lib/pipe.c: Likewise.
3773         * lib/printf-args.c: Likewise.
3774         * lib/printf-parse.c: Likewise.
3775         * lib/progname.c: Likewise.
3776         * lib/progreloc.c: Likewise.
3777         * lib/readlink.c: Likewise.
3778         * lib/sh-quote.c: Likewise.
3779         * lib/stpcpy.c: Likewise.
3780         * lib/stpncpy.c: Likewise.
3781         * lib/strcasecmp.c: Likewise.
3782         * lib/strcasestr.c: Likewise.
3783         * lib/strcspn.c: Likewise.
3784         * lib/striconv.c: Likewise.
3785         * lib/strncasecmp.c: Likewise.
3786         * lib/strnlen1.c: Likewise.
3787         * lib/strstr.c: Likewise.
3788         * lib/strtok_r.c: Likewise.
3789         * lib/tls.c: Likewise.
3790         * lib/tmpdir.c: Likewise.
3791         * lib/unicodeio.c: Likewise.
3792         * lib/unsetenv.c: Likewise.
3793         * lib/vasnprintf.c: Likewise.
3794         * lib/vasprintf.c: Likewise.
3795         * lib/wait-process.c: Likewise.
3796         * lib/xallocsa.c: Likewise.
3797         * lib/xsetenv.c: Likewise.
3798         * lib/xstriconv.c: Likewise.
3799
3800 2006-09-13  Simon Josefsson  <jas@extundo.com>
3801
3802         * m4/getdate.m4: Don't AC_LIBOBJ([getdate]), automake takes care of
3803         that internally, suggested by Ralf Wildenhues
3804         <Ralf.Wildenhues@gmx.de>.
3805
3806 2006-09-13  Simon Josefsson  <jas@extundo.com>
3807
3808         * gnulib-tool (func_emit_lib_Makefile_am): Use $(LIBOBJS), not
3809         @LIBOBJS@.
3810         Suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
3811
3812 2006-09-13  Paul Eggert  <eggert@cs.ucla.edu>
3813
3814         * lib/_fpending.c: Include <config.h> unconditionally, since we no
3815         longer worry about uses that don't define HAVE_CONFIG_H.
3816         * lib/acl.c, lib/alloca.c, lib/argmatch.c, lib/atexit.c:
3817         * lib/backupfile.c, lib/basename.c, lib/c-stack.c, lib/c-strtod.c:
3818         * lib/calloc.c,lib/ canon-host.c, lib/canonicalize.c, lib/chdir-long.c:
3819         * lib/chdir-safer.c, lib/chown.c, lib/cloexec.c, lib/close-stream.c:
3820         * lib/closeout.c, lib/creat-safer.c, lib/cycle-check.c, lib/diacrit.c:
3821         * lib/dirchownmod.c, lib/dirfd.c, lib/dirname.c, lib/dup-safer.c:
3822         * lib/dup2.c, lib/error.c, lib/euidaccess.c, lib/exclude.c:
3823         * lib/exitfail.c, lib/fchmodat.c, lib/fchown-stub.c, lib/fd-safer.c:
3824         * lib/file-type.c, lib/fileblocks.c, lib/filemode.c, lib/filenamecat.c:
3825         * lib/fnmatch.c, lib/fopen-safer.c, lib/fprintftime.c, lib/free.c:
3826         * lib/fsusage.c, lib/ftruncate.c, lib/fts-cycle.c, lib/fts.c:
3827         * lib/full-write.c, lib/gai_strerror.c, lib/getcwd.c, lib/getdate.y:
3828         * lib/getdomainname.c, lib/getgroups.c, lib/gethostname.c:
3829         * lib/gethrxtime.c, lib/getloadavg.c, lib/getlogin_r.c:
3830         * lib/getndelim2.c, lib/getnline.c, lib/getopt.c, lib/getopt1.c:
3831         * lib/getpass.c, lib/gettime.c, lib/gettimeofday.c, lib/getugroups.c:
3832         * lib/getusershell.c, lib/glob.c, lib/group-member.c:
3833         * lib/hard-locale.c, lib/hash-pjw.c, lib/hash.c, lib/human.c:
3834         * lib/idcache.c, lib/inet_ntop.c, lib/inet_pton.c, lib/inttostr.c:
3835         * lib/isdir.c, lib/lchown.c, lib/linebuffer.c, lib/long-options.c:
3836         * lib/lstat.c, lib/malloc.c, lib/md5.c, lib/memcasecmp.c, lib/memchr.c:
3837         * lib/memcmp.c, lib/memcoll.c, lib/memcpy.c, lib/memmove.c:
3838         * lib/memrchr.c, lib/mkancesdirs.c, lib/mkdir-p.c, lib/mkdir.c:
3839         * lib/mkdirat.c, lib/mkstemp-safer.c, lib/mkstemp.c, lib/modechange.c:
3840         * lib/mountlist.c, lib/nanosleep.c, lib/obstack.c, lib/open-safer.c:
3841         * lib/openat-die.c, lib/openat.c, lib/pagealign_alloc.c, lib/physmem.c:
3842         * lib/pipe-safer.c, lib/posixtm.c, lib/posixver.c, lib/putenv.c:
3843         * lib/quote.c, lib/quotearg.c, lib/raise.c, lib/readtokens.c:
3844         * lib/readtokens0.c, lib/readutmp.c, lib/realloc.c, lib/regex.c:
3845         * lib/rename.c, lib/rmdir.c, lib/rpmatch.c, lib/safe-read.c:
3846         * lib/same.c, lib/save-cwd.c, lib/savedir.c, lib/setenv.c:
3847         * lib/settime.c, lib/sha1.c, lib/sig2str.c, lib/snprintf.c:
3848         * lib/strdup.c, lib/strerror.c, lib/strftime.c, lib/stripslash.c:
3849         * lib/strndup.c, lib/strnlen.c, lib/strpbrk.c, lib/strtod.c:
3850         * lib/strtoimax.c, lib/strtol.c, lib/strverscmp.c, lib/tempname.c:
3851         * lib/time_r.c, lib/timegm.c, lib/tmpfile-safer.c, lib/unlinkdir.c:
3852         * lib/userspec.c, lib/utime.c, lib/utimecmp.c, lib/utimens.c:
3853         * lib/version-etc-fsf.c, lib/version-etc.c, lib/xalloc-die.c:
3854         * lib/xgetcwd.c, lib/xgethostname.c, lib/xmalloc.c, lib/xmemcoll.c:
3855         * lib/xnanosleep.c, lib/xreadlink.c, lib/xstrtod.c, lib/xstrtoimax.c:
3856         * lib/xstrtol.c, lib/xstrtoumax.c, lib/yesno.c:
3857         Likewise.
3858
3859 2006-09-13  Eric Blake  <ebb9@byu.net>
3860
3861         * lib/getopt.c: Fix typo in last commit.
3862
3863 2006-09-12  Sergey Poznyakoff  <gray@gnu.org.ua>
3864
3865         * lib/argp-help.c (argp_doc): Make sure NULL is not passed to
3866         dgettext.
3867
3868 2006-09-12  Jim Meyering  <jim@meyering.net>
3869
3870         * lib/nanosleep.c: Include <sys/types.h> before sys/select.h, to avoid
3871         compilation failure (due to use of pid_t in latter) on NetBSD 1.6.
3872         Reported by Nelson H. F. Beebe.
3873
3874 2006-09-10  Sergey Poznyakoff  <gray@gnu.org.ua>
3875
3876         * lib/argp-parse.c (__argp_parse) [!_LIBC]: Make sure
3877         program_invocation_name and program_invocation_short_name are
3878         initialized.
3879         * lib/argp-namefrob.h: Move declarations of program_invocation_name
3880         and program_invocation_short_name to argp.h, so they are visible
3881         to user programs.
3882         * lib/argp.h: Likewise
3883
3884 2006-09-10  Bruno Haible  <bruno@clisp.org>
3885
3886         * modules/mkdtemp (Files): Remove m4/ulonglong.m4, m4/stdint_h.m4,
3887         m4/inttypes_h.m4, m4/uintmax_t.m4.
3888
3889 2006-09-10  Bruno Haible  <bruno@clisp.org>
3890
3891         * m4/mkdtemp.m4 (gl_PREREQ_MKDTEMP): Don't require
3892         gl_AC_TYPE_UINTMAX_T.
3893
3894 2006-09-10  Bruno Haible  <bruno@clisp.org>
3895
3896         * lib/mkdtemp.c: Include <stdint.h> always. Don't include <inttypes.h>.
3897
3898 2006-09-09  Sergey Poznyakoff  <gray@gnu.org.ua>
3899
3900         * lib/argp.h (struct argp): Document the N_("..") "\v" N_("..")
3901         convention.  Text proposed by Bruno Haible.
3902         (struct argp_option): Document the use of N_() wrappers.
3903
3904         * lib/argp-help.c (argp_doc): Split the untranslated doc string on
3905         '\v', and translate the two parts separately, instead of feeding
3906         the whole string to gettext.  This allows to exclude
3907         '\v' from the strings visible to the translator by writing doc
3908         strings as N_("..") "\v" N_("..").
3909
3910 2006-09-09  Paul Eggert  <eggert@cs.ucla.edu>
3911
3912         * config/srclist.txt: Undo latest change; the bug was fixed.
3913
3914 2006-09-09  Bruno Haible  <bruno@clisp.org>
3915
3916         * gnulib-tool (func_emit_lib_Makefile_am): Eliminate lib_LDFLAGS
3917         assignments if building a library without libtool.
3918         (func_emit_tests_Makefile_am): Likewise. Handle lib_* variables as
3919         in func_emit_lib_Makefile_am.
3920         (func_import): When building a static library libfoo.a, arrange to
3921         define variables LIBFOO_LIBDEPS and LIBFOO_LTLIBDEPS.
3922         (func_create_testdir): Likewise.
3923         * modules/gc (configure.ac, Makefile.am): If building statically,
3924         augment gl_libdeps and gl_ltlibdeps instead of lib_LDFLAGS.
3925         * modules/iconvme (configure.ac, Makefile.am): Likewise.
3926         * modules/striconv (configure.ac, Makefile.am): Likewise.
3927         Based on a suggestion by Ralf Wildenhues.
3928
3929 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
3930
3931         * m4/mktime.m4 (AC_FUNC_MKTIME): Sync from Autoconf.
3932         Check for unistd.h too, since Autoconf doesn't assume POSIX.
3933         Also:
3934
3935         2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
3936         Add year_2050_test to catch glibc bug 2821
3937         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
3938
3939         2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
3940         Prefer #ifdef to #if.
3941
3942         2006-04-02  Paul Eggert  <eggert@cs.ucla.edu>
3943         Return from 'main' instead of calling 'exit'.
3944
3945 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
3946
3947         * lib/mktime.c (guess_time_tm): Fix bug where mktime
3948         returned the maximum time_t value rather than (time_t) -1.
3949         Problem originally reported by William Bardwell
3950         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
3951
3952         * lib/isapipe.h (HAVE_FIFO_PIPES) [!defined HAVE_FIFO_PIPES]:
3953         Moved to here ...
3954         * lib/isapipe.c (HAVE_FIFO_PIPES) [!defined HAVE_FIFO_PIPES]:
3955         ... from here.
3956
3957 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
3958
3959         * config/srclist.txt: Temporarily comment out mktime.c until glibc bug
3960         2821 is fixed.
3961
3962 2006-09-08  Jim Meyering  <jim@meyering.net>
3963
3964         Don't make generated files read-only.  That would bother too many
3965         people.  However, do retain the ability to work when targets are
3966         read-only: remove the destination and temporary files before writing
3967         them (when generated via sed or echo), or by using the -f option for
3968         both cp and mv commands.  Suggestion to use -f from Paul Eggert.
3969         * modules/alloca-opt, modules/argz, modules/arpa_inet:
3970         * modules/byteswap, modules/configmake, modules/fcntl:
3971         * modules/fnmatch, modules/getopt, modules/glob, modules/inttypes:
3972         * modules/localcharset, modules/netinet_in, modules/poll:
3973         * modules/stdbool, modules/stdint, modules/sys_select:
3974         * modules/sys_socket, modules/sys_stat, modules/sysexits:
3975
3976 2006-09-08  Jim Meyering  <jim@meyering.net>
3977
3978         Avoid new build failure on FreeBSD 6.0.
3979         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Include
3980         <sys/param.h> when testing whether getmntinfo uses statvfs.  Patch by
3981         Pavel Tsekov, in <http://savannah.gnu.org/bugs/?17643>.
3982
3983 2006-09-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3984
3985         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Don't use plain echo.
3986
3987 2006-09-07  Jim Meyering  <jim@meyering.net>
3988
3989         Fix global typo in last change: use chmod u-w, not chmod u-x.
3990         Spotted by Paul Eggert and Bruce Korb.
3991         * modules/alloca-opt, modules/argz, modules/arpa_inet:
3992         * modules/byteswap, modules/configmake, modules/fcntl:
3993         * modules/fnmatch, modules/getopt, modules/glob, modules/inttypes:
3994         * modules/localcharset, modules/netinet_in, modules/poll:
3995         * modules/stdbool, modules/stdint, modules/sys_select:
3996         * modules/sys_socket, modules/sys_stat, modules/sysexits:
3997
3998 2006-09-06  Jim Meyering  <jim@meyering.net>
3999
4000         Make generated files be read-only.
4001         * modules/alloca-opt (Makefile.am): Work also when $@ is read-only.
4002         Ensure that each generated file is now read-only.
4003         * modules/argz: Likewise.
4004         * modules/arpa_inet: Likewise.
4005         * modules/byteswap: Likewise.
4006         * modules/configmake: Likewise.
4007         * modules/fcntl: Likewise.
4008         * modules/fnmatch: Likewise.
4009         * modules/getopt: Likewise.
4010         * modules/glob: Likewise.
4011         * modules/inttypes: Likewise.
4012         * modules/netinet_in: Likewise.
4013         * modules/poll: Likewise.
4014         * modules/stdbool: Likewise.
4015         * modules/stdint: Likewise.
4016         * modules/sys_select: Likewise.
4017         * modules/sys_socket: Likewise.
4018         * modules/sys_stat: Likewise.
4019         * modules/sysexits: Likewise.
4020         * modules/localcharset: Same as above, but continue using temporary
4021         file named "t-$@" (why different?) rather than the "$@-t" used
4022         everywhere else.
4023
4024         * modules/sysexits (Makefile.am): Replace literal occurrences
4025         of "sysexit.h" more readable, and more consistent, "$@".
4026
4027 2006-09-06  Bruno Haible  <bruno@clisp.org>
4028
4029         * modules/striconv: New file.
4030         * modules/xstriconv: New file.
4031         * MODULES.html.sh (Internationalization functions): Add striconv,
4032         xstriconv.
4033
4034 2006-09-06  Bruno Haible  <bruno@clisp.org>
4035
4036         * modules/gc (Makefile.am): Augment lib_LDFLAGS, not lib_LIBADD.
4037         * modules/iconvme (Makefile.am): Likewise. Also handle the case of
4038         not using libtool correctly.
4039
4040 2006-09-06  Bruno Haible  <bruno@clisp.org>
4041
4042         * lib/striconv.h: New file.
4043         * lib/striconv.c: New file, merging iconvme.c with GNU gettext's
4044         iconvstring.c.
4045         * lib/xstriconv.h: New file.
4046         * lib/xstriconv.c: New file.
4047
4048 2006-09-06  Bruno Haible  <bruno@clisp.org>
4049
4050         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
4051         lib_..._LDFLAGS.
4052
4053 2006-09-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4054
4055         * lib/argz_.h: Sync from Libtool.
4056
4057         2006-09-04  George Bosilca <bosilca@cs.utk.edu>
4058                 and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4059
4060         * lib/libltdl/argz_.h: It's __cplusplus, not _cplusplus.
4061
4062 2006-09-05  Davide Angelocola  <davide.angelocola@tiscali.it>
4063
4064         * modules/trim: New file.
4065
4066 2006-09-05  Davide Angelocola  <davide.angelocola@tiscali.it>
4067
4068         * lib/trim.h: New file.
4069         * lib/trim.c: New file.
4070
4071 2006-09-05  Bruno Haible  <bruno@clisp.org>
4072
4073         * MODULES.html.sh (String handling): Add trim.
4074
4075 2006-09-04  Karl Berry  <karl@gnu.org>
4076
4077         * config/srclist.txt (signed.m4, gettext.m4): changes not propagated
4078         until next release.
4079
4080 2006-09-03  Bruno Haible  <bruno@clisp.org>
4081
4082         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Locate mingw shared libraries
4083         correctly.
4084
4085 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
4086
4087         * m4/getloadavg.m4 (gl_GETLOADAVG): Use CONFIGURING_GETLOADAVG,
4088         not gl_GETLOADAVG.  Omit unneeded semicolons.
4089         Problems reported by Ralf Wildenhues in
4090         <http://lists.gnu.org/archive/html/bug-gnulib/2006-09/msg00000.html>.
4091         (gl_PREREQ_GETLOADAVG): Use AC_DEFUN, not m4_define.  Put
4092         at the end, which is the usual gnulib style.
4093
4094         * m4/fstypename.m4 (gl_FSTYPENAME): Use AC_CHECK_MEMBERS instead
4095         of doing all the work ourselves.
4096         * m4/fsusage.m4 (gl_PREREQ_FSUSAGE_EXTRA): Don't check for
4097         sys/statvfs.h since the code doesn't use HAVE_SYS_STATVFS_H.
4098
4099 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
4100
4101         * lib/getloadavg.c: Use CONFIGURING_GETLOADAVG, not gl_GETLOADAVG.
4102         Problem reported by Ralf Wildenhues in
4103         <http://lists.gnu.org/archive/html/bug-gnulib/2006-09/msg00000.html>.
4104
4105         * lib/mountlist.c: All uses of HAVE_F_FSTYPENAME_IN_STATFS replaced by
4106         HAVE_STRUCT_STATFS_F_FSTYPENAME.
4107
4108 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
4109
4110         * gnulib-tool (func_emit_lib_Makefile_am): Fix typos in
4111         yesterday's patch by changing test -n to test -z.
4112
4113 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
4114
4115         * modules/getloadavg (Files): Add m4/getloadavg.m4.
4116         (configure.ac): AC_FUNC_GETLOADAVG -> gl_GETLOADAVG, as
4117         the former is now obsolescent.
4118
4119         * modules/chdir-long (Depends-on): Add fcntl.
4120
4121 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
4122
4123         * m4/fnmatch.m4: Add comment that Autoconf AC_FUNC_FNMATCH is
4124         obsolescent, and programs should use gnulib instead.
4125         * m4/getloadavg.m4: New file, with contents taken from Autoconf
4126         but with prefixes changed.
4127
4128 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
4129
4130         * lib/getloadavg.c [defined gl_GETLOADAVG]: Don't include config.h
4131         or stdbool.h, because they might not exist while configuring.
4132
4133         * lib/chdir-long.c: Include <fcntl.h>, for O_DIRECTORY.
4134         Don't include unistd.h or limits.h; not needed, since chdir-long.h
4135         does that for us.
4136         (O_DIRECTORY): Remove.
4137
4138 2006-08-31  Eric Blake  <ebb9@byu.net>
4139
4140         * gnulib-tool: Don't let emacs change spaces to TAB.
4141
4142 2006-08-31  Bruno Haible  <bruno@clisp.org>
4143
4144         * gnulib-tool: When calling func_import more than once, do it in a
4145         subshell.
4146         Reported by Eric Blake <ebb9@byu.net>.
4147
4148 2006-08-31  Bruno Haible  <bruno@clisp.org>
4149
4150         * gnulib-tool (nl): Remove variable.
4151         (sed_transform_lib_file): Use more robust test for config-h module.
4152         (func_import): Fix typo in 2006-08-25 patch.
4153
4154 2006-08-31  Bruno Haible  <bruno@clisp.org>
4155
4156         * gnulib-tool (func_emit_lib_Makefile_am): When --makefile-name was
4157         specified, augment Makefile.am variables instead of assigning them.
4158
4159 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
4160
4161         Work around a bug in both the Linux and SunOS 64-bit kernels:
4162         nanosleep mishandles sleeps for longer than 2**31 seconds.
4163         Problem reported by Frank v Waveren in
4164         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00298.html>.
4165         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Require gl_CLOCK_TIME.
4166         Check for nanosleep bug.
4167         (LIB_NANOSLEEP): Append clock_gettime library if needed.
4168
4169 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
4170
4171         Work around a bug in both the Linux and SunOS 64-bit kernels:
4172         nanosleep mishandles sleeps for longer than 2**31 seconds.
4173         Problem reported by Frank v Waveren in
4174         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00298.html>.
4175         * lib/nanosleep.c (BILLION): New constant.
4176         (getnow) [HAVE_BUG_BIG_NANOSLEEP]: New functions.
4177         (rpl_nanosleep) [HAVE_BUG_BIG_NANOSLEEP]: Completely new
4178         implementation.
4179
4180 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
4181
4182         * modules/nanosleep (Depends-on): Add gettime.
4183
4184 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
4185         and Simon Josefsson  <jas@extundo.com>
4186         and Oskar Liljeblad  <oskar@osk.mine.nu>
4187
4188         * MODULES.html.sh (Support for building documentation): Add gpl, lgpl.
4189         * gnulib-tool (func_import): New license type 'unmodifiable license
4190         text'.
4191         * modules/fdl: Use it.  Longer description.
4192         * module/gpl, module/lgpl: New files.
4193
4194 2006-08-30  Jim Meyering  <jim@meyering.net>
4195
4196         * lib/isapipe.c (isapipe): Rename local s/fd/fd_pair/ to avoid
4197         shadowing the parameter.
4198
4199 2006-08-29  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4200
4201         Sync from Libtool:
4202
4203         2006-08-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4204
4205         * lib/libltdl/argz.c: Use `#ifdef HAVE_CONFIG_H', to facilitate code
4206         sharing with gnulib.  Report by Eric Blake.
4207
4208 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
4209
4210         * modules/isapipe: New file.
4211         * MODULES.html.sh (File descriptor based Input/Output): Add isapipe.
4212
4213 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
4214
4215         * modules/configmake (Makefile.am): Add a comment, and omit
4216         the CONFIGMAKE_ prefix from generated macro names.  Suggested
4217         by Bruno Haible.
4218
4219 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
4220
4221         * m4/isapipe.m4: New file.
4222
4223 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
4224
4225         * lib/isapipe.c, lib/isapipe.h: New files.
4226
4227 2006-08-29  Jim Meyering  <jim@meyering.net>
4228
4229         * modules/configmake (Makefile.am): Make configmake.h depend on
4230         Makefile.  Otherwise, a stale configmake.h could hang around.
4231
4232 2006-08-29  Eric Blake  <ebb9@byu.net>
4233
4234         * lib/error.c (error_at_line, print_errno_message): Match libc, after
4235         resolution of upstream bug 3044.
4236
4237 2006-08-29  Bruno Haible  <bruno@clisp.org>
4238
4239         * modules/localcharset (Depends-on): Add configmake.
4240         (Makefile.am): Remove setting of LIBDIR through DEFS.
4241
4242 2006-08-29  Bruno Haible  <bruno@clisp.org>
4243
4244         * lib/localcharset.c: Include configmake.h in order to get LIBDIR
4245         defined.
4246
4247 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
4248
4249         * modules/fcntl: New file.
4250         * modules/chdir-safer (Depends-on): Add fcntl.
4251         * modules/fts: Likewise.
4252         * modules/mkdir-p: Likewise.
4253
4254         * modules/stdint (Makefile.am): Do not substitute ABSOLUTE_INTTYPES_H.
4255         This undoes the most recent change, since we're now addressing the
4256         problem in a different way.
4257
4258         * gnulib-tool (emit_lib_Makefile_am): Don't put $makefile_name
4259         into output, since the output might be called Makefile.am even
4260         if $makefile_name is something different.
4261         (func_import): Use $makefile_am rather than
4262         ${makefile_name-Makefile.am}, to fix a bug where makefile_name was
4263         empty.
4264
4265         * modules/inttypes (Files): Add m4/inttypes-h.m4.
4266
4267 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
4268
4269         * m4/inttypes.m4 (gl_INTTYPES_H): Move ABSOLUTE_INTTYPES_H code here...
4270         * m4/stdint.m4 (gl_STDINT_H): ... from here.  This undoes the most
4271         recent change to stdint.m4, since we're now addressing the problem in a
4272         different way.
4273
4274 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
4275
4276         * m4/fcntl_h.m4: New file.
4277
4278 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
4279
4280         * lib/fcntl_.h: New file.
4281         * lib/chdir-safer.c (O_DIRECTORY, O_NOFOLLOW): Remove, now that we have
4282         the fcntl module.
4283         * lib/dirchownmod.c: Likewise.
4284         * lib/fts.c: Likewise.
4285
4286         * lib/inttypes_.h [defined _GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H]:
4287         Include @ABSOLUTE_INTTYPES_H@ if available, but do nothing else.
4288         * lib/stdint_.h (_GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H): Define
4289         just before including <inttypes.h>, to avoid circular inclusion.
4290
4291 2006-08-28  Jim Meyering  <jim@meyering.net>
4292
4293         * doc/visibility.texi: Actually read and correct the grammar of the
4294         sentence affected by yesterday's change.
4295
4296 2006-08-28  Eric Blake  <ebb9@byu.net>
4297
4298         * modules/inttypes (Makefile.am): Fix sed error when inttypes.h
4299         needs wrapper.
4300
4301 2006-08-28  Eric Blake  <ebb9@byu.net>
4302
4303         * m4/inttypes.m4 (gl_INTTYPES_H): Fix missing #endif.
4304
4305 2006-08-28  Eric Blake  <ebb9@byu.net>
4306
4307         * m4/codeset.m4 (AM_LANGINFO_CODESET): Avoid compiler warning.
4308
4309 2006-08-28  Bruno Haible  <bruno@clisp.org>
4310
4311         * modules/c-strstr: New file, from GNU gettext.
4312         * MODULES.html.sh (String handling): Add c-strstr.
4313
4314 2006-08-28  Bruno Haible  <bruno@clisp.org>
4315
4316         * m4/inttypes.m4 (gl_INTTYPES_H): Don't test for the existence of SCNX*
4317         macros.
4318         Reported by Eric Blake.
4319
4320 2006-08-28  Bruno Haible  <bruno@clisp.org>
4321
4322         * lib/vasnprintf.c (EOVERFLOW): Remove definition.
4323         (VASNPRINTF): Return a string of length > INT_MAX without failing.
4324         * lib/vasprintf.c: Include errno.h, limits.h.
4325         (EOVERFLOW): New fallback definition.
4326         (vasprintf): Test here whether the string length is > INT_MAX.
4327         * lib/vsnprintf.c: Include errno.h, limits.h.
4328         (EOVERFLOW): New fallback definition.
4329         (vsnprintf): Fix bug when generated string was too long for the buffer.
4330         Test here whether the string length is > INT_MAX.
4331
4332 2006-08-28  Bruno Haible  <bruno@clisp.org>
4333
4334         * lib/inttypes_.h (SCNX*): Remove definitions.
4335         Reported by Eric Blake.
4336
4337 2006-08-28  Bruno Haible  <bruno@clisp.org>
4338
4339         * lib/c-strstr.h: New file, from GNU gettext.
4340         * lib/c-strstr.c: New file, from GNU gettext.
4341
4342 2006-08-28  Bruno Haible  <bruno@clisp.org>
4343
4344         * gnulib-tool: Reorder some statements.
4345
4346 2006-08-28  Bruno Haible  <bruno@clisp.org>
4347
4348         * gnulib-tool: New option --makefile-name.
4349         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am): Use
4350         $makefile_name.
4351         (func_import): Write $makefile_name to the cache file, and read it from
4352         there unless explicitly specified. Use $makefile_name as file name
4353         instead of Makefile.am. Adjust the recommendations accordingly.
4354
4355 2006-08-28  Bruno Haible  <bruno@clisp.org>
4356
4357         * gnulib-tool (func_verify_module): Check against misapplying patch.
4358
4359 2006-08-28  Bruno Haible  <bruno@clisp.org>
4360
4361         * gnulib-tool (func_relativize, func_relconcat): New functions.
4362         Give an error if --local-dir is given with --update.
4363         Remove trailing slashes from $local_gnulib_dir.
4364         (func_import): Store the relativized $local_gnulib_dir in
4365         gnulib-cache.m4, and read it from there if not specified explicitly.
4366
4367 2006-08-28  Bruno Haible  <bruno@clisp.org>
4368
4369         * gnulib-tool (func_get_tests_module): Don't assume that $gnulib_dir
4370         is the current directory. Respect also $local_gnulib_dir.
4371
4372 2006-08-28  Bruno Haible  <bruno@clisp.org>
4373             Simon Josefsson  <jas@extundo.com>
4374
4375         BeOS portability.
4376         * lib/getaddrinfo.c (PF_INET, PF_UNSPEC): New macros.
4377
4378 2006-08-27  Jim Meyering  <jim@meyering.net>
4379
4380         * doc/visibility.texi: Remove duplicate word: "pointer".
4381
4382 2006-08-26  Bruno Haible  <bruno@clisp.org>
4383
4384         * modules/inttypes (Files): Add lib/inttypes_.h, remove lib/inttypes.h.
4385         Add m4/inttypes.m4, remove m4/_inttypes_h.m4 and m4/include_next.m4.
4386         (Makefile.am): Create inttypes.h from inttypes_.h.
4387         * modules/stdint (Makefile.am): Substitute also ABSOLUTE_INTTYPES_H.
4388
4389         * modules/imaxabs: New file.
4390
4391         * modules/imaxdiv: New file.
4392
4393 2006-08-26  Bruno Haible  <bruno@clisp.org>
4394
4395         * m4/inttypes.m4: New file.
4396         * m4/_inttypes_h.m4: Remove file.
4397         * m4/inttypes-pri.m4 (gt_INTTYPES_PRI): Also AC_SUBST
4398         PRI_MACROS_BROKEN.
4399         * m4/stdint.m4 (gl_STDINT_H): Define also ABSOLUTE_INTTYPES_H.
4400
4401         * m4/imaxabs.m4: New file.
4402
4403         * m4/imaxdiv.m4: New file.
4404
4405 2006-08-26  Bruno Haible  <bruno@clisp.org>
4406
4407         * lib/inttypes_.h: New file.
4408         * lib/inttypes.h: Remove file.
4409         * lib/stdint_.h: Include <inttypes.h> through its absolute filename.
4410
4411         * lib/imaxabs.c: New file.
4412
4413         * lib/imaxdiv.c: New file.
4414
4415 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
4416
4417         New config-h module, so that "make" output needn't be cluttered
4418         by -DHAVE_CONFIG_H.
4419         * MODULES.html.sh (Support for building libraries and executables):
4420         Add config-h.
4421         * modules/config-h: New file.
4422         * gnulib-tool (nl, sed_transform_lib_file): New vars.
4423         (func_import): Turn "#ifdef HAVE_CONFIG_H" to "#if 1" if
4424         the config-h module is used.
4425
4426         New configmake module, so that "make" output needn't be cluttered
4427         by fluff like '-DLIBDIR=\"/usr/local/lib\"'.
4428         * MODULES.html.sh (Support for building libraries and executables):
4429         Add configmake.
4430         * modules/configmake: New file.
4431
4432 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
4433
4434         * m4/config-h.m4: New file.
4435
4436 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
4437
4438         * config/srclist.txt: Add elisp-comp.
4439
4440 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
4441
4442         * MODULES.html.sh (Support for building libraries and executables):
4443         Add elisp-comp.
4444         * build-aux/elisp-comp: New file.
4445         * modules/elisp-comp: New file.
4446
4447 2006-08-24  Bruno Haible  <bruno@clisp.org>
4448
4449         * gnulib-tool (func_create_testdir): Use non-default values of
4450         sourcebase and m4base.
4451
4452 2006-08-24  Bruno Haible  <bruno@clisp.org>
4453
4454         * MODULES.html.sh (Compatibility checks for POSIX:2001 functions: Fix
4455         HTML structure.
4456
4457 2006-08-23  Paul Eggert  <eggert@cs.ucla.edu>
4458
4459         * modules/openat (Depends-on): Add lchown.
4460
4461 2006-08-23  Bruno Haible  <bruno@clisp.org>
4462
4463         * gnulib-tool (func_import, func_create_testdir): Emit an invocation
4464         of gl_LOCK_EARLY instead of gl_LOCK.
4465
4466 2006-08-23  Bruno Haible  <bruno@clisp.org>
4467
4468         * m4/lock.m4 (gl_LOCK_BODY): Change the default value of gl_use_threads
4469         on OSF/1 to no.
4470         Reported by Stephen Cartwright <sgcartwr@ucalgary.ca>.
4471
4472 2006-08-23  Bruno Haible  <bruno@clisp.org>
4473
4474         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Don't consider BeOS statvfs
4475         as unusable.
4476
4477         * m4/lock.m4 (gl_LOCK_EARLY): Renamed from gl_LOCK.
4478         (gl_LOCK_BODY): Remove gl_PREREQ_LOCK invocation.
4479         (gl_LOCK): New macro.
4480
4481 2006-08-22  Simon Josefsson  <jas@extundo.com>
4482
4483         * modules/gc-md5 (Makefile.am): Need to add md5.h, after changes
4484         to md5 module.
4485
4486 2006-08-22  Simon Josefsson  <jas@extundo.com>
4487
4488         * MODULES.html.sh: Add "Support for maintaining and release
4489         projects".
4490
4491         * build-aux/gnupload: New file, from coreutils.
4492
4493 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
4494
4495         Avoid the need for AC_LIBSOURCES in m4 macros.
4496         * modules/arcfour (EXTRA_DIST): Add arcfour.h.
4497         * modules/arctwo (EXTRA_DIST): Add arctwo.h.
4498         * modules/check-version (EXTRA_DIST): Add check-version.h.
4499         * modules/crc (EXTRA_DIST): Add crc.h.
4500         * modules/des (EXTRA_DIST): Add des.h.
4501         * modules/gc (EXTRA_DIST): Add gc.h.
4502         * modules/getdelim (EXTRA_DIST): Add getdelim.h.
4503         * modules/getline (EXTRA_DIST): Add getline.h.
4504         * modules/getlogin_r (EXTRA_DIST): Add getlogin_r.h.
4505         * modules/hmac-md5 (EXTRA_DIST): Add hmac.h.
4506         * modules/hmac-sha1 (EXTRA_DIST): Add hmac.h.
4507         * modules/md2 (EXTRA_DIST): Add md2.h.
4508         * modules/md4 (EXTRA_DIST): Add md4.h.
4509         * modules/pagealign_alloc (EXTRA_DIST): Add pagealign_alloc.h.
4510         * modules/read-file (EXTRA_DIST): Add read-file.h.
4511         * modules/readline (EXTRA_DIST): Add readline.h.
4512         * modules/rijndael (EXTRA_DIST): Add rijndael-alg-fst.h,
4513         rijndael-api-fst.h.
4514
4515 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
4516
4517         * m4/rijndael.m4 (gl_ARCFOUR):
4518         * m4/arctwo.m4 (gl_ARCTWO):
4519         * m4/check-version.m4 (gl_CHECK_VERSION):
4520         * m4/crc.m4 (gl_CRC):
4521         * m4/des.m4 (gl_DES):
4522         * m4/gc-pbkdf2-sha1.m4 (gl_GC_PBKDF2_SHA1):
4523         * m4/gc.m4 (gl_GC):
4524         * m4/getdelim.m4 (gl_FUNC_GETDELIM):
4525         * m4/getline.m4 (gl_FUNC_GETLINE):
4526         * m4/getlogin_r.m4 (gl_GETLOGIN_R_SUBSTITUTE):
4527         * m4/hmac-md5.m4 (gl_HMAC_MD5):
4528         * m4/hmac-sha1.m4 (gl_HMAC_SHA1):
4529         * m4/md2.m4 (gl_MD2):
4530         * m4/md4.m4 (gl_MD4):
4531         * m4/pagealign_alloc.m4 (gl_PAGEALIGN_ALLOC):
4532         * m4/read-file.m4 (gl_FUNC_READ_FILE):
4533         * m4/readline.m4 (gl_FUNC_READLINE):
4534         * m4/rijndael.m4 (gl_RIJNDAEL):
4535         Don't use AC_LIBSOURCES; instead, rely on the files in ../modules/
4536         to get the necessary .h files and whatnot.
4537
4538 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
4539
4540         * config/srclist.txt: Remove gnupload, since coreutils now syncs from
4541         gnulib rather than the other way around.
4542         * config/srclistvars.sh (COREUTILS): Remove.
4543
4544 2006-08-22  Jim Meyering  <jim@meyering.net>
4545
4546         * modules/mkdir-p (Makefile.am): Fix typo: s/lib+SOURCES/lib_SOURCES/.
4547
4548         * modules/getpass-gnu (Makefile.am): Add getpass.h to EXTRA_DIST.
4549
4550 2006-08-22  Eric Blake  <ebb9@byu.net>
4551
4552         * modules/regexprops-generic: New file.
4553         * MODULES.html.sh (Support for building documentation): List it.
4554
4555 2006-08-22  Eric Blake  <ebb9@byu.net>
4556
4557         * m4/stdint_h.m4 (gl_AC_HEADER_STDINT_H): Avoid compiler warning.
4558         * m4/inttypes_h.m4 (gl_AC_HEADER_INTTYPES_H): Likewise.
4559         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Likewise.
4560         * m4/intmax_t.m4 (gt_AC_TYPE_INTMAX_T): Likewise.
4561
4562 2006-08-22  Bruno Haible  <bruno@clisp.org>
4563
4564         * gnulib-tool (func_emit_lib_Makefile_am): Don't treat lib_LIBRARIES
4565         and lib_LTLIBRARIES like the other lib_* variables.
4566
4567 2006-08-22  Bruno Haible  <bruno@clisp.org>
4568
4569         * build-aux/x-to-1.in: New file, from GNU gettext.
4570
4571 2006-08-22  Bruno Haible  <bruno@clisp.org>
4572
4573         * m4/readutmp.m4 (gl_READUTMP): Compile readutmp.c only if <utmp.h> or
4574         <utmpx.h> exists.
4575
4576 2006-08-22  Bruno Haible  <bruno@clisp.org>
4577
4578         * lib/readutmp.h: Skip most definitions if neither <utmp.h> nor
4579         <utmpx.h> exists.
4580
4581 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
4582
4583         BeOS portability.
4584         * lib/dirchownmod.c (dirchownmod): Don't use fchmod if it doesn't
4585         exist.
4586         Problem reported by Bruno Haible.
4587
4588 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
4589
4590         Avoid the need for AC_LIBSOURCES in m4 macros.
4591         * modules/acl (EXTRA_DIST): Add acl.h.
4592         * modules/argmatch (Files): Add m4/argmatch.m4.
4593         (configure.ac): Add gl_ARGMATCH.
4594         (EXTRA_DIST): Renamed from lib_SOURCES, for
4595         consistency with the other modules.  Remove argmatch.c.
4596         * modules/backupfile (EXTRA_DIST): Add backupfile.h.
4597         * modules/c-strtod (EXTRA_DIST): Add c-strtod.h.
4598         * modules/c-strtold (EXTRA_DIST): Add c-strtod.c, c-strtod.h.
4599         * modules/canonhost (EXTRA_DIST): Add c-canonhost.h.
4600         * modules/canonicalize (EXTRA_DIST): Add canonicalize.h.
4601         * modules/chdir-long (EXTRA_DIST): Add chdir-long.h.
4602         * modules/chdir-safer (EXTRA_DIST): Add chdir-safer.h.
4603         * modules/cloexec (EXTRA_DIST): Add cloexec.h.
4604         * modules/close-stream (EXTRA_DIST): Add close-stream.h.
4605         * modules/closeout (EXTRA_DIST): Add closeout.h.
4606         * modules/cycle-check (EXTRA_DIST): Add cycle-check.h.
4607         * modules/dev-ino (EXTRA_DIST): Add dev-ino.h.
4608         * modules/dirfd (EXTRA_DIST): Add dirfd.h.
4609         * modules/dirname (EXTRA_DIST): Renamed from lib_SOURCES.  Add
4610         dirname.h; remove basename.c and stripslash.c.
4611         * modules/exclude (EXTRA_DIST): Add exclude.h.
4612         * modules/exitfail (EXTRA_DIST): Add exitfail.h.
4613         * modules/fcntl-safer (EXTRA_DIST): Add fcntl-safer.h fcntl--.h.
4614         * modules/file-type (EXTRA_DIST): Add file-type.h.
4615         * modules/filemode (EXTRA_DIST): Add filemode.h.
4616         * modules/filenamecat (EXTRA_DIST): Add filenamecat.h.
4617         * modules/fopen-safer (EXTRA_DIST): Add stdio-safer.h stdio--.h.
4618         * modules/fpending (EXTRA_DIST): Add __fpending.h.
4619         * modules/fprintftime (EXTRA_DIST): Add fprintftime.h.
4620         * modules/fsusage (EXTRA_DIST): Add fsusage.h.
4621         * modules/fts (EXTRA_DIST): Add fts_.h fts-cycle.c.
4622         * modules/getcwd (EXTRA_DIST): Add getcwd.h.
4623         * modules/getdate (EXTRA_DIST): Add getdate.c.
4624         * modules/gethrxtime (EXTRA_DIST): Add gethrxtime.h xtime.h.
4625         * modules/getpagesize (EXTRA_DIST): Add getpagesize.h.
4626         * modules/getpass (EXTRA_DIST): Add getpass.h.
4627         * modules/glob (EXTRA_DIST): Add glob_.h glob-libc.h.
4628         * modules/group-member (EXTRA_DIST): Add group-member.h.
4629         * modules/hard-locale (EXTRA_DIST): Add hard-locale.h.
4630         * modules/hash (EXTRA_DIST): Add hash.h.
4631         * modules/human (EXTRA_DIST): Add human.h.
4632         * modules/inttypes (EXTRA_DIST): Add inttypes.h.
4633         * modules/lchmod (EXTRA_DIST): Add lchmod.h.
4634         * modules/lchown (EXTRA_DIST): Add lchown.h.
4635         * modules/long-options (EXTRA_DIST): Add long-options.h.
4636         * modules/lstat (EXTRA_DIST): Add lstat.h.
4637         * modules/md5 (EXTRA_DIST): Add memcasecmp.h.
4638         * modules/memcoll (EXTRA_DIST): Add memcoll.h.
4639         * modules/mempcpy (EXTRA_DIST): Add mempcpy.h.
4640         * modules/memrchr (EXTRA_DIST): Add memrchr.h.
4641         * modules/memxor (EXTRA_DIST): Add memxor.h.
4642         * modules/mkancesdirs (EXTRA_DIST): Add mkancesdirs.h.
4643         * modules/mkdir-p (EXTRA_DIST): Add modechange.h.
4644         * modules/mountlist (EXTRA_DIST): Add mountlist.h.
4645         * modules/openat (EXTRA_DIST): Add at-func.c openat.h openat-priv.h.
4646         * modules/pathmax (EXTRA_DIST): Add pathmax.h.
4647         * modules/physmem (EXTRA_DIST): Add physmem.h.
4648         * modules/posixtm (EXTRA_DIST): Add posixtm.h.
4649         * modules/posixver (EXTRA_DIST): Add posixver.h.
4650         * modules/quote (EXTRA_DIST): Add quote.h.
4651         * modules/quotearg (EXTRA_DIST): Add quotearg.h.
4652         * modules/readtokens (EXTRA_DIST): Add readtokens.h.
4653         * modules/readutmp (EXTRA_DIST): Add readutmp.h.
4654         * modules/regex (EXTRA_DIST): Add regcomp.c regex.h regex_internal.c
4655         regex_internal.h regexec.c.
4656         * modules/safe-read (EXTRA_DIST): Add safe-read.h.
4657         * modules/safe-write (EXTRA_DIST): Add safe-write.h.
4658         * modules/same (EXTRA_DIST): Add same.h.
4659         * modules/same-inode (EXTRA_DIST): Add same-inode.h.
4660         * modules/save-cwd (EXTRA_DIST): Add save-cwd.h.
4661         * modules/savedir (EXTRA_DIST): Add savedir.h.
4662         * modules/sha1 (EXTRA_DIST): Add sha1.h.
4663         * modules/sig2str (EXTRA_DIST): Add sig2str.h.
4664         * modules/stat-macros (EXTRA_DIST): Add stat-macros.h.
4665         * modules/stat-time (EXTRA_DIST): Add stat-time.h.
4666         * modules/stdlib-safer (EXTRA_DIST): Add stdlib-safer.h stdlib--.h.
4667         * modules/strdup (EXTRA_DIST): Add strdup.h.
4668         * modules/strftime (EXTRA_DIST): Add strftime.h.
4669         * modules/strndup (EXTRA_DIST): Add strndup.h.
4670         * modules/strnlen (EXTRA_DIST): Add strnlen.h.
4671         * modules/strverscmp (EXTRA_DIST): Add strverscmp.h.
4672         * modules/time_r (EXTRA_DIST): Add time_r.h.
4673         * modules/timespec (EXTRA_DIST): Add timespec.h.
4674         * modules/tmpfile-safer (EXTRA_DIST): Add stdio-safer.h stdio--.h.
4675         * modules/unistd-safer (EXTRA_DIST): Add unistd-safer.h unistd--.h.
4676         * modules/unlinkdir (EXTRA_DIST): Add unlinkdir.h.
4677         * modules/unlocked-io (EXTRA_DIST): Add unlocked-io.h.
4678         * modules/userspec (EXTRA_DIST): Add userspec.h.
4679         * modules/utimecmp (EXTRA_DIST): Add utimecmp.h.
4680         * modules/utimens (EXTRA_DIST): Add utimens.h.
4681         * modules/xalloc (EXTRA_DIST): Add xalloc.h.
4682         * modules/xgetcwd (EXTRA_DIST): Add xgetcwd.h.
4683         * modules/xnanosleep (EXTRA_DIST): Add xnanosleep.h.
4684         * modules/xreadlink (EXTRA_DIST): Add xreadlink.h.
4685         * modules/xstrtod (EXTRA_DIST): Add xstrtod.h.
4686         * modules/xstrtol (EXTRA_DIST): Add xstrtol.h.
4687         * modules/xstrtold (EXTRA_DIST): Add xstrtod.c xstrtod.h.
4688         * modules/yesno (EXTRA_DIST): Add yesno.h.
4689
4690 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
4691
4692         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Check for fchmod.
4693
4694         * m4/argmatch.m4: New file, from coreutils with AC_LIBSOURCES removed.
4695         * m4/dev-ino.m4, same-inode.m4: Remove.
4696
4697         * m4/_inttypes_h.m4 (gl_INTTYPES_H):
4698         * m4/acl.m4 (AC_FUNC_ACL):
4699         * m4/backupfile.m4 (gl_BACKUPFILE):
4700         * m4/c-strtod.m4 (gl_C99_STRTOLD):
4701         * m4/canon-host.m4 (gl_CANON_HOST):
4702         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME):
4703         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG):
4704         * m4/chdir-safer.m4 (gl_CHDIR_SAFER):
4705         * m4/cloexec.m4 (gl_CLOEXEC):
4706         * m4/close-stream.m4 (gl_CLOSE_STREAM):
4707         * m4/closeout.m4 (gl_CLOSEOUT):
4708         * m4/dirfd.m4 (gl_FUNC_DIRFD):
4709         * m4/dirname.m4 (gl_DIRNAME):
4710         * m4/exclude.m4 (gl_EXCLUDE):
4711         * m4/exitfail.m4 (gl_EXITFAIL):
4712         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER):
4713         * m4/file-type.m4 (gl_FILE_TYPE):
4714         * m4/filemode.m4 (gl_FILEMODE):
4715         * m4/filenamecat.m4 (gl_FILE_NAME_CONCAT):
4716         * m4/fpending.m4 (gl_FUNC_FPENDING):
4717         * m4/fprintftime.m4 (gl_FPRINTFTIME):
4718         * m4/fts.m4 (gl_FUNC_FTS):
4719         * m4/getcwd.m4 (gl_FUNC_GETCWD_NULL):
4720         * m4/getdate.m4 (gl_GETDATE):
4721         * m4/gethrxtime.m4 (gl_GETHRXTIME):
4722         * m4/getpagesize.m4 (gl_GETPAGESIZE):
4723         * m4/getpass.m4 (gl_FUNC_GETPASS):
4724         * m4/gettime.m4 (gl_GETTIME):
4725         * m4/getugroups.m4 (gl_GETUGROUPS):
4726         * m4/glob.m4 (gl_GLOB_SUBSTITUTE):
4727         * m4/group-member.m4 (gl_FUNC_GROUP_MEMBER):
4728         * m4/hard-locale.m4 (gl_HARD_LOCALE):
4729         * m4/hash.m4 (gl_HASH):
4730         * m4/idcache.m4 (gl_IDCACHE):
4731         * m4/lchmod.m4 (gl_FUNC_LCHMOD):
4732         * m4/lchown.m4 (gl_FUNC_LCHOWN):
4733         * m4/long-options.m4 (gl_LONG_OPTIONS):
4734         * m4/lstat.m4 (gl_FUNC_LSTAT):
4735         * m4/md5.m4 (gl_MD5):
4736         * m4/memcasecmp.m4 (gl_MEMCASECMP):
4737         * m4/memcoll.m4 (gl_MEMCOLL):
4738         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY):
4739         * m4/memrchr.m4 (gl_FUNC_MEMRCHR):
4740         * m4/memxor.m4 (gl_MEMXOR):
4741         * m4/mkancesdirs.m4 (gl_MKANCESDIRS):
4742         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS):
4743         * m4/modechange.m4 (gl_MODECHANGE):
4744         * m4/mountlist.m4 (gl_MOUNTLIST):
4745         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
4746         * m4/openat.m4 (gl_FUNC_OPENAT):
4747         * m4/pathmax.m4 (gl_PATHMAX):
4748         * m4/physmem.m4 (gl_PHYSMEM):
4749         * m4/posixtm.m4 (gl_POSIXTM):
4750         * m4/posixver.m4 (gl_POSIXVER):
4751         * m4/quote.m4 (gl_QUOTE):
4752         * m4/quotearg.m4 (gl_QUOTEARG):
4753         * m4/readtokens.m4 (gl_READTOKENS):
4754         * m4/readutmp.m4 (gl_READUTMP):
4755         * m4/regex.m4 (gl_REGEX):
4756         * m4/safe-read.m4 (gl_SAFE_READ):
4757         * m4/safe-write.m4 (gl_SAFE_WRITE):
4758         * m4/same.m4 (gl_SAME):
4759         * m4/save-cwd.m4 (gl_SAVE_CWD):
4760         * m4/savedir.m4 (gl_SAVEDIR):
4761         * m4/settime.m4 (gl_SETTIME):
4762         * m4/sha1.m4 (gl_SHA1):
4763         * m4/sig2str.m4 (gl_FUNC_SIG2STR):
4764         * m4/stat-macros.m4 (gl_STAT_MACROS):
4765         * m4/stat-time.m4 (gl_STAT_TIME):
4766         * m4/stdio-safer.m4 (gl_FOPEN_SAFER):
4767         * m4/stdlib-safer.m4 (gl_STDLIB_SAFER):
4768         * m4/strdup.m4 (gl_FUNC_STRDUP):
4769         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME):
4770         * m4/strndup.m4 (gl_FUNC_STRNDUP):
4771         * m4/strnlen.m4 (gl_FUNC_STRNLEN):
4772         * m4/strverscmp.m4 (gl_FUNC_STRVERSCMP):
4773         * m4/time_r.m4 (gl_TIME_R):
4774         * m4/timespec.m4 (gl_TIMESPEC):
4775         * m4/unistd-safer.m4 (gl_UNISTD_SAFER):
4776         * m4/unlinkdir.m4 (gl_UNLINKDIR):
4777         * m4/unlocked-io.m4 (gl_FUNC_GLIBC_UNLOCKED_IO):
4778         * m4/userspec.m4 (gl_USERSPEC):
4779         * m4/utimecmp.m4 (gl_UTIMECMP):
4780         * m4/utimens.m4 (gl_UTIMENS):
4781         * m4/xalloc.m4 (gl_XALLOC):
4782         * m4/xgetcwd.m4 (gl_XGETCWD):
4783         * m4/xnanosleep.m4 (gl_XNANOSLEEP):
4784         * m4/xreadlink.m4 (gl_XREADLINK):
4785         * m4/xstrtod.m4 (gl_XSTRTOD):
4786         * m4/yesno.m4 (gl_YESNO):
4787         Don't use AC_LIBSOURCES; instead, rely on the files in ../modules/
4788         to get the necessary .h files and whatnot.
4789
4790 2006-08-21  Mark D. Baushke  <mdb@gnu.org>
4791             Bruno Haible  <bruno@clisp.org>
4792
4793         * gnulib-tool (func_verify_module): Work around Sun's non-POSIX 1003.2
4794         /bin/sh understanding of '!' conditional negation.
4795
4796 2006-08-21  Jim Meyering  <jim@meyering.net>
4797
4798         * modules/openat (Depends-on): Really alphabetize.
4799
4800         * modules/acl (Depends-on): Add error and quote.
4801
4802         * check-module (find_included_lib_files): Add at-func.c to the
4803         ok-to-include-more-than-once white list.
4804
4805         * modules/openat (Depends-on): Add lstat.  Alphabetize.
4806
4807 2006-08-21  Bruno Haible  <bruno@clisp.org>
4808
4809         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
4810         Emit a pkgdata_DATA variable only if some snippets add contents to it.
4811         Reported by Martin Lambers <marlam@marlam.de>.
4812
4813 2006-08-21  Bruno Haible  <bruno@clisp.org>
4814
4815         * gnulib-tool (func_emit_lib_Makefile_am): If the snippets already
4816         specify an installation location, don't emit a noinst_LIBRARIES or
4817         noinst_LTLIBRARIES assignment.
4818
4819 2006-08-21  Bruno Haible  <bruno@clisp.org>
4820
4821         BeOS portability.
4822         * modules/mbchar (Include): Don't test HAVE_WCTYPE_H any more, since
4823         BeOS has mbrtowc() but no <wctype.h>.
4824
4825 2006-08-21  Bruno Haible  <bruno@clisp.org>
4826
4827         BeOS portability.
4828         * m4/mbchar.m4 (gl_MBCHAR): Compile mbchar.c also if <wctype.h> doesn't
4829         exist.
4830
4831 2006-08-21  Bruno Haible  <bruno@clisp.org>
4832
4833         BeOS portability.
4834         * lib/mbchar.h: Include <wctype.h> only if it exists.
4835
4836 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
4837
4838         Remove files that are no longer needed by their respective modules.
4839         * m4/obstack.m4: Remove.
4840         * m4/strerror_r.m4: Remove.
4841         * m4/uint32_t.m4: Remove.
4842         * m4/uintptr_t.m4: Remove.
4843         * m4/ullong_max.m4: Remove.
4844         * m4/xstrtoimax.m4: Remove.
4845         * m4/xstrtoumax.m4: Remove.
4846
4847         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Do not require
4848         gl_AC_TYPE_UINTMAX_T, gl_STRUCT_DEV_INO, or gl_SAME_INODE, since gnulib
4849         dependencies now capture this.
4850
4851         * m4/cycle-check.m4 (gl_CYCLE_CHECK):
4852         Do not use AC_LIBSOURCES, since gnulib modules now do this.
4853         * m4/fsusage.m4 (gl_FSUSAGE): Likewise.
4854         * m4/human.m4 (gl_HUMAN): Likewise.
4855         * m4/inttostr.m4 (gl_INTTOSTR): Likewise.
4856         * m4/xstrtol.m4 (gl_XSTRTOL): Likewise.
4857
4858         * m4/filemode.m4 (gl_FILEMODE): Require AC_STRUCT_ST_DM_MODE.
4859
4860         * m4/filemode.m4 (gl_PREREQ_FSUSAGE_EXTRA): Do not require
4861         gl_AC_TYPE_INTMAX_T or gl_AC_TYPE_UINTMAX_T, since we now require
4862         stdint.
4863         * m4/human.m4 (gl_HUMAN): Likewise.
4864         * m4/inttostr.m4 (gl_PREREQ_INTTOSTR): Likewise.
4865         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Likewise.
4866         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Likewise.
4867         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Likewise.
4868         * m4/xstrtol (gl_XSTRTOL): Likewise.
4869
4870         * m4/gethrxtime.m4 (gl_XTIME): gl_AC_TYPE_LONG_LONG ->
4871         AC_TYPE_LONG_LONG_INT.
4872         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Likewise.
4873         * m4/strtoll.m4 (gl_FUNC_STRTOLL): Likewise.
4874         * m4/strtoull.m4 (gl_FUNC_STRTOULL): Likewise, for unsigned long.
4875         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Likewise.
4876
4877         * m4/human.m4 (gl_HUMAN): Do not require AM_STDBOOL_H since we depend
4878         on stdbool.
4879
4880         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL_H, gl_PREREQ_XSTRTOL): Remove.
4881         (gl_PREREQ_XSTRTOUL): Remove.
4882
4883         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Check for hasmntopt.
4884
4885         * m4/posixver.m4: Fix comment since head -1 now works even in POSIX
4886         mode.
4887
4888 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
4889
4890         Add and change modules to make it easier for coreutils to use
4891         gnulib-tool.
4892         * modules/backupfile (Files): Remove m4/d-ino.m4.
4893         (Depends-on): Add d-ino.
4894         * modules/cycle-check (Depends-on): Add stdint.
4895         (lib_SOURCES): Add cycle-check.h.
4896         * modules/d-ino: New module.
4897         * modules/d-type: New module.
4898         * modules/error (Files): Remove m4/strerror_r.m4.
4899         * modules/filemode (Files): Add m4/st_dm_mode.m4.
4900         * modules/fsuage (Files): Remove m4/ulonglong.m4, m4/stdint_h.m4,
4901         m4/inttypes_h.m4, m4/uintmax_t.m4.
4902         (Depends-on): Add stdint.
4903         (lib_SOURCES): Add fsusage.h.
4904         * modules/getcwd (Files): Remove d-ino.m4.
4905         (Depends-on): Add d-ino.
4906         * modules/getndelim2 (Depends-on): Add stdint.
4907         * modules/glob (Files): Remove m4/d-type.m4.
4908         (Depends-on): Add d-type.
4909         * modules/host-os: New module.
4910         * modules/human (Files):  Remove m4/ulonglong.m4, m4/stdint_h.m4,
4911         m4/inttypes_h.m4, m4/uintmax_t.m4.
4912         * Depends-on: Add stdint.
4913         (lib_SOURCES): Add human.h.
4914         * modules/inttostr (Files): Remove m4/intmax_t.m4,
4915         m4/inttostr.m4, m4/inttypes_h.m4, m4/longlong.m4, m4/stdint_h.m4,
4916         m4/uintmax_t.m4, m4/ulonglong.m4.
4917         (Depends-on): Add stdint.
4918         (EXTRA_DIST): Add inttostr.h.
4919         * modules/lchmod: New module.
4920         * modules/link-follow: New module.
4921         * modules/mkdir-p (Files): Remove lib/lchmod.h, m4/lchmod.m4.
4922         (Depends-on): Add lchmod.
4923         * modules/mkstemp (Files): Remove m4/ulonglong.m4,
4924         m4/stdint_h.m4, m4/inttypes_h.m4, m4/uintmax_t.m4.
4925         (Depends-on): Add stdint.
4926         * modules/obstack (Files): Remove m4/inttypes_h.m4, m4/obstack.m4,
4927         m4/stdint_h.m4, m4/uintmax_t.m4, m4/ulonglong.m4.
4928         (Depends-on): Add stdint.
4929         (configure.ac): Change gl_OBSTACK to AC_FUNC_OBSTACK.
4930         * modules/perl: New module.
4931         * modules/regex (Depends-on): Add stdint.
4932         * modules/rmdir-errno: New module.
4933         * modules/strtoimax (Files): Remove m4/stdint_h.m4, m4/inttypes_h.m4,
4934         m4/intmax_t.m4.
4935         (Depends-on): Add stdint.
4936         * modules/strtoumax (Files): Remove m4/stdint_h.m4, m4/inttypes_h.m4,
4937         m4/uintmax_t.m4.
4938         (Depends-on): Add stdint.
4939         * modules/unlink-busy: New module.
4940         * modules/utimecmp (Depends-on): Add stdint.
4941         * modules/uptime: New module.
4942         * modules/winsz-ioctl: New module.
4943         * modules/winsz-termios: New module.
4944         * modules/xnanosleep (Depends-on): Add nanosleep.
4945         * modules/ullong_max: Remove.
4946         * modules/xstrtoimax (Files): Remove m4/xstrtoimax.m4.
4947         (configure.ac): Remove gl_XSTRTOIMAX; no action needed now.
4948         * modules/xstrtol (Files): Remove m4/ulonglong.m4, m4/longlong.m4,
4949         m4/stdint_h.m4, m4/inttypes_h.m4, m4/uintmax_t.m4, m4/intmax_t.m4.
4950         (Depends-on): Add inttypes.
4951         (lib_SOURCES): Add xstrtol.h.
4952         * modules/xstrtoumax (Files): Remove m4/xstrtoumax.m4.
4953         (configure.ac): Remove gl_XSTRTOUMAX; no action needed now.
4954         * MODULES.html.sh: Move 'assert' into the assert section.
4955         Move 'dummy' into the linking section.
4956         Remove ullong_max.
4957         Add section for compatibility checks for POSIX:2001 functions,
4958         and put d-ino, d-type, link-follow, rmdir-errno, unlink-busy,
4959         winsz-ioctl, and winsz-termios into it.
4960         Add lchmod.
4961         Add top-level Misc section and put host-os, perl, and uptime
4962         into it.
4963
4964 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
4965
4966         * lib/cycle-check.h: Include <stdint.h> unconditionally, since we
4967         now assume the stdint module.  Do not include inttypes.h.
4968         * lib/fsusage.h: Likewise.
4969         * lib/getndelim2.c: Likewise.
4970         * lib/human.h: Likewise.
4971         * lib/inttostr.h: Likewise.
4972         * lib/obstack.c: Likewise.
4973         * lib/regex_internal.h: Likewise.
4974         * lib/tempname.c: Likewise.
4975         * lib/utimecmp.c: Likewise.
4976         * lib/xstrtol.h: Likewise.
4977
4978         * lib/stat_.h: Fix typo: HAVE_FUNC_LSTAT -> HAVE_LSTAT.
4979
4980         * lib/strtoimax.c: Adjust to macro name changes in Autoconf,
4981         e.g., HAVE_LONG_LONG -> HAVE_LONG_LONG_INT.
4982         * lib/xtime.h: Likewise.
4983
4984 2006-08-19  Paul Eggert  <eggert@cs.ucla.edu>
4985
4986         * modules/openat (Files): Add lib/fchmodat.c.
4987         Fixes problem reported by Jay Youngman.
4988
4989 2006-08-19  Paul Eggert  <eggert@cs.ucla.edu>
4990
4991         * lib/fchmodat.c: New file, from coreutils.  This was inadvertently
4992         omitted in the 2006-08-17 update.  Problem reported by Jay Youngman.
4993
4994 2006-08-18  Paul Eggert  <eggert@cs.ucla.edu>
4995             Bruno Haible  <bruno@clisp.org>
4996
4997         * m4/bison-i18n.m4 (BISON_I18N): Also handle the case where yacc exists
4998         and is a script that invokes bison. Tighten the code. Add comments.
4999
5000 2006-08-18  Jim Meyering  <jim@meyering.net>
5001
5002         * m4/gethrxtime.m4 (gl_PREREQ_GETHRXTIME): Also check for
5003         CLOCK_REALTIME, since gethrxtime may revert to using clock_gettime via
5004         gettime.c.  Gabor Z. Papp reported that gethrxtime-using programs
5005         failed to link due to unresolved clock_gettime on a linux-2.4.x system.
5006
5007 2006-08-18  Bruno Haible  <bruno@clisp.org>
5008
5009         * modules/bison-i18n: New file.
5010         * MODULES.html.sh (Internationalization functions): Add it.
5011
5012 2006-08-18  Bruno Haible  <bruno@clisp.org>
5013
5014         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Also check for
5015         sys/statvfs.h. When getmntinfo was found, check its declaration and
5016         set either MOUNTED_GETMNTINFO or MOUNTED_GETMNTINFO2 depending on it.
5017
5018 2006-08-18  Bruno Haible  <bruno@clisp.org>
5019
5020         * m4/bison-i18n.m4: New file, from bison.
5021
5022 2006-08-18  Bruno Haible  <bruno@clisp.org>
5023
5024         * lib/mountlist.c [MOUNTED_GETMNTINFO2]: Include sys/statvfs.h.
5025         (ME_DUMMY): Treat "kernfs" as a dummy.
5026         (read_file_system_list) [MOUNTED_GETMNTINFO2]: Implement.
5027
5028 2006-08-17  Paul Eggert  <eggert@cs.ucla.edu>
5029
5030         Update from coreutils.
5031
5032         2006-08-15  Jim Meyering  <jim@meyering.net>
5033
5034         * m4/openat.m4 (gl_FUNC_OPENAT): Add at-func.c via AC_LIBSOURCES.
5035
5036         2006-01-17  Jim Meyering  <jim@meyering.net>
5037
5038         * m4/fts.m4 (gl_FUNC_FTS_CORE): Depend on gl_FUNC_OPENAT.
5039
5040         2006-01-11  Jim Meyering  <jim@meyering.net>
5041
5042         * m4/openat.m4 (gl_FUNC_OPENAT): Require and compile fchmodat.c.
5043         Check for the lchmod function.
5044
5045 2006-08-17  Paul Eggert  <eggert@cs.ucla.edu>
5046
5047         Update from coreutils.
5048
5049         * lib/__fpending.h: Add copyright notice.
5050         * lib/fprintftime.h: Likewise.
5051         * lib/savedir.c: Use (C) in copyright notice.
5052         * lib/savedir.h: Likewise.
5053
5054         2006-08-15  Jim Meyering  <jim@meyering.net>
5055
5056         * lib/at-func.c: New file, with the logic of all emulated at-functions.
5057         * lib/openat-priv.h: Include <errno.h> and define ENOSYS,
5058         in support of the EXPECTED_ERRNO macro.
5059         * lib/openat.c (fstatat, unlinkat, fchownat): Remove function
5060         definitions.  Instead, define the appropriate symbols and include
5061         "at-func.c".
5062         * lib/mkdirat.c (mkdirat): Likewise.
5063         * lib/fchmodat.c (fchmodat): Likewise.
5064         (ENOSYS): Remove definition.
5065         * lib/openat.c: Don't include <errno.h>, now that "openat-priv.h" does
5066         it.  Don't include "unistd--.h" -- it wasn't ever used.
5067
5068         2006-01-17  Jim Meyering  <jim@meyering.net>
5069
5070         Rewrite fts.c not to change the current working directory,
5071         by using openat, fstatat, fdopendir, etc..
5072
5073         * lib/fts.c [! _LIBC]: Include "openat.h" and "unistd--.h".
5074         (HAVE_OPENAT_SUPPORT): Define.
5075         [_LIBC] (fchdir): Don't undef or define; no longer used.
5076         (FCHDIR): Define in terms of cwd_advance_fd rather than fchdir.
5077         Now, this `function' always succeeds, and consumes its file descriptor
5078         parameter -- so callers must not close such FDs.  Update callers.
5079         (diropen_fd, opendirat, cwd_advance_fd): New functions.
5080         (diropen): Add parameter, SP.  Adjust all callers.
5081         Implement using diropen_fd, rather than open.
5082         (fts_open): Initialize new member, fts_cwd_fd.
5083         Remove fts_rft-setting code.
5084         (fts_close): Close fts_cwd_fd, if necessary.
5085         (__opendir2): Define in terms of opendir or opendirat,
5086         depending on whether the FST_NOCHDIR flag is set.
5087         (fts_build): Since fts_safe_changedir consumes its FD, and since
5088         this code must do `closedir(dirp)', dup the dirfd(dirp) argument,
5089         and close the dup'd file descriptor upon failure.
5090         (fts_stat): Use fstatat(...AT_SYMLINK_NOFOLLOW) in place of lstat.
5091         (fts_safe_changedir): Tweak semantics to reflect that this function
5092         now calls cwd_advance_fd and hence consumes its FD argument.
5093         * lib/fts_.h [struct FTS] (fts_cwd_fd): New member.
5094         [struct FTS] (fts_rft): Remove now-unused member.
5095         [struct FTS] (fts_cycle.state): Improve comment.
5096
5097         * lib/openat.c (openat_needs_fchdir): New function.
5098         * lib/openat.h (openat_needs_fchdir): Declare it.
5099
5100 2006-08-16  Paul Eggert  <eggert@cs.ucla.edu>
5101
5102         * lib/memcoll.c (memcoll): Set errno = 0 in the shortcut case, too.
5103         Problem and fix reported by Pádraig Brady in
5104         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00099.html>.
5105
5106 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
5107
5108         * modules/cycle-check (configure.ac): Add gl_CYCLE_CHECK.
5109
5110 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
5111
5112         * lib/memcoll.c (memcoll): Optimize for the common case where the
5113         arguments are bytewise equal.
5114
5115 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
5116
5117         * doc/regexprops-generic.texi: Add a copyright notice.
5118
5119 2006-08-15  Bruno Haible  <bruno@clisp.org>
5120
5121         * modules/tmpdir (License): Change to LGPL.
5122
5123 2006-08-15  Bruno Haible  <bruno@clisp.org>
5124
5125         * gnulib-tool (func_all_modules, func_verify_module): COPYING is not a
5126         module.
5127
5128 2006-08-14  Simon Josefsson  <jas@extundo.com>
5129
5130         * config/srclist.txt: Add gnupload.
5131
5132 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
5133
5134         Change copyright notice from LGPL 2 to GPL 2, since that's the
5135         standard form used in the gnulib repository.
5136         * tests/test-lock.c: Likewise.
5137         * tests/test-stdint.c: Likewise.
5138         * tests/test-tls.c: Likewise.
5139
5140         * users.txt: Add bison, diffutils, libprelude, prelude-lml,
5141         prelude-manager.  User shorter URLs for GNU projects, without '?'.
5142         Add copyright notice.
5143
5144         * check-module: Add copyright notice.  Output a copyright
5145         notice if "--version" is specified.
5146         * modules/COPYING: New file.
5147         * tests/test-getaddrinfo.c: Add copyright notice.
5148         * tests/test-verify.c: Likewise.
5149
5150 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
5151
5152         Change copyright notice from LGPL 2 to GPL 2, since that's the
5153         standard form used in the gnulib repository.
5154         * lib/lock.c: LGPL -> GPL.
5155         * lib/lock.h: Likewise.
5156         * lib/strnlen1.c: Likewise.
5157         * lib/strnlen1.h: Likewise.
5158         * lib/tls.c: Likewise.
5159         * lib/tls.h: Likewise.
5160         * lib/tmpdir.c: Likewise.
5161
5162         * lib/TODO: Remove; this belongs only in coreutils.
5163
5164 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
5165
5166         Add copyright notices to long-enough files that lack them, since
5167         otherwise the files aren't clearly free.  Use the same notice that
5168         getdate.texi already uses.
5169         * doc/alloca-opt.texi: Add copyright notice.
5170         * doc/alloca.texi: Likewise.
5171         * doc/ctime.texi: Likewise.
5172         * doc/functions.texi: Likewise.
5173         * doc/gcd.texi: Likewise.
5174         * doc/gnulib-tool.texi: Likewise.
5175         * doc/inet_ntoa.texi: Likewise.
5176         * doc/visibility.texi: Likewise.
5177
5178         * doc/getdate.texi: Update FDL version from 1.1 to 1.2.
5179         * doc/quote.texi: Add copyright notice.
5180
5181         * doc/solaris-versions: Add SunOS 5.10, SunOS 1.x, SunOS 4.0, SunOS
5182         4.0.x, SunOS 4.1.1.1, SunOS 4.1.1_U1, SunOS 4.1.3B.  SunOS 4.1.3
5183         was Solaris 1.1A.  Remove space before B in Solaris 1.1.1B.
5184         Mention SunOS 5.11.  Mention that everything before SunOS 5.7
5185         is now obsolete, and give a pointer to the Sun list.
5186         Add copyright notice.
5187
5188 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
5189
5190         * config/srclistvars.sh: Add copyright notice.
5191
5192 2006-08-14  Eric Blake  <ebb9@byu.net>
5193
5194         Import the following change from libc:
5195
5196         2006-08-12  Ulrich Drepper  <drepper@redhat.com>
5197
5198         Upstream bug 2997.
5199         * lib/misc/error.c: Add space between program name and message if file
5200         name is missing.
5201
5202 2006-08-12  Karl Berry  <karl@gnu.org>
5203
5204         * config/srclist.txt (ssize_t.m4, sig_atomic_t.m4, signalblocking.m4):
5205         remove, these originate in gnulib now.
5206
5207 2006-08-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5208
5209         * doc/Makefile (standards.info standards.html standards.dvi):
5210         Also depend on make-stds.texi.
5211
5212 2006-08-11  Paul Eggert  <eggert@cs.ucla.edu>
5213
5214         * lib/pipe-safer.c (pipe_safer): Fix misspelling: HAVE_FUNC_PIPE ->
5215         HAVE_PIPE.  Fix a file descriptor leak when fd_safer fails.
5216
5217         * lib/regex_internal.c (re_string_skip_chars): Don't assume WEOF fits
5218         in wchar_t.  Problem reported by Eric Blake.
5219
5220         * lib/snprintf.c (snprintf): memcpy LEN bytes, not SIZE - 1, when
5221         LEN is smaller than SIZE.  Suggested by Bruno Haible.
5222         Also, help the compiler to keep LEN in a register.
5223
5224 2006-08-11  Eric Blake  <ebb9@byu.net>
5225
5226         * users.txt: Sort.  Add tar.
5227
5228 2006-08-11  Bruno Haible  <bruno@clisp.org>
5229
5230         * users.txt: New file.
5231
5232 2006-08-11  Bruno Haible  <bruno@clisp.org>
5233
5234         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Include <stdio.h> and <time.h>
5235         before <wchar.h>. Needed for OSF/1 and BSD/OS.
5236
5237 2006-08-10  Paul Eggert  <eggert@cs.ucla.edu>
5238
5239         * modules/snprintf (Depends-on): Remove minmax.
5240         (Maintainer): Add self and Bruno.
5241
5242 2006-08-10  Paul Eggert  <eggert@cs.ucla.edu>
5243
5244         * lib/.cppi-disable: Add snprintf.h, socket_.h.
5245         * lib/snprintf.c: Include <errno.h> and <limits.h>.
5246         (EOVERFLOW): Define if the system does not.
5247         Do not include "minmax.h"; it wasn't used.
5248         (snprintf): Don't assume size_t promotes to an unsigned type.
5249         Fix bug when generated string was too long for the buffer: the
5250         buffer's contents are supposed to be the initial prefix of the
5251         output.  Don't assume vasnprintf returns EOVERFLOW if the size
5252         exceeds INT_MAX; do the check ourselves.
5253
5254         Import the following changes from libc:
5255
5256         2006-06-02  Jakub Jelinek  <jakub@redhat.com>
5257
5258         * lib/posix/regex_internal.c (re_string_skip_chars): If no character
5259         has been converted at all, set *last_wc to WEOF.  If mbrtowc failed,
5260         set wc to the byte which couldn't be converted.
5261         (re_string_reconstruct): Don't clear valid_raw_len before calling
5262         re_string_skip_chars.  If wc is WEOF after re_string_skip_chars, set
5263         tip_context using re_string_context_at.
5264
5265         2006-05-02  Ulrich Drepper  <drepper@redhat.com>
5266
5267         * lib/posix/regex.h: g++ still cannot handled [restrict].
5268
5269         2006-04-21  Ulrich Drepper  <drepper@redhat.com>
5270
5271         * lib/posix/regex.h: Remove special handling for VMS.
5272
5273 2006-08-10  Jim Meyering  <jim@meyering.net>
5274
5275         * modules/same-inode: New module.
5276         * modules/dev-ino: New module.
5277         * modules/cycle-check: Depend on these modules, rather than simply
5278         including their .h files.
5279         (Makefile.am): Don't list cycle-check.[ch] here, now that they're
5280         required via m4/cycle-check.m4.
5281         * modules/same: Depend on new same-inode module, rather than
5282         including same-inode.h.
5283         * modules/chdir-safer: New file.
5284
5285         * modules/chown (Depends-on): Add stat-macros.
5286
5287 2006-08-10  Jim Meyering  <jim@meyering.net>
5288
5289         * m4/cycle-check.m4: New file.
5290         Require gl_STRUCT_DEV_INO and gl_SAME_INODE.
5291         * m4/dev-ino.m4, m4/same-inode.m4: New files.
5292
5293 2006-08-10  Eric Blake  <ebb9@byu.net>
5294
5295         * modules/verror (Depends-on): Remove bogus gl_VERROR that snuck
5296         in from original proposal.
5297
5298 2006-08-10  Eric Blake  <ebb9@byu.net>
5299         and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
5300
5301         * gnulib-tool (func_import): Detect unexpanded macros in gnulib
5302         namespace.
5303
5304 2006-08-10  Bruno Haible  <bruno@clisp.org>
5305
5306         * gnulib-tool (func_create_testdir): Detect unexpanded macros here
5307         as well.
5308
5309 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
5310
5311         Sync from coreutils.
5312
5313         2006-07-19  Mike Frysinger  <vapier@gentoo.org>
5314
5315         * lib/mountlist.c [ME_REMOTE]: Filter out cifs.
5316         Reported by Toralf Förster in <http://bugs.gentoo.org/141012>.
5317
5318 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
5319
5320         * modules/restrict: Remove; no longer needed now that we assume
5321         Autoconf 2.59 or later.
5322         * MODULES.html.sh: Remove 'restrict'.
5323         * modules/argp (Depends-on): Remove 'restrict'.
5324         * modules/base64 (Depends-on): Likewise.
5325         * modules/gc (Depends-on): Likewise.
5326         * modules/getaddrinfo (Depends-on): Likewise.
5327         * modules/glob (Depends-on): Likewise.
5328         * modules/inet_ntop (Depends-on): Likewise.
5329         * modules/inet_pton (Depends-on): Likewise.
5330         * modules/memxor (Depends-on): Likewise.
5331         * modules/regex (Depends-on): Likewise.
5332         * modules/strtok_r (Depends-on): Likewise.
5333         * modules/time_r (Depends-on): Likewise.
5334
5335 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
5336
5337         * m4/argp.m4 (gl_ARGP): Require AC_C_RESTRICT.
5338         * m4/gc.m4 (gl_PREREQ_GC): Likewise.
5339         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
5340         * m4/inet_ntop.m4 (gl_PREREQ_INET_NTOP): Likewise.
5341         * m4/inet_pton.m4 (gl_PREREQ_INET_PTON): Likewise.
5342         * m4/memxor.m4 (gl_MEMXOR): Likewise.
5343         * m4/restrict.m4: Remove; no longer needed.  All remaining uses of
5344         gl_C_RESTRICT replaced by AC_C_RESTRICT.
5345
5346         Merge from coreutils.
5347         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_C_RESTRICT, not
5348         gl_C_RESTRICT, now that we assume Autoconf 2.59 or later.
5349         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
5350         * m4/time_r.m4 (gl_TIME_R): Likewise.
5351
5352 2006-08-09  Karl Berry  <karl@gnu.org>
5353
5354         * config/srclist.txt: no more gettext-tools, per Bruno.
5355
5356 2006-08-08  Eric Blake  <ebb9@byu.net>
5357
5358         * modules/verror: New module.
5359         * MODULES.html.sh: Document it.
5360
5361 2006-08-08  Eric Blake  <ebb9@byu.net>
5362
5363         * lib/verror.h, lib/verror.c: New files.
5364
5365 2006-08-08  Eric Blake  <ebb9@byu.net>
5366
5367         * lib/verror.c (verror_at_line): Work around glibc bug 2997, so that
5368         verror_at_line output complies with GNU Coding Standards even when
5369         file is NULL.
5370
5371 2006-08-07  Bruno Haible  <bruno@clisp.org>
5372
5373         * lib/allocsa.h (sa_alignof) [_AIX]: Also consider 'long long' in newer
5374         versions of AIX.
5375         Reported by Ralf Wildenhues.
5376
5377 2006-08-07  Bruno Haible  <bruno@clisp.org>
5378
5379         * gnulib-tool (func_create_testdir): Wrap the set of autoconf snippets
5380         in an AC_DEFUN. Needed so that the autoconf snippets can use
5381         AC_REQUIRE.
5382
5383 2006-08-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5384
5385         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
5386         Initialize pkgdata_DATA.
5387         * modules/javaversion (Makefile.am): Add to pkgdata_DATA, rather than
5388         overriding it.
5389
5390 2006-08-06  Eric Blake  <ebb9@byu.net>
5391
5392         * lib/error.h: Fold in some upstream changes from glibc.
5393         * lib/error.c: Likewise.
5394
5395 2006-08-04  Bruno Haible  <bruno@clisp.org>
5396
5397         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
5398         Make the mostlyclean-local rule depend on mostlyclean-generic.
5399         Reported by Jim Meyering. Solution suggested by Ralf Wildenhues.
5400
5401 2006-07-31  Bruno Haible  <bruno@clisp.org>
5402
5403         * m4/localcharset.m4 (gl_LOCALCHARSET): Remove tests for <stddef.h>,
5404         <stdlib.h>, <string.h>.
5405
5406 2006-07-30  Bruno Haible  <bruno@clisp.org>
5407
5408         * modules/readlink (License): Change to LGPL.
5409
5410 2006-07-30  Bruno Haible  <bruno@clisp.org>
5411
5412         * modules/javaversion (Makefile.am): Distribute javaversion.java and
5413         javaversion.class. Also install javaversion.class in $(pkgdatadir) and
5414         set PKGDATADIR to point to it.
5415
5416 2006-07-30  Bruno Haible  <bruno@clisp.org>
5417
5418         * modules/csharpexec (configure.ac): Comment out macro invocation.
5419         * modules/javaexec (configure.ac): Likewise.
5420         * modules/javacomp-script (configure.ac): Likewise.
5421
5422         * modules/csharpcomp-script (configure.ac): Use AC_REQUIRE.
5423
5424 2006-07-30  Bruno Haible  <bruno@clisp.org>
5425
5426         * modules/clean-temp (Depends-on): Add linkedhash-list, remove
5427         linked-list.
5428
5429 2006-07-30  Bruno Haible  <bruno@clisp.org>
5430
5431         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Assume <string.h> exists.
5432
5433 2006-07-30  Bruno Haible  <bruno@clisp.org>
5434
5435         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
5436         Initialize MOSTLYCLEANFILES to core and *.stackdump, so that core dumps
5437         get removed.
5438
5439 2006-07-29  Bruno Haible  <bruno@clisp.org>
5440
5441         Make it possible for gnulib-tool to work with locally modified or
5442         augmented gnulib repositories.
5443         * gnulib-tool (func_usage): Document --local-dir option.
5444         (local_gnulib_dir): New variable.
5445         Handle --local-dir option.
5446         (func_lookup_file): New function.
5447         (func_all_modules, func_verify_module): Look also in $local_gnulib_dir.
5448         (func_get_description, func_get_filelist, func_get_description,
5449         func_get_filelist, func_get_dependencies, func_get_autoconf_snippet,
5450         func_get_automake_snippet, func_get_include_directive,
5451         func_get_license, func_get_maintainer): Use func_lookup_file.
5452         (func_import, func_create_testdir): Use func_lookup_file.
5453
5454 2006-07-29  Bruno Haible  <bruno@clisp.org>
5455
5456         * modules/setenv (Depends-on): Add unistd.
5457
5458 2006-07-29  Bruno Haible  <bruno@clisp.org>
5459
5460         * lib/setenv.c: Undo unintended modification done on 2006-02-27.
5461
5462 2006-07-29  Bruno Haible  <bruno@clisp.org>
5463
5464         * lib/localcharset.c: Assume <stddef.h>, <stdlib.h>, <string.h> exist.
5465
5466 2006-07-29  Bruno Haible  <bruno@clisp.org>
5467
5468         * gnulib-tool (import, update): If there is no Makefile.am, look at
5469         aclocal.m4, instead of bailing out.
5470
5471 2006-07-29  Bruno Haible  <bruno@clisp.org>
5472
5473         * gnulib-tool (func_usage): Revert most of the 2006-07-15 change.
5474         Categorize the options by when they are useful.
5475
5476 2006-07-29  Bruno Haible  <bruno@clisp.org>
5477
5478         * gnulib-tool (func_usage): Document option --no-libtool.
5479         Handle option --no-libtool.
5480         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am): Update
5481         for changed semantics of $libtool variable.
5482         (func_import): Likewise. If libtool is not used, show this through
5483         an option --no-libtool.
5484         (func_create_testdir): Update.
5485
5486 2006-07-29  Bruno Haible  <bruno@clisp.org>
5487
5488         * gnulib-tool (func_import): Extend error message about missing
5489         --doc-base.
5490
5491 2006-07-29  Bruno Haible  <bruno@clisp.org>
5492
5493         * gnulib-tool (func_import): Don't create the $docbase directory if
5494         there is no file to store there.
5495
5496 2006-07-29  Bruno Haible  <bruno@clisp.org>
5497
5498         * gnulib-tool (autoconf_minversion): If a --dir option is given and
5499         relevant, look for configure.ac there, not in the current directory.
5500         Also use a simple search for AC_PREREQ, not "autoconf --trace".
5501
5502 2006-07-29  Bruno Haible  <bruno@clisp.org>
5503
5504         * gnulib-tool (SORT): New variable.
5505         (func_usage): Undocument --assume-autoconf option.
5506         Remove --assume-autoconf option handling.
5507         (autoconf_minversion): Determine from the contents of configure.ac.
5508         (func_import): Remove autoconf_minversion handling.
5509         Suggested by Eric Blake.
5510
5511 2006-07-29  Bruno Haible  <bruno@clisp.org>
5512
5513         * doc/gnulib-tool.texi (gl_LIBTOOL): Mention --no-libtool option.
5514
5515 2006-07-29  Bruno Haible  <bruno@clisp.org>
5516
5517         * config/srclist.txt (*setenv.[ch]): Remove rules.
5518
5519 2006-07-28  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
5520
5521         * m4/inet_pton.m4, inet_ntop.m4: Check for netinet/in.h too.
5522
5523 2006-07-28  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
5524
5525         * lib/inet_ntop.h, inet_pton.h: Need to include netinet/in.h before
5526         arpa/inet.h.
5527
5528 2006-07-28  Simon Josefsson  <jas@extundo.com>
5529
5530         * modules/inet_ntop (Depends-on): Depend on arpa_inet.
5531         * modules/inet_pton (Depends-on): Likewise.
5532
5533 2006-07-28  Simon Josefsson  <jas@extundo.com>
5534
5535         * m4/netinet_in_h.m4: New file.
5536
5537 2006-07-28  Simon Josefsson  <jas@extundo.com>
5538
5539         * lib/inet_ntop.h, inet_pton.h: No need to guard netinet/in.h
5540         #include's.
5541
5542 2006-07-28  Simon Josefsson  <jas@extundo.com>
5543
5544         * lib/inet_ntop.h, inet_pton.h: No need to guard arpa/inet.h
5545         #include's.
5546
5547 2006-07-28  Paul Eggert  <eggert@cs.ucla.edu>
5548
5549         * lib/modechange.c (mode_compile): Numeric modes now affect setuid and
5550         setgid on directories only if they set these bits.
5551         * lib/modechange.h: Remove obsolete comment about masks.
5552
5553 2006-07-28  Eric Blake  <ebb9@byu.net>
5554
5555         * lib/regex_internal.h (struct re_dfa_t) [!_LIBC]: Avoid invalid C89
5556         macro expansion.
5557
5558 2006-07-28  Bruno Haible  <bruno@clisp.org>
5559
5560         * lib/inet_ntop.h, inet_pton.h: Use #if HAVE* instead of #ifdef HAVE*.
5561
5562 2006-07-28  Bruno Haible  <bruno@clisp.org>
5563
5564         * m4/mbchar.m4 (gl_MBCHAR): Also test for iswcntrl.
5565
5566 2006-07-28  Bruno Haible  <bruno@clisp.org>
5567
5568         * lib/mbchar.h (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit,
5569         iswgraph, iswlower, iswprint, iswpunct, iswspace, iswupper, iswxdigit):
5570         Define fallbacks.
5571         Avoids link error on FreeBSD 4.x.
5572         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
5573
5574         * lib/wcwidth.h (iswprint): Assume an ASCII compatible wide character
5575         encoding.
5576         * lib/mbswidth.c (iswcntrl): Likewise.
5577
5578 2006-07-27  Bruno Haible  <bruno@clisp.org>
5579
5580         * m4/stdint.m4 (gl_STDINT_H): Define __STDC_CONSTANT_MACROS during the
5581         test.
5582
5583 2006-07-27  Bruno Haible  <bruno@clisp.org>
5584
5585         * lib/stdint_.h (INT*_C, UINT*_C) [C++]: Define these if
5586         __STDC_CONSTANT_MACROS is defined, not if __STDC_LIMIT_MACROS is
5587         defined.
5588
5589 2006-07-26  Eric Blake  <ebb9@byu.net>
5590
5591         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Check for missing pipe.
5592
5593 2006-07-26  Eric Blake  <ebb9@byu.net>
5594
5595         * lib/mkstemp-safer.c [! HAVE_MKSTEMP]: Add prototype for platforms
5596         like mingw that lack mkstemp.
5597         * lib/pipe-safer.c (pipe_safer) [!HAVE_FUNC_PIPE]: Provide fallback to
5598         avoid compilation warning on mingw.
5599
5600 2006-07-26  Bruno Haible  <bruno@clisp.org>
5601
5602         * m4/stdint.m4 (gl_STDINT_H): Also verify the existence of the macros
5603         INT*_MIN, INT_LEAST*_MAX, INT_LEAST*_MIN, UINT_LEAST*_MAX,
5604         INT_FAST*_MIN, INTPTR_MIN.
5605
5606 2006-07-25  Bruno Haible  <bruno@clisp.org>
5607
5608         * modules/version-etc (Depends-on): Add stdarg.
5609
5610 2006-07-25  Bruno Haible  <bruno@clisp.org>
5611
5612         * m4/stdint.m4 (gl_INTEGER_TYPE_SUFFIX): Avoid 'eval' in front of
5613         complex commands.
5614
5615 2006-07-25  Bruno Haible  <bruno@clisp.org>
5616
5617         * lib/version-etc.c (version_etc_va): Use va_copy, assumed to be
5618         defined in <stdarg.h> or config.h.
5619
5620 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
5621
5622         * m4/stdio-safer.m4 (gl_FOPEN_SAFER, gl_TMPFILE_SAFER): New macros.
5623         (gl_STDIO_SAFER): Remove.
5624
5625 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
5626
5627         * MODULES.html.sh (File stream based Input/Output):
5628         Add fopen-safer, tmpfile-safer; remove stdio-safer.
5629         * modules/getusershell (Depends-on): Change stdio-safer to fopen-safer.
5630         * modules/fopen-safer, modules/tmpfile-safer: New files.
5631         * modules/stdio-safer: Remove.
5632
5633 2006-07-24  Bruno Haible  <bruno@clisp.org>
5634
5635         * modules/tmpdir: New file.
5636         * MODULES.html.sh (File system functions): Add it.
5637
5638 2006-07-24  Bruno Haible  <bruno@clisp.org>
5639
5640         * modules/javacomp (Depends-on): Add unistd, javaversion, binary-io,
5641         getline, pathname, fwriteerror, clean-temp, xvasprintf, strstr.
5642
5643 2006-07-24  Bruno Haible  <bruno@clisp.org>
5644
5645         * modules/clean-temp: New file.
5646
5647 2006-07-24  Bruno Haible  <bruno@clisp.org>
5648
5649         * m4/tmpdir.m4: New file, from GNU gettext.
5650
5651 2006-07-24  Bruno Haible  <bruno@clisp.org>
5652
5653         * lib/tmpdir.h: New file, from GNU gettext.
5654         * lib/tmpdir.c: New file, from GNU gettext.
5655
5656 2006-07-24  Bruno Haible  <bruno@clisp.org>
5657
5658         * lib/clean-temp.h: New file, from GNU gettext.
5659         * lib/clean-temp.c: New file, from GNU gettext.
5660
5661 2006-07-23  Eric Blake  <ebb9@byu.net>
5662
5663         * modules/stdio-safer (Files): Add tmpfile-safer.c.
5664         (Depends-on): Add binary-io.
5665
5666 2006-07-23  Eric Blake  <ebb9@byu.net>
5667
5668         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Add tmpfile-safer.c.
5669
5670 2006-07-23  Eric Blake  <ebb9@byu.net>
5671
5672         * lib/tmpfile-safer.c: New file.
5673         * lib/stdio-safer.h (fopen_safer): Add prototype.
5674         * lib/stdio--.h (tmpfile): Make safer.
5675
5676 2006-07-23  Bruno Haible  <bruno@clisp.org>
5677
5678         * lib/gl_anylinked_list2.h (ASYNCSAFE): New macro.
5679         (gl_linked_add_first, gl_linked_add_last, gl_linked_add_before,
5680         gl_linked_add_after, gl_linked_add_at, gl_linked_remove_node,
5681         gl_linked_remove_at): Use it.
5682
5683 2006-07-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
5684         and Simon Josefsson <jas@extundo.com>
5685
5686         * lib/getaddrinfo.h (AI_PASSIVE): Make sure it is defined.
5687
5688         * lib/getaddrinfo.c (getaddrinfo): Support AI_PASSIVE.
5689
5690 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
5691
5692         * modules/close-stream: New file.
5693         * modules/closeout (Description): Make it clear that it exits
5694         with a diagnostic on error.
5695         (Depends-on): Add close-stream.  Remove fpending, stdbool.
5696         * MODULES.html.sh (File stream based Input/Output): Add close-stream.
5697
5698 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
5699
5700         * m4/close-stream.m4: New file.
5701
5702 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
5703
5704         * lib/close-stream.c, lib/close-stream.h: New files.
5705
5706 2006-07-22  Bruno Haible  <bruno@clisp.org>
5707
5708         Merge from GNU gettext 0.15.
5709
5710         2006-05-01  Bruno Haible  <bruno@clisp.org>
5711
5712                 * build-aux/javacomp.sh.in: Update for changed javacomp.m4.
5713
5714         2006-07-22  Bruno Haible  <bruno@clisp.org>
5715
5716                 * modules/javaversion: New file.
5717                 * MODULES.html.sh (Java): Add javaversion.
5718
5719         2006-03-12  Bruno Haible  <bruno@clisp.org>
5720
5721                 * build-aux/javaexec.sh.in: Update for changed javaexec.m4.
5722
5723         2005-12-04  Bruno Haible  <bruno@clisp.org>
5724
5725                 * build-aux/csharpexec.sh.in: Add support for 'clix' launcher
5726                 (untested).
5727
5728         2006-06-21  Bruno Haible  <bruno@clisp.org>
5729
5730                 Avoid warnings from recent versions of mcs.
5731                 * build-aux/csharpcomp.sh.in (options_mcs): Don't use options
5732                 -o, -L, -r any more. Use options documented since mcs-1.0
5733                 instead. Similarly for -g.
5734
5735         2005-12-04  Bruno Haible  <bruno@clisp.org>
5736
5737                 * build-aux/csharpcomp.sh.in: Suffix for resources is
5738                 .resources, not .resource.
5739
5740         2005-07-09  Bruno Haible  <bruno@clisp.org>
5741
5742                 * build-aux/csharpcomp.sh.in (options_csc): For -l option,
5743                 add a .dll suffix.
5744                 Reported by Mark Junker <mjscod@gmx.de>.
5745
5746         2006-07-22  Bruno Haible  <bruno@clisp.org>
5747
5748                 * modules/gettext: Upgrade to gettext-0.15.
5749                 (Files): Remove m4/isc-posix.m4. Add m4/lock.m4,
5750                 m4/visibility.m4.
5751                 Replace m4/inttypes.m4 with m4/inttypes-h.m4.
5752
5753 2006-07-22  Bruno Haible  <bruno@clisp.org>
5754
5755         Merge from GNU gettext 0.15.
5756
5757         2006-03-25  Bruno Haible  <bruno@clisp.org>
5758
5759                 * lib-link.m4 (AC_LIB_LINKFLAGS_FROM_LIBS): New macro.
5760
5761         2006-07-21  Bruno Haible  <bruno@clisp.org>
5762
5763                 * javacomp.m4 (gt_JAVACOMP): Convert target_version "null" to
5764                 "1.1".
5765
5766         2006-05-09  Bruno Haible  <bruno@clisp.org>
5767
5768                 * javacomp.m4 (gt_JAVACOMP): On Cygwin, set
5769                 CLASSPATH_SEPARATOR to a semicolon. Use CLASSPATH_SEPARATOR
5770                 for the conftestver execution.
5771
5772         2006-05-01  Bruno Haible  <bruno@clisp.org>
5773
5774                 * javacomp.m4 (gt_JAVACOMP): Accept a source-version and an
5775                 optional target-version argument. Verify that the compiler
5776                 groks source of the specified source-version, or add -source
5777                 option as necessary. Verify that the compiler produces
5778                 bytecode in the specified target-version, or add -target and
5779                 -source options as necessary. Make the result of the test
5780                 available as variable CONF_JAVAC. Also log error output in
5781                 config.log.
5782
5783         2006-03-11  Bruno Haible  <bruno@clisp.org>
5784
5785                 * javacomp.m4 (gt_JAVACOMP): Treat gcj-4.x like gcj-3.x.
5786
5787         2006-05-09  Bruno Haible  <bruno@clisp.org>
5788
5789                 * javaexec.m4 (gt_JAVAEXEC): On Cygwin, set
5790                 CLASSPATH_SEPARATOR to a semicolon.
5791
5792         2006-03-12  Bruno Haible  <bruno@clisp.org>
5793
5794                 * javaexec.m4 (gt_JAVAEXEC): Make the result of the test
5795                 available as variable CONF_JAVA, for subsequent autoconf
5796                 tests. Also log error output in config.log.
5797
5798         2006-07-19  Bruno Haible  <bruno@clisp.org>
5799
5800                 * getline.m4 (AM_FUNC_GETLINE): When cross-compiling, assume
5801                 that getline works on glibc2 systems. Needed to avoid trouble
5802                 in relocatable.c.
5803                 Reported by Nils Magnus Larsgard <nmlarsgaard@atmel.no>.
5804
5805         2005-12-04  Bruno Haible  <bruno@clisp.org>
5806
5807                 * csharpexec.m4 (gt_CSHARPEXEC): Add support for 'clix'
5808                 launcher (untested).
5809
5810         2005-12-04  Bruno Haible  <bruno@clisp.org>
5811
5812                 * csharpcomp.m4 (gt_CSHARPCOMP): Also set CSHARPCOMPFLAGS.
5813
5814         2006-07-22  Bruno Haible  <bruno@clisp.org>
5815
5816                 * gettext.m4: Update from GNU gettext-0.15.
5817                 * nls.m4: Likewise.
5818                 * po.m4: Likewise.
5819                 * inttypes-pri.m4: Likewise.
5820                 * inttypes-h.m4: Renamed from inttypes.m4.
5821                 (gl_HEADER_INTTYPES_H): Renamed from gt_HEADER_INTTYPES_H.
5822
5823 2006-07-22  Bruno Haible  <bruno@clisp.org>
5824
5825         Merge from GNU gettext 0.15.
5826
5827         2005-07-05  Bruno Haible  <bruno@clisp.org>
5828
5829                 * printf-args.c (printf_fetchargs): Work around broken
5830                 definition of wint_t on mingw.
5831
5832         2005-02-12  Bruno Haible  <bruno@clisp.org>
5833
5834                 * xallocsa.h: Add extern "C" for C++.
5835
5836         2006-05-17  Bruno Haible  <bruno@clisp.org>
5837
5838                 Cygwin portability.
5839                 * progreloc.c (WIN32_NATIVE): Renamed from WIN32.
5840
5841         2006-04-30  Bruno Haible  <bruno@clisp.org>
5842
5843                 * progreloc.c: Include <mach-o/dyld.h> if available.
5844                 (find_executable): Use _NSGetExecutablePath when possible.
5845
5846         2006-05-06  Charles Wilson  <cygwin@cwilson.fastmail.fm>
5847
5848                 * progreloc.c (maybe_executable) [CYGWIN]: Use the access()
5849                 function.
5850
5851         2005-12-29  Bruno Haible  <bruno@clisp.org>
5852
5853                 * progreloc.c (set_program_name_and_installdir): Fix
5854                 compilation error.
5855
5856         2005-12-04  Bruno Haible  <bruno@clisp.org>
5857
5858                 Cygwin portability.
5859                 * progreloc.c: Include <windows.h> also on Cygwin.
5860                 (find_executable): Add support for Cygwin.
5861                 (set_program_name_and_installdir): Handle also platforms with
5862                 nonempty EXEEXT.
5863
5864         2006-07-11  Bruno Haible  <bruno@clisp.org>
5865
5866                 * javacomp.c: Fix a comment.
5867                 Reported by Jim Meyering.
5868
5869         2006-04-30  Bruno Haible  <bruno@clisp.org>
5870
5871                 * javacomp.h (compile_java_class): Add source_version,
5872                 target_version arguments.
5873                 * javacomp.c: Rewritten to choose only a compiler that
5874                 respects the specified source_version and target_version.
5875
5876         2006-06-27  Bruno Haible  <bruno@clisp.org>
5877
5878                 Assume correct S_ISDIR macro.
5879                 * mkdtemp.c: Remove test of STAT_MACROS_BROKEN.
5880
5881         2006-07-22  Bruno Haible  <bruno@clisp.org>
5882
5883                 * javaversion.h: New file, from GNU gettext.
5884                 * javaversion.c: New file, from GNU gettext.
5885                 * javaversion.java: New file, from GNU gettext.
5886                 * javaversion.class: New file, from GNU gettext.
5887
5888         2006-05-17  Bruno Haible  <bruno@clisp.org>
5889
5890                 Cygwin portability.
5891                 * javaexec.c (execute_java_class): Test for jview program
5892                 also on Cygwin.
5893
5894         2006-04-09  Bruno Haible  <bruno@clisp.org>
5895
5896                 * fatal-signal.c: Don't include string.h.
5897                 (at_fatal_signal): Use a copying loop instead of memcpy.
5898
5899         2005-12-04  Bruno Haible  <bruno@clisp.org>
5900
5901                 * csharpexec.c: Add support for 'clix' launcher (untested).
5902                 (execute_csharp_using_sscli): New function.
5903                 (execute_csharp_program): Call it.
5904
5905         2006-06-21  Bruno Haible  <bruno@clisp.org>
5906
5907                 Avoid warnings from recent versions of mcs.
5908                 * csharpcomp.c (compile_csharp_using_mono): Don't use options
5909                 -o, -L, -r any more. Use options documented since mcs-1.0
5910                 instead. Similarly for -g.
5911
5912         2005-07-09  Bruno Haible  <bruno@clisp.org>
5913
5914                 * csharpcomp.c (compile_csharp_using_sscli): For -l option,
5915                 add a .dll suffix.
5916                 Reported by Mark Junker <mjscod@gmx.de>.
5917
5918         2006-06-17  Bruno Haible  <bruno@clisp.org>
5919
5920                 * config.charset: Update for NetBSD 3.0.
5921
5922         2006-05-17  Bruno Haible  <bruno@clisp.org>
5923
5924                 Cygwin portability.
5925                 * localcharset.c (WIN32_NATIVE): Renamed from WIN32.
5926
5927         2006-05-16  Bruno Haible  <bruno@clisp.org>
5928
5929                 * localcharset.c [CYGWIN]: Include <windows.h>.
5930                 (get_charset_aliases): For Cygwin, return the same CPxxx
5931                 aliases list as under WIN32.
5932                 (locale_charset) [CYGWIN]: Try to retrieve the encoding from
5933                 the environment variables. Fall back to GetACP().
5934
5935         2006-04-05  Bruno Haible  <bruno@clisp.org>
5936
5937                 * config.charset: Update Juan Manuel Guerrero's address.
5938
5939         2005-02-12  Bruno Haible  <bruno@clisp.org>
5940
5941                 * allocsa.h: Add extern "C" for C++.
5942
5943         2005-02-10  Bruno Haible  <bruno@clisp.org>
5944
5945                 * allocsa.h (sa_alignof): Define differently with AIX xlc, to
5946                 avoid a bug of this compiler on AIX 3.2.5 dealing with enums.
5947
5948         2006-07-22  Bruno Haible  <bruno@clisp.org>
5949
5950                 * gettext.h: Update to GNU gettext-0.15.
5951
5952 2006-07-22  Bruno Haible  <bruno@clisp.org>
5953
5954         * config/srclist.txt: Resync printf-args.c, vasnprintf.c,
5955         localcharset.c, mkdtemp.c, config.rpath, lib-ld.m4, lib-link.m4,
5956         lib-prefix.m4, longdouble.m4, ssize_t.m4.
5957
5958 2006-07-21  Eric Blake  <ebb9@byu.net>
5959
5960         * modules/stdlib-safer: New file.
5961         * MODULES.html.sh (File stream based Input/Output): Add
5962         stdlib-safer.
5963
5964 2006-07-21  Eric Blake  <ebb9@byu.net>
5965
5966         * lib/stdlib-safer.h: New file from coreutils, required by
5967         stdlib--.h.
5968
5969 2006-07-20  Paul Eggert  <eggert@cs.ucla.edu>
5970
5971         * gnulib-tool (func_usage): Document --assume-autoconf='latest-stable'.
5972
5973 2006-07-20  Bruno Haible  <bruno@clisp.org>
5974
5975         * gnulib-tool: Recognize new option --assume-autoconf.
5976         (autoconf_minversion): New variable.
5977         (func_get_filelist): Use it to decide whether to add onceonly_2_57.m4.
5978
5979 2006-07-20  Bruno Haible  <bruno@clisp.org>
5980
5981         * MODULES.html.sh (func_all_modules): Add a missing func_begin_table.
5982
5983 2006-07-19  Derek R. Price  <derek@ximbiot.com>
5984
5985         * lib/getaddrinfo.h: Don't define unimplemented AI_* flags.
5986         Reindent and repaginate.
5987
5988 2006-07-19  Derek Price  <derek@ximbiot.com>
5989
5990         * doc/gnulib.texi (Libtool and Windows):  Eliminate passive voice.
5991         Correct grammar.
5992
5993 2006-07-17  Bruno Haible  <bruno@clisp.org>
5994
5995         * modules/list: New file.
5996         * modules/array-list: New file.
5997         * modules/carray-list, modules/carray-list-tests: New files.
5998         * modules/linked-list, modules/linked-list-tests: New files.
5999         * modules/avltree-list, modules/avltree-list-tests: New files.
6000         * modules/rbtree-list, modules/rbtree-list-tests: New files.
6001         * modules/linkedhash-list, modules/linkedhash-list-tests: New files.
6002         * modules/avltreehash-list, modules/avltreehash-list-tests: New files.
6003         * modules/rbtreehash-list, modules/rbtreehash-list-tests: New files.
6004         * modules/oset: New file.
6005         * modules/array-oset: New file.
6006         * modules/avltree-oset, modules/avltree-oset-tests: New files.
6007         * modules/rbtree-oset, modules/rbtree-oset-tests: New files.
6008         * tests/test-carray_list.c: New file.
6009         * tests/test-linked_list.c: New file.
6010         * tests/test-avltree_list.c: New file.
6011         * tests/test-rbtree_list.c: New file.
6012         * tests/test-linkedhash_list.c: New file.
6013         * tests/test-avltreehash_list.c: New file.
6014         * tests/test-rbtreehash_list.c: New file.
6015         * tests/test-avltree_oset.c: New file.
6016         * tests/test-rbtree_oset.c: New file.
6017         * MODULES.html.sh (Container data structures): New section.
6018
6019 2006-07-17  Bruno Haible  <bruno@clisp.org>
6020
6021         * m4/gl_list.m4: New file.
6022
6023 2006-07-17  Bruno Haible  <bruno@clisp.org>
6024
6025         * lib/gl_list.h: New file.
6026         * lib/gl_list.c: New file.
6027         * lib/gl_array_list.h: New file.
6028         * lib/gl_array_list.c: New file.
6029         * lib/gl_carray_list.h: New file.
6030         * lib/gl_carray_list.c: New file.
6031         * lib/gl_linked_list.h: New file.
6032         * lib/gl_linked_list.c: New file.
6033         * lib/gl_anylinked_list1.h: New file.
6034         * lib/gl_anylinked_list2.h: New file.
6035         * lib/gl_avltree_list.h: New file.
6036         * lib/gl_avltree_list.c: New file.
6037         * lib/gl_anyavltree_list1.h: New file.
6038         * lib/gl_anyavltree_list2.h: New file.
6039         * lib/gl_rbtree_list.h: New file.
6040         * lib/gl_rbtree_list.c: New file.
6041         * lib/gl_anyrbtree_list1.h: New file.
6042         * lib/gl_anyrbtree_list2.h: New file.
6043         * lib/gl_anytree_list1.h: New file.
6044         * lib/gl_anytree_list2.h: New file.
6045         * lib/gl_linkedhash_list.h: New file.
6046         * lib/gl_linkedhash_list.c: New file.
6047         * lib/gl_anyhash_list1.h: New file.
6048         * lib/gl_anyhash_list2.h: New file.
6049         * lib/gl_avltreehash_list.h: New file.
6050         * lib/gl_avltreehash_list.c: New file.
6051         * lib/gl_rbtreehash_list.h: New file.
6052         * lib/gl_rbtreehash_list.c: New file.
6053         * lib/gl_anytreehash_list1.h: New file.
6054         * lib/gl_anytreehash_list2.h: New file.
6055
6056         * lib/gl_oset.h: New file.
6057         * lib/gl_oset.c: New file.
6058         * lib/gl_array_oset.h: New file.
6059         * lib/gl_array_oset.c: New file.
6060         * lib/gl_avltree_oset.h: New file.
6061         * lib/gl_avltree_oset.c: New file.
6062         * lib/gl_rbtree_oset.h: New file.
6063         * lib/gl_rbtree_oset.c: New file.
6064         * lib/gl_anytree_oset.h: New file.
6065
6066 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
6067
6068         * m4/mkancesdirs.m4: New file.
6069         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Mention dirchownmod.c,
6070         dirchownmod.h.  Don't require AC_FUNC_ALLOCA, gl_AFS, gl_CHDIR_SAFER;
6071         no longer needed.  Require gl_FUNC_LCHOWN, since dirchownmod.c needs
6072         it.
6073
6074 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
6075
6076         * lib/dirchownmod.c, lib/dirchownmod.h, lib/mkancesdirs.c:
6077         * lib/mkancesdirs.h: New files.
6078         * lib/mkdir-p.c: Don't include alloca.h, stdio.h, sys/types.h,
6079         unistd.h, string.h, chdir-safer.h, dirname.h, lchmod.h, lchown.h,
6080         save-cwd.h.  Instead, include dirchownmod.h and mkancesdirs.h.
6081         (make_dir_parents): New args MAKE_ANCESTOR, OPTIONS, ANNOUNCE,
6082         MODE_BITS.  Remove options VERBOSE_FMT_STRING, CWD_ERRNO.  All
6083         callers changed.  Revamp internals significantly, by not
6084         attempting to create directories that are temporarily more
6085         permissive than the final results.  Do not attempt to use
6086         save_cwd/restore_cwd; it isn't worth it for mkdir and install.
6087         This removes some race conditions, fixes some bugs, and simplifies
6088         things.  Use new dirchownmod function to do owner and mode changes.
6089         * lib/mkdir-p.h: Likewise.
6090         * lib/modechange.c (octal_to_mode): New function.
6091         (struct mode_change): New member mentioned.
6092         (make_node_op_equals): New arg mentioned.  All callers changed.
6093         (mode_compile): Keep track of which mode bits the user has explicitly
6094         mentioned.
6095         (mode_adjust): New arg DIR, so that we implement the X op correctly.
6096         New arg PMODE_BITS, to keep track of which mode bits the user
6097         mentioned; it treats S_ISUID and S_ISGID speciall.
6098         All callers changed.
6099         * lib/modechange.h: Likewise.
6100
6101 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
6102
6103         * MODULES.html.sh: Add mkancestors.
6104         * modules/mkancesdirs: New module.
6105         * modules/mkdir-p (Files): Remove lib/chdir-safer.c, lib/chdir-safer.h,
6106         lib/same-inode.h, m4/afs.m4, m4/chdir-safer.m4.
6107         The chdir-safer and afs files are now orphans; I'll remove them
6108         unless someone speaks up.
6109         Add lib/dirchownmod.c, lib/dirchownmod.h.
6110         (Depends-on): Remove alloca, chown, save-cwd, dirname.
6111         Add lchown, mkancesdirs.
6112         (Maintainer): Add self.
6113
6114 2006-07-15  Karl Berry  <karl@gnu.org>
6115
6116         * gnulib-tool: help message wording/arrangement.
6117
6118 2006-07-14  Simon Josefsson  <jas@extundo.com>
6119
6120         * doc/gnulib.texi (Libtool and Windows): New section.
6121
6122 2006-07-12  Simon Josefsson  <jas@extundo.com>
6123
6124         * modules/gendocs (License): Fix license, approved by Karl.
6125
6126 2006-07-12  Eric Blake  <ebb9@byu.net>
6127
6128         * MODULES.html.sh: Add gendocs.
6129
6130 2006-07-11  Eric Blake  <ebb9@byu.net>
6131
6132         * modules/fdl: New module, to install doc/fdl.texi.
6133         * MODULES.html.sh: Add new section for documentation modules.
6134         * gnulib-tool: Avoid space-tab.
6135         (--doc-base): New option, to manage files from doc.
6136
6137 2006-07-11  Eric Blake  <ebb9@byu.net>
6138
6139         * m4/absolute-header.m4: Fix comments to match recent change.
6140
6141 2006-07-11  Eric Blake  <ebb9@byu.net>
6142
6143         * gnulib-tool: List --doc-base before --tests-base.
6144
6145 2006-07-11  Derek R. Price  <derek@ximbiot.com>
6146
6147         * lib/glob.c: s/NAMLEN/_D_EXACT_NAMLEN/.
6148
6149 2006-07-11  Bruno Haible  <bruno@clisp.org>
6150
6151         * README: Mention where to put documentation.
6152
6153 2006-07-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6154
6155         * doc/functions.texi, gnulib-tool.texi, gnulib.texi: Fix some typos.
6156
6157 2006-07-10  Paul Eggert  <eggert@cs.ucla.edu>
6158
6159         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Like today's change
6160         to stdint.m4.
6161
6162 2006-07-10  Paul Eggert  <eggert@cs.ucla.edu>
6163
6164         * m4/stdint.m4 (gl_STDINT_H): Like yesterday's change to
6165         absolute-header.m4.  Also, set ABSOLUTE_STDINT_H to a string
6166         "no/such/file/stdint.h" when there is no such file, so that
6167         the resulting C code can be parsed by dodgy compilers.
6168         Problems reported by Bob Proulx.
6169
6170 2006-07-10  Derek R. Price  <derek@ximbiot.com>
6171
6172         * lib/backupfile.c, dirfd.h, fts.c, getcwd.c, glob.c, glob_.h:
6173         Ignore the obsolescent !HAVE_DIRENT_H case.  Consolidate NAMLEN
6174         macros into the GNU _D_EXACT_NAMLEN.
6175         * lib/savedir.c:  Likewise.
6176         (savedirstream): Use _D_EXACT_NAMLEN in preference to strlen.
6177
6178 2006-07-10  Derek R. Price  <derek@ximbiot.com>
6179         and Paul Eggert  <eggert@cs.ucla.edu>
6180
6181         * m4/backupfile.m4, d-ino.m4, d-type.m4, dirfd.m4, fts.m4, getcwd.m4:
6182         * m4/savedir.m4:
6183         Ignore the obsolescent !HAVE_DIRENT_H case.  Consolidate NAMLEN
6184         macros into the GNU _D_EXACT_NAMLEN.
6185
6186 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
6187
6188         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Use "" rather than <>
6189         around the absolute name, to work around a problem with the HP-UX
6190         11.23 native C compiler, reported by Bob Proulx.
6191
6192 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
6193
6194         * doc/maintain.texi, make-stds.texi: Sync from
6195         <http://savannah.gnu.org/projects/gnustandards>.
6196
6197 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
6198
6199         * build-aux/depcomp, build-aux/install-sh: Sync from Automake.
6200
6201 2006-07-09  Jim Meyering  <jim@meyering.net>
6202
6203         * m4/glob.m4: Remove a doubled word in a comment.
6204
6205 2006-07-09  Jim Meyering  <jim@meyering.net>
6206
6207         * lib/argp-pv.c: Remove a doubled word in a comment.
6208         * lib/check-version.c (check_version): Likewise.
6209         * lib/javacomp.c (compile_java_class): Likewise.
6210
6211 2006-07-08  Paul Eggert  <eggert@cs.ucla.edu>
6212
6213         * gnulib-tool (func_get_filelist): Don't echo m4/onceonly_2_57.m4,
6214         for the benefit of people using Autoconf 2.60.  If you want to
6215         support older Autoconf versions you can copy m4/onceonly_2_57.m4
6216         (or m4/onceonly.m4, if pre-2.57) manually.
6217
6218 2006-07-08  Jim Meyering  <jim@meyering.net>
6219
6220         * m4/link-follow.m4: Remove one of two adjacent "whether"s in a
6221         comment.
6222         * m4/getopt.m4: Remove one of two adjacent "your"s in a comment.
6223         * m4/regex.m4 (gl_REGEX): Remove one of two adjacent "the"s in a
6224         comment.
6225
6226 2006-07-08  Jim Meyering  <jim@meyering.net>
6227
6228         * lib/getndelim2.h (getndelim2): Remove doubled "after" in comment.
6229
6230 2006-07-07  Simon Josefsson  <jas@extundo.com>
6231
6232         * tests/test-crc.c: Change expected crc value, the test vector
6233         were probably computed using the old broken crc.c?
6234
6235 2006-07-06  Simon Josefsson  <jas@extundo.com>
6236
6237         * modules/sys_socket (Files): Add m4/sockpfaf.m4 (this module is
6238         now the canonical place for the M4 file).
6239
6240         * modules/getaddrinfo (Files): Remove m4/sockpfaf.m4, we get it
6241         from the sys_socket dependency now.
6242
6243         * modules/inet_pton (Files): Ditto.
6244
6245         * modules/inet_ntop (Files): Ditto.
6246
6247 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
6248
6249         * modules/getusershell (configure.ac): Use gl_FUNC_GETUSERSHELL,
6250         not gl_PREREQ_GETUSERSHELL.
6251
6252 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6253
6254         * m4/_inttypes_h.m4 (gl_INTTYPES_H): Use AC_CHECK_DECLS_ONCE
6255         with only one argument, for Autoconf 2.60.
6256         * m4/fileblocks.m4 (gl_PREREQ_FILEBLOCKS): AC_CHECK_DECLS_ONCE may
6257         expand to nothing, so add a shell command to avoid syntax error.
6258         * m4/getpass.m4 (gl_PREREQ_GETPASS): Likewise.
6259
6260 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6261
6262         * lib/strtod.c (strtod): cast the argument of tolower to unsigned char.
6263
6264 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
6265
6266         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Don't check for getenv decl;
6267         no longer needed.  Check for isblank decl.
6268         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Don't check for getenv decl.
6269         * m4/regex.m4 (gl_PREREQ_REGEX): Dheck for isblank decl instead
6270         of existence.
6271
6272 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
6273
6274         * lib/getloadavg.c: Use __VMS, not VMS.
6275         * lib/getopt.c: Likewise.
6276         * lib/getpagesize.h: Likewise.
6277         * lib/glob.c: Remove most VMS cruft; it hasn't been tested for a while
6278         and probably does not work.
6279
6280 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
6281
6282         * lib/.cppi-disable: Add wcwidth.
6283         * lib/fnmatch.c (ISBLANK): Remove.  All uses changed to isblank.
6284         (isblank) [! (defined isblank || HAVE_DECL_ISBLANK)]: New macro.
6285         (ISGRAPH): Remove.  All uses changed to isgraph.
6286         (FOLD) [!defined _LIBC]: Remove special case.
6287         * lib/getdate.y (lookup_word): Remove no-longer-needed call to islower.
6288         * lib/regex_internal.h (isblank): Depend on HAVE_DECL_ISBLANK, not
6289         HAVE_ISBLANK.
6290         * lib/strftime.c (TOLOWER, TOUPPER) [!defined _LIBC]: Remove special
6291         case.
6292
6293 2006-07-06  Jim Hyslop  <jhyslop@dreampossible.ca>  (tiny change)
6294
6295         * lib/getaddrinfo.c: Changes to compile under MSVC6: changed
6296         '#if WIN32_NATIVE' to '#ifdef' & moved WSAAPI macro inside
6297         brackets.  Other minor changes to suppress some compiler
6298         warnings.
6299
6300 2006-07-06  Derek R. Price  <derek@ximbiot.com>
6301         and Paul Eggert  <eggert@cs.ucla.edu>
6302
6303         * m4/backupfile.m4 (gl_BACKUPFILE): Check for dirent.h, instead
6304         of invoking obsolescent AC_HEADER_DIRENT macro.
6305         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Likewise.
6306         * m4/d-type.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Likewise.
6307         * m4/dirfd.m4 (gl_FUNC_DIRFD): Likewise.
6308         * m4/fts.m4 (gl_FUNC_FTS_CORE): Likewise.
6309         * m4/getcwd.m4 (gl_PREREQ_GETCWD): Likewise.
6310         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
6311         * m4/savedir.m4 (gl_SAVEDIR): Likewise.
6312         * m4/readdir.m4: Remove; no longer needed.
6313
6314 2006-07-06  Derek R. Price  <derek@ximbiot.com>
6315         and Paul Eggert  <eggert@cs.ucla.edu>
6316
6317         * lib/backupfile.c [HAVE_DIRENT_H && ! HAVE_NDIR_H]:
6318         Don't worry about this obsolete case any more.
6319         (HAVE_DIR): Remove.  All uses removed; we now assume you can read
6320         directories.
6321         * lib/dirfd.h [HAVE_DIRENT_H && ! HAVE_NDIR_H]: Don't
6322         worry about this obsolete case any more.
6323         * lib/fts.c: Likewise.
6324         * lib/getcwd.c: Likewise.
6325         * lib/glob.h: Likewise.
6326         * lib/savedir.c: Likewise.
6327
6328 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
6329
6330         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Use AC_CHECK_DECLS_ONCE
6331         rather than AC_CHECK_DECLS for strtoimax and strtoumax.
6332         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Remove; no longer
6333         needed.
6334         All uses removed.
6335         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
6336         * m4/strtoul.m4 (gl_PREREQ_STRTOUL): Likewise.
6337         * m4/exclude.m4 (gl_EXCLUDE): Don't check for isascii; no longer
6338         needed.
6339         * m4/getdate.m4 (gl_GETDATE): Likewise.
6340         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Likewise.
6341         * m4/memcasecmp.m4 (gl_MEMCASECMP): Likewise.
6342         * m4/strtod.m4 (gl_FUNC_STRTOD): Likewise.
6343         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
6344         * m4/strtoul.m4 (gl_PREREQ_STRTOUL): Likewise.
6345         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
6346         * m4/exclude.m4 (gl_EXCLUDE): Don't require AC_C_INLINE; no longer
6347         needed.
6348
6349 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
6350
6351         * lib/memcasecmp.c: Include <limits.h>.
6352         (memcasecmp): Don't assume UCHAR_MAX <= INT_MAX.
6353         * lib/strtod.c (strtod): Don't assume isspace works on negative chars.
6354         Don't assume isdigit succeeds only on '0' through '9'.
6355
6356 2006-07-05  Eric Blake  <ebb9@byu.net>
6357
6358         * modules/getaddrinfo (Depends-on): Add snprintf.
6359
6360 2006-07-05  Eric Blake  <ebb9@byu.net>
6361
6362         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Use gl_HEADER_SYS_SOCKET
6363         to avoid 'header present but could not be compiled' on cygwin.
6364
6365 2006-07-05  Eric Blake  <ebb9@byu.net>
6366
6367         * lib/getaddrinfo.h (NI_NUMERICHOST, NI_NUMERICSERV): Define if
6368         missing from netdb.h.
6369         * lib/getaddrinfo.c (includes): Include inet_ntop and snprintf.
6370
6371 2006-07-05  Derek R. Price  <derek@ximbiot.com>
6372
6373         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Don't require AC_HEADER_STDC;
6374         no longer needed.
6375         * m4/exclude.m4 (gl_EXCLUDE): Likewise.
6376         * m4/getdate.m4 (gl_GETDATE): Likewise.
6377         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Likewise.
6378         * m4/memcasecmp.m4 (gl_MEMCASECMP): Likewise.
6379         * m4/strtod.m4 (gl_FUNC_STRTOD): Likewise.
6380         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
6381         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
6382
6383 2006-07-05  Derek R. Price  <derek@ximbiot.com>
6384
6385         * lib/exclude.c (IN_CTYPE_DOMAIN, is_space): Remove; no longer needed.
6386         All uses of is_space replaced by isspace.
6387         * lib/exit.h: Don't talk about STDC_HEADERS.
6388         * lib/fnmatch.c (ISASCII): Remove; no longer needed.  All uses removed.
6389         (ISPRINT, ISDIGIT, ISALNUM, ISALPHA, ISCNTRL, ISLOWER, ISPUNCT):
6390         (ISSPACE, ISUPPER, ISXDIGIT): Remove; no longer needed.  All uses
6391         replaced by isprint etc.
6392         * lib/getdate.y (IN_CTYPE_DOMAIN, ISSPACE, ISALPHA, ISLOWER): Likewise.
6393         * lib/getusershell.c (IN_CTYPE_DOMAIN, ISSPACE): Likewise.
6394         * lib/memcasecmp.c (IN_CTYPE_DOMAIN, ISLOWER, TOUPPER): Likewise.
6395         * lib/strtod.c (IN_CTYPE_DOMAIN, ISSPACE, ISDIGIT, TOLOWER): Likewise.
6396         * lib/strtol.c (IN_CTYPE_DOMAIN): Likewise.
6397         * lib/xstrtol.c (IN_CTYPE_DOMAIN, ISSPACE): Likewise.
6398
6399 2006-07-05  Bruno Haible  <bruno@clisp.org>
6400
6401         * m4/strndup.m4 (gl_FUNC_STRNDUP): When cross-compiling, check whether
6402         the function exists, before testing against AIX.
6403         Reported by Martin Lambers <marlam@marlam.de>.
6404
6405 2006-07-04  Paul Eggert  <eggert@cs.ucla.edu>
6406
6407         * modules/cycle-check (lib_SOURCES): Add same-inode.h.
6408         From Mark D. Baushke.
6409
6410 2006-07-04  Paul Eggert  <eggert@cs.ucla.edu>
6411
6412         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Prepend three slashes
6413         to the absolute name, not just one, to bypass Sun C 5.8's
6414         "warning: #include of /usr/include/... may be non-portable".
6415
6416 2006-07-04  Eric Blake  <ebb9@byu.net>
6417
6418         * modules/dirname-tests: New test module.
6419         * tests/test-dirname.c: New file, replacing dirname.c
6420         TEST_DIRNAME section that was recently deleted.
6421
6422 2006-07-04  Bruno Haible  <bruno@clisp.org>
6423
6424         Assume ANSI C header files and <ctype.h> functions.
6425         * lib/mbswidth.c (IN_CTYPE_DOMAIN, ISPRINT, ISCNTRL): Remove macros.
6426         (mbsnwidth): Use isprint, iscntrl instead.
6427
6428 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
6429
6430         Merge from coreutils.
6431         * MODULES.html.sh: Add xstrtold.
6432         * modules/xstrtold: New file.
6433         * modules/cycle-check (Files): Add lib/same-inode.h.
6434         * modules/dirname (Files): Add m4/double-slash-root.m4.
6435         * modules/getcwd (Files): Add m4/getcwd-abort-bug.m4.
6436         * modules/mkdir-p (Files): Add lib/same-inode.h.
6437         * modules/same (Files): Add lib/same-inode.h.
6438
6439 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
6440
6441         * m4/absolute-header.m4: Renamed from full-header-path.m4.
6442         This is to keep the terminology clean; POSIX talks about
6443         "absolute pathnames", not "full pathnames", but the GNU
6444         Coding Standards say to use "path" for something else;
6445         so use "absolute" to keep both sides happy.
6446         (gl_ABSOLUTE_HEADER): Renamed from gl_FULL_HEADER_PATH.
6447         Set gl_absolute_header, not gl_full_header_path.
6448         Set gl_cv_absolute_<header>, not gl_full_path_<header>.
6449         Define ABSOLUTE_<HEADER>, not FULL_PATH_<HEADER>.
6450         All uses changed.
6451
6452         Merge from coreutils.
6453
6454         2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
6455
6456         * m4/c-strtod.m4 (gl_C_STRTOLD): Add c-strtod.c to LIBSOURCES.
6457         Require gl_USE_SYSTEM_EXTENSIONS, not gl_C_STRTOD, since we don't
6458         want to require the building of c-strtod.o.
6459         * m4/lib-check.m4 (cu_LIB_CHECK): Remove SEQ_LIBM, since seq no longer
6460         needs -lm directly.
6461         * m4/xstrtod.m4 (gl_XSTRTOLD): New macro.
6462
6463         2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
6464
6465         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Prefer binutils's
6466         --as-needed option if available.  Problem reported by Albert Chin in
6467         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00114.html>.
6468         However, use -Wl,--as-needed, not bare --as-needed, since HP-UX 11.11
6469         cc merely issues a bunch of annoying warnings for --as-needed
6470         (this problem was reported by Bob Proulx).  Also, try linking with
6471         -lm to detect a bug in binutils 2.16 (this problem was reported
6472         by Ralf Wildenhues).
6473
6474         2006-06-18  Jim Meyering  <jim@meyering.net>
6475
6476         Test for a bug that causes glibc's getcwd to suffer a failed assertion.
6477         * m4/getcwd-abort-bug.m4 (gl_FUNC_GETCWD_ABORT_BUG): New file and
6478         macro.
6479         * m4/getcwd.m4 (gl_FUNC_GETCWD): If we detect support for getcwd_null,
6480         also check for glibc-2.4's abort-inducing bug.
6481
6482         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Fix typo.
6483         Low-probability clean-up should be to use rmdir to get rid of
6484         the just-created directory, not unlink.
6485
6486         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): If ftruncate is missing, make
6487         configure fail, and request a bug report to inform us about it.
6488         Add a comment that, barring reports to the contrary, in 2007 we'll
6489         assume ftruncate is universally available.
6490
6491         2006-04-17  Paul Eggert  <eggert@cs.ucla.edu>
6492
6493         * m4/filemode.m4 (gl_FILEMODE): Check for strmode declaration.
6494
6495         2006-03-12  Jim Meyering  <jim@meyering.net>
6496
6497         * m4/chdir-safer.m4 (gl_CHDIR_SAFER): Add same-inode.h to the list.
6498         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Likewise.
6499         * m4/same.m4 (gl_SAME): Likewise.
6500         * m4/root-dev-ino.m4 (gl_ROOT_DEV_INO): Likewise.
6501
6502         2006-03-11  Eric Blake  <ebb9@byu.net>
6503
6504         * m4/double-slash-root.m4: New file, provides gl_DOUBLE_SLASH_ROOT.
6505         * m4/dirname.m4 (gl_DIRNAME): Use gl_DOUBLE_SLASH_ROOT.
6506         * m4/dos.m4 (FILE_SYSTEM_PREFIX_LEN): Move from here to dirname.h.
6507         (FILE_SYSTEM_DRIVE_PREFIX_CAN_BE_RELATIVE): New define.
6508
6509 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
6510
6511         * lib/stdint_.h: Include <sys/types.h> after @FULL_PATH_STDINT_H@, for
6512         MacOS X 10.4.6.  Don't mention <sys/int_types.h>.  Problems
6513         reported by Mark D. Baushke, one in
6514         <http://lists.gnu.org/archive/html/bug-gnulib/2006-07/msg00015.html>.
6515
6516         Merge from coreutils.
6517
6518         * lib/.cppi-disable: Add stdint_.h.
6519         * lib/.cvsignore: Add stdint.h.
6520
6521         2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
6522
6523         * lib/xstrtod.c (XSTRTOD, DOUBLE): New macros, so that we can support
6524         both double and long double versions.
6525         (XSTRTOD): Renamed from xstrtod.  Use DOUBLE internally.
6526         * lib/xstrtold.c: New file.
6527         * lib/xstrtod.h (xstrtold): New decl.
6528
6529         2006-05-22  Paul Eggert  <eggert@cs.ucla.edu>
6530
6531         * lib/filemode.c (setst): Remove.
6532         (strmode): Rewrite to avoid setst.  This makes the code shorter,
6533         (arguably) clearer, and the generated code is a bit smaller on my
6534         Debian GNU/Linux stable x86 host.
6535
6536         2006-04-17  Paul Eggert  <eggert@cs.ucla.edu>
6537
6538         * lib/filemode.c: Include "filemode.h" first, to test the interface.
6539         Assume that filemode.h includes sys/types.h and sys/stat.h.
6540         (HAVE_ST_DM_MODE): New macro, moved here from ls.c.
6541         (ftypelet): Reorder to put common cases first, for efficiency.
6542         Add 'P', 'w'.  Remove 'M', since it's now the caller's responsibility
6543         to do 'M'.
6544         (strmode): Renamed from mode_string, and now stores 12 bytes instead
6545         of 10, for compatibility with FreeBSD.  All callers changed.
6546         (filemodestring): Now stores 12 bytes instead of 10, and sets file
6547         types that can't be deduced solely from st_mode.  First arg is now a
6548         const pointer.
6549         * lib/filemode.h (HAVE_DECL_STRMODE): Include <string.h> for strmode.
6550         (strmode): Renamed from mode_string.
6551         (filemodestring): New decl.
6552         * lib/stat-macros.h: Don't undef S_ISDOOR, since it's never buggy.
6553         (S_ISDOOR): Don't bother with S_IFDOOR, since that code is never
6554         needed.
6555         (S_ISPORT, S_ISWHT): New macros, if not already defined.
6556
6557         2006-04-12  Paul Eggert  <eggert@cs.ucla.edu>
6558
6559         * lib/fsusage.c: Don't include <inttypes.h> or <stdint.h>, since
6560         fsusage.h now does that.  Include fsusage.h first, to test interface.
6561         Prefer statvfs if it works, since it's blessed by POSIX.  Attempt
6562         at most one method (the old code could have generated decls that
6563         didn't conform to C89, not that this was ever exercised).
6564         * lib/fsusage.h: Include <inttypes.h> and <stdint.h> if they exist.
6565
6566         2006-03-19  Jim Meyering  <jim@meyering.net>
6567
6568         Work even in a chroot where d_ino values for entries in "/"
6569         don't match the stat.st_ino values for the same names.
6570         * lib/getcwd.c (__getcwd): When no d_ino value matches the target inode
6571         number, iterate through all entries again, using lstat instead.
6572         Reported by Kenshi Muto in http://bugs.debian.org/355810, and by
6573         Zouhir Hafidi in https://bugzilla.redhat.com/bugzilla/190656.
6574
6575         * lib/getcwd.c (__getcwd): Clarify a comment.
6576         Use memcpy in place of a call to strcpy.
6577
6578         2006-03-12  Jim Meyering  <jim@meyering.net>
6579
6580         * lib/fts-cycle.c (leave_dir): If cycle-check's saved dev-ino pair
6581         matches that of the current directory (which we're about to chdir ".."
6582         out of), then save the dev-ino of the parent, instead.
6583
6584         * lib/same-inode.h (SAME_INODE): New file/macro.
6585         * lib/chdir-safer.c (SAME_INODE): Remove definition.
6586         Include "same-inode.h", instead.
6587         * lib/same.c: Likewise.
6588         * lib/cycle-check.h: Include "same-inode.h".
6589         (CYCLE_CHECK_REFLECT_CHDIR_UP): Define.
6590         * lib/cycle-check.c (SAME_INODE): Remove definition.
6591         * lib/root-dev-ino.h: Include "same-inode.h".
6592
6593         2006-03-11  Eric Blake  <ebb9@byu.net>
6594
6595         * lib/same.c (same_name): s/base_name/last_component/
6596         * lib/backupfile.c (check_extension, numbered_backup): Likewise.
6597         * lib/filenamecat.c (file_name_concat): Likewise.
6598
6599         2006-03-11  Eric Blake  <ebb9@byu.net>,
6600                     Paul Eggert  <eggert@cs.ucla.edu>
6601
6602         * lib/dirname.h (FILE_SYSTEM_PREFIX_LEN): Move here from dos.m4.
6603         [FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]: Don't treat 1: as a
6604         drive prefix.
6605         (IS_ABSOLUTE_FILE_NAME): Treat all drive letters as absolute on
6606         platforms like cygwin with FILE_SYSTEM_DRIVE_PREFIX_IS_ABSOLUTE.
6607         (last_component): New method.
6608         * lib/dirname.c (dir_len): Determine when drive letters need a
6609         subsequent slash.  Preserve // when it is special.
6610         (dir_name): Don't append dot when drive letter is absolute.
6611         [TEST_DIRNAME]: Move into a full-blown gnulib test.
6612         * lib/basename.c (base_name): New semantics - malloc the result.
6613         Preserve // when it is special.  Preserve relative files that look
6614         like drive letters.
6615         (base_len): Preserve // when it is special.
6616         (last_component): New method, similar to old base_name semantics.
6617         * lib/stripslash.c (strip_trailing_slashes): Use last_component, not
6618         base_name.  Strip redundant slashes from ///.
6619
6620 2006-07-03  Jim Meyering  <jim@meyering.net>
6621
6622         * lib/cycle-check.h (CYCLE_CHECK_REFLECT_CHDIR_UP): Abort if this
6623         macro is used before the first cycle_check call.
6624
6625 2006-07-03  Eric Blake  <ebb9@byu.net>
6626
6627         * modules/dirname (Depends-on): Add xstrndup.
6628
6629 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
6630
6631         * m4/stdint.m4 (gl_STDINT_H): Use more-mnemonic identifiers for
6632         test cases, so that config.log is a bit easier to follow.
6633
6634 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
6635
6636         * lib/stdint_.h (intmax_t, uintmax_t): Prefer long to long long if
6637         both are 64 bits, since this seems to be the tradition, and this
6638         prevents gcc -Wformat from warning about usages with PRIuMAX.  If
6639         we ever run into a host that prefers long long to long in this
6640         case, we'll need another configure-time test.  Problem reported by
6641         Jim Meyering.
6642
6643 2006-07-02  Eric Blake  <ebb9@byu.net>
6644
6645         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Simplify by using AC_CHECK_DECLS.
6646
6647 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
6648
6649         * modules/inttypes (Depends-on): No longer depends on stdint.
6650         * modules/stdint (Description): Say more about assumptions.
6651         Say that the fast types might differ.  Say macros are used.
6652         (Files): Remove m4/size_max.m4, m4/wchar_t.m4.  Add m4/longlong.m4.
6653         (Makefile.am): Revise list of substituted symbols to match
6654         new stdint.m4.
6655         * modules/stdint-tests (Files): Add m4/wchar_t.m4, m4/wint_t.m4.
6656         (configure.ac): Add gt_TYPE_WCHAR_T, gt_TYPE_WINT_T.
6657         * tests/test-stdint.c (verify_same_types)
6658         [! (__GNUC__ >= 2 && DO_PEDANTIC)]: Put in a decl, so that
6659         the code conforms to C99/C89.
6660         Test for WCHAR_MIN and WCHAR_MAX only if HAVE_WCHAR_T.
6661         Test for WINT_MIN and WINT_MAX only if HAVE_WINT_T.
6662
6663 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
6664
6665         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Backport from Autoconf 2.60,
6666         but fix a bug, by requiring at least 64 bits.
6667         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Likewise.
6668         * m4/longlong.m4 (gl_AC_TYPE_LONG_LONG): Now just call
6669         AC_TYPE_LONG_LONG_INT.  This macro is obsolete and will go soon.
6670         * m4/ulonglong.m4 (gl_AC_TYPE_UNSIGNED_LONG_LONG) Likewise.
6671
6672         * m4/stdint.m4 (gl_STDINT_H): Rewrite to accommodate stdint_.h
6673         changes.  Make 2.59 a prerequisite.  Check and substitute for
6674         HAVE_LONG_LONG_INT.  Rely on Autoconf to check for stdint.h and
6675         inttypes.h.  Do not use special include files; just use the
6676         defaults.  Check for sys/inttypes.h and sys/bitypes.h in the usual
6677         way now.  Remove no-longer-needed tests for HAVE_LONG_64BIT,
6678         HAVE_LONG_LONG_64BIT, int8_t, int16_t, int32_t, int64_t, uint8_t,
6679         uint16_t, uint32_t uint64_t, int_least8_t, int_least16_t,
6680         int_least32_t, int_least64_t, uint_least8_t, uint_least16_t,
6681         uint_least32_t, uint_least64_t, int_fast8_t, int_fast16_t,
6682         int_fast32_t, int_fast64_t, uint_fast8_t uint_fast16_t,
6683         uint_fast32_t, uint_fast64_t, intptr_t, uintptr_t, intmax_t,
6684         uintmax_t, INT8_MIN, INT8_MAX, UINT8_MAX, INT16_MIN, INT16_MAX,
6685         UINT16_MAX, INT32_MIN, INT32_MAX, UINT32_MAX, INT64_MIN,
6686         INT64_MAX, UINT64_MAX, INT_LEAST8_MIN, INT_LEAST8_MAX,
6687         UINT_LEAST8_MAX, INT_LEAST16_MIN, INT_LEAST16_MAX,
6688         UINT_LEAST16_MAX, INT_LEAST32_MIN, INT_LEAST32_MAX,
6689         UINT_LEAST32_MAX, INT_LEAST64_MIN, INT_LEAST64_MAX,
6690         UINT_LEAST64_MAX, INT_FAST8_MIN, INT_FAST8_MAX, UINT_FAST8_MAX,
6691         INT_FAST16_MIN, INT_FAST16_MAX, UINT_FAST16_MAX, INT_FAST32_MIN,
6692         INT_FAST32_MAX, UINT_FAST32_MAX, INT_FAST64_MIN, INT_FAST64_MAX,
6693         UINT_FAST64_MAX, INTPTR_MIN, INTPTR_MAX, UINTPTR_MAX, INTMAX_MIN,
6694         INTMAX_MAX, UINTMAX_MAX, PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN,
6695         SIG_ATOMIC_MAX, SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN,
6696         WINT_MAX.  Check for C99 conformance more strictly, by detecting
6697         bugs in glibc 2.4, Solaris 10, and OpenBSD 3.9.  On the other hand do
6698         not check for things that C99 does not require, e.g., int8_t.  If
6699         a test isn't needed unless <stdint.h> isn't working, and is
6700         unlikely to be needed for any other reason, then don't do it
6701         unless <stdint.h> isn't working.  Do not check for ptrdiff_t or
6702         size_t, since we assume C89 freestanding at least.  Do not check
6703         for sig_atomic_t, wchar_t, or wint_t, since the code now does
6704         the right thing even if the types are not defined.  Instead use:
6705         (gl_STDINT_TYPE_PROPERTIES): New macro.
6706         (gl_HEADER_STDINT_H, gl_HEADER_INTTYPES_H): Remove.  Don't bother
6707         testing whether <sys/types.h> clashes, as Autoconf does this for
6708         us now.  All uses removed.
6709         (gl_STDINT_CHECK_TYPES, gl_STDINT_MISSING_BOUND):
6710         (gl_STDINT_MISSING_BOUNDS, gl_STDINT_MISSING_BOUNDS2):
6711         (gl_CHECK_TYPE_SAME):
6712         Remove; no longer needed.
6713         (gl_STDINT_BITSIZEOF): Don't bother to check whether the type
6714         exists, since we'll return 0 anyway in that case.
6715         (gl_INTEGER_TYPE_SUFFIX, gl_STDINT_INCLUDES): New macros.
6716
6717 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
6718
6719         * lib/stdint_.h (_GL_STDINT_H): Renamed from _STDINT_H, to avoid
6720         possible collision with system files.
6721         (<stdio.h>, <time.h>, <wchar.h>) [defined __cplusplus && ! defined
6722         __STDC_CONSTANT_MACROS)]: Do not include, since we don't need
6723         WCHAR_MIN and WCHAR_MAX in this case.
6724         (<stddef.h>): Do not include; no longer needed.
6725         (<sys/types.h>): Include if @HAVE_SYS_TYPES_H@, not if
6726         (defined(__OpenBSD__) || defined(__bsdi__) || defined(__sgi)).
6727         (<sys/inttypes.h>): Include if @HAVE_SYS_INTTYPES_H@ &&
6728         !@HAVE_INTTYPES_H@, not if (defined(__FreeBSD__)
6729         && (__FreeBSD__ >= 3) && (__FreeBSD__ <= 4)).
6730         (__STDINT_H__) [@HAVE_STDINT_H@ && defined __sgi && ! defined
6731         __c99]: Define, to work around IRIX <stdint.h> incompatibility.
6732         (@FULL_PATH_STDINT_H@) [!(defined(__sgi) && @HAVE_INTTYPES_H@ &&
6733         !defined(__c99))]: Include in this case too, since it's harmless
6734         now.
6735         (<inttypes.h>) [@HAVE_INTTYPES_H@]: Include, since it's no longer
6736         dangerous to do so.
6737         (@FULL_PATH_INTTYPES_H@) [(defined(__hpux) || defined(_AIX)) &&
6738         @HAVE_INTTYPES_H@]: Do not include, since we now include <inttypes.h>.
6739         (_STDINT_MIN, _STDINT_MAX): New macros.
6740         (int8_t, uint8_t, int16_t, uint16_t, int32_t, uint32_t, int64_t):
6741         (uint64_t, int_least8_t, uint_least8_t, int_least16_t):
6742         (uint_least16_t, int_least32_t, uint_least32_t, int_least64_t):
6743         (uint_least64_t, int_fast8_t, uint_fast8_t, int_fast16_t):
6744         (uint_fast16_t, int_fast32_t, uint_fast32_t, int_fast64_t):
6745         (uint_fast64_t, intptr_t, uintptr_t, intmax_t, uintmax_t): Now
6746         macros, not typedefs; this simplifies things quite a bit.
6747         Use long int for all types narrower than int64_t.
6748         (intmax_t, uintmax_t, INTMAX_C, UINTMAX_C):
6749         Define in terms of long long int or int64_t or long int,
6750         not int64_t or int32_t.  This saves some compile-time testing.
6751         (INT8_MIN, INT8_MAX, UINT8_MAX, INT16_MIN, INT16_MAX, UINT16_MAX):
6752         (INT32_MIN, INT32_MAX, UINT32_MAX, INT64_MIN, INT64_MAX):
6753         (UINT64_MAX, INT_LEAST8_MIN, INT_LEAST8_MAX, UINT_LEAST8_MAX):
6754         (INT_LEAST16_MIN, INT_LEAST16_MAX, UINT_LEAST16_MAX):
6755         (INT_LEAST32_MIN, INT_LEAST32_MAX, UINT_LEAST32_MAX):
6756         (INT_LEAST64_MIN, INT_LEAST64_MAX, UINT_LEAST64_MAX, INT_FAST8_MIN):
6757         (INT_FAST8_MAX, UINT_FAST8_MAX, INT_FAST16_MIN, INT_FAST16_MAX):
6758         (UINT_FAST16_MAX, INT_FAST32_MIN, INT_FAST32_MAX, UINT_FAST32_MAX):
6759         (INT_FAST64_MIN, INT_FAST64_MAX, UINT_FAST64_MAX, INTPTR_MIN):
6760         (INTPTR_MAX, UINTPTR_MAX, INTMAX_MIN, INTMAX_MAX, UINTMAX_MAX):
6761         (PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX):
6762         (SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN, WINT_MAX):
6763         undef any previous version and define our own version, for
6764         simplicity and consistency with the new macros for types.
6765         (PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX):
6766         (SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN, WINT_MAX):
6767         Simplify definitions by using _STDINT_MIN and _STDINT_MAX
6768         where appropriate.  Rely on new symbols @PTRDIFF_T_SUFFIX@,
6769         @SIG_ATOMIC_T_SUFFIX@, @SIZE_T_SUFFIX@, @WCHAR_T_SUFFIX@,
6770         @WINT_T_SUFFIX@ to keep things simple here.
6771         (UINT8_C, UINT16_C, UINT32_C, INT64_C, UINT64_C):
6772         Simplify by assuming typical 8/16/32/64 host, since we're
6773         already doing that elsewhere anyway.
6774         Use (LONG_MAX >> 31 >> 31 == 1) rather than @HAVE_LONG_64BIT@,
6775         and assume long long int is 64 bits if available.  This
6776         speeds up 'configure'.
6777
6778 2006-07-01  Eric Blake  <ebb9@byu.net>
6779
6780         * m4/stdarg.m4 (gl_STDARG_H): Use proper AH_VERBATIM.
6781         Reported by Andreas Buening.
6782
6783 2006-07-01  Eric Blake  <ebb9@byu.net>
6784
6785         * m4/stdarg.m4 (gl_STDARG_H): Properly parenthesize gl_va_copy.
6786
6787 2006-06-30  Jim Hyslop  <jhyslop@dreampossible.ca>  (tiny change)
6788
6789         * lib/getaddrinfo.c: fixed typo
6790
6791 2006-06-29  Jim Meyering  <jim@meyering.net>
6792
6793         * modules/strftime (Maintainer): Add my name, since with the
6794         FPRINTFTIME changes strftime.c has forked from glibc.
6795
6796 2006-06-29  Eric Blake  <ebb9@byu.net>
6797
6798         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Use AC_C_INLINE.
6799
6800 2006-06-29  Eric Blake  <ebb9@byu.net>
6801
6802         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): New file.
6803
6804 2006-06-29  Eric Blake  <ebb9@byu.net>
6805
6806         * lib/stat_.h: New file.
6807
6808 2006-06-29  Eric Blake  <ebb9@byu.net>
6809
6810         * lib/stat_.h (rpl_mkdir): Declare inline, to avoid warnings about
6811         unused static function.
6812
6813 2006-06-29  Eric Blake  <ebb9@byu.net>
6814
6815         * doc/functions.texi (Function Portability): Document missing lstat
6816         on mingw.
6817
6818 2006-06-29  Eric Blake  <ebb9@byu.net>
6819
6820         * MODULES.html.sh: Add sys_stat.
6821         * modules/sys_stat: New module.
6822         * modules/mkstemp (Depends-on): Add sys_stat.
6823
6824 2006-06-29  Derek R. Price  <derek@ximbiot.com>
6825
6826         * m4/strftime.m4: Don't call AC_FUNC_STRFTIME.
6827
6828 2006-06-29  Derek R. Price  <derek@ximbiot.com>
6829
6830         * m4/c-bs-a.m4: Removed.
6831
6832 2006-06-29  Derek R. Price  <derek@ximbiot.com>
6833
6834         * lib/strftime.c: Assume strftime() exists.
6835
6836 2006-06-29  Derek Price  <derek@ximbiot.com>
6837
6838         * modules/c-bs-a: Removed - \a is C89.
6839         * MODULES.html.sh: Remove c-bs-a.
6840
6841 2006-06-29  Bruno Haible  <bruno@clisp.org>
6842
6843         * modules/wcwidth (License): Change to LGPL.
6844
6845 2006-06-28  Simon Josefsson  <jas@extundo.com>
6846
6847         * tests/test-getaddrinfo.c: Test getnameinfo too.  Call WSAStartup
6848         on _WIN32.
6849
6850         * modules/getaddrinfo (Depends-on): Add inet_ntop, needed by
6851         getnameinfo.
6852
6853 2006-06-28  Simon Josefsson  <jas@extundo.com>
6854
6855         * m4/getaddrinfo.m4: Look for getnameinfo prototypes too.
6856
6857 2006-06-28  Simon Josefsson  <jas@extundo.com>
6858
6859         * lib/getaddrinfo.c: Try to load ws2_32.dll on Windows, to find the
6860         functions there.  It will succeed on Windows XP, but on Windows
6861         2000 and (presumably) earlier, it will fail, and use the internal
6862         re-implementation.
6863         (use_win32_p): New function.
6864         (getaddrinfo): Use strtoul on servname, to support numeric ports.
6865         Support AI_NUMERICSERV to disable getservbyname.
6866         (getnameinfo): New function, only supports
6867         NI_NUMERICHOST|NI_NUMERICSERV for now.
6868
6869         * lib/getaddrinfo.h: Test and check for AI_* flags separately, MinGW
6870         only have some of them.  Add AI_NUMERICSERV.  Add prototype for
6871         getnameinfo.
6872
6873 2006-06-28  Eric Blake  <ebb9@byu.net>
6874
6875         * modules/wcwidth: New file.
6876         * modules/mbchar (Depends-on): Add wcwidth.
6877         * modules/mbswidth (Depends-on): Add wcwidth.
6878         * MODULES.html.sh: Add wcwidth.
6879
6880 2006-06-28  Eric Blake  <ebb9@byu.net>
6881
6882         * m4/mbswidth.m4 (gl_MBSDWIDTH): Move wcwidth from here...
6883         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): ...to this new file.
6884
6885 2006-06-28  Eric Blake  <ebb9@byu.net>
6886
6887         * lib/xvasprintf.h: Fix comments.
6888
6889 2006-06-28  Eric Blake  <ebb9@byu.net>
6890
6891         * lib/mbchar.h (wcwidth): Include wcwidth.h.
6892         * lib/mbswidth.c (wcwidth): Move from here...
6893         * lib/wcwidth.h: ...to this new file.
6894
6895 2006-06-28  Derek R. Price  <derek@ximbiot.com>
6896
6897         * m4/savedir.m4: Remove AC_FUNC_CLOSEDIR_VOID requirement.
6898
6899         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Don't require AC_C_CONST, since
6900         it's obsolete.
6901         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME): Likewise.
6902
6903 2006-06-28  Derek R. Price  <derek@ximbiot.com>
6904
6905         * lib/savedir.c (CLOSEDIR): Remove.  All uses changed to closedir.
6906         Autoconf 2.60 says this stuff was obsolete.
6907
6908 2006-06-28  Bruno Haible  <bruno@clisp.org>
6909
6910         * modules/wcwidth (Files): Add m4/wchar_t.m4.
6911
6912 2006-06-28  Bruno Haible  <bruno@clisp.org>
6913
6914         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Also require AC_C_INLINE and
6915         gt_TYPE_WCHAR_T.
6916
6917 2006-06-28  Bruno Haible  <bruno@clisp.org>
6918
6919         * lib/wcwidth.h: Declare nothing if !HAVE_WCHAR_T. Provide a fallback
6920         declaration for wcwidth.
6921         * lib/mbswidth.c: Restore the includes of <wchar.h> and <wctypes.h>.
6922
6923 2006-06-28  Bruno Haible  <bruno@clisp.org>
6924
6925         * lib/mkdtemp.c [MINGW]: Include <io.h>.
6926         (mkdir): Define using _mkdir.
6927
6928 2006-06-28  Bruno Haible  <bruno@clisp.org>
6929
6930         * lib/getaddrinfo.h: Fix POSIX URL.
6931         * lib/getaddrinfo.c (WIN32_NATIVE): New macro. Use it instead of
6932         _WIN32.
6933         (use_win32_p): Make static.
6934         (getaddrinfo): Reject service name if it is empty or does not consist
6935         solely of decimal digits, or if its value is > 65535.
6936         (getnameinfo): Remove useless casts.
6937
6938 2006-06-27  Simon Josefsson  <jas@extundo.com>
6939
6940         * modules/sys_select: New file, suggested by Bruno Haible, Paul
6941         Eggert and Martin Lambers.
6942
6943 2006-06-27  Simon Josefsson  <jas@extundo.com>
6944
6945         * m4/sys_select_h.m4: New file, suggested by Bruno Haible, Paul
6946         Eggert and Martin Lambers.
6947
6948 2006-06-27  Bruno Haible  <bruno@clisp.org>
6949
6950         * m4/stdint.m4 (gl_STDINT_BITSIZEOF): For nonexistent types, set the
6951         result to 0, not to empty.
6952         Reported by Martin Neitzel <neitzel@sco.gaertner.de>.
6953
6954 2006-06-27  Bruno Haible  <bruno@clisp.org>
6955
6956         * lib/stdint_.h (intmax_t, uintmax_t): Undefine before typedef.
6957
6958 2006-06-26  Simon Josefsson  <jas@extundo.com>
6959
6960         * m4/inet_ntop.m4: Don't check for sys/types.h, we assume it is
6961         present.
6962
6963 2006-06-26  Paul Eggert  <eggert@cs.ucla.edu>
6964
6965         * lib/base64.c (B64): Use _ as the formal parameter, not x, to avoid
6966         bug in IBM C V6 for AIX.  Problem reported by Larry Jones in
6967         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00181.html>.
6968
6969 2006-06-26  Mark D. Baushke  <mdb@gnu.org>
6970
6971         * m4/stdint.m4 (gl_STDINT_H): Treat BSD/OS like OpenBSD.
6972
6973 2006-06-26  Bruno Haible  <bruno@clisp.org>
6974
6975         * modules/stdint (Makefile.am): Also substitute HAVE_WCHAR_H.
6976
6977 2006-06-26  Bruno Haible  <bruno@clisp.org>
6978
6979         * m4/stdint.m4 (gl_STDINT_H): Test also for <wchar.h>.
6980
6981 2006-06-26  Bruno Haible  <bruno@clisp.org>
6982
6983         * m4/stdint.m4 (gl_STDINT_H): Don't include <stdint.h> when using the
6984         SGI C compiler in pre-C99 mode.
6985         Suggested by Mark D. Baushke and Larry Jones.
6986
6987 2006-06-26  Bruno Haible  <bruno@clisp.org>
6988
6989         * lib/stdint_.h: Include <wchar.h> if necessary for WCHAR_MIN or
6990         WCHAR_MAX.
6991         Reported by Mark D. Baushke and Larry Jones.
6992
6993 2006-06-26  Bruno Haible  <bruno@clisp.org>
6994
6995         * lib/stdint_.h: Don't include <stdint.h> when using the SGI C compiler
6996         in pre-C99 mode.
6997         Suggested by Mark D. Baushke and Larry Jones.
6998
6999 2006-06-23  Simon Josefsson  <jas@extundo.com>
7000             Bruno Haible  <bruno@clisp.org>
7001
7002         * gnulib-tool (func_emit_lib_Makefile_am): Define MOSTLYCLEANDIRS.
7003         Emit mostlyclean-local rule.
7004         (func_emit_tests_Makefile_am): Likewise.
7005         * modules/sys_socket (Makefile.am): Use MOSTLYCLEANDIRS.
7006
7007 2006-06-23  Mark D. Baushke  <mdb@gnu.org>
7008
7009         * lib/stdint_.h: Treat BSD/OS like OpenBSD.
7010
7011 2006-06-23  Bruno Haible  <bruno@clisp.org>
7012
7013         * tests/test-stdint.c: Update to match ISO C 99 Technical
7014         Corrigendum 1.
7015
7016 2006-06-23  Bruno Haible  <bruno@clisp.org>
7017
7018         * m4/stdint.m4 (gl_STDINT_H): Treat IRIX like OpenBSD.
7019
7020 2006-06-23  Bruno Haible  <bruno@clisp.org>
7021
7022         * lib/stdint_.h: Treat IRIX like OpenBSD.
7023
7024 2006-06-23  Bruno Haible  <bruno@clisp.org>
7025
7026         * lib/stdint_.h (UINT8_C, UINT16_C, UINT32_C): Define according to
7027         ISO C 99 Technical Corrigendum 1.
7028
7029 2006-06-22  Simon Josefsson  <jas@extundo.com>
7030
7031         * m4/sockpfaf.m4: Include winsock2.h too, to make it work under
7032         MinGW.
7033
7034 2006-06-22  Paul Eggert  <eggert@cs.ucla.edu>
7035
7036         * lib/glob.c (collated_compare): Remove 'const' uses that weren't
7037         needed.  Some compiler complained about some of them.  Problem reported
7038         by Larry Jones in
7039         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00172.html>.
7040
7041 2006-06-21  Simon Josefsson  <jas@extundo.com>
7042
7043         * tests/test-getaddrinfo.c: New file.
7044
7045         * modules/getaddrinfo-tests: New file.
7046
7047         * MODULES.html.sh: Add inet_pton.
7048
7049         * modules/inet_pton: New file.
7050
7051 2006-06-21  Simon Josefsson  <jas@extundo.com>
7052
7053         * m4/getaddrinfo.m4: Don't define WINVER.  Look for gethostbyname in
7054         -lws2_32 too.  Fixes getaddrinfo on Windows 2000, with the price
7055         of using the (limited) gnulib implementation on Windows XP.
7056
7057         * m4/inet_pton.m4: New file.
7058
7059 2006-06-21  Simon Josefsson  <jas@extundo.com>
7060
7061         * lib/getaddrinfo.c (getaddrinfo): Set ai_family in the return
7062         variable.
7063
7064         * lib/socket_.h: Don't define WINVER.
7065
7066         * lib/inet_pton.h, inet_pton.c: New file, taken from glibc but
7067         slightly modified to work in gnulib.
7068
7069 2006-06-21  Simon Josefsson  <jas@extundo.com>
7070
7071         * doc/gnulib.texi (Windows sockets): Add.
7072
7073 2006-06-21  Paul Eggert  <eggert@cs.ucla.edu>
7074
7075         * lib/read-file.c (fread_file): Start with buffer allocation of
7076         0 bytes rather than 1 byte; this simplifies the code.
7077         Don't invoke feof; it's not needed.  Refactor to avoid duplicate
7078         code to free buffer and save/restore errno.
7079         (internal_read_file): Remove unused local.
7080
7081 2006-06-20  Paul Eggert  <eggert@cs.ucla.edu>
7082
7083         * lib/openat.c (openat): Use ?:, not if, to work around GCC bug 4210
7084         <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=4210>.
7085         Problem reported by Denis Excoffier in
7086         <http://lists.gnu.org/archive/html/bug-tar/2006-06/msg00023.html>.
7087
7088 2006-06-19  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
7089
7090         * modules/sys_socket, modules/socklen: Include sys/types since
7091         FreeBSD 4.x's sys/socket.h needs it.
7092
7093 2006-06-19  Simon Josefsson  <jas@extundo.com>
7094
7095         * lib/inet_ntop.c: Always build inet_ntop4, since inet_ntop6 calls it.
7096
7097 2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
7098
7099         * lib/alloca_.h (alloca) [defined alloca]: Don't define or declare.
7100
7101 2006-06-19  Bruno Haible  <bruno@clisp.org>
7102
7103         * m4/stdint.m4 (gl_STDINT_H): Enclose the values of FULL_PATH_STDINT_H
7104         and FULL_PATH_INTTYPES_H in angle brackets.
7105         Reported by Mark D. Baushke <mdb@gnu.org>.
7106
7107 2006-06-17  Eric Blake  <ebb9@byu.net>
7108
7109         * m4/rmdir-errno.m4 (gl_FUNC_FMDIR_NOTEMPTY): Assume errno.h declares
7110         errno.
7111
7112 2006-06-17  Bruno Haible  <bruno@clisp.org>
7113
7114         * m4/stdint.m4 (gl_STDINT_H) [FreeBSD >= 5]: Don't include
7115         <sys/inttypes.h>.
7116
7117 2006-06-17  Bruno Haible  <bruno@clisp.org>
7118
7119         * m4/setenv.m4 (gl_PREREQ_SETENV, gl_PREREQ_UNSETENV): Remove test
7120         whether errno is declared. Assume <errno.h> declares errno.
7121
7122 2006-06-17  Bruno Haible  <bruno@clisp.org>
7123
7124         * lib/stdint_.h [FreeBSD >= 5]: Don't include <sys/inttypes.h>.
7125
7126 2006-06-17  Bruno Haible  <bruno@clisp.org>
7127
7128         * lib/stdint_.h (_UINT8_T, _UINT32_T, _UINT64_T): New macros. Fixes a
7129         problem on Solaris 2.5.1.
7130
7131 2006-06-16  Eric Blake  <ebb9@byu.net>
7132
7133         * lib/unsetenv.c [!defined errno]: Assume errno.h declares errno.
7134         * lib/unicodeio.c [!defined errno]: Likewise.
7135         * lib/strtol.c [!defined errno]: Likewise.
7136         * lib/strtod.c [!defined errno]: Likewise.
7137
7138 2006-06-15  Eric Blake  <ebb9@byu.net>
7139
7140         * m4/ssize_t.m4 (gt_TYPE_SSIZE_T): Work in spite of -Werror.
7141
7142 2006-06-15  Eric Blake  <ebb9@byu.net>
7143
7144         * config/srclist.txt (ssize_t.m4): Lose sync.
7145
7146 2006-06-15  Bruno Haible  <bruno@clisp.org>
7147
7148         * modules/stdint (Files): Include m4/full-header-path.m4,
7149         m4/size_max.m4, m4/wchar_t.m4.
7150         (Makefile.am): Many more substitutions.
7151         * modules/stdint-tests: New file.
7152         * tests/test-stdint.c: New file.
7153
7154 2006-06-15  Bruno Haible  <bruno@clisp.org>
7155
7156         * m4/stdint.m4 (gl_STDINT_H): Rewritten to produce a complete stdint.h.
7157         (gl_HEADER_STDINT_H, gl_HEADER_INTTYPES_H, gl_STDINT_CHECK_TYPES,
7158         gl_STDINT_MISSING_BOUND, gl_STDINT_MISSING_BOUNDS,
7159         gl_STDINT_MISSING_BOUNDS2, gl_STDINT_BITSIZEOF, gl_CHECK_TYPES_SIGNED,
7160         gl_CHECK_TYPE_SAME): New macros.
7161
7162 2006-06-15  Bruno Haible  <bruno@clisp.org>
7163
7164         * m4/size_max.m4 (gl_SIZE_MAX): Make it work also when cross-compiling.
7165
7166 2006-06-15  Bruno Haible  <bruno@clisp.org>
7167
7168         * lib/stdint_.h: Rewritten to be fully auto-configured.
7169         Fixes bug on HP-UX/IA64.
7170
7171 2006-06-11  Paul Eggert  <eggert@cs.ucla.edu>
7172
7173         * lib/getdate.y (__attribute__): Don't define if already defined.
7174         Problem reported by Larry Jones.
7175         * lib/utimens.c (__attribute__): Likewise.
7176
7177 2006-06-04  Paul Eggert  <eggert@cs.ucla.edu>
7178
7179         * lib/regexec.c (group_nodes_into_DFAstates): Fix a buffer overrun
7180         reported by Andreas Schwab.
7181
7182 2006-05-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7183             Bruno Haible  <bruno@clisp.org>
7184
7185         * m4/strndup.m4 (gl_FUNC_STRNDUP): Replace the AC_REPLACE_FUNCS with a
7186         check for the declaration of strnlen and a run test that exposes the
7187         AIX 5.1 strnlen bug.  In the failure case, #define strndup to
7188         rpl_strndup.
7189
7190 2006-05-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7191             Bruno Haible  <bruno@clisp.org>
7192
7193         * lib/strndup.c (strndup) [!_LIBC]: Don't undefine macro definition.
7194
7195 2006-05-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7196
7197         * m4/c-strtod.m4 (gl_C99_STRTOLD): Use a link test rather than a
7198         compile test, for Tru64 4.0D.
7199
7200 2006-05-28  Karl Berry  <karl@gnu.org>
7201
7202         * config/srclist.txt (printf-args.c): lose sync.
7203
7204 2006-05-26  Martin Lambers  <marlam@marlam.de>
7205
7206         * lib/getpass.c: Updates the test for the native W32 API, and adds
7207         missing includes, thus fixing compilation warnings.
7208
7209 2006-05-25  Sergey Poznyakoff  <gray@gnu.org.ua>
7210
7211         * lib/exclude.c (exclude_fnmatch): New function.
7212         (excluded_file_name): Call exclude_fnmatch.
7213         * lib/exclude.h (excluded_file_name): New prototype
7214
7215 2006-05-25  Paul Eggert  <eggert@cs.ucla.edu>
7216
7217         * lib/tempname.c (small_open, large_open): New macros.
7218         (__open, __open64) [!_LIBC]: Remove.
7219         (__gen_tempname): Use small_open and large_open instead of __open
7220         and __open64.  This fixes a portability bug on HP-UX 11.11i
7221         reported by Simon Wing-Tang in
7222         <http://lists.gnu.org/archive/html/bug-coreutils/2006-05/msg00114.html>.
7223
7224 2006-05-24  Bruno Haible  <bruno@clisp.org>
7225
7226         * lib/printf-args.c (printf_fetchargs): Turn NULL pointers for
7227         TYPE_STRING and TYPE_WIDE_STRING into a non-NULL replacement.
7228         Reported by Thorsten Maerz <torte@netztorte.de> via
7229         Aaron Stone <aaron@serendipity.cx>.
7230
7231 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
7232
7233         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Rename cache variables to use
7234         gl_ rather than jm_.  Link, don't run, so that cross-compiles are
7235         allowed.  Check that resulting type is arithmetic.  Move AC_REQUIRE
7236         and AC_CHECK_HEADERS_ONCE outside of AC_CACHE_CHECK, since they're
7237         not really conditional on the cache.
7238         (gl_PREREQ_NANOSLEEP): Check for sys/select.h.
7239
7240 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
7241
7242         * lib/nanosleep.c [HAVE_SYS_SELECT_H]: Include <sys/select.h>.
7243         Use the usual Autoconf way to include <time.h> and/or sys/time.h.
7244         (my_usleep): Don't mishandle maximum value.
7245
7246 2006-05-19  Jim Meyering  <jim@meyering.net>
7247
7248         * lib/getugroups.c: Correct an outdated comment.  From Bruno Haible.
7249
7250 2006-05-17  Bruno Haible  <bruno@clisp.org>
7251
7252         Cygwin portability.
7253         * lib/classpath.c (PATH_SEPARATOR) [CYGWIN]: Define as ':'.
7254
7255 2006-05-17  Bruno Haible  <bruno@clisp.org>
7256
7257         * lib/stdint_.h: Fix recognition of Cygwin.
7258
7259 2006-05-15  Bruno Haible  <bruno@clisp.org>
7260
7261         * build-aux/config.rpath: Improve support for Sun C 5.9 on Linux, based
7262         on libtool patch by Ralf Wildenhues.
7263
7264 2006-05-14  Paul Eggert  <eggert@cs.ucla.edu>
7265
7266         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Fix overly-picky
7267         test for C99 conformance; (bool) 0.5 is an integer constant
7268         expression, but (bool) -0.5 is not.  Problem reported by Fedor
7269         Sergeev in <http://forum.sun.com/jive/thread.jspa?threadID=96202>.
7270
7271 2006-05-11  Simon Josefsson  <jas@extundo.com>
7272
7273         * m4/xvasprintf.m4: Fix obvious typo.
7274
7275 2006-05-11  Jim Meyering  <jim@meyering.net>
7276
7277         * lib/sha1.c (sha1_buffer): Correct comment: s/MD5/SHA1/.  From
7278         James Lemley.
7279
7280 2006-05-10  Simon Josefsson  <jas@extundo.com>
7281
7282         * lib/md4.c: Typo fix, update copyright years.
7283         (K1, K2): Don't use L because it turn computations into 64-bit on
7284         64-bit platforms.
7285
7286 2006-05-10  Paul Eggert  <eggert@cs.ucla.edu>
7287
7288         * lib/crc.c (crc32_update): Remove unnecessary L suffix.
7289         * lib/md4.c (rol): Cast right-shift arg to uint32_t to prevent
7290         unwanted sign propagation, e.g., on hosts with 64-bit int.
7291         There still are some problems with reeelly weird theoretical hosts
7292         (e.g., 33-bit int) but it's not worth worrying about now.
7293         * lib/sha1.c (rol): Likewise.
7294         (K1, K2, K3, K4): Remove unnecessary L suffix.
7295
7296 2006-05-10  Bruno Haible  <bruno@clisp.org>
7297
7298         * lib/des.c: Cast to avoid warnings.
7299
7300 2006-05-09  Bruno Haible  <bruno@clisp.org>
7301
7302         * modules/xvasprintf (Files): Add m4/xvasprintf.m4.
7303         (Depends-on): Depend also on xsize, stdarg.
7304         (configure.ac): Add gl_XVASPRINTF.
7305
7306 2006-05-09  Bruno Haible  <bruno@clisp.org>
7307
7308         * m4/xvasprintf.m4: New file.
7309
7310 2006-05-09  Bruno Haible  <bruno@clisp.org>
7311
7312         * lib/xvasprintf.c: Include limits.h, string.h, xsize.h.
7313         (EOVERFLOW): Define fallback value.
7314         (xstrcat): New function.
7315         (xvasprintf): Recognize the special case of a string concatenation.
7316
7317 2006-05-08  Eric Blake  <ebb9@byu.net>
7318
7319         * gnulib-tool (func_version): Base copyright year on CVS date.
7320         (func_emit_copyright_notice): New function.
7321         (func_emit_lib_Makefile_am): Use it.
7322         (func_emit_tests_Makefile_am): Likewise.
7323         (func_import): Likewise.
7324
7325 2006-05-08  Bruno Haible  <bruno@clisp.org>
7326
7327         * modules/stdarg: New file.
7328         * MODULES.html.sh (func_all_modules): Add section for <stdarg.h>.
7329
7330 2006-05-08  Bruno Haible  <bruno@clisp.org>
7331
7332         * m4/stdarg.m4: New file, from GNU gettext.
7333
7334 2006-05-08  Bruno Haible  <bruno@clisp.org>
7335
7336         * config/srclist.txt (build-aux/config.rpath): different from latest
7337         release.
7338
7339 2006-05-08  Bruno Haible  <bruno@clisp.org>
7340
7341         * build-aux/config.rpath: Add support for Sun C 5.9 on Linux.
7342
7343 2006-05-05  Jim Meyering  <jim@meyering.net>
7344
7345         * m4/warning.m4: New file, derived from bison's file by the same name.
7346
7347 2006-05-03  Bruno Haible  <bruno@clisp.org>
7348
7349         * lib/stdint_.h: Shorter URL.
7350         * lib/inttypes.h: Likewise.
7351
7352 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
7353
7354         * modules/inttypes (Maintainer): Change from Derek Price to 'all'.
7355
7356 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
7357
7358         * lib/verify.h: Document the internals better.  Most of this change
7359         was written by Bruno Haible.
7360
7361 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
7362
7363         * doc/verify.texi: New file, partly based on a proposal by
7364         Bruno Haible.
7365
7366 2006-05-02  Bruno Haible  <bruno@clisp.org>
7367
7368         * m4/full-header-path.m4 (gl_FULL_HEADER_PATH): Move the include_next
7369         test from here...
7370         * m4/_inttypes_h.m4 (gl_INTTYPES_H): ... to here.
7371
7372 2006-04-29  Bruno Haible  <bruno@clisp.org>
7373
7374         * lib/gcd.c: Use WORD_T and GCD instead of unsigned long and gcd.
7375         Suggested by Oskar Liljeblad <oskar@osk.mine.nu>.
7376
7377 2006-04-29  Bruno Haible  <bruno@clisp.org>
7378
7379         * gnulib-tool: Make --update option actually work.
7380
7381 2006-04-29  Bruno Haible  <bruno@clisp.org>
7382
7383         * doc/gcd.texi: New file.
7384         * doc/gnulib.texi: Include it.
7385
7386 2006-04-25  Paul Eggert  <eggert@cs.ucla.edu>
7387
7388         * lib/getdate.y (get_date): When adding relative date, start with the
7389         initial time, not with the result of the first mktime call.
7390
7391 2006-04-25  Bruno Haible  <bruno@clisp.org>
7392
7393         * gnulib-tool (func_import): Output the include directives in three
7394         blocks, sorted separately.
7395         Reported by Ben Pfaff <blp@cs.stanford.edu>.
7396
7397 2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
7398
7399         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Use prototype
7400         to define main with arguments, for C++.  Reported by Eric Blake.
7401         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC):
7402         Prefer 'int main ()' to 'int main (void)', for C++.
7403         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Likewise.
7404         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Specify a return type
7405         for 'main', for C99 and C++.
7406
7407 2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
7408
7409         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Use return, not exit.
7410         Don't assume that exit status -1 is valid.
7411         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
7412         * m4/putenv.m4 (gl_FUNC_PUTENV): Likewise.
7413         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Likewise.
7414         * m4/readdir.m4 (GL_FUNC_READDIR): Include <stdlib.h>.
7415         * m4/rename.m4 (vb_FUNC_RENAME): Likewise.
7416         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Use AC_RUN_IFELSE,
7417         not AC_TRY_RUN.  Use return, not exit.  Don't assume that
7418         functions can be used without declaring them, or that you can
7419         exit with status -1.
7420         * m4/utimes-null.m4 (gl_FUNC_UTIMES_NULL): Likewise.
7421
7422 2006-04-24  Karl Berry  <karl@gnu.org>
7423
7424         * config/srclist.txt (longdouble.m4): sync lost.
7425
7426 2006-04-24  Eric Blake  <ebb9@byu.net>
7427
7428         * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Avoid unused variable warning.
7429
7430 2006-04-24  Bruno Haible  <bruno@clisp.org>
7431
7432         * m4/poll.m4 (gl_FUNC_POLL): When cross-compiling, reject also the
7433         poll() implementation in AIX.
7434         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
7435
7436 2006-04-24  Bruno Haible  <bruno@clisp.org>
7437
7438         * m4/poll.m4 (gl_FUNC_POLL): Rearrange code, so that POLL_H gets
7439         assigned exactly once.
7440
7441 2006-04-23  Claudio Fontana  <claudio@gnu.org>
7442             Bruno Haible  <bruno@clisp.org>
7443
7444         * modules/gettext (Makefile.am): Add a -I flag for <libintl.h>.
7445         * gnulib-tool (func_emit_lib_Makefile_am): Emit empty default value
7446         for AM_CPPFLAGS.
7447
7448 2006-04-23  Bruno Haible  <bruno@clisp.org>
7449
7450         * modules/copy-file: Depend on unistd.
7451         * modules/execute: Likewise.
7452         * modules/fatal-signal: Likewise.
7453         * modules/findprog: Likewise.
7454         * modules/mkdtemp : Likewise.
7455         * modules/pipe: Likewise.
7456         * modules/wait-process: Likewise.
7457
7458 2006-04-23  Bruno Haible  <bruno@clisp.org>
7459
7460         * lib/fwriteerror.c (fwriteerror): Call fclose also when an error
7461         condition was already detected.
7462         Reported by Ben Pfaff <blp@cs.stanford.edu>.
7463
7464 2006-04-23  Bruno Haible  <bruno@clisp.org>
7465
7466         * lib/copy-file.c: Include <unistd.h> unconditionally.
7467         * lib/execute.c: Likewise.
7468         * lib/fatal-signal.c: Likewise.
7469         * lib/findprog.c: Likewise.
7470         * lib/mkdtemp.c: Likewise.
7471         * lib/pipe.h: Likewise.
7472         * lib/pipe.c: Likewise.
7473         * lib/wait-process.h: Likewise.
7474
7475 2006-04-23  Bruno Haible  <bruno@clisp.org>
7476
7477         * gnulib-tool (func_usage): Fix --import description. Document
7478         --update.
7479         (func_import): Create temporary file in a temporary directory, if
7480         --dry-run is specified. Silence errors from 'grep' when there are no
7481         m4 files in $m4dir.
7482         (func_create_testdir): Silence errors from 'grep' when there are no
7483         m4 files in $m4dir.
7484         Reported by Karl Berry <karl@freefriends.org>.
7485
7486 2006-04-20  Bruno Haible  <bruno@clisp.org>
7487
7488         * m4/argp.m4 (gl_ARGP): Don't call AC_CHECK_DECLS_ONCE with more than
7489         one argument, so that the code will be portable to Autoconf 2.60.
7490         * m4/getlogin_r.m4 (gl_PREREQ_GETLOGIN_R): Likewise.
7491         * m4/getpass.m4 (gl_PREREQ_GETPASS): Likewise.
7492         * m4/unlocked-io.m4 (gl_FUNC_GLIBC_UNLOCKED_IO): Likewise.
7493
7494 2006-04-19  Derek Price  <derek@ximbiot.com>
7495             Eric Blake  <ebb9@byu.net>
7496
7497         * m4/full-header-path.m4 (gl_FULL_HEADER_PATH): Use </full/path.h>
7498         rather than "/full/path.h".  Update comment to match.  Shorten &
7499         generalize m4_translit call via AS_TR_CPP.
7500
7501 2006-04-19  Derek Price  <derek@ximbiot.com>
7502             Eric Blake  <ebb9@byu.net>
7503
7504         * lib/inttypes.h: Correct grammar in comment.
7505
7506 2006-04-18  Derek Price  <derek@ximbiot.com>
7507             Paul Eggert  <eggert@cs.ucla.edu>
7508
7509         * modules/inttypes: New file.
7510         * modules/strtoimax, modules/strtoumax: Depend on inttypes.
7511
7512 2006-04-18  Derek Price  <derek@ximbiot.com>
7513             Paul Eggert  <eggert@cs.ucla.edu>
7514
7515         * m4/_inttypes_h.m4, m4/full-header-path.m4, m4/include_next.m4:
7516         New files.
7517
7518 2006-04-18  Derek Price  <derek@ximbiot.com>
7519             Paul Eggert  <eggert@cs.ucla.edu>
7520
7521         * lib/inttypes.h: New file.
7522         * lib/strtoimax.c: Assume <inttypes.h>.
7523
7524 2006-04-15  Paul Eggert  <eggert@cs.ucla.edu>
7525
7526         * lib/utimens.c (futimens): glibc futimesat messes up if /proc
7527         isn't mounted.  Problem reported by Kir Kolyshkin.
7528
7529 2006-04-13  Paul Eggert  <eggert@cs.ucla.edu>
7530
7531         * lib/regcomp.c (init_dfa): Don't use wchar_t or wctype_t if
7532         RE_ENABLE_I18N is not defined.  Problem reported by Mark D. Baushke via
7533         Derek R. Price.
7534         * lib/regex.h (RE_DUP_MAX): Update comment to match current
7535         implementation.
7536
7537 2006-04-12  Eric Blake  <ebb9@byu.net>
7538
7539         * modules/time_r (Makefile.am): Remove lib_SOURCES line, as this
7540         is now done automatically by the corresponding Autoconf macro.
7541
7542 2006-04-11  Paul Eggert  <eggert@cs.ucla.edu>
7543
7544         * m4/time_r.m4 (gl_TIME_R): Add AC_LIBSOURCES for time_r.c and
7545         time_r.h.
7546
7547 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
7548
7549         Merge regex changes from libc, removing some of our
7550         POSIX-conformance changes that were rejected and redoing them in a
7551         less-intrusive way.
7552
7553         * lib/regcomp.c (re_compile_internal, init_dfa):
7554         Length arg is now size_t, not Idx.  All uses changed.
7555         (peek_token): Forward decl now says internal_function.
7556         (__re_error_msgid, __re_error_msgid_idx):
7557         Now static rather than extern with attribute_hidden.
7558         (re_compile_pattern) [!defined _LIBC]: Use K&R-style defn.
7559         For some reason libc prefers K&R style defns for external functions.
7560         (regerror) [!defined _LIBC]: Likewise.
7561         (re_set_syntax, re_compile_fastmap, regcomp, regfree, re_comp):
7562         (seek_collating_symbol_entry, lookup_collation_sequence_value):
7563         (build_range_exp, build_collating_symbol):
7564         Use K&R-style defn.
7565         (re_compile_fastmap): Use '\0' to memset, not 0.
7566         (utf8_sb_map): Make the calculations more obvious.
7567         (init_dfa, parse_bracket_exp, build_charclass_op):
7568         Call calloc and cast result, as glibc does.
7569         (init_word_char, fetch_token, peek_token, peek_token_bracket):
7570         (build_range_exp, build_collating_symbol):
7571         Now internal functions.
7572
7573         * lib/regex.c [!defined _LIBC]: Allow compiling with C++ compilers.
7574
7575         * lib/regex.h (__USE_GNU_REGEX): New macro.  Don't depend on
7576         _REGEX_SOURCE any more; depend on _GNU_SOURCE instead.
7577         Don't depend on VMS; depend on __VMS instead, for POSIX
7578         namespace cleanness.
7579         (regoff_t): Define to ssize_t, not long int.
7580
7581         Remove the REG_ macros named below.  Instead, make the old names
7582         (e.g., RE_BACKSLASH_ESCAPE_IN_LISTS) visible only if
7583         __USE_GNU_REGEX.
7584         (REG_BACKSLASH_ESCAPE_IN_LISTS):
7585         (REG_BK_PLUS_QM, REG_CHAR_CLASSES, REG_CONTEXT_INDEP_ANCHORS):
7586         (REG_CONTEXT_INDEP_OPS, REG_CONTEXT_INVALID_OPS):
7587         (REG_DOT_NEWLINE, REG_DOT_NOT_NULL, REG_HAT_LISTS_NOT_NEWLINE):
7588         (REG_INTERVALS, REG_LIMITED_OPS, REG_NEWLINE_ALT):
7589         (REG_NO_BK_BRACES, REG_NO_BK_PARENS, REG_NO_BK_REFS):
7590         (REG_NO_BK_VBAR, REG_NO_EMPTY_RANGES):
7591         (REG_UNMATCHED_RIGHT_PAREN_ORD, REG_NO_POSIX_BACKTRACKING):
7592         (REG_NO_GNU_OPS, REG_DEBUG, REG_INVALID_INTERVAL_ORD):
7593         (REG_IGNORE_CASE, REG_CARET_ANCHORS_HERE):
7594         (REG_CONTEXT_INVALID_DUP, REG_NO_SUB, REG_SYNTAX_EMACS):
7595         (REG_SYNTAX_AWK, REG_SYNTAX_GNU_AWK, REG_SYNTAX_POSIX_AWK):
7596         (REG_SYNTAX_GREP, REG_SYNTAX_EGREP, REG_SYNTAX_POSIX_EGREP):
7597         (REG_SYNTAX_ED, REG_SYNTAX_SED, _REG_SYNTAX_POSIX_COMMON):
7598         (REG_SYNTAX_POSIX_BASIC, REG_SYNTAX_POSIX_MINIMAL_BASIC):
7599         (REG_SYNTAX_POSIX_EXTENDED, REG_SYNTAX_POSIX_MINIMAL_EXTENDED):
7600         (REG_DUP_MAX, REG_UNALLOCATED, REG_REALLOCATE, REG_FIXED):
7601         (REG_NREGS):
7602         Remove.  All uses replaced by the old RE_* names.
7603         (RE_BACKSLASH_ESCAPE_IN_LISTS):
7604         (RE_BK_PLUS_QM, RE_CHAR_CLASSES, RE_CONTEXT_INDEP_ANCHORS):
7605         (RE_CONTEXT_INDEP_OPS, RE_CONTEXT_INVALID_OPS):
7606         (RE_DOT_NEWLINE, RE_DOT_NOT_NULL, RE_HAT_LISTS_NOT_NEWLINE):
7607         (RE_INTERVALS, RE_LIMITED_OPS, RE_NEWLINE_ALT):
7608         (RE_NO_BK_BRACES, RE_NO_BK_PARENS, RE_NO_BK_REFS):
7609         (RE_NO_BK_VBAR, RE_NO_EMPTY_RANGES):
7610         (RE_UNMATCHED_RIGHT_PAREN_ORD, RE_NO_POSIX_BACKTRACKING):
7611         (RE_NO_GNU_OPS, RE_DEBUG, RE_INVALID_INTERVAL_ORD):
7612         (RE_IGNORE_CASE, RE_CARET_ANCHORS_HERE):
7613         (RE_CONTEXT_INVALID_DUP, RE_NO_SUB):
7614         Don't bother having these macros be independent of each others'
7615         values, since they no longer exist in the POSIX name space.
7616
7617         Rename the following member names back to their old names,
7618         unless !__USE_GNU_REGEX.  All uses changed back.
7619         (buffer): Renamed from re_buffer.
7620         (allocated): Renamed from re_allocated.
7621         (used): Renamed from re_used.
7622         (syntax): Renamed from re_syntax.
7623         (fastmap): Renamed from re_fastmap.
7624         (translate): Renamed from re_translate.
7625         (can_be_null): Renamed from re_can_be_null.
7626         (regs_allocated): Renamed from re_regs_allocated.
7627         (fastmap_accurate): Renamed from re_fastmap_accurate.
7628         (no_sub): Renamed from re_no_sub.
7629         (not_bol): Renamed from re_not_bol.
7630         (not_eol): Renamed from re_not_eol.
7631         (newline_anchor): Renamed from re_newline_anchor.
7632         (num_regs): Renamed from rm_num_regs.
7633         (start): Renamed from rm_start.
7634         (end): Renamed from rm_end.
7635
7636         (free_state): Move up a bit.
7637
7638         * lib/regex_internal.h (inline) [__GNUC__ < 3 && defined _LIBC]:
7639         #define to be empty.
7640         (ASCII_CHARS): New macro, replacing all uses of 0x80 and/or SBC_MAX / 2
7641         when that is what is intended.
7642         (SBC_MAX): Define to UCHAR_MAX + 1, not 256.
7643         (__re_error_msgid, __re_error_msgid_idx): Remove decls; not needed.
7644         (MAX): New macro.
7645         (re_xmalloc, re_calloc, re_xrealloc, re_x2realloc): Remove.
7646         All uses changed back to re_malloc, etc.  It's now the caller's
7647         responsibility to check for overflow; all callers changed.
7648         (re_alloc_oversized, re_x2alloc_oversized, re_xnmalloc, re_xnrealloc):
7649         (re_x2nrealloc): Remove.
7650         (free_state): Remove decl.
7651
7652         * lib/regexc.c (regexec, re_match, re_search, re_match_2, re_search_2):
7653         (re_set_registers, re_exec):
7654         Use K&R-style defn.
7655
7656         2006-01-31  Roland McGrath  <roland@redhat.com>
7657
7658         * lib/regcomp.c (calc_eclosure_iter): Remove dead variables.
7659         Reported by Mike Frysinger <vapier@gentoo.org>.
7660
7661         2006-01-15  Andreas Jaeger  <aj@suse.de>
7662
7663         [BZ #1950]
7664         * lib/regex_internal.c (re_string_reconstruct): Adjust for
7665         build_wcs_upper_buffer change.
7666         (build_wcs_upper_buffer): Change return type.
7667
7668         2005-12-10  Ulrich Drepper  <drepper@redhat.com>
7669
7670         * lib/regex_internal.h: Include <stdint.h> if available.
7671
7672         2005-12-06  Paolo Bonzini  <bonzini@gnu.org>
7673
7674         * lib/regex_internal.h (SIZE_MAX): Provide a default definition.
7675
7676         2005-10-14  Ulrich Drepper  <drepper@redhat.com>
7677
7678         * lib/regcomp.c: Adjust for changed secondary hash function.
7679
7680         2005-09-30  Ulrich Drepper  <drepper@redhat.com>
7681
7682         * lib/regex.h: Pretty printing.
7683         Clean up namespace a bit.
7684
7685         2005-09-30  Jakub Jelinek  <jakub@redhat.com>
7686
7687         * lib/regexec.c (update_cur_sifted_state, check_arrival,
7688         check_arrival_add_next_nodes): Avoid using uninitialized variable.
7689
7690         2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
7691                     Ulrich Drepper  <drepper@redhat.com>
7692
7693         [BZ #1302]
7694         * lib/regex_internal.h (bitset_t): Renamed from bitset.  All uses
7695         changed.
7696         (bitset_word_t): Renamed from bitset_word.  All uses changed.
7697
7698         2005-09-22  Ulrich Drepper  <drepper@redhat.com>
7699
7700         [BZ #281]
7701         * lib/regex.h: Define RE_TRANSLATE_TYPE as unsigned char *.
7702         * lib/regcomp.c: Remove unnecessary uses of
7703         unsigned RE_TRANSLATE_TYPE.
7704         * lib/regex_internal.h: Likewise.
7705         * lib/regex_internal.c: Likewise.
7706         * lib/regexec.c: Likewise.
7707         Based on a patch by Stepan Kasal <kasal@ucw.cz>.
7708
7709         2005-09-07  Ulrich Drepper  <drepper@redhat.com>
7710
7711         * lib/regexec.c (find_recover_state): Remove unnecessary
7712         initialization.
7713         (transit_state_bkref): Make DFA a const pointer.
7714         (get_subexp): Likewise.
7715         (check_arrival): Likewise.
7716         (update_cur_sifted_state): Likewise.
7717         (re_search_internal): Likewise.
7718         (prune_impossible_nodes): Likewise.
7719         (acquire_init_state_context): Likewise.
7720         (proceed_next_node): Likewise.
7721         (set_regs): Likewise.
7722         (free_fail_stack_return): Likewise.
7723         (check_arrival_expand_ecl): Mark DFA parameter as const.
7724         (check_arrival_expand_ecl_sub): Likewise.
7725         (check_subexp_limits): Likewise.
7726         (sub_epsilon_src_nodes):  Likewise.
7727         (add_epsilon_src_nodes):  Likewise.
7728         (merge_state_array): Likewise.
7729         (update_regs): Likewise.
7730         (build_trtable): Likewise.
7731         (sift_states_backward): Mark MCTX parameter as const.
7732         (build_sifted_states): Likewise.
7733         (update_cur_sifted_state): Likewise.
7734         (sift_states_mkref): Likewise.
7735         (check_arrival_expand_ecl): Mark eclosure as const.
7736         (check_dst_limits_calc_pos_1): Likewise.
7737         * lib/regex_internal.h (re_match_context_t): Make dfa a const
7738         pointer.
7739
7740         2005-09-06  Ulrich Drepper  <drepper@redhat.com>
7741
7742         * lib/regexec.c (merge_state_with_log): Define dfa as const pointer.
7743         (transit_state_sb): Likewise.
7744         (transit_state_mb): Likewise.
7745         (sift_states_iter_mb): Likewise.
7746         (check_arrival_add_next_nodes): Likewise.
7747         (check_node_accept_bytes): Change first parameter to pointer-to-const.
7748         [_LIBC] (re_search_2_stub): Use mempcpy.
7749
7750         * lib/regex_internal.c (re_string_reconstruct): Avoid calling
7751         mbrtowc for very simple UTF-8 case.
7752
7753         * lib/regex_internal.c (re_acquire_state): Make DFA pointer arg
7754         a pointer-to-const.
7755         (re_acquire_state_context): Likewise.
7756         * lib/regex_internal.h: Adjust prototypes.
7757
7758         * lib/regex.c: Prevent using C++ compilers.
7759
7760         * lib/regex_internal.c (re_acquire_state): Minor code rearrangement.
7761         (re_acquire_state_context): Likewise.
7762
7763 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
7764
7765         * modules/regex (Depends-on): Add ssize_t.
7766
7767 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
7768
7769         * m4/regex.m4 (gl_REGEX): Check for new glibc interface to
7770         translation table.
7771
7772 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
7773
7774         * doc/gnulib-tool.texi (Modified imports): pathname -> file name.
7775
7776 2006-03-29  Mark D. Baushke  <mdb@gnu.org>
7777             Bruno Haible  <bruno@clisp.org>
7778
7779         * lib/stdint_.h: On OpenBSD, don't redefine types already included in
7780         <sys/types.h> and <inttypes.h>.
7781
7782 2006-03-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7783
7784         * m4/argz.m4 (gl_FUNC_ARGZ): If we define `error_t', also define
7785         `__error_t_defined', so argp.h will not typedef the former.
7786
7787 2006-03-25  Paul Eggert  <eggert@cs.ucla.edu>
7788
7789         * m4/regex.m4 (gl_REGEX): Don't insist on REG_SYNTAX_POSIX_EGREP,
7790         REG_SYNTAX_EMACS, and REG_IGNORE_CASE.  Settle for the traditional
7791         glibc names.  Even if glibc is changed to conform to POSIX, the
7792         traditional names will be available anyway, since regex depends on
7793         the extensions module.  Also, fix a longstanding typo in the
7794         implementation of Spencer ERE test #75 from grep 2.3.  Problems
7795         reported by Emanuele Giaquinta.  Also, change sense of cached
7796         variable, so that the message makes sense.
7797
7798 2006-03-24  Simon Josefsson  <jas@extundo.com>
7799
7800         * lib/base64.c: Fix problems reported by Eric Blake <ebb9@byu.net>,
7801         including some doc fixes.
7802         (base64_encode_alloc): Fix +1 bug on allocation failures.
7803
7804 2006-03-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7805
7806         * lib/base64.c (base64_encode): Do not read past end of array with
7807         unsanitized input on systems with CHAR_BIT > 8.
7808
7809 2006-03-24  Eric Blake  <ebb9@byu.net>
7810
7811         * lib/time_r.c (copy_string_result): Remove, as it is no longer used.
7812
7813 2006-03-22  Karl Berry  <karl@gnu.org>
7814
7815         * config/srclist.txt (*setenv.[ch]): get from coreutils.
7816         * config/srclistvars.sh (COREUTILS): new var.
7817
7818 2006-03-17  Jim Meyering  <jim@meyering.net>
7819
7820         * m4/regex.m4 (gl_REGEX): Fix typo in last change:
7821         s/_REGEX_WIDE_OFFSETS/_REGEX_LARGE_OFFSETS/.
7822
7823 2006-03-16  Paul Eggert  <eggert@cs.ucla.edu>
7824
7825         * m4/regex.m4 (gl_REGEX): Don't check for off_t, since the code
7826         no longer needs it.  Instead, check that regoff_t is as least
7827         as wide as ptrdiff_t.
7828
7829         Don't define _REGEX_WIDE_OFFSETS unless using the included regex,
7830         so that our regex.h stays compatible with the installed regex.
7831         This is helpful for installers who configure --without-included-regex.
7832         Problem reported by Emanuele Giaquinta.
7833
7834 2006-03-16  Paul Eggert  <eggert@cs.ucla.edu>
7835
7836         * lib/regex.h (regoff_t) [defined _REGEX_LARGE_OFFSETS]:
7837         Typedef to long int, not to off_, as POSIX will likely change
7838         in that direction.
7839
7840 2006-03-15  Eric Blake  <ebb9@byu.net>
7841
7842         * m4/dirfd.m4 (gl_FUNC_DIRFD): Use AC_REQUIRE for AC_HEADER_DIRENT.
7843
7844 2006-03-13  Sergey Poznyakoff  <gray@gnu.org.ua>
7845
7846         * lib/argp-help.c (validate_uparams): Fix typo
7847         * lib/argp-parse.c (argp_default_options): Consistently begin help
7848         messages with a lowercase letter.
7849
7850 2006-03-11  Paul Eggert  <eggert@cs.ucla.edu>
7851
7852         * lib/time_r.h (asctime_r, ctime_r): Remove.  These functions can
7853         overrun buffers and shouldn't be used (much as gets shouldn't be
7854         used).
7855         * lib/time_r.c (asctime_r, ctime_r): Likewise.
7856
7857 2006-03-08  Simon Josefsson  <jas@extundo.com>
7858
7859         * m4/gc-random.m4: Permit 'no' as variable values and fix warnings,
7860         suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
7861
7862 2006-03-08  Simon Josefsson  <jas@extundo.com>
7863
7864         * m4/gc-random.m4: Call AC_CANONICAL_HOST and use $host_os instead of
7865         $target, suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
7866
7867 2006-03-08  Simon Josefsson  <jas@extundo.com>
7868
7869         * lib/gc-gnulib.c (randomize): Don't open files called 'no', they
7870         signal that configure disabled the device.
7871
7872 2006-03-08  Simon Josefsson  <jas@extundo.com>
7873
7874         * build-aux/maint.mk: Fix refresh-po, to handle no translated
7875         languages.
7876
7877 2006-03-07  Simon Josefsson  <jas@extundo.com>
7878
7879         * modules/getopt (Depends-on): Add unistd.
7880
7881         * modules/unistd: New file.
7882
7883 2006-03-07  Simon Josefsson  <jas@extundo.com>
7884
7885         * modules/gc-random: New file.
7886
7887 2006-03-07  Simon Josefsson  <jas@extundo.com>
7888
7889         * m4/unistd_h.m4: New file.
7890
7891 2006-03-07  Simon Josefsson  <jas@extundo.com>
7892
7893         * m4/readline.m4 (gl_FUNC_READLINE): Rewrite the cached part of the
7894         test to be side-effect free by storing the result in the cache
7895         variable gl_cv_lib_readline, and moving the assignment of
7896         LIBREADLINE and LTLIBREADLINE outside the COMMANDS-TO-SET-IT.
7897         From Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
7898
7899 2006-03-07  Simon Josefsson  <jas@extundo.com>
7900
7901         * m4/gc-random.m4: New file, mostly from gc.m4.  Warn instead of
7902         error on missing devices (the functions will return an error).
7903
7904         * m4/gc.m4: Move random stuff to gc-random.m4
7905
7906 2006-03-07  Simon Josefsson  <jas@extundo.com>
7907
7908         * lib/unistd_.h: New file.
7909
7910 2006-03-07  Simon Josefsson  <jas@extundo.com>
7911
7912         * lib/gc-libgcrypt.c, gc-gnulib.c: Use GC_USE_RANDOM.
7913
7914 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
7915
7916         * m4/unistd_h.m4 (gl_HEADER_UNISTD): Rename, to match modules file.
7917         Problem reported by Juan Manuel Guerrero.
7918
7919 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
7920
7921         * lib/c-stack.c: Include unistd.h unconditionally, since we now assume
7922         the unistd module.
7923         * lib/getlogin_r.c: Likewise.
7924         * lib/getlogin_r.h: Likewise.
7925         * lib/glob.c: Likewise.
7926         * lib/pagealign_alloc.c: Likewise.
7927         * lib/unistd_.h: Remove; no longer needed.
7928
7929 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
7930
7931         * MODULES.html.sh (Support for systems lacking POSIX:2001):
7932         Add unistd.
7933         * modules/c-stack (Depends-on): Add unistd.
7934         * modules/getlogin_r: Likewise.
7935         * modules/glob: Likewise.
7936         * modules/pagealign_alloc: Likewise.
7937         * modules/unistd (Files): Remove lib/unistd_.h.
7938         (EXTRA_DIST): Remove.
7939         (unistd.h): Create using 'echo' rather than 'cp', so that we don't
7940         need unistd_.h.
7941         (MOSTLYCLEANFILES): Remove unistd.h-t.
7942
7943 2006-03-03  Simon Josefsson  <jas@extundo.com>
7944
7945         * build-aux/maint.mk: Add several syntax checks from CoreUtils.
7946
7947 2006-03-03  Simon Josefsson  <jas@extundo.com>
7948
7949         * build-aux/maint.mk: Add refresh-po rule, based on ideas from
7950         libidn and bison.
7951
7952 2006-03-03  Simon Josefsson  <jas@extundo.com>
7953
7954         * build-aux/maint.mk: Add indent target.
7955
7956 2006-03-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de> (tiny change)
7957
7958         * m4/poll.m4 (gl_FUNC_POLL): If we deem poll(2) unacceptable, use
7959         our replacement poll.h in any case, to avoid a differing
7960         declaration from a system header.  Seen on AIX.
7961
7962 2006-03-01  Simon Josefsson  <jas@extundo.com>
7963
7964         * lib/readline.c: Fix typo, tiny patch from Stepan Kasal
7965         <kasal@ucw.cz>.
7966
7967 2006-03-01  Paul Eggert  <eggert@cs.ucla.edu>
7968
7969         * modules/gettime (Depends-on): Add extensions module.
7970         * modules/nanosleep (Depends-on): Likewise.
7971         * modules/settime (Depends-on): Likewise.
7972
7973 2006-03-01  Paul Eggert  <eggert@cs.ucla.edu>
7974
7975         * m4/clock_time.m4 (gl_CLOCK_TIME): Require gl_USE_SYSTEM_EXTENSIONS,
7976         not merely AC_GNU_SOURCE, for the benefit of Solaris 10 when compiled
7977         pedantically.
7978         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
7979         * m4/timespec.m4 (gl_TIMESPEC): Likewise.
7980
7981         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Use "=" with "test",
7982         not "==".  Reported by Ralf Wildenhues.
7983
7984 2006-03-01  Karl Berry  <karl@gnu.org>
7985
7986         * doc/Copyright/request-*: new files, synced from gnuorg.
7987
7988 2006-03-01  Karl Berry  <karl@gnu.org>
7989
7990         * config/srclist.txt (Copyright/*): new entries.
7991
7992 2006-02-28  Simon Josefsson  <jas@extundo.com>
7993
7994         * lib/getopt.c: Protect #include of unistd.h, for MSVS.
7995
7996 2006-02-27  Simon Josefsson  <jas@extundo.com>
7997
7998         * lib/base64.h: Indent #define's.  From Jim Meyering
7999         <jim@meyering.net>.
8000
8001 2006-02-27  Jim Meyering  <jim@meyering.net>
8002
8003         Revert the change of 2006-02-24, so these files can continue
8004         to be sync'd from gettext.
8005         * lib/mkdtemp.c, setenv.c, unsetenv.c: *Un*-normalize inclusion
8006         of `config.h'.
8007
8008 2006-02-26  Paul Eggert  <eggert@cs.ucla.edu>
8009
8010         * modules/intprops: New file.
8011         * MODULES.html.sh (Numeric conversion functions <stdlib.h>):
8012         Add intprops.
8013         * modules/getloadavg (Files): Remove lib/intprops.h.
8014         (Depends-on): Add intprops.
8015         * modules/human: Likewise.
8016         * modules/inttostr: Likewise.
8017         * modules/openat: Likewise.
8018         * modules/sig2str: Likewise.
8019         * modules/userspec: Likewise.
8020         * modules/utimecmp: Likewise.
8021         * modules/xnanosleep: Likewise.
8022         * modules/xstrtol: Likewise.
8023
8024 2006-02-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny changes)
8025
8026         * modules/xstrtod: Omit xstrtod.h, xstrtod.c; they're in LIB_SOURCES.
8027         * modules/lock-tests (TESTS): Use $(EXEEXT).
8028         * modules/tls-tests: Likewise.
8029         * modules/argp-tests: Likewise.
8030         (check_PROGRAMS): New var, replacing...
8031         (noinst_PROGRAMS, test_argp_SOURCES): Remove.
8032
8033 2006-02-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8034
8035         * lib/mkdtemp.c, lib/setenv.c, lib/unsetenv.c: Normalize inclusion of
8036         `config.h'.
8037
8038 2006-02-24  Paul Eggert  <eggert@cs.ucla.edu>
8039
8040         * lib/glob.c: Say "invalid" rather than "illegal" in comments.
8041
8042 2006-02-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8043
8044         Sync from coreutils.
8045         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Require gl_FUNC_LCHMOD and
8046         gl_CHDIR_SAFER.
8047
8048 2006-02-22  Jim Meyering  <jim@meyering.net>
8049
8050         Sync from coreutils.
8051         * m4/chdir-safer.m4: New file.
8052
8053 2006-02-20  Paul Eggert  <eggert@cs.ucla.edu>
8054
8055         * lib/getcwd.c (AT_FDCWD): Work around a bug in Solaris 9 and 10, where
8056         AT_FDCWD exceeds INT_MAX.
8057         * lib/openat.h (AT_FDCWD): Likewise.
8058
8059 2006-02-17  Eric Blake  <address@hidden>
8060
8061         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Fix caching error.
8062
8063 2006-02-16  Simon Josefsson  <jas@extundo.com>
8064
8065         * modules/getaddrinfo (Depends-on): Add sys_socket.
8066
8067 2006-02-15  Simon Josefsson  <jas@extundo.com>
8068
8069         * build-aux/maint.mk: Add dsyntax-check rule.
8070
8071 2006-02-15  Eric Blake  <ebb9@byu.net>
8072
8073         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Don't attempt using
8074         winsock2.h or ws2tcpip.h when sys/socket.h is present. Fixes
8075         'present but cannot compile' warnings on cygwin.
8076         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Use gl_HEADER_SYS_SOCKET.  Don't
8077         use ws2tcpip.h if sys/socket.h works.
8078         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Use gl_HEADER_SYS_SOCKET.
8079         (gl_GETADDRINFO): Don't use ws2tcpip.h when sys/socket.h is present.
8080
8081 2006-02-14  Simon Josefsson  <jas@extundo.com>
8082
8083         * modules/maintainer-makefile (Files): Rename.
8084
8085         * build-aux/GNUmakefile: Rename Makefile.maint to maint.mk
8086         and (the local) Makefile.cfg to maint-cfg.mk.
8087
8088         * build-aux/Makefile.maint, build-aux/maint.mk: Renamed the former
8089         to the latter.
8090
8091         * modules/maintainer-makefile: New module.
8092
8093         * build-aux/Makefile.maint: New file, from GNU CoreUtils, although
8094         severaly stripped to make it possible to build it up from scratch
8095         with reliable tests.
8096
8097         * build-aux/GNUmakefile: New file, from GNU CoreUtils with some
8098         fixes to permit overriding the default actions when configure and
8099         makefile are not available.
8100
8101 2006-02-14  Paul Eggert  <eggert@cs.ucla.edu>
8102
8103         Sync from coreutils.
8104         * modules/lstat (Depends-on): Don't depend on xalloc.
8105         (License): Change from GPL to LGPL, since this is now simply a
8106         replacement for a libc function.
8107
8108 2006-02-14  Jim Meyering  <jim@meyering.net>
8109
8110         Sync from coreutils.
8111
8112         Eliminate the unwelcome (albeit unlikely) possibility of xmalloc
8113         failure on deficient systems, and simplify gnulib lgpl dependencies.
8114         * lib/lstat.c (rpl_lstat): Rewrite to use stat() in place of the
8115         xmalloc/lstat combination.  Based on a patch from Bruno Haible.
8116
8117         * lib/xalloc-die.c: Remove unused definition of N_.
8118
8119 2006-02-14  Jim Meyering  <jim@meyering.net>
8120
8121         Sync from coreutils.
8122         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Invoke
8123         AC_CHECK_FUNCS(getmntent) unconditionally so that tests of
8124         $ac_cv_func_getmntent (e.g., in gl_LIST_MOUNTED_FILE_SYSTEMS) need not
8125         double-quote uses of that variable, to accommodate the rare case in
8126         which getmntent is available in none of the libraries checked.  This
8127         happens at least on FreeBSD 5.0.
8128
8129 2006-02-13  Simon Josefsson  <jas@extundo.com>
8130
8131         * gnulib-tool (Usage): Fix --import, from
8132         karl@freefriends.org (Karl Berry).
8133
8134 2006-02-13  Sergey Poznyakoff  <gray@gnu.org.ua>
8135
8136         * lib/argp-fmtstream.c: Restore another bugfix lost on 2005-12-12
8137
8138 2006-02-07  Sergey Poznyakoff  <gray@gnu.org.ua>
8139
8140         * lib/argp-namefrob.h: Restore changes accidentally lost during the
8141         "autoupdate" on 2005-12-12.
8142
8143 2006-02-07  Paul Eggert  <eggert@cs.ucla.edu>
8144
8145         * modules/closeout (Depends-on): Remove atexit.
8146
8147 2006-02-07  Paul Eggert  <eggert@cs.ucla.edu>
8148
8149         * lib/closeout.c (close_stdout): Don't assume 'bool' converts nonzero
8150         ints to 0 or 1, as this isn't true for the stdbool.h substitute.
8151
8152 2006-02-05  Paul Eggert  <eggert@cs.ucla.edu>
8153
8154         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Don't #define
8155         __EXTENSIONS__ if this causes compilation to fail.  Problem
8156         reported by Nelson H. F. Beebe with Solaris 10 and Sun C 5.7
8157         c89 -D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED.
8158
8159 2006-01-27  Paul Eggert  <eggert@cs.ucla.edu>
8160
8161         * lib/fnmatch.c (L_): Renamed from L, to work around a bug in
8162         Mac OS X 10.3.9 with GCC 3 reported by Claudio Fontana in
8163         <http://lists.gnu.org/archive/html/bug-gnulib/2006-01/msg00074.html>.
8164         All uses changed.
8165
8166 2006-01-26  Simon Josefsson  <jas@extundo.com>
8167
8168         * lib/socket_.h: Set WINVER to 0x0501, to make sure getaddrinfo
8169         prototype is visible on mingw32.
8170
8171         * lib/getaddrinfo.h: Define EAI_ADDRFAMILY and EAI_SYSTEM if not set,
8172         for mingw32.
8173
8174         * lib/gai_strerror.c, getaddrinfo.h: Protect netdb.h #include (for
8175         mingw32).
8176
8177 2006-01-26  Paul Eggert  <eggert@cs.ucla.edu>
8178
8179         * lib/fts.c (diropen): Open with O_NOCTTY | O_NONBLOCK too.  Don't
8180         attempt to open for write; this always fails, at least on POSIX
8181         hosts.  This reinstates the 2006-01-09 change, which was
8182         inadvertently removed.
8183
8184 2006-01-26  Bruno Haible  <bruno@clisp.org>
8185
8186         * gnulib-tool (func_import): Use "trap 'exit $?' instead of "trap :".
8187         Reported by Paul Eggert.
8188
8189 2006-01-26  Bruno Haible  <bruno@clisp.org>
8190             Paul Eggert  <eggert@cs.ucla.edu>
8191
8192         * lib/stdbool_.h (_Bool)
8193         [(! (defined __cplusplus || defined __BEOS__)
8194           && !defined __GNUC__
8195           && !(defined __HP_cc || defined __xlc__
8196                || (defined __SUNPRO_C && (__SUNPRO_C < 0x550 || __STDC__ == 1))
8197                || defined __sgi))]:
8198         #define to signed char in these cases too; this simplifies
8199         the code (so that we don't have to worry about HP-UX, AIX, SunPRO,
8200         etc., separately) and makes it more conservative.
8201
8202 2006-01-25  Simon Josefsson  <jas@extundo.com>
8203
8204         * m4/getaddrinfo.m4: Look for getaddrinfo inside ws2tcip.h and
8205         -lws2_32.  Protect sys/socket.h and netdb.h #include's.  Include
8206         ws2tcpip.h with WINVER=0x0501.  All for mingw32.
8207
8208 2006-01-25  Sergey Poznyakoff  <gray@gnu.org.ua>
8209
8210         * lib/argp-namefrob.h: Bugfix. Remove stray #
8211
8212 2006-01-25  Paul Eggert  <eggert@cs.ucla.edu>
8213
8214         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check for xlc bug if __GCC__ too,
8215         so that we test the test.
8216         Check for yet another HP-UX cc bug involving *bool |= bool.
8217
8218 2006-01-25  Karl Berry  <karl@gnu.org>
8219
8220         * config/srclist.txt (vasnprintf.c): sync lost.
8221
8222 2006-01-25  Jim Meyering  <jim@meyering.net>
8223
8224         Sync from the stable (b5) branch of coreutils:
8225
8226         * lib/fts.c (fts_children): Don't let close() clobber errno from
8227         failed fchdir().
8228
8229         * lib/fts.c (fts_stat): When following a symlink-to-directory,
8230         don't necessarily interpret stat-fails+lstat-succeeds as indicating
8231         a dangling symlink.  That can also happen at least for ELOOP.
8232         The fix: return FTS_SLNONE only when the stat errno is ENOENT.
8233         FYI, this bug predates the inclusion of fts.c in coreutils.
8234
8235         * lib/fts.c (fts_open): Put new maxarglen declaration and uses
8236         in their own block, so pre-c99 compilers don't object.
8237
8238         Avoid the double-free (first in fts_read, second in fts_close) that
8239         would occur when an `active' directory is made inaccessible (e.g.,
8240         via chmod a-x) during a traversal.
8241         * lib/fts.c (fts_read): After a failed fchdir, update sp->fts_cur
8242         before returning.  Reproduce this failure by
8243         mkdir -p a/b; cd a; chmod a-x . b
8244         Reported by Stavros Passas.
8245
8246 2006-01-25  Jim Meyering  <jim@meyering.net>
8247
8248         * lib/fileblocks.c: Remove more useless parentheses.
8249         * lib/readutmp.h: Likewise.
8250
8251 2006-01-25  Bruno Haible  <bruno@clisp.org>
8252
8253         * lib/stdbool_.h (_Bool) [IRIX cc]: Define as 'signed char', to avoid
8254         warnings.
8255         Reported by Paul Eggert.
8256
8257 2006-01-25  Bruno Haible  <bruno@clisp.org>
8258
8259         * gnulib-tool (func_import): Use "trap :" instead of "trap -" to get
8260         rid of a trap command. For Solaris sh.
8261         Reported by Mark D. Baushke <mdb@gnu.org>.
8262
8263 2006-01-24  Simon Josefsson  <jas@extundo.com>
8264
8265         * lib/socket_.h (SHUT_WR, SHUT_RDWR): Don't hardcode, suggested by
8266         Bruno.
8267
8268 2006-01-24  Karl Berry  <karl@gnu.org>
8269
8270         * config/srclist.txt (argp-namefrob.h): sync lost.
8271
8272 2006-01-24  Jim Meyering  <jim@meyering.net>
8273
8274         * modules/openat (Files): Add lib/intprops.h.
8275         From Mark D. Baushke.
8276
8277 2006-01-24  Jim Meyering  <jim@meyering.net>
8278
8279         * m4/openat.m4 (gl_FUNC_OPENAT): Add AC_LIBSOURCES([intprops.h]).
8280         Reported by Mark D. Baushke.
8281
8282 2006-01-24  Jim Meyering  <jim@meyering.net>
8283
8284         * lib/socket_.h: Remove useless parentheses in uses of cpp `defined'.
8285
8286 2006-01-24  Bruno Haible  <bruno@clisp.org>
8287
8288         * modules/strnlen (Maintainer): Change from glibc to all.
8289
8290 2006-01-24  Bruno Haible  <bruno@clisp.org>
8291
8292         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check for IBM and HP-UX bugs.
8293         Patch by Paul Eggert.
8294
8295 2006-01-24  Bruno Haible  <bruno@clisp.org>
8296
8297         * lib/stdbool_.h (_Bool) [__cplusplus]: Don't define if the compiler
8298         already has it.
8299         Report and patch by Albert Chin-A-Young  <china@thewrittenword.com> on
8300         2005-11-26.
8301
8302         * lib/stdbool_.h (_Bool) [HP-UX cc, AIX cc,xlc]: Define as
8303         'signed char' to avoid problems with the built-in _Bool type.
8304         Reported by Paul Eggert on 2005-11-26.
8305
8306 2006-01-24  Bruno Haible  <bruno@clisp.org>
8307
8308         * gnulib-tool (func_import): Avoid constructing complicated sed
8309         expressions inside backquote.
8310         Report and solution by Mark D. Baushke <mdb@gnu.org>.
8311
8312 2006-01-23  Ulrich Drepper  <drepper@redhat.com>
8313
8314         These changes imported from libc.
8315         * lib/getopt.c: Use __fxprintf instead of inline stream orientation
8316         test and two separate function calls.
8317         * lib/strndup.c (__strndup): Add libc_hidden_def.
8318
8319 2006-01-23  Simon Josefsson  <jas@extundo.com>
8320
8321         * modules/lock-tests: Use check_PROGRAMS instead of noinst_PROGRAMS.
8322         Remove the test_*_SOURCES variable: automake infers it by default.
8323         * modules/tls-tests: Likewise.
8324
8325 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
8326
8327         Work around porting bugs reported by Dieter in
8328         <http://lists.gnu.org/archive/html/bug-bison/2006-01/msg00049.html>.
8329         * lib/getopt.c (_NOPROTO): Remove; no longer needed.
8330         Include <stdlib.h> and <unistd.h> in all environments; it's safe now.
8331         Include "getopt.h" first, to check interface.
8332         (getenv): Declare only if defined HAVE_DECL_GETENV &&
8333         !HAVE_DECL_GETENV.
8334         * lib/strndup.c [!_LIBC]: Include "strndup.h" to get prototype.
8335         (__strndup): Revert to K&R-style function dfns, the glibc style.
8336         * lib/strnlen.c: Don't claim it's taken from glibc; it's not.
8337         (strnlen, __strnlen): Remove #defines and #undefs; not needed.
8338         Include strnlen.h first, to get prototype properly.
8339         (strnlen): Renamed from __strnlen.
8340         Remove weak alias.
8341
8342 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
8343
8344         * m4/getopt.m4 (gl_PREREQ_GETOPT): Check for getenv decl.
8345
8346 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
8347
8348         * config/srclist.txt: Adjust to reflect glibc reorganization.
8349         This affects only comments.
8350
8351 2006-01-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
8352
8353          * gnulib-tool, build-aux/csharpcomp.sh.in: Do not pass `-q' to mktemp.
8354          Reported by Bruce Korb <bkorb@gnu.org>.
8355
8356 2006-01-22  Paul Eggert  <eggert@cs.ucla.edu>
8357
8358         * lib/quotearg.c (quotearg_buffer_restyled): Add "default: break;"
8359         to pacify gcc -Wswitch-default.
8360
8361 2006-01-22  Bruno Haible  <bruno@clisp.org>
8362
8363         * lib/vasnprintf.c (VASNPRINTF): In the computation of the size of the
8364         temporary buffer for sprintf, take into account the precision also
8365         for 'd', 'i', 'u', 'o', 'x', 'X'.
8366
8367 2006-01-21  Sergey Poznyakoff  <gray@gnu.org.ua>
8368
8369         * modules/argp-tests: New module
8370         * tests/test-argp.c: New file
8371         * tests/test-argp-2.sh: New file
8372
8373 2006-01-21  Sergey Poznyakoff  <gray@gnu.org.ua>
8374
8375         * lib/argp-help.c (usage_long_opt): Do not print DOC options.
8376         (__argp_base_name): Removed
8377         * lib/argp-namefrob.h (__argp_basename): Removed definition. Was a
8378         typo.
8379         (__argp_base_name): Provide macro definition or extern declaration
8380         depending on the configuration
8381
8382 2006-01-20  Simon Josefsson  <jas@extundo.com>
8383
8384         * modules/inet_ntop (Depends-on): Depend on sys_socket.
8385
8386 2006-01-20  Simon Josefsson  <jas@extundo.com>
8387
8388         * lib/inet_ntop.h: Unconditionally include sys/socket.h.
8389
8390 2006-01-20  Paul Eggert  <eggert@cs.ucla.edu>
8391
8392         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Use -Wl,-z,ignore
8393         rather than -Xlinker -z -Xlinker ignore, as it's more portable.
8394         Suggested by Bruno Haible.
8395
8396 2006-01-20  Karl Berry  <karl@gnu.org>
8397
8398         * config/srclist.txt (argp-fmtstream.h, localcharset.c): comment out
8399         until changes propagate, I guess.
8400
8401 2006-01-19  Simon Josefsson  <jas@extundo.com>
8402
8403         * m4/socklen.m4: Look in ws2tcpip.h too, for mingw32.
8404
8405 2006-01-19  Simon Josefsson  <jas@extundo.com>
8406
8407         * lib/socket_.h: Map SHUT_RD, SHUT_WR, SHUT_RDWR correctly.
8408
8409 2006-01-19  Simon Josefsson  <jas@extundo.com>
8410
8411         * gnulib-tool: Set check_PROGRAMS.
8412
8413         * modules/arcfour-tests, modules/arctwo-tests, modules/crc-tests,
8414         modules/des-tests, modules/gc-arcfour-tests,
8415         modules/gc-arctwo-tests, modules/gc-des-tests,
8416         modules/gc-hmac-md5-tests, modules/gc-hmac-sha1-tests,
8417         modules/gc-md2-tests, modules/gc-md4-tests, modules/gc-md5-tests,
8418         modules/gc-pbkdf2-sha1-tests, modules/gc-rijndael-tests,
8419         modules/gc-sha1-tests, modules/gc-tests, modules/hmac-md5-tests,
8420         modules/hmac-sha1-tests, modules/md2-tests, modules/md4-tests,
8421         modules/md5-tests, modules/readline, modules/rijndael-tests: Use
8422         check_PROGRAMS instead of noinst_PROGRAMS to be able to remove
8423         test_*_SOURCES.
8424
8425 2006-01-18  Simon Josefsson  <jas@extundo.com>
8426
8427         * modules/socklen (Depends-on): Depend on sys_socket.
8428
8429 2006-01-18  Simon Josefsson  <jas@extundo.com>
8430
8431         * modules/arcfour-tests, modules/arctwo-tests, modules/crc-tests,
8432         modules/des-tests, modules/gc-arcfour-tests,
8433         modules/gc-arctwo-tests, modules/gc-des-tests,
8434         modules/gc-hmac-md5-tests, modules/gc-hmac-sha1-tests,
8435         modules/gc-md2-tests, modules/gc-md4-tests, modules/gc-md5-tests,
8436         modules/gc-pbkdf2-sha1-tests, modules/gc-rijndael-tests,
8437         modules/gc-sha1-tests, modules/gc-tests, modules/hmac-md5-tests,
8438         modules/hmac-sha1-tests, modules/md2-tests, modules/md4-tests,
8439         modules/md5-tests, modules/readline, modules/rijndael-tests: Add
8440         $(EXEEXT) to automake TESTS variable, for mingw32.
8441
8442 2006-01-17  Simon Josefsson  <jas@extundo.com>
8443
8444         * modules/socklen (Include): Need sys/socket.h.
8445
8446 2006-01-17  Bruno Haible  <bruno@clisp.org>
8447
8448         * modules/ssize_t (Include): Add <sys/types.h>.
8449
8450 2006-01-16  Paul Eggert  <eggert@cs.ucla.edu>
8451
8452         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Don't use ldd, as
8453         it's not portable and it doesn't work with cross-compiles.
8454         Problem reported by Bruno Haible.  Fix missing-$ typo in
8455         'test "gl_cv_ignore_unused_libraries" ...' that prevented
8456         -zignore from being used with Sun's C compiler.
8457
8458 2006-01-12  Simon Josefsson  <jas@extundo.com>
8459
8460         * lib/base64.c: Fix warning, reported by Bruno Haible
8461         <bruno@clisp.org> and patch by Paul Eggert <eggert@CS.UCLA.EDU>.
8462
8463 2006-01-12  Bruno Haible  <bruno@clisp.org>
8464
8465         * modules/ldd: New file.
8466         * build-aux/ldd.sh.in: New file.
8467         * MODULES.html.sh (Support for building libraries and executables): Add
8468         ldd.
8469
8470 2006-01-12  Bruno Haible  <bruno@clisp.org>
8471
8472         * m4/ldd.m4: New file.
8473
8474 2006-01-12  Bruno Haible  <bruno@clisp.org>
8475
8476         * gnulib-tool (func_import, func_create_testdir): Don't go into an
8477         endless loop while replacing $auxdir with build-aux.
8478
8479 2006-01-11  Simon Josefsson  <jas@extundo.com>
8480
8481         * lib/stdint_.h (SIZE_MAX): Add missing (.
8482
8483 2006-01-11  Paul Eggert  <eggert@cs.ucla.edu>
8484
8485         Sync from coreutils.
8486         * lib/md5.c: Fix commentary typos.
8487         (alignof, UNALIGNED_P): No need for a GCC-specific version.
8488         * lib/md5.h (__attribute__): Remove; unused.
8489         * lib/sha1.c: Fix commentary to match md5 better.
8490         * lib/sha1.h (struct sha1_ctx): Use a word buffer, not a byte buffer,
8491         so that we don't need to worry about alignment.  All uses changed.
8492         This merges the 2005-10-28 md5 change into sha1.
8493
8494 2006-01-11  Jim Meyering  <jim@meyering.net>
8495
8496         Sync from coreutils.
8497         * lib/md5.c (OP): Fix spacing.
8498
8499 2006-01-11  Bruno Haible  <bruno@clisp.org>
8500
8501         Ensure automatic ordering between gl_LOCK and gl_ARGP.
8502         * m4/lock.m4 (gl_LOCK_BODY): Renamed from gl_LOCK.
8503         (gl_LOCK): New macro, requiring gl_LOCK_BODY.
8504
8505 2006-01-11  Bruno Haible  <bruno@clisp.org>
8506
8507         Ensure automatic ordering between gl_LOCK and gl_ARGP.
8508         * gnulib-tool (func_import, func_create_testdir): Put gl_LOCK into
8509         the "early" section as well.
8510
8511 2006-01-11  Bruno Haible  <bruno@clisp.org>
8512
8513         Avoid "ar: no archive members specified" error on MacOS X.
8514         * gnulib-tool (func_modules_add_dummy): New function.
8515         (func_import, func_create_testdir): Invoke it.
8516
8517 2006-01-11  Bruno Haible  <bruno@clisp.org>
8518
8519         * gnulib-tool (func_import, func_create_testdir): Replace build-aux
8520         with $auxdir in AC_CONFIG_FILES statements.
8521
8522 2006-01-11  Bruno Haible  <bruno@clisp.org>
8523
8524         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
8525         Initialize also noinst_HEADERS to empty.
8526
8527 2006-01-11  Bruno Haible  <bruno@clisp.org>
8528
8529         * gnulib-tool (AUTOMAKEPATH, AUTOCONF, ACLOCAL, AUTOMAKE): New
8530         variables.
8531         (func_create_megatestdir): Call aclocal, autoconf, automake here, not
8532         autoreconf.
8533
8534 2006-01-11  Bruno Haible  <bruno@clisp.org>
8535
8536         * gnulib-tool (AUTOCONF, ACLOCAL, AUTOMAKE, AUTORECONF): Make
8537         overridable by the user.
8538         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
8539
8540 2006-01-10  Simon Josefsson  <jas@extundo.com>
8541
8542         * modules/sys_socket: New file.
8543
8544 2006-01-10  Simon Josefsson  <jas@extundo.com>
8545
8546         * m4/sys_socket_h.m4: New file.
8547
8548 2006-01-10  Simon Josefsson  <jas@extundo.com>
8549
8550         * lib/socket_.h: New file.
8551
8552 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
8553
8554         * modules/readutmp (Maintainer): Add myself.
8555
8556 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
8557
8558         * m4/memcoll.m4 (gl_MEMCOLL): Don't require AC_FUNC_MEMCMP, undoing
8559         the 2002-12-31 change.  Problem and fix reported by Bruno Haible.
8560         People who are still concerned with buggy memcmp implementations
8561         can invoke gl_FUNC_MEMCMP themselves.
8562
8563 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
8564
8565         * lib/regex_internal.h (BITSET_WORD_BITS):
8566         Work around a bug in 64-bit PGC (before version 6.1-2), where the
8567         preprocessor mishandles large unsigned values as if they were signed.
8568         Problem reported by Claudio Fontana in
8569         <http://lists.gnu.org/archive/html/bug-gnulib/2005-12/msg00061.html>.
8570
8571 2006-01-10  Jim Meyering  <jim@meyering.net>
8572
8573         Avoid the double-free (first in fts_read, second in fts_close) that
8574         would occur when an `active' directory is made inaccessible (e.g.,
8575         via chmod a-x) during a traversal.
8576         * lib/fts.c (fts_read): After a failed fchdir, update sp->fts_cur
8577         before returning.  Reproduce this failure by
8578         mkdir -p a/b; cd a; chmod a-x . b
8579         Reported by Stavros Passas.
8580
8581         Sync from coreutils.
8582         * lib/sha1.c: Tweak grammar in a comment.
8583
8584 2006-01-10  Jim Meyering  <jim@meyering.net>
8585
8586         * m4/fpending.m4: Also include <stdio.h>, for Dragonfly.
8587         Patch by Joerg Sonnenberger.
8588
8589 2006-01-10  Bruno Haible  <bruno@clisp.org>
8590
8591         * modules/readutmp: Depend on module free.
8592         * modules/strtok_r: Depend on module restrict.
8593
8594 2006-01-10  Bruno Haible  <bruno@clisp.org>
8595
8596         * modules/gettext (configure.ac): Add an invocation of
8597         AM_GNU_GETTEXT_VERSION. Needed since autoreconf is used by gnulib-tool.
8598
8599 2006-01-10  Bruno Haible  <bruno@clisp.org>
8600
8601         * m4/localcharset.m4 (gl_LOCALCHARSET): Also test for getc_unlocked.
8602         Reported by Werner Lemberg <wl@gnu.org>.
8603
8604 2006-01-10  Bruno Haible  <bruno@clisp.org>
8605
8606         * lib/localcharset.c: Update from GNU gettext.
8607
8608 2006-01-10  Bruno Haible  <bruno@clisp.org>
8609
8610         * lib/argp.h (__const): Remove macro. Use const instead.
8611         * lib/argp-fmtstream.h (__const): Likewise.
8612         * lib/glob_.h (__const): Remove macro.
8613         * lib/glob-libc.h: Use const instead of __const.
8614
8615 2006-01-10  Bruno Haible  <bruno@clisp.org>
8616
8617         * gnulib-tool (func_emit_tests_Makefile_am): Emit an empty SUBDIR
8618         variable.
8619         Needed to avoid an automake error regarding the 'gettext' module.
8620
8621 2006-01-09  Simon Josefsson  <jas@extundo.com>
8622
8623         * modules/inet_ntop (Depends-on): Add restrict.
8624
8625 2006-01-09  Simon Josefsson  <jas@extundo.com>
8626
8627         * modules/gc-rijndael-tests (License): Put under LGPL.
8628
8629         * modules/gc-des-tests (License): Likewise.
8630
8631         * modules/gc-arcfour-tests (License): Likewise.
8632
8633         * modules/gc-arctwo-tests (License): Likewise.
8634
8635         * modules/gc-pbkdf2-sha1-tests (License): Likewise.
8636
8637         * modules/gc-hmac-sha1-tests (Files): Likewise.
8638
8639         * modules/gc-hmac-md5-tests (License): Likewise.
8640
8641         * modules/gc-sha1-tests (License): Likewise.
8642
8643         * modules/gc-md5-tests (License): Likewise.
8644
8645         * modules/gc-md4-tests (License): Likewise.
8646
8647         * modules/gc-md2-tests (License): Likewise.
8648
8649         * modules/gc-tests (License): Likewise.
8650
8651         * modules/des-tests (License): Likewise.
8652
8653         * modules/md4-tests (License): Likewise.
8654
8655         * modules/md2-tests (License): Likewise.
8656
8657 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
8658
8659         Sync from coreutils:
8660
8661         * MODULES.html.sh (build_lib): New section, with new lib-ignore module.
8662         * modules/lib-ignore: New file.
8663         * modules/mkdir-p (Files): Add chdir-safer.c, chdir-safer.h, lchmod.h,
8664         chdir-safer.m4, lchmod.m4.
8665         * modules/openat: Add mkdirat.c, openat-priv.h.
8666
8667 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
8668
8669         Sync from coreutils.
8670         * m4/lib-ignore.m4: New file.
8671         * m4/lchmod.m4: New file.
8672
8673 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
8674
8675         Sync from coreutils.
8676         * lib/chdir-long.c (cdb_free): Don't bother trying to open directory
8677         for write access: POSIX says that must fail.
8678         * lib/fts.c (diropen): Likewise.
8679         * lib/save-cwd.c (save_cwd): Likewise.
8680         * lib/chdir-long.c (cdb_free): Open with O_NOCTTY | O_NONBLOCK as
8681         well, for minor improvements on hosts that lack O_DIRECTORY.
8682         * lib/chown.c (rpl_chown) [CHOWN_MODIFIES_SYMLINK]:
8683         Don't try O_WRONLY unless O_RDONLY failed wth EACCES.
8684         Fall back on chown if open failed with EACCES.
8685
8686         * lib/gettime.c (gettime) [!defined OK_TO_USE_1S_CLOCK]:
8687         Report an error at compile-time if only a 1-second nominal clock
8688         resolution is found.
8689
8690         * lib/lchmod.h: New file.
8691         * lib/mkdir-p.c: Include lchmod.h, lchown.h.
8692         (make_dir_parents): Use lchown rather than chown, and
8693         lchmod rather than chmod.
8694
8695         * lib/mountlist.c (ME_DUMMY): "none" and "proc" file systems are
8696         dummies too.  Problem with "none" reported by Bob Proulx.  Problem with
8697         "proc" reported by n0dalus.
8698
8699         * lib/mountlist.c: Include <limits.h>.
8700         (dev_from_mount_options)
8701         [defined MOUNTED_GETMNTENT1 || defined MOUNTED_GETMNTENT2]:
8702         New function.  It no longer assumes "dev=" has the System V meaning
8703         on Linux (since it doesn't).  It also parses "dev=" more carefully.
8704         (read_file_system_list)
8705         [defined MOUNTED_GETMNTENT1 || defined MOUNTED_GETMNTENT2]: Use it.
8706         MOUNTED_GETMNTENT2 is new here; the code didn't used to look for
8707         dev= in that case.
8708
8709         * lib/posixtm.h (PDS_PRE_2000): New macro.
8710         * lib/posixtm.c (year): Arg is now syntax_bits rather than
8711         allow_century.  All usages changed.  Reject dates outside the range
8712         1969-1999 if PDS_PRE_2000 is used.
8713
8714 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
8715
8716         Sync from coreutils.
8717         * doc/getdate.texi (General date syntax): Invalid dates are rejected.
8718         (Time of day items): Mention the possibility of leap seconds.
8719         Problem reported by Dr. David Alan Gilbert.
8720
8721 2006-01-09  Jim Meyering  <jim@meyering.net>
8722
8723         Sync from coreutils.
8724
8725         * lib/version-etc.c (COPYRIGHT_YEAR): Update to 2006.
8726
8727         * lib/chdir-safer.h, lib/chdir-safer.c: New files.
8728
8729         * lib/modechange.c (mode_compile): Reject an invalid mode string
8730         that starts with an octal digit.  From Andreas Gruenbacher.
8731
8732         * lib/openat.c: Include "fcntl--.h" and "unistd--.h", to map open
8733         and dup to open_safer and dup_safer, respectively.
8734         (openat_permissive): Fix typo in comment.
8735
8736         * lib/openat.c: Don't include <stdlib.h>, <unistd.h>, <fcntl.h>,
8737         "gettext.h"; either no longer needed or are guaranteed by openat.h.
8738         (_): Remove; no longer needed.
8739         (openat): Renamed from rpl_openat; no need for rpl_openat
8740         since openat.h renames openat for us.
8741         Replace most of the body with a call to openat_permissive,
8742         to avoid duplicate code.
8743         Port to (probably hypothetical) environments were mode_t is
8744         wider than int.
8745         (openat_permissive): Require mode arg, so that we can check
8746         types better.  Put it just after flags.  Change cwd failure
8747         indicator from pointer-to-bool to pointer-to-errno-value.
8748         All callers changed.
8749         Invoke openat_save_fail and/or openat_restore_fail if
8750         cwd_errno is null, so that openat can call us.
8751         (openat_permissive, fdopendir, fstatat, unlinkat):
8752         Simplify errno handling to avoid some duplicate code,
8753         as it's OK to set errno on success.
8754         * lib/openat.h: Revamp code so that function macros depend on
8755         __OPENAT_PREFIX only, not also on AT_FDCWD.
8756         (openat_ro): Remove.  Caller changed to use openat_permissive.
8757         (openat_permissive): Now a macro, if not a function.
8758         (openat_restore_fail, openat_save_fail): Now always functions,
8759         since mkdirat needs them even if __OPENAT_PREFIX is defined.
8760
8761         * lib/openat-priv.h: New file, defining macros used by mkdirat.c
8762         and openat.c.
8763         * lib/mkdirat.c: Include openat-priv.h.
8764         Remove definitions of macros defined therein.
8765         * lib/openat.c: Likewise.
8766
8767         * lib/mkdirat.c (mkdirat): New file and function.
8768         * lib/openat.h (mkdirat): Declare.
8769
8770         * lib/openat.c (fdopendir): Don't change errno when returning non-NULL.
8771
8772         * lib/openat.h (openat_permissive): Declare.
8773         (openat_ro): Define.
8774
8775         * lib/openat.c (EXPECTED_ERRNO): New macro.
8776         (openat_permissive): New function -- used in remove.c rewrite.
8777         (all functions): Set errno just before returning, only if there
8778         was an actual failure.
8779         Use EXPECTED_ERRNO rather than comparing against only ENOTDIR.
8780
8781         Emulate openat-family functions using Linux's procfs, if possible.
8782         Idea and some code based on Ulrich Drepper's glibc changes.
8783
8784         * lib/openat.c: (BUILD_PROC_NAME): New macro.
8785         Include <stdio.h>, <string.h>, "alloca.h" and "intprops.h".
8786         (rpl_openat): Emulate by trying to open /proc/self/fd/%d/%s,
8787         before falling back on save_cwd and restore_cwd.
8788         (fdopendir, fstatat, unlinkat): Likewise.
8789
8790         * lib/openat.c (fstatat, unlinkat): Perform the syscall directly,
8791         skipping the save_cwd...restore_cwd overhead, if FILE is absolute.
8792
8793         * lib/openat.c (rpl_openat): Use the promoted type (int), not mode_t,
8794         as second argument to va_arg.  Otherwise, some versions of gcc
8795         warn that `if this code is reached, the program will abort'.
8796
8797 2006-01-09  Jim Meyering  <jim@meyering.net>
8798
8799         Sync from coreutils.
8800         * m4/openat.m4 (gl_FUNC_OPENAT): Require and compile mkdirat.c.
8801         Require openat-priv.h.
8802
8803 2006-01-09  Bruno Haible  <bruno@clisp.org>
8804
8805         * modules/strnlen (Include): Use strnlen.h.
8806
8807 2006-01-09  Bruno Haible  <bruno@clisp.org>
8808
8809         * m4/stdint.m4 (gl_STDINT_H): Also test for <sys/bitypes.h>.
8810
8811 2006-01-09  Bruno Haible  <bruno@clisp.org>
8812
8813         * lib/sysexit_.h (EX_OK): New macro.
8814         Suggested by Martin Lambers <marlam@marlam.de>.
8815
8816 2006-01-09  Bruno Haible  <bruno@clisp.org>
8817
8818         * lib/stdint_.h: On Linux libc4 and libc5, include <sys/bitypes.h> and
8819         don't define _STDINT_H_NEED_SIGNED_INT_TYPES.
8820
8821 2006-01-09  Bruno Haible  <bruno@clisp.org>
8822
8823         * lib/stdint_.h (SIZE_MAX): Write the value without involving negative
8824         numbers.
8825
8826 2006-01-09  Bruno Haible  <bruno@clisp.org>
8827
8828         * lib/javacomp.sh.in: Move to ../build-aux/javacomp.sh.in.
8829         * lib/javaexec.sh.in: Move to ../build-aux/javaexec.sh.in.
8830         * lib/csharpcomp.sh.in: Move to ../build-aux/csharpcomp.sh.in.
8831         * lib/csharpexec.sh.in: Move to ../build-aux/csharpexec.sh.in.
8832
8833 2006-01-09  Bruno Haible  <bruno@clisp.org>
8834
8835         * build-aux/javacomp.sh.in: New file, moved from lib/.
8836         * modules/javacomp-script (Files): Update.
8837         (configure.ac): Add AC_CONFIG_FILES invocation.
8838         (EXTRA_DIST): Remove variable.
8839
8840         * build-aux/javaexec.sh.in: New file, moved from lib/.
8841         * modules/javaexec (Files): Update.
8842         (configure.ac): Add AC_CONFIG_FILES invocation.
8843         (EXTRA_DIST): Remove javaexec.sh.in.
8844
8845         * build-aux/csharpcomp.sh.in: New file, moved from lib/.
8846         * modules/csharpcomp-script (Files): Update.
8847         (configure.ac): Add AC_CONFIG_FILES invocation.
8848         (EXTRA_DIST): Remove variable.
8849
8850         * build-aux/csharpexec.sh.in: New file, moved from lib/.
8851         * modules/csharpexec (Files): Update.
8852         (configure.ac): Add AC_CONFIG_FILES invocation.
8853         (EXTRA_DIST): Remove csharpexec.sh.in.
8854
8855 2006-01-09  Andreas Gruenbacher  <agruen@suse.de>
8856
8857         Sync from coreutils.
8858
8859         Add POSIX ACL support
8860         * lib/acl.h (copy_acl, set_acl): Add declarations.
8861         * lib/acl.c (acl_entries): Add fallback implementation for POSIX ACL
8862         systems other than Linux.
8863         (chmod_or_fchmod): New function: use fchmod when possible,
8864         and chmod otherwise.
8865         (file_has_acl): Add a POSIX ACL implementation, with a
8866         Linux-specific subcase.
8867         (copy_acl): Add: copy an acl and S_ISUID, S_ISGID, and
8868         S_ISVTX from one file to another.  Fall back to fchmod/chmod when
8869         acls are unsupported.
8870         (set_acl): Add: set a file's acl and S_ISUID, S_ISGID, and
8871         S_ISVTX to a defined value.  Fall back to fchmod/chmod when acls
8872         are unsupported.
8873
8874 2006-01-09  Andreas Gruenbacher  <agruen@suse.de>
8875
8876         Sync from coreutils.
8877         * m4/acl.m4 (AC_FUNC_ACL): Add POSIX ACL and Linux-specific acl tests.
8878
8879 2006-01-07  Bruno Haible  <bruno@clisp.org>
8880
8881         * gnulib-tool (func_import): Add an AC_PROG_RANLIB dependency to
8882         gl_EARLY.
8883
8884 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
8885
8886         * lib/strftime.c (tzname): Don't declare if it is already #defined.
8887         Problem reported for Mingw by Mark Junker.
8888
8889 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
8890
8891         * README: Gnulib normally doesn't generate a tarball.
8892
8893 2006-01-03  Paul Eggert  <eggert@cs.ucla.edu>
8894
8895         * lib/xtime.h (xtime_make, xtime_nonnegative_nsec, xtime_nsec): Use
8896         long int, not int, for nanosecond counts, so that people who are
8897         used to POSIX struct timespec won't be surprised.  Reported by Jim
8898         Meyering.
8899
8900 2005-12-28  Bruno Haible  <bruno@clisp.org>
8901
8902         * build-aux/config.rpath: Update from GNU gettext.
8903
8904 2005-12-16  Jim Meyering  <jim@meyering.net>
8905
8906         * modules/fprintftime: New module.
8907         * MODULES.html.sh (Date and time <time.h>): Add fprintftime.
8908
8909 2005-12-16  Jim Meyering  <jim@meyering.net>
8910
8911         * m4/fprintftime.m4: New file.
8912
8913 2005-12-16  Jim Meyering  <jim@meyering.net>
8914
8915         * lib/fprintftime.c, lib/fprintftime.h: New files.
8916
8917 2005-12-15  Simon Josefsson  <jas@extundo.com>
8918
8919         * modules/socklen (configure.ac): Fix M4 macro name, to align with
8920         new m4/socklen.m4.
8921
8922 2005-12-10  Sergey Poznyakoff  <gray@gnu.org.ua>
8923
8924         * m4/argp.m4: Define HAVE_DECL_PROGRAM_INVOCATION_NAME and
8925         HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME
8926
8927 2005-12-10  Sergey Poznyakoff  <gray@gnu.org.ua>
8928
8929         * lib/argp-fmtstream.c (__argp_fmtstream_update): Fix coredump
8930         * lib/argp-help.c (fill_in_uparams): Check if the constructed
8931         struct uparams is valid. Fall back to the default values if it is
8932         not.
8933
8934 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
8935
8936         * modules/argp (Files): Add argp-pin.c
8937         (Depends-on): dirname
8938         (lib_SOURCES): Add argp-pin.c
8939
8940 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
8941
8942         * m4/argp.m4:  Check if program_invocation_name and
8943         program_invocation_short_name are declared and define appropriate
8944         macros if they are not.
8945
8946 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
8947
8948         * lib/argp-help.c (__argp_base_name): New function
8949         (__argp_short_program_name): Rewrite using __argp_base_name
8950         * lib/argp-namefrob.h: Define program_invocation_name and
8951         program_invocation_short_name if requested
8952         (__argp_base_name): Add prototype
8953         * lib/argp-parse.c (argp_def): Use gettext wrappers
8954         (argp_default_parser): Use __argp_base_name
8955         * lib/argp-pin.c: New file. Defines program_invocation_name and
8956         program_invocation_short_name on systems that lack them.
8957
8958 2005-12-07  Paul Eggert  <eggert@cs.ucla.edu>
8959
8960         * m4/stat-time.m4 (gl_STAT_TIME): Add check for
8961         TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC, to fix IRIX 5.3
8962         porting problem reported by Georg Schwarz in
8963         <http://lists.gnu.org/archive/html/bug-coreutils/2005-12/msg00083.html>.
8964
8965 2005-12-07  Paul Eggert  <eggert@cs.ucla.edu>
8966
8967         * lib/stat-time.h (STATE_TIMESPEC, STAT_TIMESPEC_NS): Add check for
8968         TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC, to fix IRIX 5.3
8969         porting problem reported by Georg Schwarz in
8970         <http://lists.gnu.org/archive/html/bug-coreutils/2005-12/msg00083.html>.
8971
8972 2005-12-05  Bruno Haible  <bruno@clisp.org>
8973
8974         * lib/csharpcomp.sh.in (options_csc): For -l option, add a .dll suffix.
8975         * lib/csharpcomp.c (compile_csharp_using_sscli): Likewise.
8976         Reported by Mark Junker <mjscod@gmx.de>.
8977
8978 2005-12-02  Paul Eggert  <eggert@cs.ucla.edu>
8979
8980         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Renamed from gl_SOCKLEN_T.
8981         Use implementation from Albert Chin, with some
8982         comments/corrections by Stepan Kasal and myself.
8983
8984 2005-12-02  Bruno Haible  <bruno@clisp.org>
8985
8986         * gnulib-tool (func_import): Accept GPLed build tool modules when
8987         --lgpl is given.
8988         * modules/csharpcomp-script: New file.
8989         * modules/csharpcomp: Depend on it.
8990         * modules/javacomp-script: New file.
8991         * modules/javacomp: Depend on it.
8992         Suggested by Simon Josefsson.
8993
8994 2005-12-01  Paul Eggert  <eggert@cs.ucla.edu>
8995
8996         * m4/regex.m4 (gl_REGEX): Check whether off_t can be used in a switch
8997         statement, to work around an HP-UX 10.20 compiler bug reported by
8998         Peter O'Gorman.
8999
9000 2005-11-29  Paul Eggert  <eggert@cs.ucla.edu>
9001
9002         * modules/savedir (Depends-on): Add openat.
9003
9004 2005-11-29  Paul Eggert  <eggert@cs.ucla.edu>
9005
9006         * lib/stdint_.h (intmax_t) [defined intmax_t]: Do not declare.
9007         (uintmax_t) [defined uintmax_t]: Do not declare.
9008         (SIZE_MAX) [defined SIZE_MAX]: Do not define.
9009         This works around a problem if intmax_t.m4 and/or uintmax_t.m4
9010         and/or size_max.m4 are also used.  Problem reported by Mark D. Baushke.
9011         (SIZE_MAX): Define to ((size_t) -1), not (~(size_t)0), for the
9012         sake of portability to weird hosts that C allows (though we don't
9013         know of any practical examples).
9014
9015         * lib/savedir.h (fdsavedir): New decl.
9016         * lib/savedir.c (fdsavedir, savedirstream): New functions; the latter
9017         contains most of the former guts of savedir.
9018         (savedir): Use savedirstream.
9019         Include "openat.h".
9020
9021 2005-11-25  Paul Eggert  <eggert@cs.ucla.edu>
9022
9023         * modules/obstack (Files): Add m4/ulonglong.m4.
9024         Problem reported by Davide Angelocola.
9025
9026 2005-11-15  Paul Eggert  <eggert@cs.ucla.edu>
9027
9028         * lib/xstrtod.c: Don't bother with #pragma STDC FENV_ACCESS ON, as
9029         coreutils no longer futzes with rounding modes.
9030
9031 2005-11-14  Jim Meyering  <jim@meyering.net>
9032
9033         * lib/mkstemp-safer.c: Include <config.h>, required for possible
9034         replacement of mkstemp.
9035
9036 2005-11-10  Simon Josefsson  <jas@extundo.com>
9037
9038         * lib/readline.c: Remove EOL.
9039
9040 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
9041
9042         * modules/gethrxtime (Depends-on): Add gettime.
9043
9044 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
9045
9046         * m4/gethrxtime.m4 (gl_PREREQ_GETHRXTIME): Don't require AC_HEADER_TIME
9047         or gettimeofday; no longer needed.
9048
9049 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
9050
9051         * lib/gethrxtime.c: Include "timespec.h" rather than the sys/time /
9052         time business.
9053         (gethrxtime) [! (HAVE_NANOUPTIME
9054         || (defined CLOCK_MONOTONIC && HAVE_CLOCK_GETTIME)
9055         || HAVE_MICROUPTIME)]: Fall back on gettime rather than rolling
9056         our own approximation.
9057
9058 2005-11-08  Eric Blake  <ebb9@byu.net>
9059
9060         * lib/inet_ntop.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
9061
9062 2005-11-08  Eric Blake  <ebb9@byu.net>
9063
9064         * lib/getaddrinfo.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
9065
9066 2005-11-04  Bruno Haible  <bruno@clisp.org>
9067
9068         * gnulib-tool: Implement --update mode.
9069
9070 2005-10-30  Paul Eggert  <eggert@cs.ucla.edu>
9071
9072         Fix porting problem reported by Theodoros V. Kalamatianos.
9073         * lib/utimens.c (futimens) [HAVE_WORKING_UTIMES && HAVE_FUTIMES]:
9074         Don't assume that futimes failing means we must fail.
9075
9076 2005-10-30  Paul Eggert  <eggert@cs.ucla.edu>
9077
9078         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Revamp wording and local
9079         variables to suggest the intended function of the PATH_MAX check.
9080
9081 2005-10-30  Kean Johnston  <jkj@sco.com>
9082
9083         Trivial changes to support SCO systems.
9084         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Check for MAXPATHLEN as well
9085         as PATH_MAX.
9086         * m4/fpending.m4 (gl_FUNC_FPENDING): Correct check for SCO systems,
9087         where __ptr is null when no I/O is pending.
9088
9089 2005-10-29  Paul Eggert  <eggert@cs.ucla.edu>
9090
9091         * lib/getcwd.c (__getcwd): Don't assume that system calls after readdir
9092         leave errno alone.  Problem reported by Dmitry V. Levin.
9093
9094 2005-10-28  Simon Josefsson  <jas@extundo.com>
9095
9096         * tests/test-gc-md4.c, tests/test-gc-md5.c, tests/test-gc-sha1.c:
9097         Test more.
9098
9099         * tests/test-gc-md2.c, tests/test-md2.c: New files.
9100
9101         * modules/md2, modules/md2-tests: New files.
9102
9103 2005-10-28  Simon Josefsson  <jas@extundo.com>
9104
9105         * m4/inet_ntop.m4: More tests.
9106
9107         * m4/gc-md2.m4, md2.m4: New file.
9108
9109 2005-10-28  Simon Josefsson  <jas@extundo.com>
9110
9111         * lib/inet_ntop.h, inet_ntop.c: Make it work under mingw32: Add
9112         "restrict" keywords, as per POSIX.  Protect the function
9113         declaration around HAVE_DECL_INET_NTOP rather than HAVE_INET_NTOP.
9114         Don't use K&R prototypes.  Check the sprintf return values.
9115         Re-define EAFNOSUPPORT if not present.  Indent.
9116
9117         * lib/md5.h, md5.c: Simplify buffer handling visavi alignment,
9118         suggested by Bruno Haible <bruno@clisp.org>.
9119
9120         * lib/gc-gnulib.c, gc-libgcrypt.c: Check calloc return value.
9121
9122         * lib/gc.h: Add MD2 and RMD160 length defines.  Add prototypes.
9123
9124         * lib/gc-libgcrypt.c: Add MD2 (which is not available through
9125         libgcrypt).
9126
9127         * lib/gc-gnulib.c: Add MD2.  Implement gc_hash_* API.
9128
9129         * lib/md2.h, lib/md2.c: New files.
9130
9131 2005-10-28  Paul Eggert  <eggert@cs.ucla.edu>
9132
9133         * lib/savedir.c (savedir): Don't assume that xrealloc etc. leave
9134         errno alone.  Problem reported by Frederic Jolliton.
9135
9136 2005-10-27  Paul Eggert  <eggert@cs.ucla.edu>
9137
9138         * modules/verify (License): Change from GPL to LGPL.  This is a
9139         tiny module and there are apparently near-equivalents that are
9140         under the BSD license.
9141
9142 2005-10-24  Simon Josefsson  <jas@extundo.com>
9143
9144         * modules/sha1: Relicense to LGPL.
9145
9146 2005-10-24  Simon Josefsson  <jas@extundo.com>
9147
9148         * lib/md4.h: Shrink buffer size, now that we changed the type.
9149
9150 2005-10-23  Simon Josefsson  <jas@extundo.com>
9151
9152         * gnulib-tool (func_import): Fix --tests-base.
9153
9154 2005-10-22  Simon Josefsson  <jas@extundo.com>
9155
9156         * modules/arcfour (Depends-on): Need stdint.
9157
9158 2005-10-22  Simon Josefsson  <jas@extundo.com>
9159
9160         * m4/gc.m4: Don't be fooled by --disable-*random-device parameters,
9161         suggested by Bruno Haible <bruno@clisp.org>.  Fix error messages.
9162
9163 2005-10-22  Simon Josefsson  <jas@extundo.com>
9164
9165         * lib/md4.h, md4.c: Simplify buffer handling visavi alignment,
9166         suggested by Bruno Haible <bruno@clisp.org>.
9167
9168 2005-10-22  Simon Josefsson  <jas@extundo.com>
9169
9170         * lib/crc.h: Include stddef.h, for size_t.
9171
9172 2005-10-22  Simon Josefsson  <jas@extundo.com>
9173
9174         * lib/arcfour.h, arcfour.c: Use fixed size indices in the
9175         arcfour_context struct (simplify test vector testing in GNU
9176         Shishi).
9177
9178 2005-10-21  Simon Josefsson  <jas@extundo.com>
9179
9180         * modules/des, modules/des-tests: New files.
9181
9182         * modules/gc-des, modules/gc-des-tests: New files.
9183
9184         * tests/test-des.c, tests/test-gc-des.c: New file.
9185
9186 2005-10-21  Simon Josefsson  <jas@extundo.com>
9187
9188         * modules/arctwo, modules/arctwo-tests: New files.
9189
9190         * tests/test-arctwo.c: New file.
9191
9192         * modules/gc-arctwo, modules/gc-arctwo-tests: New files.
9193
9194         * tests/test-gc-arctwo.c: New file.
9195
9196 2005-10-21  Simon Josefsson  <jas@extundo.com>
9197
9198         * m4/gc.m4: Don't use libgcrypt if gcrypt.h isn't found, suggested by
9199         Bruno Haible <bruno@clisp.org>.
9200
9201         * m4/gc-des.m4: New file.
9202
9203 2005-10-21  Simon Josefsson  <jas@extundo.com>
9204
9205         * m4/arctwo.m4: New file.
9206
9207         * m4/gc-arctwo.m4: New file.
9208
9209 2005-10-21  Simon Josefsson  <jas@extundo.com>
9210
9211         * lib/rijndael-api-fst.c: Fix bugs in CBC mode for more than one
9212         block.
9213
9214 2005-10-21  Simon Josefsson  <jas@extundo.com>
9215
9216         * lib/hmac-md5.c (hmac_md5): Add comments, suggested by Bruno Haible
9217         <bruno@clisp.org>.
9218
9219         * lib/hmac-sha1.c (hmac_sha1): Likewise.
9220
9221         * lib/crc.c (crc32_update): Actually use crc parameter, suggested by
9222         Bruno Haible <bruno@clisp.org>.
9223
9224         * lib/crc.h: Include stdint.h directly, suggested by Bruno Haible
9225         <bruno@clisp.org>.
9226
9227 2005-10-21  Simon Josefsson  <jas@extundo.com>
9228
9229         * lib/gc-libgcrypt.c (gc_cipher_open): Handle ECB.
9230
9231 2005-10-21  Simon Josefsson  <jas@extundo.com>
9232
9233         * lib/gc-gnulib.c: Support ARCTWO in CBC mode.
9234
9235 2005-10-21  Simon Josefsson  <jas@extundo.com>
9236
9237         * lib/des.h, lib/des.c: New files.
9238
9239         * lib/gc-gnulib.c: Support DES.c
9240
9241 2005-10-21  Simon Josefsson  <jas@extundo.com>
9242
9243         * lib/arctwo.h, lib/arctwo.c: New files.
9244
9245         * lib/gc-gnulib.c: Support ARCTWO.
9246
9247 2005-10-21  Simon Josefsson  <jas@extundo.com>
9248
9249         * lib/arctwo.h (arctwo_setkey): Protect variable in CPP macro,
9250         suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
9251
9252 2005-10-21  Simon Josefsson  <jas@extundo.com>
9253
9254         * gnulib-tool (func_import, func_create_testdir): Define automake
9255         conditional GL_COND_LIBTOOL if libtool is used (to be used by modules
9256         Makefile.am snippet),
9257         suggested by Bruno Haible <bruno@clisp.org>.
9258
9259         * modules/gc (Makefile.am): Use it.
9260
9261 2005-10-21  Bruno Haible  <bruno@clisp.org>
9262
9263         * gnulib-tool (func_import, func_create_testdir): Add quoting to last
9264         patch.
9265
9266 2005-10-19  Simon Josefsson  <jas@extundo.com>
9267
9268         * tests/test-gc-rijndael.c: New file.
9269
9270         * modules/gc-rijndael, modules/gc-rijndael-test: New files.
9271
9272 2005-10-19  Simon Josefsson  <jas@extundo.com>
9273
9274         * tests/test-gc-md4.c, tests/test-gc-md5.c: Test gc_hash_buffer
9275         interface too.
9276
9277 2005-10-19  Simon Josefsson  <jas@extundo.com>
9278
9279         * tests/test-gc-arcfour.c: New file.
9280
9281         * modules/gc-arcfour, modules/gc-arcfour-tests: New files.
9282
9283 2005-10-19  Simon Josefsson  <jas@extundo.com>
9284
9285         * modules/gc-md4, modules/gc-md4-tests: New file.
9286
9287         * tests/test-gc-md4.c: New file.
9288
9289 2005-10-19  Simon Josefsson  <jas@extundo.com>
9290
9291         * m4/gc-md4.m4: New file.
9292
9293 2005-10-19  Simon Josefsson  <jas@extundo.com>
9294
9295         * m4/gc-hmac-md5.m4, gc-hmac-sha1.m4, gc-md4.m4,
9296         gc-md5.m4, gc-sha1.m4: Fix typo, suggested by Stepan Kasal
9297         <kasal@ucw.cz>.
9298
9299 2005-10-19  Simon Josefsson  <jas@extundo.com>
9300
9301         * m4/gc-arcfour.m4: New file.
9302
9303         * m4/gc-rijndael.m4: New file.
9304
9305 2005-10-19  Simon Josefsson  <jas@extundo.com>
9306
9307         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Support MD4.
9308
9309 2005-10-19  Simon Josefsson  <jas@extundo.com>
9310
9311         * lib/gc-gnulib.c: Support ARCFOUR.
9312
9313 2005-10-19  Simon Josefsson  <jas@extundo.com>
9314
9315         * lib/gc-gnulib.c: Implement gc_cipher_* API, currently only with AES
9316         support.
9317
9318         * lib/gc.h: Add ECB enum type.
9319
9320         * lib/hmac-md5.c, hmac-sha1.c: Include memxor.h.
9321
9322 2005-10-18  Simon Josefsson  <jas@extundo.com>
9323
9324         * tests/test-md5.c: New file.
9325
9326         * modules/md5-tests: New file.
9327
9328 2005-10-18  Simon Josefsson  <jas@extundo.com>
9329
9330         * tests/test-md4.c: New file.
9331
9332         * modules/md4, modules/md4-tests: New files.
9333
9334 2005-10-18  Simon Josefsson  <jas@extundo.com>
9335
9336         * m4/md4.m4: New file.
9337
9338 2005-10-18  Simon Josefsson  <jas@extundo.com>
9339
9340         * lib/md4.h, lib/md4.c: New files, based on md5.?.
9341
9342 2005-10-17  Stepan Kasal  <kasal@ucw.cz>
9343
9344         * gnulib-tool (func_create_testdir): Omit the second check whether
9345         BUILT_SOURCES in nonempty.
9346
9347 2005-10-17  Simon Josefsson  <jas@extundo.com>
9348
9349         * tests/test-rijndael.c: New file.
9350
9351 2005-10-17  Simon Josefsson  <jas@extundo.com>
9352
9353         * modules/sha1: Depend on stdint instead of md5.
9354
9355         * modules/md5: Depend on stdint, remove uint32_t.
9356
9357 2005-10-17  Simon Josefsson  <jas@extundo.com>
9358
9359         * modules/gc-sha1-tests: New file.
9360
9361         * tests/test-gc-sha1.c: New file.
9362
9363 2005-10-17  Simon Josefsson  <jas@extundo.com>
9364
9365         * m4/md5.m4: Remove call to uint32_t.m4.
9366
9367 2005-10-17  Simon Josefsson  <jas@extundo.com>
9368
9369         * lib/sha1.c: Use uint32_t instead of md5_uint32.t
9370
9371         * lib/sha1.h: Use stdint.h and uint32_t instead of md5_uint32 from
9372         md5.h.
9373
9374         * lib/md5.c: Use uin32_t.  Fix non-gcc UNALIGNED_P macro.
9375
9376         * lib/md5.h: Use stdint.h and uint32_t.  Doc fix.
9377
9378 2005-10-17  Simon Josefsson  <jas@extundo.com>
9379
9380         * lib/gc.h, gc-libgcrypt.c: Add more hash types/functions.
9381
9382 2005-10-17  Simon Josefsson  <jas@extundo.com>
9383
9384         * lib/gc.h, gc-libgcrypt.c: Add ciphers.
9385
9386 2005-10-17  Simon Josefsson  <jas@extundo.com>
9387
9388         * lib/gc-libgcrypt.c (gc_hmac_sha1): Fix assert.
9389
9390         * lib/gc.h (gc_nonce, gc_pseudo_random, gc_random): Add prototypes.
9391
9392 2005-10-17  Bruno Haible  <bruno@clisp.org>
9393
9394         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Change the return statement so
9395         that it can also be used in a test.
9396
9397 2005-10-16  Bruno Haible  <bruno@clisp.org>
9398
9399         * gnulib-tool (func_emit_tests_Makefile_am): Also define
9400         TESTS_ENVIRONMENT, so that individual tests can augment it.
9401
9402         * gnulib-tool (func_create_testdir): Use an intermediate target for
9403         building $(BUILT_SOURCES). Needed because BUILT_SOURCES can contain
9404         macros, like $(ALLOCA_H), which cannot be passed through the command
9405         line.
9406
9407 2005-10-15  Simon Josefsson  <jas@extundo.com>
9408
9409         * modules/rijndael-tests: New file.
9410
9411         * modules/rijndael: New file.
9412
9413 2005-10-15  Simon Josefsson  <jas@extundo.com>
9414
9415         * m4/rijndael.m4: New file.
9416
9417 2005-10-15  Simon Josefsson  <jas@extundo.com>
9418
9419         * lib/rijndael-api-fst.h, lib/rijndael-api-fst.c: New files.
9420
9421         * lib/rijndael-alg-fst.h, lib/rijndael-alg-fst.c: New files.
9422
9423 2005-10-14  Simon Josefsson  <jas@extundo.com>
9424
9425         * tests/test-arcfour.c: New file.
9426
9427         * modules/arcfour, modules/arcfour-tests: New files.
9428
9429 2005-10-14  Simon Josefsson  <jas@extundo.com>
9430
9431         * m4/arcfour.m4: New file.
9432
9433 2005-10-14  Simon Josefsson  <jas@extundo.com>
9434
9435         * lib/arcfour.h, lib/arcfour.c: New files.
9436
9437 2005-10-14  Roland McGrath  <roland@redhat.com>
9438
9439         Import from libc.  [BZ #1331]
9440         * lib/obstack.h [!__STDC__] (obstack_int_grow_fast): Fix misnamed
9441         macro argument.
9442         Reported by Matej Vela <vela@debian.org>.
9443
9444 2005-10-14  Paul Eggert  <eggert@cs.ucla.edu>
9445
9446         * lib/obstack.c [defined _LIBC && defined USE_IN_LIBIO]: Don't
9447         include <wchar.h>; no longer needed.
9448
9449 2005-10-14  Paul Eggert  <eggert@cs.ucla.edu>
9450
9451         * config/srclist.txt: Add glibc bug 321 for obstack.c, obstack.h.
9452
9453 2005-10-14  Jakub Jelinek  <jakub@redhat.com>
9454         and  Ulrich Drepper  <drepper@redhat.com>
9455
9456         Import from libc.
9457         * lib/obstack.c (print_and_abort) [defined _LIBC]: Use __fxprintf
9458         instead of inline stream orientation test and two separate
9459         function calls.  Pay no attention to USE_IN_LIBIO.
9460
9461 2005-10-13  Simon Josefsson  <jas@extundo.com>
9462
9463         * modules/gc-hmac-md5-tests: New file.
9464
9465         * tests/test-gc-hmac-sha1.c: New file.
9466
9467         * tests/test-gc.c (main): Remove MD5 and HMAC-MD5 tests.
9468
9469         * modules/gc-hmac-md5-tests: New file.
9470
9471         * tests/test-gc-md5.c: New file.
9472
9473         * modules/gc-md5-tests: New file.
9474
9475 2005-10-13  Simon Josefsson  <jas@extundo.com>
9476
9477         * lib/gc-pbkdf2-sha1.c (gc_pbkdf2_sha1): Optimize CEIL computation.
9478         Move memory allocation outside of loop.
9479
9480 2005-10-13  Paul Eggert  <eggert@cs.ucla.edu>
9481
9482         * lib/mkdir-p.c (make_dir_parents): Don't report an error if an
9483         intermediate directory is in a read-only file system.  Problem
9484         reported by Eric Blake.
9485
9486 2005-10-13  Oskar Liljeblad  <oskar@osk.mine.nu>
9487
9488         * modules/human (Depends-on): Depend on xstrtoumax, not xstrtol.
9489
9490 2005-10-12  Simon Josefsson  <jas@extundo.com>
9491
9492         * tests/test-hmac-sha1.c: New file.
9493
9494         * modules/hmac-sha1-tests: New file.
9495
9496         * modules/hmac-sha1: New file.
9497
9498 2005-10-12  Simon Josefsson  <jas@extundo.com>
9499
9500         * modules/gc-sha1: New file.
9501
9502 2005-10-12  Simon Josefsson  <jas@extundo.com>
9503
9504         * modules/gc-pbkdf2-sha1, modules/gc-pbkdf2-sha1-tests: New files.
9505
9506         * tests/test-gc-pbkdf2-sha1.c: New file.
9507
9508 2005-10-12  Simon Josefsson  <jas@extundo.com>
9509
9510         * modules/gc-md5, modules/gc-hmac-md5: New files.
9511
9512         * modules/gc (Files): Remove md5, memxor and hmac files.
9513
9514 2005-10-12  Simon Josefsson  <jas@extundo.com>
9515
9516         * m4/gc-pbkdf2-sha1.m4: New file.
9517
9518         * m4/gc-hmac-sha1.m4: New file.
9519
9520         * m4/gc-sha1: New file.
9521
9522         * m4/hmac-sha1.m4: New file.
9523
9524 2005-10-12  Simon Josefsson  <jas@extundo.com>
9525
9526         * m4/gc-md5.m4, m4/gc-hmac-md5.m4: New files.
9527
9528         * m4/gc.m4: Don't call gl_MD5, gl_MEMXOR or gl_HMAC_MD5.
9529
9530 2005-10-12  Simon Josefsson  <jas@extundo.com>
9531
9532         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Use Gc_rc for return types,
9533         suggested by Bruno Haible <bruno@clisp.org>.
9534
9535 2005-10-12  Simon Josefsson  <jas@extundo.com>
9536
9537         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Support SHA-1.
9538
9539 2005-10-12  Simon Josefsson  <jas@extundo.com>
9540
9541         * lib/gc-pbkdf2-sha1.c: New file.
9542
9543         * lib/gc.h: Add gc_pbkdf2_sha1 prototype.
9544
9545 2005-10-12  Simon Josefsson  <jas@extundo.com>
9546
9547         * lib/gc-libgcrypt.c (gc_hmac_sha1): New function.
9548
9549         * lib/gc-gnulib.c (gc_hmac_sha1): New function.
9550
9551 2005-10-12  Simon Josefsson  <jas@extundo.com>
9552
9553         * lib/gc-gnulib.c: Condition MD5 and HMAC-MD5 use on GC_USE_MD5 and
9554         GC_USE_HMAC_MD5, respectively.
9555
9556         * lib/gc-libgcrypt.c (gc_md5): Fix assert call.
9557         (gc_md5): Fix typo.
9558
9559         * lib/gc.h (gc_hash_buffer): Use gc_hash in prototype.
9560
9561         * lib/gc-libgcrypt.c (gc_hash_buffer): Ditto.
9562
9563         * lib/gc-gnulib.c (gc_hash_buffer): Ditto.
9564
9565 2005-10-12  Bruno Haible  <bruno@clisp.org>
9566
9567         * m4/stdbool.m4 (gl_STDBOOL_H): Define as an alias of AM_STDBOOL_H.
9568         Reported by Stepan Kasal <kasal@ucw.cz>.
9569
9570 2005-10-11  Simon Josefsson  <jas@extundo.com>
9571
9572         * tests/test-crc.c: New file.
9573
9574         * modules/crc, modules/crc-tests: New files.
9575
9576 2005-10-11  Simon Josefsson  <jas@extundo.com>
9577
9578         * m4/crc.m4: New file.
9579
9580 2005-10-11  Simon Josefsson  <jas@extundo.com>
9581
9582         * lib/gc.h: Add gc_hash and gc_hash_buffer.
9583
9584         * lib/gc-gnulib.c (gc_hash_buffer): Add.  Reorder #include's.
9585
9586         * lib/gc-libgcrypt.c (gc_hash_buffer): Add.
9587
9588 2005-10-11  Simon Josefsson  <jas@extundo.com>
9589
9590         * lib/crc.h, lib/crc.c: New files.
9591
9592         * lib/gc.h (gc_hash_buffer): Add doc.
9593
9594 2005-10-11  Bruno Haible  <bruno@clisp.org>
9595
9596         * modules/c-strcasestr: New file.
9597         * MODULES.html.sh (String handling <string.h>): Add c-strcasestr.
9598
9599 2005-10-11  Bruno Haible  <bruno@clisp.org>
9600
9601         * modules/c-strcase: New file.
9602         * MODULES.html.sh (String handling <string.h>): Add c-strcase.
9603
9604 2005-10-11  Bruno Haible  <bruno@clisp.org>
9605
9606         * lib/strcasecmp.c: Include limits.h.
9607         (strcasecmp): Avoid integer overflow on exotic platforms.
9608         * lib/strncasecmp.c: Include limits.h.
9609         (strncasecmp): Avoid integer overflow on exotic platforms.
9610         Reported by Paul Eggert.
9611
9612 2005-10-11  Bruno Haible  <bruno@clisp.org>
9613
9614         * lib/c-strcasestr.h: New file, from GNU gettext.
9615         * lib/c-strcasestr.c: New file, from GNU gettext.
9616
9617 2005-10-11  Bruno Haible  <bruno@clisp.org>
9618
9619         * lib/c-strcase.h: New file, from GNU gettext.
9620         * lib/c-strcasecmp.c: New file, from GNU gettext.
9621         * lib/c-strncasecmp.c: New file, from GNU gettext.
9622
9623 2005-10-10  Paul Eggert  <eggert@cs.ucla.edu>
9624
9625         * modules/mempcpy (License): GPL -> LGPL.
9626         * modules/strchrnul (License): Likewise.
9627         * modules/sysexits (License): Likewise.
9628
9629 2005-10-08  Simon Josefsson  <jas@extundo.com>
9630
9631         * config/srclist.txt: Bug 1423 is closed, but 1439 remains.
9632
9633 2005-10-07  Simon Josefsson  <jas@extundo.com>
9634
9635         * m4/memxor.m4: Remove gl_C_RESTRICT call.
9636
9637 2005-10-06  Simon Josefsson  <jas@extundo.com>
9638
9639         * tests/test-hmac-md5.c: New file.
9640
9641         * modules/hmac-md5-tests: New file.
9642
9643         * modules/hmac-md5: New file.
9644
9645 2005-10-06  Simon Josefsson  <jas@extundo.com>
9646
9647         * m4/hmac-md5.m4: New file.
9648
9649         * m4/memxor.m4: Require gl_C_RESTRICT.
9650
9651 2005-10-06  Simon Josefsson  <jas@extundo.com>
9652
9653         * lib/memxor.c (memxor): Avoid casts and warnings.
9654
9655 2005-10-06  Simon Josefsson  <jas@extundo.com>
9656
9657         * lib/hmac-md5.c: New file.
9658
9659         * lib/hmac.h: New file.
9660
9661 2005-10-06  Paul Eggert  <eggert@cs.ucla.edu>
9662
9663         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check that bool
9664         promotes to int, not unsigned int, to catch the AIX 5.3
9665         compiler bug.
9666
9667 2005-10-05  Simon Josefsson  <jas@extundo.com>
9668
9669         * modules/memxor: New file.
9670
9671         * modules/iconv (Files): Move config.rpath to havelib, it is used
9672         there.
9673
9674         * modules/havelib (Files): Add config.rpath.
9675
9676 2005-10-05  Simon Josefsson  <jas@extundo.com>
9677
9678         * m4/memxor.m4: New file.
9679
9680 2005-10-05  Simon Josefsson  <jas@extundo.com>
9681
9682         * lib/memxor.c (memxor): Fix compiler error.
9683
9684         * lib/md5.h (MD5_DIGEST_SIZE, MD5_BLOCK_SIZE): Add, see also
9685         <http://sourceware.org/bugzilla/show_bug.cgi?id=1423>.
9686
9687         * lib/memxor.h, lib/memxor.c: New files.
9688
9689         * lib/getaddrinfo.h: Don't protect sys/types.h with HAVE_SYS_TYPES_H,
9690         we assume all systems have it, suggested by Jim Meyering
9691         <jim@meyering.net>.  Remove HAVE_SYS_SOCKET_H test too, to see if
9692         any systems lack sys/socket.h; mingw32 is known to lack it, but we
9693         don't support it yet anyway.  Also remove HAVE_NETDB_H test, for
9694         same reasons.
9695
9696 2005-10-05  Simon Josefsson  <jas@extundo.com>
9697
9698         * config/srclist.txt: Add glibc bug 1423 for md5.h.
9699
9700 2005-10-05  Paul Eggert  <eggert@cs.ucla.edu>
9701
9702         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Don't check for
9703         sys/socket.h, netdb.h, sys/types.h; the checks areno longer
9704         needed, since the source code now assumes these .h files.
9705
9706 2005-10-05  Derek Price  <derek@ximbiot.com>
9707
9708         * lib/getdelim.c (SIZE_MAX): New macro, if not already defined.
9709
9710 2005-10-05  Bruno Haible  <bruno@clisp.org>
9711
9712         * modules/stdint (License): Change to LGPL.
9713
9714 2005-10-04  Simon Josefsson  <jas@extundo.com>
9715
9716         * lib/getaddrinfo.h: Move sys/types.h include first, reported by "Mark
9717         D. Baushke" <mdb@gnu.org>.
9718
9719 2005-10-04  Bruno Haible  <bruno@clisp.org>
9720
9721         * lib/verify.h (verify_true): Provide alternative definition for C++.
9722
9723 2005-10-03  Paul Eggert  <eggert@cs.ucla.edu>
9724
9725         * lib/getdelim.c: Include getdelim.h first.  Include <limits.h>.
9726         (SSIZE_MAX): New macro, if not already defined.
9727         (getdelim): Fix buffer overrun on 64-bit hosts with lines longer
9728         than 2 GiB.
9729
9730 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
9731
9732         Sync from coreutils.
9733         * m4/openat.m4 (gl_FUNC_OPENAT): Check for fdopendir.
9734         * m4/ullong_max.m4 (gl_ULLONG_MAX): Simplify so that it merely
9735         defines ULONG_MAX_LT_ULLONG_MAX.  Thomas M.Ott reports that
9736         ULLONG_MAX doesn't work with 2.7.2.1.
9737
9738 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
9739
9740         * modules/xreadlink (Makefile.am): Remove lib_SOURCES.
9741         From Ben Pfaff.
9742
9743         * modules/exclude (Depends-on): Depend on verify.
9744         * modules/strtoimax (Depends-on): Likewise.
9745         * modules/utimecmp (Depends-on): Likewise.
9746
9747 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
9748
9749         * lib/exclude.c: Include verify.h.
9750         (verify): Remove.  All callers changed to use verify.h's version.
9751         * lib/strtoimax.c: Likewise.
9752         * lib/utimecmp.c: Likewis.e
9753
9754         Sync from coreutils.
9755         * lib/.cppi-disable: Add getaddrinfo.h, getdelim.h, getline.h,
9756         getpass.c, mbchar.h, mbuiter.h, strcase.h, strnlen.h, strnlen1.h.
9757         * lib/.cvsignore: Add fts.h, search.h, t-fpending.
9758         * lib/settime.c (settime): Fix { typo in previous patch.  Also, don't
9759         bother returning ENOSYS if settimeofday or stime fails; just let
9760         them return whatever errno they want to return.
9761         * lib/utimens.c: Include unistd.h, for dup2.
9762         (futimens): Fix typo: HAVE_FUTIMESAT was misspelled in an #if.
9763         (futimens) [! HAVE_FUTIMESAT]: If !file, set errno before returning -1.
9764
9765 2005-10-02  Jim Meyering  <jim@meyering.net>
9766
9767         Sync from coreutils.
9768         * m4/utimes.m4 (gl_FUNC_UTIMES): Detect the version of utimes
9769         from glibc-2.2.5 that fails for read-only files.
9770
9771 2005-10-02  Jim Meyering  <jim@meyering.net>
9772
9773         Sync from coreutils.
9774         * lib/fts-cycle.c [HAVE_CONFIG_H]: Include <config.h>.
9775         * lib/openat-die.c: Use `#ifdef HAVE_CONFIG_H', not
9776         `#if HAVE_CONFIG_H'.
9777         * lib/openat.c (fdopendir): Do not define if HAVE_FDOPENDIR.
9778         Remove AT_FDCWD test.
9779         Do not consume the fd unless successful.
9780         * lib/openat.h (fdopendir): Do not define if HAVE_FDOPENDIR.
9781         * lib/settime.c (settime): Move the HAVE_STIME block `up' into an #elif
9782         block, so that we don't even try to compile it if settimeofday is
9783         available.  This works around a compilation failure on OSF1 V5.1,
9784         due to stime requiring a `long int*' while tv_sec is `int'.
9785
9786 2005-10-02  Alfred M. Szmidt  <ams@gnu.org>
9787
9788         Sync from coreutils.
9789         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Compare $gl_have_path...
9790         against `yes', rather than just testing for nonempty.
9791
9792 2005-10-01  Simon Josefsson  <jas@extundo.com>
9793
9794         * m4/getaddrinfo.m4: Include sys/types.h for sys/socket.h, on FreeBSD
9795         and Darwin.
9796
9797         * m4/getaddrinfo.m4: Use AC_GNU_SOURCE, GNU only declare getaddrinfo
9798         as an (POSIX) extension.  Check for sys/types.h, sys/socket.h, and
9799         netdb.h too, needed by getaddrinfo.h.  Check if getaddrinfo,
9800         freeaddrinfo and gai_strerror are declared by the POSIX headers.
9801         Check if struct addrinfo is declared.
9802
9803 2005-10-01  Simon Josefsson  <jas@extundo.com>
9804
9805         * lib/getaddrinfo.h: Protect #include's of sys/socket.h and netdb.h.
9806         Only define struct addrinfo if !HAVE_STRUCT_ADDRINFO.  Protect
9807         AI_* and EAI_* definitions.  Protect function declarations.
9808
9809 2005-10-01  Jim Meyering  <jim@meyering.net>
9810
9811         Sync from coreutils.
9812
9813         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Look for getservbyname in these
9814         libraries [inet nsl socket xnet].  Nelson Beebe reported that with
9815         native cc on Solaris 7, getaddrinfo.c requires -lsocket.
9816         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Check for gethostbyname
9817         in the inet and nsl libraries.  Required on Solaris 5.7.
9818
9819 2005-10-01  Jim Meyering  <jim@meyering.net>
9820
9821         Sync from coreutils.
9822         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Check for gethostbyname
9823         in the inet and nsl libraries.  Required on Solaris 5.7.
9824
9825 2005-10-01  Eric Blake  <ebb9@byu.net>  (tiny change)
9826
9827         * lib/getdelim.c (getdelim): Remove unused variables.
9828
9829 2005-09-29  Paul Eggert  <eggert@cs.ucla.edu>
9830
9831         * lib/xtime.h (XTIME_PRECISION): Now of type int, not long long int,
9832         so that the code works even with ancient cpp.  Portability problem
9833         with GCC 2.7.2.1 reported by Thomas M.Ott.
9834
9835 2005-09-27  Paul Eggert  <eggert@cs.ucla.edu>
9836
9837         * modules/regex (Depends-on): Add strcase.
9838
9839         * modules/gethostname (Licence): Change from GPL to LGPL, since
9840         gethostname.c is a trivial implementation of a standard library
9841         function.
9842         * modules/poll (License): Change from GPL to LGPL, since it's
9843         derived from LGPL code.
9844
9845 2005-09-27  Jim Meyering  <jim@meyering.net>
9846
9847         * lib/getcwd.c: Change #ifdef<TAB>HAVE_CONFIG_H to #ifdef
9848         HAVE_CONFIG_H.
9849
9850         * lib/intprops.h (signed_type_or_expr__): Define.
9851         (INT_STRLEN_BOUND) [__GNUC__]: Use a slightly tighter bound
9852         for unsigned types.
9853
9854 2005-09-26  Paul Eggert  <eggert@cs.ucla.edu>
9855
9856         * lib/verify.h (verify_expr): Remove, replacing with:
9857         (verify_true): New macro that returns true instead of void.
9858         (verify_type__): Remove.
9859         (verify): Use verify_true rather than verify_type__.
9860
9861 2005-09-26  Bruno Haible  <bruno@clisp.org>
9862
9863         * modules/mbchar (Include): Mention that HAVE_WCHAR_H && HAVE_WCTYPE_H
9864         is necessary.
9865         (lib_SOURCES): Remove mbchar.c.
9866         * modules/mbfile (Include): Mention that HAVE_MBRTOWC is necessary.
9867         (Files): Add m4/mbrtowc.m4.
9868         * modules/mbiter: Likewise.
9869         * modules/mbuiter: Likewise.
9870
9871 2005-09-26  Bruno Haible  <bruno@clisp.org>
9872
9873         * m4/mbchar.m4 (gl_MBCHAR): Check for wchar.h and wctype.h. Don't
9874         compile mbchar.c if they are not both present.
9875         * m4/mbfile.m4 (gl_MBFILE): Require gl_FUNC_MBRTOWC.
9876         * m4/mbiter.m4 (gl_MBITER): Likewise.
9877         * m4/strstr.m4 (gl_PREREQ_STRSTR): Use AC_REQUIRE.
9878         * m4/strcasestr.m4 (gl_PREREQ_STRCASESTR): Likewise.
9879         * m4/strcase.m4 (gl_PREREQ_STRCASECMP): Likewise.
9880
9881 2005-09-25  Jim Meyering  <jim@meyering.net>
9882
9883         * modules/inet_ntop (Depends-on): Add socklen, since inet_ntop.c
9884         also uses socklen_t.
9885
9886 2005-09-24  Paul Eggert  <eggert@cs.ucla.edu>
9887
9888         * lib/utimens.c (ENOSYS): Define if not already defined.
9889         (futimens): Support having a null PATH if the file descriptor
9890         is nonnegative.
9891
9892         * lib/regex_internal.h (__GNUC_PREREQ, always_inline, inline, pure):
9893         Remove.
9894         (__attribute): Define to empty unless GCC 3.1 or later.
9895         This works around a core dump on OpenBSD 3.4, which has GCC
9896         2.95.3, which dumps core when given __attribute__(()).  It also
9897         simplifies other tests, since we really don't want to bother with
9898         worrying about which ancient version of GCC supported what.
9899         Original problem reported by Yoann Vandoorselaere, with part of
9900         the fix suggested by Derek Price.
9901
9902 2005-09-24  Jim Meyering  <jim@meyering.net>
9903
9904         * lib/verify.h (verify_type__): Use `unsigned int' as the bitfield type
9905         so we can once again use a positive bitfield width of 1 -- now we
9906         don't have to explain why we were using a bitfield width of 2.
9907
9908 2005-09-23  Paul Eggert  <eggert@cs.ucla.edu>
9909
9910         * m4/regex.m4 (gl_REGEX): If replacing, define regcomp to rpl_regcomp,
9911         and similarly for the other external symbols.  Problem reported
9912         by James Gallager.
9913
9914         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Catch Sun Studio 10u1 on Linux
9915         bug reported by Jim Meyering.
9916
9917         * m4/utimens.m4 (gl_UTIMENS): Check for futimesat.
9918         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Undo previous change;
9919         not needed, since socklen is a prerequisite module.
9920
9921 2005-09-23  Paul Eggert  <eggert@cs.ucla.edu>
9922
9923         * lib/getaddrinfo.c [HAVE_NETINET_IN_H]: Include <netinet/in.h>.
9924         Problem reported by Eric Blake.
9925         (getaddrinfo): Initialize se so that it's not garbage.
9926         Redo internal storage allocation so that it doesn't make unportable
9927         assumptions about alignment.
9928         Fix a memory leak.
9929
9930         * lib/utimens.c (futimens): Use futimesat if available.
9931         Prefer it to futimes since it doesn't have the futimes bug.
9932
9933         * lib/verify.h (GL_CONCAT0, GL_CONCAT): Remove.
9934         (verify): Don't use the __LINE__ trick, as it doesn't work in general.
9935         Instead, declare a function that returns a pointer to an array,
9936         and use verify_type__ to declare the size of the array.
9937         Problem and germ of a solution reported by Bruno Haible.
9938         (verify_type__): Use 2, not 1, for bitfield size, to avoid
9939         a warning with Irix 6.5 cc.  Problem reported by Bruno Haible.
9940
9941 2005-09-23  Jim Meyering  <jim@meyering.net>
9942
9943         Sync from coreutils.
9944         Correct build failure (socklen_t not defined) on at least
9945         mips-sgi-irix6.5 and alphaev67-dec-osf5.1.
9946         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Require gl_SOCKLEN_T.
9947
9948 2005-09-23  Jim Meyering  <jim@meyering.net>
9949
9950         * modules/getaddrinfo (Depends-on): Add socklen.
9951
9952 2005-09-23  Bruno Haible  <bruno@clisp.org>
9953
9954         * tests/test-verify.c: New file.
9955
9956 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
9957
9958         Sync from coreutils.
9959
9960         * modules/argmatch (Depends-on): Add verify.
9961         * modules/getloadavg (Depends-on): Depend on fcntl-safer, not
9962         unistd-safer.
9963         * modules/save-cwd (Depends-on): Likewise.
9964
9965         * modules/openat (Files): Add lib/openat-die.c.
9966         (Depends-on): Remove error, exitfail.
9967         Add dirname.
9968
9969         * modules/verify: New file.
9970         * MODULES.html.sh (Diagnostics <assert.h>): New section,
9971         with "verify" module.
9972
9973 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
9974
9975         Sync from coreutils.
9976
9977         * m4/backupfile.m4, calloc.m4, chown.m4, cloexec.m4, dup2.m4:
9978         * m4/fileblocks.m4, free.m4, ftruncate.m4, getcwd.m4, getpagesize.m4:
9979         * m4/getugroups.m4, group-member.m4, idcache.m4, link-follow.m4:
9980         * m4/mkstemp.m4, mktime.m4, mountlist.m4, nanosleep.m4, pathmax.m4:
9981         * m4/physmem.m4, posixver.m4, putenv.m4, safe-read.m4, same.m4:
9982         * m4/save-cwd.m4, stdio-safer.m4, unistd-safer.m4, unlinkdir.m4:
9983         * m4/userspec.m4, xgetcwd.m4, xreadlink.m4:
9984         Don't bother checking for string.h, stdlib.h, unistd.h.
9985         * m4/fts.m4 (gl_FUNC_FTS_CORE): Don't require
9986         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK; that's now the lstat
9987         module's job.
9988         * m4/jm-macros.m4 (gl_MACROS): Likewise.
9989         * m4/prereq.m4 (gl_PREREQ): Add gl_FUNC_LSTAT.
9990
9991         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): New macro.
9992         (gl_GETDATE): Use it.
9993
9994         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Don't bother checking for unistd.h.
9995
9996 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
9997
9998         Sync from coreutils.
9999
10000         * lib/.cppi-disable: Add regcomp.c, regex_internal.c, regex_internal.h,
10001         stat-time.h.
10002         * lib/argmatch.h: Include verify.h
10003         (ARGMATCH_VERIFY): Use verify rather than rolling our own.
10004         (ARGMATCH_ASSERT): Remove; unused.
10005         * lib/canonicalize.c: Assume STDC_HEADERS.
10006         * lib/exclude.c: Include "strcase.h".
10007         * lib/regex_internal.h [!defined _LIBC]: Likewise.
10008         * lib/getusershell.c: Include stdio--.h rather than stdio.h
10009         and stdio-safer.h.
10010         (getusershell): Call fopen, not fopen_safer.
10011         * lib/save-cwd.c: Include fcntl--.h rather than fcntl.h.
10012         Do not include unistd-safer.h.
10013         (save_cwd): Don't call fd_safer; no longer needed
10014         now that we include fcntl--.h.
10015
10016         * lib/getdate.y (relative_time): New type.
10017         (RELATIVE_TIME_0): New constant.
10018         (parser_control): Use relative_time instead of doing it ourselves.
10019         (%union): Add new relative_time rel member.
10020         (tYEAR_UNIT, tMONTH_UNIT, tHOUR_UNIT, tMINUTE_UNIT, tSEC_UNIT):
10021         Now typeless.
10022         (relunit, relunit_snumber): Now of type rel.
10023         (zone, rel, relunit, get_date): Adjust to above changes.
10024
10025         * lib/getloadavg.c: Include fcntl--.h rather than fcntl.h.
10026         Do not include unistd-safer.h.
10027         (getloadavg): Don't call fd_safer; no longer needed
10028         now that we include fcntl--.h.
10029
10030         * lib/mkdir-p.c (ENOSYS): Define to EEXIST if not defined.
10031         (make_dir_parents): Treat ENOSYS like EEXIST.
10032
10033         Improve quality of diagnostics on restore_cwd failure.
10034         * lib/mkdir-p.h (make_dir): Remove.  All uses replaced by mkdir.
10035         (make_dir_parents): Last arg is now int * (for errno), not bool *.
10036         * lib/mkdir-p.c (make_dir, make_dir_parents): Likewise.
10037         Rewrite "mkdir -p" algorithm to avoid the need for "stat"
10038         each time through the loop.  Do not diagnose restore_cwd failure;
10039         that is the caller's job (and perhaps the caller does not care).
10040
10041         * lib/mkdir-p.c (CLEANUP_CWD, CLEANUP): Remove.
10042         (make_dir_parents): Revamp to avoid need for CLEANUP_CWD, CLEANUP.
10043         If the file already exists but is not a directory, don't bother
10044         to try to make its parents.
10045         Close potential file descriptor leak if we can't chdir("/") (!).
10046         Don't always return true if chdir($PWD) fails; return true only
10047         if the requested action was done successfully (except for the
10048         chdir($PWD)).
10049         Don't log final directory unless we actually made it.
10050         Refactor to avoid duplicate code to fix up permissions.
10051         Don't attempt to fix up parent permissions if chdir($PWD) fails.
10052
10053         * lib/strftime.c (my_strftime): Rewrite the previous change slightly,
10054         to make it a bit faster and (I hope) clearer.
10055         * lib/strftime.c (my_strftime): Add support for %:z, %::z, %:::z.
10056         Fix bug in formats like %2N.
10057
10058         * lib/verify.h: New file.
10059
10060 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
10061
10062         Sync from coreutils.
10063         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Check for netinet/in.h.
10064
10065 2005-09-22  Jim Meyering  <jim@meyering.net>
10066
10067         Sync from coreutils.
10068
10069         * m4/lstat.m4 (gl_FUNC_LSTAT):
10070         Use AC_LIBSOURCES to require lstat.c and lstat.h.
10071         Remove obsolete comment.
10072         * m4/xreadlink.m4: Use AC_LIBSOURCES and AC_LIBOBJ.
10073         * m4/xstrtod.m4: Likewise.
10074
10075         * m4/openat.m4 (gl_FUNC_OPENAT): Add openat-die.c.
10076
10077 2005-09-22  Jim Meyering  <jim@meyering.net>
10078
10079         Sync from coreutils.
10080
10081         * lib/backupfile.c: Use ARGMATCH_VERIFY, just in case.
10082
10083         * lib/posixtm.c (posixtime) [lint]: Initialize *all* of tm0, not just
10084         the .tm_year member, since otherwise gcc-4.0 would now warn about
10085         tm_zone, tm_gmtoff, tm_isdst, tm_yday, tm_wday.
10086
10087         * lib/quotearg.c (quotearg_n_options): Change code to be suboptimal, in
10088         order to avoid an unsuppressible warning from gcc on 64-bit systems.
10089
10090         * lib/getdate.y (get_date): Undo part of the 2005-04-04 change, so that
10091         the command "date -d'2005-03-27 +1 day'" succeeds once again, even
10092         when run in a time zone for which daylight savings time is in effect
10093         for the starting date.
10094
10095         * lib/mkdir-p.c (make_dir_parents): Don't let a failed chdir($PWD)
10096         stop us from restricting permissions of just-created absolute-named
10097         directories.
10098         * lib/mkdir-p.c (CLEANUP_CWD): Return *true*, not false when failing
10099         to restore initial working directory.
10100         * lib/mkdir-p.c (make_dir_parents): New parameter:
10101         different_working_dir, to tell caller if/when we change the working
10102         directory and are unable to return to the initial one.
10103         * lib/mkdir-p.h (make_dir_parents): Update prototype.
10104         * lib/mkdir-p.c (CLEANUP_CWD): Change one more `return 1' to
10105         `return false'.  This fixes a bug introduced on 2004-07-30.
10106
10107         * lib/openat.c (fdopendir): Be sure to close the supplied
10108         file descriptor before returning.  This makes our replacement
10109         implementation a little closer to Solaris's, where fdopendir
10110         ties the file descriptor to the returned DIR* pointer.
10111         * lib/openat.c (unlinkat): New function.
10112         * lib/openat.h (unlinkat): Add prototype.
10113         * lib/openat-die.c (openat_save_fail): Rename from openat_save_die.
10114         (openat_restore_fail): Rename from openat_restore_die.
10115         * lib/openat.c, openat.h: Reflect s/_die/_fail/ renaming.
10116
10117         Provide an alternative to exiting immediately upon save_cwd or
10118         restore_cwd failure.  Now, an application can arrange e.g.,
10119         to perform a longjump in that case.
10120         * lib/openat.c: Include dirname.h.
10121         Use IS_ABSOLUTE_FILE_NAME rather than testing for leading slash.
10122         (rpl_openat, fdopendir, fstatat): Call openat_save_die
10123         and openat_restore_die rather than calling error directly.
10124         Don't include "error.h" or "exitfail.h"; they're no longer needed.
10125
10126         * lib/openat-die.c (openat_save_die, openat_restore_die): New file.
10127         * lib/openat.h (openat_save_die, openat_restore_die): Declare and
10128         define.
10129
10130         * lib/strftime.c [FPRINTFTIME] (fprintftime): Provide a new interface:
10131         size_t fprintftime (FILE *fp, char const *fmt, struct tm const *tm,
10132                             int utc, int nanoseconds);
10133         Background:
10134         date should not have to allocate a megabyte of virtual memory to
10135         handle a format argument like +%1048575T.  When implemented with
10136         strftime, it must allocate such a buffer, use strftime to fill it
10137         in, print it, then free it.
10138         With fprintftime, it simply prints everything and exits.
10139         With no need for memory allocation, that's one fewer way to fail.
10140         * lib/strftime.c (my_strftime): Parse the colons of %:::z *after* the
10141         optional field width, not before, so we accept %9:z, not %:9z.
10142         (my_strftime): Be sure to use L_('x') for literals.
10143
10144         * lib/backupfile.c, lib/canon-host.c, lib/canonicalize.c, lib/chown.c:
10145         * lib/cloexec.c, lib/dup-safer.c, lib/dup2.c, lib/euidaccess.c:
10146         * lib/fd-safer.c, lib/fileblocks.c, lib/fopen-safer.c, lib/fsusage.c:
10147         * lib/ftruncate.c, lib/getcwd.c, lib/getcwd.h, lib/getloadavg.c:
10148         * lib/getopt_.h, lib/getpagesize.h, lib/getugroups.c:
10149         * lib/group-member.c, lib/human.h, lib/idcache.c, lib/mkdir-p.c:
10150         * lib/mountlist.c, lib/nanosleep.c, lib/pathmax.h, lib/physmem.c:
10151         * lib/posixver.c, lib/putenv.c, lib/raise.c, lib/safe-read.c:
10152         * lib/same.c, lib/save-cwd.c, lib/setenv.c, lib/settime.c:
10153         * lib/tempname.c, lib/unlinkdir.c, lib/unsetenv.c, lib/userspec.c:
10154         * lib/xgethostname.c, lib/xreadlink.c:
10155         Assume HAVE_UNISTD_H, i.e., include <unistd.h> unconditionally.
10156
10157         * lib/chown.c, lib/cloexec.c, lib/dup-safer.c, lib/dup2.c:
10158         * lib/fsusage.c, lib/getcwd.c, lib/getloadavg.c, lib/mountlist.c:
10159         * lib/openat.h, lib/save-cwd.c, lib/tempname.c:
10160         Assume HAVE_FCNTL_H (i.e., include <fcntl.h> unconditionally,
10161         and don't include <sys/file.h>).
10162
10163 2005-09-22  Eric Blake  <ebb9@byu.net>  (tiny change)
10164
10165         Sync from coreutils.
10166
10167         * lib/getloadavg.c (getloadavg) [__CYGWIN__]: Port to cygwin.
10168         [__linux__]: Allocate a big enough buffer for /proc/loadavg.
10169         [!LDAV_DONE]: Avoid unused variable warning.
10170
10171 2005-09-21  Bruno Haible  <bruno@clisp.org>
10172
10173         * lib/unicodeio.h (unicode_to_mb): New declaration.
10174
10175 2005-09-20  Derek Price  <derek@ximbiot.com>
10176
10177         * lib/getaddrinfo.c: Don't include <netdb.h> included from
10178         getaddrinfo.h.
10179
10180 2005-09-20  Bruno Haible  <bruno@clisp.org>
10181
10182         * gnulib-tool: Remove trailing slashes from the values specified for
10183         --source-base, --m4-base, --tests-base, --aux-dir.
10184         Suggested by Simon Josefsson <jas@extundo.com>.
10185
10186 2005-09-20  Bruno Haible  <bruno@clisp.org>
10187
10188         * gnulib-tool (func_all_modules, func_modules_transitive_closure,
10189         func_modules_to_filelist, func_import, func_create_testdir): Make all
10190         sorting results locale-independent, so that gnulib-cache.m4 doesn't
10191         change when gnulib-tool is invoked in a different locale.
10192
10193 2005-09-19  Simon Josefsson  <jas@extundo.com>
10194
10195         * m4/socklen.m4: Fix typo.
10196
10197 2005-09-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
10198
10199         Use a consistent style for including <config.h>.
10200         * lib/__fpending.c, lib/acl.c, lib/argmatch.c, lib/argp-help.c,
10201         lib/argp-parse.c, lib/argp-pvh.c, lib/backupfile.c, lib/basename.c,
10202         lib/c-stack.c, lib/calloc.c, lib/check-version.c, lib/cloexec.c,
10203         lib/closeout.c, lib/copy-file.c, lib/creat-safer.c, lib/cycle-check.c,
10204         lib/dirfd.c, lib/dirname.c, lib/dup-safer.c, lib/dup2.c,
10205         lib/euidaccess.c, lib/exclude.c, lib/exitfail.c, lib/fatal-signal.c,
10206         lib/fd-safer.c, lib/file-type.c, lib/fileblocks.c, lib/filemode.c,
10207         lib/filenamecat.c, lib/findprog.c, lib/fnmatch.c, lib/fopen-safer.c,
10208         lib/free.c, lib/fsusage.c, lib/ftruncate.c, lib/full-write.c,
10209         lib/fwriteerror.c, lib/getaddrinfo.c, lib/getcwd.c, lib/getdelim.c,
10210         lib/getline.c, lib/getlogin_r.c, lib/getndelim2.c, lib/getnline.c,
10211         lib/getopt1.c, lib/getpass.c, lib/group-member.c, lib/hard-locale.c,
10212         lib/hash-pjw.c, lib/hash.c, lib/human.c, lib/idcache.c,
10213         lib/inet_ntop.c, lib/isdir.c, lib/long-options.c, lib/malloc.c,
10214         lib/memcasecmp.c, lib/memcmp.c, lib/memcoll.c, lib/memcpy.c,
10215         lib/memmove.c, lib/mkdir-p.c, lib/modechange.c, lib/mountlist.c,
10216         lib/open-safer.c, lib/physmem.c, lib/pipe-safer.c, lib/pipe.c,
10217         lib/poll.c, lib/posixver.c, lib/progname.c, lib/progreloc.c,
10218         lib/putenv.c, lib/quote.c, lib/quotearg.c, lib/readline.c,
10219         lib/readlink.c, lib/realloc.c, lib/regex.c, lib/rename.c, lib/rmdir.c,
10220         lib/rpmatch.c, lib/safe-read.c, lib/same.c, lib/save-cwd.c,
10221         lib/savedir.c, lib/sig2str.c, lib/strcspn.c, lib/strerror.c,
10222         lib/stripslash.c, lib/strncasecmp.c, lib/strndup.c, lib/strnlen.c,
10223         lib/strnlen1.c, lib/strsep.c, lib/strstr.c, lib/strtod.c,
10224         lib/strtoimax.c, lib/strtol.c, lib/strverscmp.c, lib/tempname.c,
10225         lib/time_r.c, lib/userspec.c, lib/utimecmp.c, lib/version-etc-fsf.c,
10226         lib/version-etc.c, lib/wait-process.c, lib/xalloc-die.c, lib/xgetcwd.c,
10227         lib/xmalloc.c, lib/xmemcoll.c, lib/xnanosleep.c, lib/xreadlink.c,
10228         lib/xsetenv.c, lib/xstrndup.c, lib/xstrtoimax.c, lib/xstrtol.c,
10229         lib/xstrtoumax.c, lib/yesno.c:
10230         Standardize inclusion of config.h.
10231         * lib/__fpending.h, lib/dirfd.h, lib/getdate.h, lib/human.h,
10232         lib/inttostr.h:  Removed inclusion of config.h from header files.
10233         * lib/inttostr.c:  Adjusted in-tree users.
10234         * lib/timespec.h: Remove superfluous warning to include config.h.
10235         * lib/atexit.c, lib/chdir-long.c, lib/chown.c, lib/fchown-stub.c,
10236         lib/getgroups.c, lib/gettimeofday.c, lib/lchown.c, lib/lstat.c,
10237         lib/mkdir.c, lib/mkstemp.c, lib/nanosleep.c, lib/openat.c, lib/raise.c,
10238         lib/readtokens0.c, lib/readutmp.c, lib/unlinkdir.c: Guard inclusion of
10239         config.h with HAVE_CONFIG_H.
10240
10241 2005-09-19  Jim Meyering  <jim@meyering.net>
10242
10243         * modules/pathmax (License): Change to LGPL.
10244
10245 2005-09-19  Derek Price  <derek@ximbiot.com>
10246
10247         * config/srclist.txt: glibc's glob.h is now in lib/glob-libc.h.
10248
10249 2005-09-19  Bruno Haible  <bruno@clisp.org>
10250
10251         * gnulib-tool (import): Provide default for --tests-base.
10252
10253 2005-09-19  Bruno Haible  <bruno@clisp.org>
10254
10255         * doc/quote.texi: New file, extracted from gnulib.texi.
10256         * doc/ctime.texi: New file, extracted from gnulib.texi.
10257         * doc/inet_ntoa.texi: New file, extracted from gnulib.texi.
10258         * doc/gnulib-tool.texi: New file, extracted from gnulib.texi.
10259         * doc/gnulib.texi: Include them.
10260
10261 2005-09-18  Bruno Haible  <bruno@clisp.org>
10262
10263         Portability fix.
10264         * gnulib-tool (func_readlink): New function.
10265         (func_ln_if_changed): Use it.
10266
10267 2005-09-18  Bruno Haible  <bruno@clisp.org>
10268
10269         * gnulib-tool: Support --with-tests also with --import.
10270         (func_emit_tests_Makefile_am): Use variables $m4base and $testsbase.
10271         (func_import): Use variables $testsbase and $inctests. Emit a
10272         gl_TESTS_BASE form into gnulib-cache.m4. Create $testsbase/Makefile.am.
10273         Remind the user to add AC_CONFIG_FILES($testsdir/Makefile) and
10274         SUBDIRS += $testsdir.
10275         (func_create_testdir): Update.
10276
10277 2005-09-18  Bruno Haible  <bruno@clisp.org>
10278
10279         * gnulib-tool: Revise --dry-run implementation. Use variable $doit
10280         instead of $dry_run.
10281         (func_cp_if_changed, func_mv_if_changed): Remove functions.
10282         (func_ln_if_changed): Don't handle dry-run here.
10283         (func_import): In dry-run mode, detect more precisely which actions
10284         would be performed, and don't use "...ing" verbs.
10285
10286 2005-09-18  Bruno Haible  <bruno@clisp.org>
10287
10288         * gnulib-tool (func_tmpdir): New function, taken from GNU gettextize.
10289         (func_import): Use join on two temporary files instead of three nested
10290         loops, in order to determine which files are new or old.
10291
10292 2005-09-18  Bruno Haible  <bruno@clisp.org>
10293
10294         * gnulib-tool (func_import): Comment out code that spits out the
10295         new files with --dry-run.
10296
10297 2005-09-18  Bruno Haible  <bruno@clisp.org>
10298
10299         * doc/gnulib.texi (Invoking gnulib-tool): 50% rewritten.
10300
10301 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
10302
10303         * lib/stat-time.h: New file.
10304         * lib/timespec.h (ST_TIME_CMP_NS, ST_TIME_CMP, ATIME_CMP, CTIME_CMP):
10305         (MTIME_CMP, TIMESPEC_NS): Remove.  Now done by stat-time.h,
10306         in a different way.
10307         (timespec_cmp): New function.
10308         * lib/utimecmp.c: Include stat-time.h.
10309         (SYSCALL_RESOLUTION): Depend on whether various struct stat
10310         members exist, not on the obsolescent ST_MTIM_NSEC.
10311         (utimecmp): Use the new stat-time functions rater than TIMESPEC_NS.
10312
10313 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
10314
10315         * config/srclist.txt: Remove glibc bug 1033 and uncomment mktime.c.
10316
10317 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
10318
10319         * MODULES.html.sh (File system functions): Add stat-time.
10320         * modules/stat-time: New file.
10321         * modules/timespec (Files): Remove m4/st_mtim.m4; this
10322         is now done in a different way, by the stat-time module.
10323         * modules/utimecmp (Depends-on): Add stat-time.
10324
10325 2005-09-15  Paul Eggert  <eggert@cs.ucla.edu>
10326
10327         * m4/st_mtim.m4: Remove.  Superseded by...
10328         * m4/stat-time.m4: New file.
10329         * m4/timespec.m4 (gl_TIMESPEC): Require AC_C_INLINE.
10330         Do not invoke AC_STRUCT_ST_MTIM_NSEC; no longer needed.
10331
10332 2005-09-15  Derek Price  <derek@ximbiot.com>
10333
10334         * m4/strstr.m4 (gl_FUNC_STRSTR): Don't define strstr here.
10335
10336 2005-09-15  Derek Price  <derek@ximbiot.com>
10337
10338         * lib/regex_internal.h: Blank `pure' for GNUC < 3.
10339         * lib/regex_internal.c: Ditto, using this...
10340         (__GNUC_PREREQ): ...new macro.
10341         * lib/regcomp.c, regexec.c: Blank `always_inline' for GNUC < 3.1
10342         using...
10343         (__GNUC_PREREQ): ...this new macro.
10344
10345         * lib/strstr.h: Include string.h. Define strstr as a macro here.
10346
10347 2005-09-15  Derek Price  <derek@ximbiot.com>
10348             Paul Eggert  <eggert@cs.ucla.edu>
10349
10350         * lib/regcomp.c, regexec.c, regex_internal.c: Back out previous
10351         changes, consolidating in...
10352         * lib/regex_internal.h: ...this file.
10353
10354 2005-09-13  Jim Meyering  <jim@meyering.net>
10355
10356         * lib/canon-host.c: Filter through gnu indent and reword comments
10357         slightly.
10358         * lib/canon-host.h (ch_strerror_r): Tweak cpp indentation and spacing.
10359
10360 2005-09-13  Derek Price  <derek@ximbiot.com>
10361
10362         * lib/canon-host.c (canon_host_r): Set *cherror on memory allocation
10363         failure.
10364         Reported by Jim Meyering  <jim@meyering.net>.
10365
10366 2005-09-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
10367
10368         * lib/base64.c: Typo.
10369         (base64_encode): Put b64str in initialized data section.
10370
10371 2005-09-12  Paul Eggert  <eggert@cs.ucla.edu>
10372
10373         Merge glibc and coreutils changes into gnulib, plus a few
10374         extra fixes.
10375         * lib/md5.c: Use #error rather than a string.
10376         (CYCLIC): New macro, from glibc source.  Use it instead of rol.
10377         * lib/md5.h (__GNUC_PREREQ, __THROW): Define if not defined already.
10378         (__attribute__): Define to empty for non recent-GCC.
10379         (__md5_buffer, __md5_finish_ctx, __md5_init_ctx, __md5_process_block):
10380         (__md5_process_bytes, __md5_read_ctx, __md5_stream):
10381         Renamed from their non-__ counterparts, with new macros replacing
10382         them if not _LIBC.  Add __THROW attribute.
10383         (rol): Remove.
10384         (struct md5_ctx): Align buffer if using GCC.
10385         * lib/sha1.h (struct sha1_ctx): Likewise.
10386         * lib/sha1.c (SWAP): Renamed from the NOTSWAP.  All uses changed.
10387         The old name was backwards.
10388         (NOTSWAP): Remove; not used.
10389         (rol): New macro, moved here from md5.h.
10390         (sha1_process_block): Remove a FIXME that doesn't make sense.
10391
10392 2005-09-12  Derek Price  <derek@ximbiot.com>
10393
10394         Return usable errors from canon-host.
10395         * lib/canon-host.h: New file.
10396         * lib/canon-host.c (canon_host): Wrap...
10397         (canon_host_r): ...this new function, which now relies exclusively on
10398         getaddrinfo.
10399         (ch_strerror): New function.
10400         (last_cherror): New global.
10401         * lib/getaddrinfo.c: Move include of getaddrinfo.h first to test
10402         interface.
10403         (getaddrinfo): Add AI_CANONNAME functionality.  Don't do arithmetic on
10404         void *.
10405         (freeaddrinfo): Free ai->ai_canonname when set.
10406
10407 2005-09-12  Derek Price  <derek@ximbiot.com>
10408
10409         Make canon-host require getaddrinfo.
10410         * m4/canon-host.m4 (gl_CANON_HOST): Remove most dependencies.
10411         AC_LIBSOURCE canon-host.h.  Call...
10412         (gl_PREREQ_CANON_HOST): ...this new function, which requires
10413         gl_GETADDRINFO.
10414         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Compile gai_strerror when needed.
10415
10416 2005-09-12  Derek Price  <derek@ximbiot.com>
10417
10418         * modules/canon-host: Add canon-host.h.  Depend on getaddrinfo.  Make
10419         LGPL.
10420         * modules/getaddrinfo: Add link to opengroup spec.  Depend on strdup.
10421
10422 2005-09-12  Derek Price  <derek@ximbiot.com>
10423
10424         * lib/gai_strerror.c: Include config.h when available.  Include
10425         getaddrinfo.h before other headers to test interface.
10426         Reported by Larry Jones <lawrence.jones@ugs.com>.
10427
10428 2005-09-12  Derek Price  <derek@ximbiot.com>
10429             Paul Eggert  <eggert@cs.ucla.edu>
10430
10431         * modules/glob (Files): Add glob-libc.h.
10432
10433 2005-09-12  Derek Price  <derek@ximbiot.com>
10434             Paul Eggert  <eggert@cs.ucla.edu>
10435
10436         * m4/glob.m4 (gl_GLOB_SUBSTITUTE): AC_LIBSOURCES for glob.c,
10437         glob_.h, glob-libc.h.
10438         (gl_PREREQ_GLOB): Remove _SYS_CDEFS_H hack; no longer needed.
10439
10440 2005-09-12  Derek Price  <derek@ximbiot.com>
10441             Paul Eggert  <eggert@cs.ucla.edu>
10442
10443         * lib/glob-libc.h: Renamed from glob_.h.  The new version is
10444         taken from libc's glob.h, except with '#ifdef __GLOB_GNULIB'
10445         protecting things that should be done only in gnulib contexts.
10446         * lib/glob_.h: New file, containing only the glob things needed for
10447         gnulib.
10448         (GLOB_PREFIX): Remove.  All uses changed to look for __GLOB_GNULIB.
10449         (__GLOB_CONCAT, __GLOB_XCONCAT, __GLOB_ID): Remove; no longer needed.
10450         (glob, globfree, glob_pattern_p): Now defined simply in terms of
10451         rpl_glob, rpl_globfree, rpl_glob_pattern_p.
10452         (__GLOB_GNULIB): New macro, to keep the glob.h changes clearer
10453         and to respect the namespace rules better.
10454
10455 2005-09-08  Simon Josefsson  <jas@extundo.com>
10456
10457         * modules/socklen: New file.
10458
10459 2005-09-08  Simon Josefsson  <jas@extundo.com>
10460
10461         * m4/socklen.m4: New file.
10462
10463 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
10464
10465         * modules/utimens (Files): Add m4/utimbuf.m4, since
10466         m4/utimens.m4 requires gl_CHECK_TYPE_STRUCT_UTIMBUF.
10467         Reported by Sergey Poznyakoff.
10468
10469 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
10470
10471         * lib/glob.c (glob, globfree, __glob_pattern_p): Use old-style function
10472         definitions, since that's the preferred style in glibc.
10473         Fix a minor spacing issue, and update copyright notice to match
10474         glibc's.
10475
10476 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
10477
10478         * config/srclist.txt: Remove glibc bug 1061; it's been fixed.
10479
10480 2005-09-06  Simon Josefsson  <jas@extundo.com>
10481
10482         * lib/getpass.c (getpass): Fix typo, test for HAVE_TCSETATTR and not
10483         TCSETATTR.  Reported by Derek Price <derek@ximbiot.com>.
10484
10485 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
10486
10487         * lib/regex_internal.h (bitset_not): Add parens to avoid gcc -Wall
10488         warning.
10489
10490 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
10491
10492         * config/srclist.txt: Add glibc bug 1302.
10493
10494 2005-09-05  Paul Eggert  <eggert@cs.ucla.edu>
10495
10496         Change bitset word type from unsigned int to unsigned long int,
10497         as this has better performance on typical 64-bit hosts.
10498         Port bitset code to hosts with unusual word sizes.
10499         * lib/regcomp.c (build_equiv_class, build_charclass, build_range_exp):
10500         (build_collating_symbol):
10501         Prefer bitset to re_bitset_ptr_t in prototypes, when the actual
10502         argument is a bitset.  This is merely a style issue, but it makes
10503         it clearer that an entire array is expected.
10504         (re_compile_fastmap_iter, init_dfa, init_word_char, optimize_subexps):
10505         * lib/regcomp.c (lower_subexp, parse_bracket_exp, built_charclass_op):
10506         Port to the case where bitset_word is not the same as unsigned int.
10507         * lib/regex_internal.h (bitset_set, bitset_clear, bitset_contain):
10508         (bitset_not, bitset_merge, bitset_set_all, bitset_mask):
10509         Likewise.
10510         * lib/regexec.c (check_dst_limits_calc_pos_1,
10511         check_subexp_matching_top):
10512         (build_trtable, group_nodes_into_DFAstates):
10513         Likewise.
10514         * lib/regcomp.c (re_compile_fastmap_iter, utf8_sb_map, optimize_utf8):
10515         Don't assume that SBC_MAX is a multiple of BITSET_WORD_BITS.
10516         * lib/regex_internal.h (bitset_set_all, bitset_not): Likewise.
10517         * lib/regexec.c (group_nodes_into_DFAstates): Likewise.
10518         * lib/regcomp.c (utf8_sb_map): Don't assume UINT_MAX == 0xffffffff.
10519         * lib/regcomp.c (optimize_subexps, lower_subexp):
10520         Work even if bitset_word has holes in its bitwise representation.
10521         * lib/regex_internal.h (BITSET_WORD_BITS): Likewise.
10522         * lib/regexec.c (check_dst_limits_calc_pos_1,
10523         check_subexp_matching_top):
10524         Likewise.
10525         * lib/regex_internal.c (re_string_reconstruct):
10526         Don't assume UCHAR_MAX == 255.
10527         * lib/regex_internal.h (bitset_set_all): Likewise.
10528         * lib/regex_internal.h (BITSET_WORD_BITS): Renamed from UINT_BITS.
10529         All uses changed.
10530         (BITSET_WORDS): Renamed from BITSET_UINTS.  All uses changed.
10531         (bitset_word): New type, replacing 'unsigned int' for bitset uses.
10532         All uses changed.
10533         (BITSET_WORD_MAX): New macro.
10534         (bitset_set, bitset_clear, bitset_contain, bitset_empty):
10535         (bitset_set_all, bitset_copy):  Now inline functions, not macros.
10536         (bitset_empty, bitset_copy):
10537         Prefer sizeof (bitset) to multiplying it out ourselves.
10538         (bitset_not_merge): Remove; unused.
10539         (bitset_contain): Return bool, not unsigned int with one bit on.
10540         All callers changed.
10541         * lib/regexec.c (build_trtable): Don't assume bitset has no stricter
10542         alignment than re_node_set; do this by defining a new internal
10543         type struct dests_alloc and using it to allocate memory.
10544
10545 2005-09-05  Bruno Haible  <bruno@clisp.org>
10546
10547         * gnulib-tool (func_import): Fix comparison in handling of symbolic
10548         links.
10549
10550 2005-09-04  Martin Lambers  <marlam@marlam.de>  (tiny change)
10551
10552         * modules/size_max (Makefile.am): Add size_max.h
10553
10554 2005-09-04  Derek Price  <derek@ximbiot.com>
10555
10556         * gnulib-tool (func_import): Fix reversed $symbolic logic.
10557
10558 2005-09-03  Simon Josefsson  <jas@extundo.com>
10559
10560         * gnulib-tool: Fix typo.
10561
10562 2005-09-03  Simon Josefsson  <jas@extundo.com>
10563
10564         * config/srclist.txt: Add glibc bug 1293.
10565
10566 2005-09-03  Derek Price  <derek@ximbiot.com>
10567
10568         * m4/getlogin_r (gl_GETLOGIN_R): Fix cut & paste error.
10569         From Larry Jones <lawrence.jones@ugs.com>.
10570
10571 2005-09-02  Simon Josefsson  <jas@extundo.com>
10572
10573         * modules/socklen: New file.
10574
10575 2005-09-02  Simon Josefsson  <jas@extundo.com>
10576
10577         * modules/havelib: New module.
10578
10579         * modules/gettext, modules/iconv, modules/lock, modules/readline:
10580         Use havelib.
10581
10582 2005-09-02  Paul Eggert  <eggert@cs.ucla.edu>
10583
10584         Check for arithmetic overflow when calculating sizes, to prevent
10585         some buffer-overflow issues.  These patches are conservative, in the
10586         sense that when I couldn't determine whether an overflow was possible,
10587         I inserted a run-time check.
10588         * lib/regex_internal.h (re_xmalloc, re_xrealloc, re_x2realloc): New
10589         macros.
10590         (SIZE_MAX) [!defined SIZE_MAX]: New macro.
10591         (re_alloc_oversized, re_x2alloc_oversized, re_xnmalloc):
10592         (re_xnrealloc, re_x2nrealloc): New inline functions.
10593         * lib/regcomp.c (init_dfa, analyze, build_range_exp,
10594         parse_bracket_exp):
10595         (build_equiv_class, build_charclass): Check for arithmetic overflow
10596         in size expression calculations.
10597         * lib/regex_internal.c (re_string_realloc_buffers):
10598         (build_wcs_upper_buffer, re_node_set_add_intersect):
10599         (re_node_set_init_union, re_node_set_insert, re_node_set_insert_last):
10600         (re_dfa_add_node, register_state): Likewise.
10601         * lib/regexec.c (re_search_stub, re_copy_regs, re_search_internal):
10602         (prune_impossible_nodes, push_fail_stack, set_regs, check_arrival):
10603         (build_trtable, extend_buffers, match_ctx_init, match_ctx_add_entry):
10604         (match_ctx_add_subtop, match_ctx_add_sublast): Likewise.
10605
10606 2005-09-02  Paul Eggert  <eggert@cs.ucla.edu>
10607
10608         * modules/inttostr (Files): Add m4/inttypes_h.m4, m4/stdint_h.m4,
10609         m4/ulonglong.m4.  Problem reported by Martin Lambers.
10610
10611 2005-09-02  Bruno Haible  <bruno@clisp.org>
10612
10613         Support for lib vs. lib64 distinction on biarch platforms.
10614         * m4/lib-prefix.m4 (AC_LIB_PREPARE_MULTILIB): New macro.
10615         (AC_LIB_PREFIX): Require it. Use $acl_libdirstem instead of 'lib'.
10616         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Likewise.
10617
10618 2005-09-02  Bruno Haible  <bruno@clisp.org>
10619
10620         * gnulib-tool (import): In the other first-use case, provide defaults
10621         as well.
10622
10623 2005-09-02  Bruno Haible  <bruno@clisp.org>
10624
10625         * config/srclist.txt: lib-link.m4 and lib-prefix.m4 currently have
10626         patches not yet found in the latest gettext release.
10627
10628 2005-09-01  Paul Eggert  <eggert@cs.ucla.edu>
10629
10630         * lib/glob.c (GET_LOGIN_NAME_MAX): Renamed from LOGIN_NAME_MAX,
10631         to avoid a collision with bits/local_lim.h in glibc.
10632         All uses changed.  Problem reported by Dmitry V. Levin in
10633         <http://sources.redhat.com/bugzilla/show_bug.cgi?id=1060>.
10634
10635         * lib/regex_internal.c (build_wcs_upper_buffer): Fix portability
10636         bugs in int versus size_t comparisons.
10637         (re_string_context_at): Fix bug where the code assumed that
10638         Idx is signed.
10639
10640         Use bool where appropriate.
10641         * lib/regcomp.c (re_set_fastmap): ICASE arg is bool, not int.
10642         All callers changed.
10643         (calc_eclosure_iter): Likewise, for ROOT arg.
10644         (parse_bracket_element): Likewise, for ACCEPT_HYPHEN arg.
10645         (build_charclass_op): Likewise, for NON_MATCH arg.
10646         * lib/regex_internal.c (re_string_allocate, re_string_construct):
10647         (re_string_construct_common): Likewise, for ICASE arg.
10648         * lib/regexec.c (re_search_2_stub, re_search_stub):
10649         Likewise, for RET_LEN arg.
10650         (check_matching): Likewise, for FL_LONGEST_MATCH arg.
10651         (set_regs): Likewise, for FL_BACKTRACK arg.
10652         * lib/regcomp.c (re_compile_fastmap_iter, optimize_utf8):
10653         (duplicate_node_closure, calc_inveclosure, calc_eclosure):
10654         (calc_eclosure_iter, parse_bracket_exp):
10655         Use bool for internal variables that are booleans.
10656         * lib/regexec.c (re_search_internal, check_matching,
10657         proceed_next_node):
10658         (set_regs, build_sifted_states, sift_states_bkref):
10659         (check_arrival_add_next_nodes, check_arrival_expand_ecl_sub):
10660         (expand_bkref_cache, build_trtable, group_nodes_into_DFAstates):
10661         (find_collation_sequence_value):
10662         Likewise.
10663         * lib/regex_internal.c (re_node_set_insert, re_node_set_insert_last):
10664         (re_node_set_compare):
10665         Return bool, not int. All callers changed.
10666         * lib/regexec.c (check_halt_node_context, check_dst_limits):
10667         (build_trtable, check_node_accept): Likewise.
10668         * lib/regex_internal.h: Include stdbool.h.
10669
10670         Fix bugs uncovered when converting to bool.
10671         * lib/regcomp.c (calc_eclosure_iter): Check for storage allocation
10672         failure instead of charging ahead blindly.
10673         * lib/regex_internal.c (register_state): Likewise.
10674         * lib/regexec.c (re_search_2_stub): Use simpler method than boolean
10675         for freeing internal storage.
10676         (group_nodes_into_DFA_states): Use unsigned int, not int, for
10677         bitset pieces used as boolean, to avoid undefined behavior
10678         on hosts that do int overflow checking.
10679
10680 2005-09-01  Paul Eggert  <eggert@cs.ucla.edu>
10681
10682         * config/srclist.txt: Add glibc bugs 1285-1287.
10683
10684 2005-09-01  Jim Meyering  <jim@meyering.net>
10685
10686         * m4/lchown.m4: Require gl_FUNC_CHOWN, for the definition of
10687         CHOWN_MODIFIES_SYMLINK, which is used by lchown.c.
10688         Require gl_STAT_MACROS, too.
10689
10690 2005-09-01  Bruno Haible  <bruno@clisp.org>
10691
10692         * gnulib-tool (import): In the first-use case, provide defaults.
10693
10694 2005-09-01  Bruno Haible  <bruno@clisp.org>
10695
10696         * gnulib-tool (func_import): Remove the .tmp files.
10697
10698 2005-09-01  Bruno Haible  <bruno@clisp.org>
10699
10700         * gnulib-tool (func_import): Fix handling of symbolic links.
10701
10702 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
10703
10704         On 64-bit hosts (where size_t is 64 bits and int is 32 bits), the
10705         old glibc regex code mishandles strings longer than 2**31 bytes.
10706         This patch fixes this when the regex code is used in gnulib
10707         (i.e., outside glibc).
10708
10709         This patch should not affect the use of the regex code inside
10710         glibc.  No doubt this problem also needs to be handled for glibc
10711         as well, but the result will be an incompatible change to the
10712         glibc ABI, and the old ABI will have to be supported too.  That
10713         can be the the subject for another patch.
10714
10715         * lib/regex.h (_REGEX_LARGE_OFFSETS): New feature-test macro,
10716         governing whether the rest of this patch is active.  By default,
10717         the macro is disabled and the patch has no effect.
10718         (regoff_t) [defined _REGEX_LARGE_OFFSETS]: Define to off_t, not int.
10719         (__re_idx_t, __re_size_t, __re_long_size_t): New types.
10720         (struct re_pattern_buffer, re_search, re_search_2, re_match):
10721         (re_match_2, re_set_registers): Use the new types.
10722         * lib/regex_internal.h (Idx, re_hashval_t): New types.
10723         (REG_MISSING, REG_ERROR, REG_VALID_INDEX, REG_VALID_NONZERO_INDEX):
10724         New macros.
10725         (re_node_set, re_charset_t, re_token_t, re_string_realloc_buffers):
10726         (re_string_context_at, bin_tree_t, re_dfastate_t):
10727         (struct re_state_table_entry, state_array_t, re_sub_match_last_t):
10728         (re_sub_match_top_t, re_match_context_t, re_sift_context_t):
10729         (struct re_fail_stack_ent_t, struct re_fail_stack_t, struct re_dfa_t):
10730         (re_string_char_size_at, re_string_wchar_at):
10731         (re_string_elem_size_at):
10732         Use the new types and macros to port to 64-bit hosts.
10733         Use unsigned types for internal values, so that the code
10734         mostly works even for arrays larger than SSIZE_MAX.
10735         * lib/regcomp.c (re_compile_internal, init_dfa, duplicate_node):
10736         (search_duplicated_node, calc_eclosure_iter, fetch_number):
10737         (parse_reg_exp, parse_branch, parse_expression, parse_sub_exp):
10738         (build_equiv_class, build_charclass, re_compile_fastmap_iter):
10739         (free_dfa_content, create_initial_state, optimize_utf8, analyze):
10740         (optimize_subexps, calc_first, link_nfa_nodes, duplicate_node_closure):
10741         (calc_inveclosure, parse_dup_op, build_range_exp):
10742         (build_collating_symbol, parse_bracket_exp, build_charclass_op):
10743         (fetch_number, create_token_tree, mark_opt_subexp):
10744         Likewise.
10745         * lib/regex_internal.c (re_string_construct_common,
10746         create_ci_newstate):
10747         (create_cd_newstate, re_string_allocate, re_string_construct):
10748         (re_string_realloc_buffers, build_wcs_upper_buffer):
10749         (re_string_skip_chars, build_upper_buffer, re_string_translate_buffer):
10750         (re_string_reconstruct, re_string_peek_byte_case):
10751         (re_string_fetch_byte_case, re_string_context_at):
10752         (re_node_set_alloc, re_node_set_init_1, re_node_set_init_2):
10753         (re_node_set_init_copy, re_node_set_add_intersect):
10754         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
10755         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
10756         (re_node_set_remove_at, re_dfa_add_node, calc_state_hash):
10757         (re_acquire_state, re_acquire_state_context, register_state):
10758         Likewise.
10759         * lib/regex.c (match_ctx_init, match_ctx_add_entry,
10760         search_cur_bkref_entry):
10761         (match_ctx_add_subtop, match_ctx_add_sublast, sift_ctx_init):
10762         (re_search_internal, re_search_2_stub, re_search_stub)
10763         (re_copy_regs, check_matching, check_halt_state_context, update_regs):
10764         (push_fail_stack, sift_states_iter_mb, build_sifted_states):
10765         (update_cur_sifted_state, check_dst_limits):
10766         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
10767         (check_subexp_limits, sift_states_bkref, merge_state_array):
10768         (check_subexp_matching_top, get_subexp, get_subexp_sub):
10769         (find_subexp_node, check_arrival, check_arrival_add_next_nodes):
10770         (check_arrival_expand_ecl, check_arrival_expand_ecl_sub):
10771         (expand_bkref_cache, check_node_accept_bytes):
10772         (group_nodes_into_DFAstates, check_node_accept, regexec, re_match):
10773         (re_search, re_match_2, re_search_2, prune_impossible_nodes):
10774         (acquire_init_state_context, check_halt_node_context):
10775         (proceed_next_node, pop_fail_stack, set_regs, free_fail_stack_return):
10776         (sift_states_backward, clean_state_log_if_needed):
10777         (sub_epsilon_src_nodes, add_epsilone_src_nodes, merge_state_with_log):
10778         (find_recover_state, transit_state_sb, transit_state_mb):
10779         (transit_state_bkref, build_trtable, match_ctx_clean):
10780         Likewise.
10781         * lib/regcomp.c (parse_dup_op): Add an extra test if Idx is unsigned,
10782         to work around an assumption that REG_MISSING is negative.
10783
10784         * lib/regcomp.c (re_comp) [defined _REGEX_RE_COMP || defined _LIBC]:
10785         (seek_collating_symbol_entry) [defined _LIBC]:
10786         (lookup_collation_sequence_value) [defined _LIBC]:
10787         (build_range_exp, build_collating_symbol) [defined _LIBC]:
10788         Use prototypes rather than old-style function definitions.
10789         * lib/regexec.c (re_exec) [defined _REGEX_RE_COMP || defined _LIBC]:
10790         (transit_state_sb) [0]:
10791         (find_collation_sequence_value) [defined _LIBC]: Likewise.
10792
10793         * lib/regexec.c (re_search_internal): Simplify update of rm_so and
10794         rm_eo.
10795
10796         * lib/regcomp.c (re_compile_fastmap_iter, init_dfa, init_word_char):
10797         (optimize_subexps, lower_subexp):
10798         Don't assume 1<<31 has defined behavior on hosts with 32-bit int,
10799         since the signed shift might overflow.  Use 1u<<31 instead.
10800         * lib/regex_internal.h (bitset_set, bitset_clear, bitset_contain):
10801         Likewise.
10802         * lib/regexec.c (check_dst_limits_calc_pos_1,
10803         check_subexp_matching_top): Likewise.
10804
10805         * lib/regcomp.c (optimize_subexps, lower_subexp):
10806         Use CHAR_BIT rather than 8, for clarity.
10807         * lib/regexec.c (check_dst_limits_calc_pos_1):
10808         (check_subexp_matching_top): Likewise.
10809         * lib/regcomp.c (init_dfa): Make table_size unsigned, so that we don't
10810         have to worry about portability issues when shifting it left.
10811         Remove no-longer-needed test for table_size > 0.
10812         * lib/regcomp.c (parse_sub_exp): Do not shift more bits than there are
10813         in a word, as the resulting behavior is undefined.
10814         * lib/regexec.c (check_dst_limits_calc_pos_1): Likewise;
10815         in one case, a <= should have been an <, and in another case the
10816         whole test was missing.
10817         * lib/regex_internal.h (BYTE_BITS): Remove.  All uses changed to
10818         the standard name CHAR_BIT.
10819         * lib/regexec.c (match_ctx_add_entry): Don't assume that ~0 == -1;
10820         this is not true on one's complement and signed-magnitude hosts.
10821
10822         * lib/regex_internal.h (re_sub_match_top_t): Remove unused member
10823         next_last_offset.
10824         (struct re_dfa_t): Remove unused member states_alloc.
10825         * lib/regcomp.c (init_dfa): Don't initialize unused members.
10826
10827 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
10828
10829         * m4/regex.m4 (gl_REGEX): Require AC_SYS_LARGEFILE, Define
10830         _REGEX_LARGE_OFFSETS).  Test for regoff_t/off_t bug in 64-bit
10831         and large-file glibc and in 32-bit large-file Solaris.
10832
10833 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
10834
10835         * lib/regex_internal.c (re_string_reconstruct): Don't assume buffer
10836         lengths fit in regoff_t; this isn't true if regoff_t is the same
10837         width as size_t.
10838         * lib/regex.c (re_search_internal): 5th arg is LAST_START
10839         (= START + RANGE) instead of RANGE.  This avoids overflow
10840         problems when regoff_t is the same width as size_t.
10841         All callers changed.
10842         (re_search_2_stub): Check for overflow when adding the
10843         sizes of the two strings.
10844         (re_search_stub): Check for overflow when adding START
10845         to RANGE; if it occurs, substitute the extreme value.
10846
10847 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
10848
10849         * config/srclist.txt: Add glibc bugs 1273, 1278-1282, 1284.
10850
10851 2005-08-31  Jim Meyering  <jim@meyering.net>
10852
10853         * lib/regcomp.c (search_duplicated_node): Make first pointer arg
10854         a pointer-to-const.
10855         * lib/regex_internal.c (create_ci_newstate, create_cd_newstate):
10856         (register_state): Likewise.
10857         * lib/regexec.c (search_cur_bkref_entry, check_dst_limits):
10858         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
10859         (group_nodes_into_DFAstates): Likewise.
10860
10861 2005-08-31  Jim Meyering  <jim@meyering.net>
10862
10863         * check-module: Add a FIXME comment.
10864
10865 2005-08-31  Eric Blake  <ebb9@byu.net>
10866
10867         * modules/unistd-safer (Files): Add unistd--.h.
10868         * modules/stdio-safer (Files): Add stdio--.h.
10869
10870 2005-08-31  Derek Price  <derek@ximbiot.com>
10871
10872         * lib/getdelim.c (getdelim): Return EOF on EOF.
10873         Reported by Larry Jones <lawrence.jones@ugs.com>.
10874
10875 2005-08-31  Bruno Haible  <bruno@clisp.org>
10876
10877         Avoid unnecessary diffs in the generated lib/Makefile.am.
10878         * gnulib-tool (func_emit_lib_Makefile_am): Don't write the cmd into
10879         the generated files.
10880         (func_import): Don't set cmd.
10881
10882 2005-08-31  Bruno Haible  <bruno@clisp.org>
10883
10884         * lib/strstr.c: Include <stddef.h>, for NULL.
10885         * lib/strcasestr.c: Likewise.
10886         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
10887
10888 2005-08-31  Bruno Haible  <bruno@clisp.org>
10889
10890         * gnulib-tool: New option --macro-prefix.
10891         (func_import): Use macro_prefix.
10892         (import): Handle option --macro-prefix.
10893
10894 2005-08-31  Bruno Haible  <bruno@clisp.org>
10895
10896         * gnulib-tool (import): Rename most ac_* variables to cached_*.
10897         Also use new variables cached_lgpl, cached_libtool.
10898
10899 2005-08-31  Bruno Haible  <bruno@clisp.org>
10900
10901         * gnulib-tool (func_import): Require AC_GNU_SOURCE etc. instead of
10902         always instantiating them.
10903
10904 2005-08-31  Bruno Haible  <bruno@clisp.org>
10905
10906         * gnulib-tool (func_import): Read the previous cached settings
10907         from gnulib-cache.m4 and gnulib-comp.m4. Remove files that were
10908         earlier added by gnulib but are now dropped. Warn when a gnulib file
10909         overwrites a non-gnulib file.
10910
10911 2005-08-31  Bruno Haible  <bruno@clisp.org>
10912
10913         * gnulib-tool (func_import): Generate two files gnulib-cache.m4 and
10914         gnulib-comp.m4 instead of a single gnulib.m4, to make it easy for
10915         projects that don't keep autogenerated files in CVS. Put into
10916         actioncmd only the specified modules, not the transitive closure.
10917
10918 2005-08-31  Bruno Haible  <bruno@clisp.org>
10919
10920         * gnulib-tool (func_import): Fix defaulting of $libname and $libtool.
10921         Create directories that shall be filled.
10922         (import): Don't look for gl_* macros in configure.ac. Recurse across
10923         all directories containing a gnulib-cache.m4 files, if meaningful.
10924
10925 2005-08-31  Bruno Haible  <bruno@clisp.org>
10926
10927         * gnulib-tool (func_import): Emit also a stub for gl_LIBTOOL.
10928         (import): Set seen_libtool when we see gl_LIBTOOL.
10929
10930 2005-08-31  Bruno Haible  <bruno@clisp.org>
10931
10932         * gnulib-tool (func_import): Also copy m4/gnulib-tool.m4. Omit
10933         declaration macro definitions from generated gnulib.m4.
10934
10935 2005-08-30  Oskar Liljeblad  <oskar@osk.mine.nu>
10936
10937         * lib/iconvme.h: Add prototype for iconv_alloc.
10938
10939 2005-08-29  Simon Josefsson  <jas@extundo.com>
10940
10941         * lib/iconvme.c: Fix errno.
10942
10943 2005-08-29  Bruno Haible  <bruno@clisp.org>
10944
10945         * gnulib-tool: Enclose all occurrences of $destdir in "...", so
10946         that it works when the directory contains spaces.
10947
10948 2005-08-29  Bruno Haible  <bruno@clisp.org>
10949
10950         * gnulib-tool (import): Avoid unnecessary spaces in $avoidlist.
10951
10952 2005-08-29  Bruno Haible  <bruno@clisp.org>
10953
10954         * gnulib-tool (func_import): Emit more comments into gnulib.m4.
10955         Emit more advice.
10956
10957 2005-08-29  Bruno Haible  <bruno@clisp.org>
10958         and Stepan Kasal  <kasal@ucw.cz>
10959
10960         * check-module: If more parameters are given, check each of them
10961         separately; add more exceptions, as noted by Jim Meyering.
10962         (check_module): New procedure.
10963         (%exempt_header): Now contains all exceptions.
10964
10965 2005-08-29  Ben Pfaff  <blp@cs.stanford.edu>
10966
10967         * modules/byteswap (Makefile.am): Fix rule to not assume GNU make.
10968
10969 2005-08-29  Oskar Liljeblad  <oskar@osk.mine.nu>
10970
10971         * lib/iconvme.c: Split iconv_string into iconv_alloc.
10972
10973 2005-08-28  Bruno Haible  <bruno@clisp.org>
10974
10975         * m4/gnulib-tool.m4: New file.
10976
10977 2005-08-27  Jim Meyering  <jim@meyering.net>
10978
10979         * modules/unistd-safer (Files): Add pipe-safer.c.
10980         * modules/fcntl-safer (Files): Add creat-safer.c.
10981
10982 2005-08-27  Jim Meyering  <jim@meyering.net>
10983
10984         * m4/stdlib-safer.m4: New file.  From coreutils.
10985         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Add stdio--.h.
10986         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Add creat-safer.c to the
10987         AC_LIBSOURCES list and arrange to compile it via AC_LIBOBJ.
10988         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Likewise, add pipe-safer.c.
10989         Add pipe-safer.c and unistd--.h to the AC_LIBSOURCES list.
10990
10991 2005-08-27  Jim Meyering  <jim@meyering.net>
10992
10993         * lib/fopen-safer.c: Merge minor changes from coreutils.
10994         * lib/dup-safer.c: Likewise.
10995         * lib/fd-safer.c: Likewise.
10996
10997         Merge from coreutils.
10998         * lib/stdio--.h: New file.
10999         * lib/stdlib--.h: New file.
11000         * lib/mkstemp-safer.c: New file.
11001
11002         GNU tar needs these.
11003         * lib/pipe-safer.c: New file.
11004         * lib/creat-safer.c: New file.
11005         * lib/fcntl--.h (creat): Define to creat_safer.
11006         * lib/fcntl-safer.h: Include <sys/types.h> and declare creat_safer.
11007         * lib/unistd--.h (pipe): Define to pipe_safer.
11008         * lib/unistd-safer.h: Declare pipe_safer.
11009
11010 2005-08-26  Simon Josefsson  <jas@extundo.com>
11011
11012         * lib/getpass.c: Use _WIN32 instead of WIN32, suggested by Bruno
11013         Haible <bruno@clisp.org>.
11014
11015 2005-08-26  Paul Eggert  <eggert@cs.ucla.edu>
11016
11017         * lib/regex_internal.h: Remove all references to
11018         RE_NO_INTERNAL_PROTOTYPES; no longer neeeded now that we assume C89
11019         or better.
11020         (bitset_not, bitset_merge, bitset_not_merge):
11021         (bitset_mask, re_string_allocate, re_string_construct):
11022         (re_string_reconstruct, re_string_destruct, re_string_elem_size_at):
11023         (re_string_char_size_at, re_string_wchar_at, re_string_peek_byte_case):
11024         (re_string_fetch_byte_case, re_node_set_alloc, re_node_set_init_1):
11025         (re_node_set_init_2, re_node_set_init_copy, re_node_set_add_intersect):
11026         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
11027         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
11028         (re_node_set_remove_at, re_dfa_add_node, re_acquire_state):
11029         (re_acquire_state_context):
11030         Remove unnecessary forward decls.
11031         (re_string_char_size_at, re_string_wchar_at, re_string_elem_size_at):
11032         Put __attribute at function definition,
11033         now that the function decl has been removed.
11034         * lib/regex_internal.c (re_string_peek_byte_case):
11035         (re_string_fetch_byte_case, re_node_set_compare, re_node_set_contains):
11036         Likewise.
11037
11038 2005-08-25  Stepan Kasal  <kasal@ucw.cz>
11039
11040         * m4/regex.m4: Add AC_PREREQ(2.50).
11041         (gl_REGEX): If --with-included-regex was given, skip the autodetection.
11042
11043 2005-08-25  Simon Josefsson  <jas@extundo.com>
11044
11045         * m4/getpass.m4: Check for termios.h, tcgetattr, tcsetattr, and
11046         __fsetlocking.
11047
11048 2005-08-25  Simon Josefsson  <jas@extundo.com>
11049
11050         * lib/getpass.c: Add WIN32 implementation.  Conditionalize use of
11051         termios.h, tcgetattr, tcsetattr and __fsetlocking.  Remove some
11052         GLIBC specific code.
11053
11054 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
11055
11056         Make regex safe for g++.  This fixes one real bug (an "err"
11057         that should have been "*err").  g++ problem reported by
11058         Sam Steingold.
11059         * lib/regex_internal.h (re_calloc): New macro, consistent with
11060         re_malloc etc.  All callers of calloc changed to use re_calloc.
11061         * lib/regex_internal.c (build_wcs_upper_buffer): Return reg_errcode_t,
11062         not int.  All callers changed.
11063         * lib/regcomp.c (re_compile_fastmap_iter): Don't use
11064         alloca (mb_cur_max); just use an array of size MB_LEN_MAX.
11065         * lib/regexec.c (push_fail_stack): Use re_realloc, not realloc.
11066         (find_recover_state): Change "err" to "*err"; this fixes what
11067         appears to be a real bug.
11068         (check_arrival_expand_ecl_sub): Be consistent about reg_errcode_t
11069         versus int.
11070
11071 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
11072
11073         * modules/regex (Depends-on): Add malloc, since the code
11074         assumes that !malloc(0) means failure.
11075
11076 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
11077
11078         * lib/regexec.c (set_regs): Don't alloca with an unbounded size.
11079
11080         alloca modernization/simplification for regex.
11081         * lib/regex.c: Remove portability cruft for alloca.  This no longer
11082         needs to be at the start of the file, and can be moved into
11083         regex_internal.h and simplified.
11084         * lib/regex_internal.h: Include <alloca.h>.
11085         (__libc_use_alloca) [!defined _LIBC]: New macro.
11086         * lib/regexec.c (build_trtable): Remove "#ifdef _LIBC", since the code
11087         now works outside glibc.
11088
11089 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
11090
11091         * config/srclist.txt: Add glibc bugs 1241, 1245.
11092
11093 2005-08-25  Jim Meyering  <jim@meyering.net>
11094
11095         * lib/open-safer.c: Include <config.h>.
11096         Otherwise, we'd lose LARGEFILE support in any file using
11097         e.g. "fcntl--.h"
11098
11099 2005-08-25  Bruno Haible  <bruno@clisp.org>
11100
11101         * m4/minmax.m4: Require autoconf 2.52.
11102         (gl_MINMAX_IN_HEADER): Add comments. Use m4_pushdef/m4_popdef instead
11103         of define/undefine. Use AS_TR_SH and AS_TR_CPP as more robust
11104         alternatives of translit over the alphabet.
11105         Based on a patch from Stepan Kasal <kasal@ucw.cz>.
11106
11107 2005-08-24  Simon Josefsson  <jas@extundo.com>
11108
11109         * tests/test-getpass.c: New file.
11110
11111 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
11112
11113         * m4/regex.m4 (gl_REGEX): Use POSIX-compliant spellings when testing
11114         for GNU regex features.
11115
11116 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
11117
11118         * lib/regcomp.c (regerror): 2nd arg is 'restrict', as per POSIX.
11119         * lib/regex.h (regerror): Likewise.
11120
11121         * lib/regex.c: Do not include <sys/types.h>, as POSIX no longer
11122         requires this.  (The code never needed it.)
11123
11124         * lib/regcomp.c, regex_internal.c, regex_internal.h, regexec.c:
11125         All uses of recently-renamed identifiers changed to use the new,
11126         POSIX-compliant names.  The code will build and run just fine
11127         without these changes, but it's better to eat our own dog food
11128         and use the standard-conforming names.
11129
11130         * lib/regex.h: Fix a multitude of POSIX name space violations.
11131         These changes have an effect only for programs that define
11132         _POSIX_C_SOURCE, _POSIX_SOURCE, or _XOPEN_SOURCE; they
11133         do not change anything for programs compiled in the normal way.
11134         Also, there is no effect on the ABI.
11135
11136         (_REGEX_SOURCE): New macro.
11137         Do not include <stddef.h> if _XOPEN_SOURCE and VMS are both
11138         defined and _GNU_SOURCE is not; this fixes a name space violation.
11139
11140         Rename the following macros to obey POSIX requirements.
11141         The old names are still visible as macros if _REGEX_SOURCE is defined.
11142         (REG_BACKSLASH_ESCAPE_IN_LISTS): renamed from
11143         RE_BACKSLASH_ESCAPE_IN_LISTS.
11144         (REG_BK_PLUS_QM): renamed from RE_BK_PLUS_QM.
11145         (REG_CHAR_CLASSES): renamed from RE_CHAR_CLASSES.
11146         (REG_CONTEXT_INDEP_ANCHORS): renamed from RE_CONTEXT_INDEP_ANCHORS.
11147         (REG_CONTEXT_INDEP_OPS): renamed from RE_CONTEXT_INDEP_OPS.
11148         (REG_CONTEXT_INVALID_OPS): renamed from RE_CONTEXT_INVALID_OPS.
11149         (REG_DOT_NEWLINE): renamed from RE_DOT_NEWLINE.
11150         (REG_DOT_NOT_NULL): renamed from RE_DOT_NOT_NULL.
11151         (REG_HAT_LISTS_NOT_NEWLINE): renamed from RE_HAT_LISTS_NOT_NEWLINE.
11152         (REG_INTERVALS): renamed from RE_INTERVALS.
11153         (REG_LIMITED_OPS): renamed from RE_LIMITED_OPS.
11154         (REG_NEWLINE_ALT): renamed from RE_NEWLINE_ALT.
11155         (REG_NO_BK_BRACES): renamed from RE_NO_BK_BRACES.
11156         (REG_NO_BK_PARENS): renamed from RE_NO_BK_PARENS.
11157         (REG_NO_BK_REFS): renamed from RE_NO_BK_REFS.
11158         (REG_NO_BK_VBAR): renamed from RE_NO_BK_VBAR.
11159         (REG_NO_EMPTY_RANGES): renamed from RE_NO_EMPTY_RANGES.
11160         (REG_UNMATCHED_RIGHT_PAREN_ORD): renamed from
11161         RE_UNMATCHED_RIGHT_PAREN_ORD.
11162         (REG_NO_POSIX_BACKTRACKING): renamed from RE_NO_POSIX_BACKTRACKING.
11163         (REG_NO_GNU_OPS): renamed from RE_NO_GNU_OPS.
11164         (REG_DEBUG): renamed from RE_DEBUG.
11165         (REG_INVALID_INTERVAL_ORD): renamed from RE_INVALID_INTERVAL_ORD.
11166         (REG_IGNORE_CASE): renamed from RE_ICASE.  This renaming is a bit
11167         unusual, since we can't clash with the POSIX REG_ICASE.
11168         (REG_CARET_ANCHORS_HERE): renamed from RE_CARET_ANCHORS_HERE.
11169         (REG_CONTEXT_INVALID_DUP): renamed from RE_CONTEXT_INVALID_DUP.
11170         (REG_NO_SUB): renamed from RE_NO_SUB.
11171         (REG_SYNTAX_EMACS): renamed from RE_SYNTAX_EMACS.
11172         (REG_SYNTAX_AWK): renamed from RE_SYNTAX_AWK.
11173         (REG_SYNTAX_GNU_AWK): renamed from RE_SYNTAX_GNU_AWK.
11174         (REG_SYNTAX_POSIX_AWK): renamed from RE_SYNTAX_POSIX_AWK.
11175         (REG_SYNTAX_GREP): renamed from RE_SYNTAX_GREP.
11176         (REG_SYNTAX_EGREP): renamed from RE_SYNTAX_EGREP.
11177         (REG_SYNTAX_POSIX_EGREP): renamed from RE_SYNTAX_POSIX_EGREP.
11178         (REG_SYNTAX_ED): renamed from RE_SYNTAX_ED.
11179         (REG_SYNTAX_SED): renamed from RE_SYNTAX_SED.
11180         (_REG_SYNTAX_POSIX_COMMON): renamed from _RE_SYNTAX_POSIX_COMMON.
11181         (REG_SYNTAX_POSIX_BASIC): renamed from RE_SYNTAX_POSIX_BASIC.
11182         (REG_SYNTAX_POSIX_MINIMAL_BASIC): renamed from
11183         RE_SYNTAX_POSIX_MINIMAL_BASIC.
11184         (REG_SYNTAX_POSIX_EXTENDED): renamed from RE_SYNTAX_POSIX_EXTENDED.
11185         (REG_SYNTAX_POSIX_MINIMAL_EXTENDED): renamed from
11186         RE_SYNTAX_POSIX_MINIMAL_EXTENDED.
11187         (REG_DUP_MAX): renamed from RE_DUP_MAX.  No need to undef it.
11188         (REG_UNALLOCATED): Renamed from REGS_UNALLOCATED.
11189         (REG_REALLOCATE): Renamed from REGS_REALLOCATE.
11190         (REG_FIXED): Renamed from REGS_FIXED.
11191         (REG_NREGS): Renamed from RE_NREGS.
11192
11193         (REG_ICASE, REG_NEWLINE, REG_NOSUB): Do not depend on the values
11194         of other REG_* macros, since POSIX says the user is allowed to
11195         #undef these macros selectively.
11196
11197         (reg_errcode_t): Update comment stating what other tables need
11198         to be consistent.
11199
11200         Rename the following enum values to obey POSIX requirements.
11201         The old names are still visible as macros.
11202         (_REG_ENOSYS): Renamed from REG_ENOSYS.  Define even if _XOPEN_SOURCE
11203         is not defined, since GNU is supposed to be a superset of POSIX as
11204         much as possible, and since we want reg_errcode_t to be a signed
11205         type for implementation consistency.
11206         (_REG_NOERROR): Renamed from REG_NOERROR.
11207         (_REG_NOMATCH): Renamed from REG_NOMATCH.
11208         (_REG_BADPAT): Renamed from REG_BADPAT.
11209         (_REG_ECOLLATE): Renamed from REG_ECOLLATE.
11210         (_REG_ECTYPE): Renamed from REG_ECTYPE.
11211         (_REG_EESCAPE): Renamed from REG_EESCAPE.
11212         (_REG_ESUBREG): Renamed from REG_ESUBREG.
11213         (_REG_EBRACK): Renamed from REG_EBRACK.
11214         (_REG_EPAREN): Renamed from REG_EPAREN.
11215         (_REG_EBRACE): Renamed from REG_EBRACE.
11216         (_REG_BADBR): Renamed from REG_BADBR.
11217         (_REG_ERANGE): Renamed from REG_ERANGE.
11218         (_REG_ESPACE): Renamed from REG_ESPACE.
11219         (_REG_BADRPT): Renamed from REG_BADRPT.
11220         (_REG_EEND): Renamed from REG_EEND.
11221         (_REG_ESIZE): Renamed from REG_ESIZE.
11222         (_REG_ERPAREN): Renamed from REG_ERPAREN.
11223         (REG_ENOSYS, REG_NOERROR, REG_NOMATCH, REG_BADPAT, REG_ECOLLATE):
11224         (REG_ECTYPE, REG_EESCAPE, REG_ESUBREG, REG_EBRACK, REG_EPAREN):
11225         (REG_EBRACE, REG_BADBR, REG_ERANGE, REG_ESPACE, REG_BADRPT, REG_EEND):
11226         (REG_ESIZE, REG_ERPAREN): Now macros, not enum constants.
11227
11228         (_REG_RE_NAME, _REG_RM_NAME): New macros.
11229         (REG_TRANSLATE_TYPE): Renamed from RE_TRANSLATE_TYPE.  All uses
11230         changed.  But support the old name if the new one is not defined
11231         and if _REGEX_SOURCE.
11232
11233         Change the following member names in struct re_pattern_buffer.
11234         The old names are still supported if !_REGEX_SOURCE.
11235         The new names are always supported, regardless of _REGEX_SOURCE.
11236         (re_buffer): Renamed from buffer.
11237         (re_allocated): Renamed from allocated.
11238         (re_used): Renamed from used.
11239         (re_syntax): Renamed from syntax.
11240         (re_fastmap): Renamed from fastmap.
11241         (re_translate): Renamed from translate.
11242         (re_can_be_null): Renamed from can_be_null.
11243         (re_regs_allocated): Renamed from regs_allocated.
11244         (re_fastmap_accurate): Renamed from fastmap_accurate.
11245         (re_no_sub): Renamed from no_sub.
11246         (re_not_bol): Renamed from not_bol.
11247         (re_not_eol): Renamed from not_eol.
11248         (re_newline_anchor): Renamed from newline_anchor.
11249
11250         Change the following member names in struct re_registers.
11251         The old names are still supported if !_REGEX_SOURCE.
11252         The new names are always supported, regardless of _REGEX_SOURCE.
11253         (rm_num_regs): Renamed from num_regs.
11254         (rm_start): Renamed from start.
11255         (rm_end): Renamed from end.
11256
11257         (re_set_syntax, re_compile_pattern, re_compile_fastmap):
11258         (re_search, re_search_2, re_match, re_match_2, re_set_registers):
11259         Prepend __ to parameter names.
11260
11261         Undo yesterday's changes.
11262
11263 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
11264
11265         * config/srclist.txt: Remove glibc bug 1233 and add 1236, which
11266         supersedes it. Add glibc bugs 1237, 1238, 1240.  Comment out
11267         lib/regex.c.
11268
11269 2005-08-24  Jim Meyering  <jim@meyering.net>
11270
11271         Sync from coreutils.
11272         * m4/fcntl-safer.m4: New file.
11273
11274         * m4/xgetcwd.m4: Use AC_LIBSOURCES and AC_LIBOBJ to indicate source
11275         and object files for this module.
11276
11277 2005-08-24  Jim Meyering  <jim@meyering.net>
11278
11279         Sync from coreutils.
11280         * lib/fcntl--.h, lib/fcntl-safer.h, lib/open-safer.c: New files.
11281
11282 2005-08-24  Jim Meyering  <jim@meyering.net>
11283
11284         * modules/xgetcwd (Makefile.am): Remove `lib_SOURCES += ...' line,
11285         now that xgetcwd.m4 requires xgetcwd.c and xgetcwd.h.
11286
11287 2005-08-24  Jim Meyering  <jim@meyering.net>
11288
11289         * modules/fcntl-safer: New module.
11290         * modules/fts (Depends-on): Add fcntl-safer.
11291         * MODULES.html.sh (File descriptor based Input/Output):
11292         Add fcntl-safer.
11293
11294 2005-08-24  Bruno Haible  <bruno@clisp.org>
11295
11296         Support for unit test modules.
11297         * modules/README: Mention tests modules.
11298         * modules/TEMPLATE-TESTS: New file.
11299         * gnulib-tool: New options --extract-tests-module, --with-tests and
11300         --tests-base (unused for the moment).
11301         (testsbase, inctests): New variables.
11302         (func_all_modules): Exclude TEMPLATE-TESTS and *-tests.
11303         (func_verify_module): Exclude TEMPLATE-TESTS.
11304         (func_verify_nontests_module, func_verify_tests_module): New functions.
11305         (func_get_dependencies): Add implicit dependency for tests modules.
11306         (func_get_tests_module): New function.
11307         (func_modules_transitive_closure): When --with-tests was specified,
11308         include the unit tests as well, unless explicitly avoided.
11309         (func_emit_lib_Makefile_am): Ignore the tests modules here.
11310         (func_emit_tests_Makefile_am): New function.
11311         (func_create_testdir): When --with-tests was specified, emit a
11312         tests/ directory.
11313         * MODULES.html.sh (Future developments): Update.
11314
11315 2005-08-24  Bruno Haible  <bruno@clisp.org>
11316
11317         * modules/tls-tests: New file.
11318         * tests/test-tls.c: New file, from GNU gettext.
11319
11320 2005-08-24  Bruno Haible  <bruno@clisp.org>
11321
11322         * modules/lock-tests: New file.
11323         * tests/test-lock.c: New file, from GNU gettext.
11324
11325 2005-08-24  Bruno Haible  <bruno@clisp.org>
11326
11327         * lib/lock.h: Add multiple inclusion guard.
11328         * lib/tls.h: Add multiple inclusion guard.
11329
11330 2005-08-24  Bruno Haible  <bruno@clisp.org>
11331
11332         * gnulib-tool: Add support for the --aux-dir option to
11333         --create-testdir, --create-megatestdir, --test, --megatest.
11334         (func_create_testdir, func_create_megatestdir): Optionally emit a
11335         AC_CONFIG_AUX_DIR directive.
11336         (create-testdir, create-megatestdir, test, megatest): Provide a
11337         default value for $auxdir.
11338
11339 2005-08-24  Bruno Haible  <bruno@clisp.org>
11340
11341         * gnulib-tool (import): Use compound statement instead of subshell
11342         where possible.
11343
11344 2005-08-24  Bruno Haible  <bruno@clisp.org>
11345
11346         * gnulib-tool (import): Change --aux-dir default to "build-aux".
11347
11348 2005-08-24  Bruno Haible  <bruno@clisp.org>
11349
11350         * gnulib-tool (func_version): Update.
11351
11352 2005-08-24  Bruno Haible  <bruno@clisp.org>
11353
11354         * gnulib-tool (func_import, func_create_testdir,
11355         func_create_megatestdir): Quote all autoconf macro arguments.
11356
11357 2005-08-24  Bruno Haible  <bruno@clisp.org>
11358
11359         * gnulib-tool (func_create_megatestdir): Call autoreconf without the
11360         option --force, because --force causes the aclocal.m4 of each
11361         subdirectory to be newer than the corresponding config.h.in.
11362
11363 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
11364
11365         * m4/regex.m4 (gl_INCLUDED_REGEX): Remove; no longer used.
11366         All contents moved to gl_REGEX.
11367         (gl_REGEX): Don't bother checking whether lib/regex.c exists;
11368         assume that it does.
11369
11370 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
11371
11372         * lib/regex.h (REG_NOSYS)
11373         [!defined _XOPEN_SOURCE && 200112L <= _POSIX_C_SOURCE]:
11374         Define, since POSIX requires it as of 2001.
11375         (_REG_ENOSYS)
11376         [! (defined _XOPEN_SOURCE || 200112L <= _POSIX_C_SOURCE)]:
11377         New private symbol, used to keep the enum signed in all cases.
11378         * lib/regex.h (RE_NO_EMPTY_RANGES): Fix doc bug reported by James
11379         Youngman in
11380         <http://lists.gnu.org/archive/html/bug-gnulib/2005-07/msg00132.html>.
11381
11382         * lib/regex_internal.c (re_string_skip_chars, register_state):
11383         (calc_state_hash):
11384         Remove forward decls; no longer needed now that we use prototypes.
11385         * lib/regexec.c (acquire_init_state_context, check_halt_node_context):
11386         (proceed_next_node, pop_fail_stack, sub_epsilon_src_nodes):
11387         (clean_state_log_if_needed): Likewise.
11388
11389 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
11390
11391         * config/srclist.txt: Add glibc bugs 1231-1233.
11392
11393 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
11394
11395         Fix problems reported by Sam Steingold in
11396         <http://lists.gnu.org/archive/html/bug-gnulib/2005-08/msg00007.html>.
11397         * lib/regexec.c (sift_states_bkref): Fix portability bug: the code
11398         assumed that reg_errcode_t is a signed type, which is not
11399         necessarily true if _XOPEN_SOURCE is not defined.
11400         * lib/regex_internal.c (calc_state_hash): Put 'inline' before type,
11401         since some compilers warn about it otherwise.
11402
11403 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
11404
11405         * lib/regcomp.c (create_initial_state): Remove duplicate decl.
11406         (init_word_char, create_initial_state, duplicate_node_closure):
11407         (fetch_token, peek_token_bracket, build_range_exp):
11408         (build_collating_symbol): Remove forward decls; no longer needed
11409         now that we use prototypes.
11410
11411         * lib/regcomp.c:
11412         (re_compile_pattern, re_set_syntax, re_compile_fastmap):
11413         (re_compile_fastmap_iter, regcomp, regerror, regfree):
11414         (re_compile_internal, init_dfa, init_word_char, free_workarea_compile):
11415         (create_initial_state, optimize_utf8, analyze, postorder, preorder):
11416         (optimize_subexps, lower_subexps, lower_subexp, calc_first, calc_next):
11417         (link_nfa_nodes, duplicate_node_closure, search_duplicated_node):
11418         (duplicate_node, calc_inveclosure, calc_eclosure, calc_eclosure_iter):
11419         (fetch_token, peek_token, peek_token_bracket, parse, parse_reg_exp):
11420         (parse_branch, parse_expression, parse_sub_exp, parse_dup_op):
11421         (build_range_exp, build_collating_symbol, parse_bracket_exp):
11422         (parse_bracket_element, parse_bracket_symbol, build_equiv_class):
11423         (build_charclass, build_charclass_op, fetch_number, create_tree):
11424         (create_token_tree, mark_opt_subexp, duplicate_tree):
11425         Use prototypes rather than old-style definitions.
11426
11427         * lib/regex_internal.c:
11428         (re_string_allocate, re_string_construct, re_string_realloc_buffers):
11429         (re_string_construct_common, build_wcs_buffer, build_wcs_upper_buffer):
11430         (re_string_skip_chars, build_upper_buffer, re_string_translate_buffer):
11431         (re_string_reconstruct, re_string_peek_byte_case):
11432         (re_string_fetch_byte_case, re_string_destruct, re_string_context_at):
11433         (re_node_set_alloc, re_node_set_init_1, re_node_set_init_2):
11434         (re_node_set_init_copy, re_node_set_add_intersect):
11435         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
11436         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
11437         (re_node_set_remove_at, re_dfa_add_node, calc_state_hash):
11438         (re_acquire_state, re_acquire_state_context, register_state):
11439         (create_ci_newstate, create_cd_newstate, free_state):
11440         Likewise.
11441         * lib/regexec.c (regexec, re_match, re_search, re_match_2,
11442         re_search_2):
11443         (re_search_2_stub, re_search_stub, re_copy_regs, re_set_registers):
11444         (re_search_internal, prune_impossible_nodes):
11445         (acquire_init_state_context, check_matching, static):
11446         (check_halt_node_context, check_halt_state_context, proceed_next_node):
11447         (push_fail_stack, pop_fail_stack, set_regs, free_fail_stack_return):
11448         (update_regs, sift_states_backward, build_sifted_states):
11449         (clean_state_log_if_needed, merge_state_array):
11450         (update_cur_sifted_state, add_epsilon_src_nodes):
11451         (sub_epsilon_src_nodes, check_dst_limits, check_dst_limits_calc_pos_1):
11452         (check_dst_limits_calc_pos, check_subexp_limits, sift_states_bkref):
11453         (sift_states_iter_mb, transit_state, merge_state_with_log, static):
11454         (find_recover_state, check_subexp_matching_top, transit_state_mb):
11455         (transit_state_bkref, get_subexp, get_subexp_sub, find_subexp_node):
11456         (check_arrival, check_arrival_add_next_nodes):
11457         (check_arrival_expand_ecl, check_arrival_expand_ecl_sub):
11458         (expand_bkref_cache, build_trtable, group_nodes_into_DFAstates):
11459         (check_node_accept_bytes, check_node_accept, extend_buffers):
11460         (match_ctx_init, match_ctx_clean, match_ctx_free, match_ctx_add_entry):
11461         (search_cur_bkref_entry, match_ctx_add_subtop, match_ctx_add_sublast):
11462         (sift_ctx_init):
11463         Likewise.
11464
11465         * lib/regex_internal.h:
11466         (re_string_allocate, re_string_construct, re_string_reconstruct):
11467         (re_string_realloc_buffers, build_wcs_buffer, build_wcs_upper_buffer):
11468         (build_upper_buffer, re_string_translate_buffer, re_string_destruct):
11469         (re_string_elem_size_at, re_string_char_size_at, re_string_wchar_at):
11470         (re_string_context_at, re_string_peek_byte_case):
11471         (re_string_fetch_byte_case): Declare even if RE_NO_INTERNAL_PROTOTYPES
11472         is defined, since we now use prototypes always.
11473
11474         * lib/regex.h (_RE_ARGS): Remove.  No longer needed, since we assume
11475         C89 or better.  All uses removed.
11476
11477 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
11478
11479         * config/srclist.txt: Add glibc bugs 1220-1227.
11480
11481 2005-08-20  Jim Meyering  <jim@meyering.net>
11482
11483         * lib/regexec.c (regexec, re_search_stub) [!_LIBC]: Omit declaration
11484         of unused local, dfa.
11485
11486 2005-08-20  Bruno Haible  <bruno@clisp.org>
11487
11488         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_GNU_SOURCE.
11489
11490 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
11491
11492         * lib/regex_internal.c (re_string_realloc_buffers, re_node_set_insert):
11493         (re_node_set_insert_last, re_dfa_add_node):
11494         Rename local variables to avoid GCC shadowing warnings.
11495
11496 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
11497
11498         * lib/regex_internal.c (re_acquire_state, re_acquire_state_context)
11499         [defined lint]: Suppress bogus uninitialized-variable warnings.
11500
11501         * lib/regcomp.c (duplicate_node): Return new index, not an error code,
11502         and let the caller return REG_ESPACE if out of space.  This
11503         removes an uninitialied-variable warning with GCC 4.0.1, and also
11504         avoids taking the address of a local variable.  All callers
11505         changed.
11506
11507 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
11508
11509         * config/srclist.txt: Comment out $LIBCSRC/posix/regex_internal.c,
11510         $LIBCSRC/posix/regexec.c.
11511         Add glibc bug 1217 for regcomp.c.
11512
11513 2005-08-19  Jim Meyering  <jim@meyering.net>
11514
11515         * lib/regexec.c (proceed_next_node): Redo local variables to
11516         avoid GCC shadowing warnings.
11517
11518 2005-08-18  Bruno Haible  <bruno@clisp.org>
11519
11520         * lib/strstr.c (strstr): Fix return value in multibyte case.
11521         * lib/strcasestr.c (strcasestr): Likewise.
11522
11523 2005-08-17  Paul Eggert  <eggert@cs.ucla.edu>
11524
11525         * lib/regex.h: Remove useless space-before-tab.  From coreutils.
11526
11527 2005-08-17  Jim Meyering  <jim@meyering.net>
11528
11529         Make the %s format (seconds since the epoch) work for a negative
11530         number and when used with a zero-padded field width, e.g. %015s.
11531
11532         * lib/strftime.c (my_strftime): Move the `do_number_sign_and_padding'
11533         label so that it precedes the code to set `digits'.  Otherwise,
11534         %0Ns wouldn't work.  Before this change, `date -d @-22 +%05s' would
11535         print `00-22'.  Now, it prints `-0022', as it should.
11536
11537 2005-08-17  Bruno Haible  <bruno@clisp.org>
11538
11539         * modules/strstr (Files): Add m4/mbrtowc.m4.
11540         (Depends-on): Add mbuiter.
11541
11542 2005-08-17  Bruno Haible  <bruno@clisp.org>
11543
11544         * modules/strcasestr: New file.
11545         * MODULES.html.sh (String handling, based on ANSI C 89): Add
11546         strcasestr.
11547
11548 2005-08-17  Bruno Haible  <bruno@clisp.org>
11549
11550         * modules/strcase (Depends-on): Add mbuiter. Remove strnlen1, mbchar.
11551
11552 2005-08-17  Bruno Haible  <bruno@clisp.org>
11553
11554         * modules/mbuiter: New file.
11555         * MODULES.html.sh (Extended multibyte and wide character utilities):
11556         Add mbuiter.
11557
11558 2005-08-17  Bruno Haible  <bruno@clisp.org>
11559
11560         * m4/strstr.m4 (gl_FUNC_STRSTR): Use the replacement function always.
11561         (gl_PREREQ_STRSTR): Use gl_FUNC_MBRTOWC.
11562
11563 2005-08-17  Bruno Haible  <bruno@clisp.org>
11564
11565         * m4/strcasestr.m4: New file.
11566
11567 2005-08-17  Bruno Haible  <bruno@clisp.org>
11568
11569         * lib/strstr.h: Ignore HAVE_STRSTR, always declare the gnulib function.
11570         * lib/strstr.c: Completely rewritten, with multibyte locale support.
11571
11572 2005-08-17  Bruno Haible  <bruno@clisp.org>
11573
11574         * lib/strcasestr.h: New file.
11575         * lib/strcasestr.c: New file.
11576
11577 2005-08-17  Bruno Haible  <bruno@clisp.org>
11578
11579         * lib/strcasecmp.c: Use mbuiter.h.
11580
11581 2005-08-17  Bruno Haible  <bruno@clisp.org>
11582
11583         * lib/mbuiter.h: New file.
11584
11585 2005-08-16  Paul Eggert  <eggert@cs.ucla.edu>
11586
11587         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Do not override the results
11588         of gl_GETOPT_SUBSTITUTE.  That way, if both gl_GETOPT_SUBSTITUTE
11589         and gl_GETOPT are both invoked via different paths (as happens
11590         with GNU tar CVS because it uses both argp and getopt), the former
11591         wins.
11592
11593 2005-08-16  Bruno Haible  <bruno@clisp.org>
11594
11595         * modules/tls: New file.
11596         * MODULES.html.sh (Multithreading): Add tls.
11597
11598 2005-08-16  Bruno Haible  <bruno@clisp.org>
11599
11600         * modules/strnlen1: New file.
11601         * MODULES.html.sh (String handling): Add strnlen1.
11602
11603 2005-08-16  Bruno Haible  <bruno@clisp.org>
11604
11605         * modules/strcase (Files): Add m4/mbrtowc.m4.
11606         (Depends-on): Add strnlen1, mbchar.
11607
11608 2005-08-16  Bruno Haible  <bruno@clisp.org>
11609
11610         * modules/mbiter: New file.
11611         * MODULES.html.sh (Extended multibyte and wide character utilities):
11612         Add mbiter.
11613
11614 2005-08-16  Bruno Haible  <bruno@clisp.org>
11615
11616         * modules/mbfile: New file.
11617         * MODULES.html.sh (Extended multibyte and wide character utilities):
11618         Add mbfile.
11619
11620 2005-08-16  Bruno Haible  <bruno@clisp.org>
11621
11622         * modules/mbchar: New file.
11623         * MODULES.html.sh (Extended multibyte and wide character utilities):
11624         New section.
11625
11626 2005-08-16  Bruno Haible  <bruno@clisp.org>
11627
11628         * m4/tls.m4: New file, from GNU gettext.
11629
11630 2005-08-16  Bruno Haible  <bruno@clisp.org>
11631
11632         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Use the replacement function
11633         always.
11634         (gl_PREREQ_STRCASECMP): Use gl_FUNC_MBRTOWC.
11635
11636 2005-08-16  Bruno Haible  <bruno@clisp.org>
11637
11638         * m4/mbiter.m4: New file.
11639
11640 2005-08-16  Bruno Haible  <bruno@clisp.org>
11641
11642         * m4/mbfile.m4: New file.
11643
11644 2005-08-16  Bruno Haible  <bruno@clisp.org>
11645
11646         * m4/mbchar.m4: New file.
11647
11648 2005-08-16  Bruno Haible  <bruno@clisp.org>
11649
11650         * lib/tls.h: New file, from GNU gettext.
11651         * lib/tls.c: New file, from GNU gettext.
11652
11653 2005-08-16  Bruno Haible  <bruno@clisp.org>
11654
11655         * lib/strnlen1.h: New file.
11656         * lib/strnlen1.c: New file.
11657
11658 2005-08-16  Bruno Haible  <bruno@clisp.org>
11659
11660         * lib/strcasecmp.c (struct mbiter_multi): Remove at_end field.
11661         (mbi_init): Update.
11662         (mbi_avail, mbi_advance): Let the iteration end before the terminating
11663         NUL byte, not after it.
11664
11665 2005-08-16  Bruno Haible  <bruno@clisp.org>
11666
11667         * lib/strcase.h (strcasecmp): Add note in comments.
11668         * lib/strncasecmp.c: Use code from strcasecmp.c.
11669         * lib/strcasecmp.c: Use mbchar module. Define private mbiter variant.
11670         (strcasecmp): Work correctly in multibyte locales.
11671
11672 2005-08-16  Bruno Haible  <bruno@clisp.org>
11673
11674         * lib/mbiter.h: New file.
11675
11676 2005-08-16  Bruno Haible  <bruno@clisp.org>
11677
11678         * lib/mbfile.h: New file.
11679
11680 2005-08-16  Bruno Haible  <bruno@clisp.org>
11681
11682         * lib/mbchar.h: New file.
11683         * lib/mbchar.c: New file.
11684
11685 2005-08-16  Bruno Haible  <bruno@clisp.org>
11686
11687         * lib/mbchar.h (mb_cmp, mb_casecmp): Order the invalid characters after
11688         the valid ones. Makes the comparison operations transitive:
11689         cmp (a, b) < 0 && cmp (b, c) < 0 ==> cmp (a, c) < 0.
11690         * lib/strcasecmp.c (strcasecmp): Use mb_casecmp.
11691
11692 2005-08-15  Simon Josefsson  <jas@extundo.com>
11693
11694         * modules/ssize_t (License): Change to 'unlimited'.
11695
11696         * gnulib-tool (sed_extract_prog): Recognize 'unlimited' license.
11697
11698 2005-08-15  Paul Eggert  <eggert@cs.ucla.edu>
11699
11700         * config/srclist.txt: Comment out $LIBCSRC/posix/regex.h.
11701         Add comments for each pending glibc patch.
11702
11703 2005-08-15  Bruno Haible  <bruno@clisp.org>
11704
11705         * lib/regex.h (__restrict_arr): Don't define to __restrict if
11706         __cplusplus is defined.
11707
11708 2005-08-14  Jim Meyering  <jim@meyering.net>
11709
11710         Sync from coreutils.
11711
11712         * lib/fts-cycle.c (setup_dir, enter_dir, leave_dir, free_dir):
11713         Use the hash-table-based cycle-detection code not just when
11714         FTS_TIGHT_CYCLE_CHECK if specified, but also with FTS_LOGICAL.
11715         Reported by James Youngman in
11716         <http://lists.gnu.org/archive/html/bug-gnulib/2005-08/msg00011.html>.
11717         * lib/fts_.h: Mention that with FTS_LOGICAL, we use
11718         FTS_TIGHT_CYCLE_CHECK.
11719         * lib/fts.c (fts_cross_check) [FTS_DEBUG]:
11720         s/active_dir_ht/fts_cycle.ht/. This lets us compile with -DFTS_DEBUG,
11721         once again.
11722         * lib/fts.c [! _LIBC]: Include "lstat.h" rather than rolling our own.
11723         * lib/fts.c (fd_safer): Remove decl.
11724         Include fcntl--.h rather than unistd-safer.h
11725         (fts_safe_changedir): Don't call fd_safer; no longer needed
11726         now that we include fcntl--.h.
11727
11728 2005-08-12  Simon Josefsson  <jas@extundo.com>
11729
11730         * modules/getndelim2: Use ssize_t module.
11731         * modules/getnline: Likewise.
11732         * modules/safe-read: Likewise.
11733         * modules/xreadlink: Likewise.
11734
11735         * modules/ssize_t: New file.
11736
11737 2005-08-12  Simon Josefsson  <jas@extundo.com>
11738
11739         * m4/readline.m4: Look for termcap, curses or ncurses if required.
11740
11741 2005-08-12  Simon Josefsson  <jas@extundo.com>
11742
11743         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
11744         ssize_t.
11745
11746 2005-08-12  Simon Josefsson  <jas@extundo.com>
11747
11748         * MODULES.html.sh (Extra functions based on ANSI C 89: Misc): Add
11749         readline, getdelim and check_version.
11750         (Support for systems lacking ISO C 99: Sizes of integer types):
11751         Add size_max.
11752
11753 2005-08-12  Bruno Haible  <bruno@clisp.org>
11754
11755         * m4/readline.m4 (gl_FUNC_READLINE): Look for ncurses first.
11756
11757 2005-08-11  Simon Josefsson  <jas@extundo.com>
11758
11759         * modules/readline: New file.
11760
11761         * modules/strnlen (Files): Add strnlen.h.
11762
11763 2005-08-11  Simon Josefsson  <jas@extundo.com>
11764
11765         * m4/readline.m4: New file.
11766
11767 2005-08-11  Simon Josefsson  <jas@extundo.com>
11768
11769         * lib/readline.h, readline.c: New file.
11770
11771 2005-08-11  Simon Josefsson  <jas@extundo.com>
11772
11773         * doc/gnulib.texi (Initial import, Finishing touches): Mention
11774         gl_AVOID.
11775
11776 2005-08-11  Bruno Haible  <bruno@clisp.org>
11777
11778         * lib/strnlen.h (strnlen): Change parameter name to match comment.
11779
11780 2005-08-10  Stepan Kasal  <kasal@ucw.cz>
11781
11782         * m4/onceonly_2_57.m4: Really require Autoconf 2.57.
11783
11784 2005-08-10  Simon Josefsson  <jas@extundo.com>
11785
11786         * tests/test-iconvme.c: New file.
11787
11788 2005-08-10  Simon Josefsson  <jas@extundo.com>
11789
11790         * m4/strnlen.m4: New file.
11791
11792         * m4/strndup.m4: Don't check for strnlen declaration, done in
11793         strnlen.m4.
11794
11795 2005-08-10  Simon Josefsson  <jas@extundo.com>
11796
11797         * lib/strndup.c: Use strnlen.h.
11798
11799         * lib/strnlen.h: New file.
11800
11801 2005-08-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
11802
11803         * README: Typos.
11804
11805 2005-08-02  Simon Josefsson  <jas@extundo.com>
11806
11807         * modules/readline: New file.
11808
11809 2005-08-02  Simon Josefsson  <jas@extundo.com>
11810
11811         * modules/getdelim: New file.
11812
11813         * modules/getline: Rewrite, don't use getndelim2.
11814
11815 2005-08-02  Simon Josefsson  <jas@extundo.com>
11816
11817         * m4/getline.m4: Separate out getdelim stuff into separate module.
11818
11819         * m4/getdelim.m4: New file.
11820
11821 2005-08-02  Simon Josefsson  <jas@extundo.com>
11822
11823         * lib/getline.h, getline.c: Rewrite.
11824
11825         * lib/getdelim.h, lib/getdelim.c: New files, ported from glibc.
11826
11827 2005-07-31  Bruno Haible  <bruno@clisp.org>
11828
11829         * lib/lock.h (gl_lock_initializer): New macro.
11830         (gl_lock_define_initialized): Use it.
11831         (gl_rwlock_initializer): New macro.
11832         (gl_rwlock_define_initialized): Use it.
11833         (gl_recursive_lock_initializer): New macro.
11834         (gl_recursive_lock_define_initialized): Use it.
11835
11836 2005-07-30  Karl Berry  <karl@gnu.org>
11837
11838         * doc/gnulib.texi (Initial import): mention -I$(top_builddir)/lib.
11839         Report from Ben Pfaff, regarding getopt.
11840
11841 2005-07-26  Paul Eggert  <eggert@cs.ucla.edu>
11842
11843         Add support to getopt for Emacs, which doesn't use LIBOBJS in the
11844         normal way.
11845         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE_HEADER): New macro.
11846         (gl_GETOPT_SUBSTITUTE): Use it.  Invoke gl_PREREQ_GETOPT.
11847         (gl_GETOPT_IFELSE, gl_GETOPT_CHECK_HEADERS): New macros.
11848         (gl_GETOPT): Use the new macros.  Most of the implementation
11849         is moved to the new macros.  This is for programs like Emacs
11850         that don't want all the functionality of gl_GETOPT.
11851
11852 2005-07-26  Bruno Haible  <bruno@clisp.org>
11853
11854         * m4/lock.m4: Update from GNU gettext.
11855
11856 2005-07-26  Bruno Haible  <bruno@clisp.org>
11857
11858         * lib/lock.h: Update from GNU gettext.
11859         * lib/lock.c: Update from GNU gettext.
11860
11861 2005-07-25  Paul Eggert  <eggert@cs.ucla.edu>
11862
11863         * m4/regex.m4 (gl_INCLUDED_REGEX): Use AC_RUN_IFELSE instead of the
11864         obsolescent AC_TRY_RUN.  Include the default includes files, for
11865         'exit'.
11866
11867 2005-07-24  Bruno Haible  <bruno@clisp.org>
11868
11869         * modules/visibility: New file.
11870         * MODULES.html.sh (Misc): Add visibility.
11871
11872 2005-07-24  Bruno Haible  <bruno@clisp.org>
11873
11874         * m4/visibility.m4: New file.
11875
11876 2005-07-24  Bruno Haible  <bruno@clisp.org>
11877
11878         * doc/visibility.texi: New file.
11879
11880 2005-07-22  Bruno Haible  <bruno@clisp.org>
11881
11882         * modules/alloca-opt (Makefile.am): Remove explicit dependency on
11883         $(ALLOCA_H), redundant through BUILT_SOURCES.
11884         * modules/argz (Makefile.am): Remove explicit dependency on $(ARGZ_H),
11885         redundant through BUILT_SOURCES.
11886         * modules/byteswap (Makefile.am): Remove explicit dependency on
11887         $(BYTESWAP_H), redundant through BUILT_SOURCES.
11888         * modules/fnmatch (Makefile.am): Remove explicit dependency on
11889         $(FNMATCH_H), redundant through BUILT_SOURCES.
11890         * modules/getopt (Makefile.am): Remove explicit dependency on
11891         $(GETOPT_H), redundant through BUILT_SOURCES.
11892         * modules/glob (Makefile.am): Remove explicit dependency on $(GLOB_H),
11893         redundant through BUILT_SOURCES.
11894         * modules/poll (Makefile.am): Remove explicit dependency on $(POLL_H),
11895         redundant through BUILT_SOURCES.
11896         * modules/stdbool (Makefile.am): Remove explicit dependency on
11897         $(STDBOOL_H), redundant through BUILT_SOURCES.
11898         * modules/stdint (Makefile.am): Remove explicit dependency on
11899         $(STDINT_H), redundant through BUILT_SOURCES.
11900         * modules/sysexits (Makefile.am): Add $(SYSEXITS_H) to BUILT_SOURCES.
11901         Remove explicit dependency on $(SYSEXITS_H).
11902         Reported by Alexandre Duret-Lutz <adl@src.lip6.fr>.
11903
11904 2005-07-18  Simon Josefsson  <jas@extundo.com>
11905
11906         * lib/check-version.c (check_version): Accept identical versions too.
11907
11908 2005-07-18  Bruno Haible  <bruno@clisp.org>
11909
11910         * modules/lock: New file.
11911         * MODULES.html.sh (Multithreading): New section.
11912
11913 2005-07-18  Bruno Haible  <bruno@clisp.org>
11914
11915         * m4/lock.m4: New file, from GNU gettext.
11916
11917 2005-07-18  Bruno Haible  <bruno@clisp.org>
11918
11919         * lib/lock.h: New file, from GNU gettext.
11920         * lib/lock.c: New file, from GNU gettext.
11921
11922 2005-07-18  Bruno Haible  <bruno@clisp.org>
11923
11924         * lib/lock.h (gl_once_t): New type.
11925         (gl_once_define, gl_once): New macros.
11926         * lib/lock.c (fresh_once): New variable.
11927         (glthread_once, glthread_once_call, glthread_once_singlethreaded): New
11928         functions.
11929
11930 2005-07-16  Simon Josefsson  <jas@extundo.com>
11931
11932         * doc/gnulib.texi (Library version handling): Add ELF symbol collision
11933         workaround, suggested by Bruno.
11934
11935 2005-07-15  Paul Eggert  <eggert@cs.ucla.edu>
11936
11937         * modules/xalloc (Depends-on): Add xalloc-die.
11938         * modules/xvasprintf (Depends-on): Add xalloc-die.
11939
11940 2005-07-15  Paul Eggert  <eggert@cs.ucla.edu>
11941
11942         * lib/quotearg.c: Add translator comment suggested by Bruno Haible,
11943         with a minor change.
11944
11945 2005-07-15  Bruno Haible  <bruno@clisp.org>
11946
11947         * m4/poll.m4 (gl_FUNC_POLL): Check against MacOS X 10.4 poll() bug.
11948         When using lib/poll.c, define poll as rpl_poll.
11949
11950 2005-07-14  Paul Eggert  <eggert@cs.ucla.edu>
11951
11952         * modules/argp (Depends-on): Remove unlocked-io.
11953
11954 2005-07-14  Derek Price  <derek@ximbiot.com>
11955
11956         * m4/glob.m4 (gl_GLOB): Cache glob interface check result.  Add check
11957         for glob symlink bug.
11958
11959 2005-07-14  Bruno Haible  <bruno@clisp.org>
11960
11961         * m4/argp.m4 (gl_ARGP): Remove invocation of gl_FUNC_GLIBC_UNLOCKED_IO.
11962         Instead, test for *_unlocked function declarations directly.
11963
11964 2005-07-11  Simon Josefsson  <jas@extundo.com>
11965
11966         * modules/size_max: New file.
11967
11968         * modules/xsize: Depend on size_max module for size_max.m4.
11969
11970 2005-07-11  Simon Josefsson  <jas@extundo.com>
11971
11972         * lib/size_max.h: New file.
11973
11974 2005-07-11  Paul Eggert  <eggert@cs.ucla.edu>
11975
11976         * lib/version-etc-fsf.c (version_etc_copyright): Parameterize the
11977         copyright symbol and the year.
11978         * lib/version-etc.c (COPYRIGHT_YEAR): New constant.
11979         (version_etc_va): Use parameterized copyright notice.
11980         Reword to conform to the current GNU coding standards.
11981
11982 2005-07-11  Karl Berry  <karl@gnu.org>
11983
11984         * doc/gnulib.texi (Quoting): new node.
11985         (Initial import): more info, from Patrice.
11986
11987 2005-07-11  Bruno Haible  <bruno@clisp.org>
11988
11989         * gnulib-tool (func_usage): Document option --avoid.
11990         (Command line options): Handle --avoid.
11991         (func_acceptable): New function.
11992         (func_modules_transitive_closure): Use it.
11993
11994 2005-07-11  Bruno Haible  <bruno@clisp.org>
11995
11996         * MODULES.html.sh: Use shortcut URLs to the www.opengroup.org site.
11997         Reported by Jim Meyering.
11998
11999 2005-07-10  Bruno Haible  <bruno@clisp.org>
12000
12001         * m4/size_max.m4 (gl_SIZE_MAX): Cast ~(size_t)0 back to size_t.
12002         Needed when size_t is smaller than 'unsigned int'.
12003         Reported by Paul Eggert.
12004
12005 2005-07-09  Sergey Poznyakoff  <gray@gnu.org.ua>
12006
12007         * modules/argp (Depends-on): Add unlocked-io
12008
12009 2005-07-09  Sergey Poznyakoff  <gray@gnu.org.ua>
12010
12011         * lib/argp-namefrob.h: Include unlocked-io.h. Removed unnecessary
12012         block of defines.
12013
12014 2005-07-08  Paul Eggert  <eggert@cs.ucla.edu>
12015
12016         * config/srclist.txt: Comment out regcomp.c, since we have a porting
12017         fix now.
12018
12019 2005-07-08  Eric Blake  <ebb9@byu.net>  (tiny change)
12020         and Paul Eggert  <eggert@cs.ucla.edu>
12021
12022         * lib/regcomp.c (init_dfa, build_range_exp): Store __btowc value
12023         in wint_t, not wchar_t.  Remove now-unnecessary cast.
12024
12025 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
12026
12027         * modules/regex (Files): Add lib/regex_internal.c,
12028         lib/regex_internal.h, lib/regexec.c, lib/regcomp.c, m4/codeset.m4.
12029         (Depends-on): Add extensions.
12030         (Makefile.am): Remove lib_SOURCES; now done by m4 code.
12031
12032 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
12033
12034         * m4/backupfile.m4 (gl_BACKUPFILE): Use AC_CHECK_FUNCS_ONCE on
12035         pathconf.
12036         * m4/same.m4 (gl_SAME): Likewise.
12037         Require AC_SYS_LONG_FILE_NAMES; bug reported by Gerrit P. Haase.
12038
12039         * m4/regex.m4: Adjust to new libc regex implementation.
12040         (gl_INCLUDED_REGEX): Add AC_LIBSOURCES for
12041         all the .c and .h parts of (the new) regex.
12042         Quote the m4 stuff better.
12043         Check for RE_ICASE bug of old gnulib.
12044         Check for REG_STARTEND of recent libc.
12045         Rename local variables from jm_* to gl_*.
12046         Quote operand of "test -f".
12047         Say "recent enough" version of libc, not "version 2".
12048         (gl_PREREQ_REGEX): Remove AC_FUNC_ALLOCA, since alloca is a
12049         prerequisite module.  Remove AC_HEADER_STDC; no longer needed.
12050         Check for locale.h, isblank, mbrtowc, wcrtomb, wcscoll.
12051         Remove check for btowc, isascii.
12052         Require AM_LANGINFO_CODESET.
12053
12054 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
12055
12056         * lib/regex.c, regex.h: Sync from libc.
12057         * lib/regcomp.c, lib/regexec_internal.c, lib/regex_internal.h:
12058         * lib/regexec.c:
12059         New files, synced from libc, except that regex_internal.h
12060         currently has a small porting fix.
12061
12062 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
12063
12064         * config/srclist.txt: Add regcomp.c, regex.c, regex.h,
12065         regex_internal.c, regexec.c.
12066         Add regex_internal.h too, but as a comment, since the libc version
12067         is currently broken in gnulib mode.
12068
12069 2005-07-06  Paul Eggert  <eggert@cs.ucla.edu>
12070
12071         Support programs like Emacs that use gnulib but not gettext.
12072         * MODULES.html.sh (Internationalization functions): Add gettext-h.
12073         * modules/gettext-h: New file.
12074         * modules/gettext (Files): Remove lib/gettext.h.
12075         (Depends-on): Add gettext-h.
12076         (Makefile.am): Remove lib_SOURCES.
12077         * modules/argmatch, modules/c-stack, modules/closeout:
12078         * modules/copy-file, modules/csharpcomp, modules/csharpexec:
12079         * modules/execute, modules/file-type, modules/getaddrinfo:
12080         * modules/getopt, modules/human, modules/javacomp:
12081         * modules/javaexec, modules/mkdir-p, modules/obstack:
12082         * modules/openat, modules/pagealign_alloc, modules/pipe:
12083         * modules/quotearg, modules/regex, modules/rpmatch:
12084         * modules/unicodeio, modules/userspec, modules/version-etc:
12085         * modules/wait-process, modules/xalloc-die, modules/xmemcoll:
12086         * modules/xsetenv:
12087         Depend on gettext-h, not gettext.
12088
12089 2005-07-05  Paul Eggert  <eggert@cs.ucla.edu>
12090
12091         * gnulib-tool (func_import): Add support for 'public domain' license.
12092         * modules/alloca, modules/atexit, modules/memmove:
12093         Now public domain, not GPL.
12094         * modules/dup2, modules/getpagesize, modules/malloc, modules/memset:
12095         * modules/realloc, modules/strerror, modules/strtod:
12096         Now LGPL, not GPL.
12097
12098 2005-07-05  Bruno Haible  <bruno@clisp.org>
12099
12100         * m4/mbrtowc.m4 (gl_FUNC_MBRTOWC): Upgrade to version from current
12101         autoconf CVS. Needed for mingw.
12102
12103 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
12104
12105         Remove the dependency of the strftime module on the tzset module.
12106         * modules/strftime (Depends-on): Remove dependency on tzset.
12107
12108 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
12109
12110         Remove the dependency of the strftime module on the tzset module.
12111         * m4/strftime.m4 (gl_FUNC_STRFTIME): Don't require
12112         gl_FUNC_TZSET_CLOBBER.
12113
12114 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
12115
12116         Remove the dependency of the strftime module on the tzset module.
12117         * lib/strftime.c (my_strftime)
12118         [! defined _LIBC && ! HAVE_RUN_TZSET_TEST]:
12119         Copy the input structure, to work around some of the bug with
12120         Solaris 2.5.1 and Solaris 2.6.  If you still care about these old
12121         Solaris releases, you should also use the tzset module, but we won't
12122         require it as a dependency any more since we don't want LGPLed code
12123         to depend on GPLed code.
12124
12125 2005-07-02  Jim Meyering  <jim@meyering.net>
12126
12127         * m4/chown.m4, cloexec.m4, dup2.m4, fsusage.m4:
12128         * m4/getcwd-path-max.m4, getcwd.m4, mkstemp.m4, mountlist.m4:
12129         * m4/pagealign_alloc.m4, save-cwd.m4, unistd-safer.m4:
12130         Don't check for fcntl.h, and don't test for HAVE_FCNTL_H.
12131
12132 2005-07-02  Jim Meyering  <jim@meyering.net>
12133
12134         * lib/backupfile.c (backup_args): Change a `0' to NULL.
12135
12136 2005-07-01  Paul Eggert  <eggert@cs.ucla.edu>
12137
12138         * lib/xnanosleep.c: Include timespec.h, since OpenBSD 3.4 <time.h>
12139         declares only 'struct timespec;' (!).
12140
12141 2005-07-01  Jim Meyering  <jim@meyering.net>
12142
12143         * lib/chown.c, cloexec.c, dup-safer.c, dup2.c, fsusage.c, getcwd.c:
12144         * lib/getloadavg.c, mountlist.c, openat.h, pagealign_alloc.c:
12145         * lib/save-cwd.c, tempname.c:
12146         Assume HAVE_FCNTL_H (i.e., include <fcntl.h> unconditionally,
12147         and don't include <sys/file.h>).
12148
12149 2005-06-29  Jim Meyering  <jim@meyering.net>
12150
12151         * lib/mkdir-p.c (make_dir_parents): Don't apply sizeof to a hard-coded
12152         type name.  Use the variable name instead.
12153         * lib/idcache.c (getuser, getuidbyname, getgroup, getgidbyname):
12154         Likewise.
12155
12156 2005-06-28  Simon Josefsson  <jas@extundo.com>
12157
12158         * modules/check-version (Files): Add check-version.m4.
12159
12160 2005-06-28  Simon Josefsson  <jas@extundo.com>
12161
12162         * m4/check-version.m4: New file, suggested by Jim Meyering
12163         <jim@meyering.net>.
12164
12165 2005-06-28  Simon Josefsson  <jas@extundo.com>
12166
12167         * lib/check-version.h, lib/check-version.c: New files.
12168
12169 2005-06-28  Simon Josefsson  <jas@extundo.com>
12170
12171         * lib/base64.c (base64_encode): Indent.  Rename 'b64' to avoid
12172         collision with global variable.  Better indentation.  Don't
12173         increment buffer pointer beyond buffer end.  Based on comments
12174         from Paul Eggert <eggert@cs.ucla.edu>.
12175
12176         * lib/base64.h: Indent.
12177
12178 2005-06-28  Simon Josefsson  <jas@extundo.com>
12179
12180         * doc/gnulib.texi (Library version handling): New section.
12181
12182 2005-06-28  Jim Meyering  <jim@meyering.net>
12183
12184         * check-module (find_included_lib_files): Hard-code another
12185         pair of exceptions: fts.c includes fts-cycle.c and unistd-safer.h
12186         but modules/fts-lgpl (correctly) does not list those files.
12187
12188         * modules/canonicalize (Files): Add lib/pathmax.h.
12189
12190 2005-06-25  Simon Josefsson  <jas@extundo.com>
12191
12192         * modules/check-version: New file.
12193
12194 2005-06-24  Paul Eggert  <eggert@cs.ucla.edu>
12195
12196         * lib/canon-host.c (canon-host): Append trailing "," to 0 in
12197         initializer of struct addrinfo, as an indication that we don't
12198         care how many members the structure has.
12199
12200 2005-06-24  Derek Price  <derek@ximbiot.com>
12201         and Bruno Haible  <bruno@clisp.org>
12202
12203         Remove stat module & update lstat.
12204         * m4/lstat.m4 (gl_FUNC_LSTAT): Drop AC_FUNC_LSTAT in favor of
12205         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
12206         * m4/stat.m4: Remove this file.
12207
12208 2005-06-24  Derek Price  <derek@ximbiot.com>
12209         and Bruno Haible  <bruno@clisp.org>
12210
12211         Remove stat module & update lstat.
12212         * lib/stat.c: Remove this file...
12213         (slash_aware_lstat): ...moving this content and its support...
12214         * lib/lstat.c (rpl_lstat): ...into here.
12215         * lib/lstat.h: New file.
12216
12217 2005-06-24  Derek Price  <derek@ximbiot.com>
12218         and Bruno Haible  <bruno@clisp.org>
12219
12220         Remove stat module & update lstat.
12221         * config/srclist.txt (libc sources): Remove stat.
12222
12223 2005-06-24  Derek Price  <derek@ximbiot.com>
12224         and Bruno Haible  <bruno@clisp.org>
12225
12226         Remove stat module & update lstat.
12227         * MODULES.html.sh (stat): Remove.
12228         * MODULES.html: Regenerated.
12229         * modules/lstat (Description): Correct function name.
12230         (Files): Add "lstat.h".
12231         (Depends-on): Remove stat, add xalloc, stat-macros.
12232         * modules/stat: Remove this file.
12233         (Include): Add "lstat.h", remove <sys/stat.h>.
12234
12235 2005-06-23  Paul Eggert  <eggert@cs.ucla.edu>
12236
12237         * lib/mktime.c: Include <string.h> even if !DEBUG.  (From glibc.)
12238         (ranged_convert): Don't save conversion in a temporary struct.
12239         This causes a warning with GCC 4.0.0, and anyway in the typical
12240         case it's not worth the extra 100 bytes or so of code.
12241         (ranged_convert, __mktime_internal): When calling a function via a
12242         pointer P, use P () rather than (*P) (), as we now assume C89 or
12243         better.
12244
12245 2005-06-22  Paul Eggert  <eggert@cs.ucla.edu>
12246
12247         * lib/readutmp.c (desirable_utmp_entry): Fix bug where "who -b" and
12248         "who -r" failed to give output.  Problem reported by Tim Waugh.
12249
12250         * lib/xmalloc.c (HAVE_GNU_CALLOC): New constant.
12251         (xcalloc): Use it to avoid needless tests.
12252         Problem reported by Jim Meyering.
12253
12254 2005-06-20  Derek Price  <derek@ximbiot.com>
12255
12256         * m4/bison.m4: Note that precious decls of YACC & YFLAGS will be
12257         unnecessary for Autoconfs > 2.59c.
12258
12259 2005-06-16  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
12260
12261         * lib/argp.h (__option_is_short): Check upper limit of
12262         __key. Isprint() requires its argument to have the value
12263         of an unsigned char or EOF.
12264
12265 2005-06-16  Jim Meyering  <jim@meyering.net>
12266
12267         * lib/calloc.c (rpl_calloc): Allocate a 1-byte buffer (not 1xS or Nx1)
12268         when either N or S is zero.
12269
12270 2005-06-16  Derek Price  <derek@ximbiot.com>
12271
12272         * m4/bison.m4: Declare YACC & YFLAGS precious.
12273
12274 2005-06-10  Paul Eggert  <eggert@cs.ucla.edu>
12275
12276         * lib/fnmatch.c (fnmatch): If there is an encoding error in a
12277         multibyte string or pattern, fall back on unibyte matching.
12278         Problem reported by James Youngman.
12279
12280 2005-06-08  Bruno Haible  <bruno@clisp.org>
12281
12282         * modules/csharpcomp: New file.
12283         * MODULES.html.sh (C#): Add csharpcomp.
12284
12285 2005-06-08  Bruno Haible  <bruno@clisp.org>
12286
12287         * m4/csharpcomp.m4: New file, from GNU gettext.
12288
12289 2005-06-08  Bruno Haible  <bruno@clisp.org>
12290
12291         * lib/csharpcomp.h: New file, from GNU gettext.
12292         * lib/csharpcomp.c: New file, from GNU gettext.
12293         * lib/csharpcomp.sh.in: New file, from GNU gettext.
12294
12295 2005-06-08  Bruno Haible  <bruno@clisp.org>
12296
12297         * lib/binary-io.h (fileno): Undefine before defining it. Avoids a gcc
12298         warning on mingw.
12299
12300 2005-06-07  Derek Price  <derek@ximbiot.com>
12301
12302         Sync from CVS.
12303         * lib/glob_.h: Indent nested #ifdef.
12304
12305 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
12306
12307         Sync from coreutils.
12308         Use "file name" when talking about file names, instead of "filename"
12309         or "path", as per the GNU coding standards.
12310         * lib/mkdir-p.c: Renamed from makepath.c.
12311         (make_dir_parents): Renamed from make_path.  All callers changed.
12312         * lib/mkdir-p.h: Likewise.  All includers changed.
12313         * lib/filenamecat.c: Renamed from path-concat.c.
12314         (file_name_concat): Renamed from path_concat.  All callers changed.
12315         [TEST_FILE_NAME_CONCAT]: Renamed from TEST_PATH_CONCAT.
12316         * lib/filenamecat.h: Likewise.  All includers changed.
12317         * lib/acl.c: Don't use "path" or "filename" to mean "file name"
12318         in comments or local variable names.
12319         * lib/basename.c: Likewise.
12320         * lib/canonicalize.c, canonicalize.h: Likewise.
12321         * lib/dirname.c, dirname.h: Likewise.
12322         * lib/euidaccess.c: Likewise.
12323         * lib/exclude.c: Likewise
12324         * lib/fnmatch_.h, fnmatch_loop.c: Likewise.
12325         * lib/fsusage.c, fsuage.h: Likewise.
12326         * lib/fts.c, fts_.h: Likewise.
12327         * lib/getcwd.c: Likewise.
12328         * lib/getloadavg.c: Likewise.
12329         * lib/mkstemp.c: Likewise.
12330         * lib/mountlist.c, mountlist.h: Likewise.
12331         * lib/openat.c, openat.h: Likewise.
12332         * lib/readlink-stub.c: Likewise.
12333         * lib/readutmp.c, readutmp.h: Likewise.
12334         * lib/rename.c: Likewise.
12335         * lib/rmdir.c: Likewise.
12336         * lib/same.c: Likewise.
12337         * lib/savedir.c: Likewise.
12338         * lib/stripslash.c: Likewise.
12339         * lib/tempname.c: Likewise.
12340         * lib/xreadlink.c: Likewise.
12341         * lib/exclude.c (excluded_file_name): Renamed from excluded_filename.
12342         All uses changed.
12343         * lib/exclude.h: Likewise.
12344
12345         * lib/euidaccess.c (getuid, getgid, getuid, getegid)
12346         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
12347         * lib/idcache.c (getpwuid, getpwnam, getgrgid, getgrnam)
12348         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
12349         * lib/pathmax.h: Include <limits.h> unconditionally, since other
12350         files have been getting away with it for years (MORE/BSD 4.3
12351         is extinct now).
12352         * lib/userspec.c (getpwnam, getgrnam, getgrgid)
12353         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
12354
12355         * lib/pathmax.h (_POSIX_PATH_MAX) [!defined _POSIX_PATH_MAX]:
12356         Define to 256, not 255, as per modern POSIX.
12357
12358 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
12359
12360         Sync from coreutils.
12361         Use "file name" when talking about file names, instead of "filename"
12362         or "path", as per the GNU coding standards.
12363         * MODULES.html.sh: mkdir-p renamed from makepath.
12364         filenamecat renamed from path-concat.
12365         * modules/filenamecat: Renamed from modules/path-concat.
12366         (Files): filenamecat.h and filenamecat.c renamed from
12367         path-concat.h and path-concat.c.
12368         (configure.ac): gl_FILE_NAME_CONCAT, not gl_PATH_CONCAT.
12369         (Include): filenamecat.h, not path-concat.h.
12370         * modules/mkdir-p: Renamed from modules/makepath.
12371         (Files): mkdir-p.h and mkdir-p.c renamed from makepath.h and
12372         makepath.c.
12373         (configure.ac): gl_MKDIR_PARENTS, not gl_MAKEPATH.
12374         (Include): mkdir-p.h, not makepath.h.
12375
12376 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
12377
12378         Sync from coreutils.
12379         * m4/mkdir-p.m4: Renamed from makepath.m4.
12380         (gl_MKDIR_PARENTS): Renamed from gl_MAKEPATH.  All uses changed.
12381         Rename files from makepath.c to mkdir-p.c, and from
12382         makepath.h to mkdir-p.h.
12383         * m4/filenamecat.m4: Renamed from path-concat.m4.
12384         (gl_FILE_NAME_CONCAT): Renamed from gl_PATH_CONCAT.  All uses changed.
12385         Rename files from path-concat.c to filenamecat.c,
12386         and from path-concat.h to filenamecat.h.
12387         * m4/getcwd-path-max.m4: Don't use "path" or "filename" to mean
12388         "file name" in local variables or comments.
12389         * m4/rename.m4: Likewise.
12390
12391 2005-06-01  Bruno Haible  <bruno@clisp.org>
12392
12393         * modules/csharpexec: New file.
12394         * MODULES.html.sh (C#): New section.
12395
12396 2005-06-01  Bruno Haible  <bruno@clisp.org>
12397
12398         * m4/csharp.m4: New file, from GNU gettext.
12399         * m4/csharpexec.m4: New file, from GNU gettext.
12400
12401 2005-06-01  Bruno Haible  <bruno@clisp.org>
12402
12403         * lib/csharpexec.h: New file, from GNU gettext.
12404         * lib/csharpexec.c: New file, from GNU gettext.
12405         * lib/csharpexec.sh.in: New file, from GNU gettext.
12406
12407 2005-05-31  Derek Price  <derek@ximbiot.com>
12408             Paul Eggert  <eggert@cs.ucla.edu>
12409
12410         Sync from cvs.
12411         * m4/glob.m4: s/MISSING_SYS_CDEFS_H/_SYS_CDEFS_H/ and comment.
12412
12413 2005-05-31  Derek Price  <derek@ximbiot.com>
12414             Paul Eggert  <eggert@cs.ucla.edu>
12415
12416         Sync from cvs.
12417         * lib/glob_.h: s/MISSING_SYS_CDEFS_H/_SYS_CDEFS_H/ and comment.
12418
12419 2005-05-29  Derek Price  <derek@ximbiot.com>
12420
12421         * config/srclist.txt (glob_.h, glob.c): Add these files.
12422
12423 2005-05-29  Derek Price  <derek@ximbiot.com>
12424
12425         * MODULES.html.sh: Add glob to Enhanced POSIX.2001 section.
12426         * modules/glob: New file.
12427         * modules/getlogin_r: Add link to POSIX spec in description.
12428
12429 2005-05-29  Derek Price  <derek@ximbiot.com>
12430             Paul Eggert  <eggert@cs.ucla.edu>
12431
12432         * m4/glob.m4: New file.
12433
12434 2005-05-29  Derek Price  <derek@ximbiot.com>
12435             Paul Eggert  <eggert@cs.ucla.edu>
12436
12437         * lib/glob_.h, lib/glob.c: New files.
12438
12439 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
12440
12441         * modules/fts (Files): Remove m4/inttypes-pri.m4.
12442         * modules/fts-lgpl (Depends-on): Remove gettext.
12443
12444 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
12445
12446         * m4/fts.m4 (gl_FUNC_FTS_CORE): Don't check for inttypes.h or stdint.h,
12447         and don't require gt_INTTYPES_PRI.
12448
12449 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
12450
12451         * lib/getlogin_r.c (getlogin_r): Don't set errno to 0 on return.
12452
12453         * lib/fts.c: Don't worry about debugging on pre-C99-compatible hosts;
12454         the configuration hassle isn't worth it.
12455         Include inttypes.h and stdint.h unconditionally if FTS_DEBUG.
12456         (LONGEST_MODIFIER, PRIuMAX): Remove.
12457
12458 2005-05-27  Bruno Haible  <bruno@clisp.org>
12459
12460         * lib/getlogin_r.h: Remove second include of <stddef.h>.
12461
12462 2005-05-26  Paul Eggert  <eggert@cs.ucla.edu>
12463
12464         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Define
12465         _POSIX_PTHREAD_SEMANTICS for Solaris.
12466
12467 2005-05-25  Derek Price  <derek@ximbiot.com>
12468
12469         * MODULES.html.sh: Add getlogin_r to POSIX.2001 support section.
12470
12471 2005-05-25  Derek Price  <derek@ximbiot.com>
12472             Paul Eggert  <eggert@cs.ucla.edu>
12473
12474         * modules/getlogin_r, m4/getlogin_r.m4: New files.
12475         * lib/getlogin_r.c, getlogin_r.h: New files.
12476
12477 2005-05-25  Bruno Haible  <bruno@clisp.org>
12478             Derek Price  <derek@ximbiot.com>
12479
12480         * lib/getlogin_r.h: Simplify API documentation.
12481
12482 2005-05-23  Derek Price  <derek@ximbiot.com>
12483
12484         * modules/minmax (Files): Add m4/minmax.m4.
12485         (configure.ac): Add gl_MINMAX.
12486
12487 2005-05-22  Paul Eggert  <eggert@cs.ucla.edu>
12488
12489         * lib/fts.c (fd_safer) [_LGPL_PACKAGE]: New static function,
12490         so that unistd-safer.h (GPL'ed code) need not be included.
12491
12492 2005-05-22  Bruno Haible  <bruno@clisp.org>
12493
12494         * m4/minmax.m4: New file.
12495         Based on a patch by Derek Price <derek@ximbiot.com>.
12496
12497 2005-05-22  Bruno Haible  <bruno@clisp.org>
12498
12499         * lib/stdint_.h (_STDINT_H_HAVE_INT64): New macro. Use it in #ifdefs.
12500         (INT64_MIN): Fix definition.
12501         Suggested by Paul Eggert <eggert@cs.ucla.edu>.
12502
12503         * lib/stdint_.h (_STDINT_H_NEED_SIGNED_INT_TYPES): Renamed from
12504         NEED_SIGNED_INT_TYPES.
12505
12506         * lib/stdint_.h (_STDINT_H_HAVE_SYSTEM_INTTYPES): Renamed from
12507         HAVE_SYSTEM_INTTYPES.
12508
12509 2005-05-22  Bruno Haible  <bruno@clisp.org>
12510
12511         * lib/minmax.h: Include <limits.h> only when it defines MIN, MAX.
12512         Also include <sys/param.h> if it defines MIN, MAX.
12513         Based on a patch by Derek Price <derek@ximbiot.com>.
12514
12515 2005-05-21  Jim Meyering  <jim@meyering.net>
12516
12517         * modules/fts (Files): Add m4/inttypes-pri.m4.
12518         (Depends-on): Add lstat and remove gettext.  Alphabetize.
12519
12520 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
12521
12522         New fts module.
12523         * lib/fts.c: Don't include "cycle-check.h" or "hash.h".
12524         (setup_dir, free_dir): New functions.
12525         (enter_dir, leave_dir): Define trivial
12526         alternatives of _LGPL_PACKAGE.  Move to fts-cycle.c if !_LGPL_PACKAGE.
12527         (HT_INITIAL_SIZE, ENTER_DIR): Remove.  All uses removed.
12528         (LEAVE_DIR): Fix typo: pass Fts and Ent to leave_dir.
12529         (struct Active_dir, AD_compare, AD_hash, enter_dir, leave_dir):
12530         Move to fts-cycle.c.
12531         (fts_open): Use setup_dir.
12532         (fts_close): Use free_dir.
12533         (fts_read): Have just one copy of the ENTER_DIR code rather than three.
12534         This adds a label and some gotos, but the alternatives were messier.
12535         Check for memory allocation failure when entering a dir.
12536         (fts_stat) [_LGPL_PACKAGE]: Bring back glibc cycle detection code.
12537         * lib/fts_.h (_LGPL_PACKAGE) [defined _LIBC]: New macro.
12538         (FTS): New member fts_cycle, that is a union that contains the
12539         old active_dir_ht and cycle_state.  All uses changed to mention
12540         fts_cycle.ht and fts_cycle.state.
12541         * lib/fts-cycle.c: New file, containing GPL'ed code migrated out of
12542         fts.c, with the following changes:
12543         (setup_dir, free_dir): New functions.
12544         (enter_dir): Now returns bool.  Return true if successful, false
12545         if memory exhausted.  All callers changed.
12546         Do not bother partly cleaning up on
12547         memory allocation failure; that is free_dir's job.
12548         However, free ad if hash_insert fails, to avoid memory leak.
12549         (enter_dir, leave_dir): Accommodate change to FTS by inspecting
12550         fts->fts_options to see which union member to use.
12551
12552 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
12553
12554         * m4/fts.m4 (gl_FUNC_FTS_CORE): Renamed from gl_FUNC_FTS.
12555         (gl_FUNC_FTS, gl_FUNC_FTS_LGPL): New macros.
12556
12557 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
12558
12559         * MODULES.html.sh (File system functions): Add fts, fts-lgpl.
12560
12561 2005-05-20  Jim Meyering  <jim@meyering.net>
12562
12563         * lib/unlinkdir.h (cannot_unlink_dir) [UNLINK_CANNOT_UNLINK_DIR]:
12564         Now a macro, to pacify GCC.
12565
12566 2005-05-20  Eric Blake  <ebb9@byu.net>  (tiny change)
12567
12568         * m4/chown.m4 (gl_FUNC_CHOWN): Correct sense of test for honoring IDs
12569         of -1.
12570
12571 2005-05-20  Eric Blake  <ebb9@byu.net>  (tiny change)
12572
12573         * lib/chown.c (rpl_chown): Return -1 on failure.
12574
12575 2005-05-18  Paul Eggert  <eggert@cs.ucla.edu>
12576
12577         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME]):
12578         Don't check for stddef.h.
12579         * m4/fts.m4 (gl_FUNC_FTS): Don't require AC_HEADER_STDC, as we
12580         don't use its results.
12581         Don't check for fcntl.h, stddef.h, stdlib.h, string.h, unistd.h,
12582         since we include them unconditionally.  Don't require
12583         AM_STDBOOL_H, since stdbool is a prerequisite.
12584         Don't require AC_C_CONST, AC_TYPE_SIZE_T or check for ptrdiff_t
12585         since we assume C89 or better.
12586         Don't require AC_FUNC_CLOSEDIR_VOID, AC_FUNC_LSTAT, or AC_FUNC_STAT,
12587         as we don't use their results.
12588         Don't check for fchdir, memmove, memset, strrchr, as we use
12589         them unconditionally.
12590         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Don't define
12591         GETTIMEOFDAY_CLOBBERS_LOCALTIME_BUFFER, since nobody uses it.
12592
12593 2005-05-18  Paul Eggert  <eggert@cs.ucla.edu>
12594
12595         * lib/canonicalize.c: Include canonicalize.h first, to test interface.
12596         Include <stddef.h> unconditionally, since we assume C89 now.
12597         All uses of PTR_INT_TYPE replaced by ptrdiff_t.
12598         * lib/fts.c: Include fts_.h first, to check interface.
12599         Do not include intprops.h; no longer needed.
12600         Include cycle-check.h and hash.h, since fts_.h no longer does.
12601         Remove unnecessary casts of closedir to void.
12602         (fts_build): Use a simpler method (not involving TYPE_SIGNED) to
12603         decide whether to decrement nlinks.
12604         * lib/fts_.h: Do not include hash.h or cycle-check.h; no longer needed.
12605         (FTS): Use struct hash_table * instead of Hash_table, so that
12606         we no longer need to include hash.h here.
12607
12608 2005-05-18  Jim Meyering  <jim@meyering.net>
12609
12610         * modules/dirfd (License): Change to LGPL.  Most of the code
12611         is already in the public domain.
12612
12613 2005-05-18  Jim Meyering  <jim@meyering.net>
12614
12615         * m4/fts.m4 (AC_LIBSOURCES): Add intprops.h to the list.
12616         Reported by Yoann Vandoorselaere.
12617
12618 2005-05-17  Jim Meyering  <jim@meyering.net>
12619
12620         * m4/fts.m4: New file, from coreutils.
12621
12622 2005-05-17  Jim Meyering  <jim@meyering.net>
12623
12624         * lib/fts.c, lib/fts_.h: New files, from coreutils.
12625
12626 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
12627
12628         Sync from coreutils.
12629         * m4/unlinkdir.m4: New file.
12630
12631 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
12632
12633         Sync from coreutils.
12634         * lib/unlinkdir.c, lib/unlinkdir.h: New files.
12635         * lib/gethrxtime.c, lib/gethrxtime.h, lib/getpass.h, lib/mountlist.h,
12636         lib/path-concat.c, lib/regex.h, lib/unlocked-io.h, lib/xtime.h:
12637         White space changes only.
12638         * lib/makepath.c (make_path): Port to hosts where leading "//" is
12639         special.
12640         * lib/yesno.c: Include getline.h, not ctype.h.
12641         (yesno): Don't remove leading white space; POSIX doesn't allow it.
12642         Use getline to remove arbitrary restriction on response length.
12643
12644 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
12645
12646         * config/srclist-update: Spell out "Street" in FSF postal
12647         mail address; this is the style the FSF seems to prefer.
12648
12649         * build-aux/depcomp, build-aux/install-sh, build-aux/mdate-sh,
12650         build-aux/missing, build-aux/mkinstalldirs: Sync from Automake;
12651         this updates FSF postal mail address.
12652
12653         Sync from coreutils.
12654         * modules/unlinkdir: New file.
12655         * modules/yesno (Depends-on): Add getline.
12656         * MODULES.html.sh (File system functions): Add unlinkdir.
12657
12658 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
12659
12660         * lib/byteswap_.h, lib/getsubopt.h, lib/iconvme.h, lib/strsep.c,
12661         lib/strsep.h:
12662         Change the initial comment to refer to GPL, not LGPL.
12663         gnulib-tool will change it to LGPL as needed.
12664
12665         * lib/__fpending.c, lib/acl.c, lib/acl.h, lib/alloca_.h, lib/allocsa.c,
12666         lib/allocsa.h, lib/argmatch.c, lib/argmatch.h, lib/argp-ba.c,
12667         lib/argp-eexst.c, lib/argp-fmtstream.c, lib/argp-fmtstream.h,
12668         lib/argp-fs-xinl.c, lib/argp-help.c, lib/argp-namefrob.h,
12669         lib/argp-parse.c, lib/argp-pv.c, lib/argp-pvh.c, lib/argp-xinl.c,
12670         lib/argp.h, lib/argz.c, lib/argz_.h, lib/asnprintf.c, lib/asprintf.c,
12671         lib/atanl.c, lib/backupfile.c, lib/backupfile.h, lib/base64.c,
12672         lib/base64.h, lib/basename.c, lib/binary-io.h, lib/byteswap_.h,
12673         lib/c-ctype.c, lib/c-ctype.h, lib/c-stack.c, lib/c-stack.h,
12674         lib/c-strtod.c, lib/calloc.c, lib/canon-host.c, lib/canonicalize.c,
12675         lib/canonicalize.h, lib/ceill.c, lib/chdir-long.c, lib/chdir-long.h,
12676         lib/chown.c, lib/classpath.c, lib/classpath.h, lib/cloexec.c,
12677         lib/closeout.c, lib/closeout.h, lib/concatpath.c, lib/config.charset,
12678         lib/copy-file.c, lib/copy-file.h, lib/cycle-check.c, lib/cycle-check.h,
12679         lib/diacrit.c, lib/diacrit.h, lib/dirfd.c, lib/dirfd.h, lib/dirname.c,
12680         lib/dirname.h, lib/dummy.c, lib/dup-safer.c, lib/dup2.c, lib/eealloc.h,
12681         lib/error.c, lib/error.h, lib/euidaccess.c, lib/exclude.c,
12682         lib/exclude.h, lib/execute.c, lib/execute.h, lib/exit.h,
12683         lib/exitfail.c, lib/exitfail.h, lib/expl.c, lib/fatal-signal.c,
12684         lib/fatal-signal.h, lib/fd-safer.c, lib/file-type.c, lib/file-type.h,
12685         lib/fileblocks.c, lib/filemode.c, lib/filemode.h, lib/findprog.c,
12686         lib/findprog.h, lib/floorl.c, lib/fnmatch.c, lib/fnmatch_.h,
12687         lib/fnmatch_loop.c, lib/fopen-safer.c, lib/free.c, lib/frexpl.c,
12688         lib/fsusage.c, lib/fsusage.h, lib/full-read.c, lib/full-read.h,
12689         lib/full-write.c, lib/full-write.h, lib/fwriteerror.c,
12690         lib/fwriteerror.h, lib/gai_strerror.c, lib/gcd.c, lib/gcd.h,
12691         lib/getaddrinfo.c, lib/getaddrinfo.h, lib/getcwd.c, lib/getcwd.h,
12692         lib/getdate.h, lib/getdate.y, lib/getdomainname.c, lib/getdomainname.h,
12693         lib/getgroups.c, lib/gethostname.c, lib/gethrxtime.c, lib/gethrxtime.h,
12694         lib/getline.c, lib/getline.h, lib/getloadavg.c, lib/getndelim2.c,
12695         lib/getndelim2.h, lib/getnline.c, lib/getnline.h, lib/getopt.c,
12696         lib/getopt1.c, lib/getopt_.h, lib/getopt_int.h, lib/getpagesize.h,
12697         lib/getpass.c, lib/getpass.h, lib/getsubopt.c, lib/getsubopt.h,
12698         lib/gettext.h, lib/gettime.c, lib/gettimeofday.c, lib/getugroups.c,
12699         lib/getusershell.c, lib/group-member.c, lib/group-member.h,
12700         lib/hard-locale.c, lib/hard-locale.h, lib/hash-pjw.c, lib/hash-pjw.h,
12701         lib/hash.c, lib/hash.h, lib/human.c, lib/human.h, lib/iconvme.c,
12702         lib/iconvme.h, lib/idcache.c, lib/inet_ntop.h, lib/intprops.h,
12703         lib/inttostr.c, lib/inttostr.h, lib/isdir.c, lib/javacomp.c,
12704         lib/javacomp.h, lib/javacomp.sh.in, lib/javaexec.c, lib/javaexec.h,
12705         lib/javaexec.sh.in, lib/lbrkprop.h, lib/lchown.c, lib/ldexpl.c,
12706         lib/linebreak.c, lib/linebreak.h, lib/linebuffer.c, lib/linebuffer.h,
12707         lib/localcharset.c, lib/localcharset.h, lib/logl.c, lib/long-options.c,
12708         lib/long-options.h, lib/lstat.c, lib/makepath.c, lib/makepath.h,
12709         lib/malloc.c, lib/mathl.h, lib/mbswidth.c, lib/mbswidth.h, lib/md5.c,
12710         lib/md5.h, lib/memcasecmp.c, lib/memcasecmp.h, lib/memchr.c,
12711         lib/memcmp.c, lib/memcoll.c, lib/memcoll.h, lib/memcpy.c, lib/memmem.c,
12712         lib/memmem.h, lib/mempcpy.c, lib/mempcpy.h, lib/memrchr.c,
12713         lib/memrchr.h, lib/memset.c, lib/minmax.h, lib/mkdir.c, lib/mkdtemp.c,
12714         lib/mkdtemp.h, lib/mkstemp.c, lib/mktime.c, lib/modechange.c,
12715         lib/modechange.h, lib/mountlist.c, lib/mountlist.h, lib/nanosleep.c,
12716         lib/obstack.c, lib/obstack.h, lib/openat.c, lib/openat.h,
12717         lib/pagealign_alloc.c, lib/pagealign_alloc.h, lib/path-concat.c,
12718         lib/path-concat.h, lib/pathmax.h, lib/pathname.h, lib/physmem.c,
12719         lib/physmem.h, lib/pipe.c, lib/pipe.h, lib/poll.c, lib/poll_.h,
12720         lib/posixtm.c, lib/posixtm.h, lib/posixver.c, lib/printf-args.c,
12721         lib/printf-args.h, lib/printf-parse.c, lib/printf-parse.h,
12722         lib/progname.c, lib/progname.h, lib/progreloc.c, lib/putenv.c,
12723         lib/quote.c, lib/quote.h, lib/quotearg.c, lib/quotearg.h, lib/raise.c,
12724         lib/readlink.c, lib/readtokens.c, lib/readtokens.h, lib/readtokens0.c,
12725         lib/readtokens0.h, lib/readutmp.c, lib/readutmp.h, lib/realloc.c,
12726         lib/ref-add.sin, lib/ref-del.sin, lib/regex.c, lib/regex.h,
12727         lib/rename.c, lib/rmdir.c, lib/rpmatch.c, lib/safe-read.c,
12728         lib/safe-read.h, lib/safe-write.c, lib/safe-write.h, lib/same.c,
12729         lib/same.h, lib/save-cwd.c, lib/save-cwd.h, lib/savedir.c,
12730         lib/savedir.h, lib/setenv.c, lib/setenv.h, lib/settime.c,
12731         lib/sh-quote.c, lib/sh-quote.h, lib/sha1.c, lib/sha1.h, lib/sig2str.c,
12732         lib/sig2str.h, lib/sincosl.c, lib/snprintf.c, lib/snprintf.h,
12733         lib/sqrtl.c, lib/stat-macros.h, lib/stat.c, lib/stdbool_.h,
12734         lib/stdint_.h, lib/stdio-safer.h, lib/stpcpy.c, lib/stpcpy.h,
12735         lib/stpncpy.c, lib/stpncpy.h, lib/strcase.h, lib/strcasecmp.c,
12736         lib/strchrnul.c, lib/strchrnul.h, lib/strcspn.c, lib/strdup.c,
12737         lib/strdup.h, lib/strerror.c, lib/strftime.c, lib/strftime.h,
12738         lib/stripslash.c, lib/strndup.c, lib/strndup.h, lib/strnlen.c,
12739         lib/strpbrk.c, lib/strpbrk.h, lib/strsep.c, lib/strsep.h, lib/strstr.c,
12740         lib/strstr.h, lib/strtod.c, lib/strtoimax.c, lib/strtok_r.c,
12741         lib/strtok_r.h, lib/strtol.c, lib/strtoll.c, lib/strtoul.c,
12742         lib/strtoull.c, lib/strverscmp.c, lib/strverscmp.h, lib/sysexit_.h,
12743         lib/tempname.c, lib/time_r.c, lib/time_r.h, lib/timegm.c, lib/timegm.h,
12744         lib/timespec.h, lib/trigl.c, lib/trigl.h, lib/ucs4-utf16.h,
12745         lib/ucs4-utf8.h, lib/unicodeio.c, lib/unicodeio.h, lib/unistd-safer.h,
12746         lib/unlocked-io.h, lib/unsetenv.c, lib/userspec.c, lib/utf16-ucs4.h,
12747         lib/utf8-ucs4.h, lib/utime.c, lib/utimecmp.c, lib/utimecmp.h,
12748         lib/utimens.c, lib/vasnprintf.c, lib/vasnprintf.h, lib/vasprintf.c,
12749         lib/vasprintf.h, lib/version-etc-fsf.c, lib/version-etc.c,
12750         lib/version-etc.h, lib/vsnprintf.c, lib/vsnprintf.h, lib/w32spawn.h,
12751         lib/wait-process.c, lib/wait-process.h, lib/xalloc-die.c, lib/xalloc.h,
12752         lib/xallocsa.c, lib/xallocsa.h, lib/xasprintf.c, lib/xgetcwd.c,
12753         lib/xgetcwd.h, lib/xgetdomainname.c, lib/xgetdomainname.h,
12754         lib/xgethostname.c, lib/xmalloc.c, lib/xmemcoll.c, lib/xnanosleep.c,
12755         lib/xreadlink.c, lib/xreadlink.h, lib/xsetenv.c, lib/xsetenv.h,
12756         lib/xsize.h, lib/xstrndup.c, lib/xstrndup.h, lib/xstrtod.c,
12757         lib/xstrtod.h, lib/xstrtoimax.c, lib/xstrtol.c, lib/xstrtol.h,
12758         lib/xstrtoumax.c, lib/xtime.h, lib/xvasprintf.c, lib/xvasprintf.h,
12759         lib/yesno.c, lib/yesno.h:
12760         Update FSF postal mail address.
12761
12762 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
12763
12764         * MODULES.html.sh, README, gnulib-tool, tests/test-base64.c,
12765         tests/test-memmem.c, tests/test-stpncpy.c:
12766         Update FSF postal mail address.
12767
12768 2005-05-13  Bruno Haible  <bruno@clisp.org>
12769
12770         * lib/stdint_.h (int64_t, uint64_t, int_least64_t, uint_least64_t,
12771         int_fast64_t, uint_fast64_t, intmax_t, uintmax_t, INT64_MIN, INT64_MAX,
12772         UINT64_MAX, INT_LEAST64_MIN, INT_LEAST64_MAX, UINT_LEAST64_MAX,
12773         INT_FAST64_MIN, INT_FAST64_MAX, UINT_FAST64_MAX, INTMAX_MIN,
12774         INTMAX_MAX, UINTMAX_MAX, INT64_C, UINT64_C, INTMAX_C, UINTMAX_C):
12775         Add support for 64-bit integers in the MSVC compiler.
12776
12777 2005-05-12  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
12778
12779         * modules/getdate (Makefile.am): Add getdate.c to EXTRA_DIST
12780
12781 2005-05-12  Eric Blake  <ebb9@byu.net>  (tiny change)
12782
12783         * gnulib-tool (func_import): Sort and uniquify recommended includes.
12784
12785 2005-05-11  Paul Eggert  <eggert@cs.ucla.edu>
12786
12787         * doc/getdate.texi (General date syntax): Don't say that date
12788         date --iso-8601=ns generates acceptable dates; it doesn't yet.
12789         Problem reported by Nic Ferrier.
12790
12791 2005-05-10  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
12792
12793         * lib/getaddrinfo.c: Don't fail when SOCK_STREAM or SOCK_DGRAM are
12794         specified in ai_socktype. Fix invalid ai_protocol
12795         check. ai_protocol is usually set to 0 or depending on
12796         ai_family/ai_socktype to IPPROTO_TCP / IPPROTO_UDP.  Checking for
12797         SOCK_STREAM / SOCK_DGRAM in ai_protocol was invalid.  Set
12798         ai_socktype / ai_protocol in the returned addrinfo structure.
12799
12800 2005-05-10  Simon Josefsson  <jas@extundo.com>
12801
12802         * m4/getaddrinfo.m4: Look in libnsl/libsocket for getaddrinfo, from
12803         Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
12804
12805 2005-05-10  Karl Berry  <karl@gnu.org>
12806
12807         * doc/fdl.texi, gpl.texi, lgpl.texi, COPYING: update FSF address
12808         (from http://www.gnu.org/licenses).
12809         * doc/COPYING.LIB: also rename to COPYING.LESSER.
12810         * doc/COPYING.DOC: remove; per rms, only needed in doc files, so
12811         fdl.texi suffices.
12812
12813 2005-05-10  Karl Berry  <karl@gnu.org>
12814
12815         * config/srclist.txt (COPYING.LESSER): rename from COPYING.LIB.
12816         (COPYING.DOC): remove.
12817
12818         * config/srclist-update: new FSF address.
12819
12820 2005-05-10  Derek Price  <derek@ximbiot.com>
12821
12822         * m4/getopt.m4 (gl_GETOPT): Check for Solaris 10 bug, not decl, when
12823         possible.
12824
12825 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
12826             Bruno Haible  <bruno@clisp.org>
12827
12828         * modules/inet_ntop: New file.
12829         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
12830         inet_ntop.
12831
12832 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
12833             Bruno Haible  <bruno@clisp.org>
12834
12835         * m4/inet_ntop.m4: New file.
12836
12837 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
12838             Bruno Haible  <bruno@clisp.org>
12839
12840         * lib/inet_ntop.h: New file.
12841         * lib/inet_ntop.c: New file, from glibc with modifications.
12842
12843 2005-05-09  Paul Eggert  <eggert@cs.ucla.edu>
12844
12845         * modules/time_r (License): Change to LGPL.
12846         * modules/extensions (License): Change to LGPL.  Actually,
12847         the license is more permissive than that, but currently gnulib-tool
12848         doesn't know how to handle more-permissive licenses.
12849
12850         * modules/stat-macros (Depends-on): Don't depend on stat-macros (!).
12851         Problem reported by Dave Love.
12852
12853 2005-05-08  Jim Meyering  <jim@meyering.net>
12854
12855         * lib/classpath.c (PATH_SEPARATOR): Remove insignificant trailing
12856         blank.
12857
12858 2005-05-06  Paul Eggert  <eggert@cs.ucla.edu>
12859
12860         * modules/argmatch (Depends-on): Add stdbool.
12861         * modules/backupfile (Depends-on): Likewise.
12862         * modules/chdir-long (Depends-on): Likewise.
12863         * modules/closeout (Depends-on): Likewise.
12864         * modules/cycle-check (Depends-on): Likewise.
12865         * modules/dirname (Depends-on): Likewise.
12866         * modules/fnmatch (Depends-on): Likewise.
12867         * modules/fsusage (Depends-on): Likewise.
12868         * modules/fwriteerror (Depends-on): Likewise.
12869         * modules/getcwd (Depends-on): Likewise.
12870         * modules/getloadavg (Depends-on): Likewise.
12871         * modules/hard-locale (Depends-on): Likewise.
12872         * modules/makepath (Depends-on): Likewise.
12873         * modules/mountlist (Depends-on): Likewise.
12874         * modules/nanosleep (Depends-on): Likewise.
12875         * modules/posixtm (Depends-on): Likewise.
12876         * modules/quotearg (Depends-on): Likewise.
12877         * modules/readtokens (Depends-on): Likewise.
12878         * modules/readtokens0 (Depends-on): Likewise.
12879         * modules/readutmp (Depends-on): Likewise.
12880         * modules/save-cwd (Depends-on): Likewise.
12881         * modules/strftime (Depends-on): Likewise.
12882         * modules/userspec (Depends-on): Likewise.
12883         * modules/utimecmp (Depends-on): Likewise.
12884         * modules/xgetcwd (Depends-on): Likewise.
12885         * modules/xnanosleep (Depends-on): Likewise.
12886         * modules/xstrtod (Depends-on): Likewise.
12887         * modules/yesno (Depends-on): Likewise.
12888
12889 2005-05-05  Paul Eggert  <eggert@cs.ucla.edu>
12890
12891         * m4/getopt.m4 (gl_GETOPT): Check for Solaris 10 getopt, and avoid
12892         needless checks.
12893
12894 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
12895
12896         Merge from coreutils.  Among other things,
12897         add bulletproofing for cases where stdin, stdout, or stderr are closed.
12898         * lib/fd-safer.c: New file.
12899         * lib/fcntl-safer.h, open-safer.c: Remove.
12900         * lib/chdir-long.c: Fix comment "fetish" -> "coreutils".
12901         * lib/dup-safer.c: Include unistd-safer.h first.
12902         Don't include errno.h.
12903         (dup_safer) [!defined F_DUPFD]: Let fd_safer do the real work.
12904         * lib/file-type.h: Don't assume invoker included sys/stat.h first.
12905         * lib/file-type.c: Rely on file-type.h change.
12906         * lib/getloadavg.c: Include unistd-safer.h.
12907         (getloadavg): Use safer open.
12908         * lib/getusershell.c: Include "stdio-safer.h".
12909         (getusershell): Use safer fopen.
12910         * lib/long-options.c (long_options): Use NULL rather than 0.
12911         * lib/modechange.h (mode_free): Remove; all callers changed to invoke
12912         'free'.
12913         * lib/modechange.c: Likewise.
12914         xstrtol.h, stdbool.h, stddef.h: Don't include; no longer needed.
12915         (MODE_DONE): New constant.
12916         (struct mode_change): Remove 'next' member.
12917         (make_node_op_equals): New function; like the old one of the
12918         same name, except it allocates an array.
12919         (mode_compile, mode_create_from_ref): Use it.
12920         (mode_compile): Allocate result as an array, not a linked list.
12921         Parse octal string ourself, so that we catch mistakes like "+0".
12922         (mode_adjust): Arg is an array, not a linked list.
12923         * lib/modechange.c: Include stat-macros.h, xalloc.h.
12924         (S_ISDIR, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR):
12925         (S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH, S_IRXWU):
12926         (S_IRWXG, S_IRWXO, CHMOD_MODE_BITS):
12927         Remove.  This is now stat-macros.h's job.
12928         (talloc): Remove.  All callers replaced by xalloc, so that
12929         our invokers don't have to worry about reporting memory failures.
12930         (make_node_op_equals): Remove.
12931         (MODE_ORDINARY_CHAGE, MODE_X_IF_ANY_X, MODE_COPY_EXISTING):
12932         New constants.
12933         (struct mode_change): Moved here from modechange.h.
12934         (mode_append_entry): Remove.
12935         (mode_compile): Remove MASKED_OPS arg, since it encouraged
12936         apps to have incorrect behavior.  Use simpler algorithm for head
12937         and tail.  Don't futz with umask; that's now the job of mode_adjust.
12938         Detect more invalid usages rather than having somewhat-random behavior.
12939         Don't insert an "a=" action, as that leads to incorrect behavior.
12940         (mode_compile, mode_create_from_ref): Return NULL on error instead
12941         of an enum, since now there's only one way to have an error.  All
12942         callers changed.
12943         (mode_adjust): Accept new arg UMASK_VALUE, and interpret it
12944         at the correct time.  Simplify calculation of "+u" and its ilk.
12945         Don't mishandle "+X".
12946         (mode_free): Remove "register" and localize decls.
12947         * lib/modechange.h (MODE_X_IF_ANY_X, MODE_COPY_EXISTING):
12948         (struct mode_change): Move to modechange.c; callers don't
12949         need to see this stuff.
12950         (MODE_MASK_EQUALS, MODE_MASK_PLUS, MODE_MASK_MINUS, MODE_MASK_ALL):
12951         (MODE_INVALID, MODE_MEMORY_EXHAUSTED, MODE_BAD_REFERENCE): Remove.
12952         (mode_change, mode_adjust): Reflect the new signatures noted above.
12953         * lib/nanosleep.c (rpl_nanosleep): Include "timespec.h" before macros
12954         that might redefine system include files.
12955         (siginterrupt) [!HAVE_SIGINTERRUPT]: New macro.
12956         (my_usleep): Use NULL rather than (void *) 0.
12957         (rpl_nanosleep) [!defined SA_NOCLDSTOP]:
12958         Use siginterrupt to specify that system calls should be interrupted.
12959         (rpl_nanosleep): Move initialization of suspended closer to call of
12960         my_usleep.
12961         * lib/readutmp.h (read_utmp): New arg OPTIONS.  All uses changed.
12962         * lib/readutmp.c: Likewise.  Include signal.h, stdbool.h.
12963         (desirable_utmp_entry): New function.
12964         (read_utmp) [defined UTMP_NAME_FUNCTION]: Redo memory allocation
12965         using x2nrealloc, to simplify logic.
12966         (read_utmp) [!defined UTMP_NAME_FUNCTION]: Check for overflow in
12967         size calculation.  Do not assume utmp file is a regular file.
12968         * lib/readutmp.h (UT_PID): Moved here from ../src/who.c.
12969         (READ_UTMP_CHECK_PIDS): New constant.
12970         * lib/save-cwd.c: Include unistd-safer.h.
12971         (save_cwd): Use fd_safer.
12972         * lib/tempname.c (S_ISDIR, S_IRUSR, S_IRUSR, S_IWUSR, S_IXUSR): Remove.
12973         [!_LIBC] Include "stat-macros.h" instead.
12974         * lib/unistd-safer.h (fd_safer): New decl.
12975
12976 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
12977
12978         * modules/getloadavg (Depends-on): Add unistd-safer.
12979         * modules/getusershell (Depends-on): Add stdio-safer.
12980         * modules/lstat (Depends-on): Remove xalloc.
12981         * modules/mkstemp (Depends-on): Add stat-macros.
12982         * modules/modechange (Depends-on): Remove xstrtol.
12983         Add stat-macros, xalloc.
12984         * modules/save-cwd (Depends-on): Add unistd-safer.
12985         * modules/stdio-safer (Makefile.am): Remove lib_SOURCES.
12986         * modules/unistd-safer (Files): Add lib/fd-safer.c
12987         (Makefile.am): Remove lib_SOURCES.
12988
12989         * MODULES.html.sh (Enhancements for POSIX:2001 functions):
12990         Remove fcntl-safer; unistd-safer supersedes it.
12991
12992 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
12993
12994         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Don't require
12995         AC_HEADER_STAT.
12996         * m4/lchown.m4 (gl_FUNC_CHOWN): Likewise.
12997         (gl_PREREQ_CHOWN): Remove.
12998         * m4/lstat.m4 (gl_FUNC_LSTAT): Require AC_FUNC_LSTAT instead of calling
12999         it.  Don't require AC_HEADER_STAT.
13000         (gl_PREREQ_LSTAT): Remove.
13001         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Check stdint.h only once.
13002         Don't require AC_HEADER_STAT.
13003         * m4/rmdir.m4 (gl_FUNC_RMDIR): Don't require AC_HEADER_STAT.
13004         (gl_PREREQ_RMDIR): Remove.
13005         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Don't
13006         mention stat-macros.h or AC_HEADER_STAT, since we'll make
13007         the stat-macros module a prerequisite.
13008         * m4/file-type.m4 (gl_FILE_TYPE): Likewise.
13009         * m4/filemode.m4 (gl_FILEMODE): Likewise.
13010         * m4/makepath.m4 (gl_MAKEPATH): Likewise.
13011         * m4/modechange.m4 (gl_MODECHANGE): Likewise.
13012         * m4/clock_time.m4 (gl_CLOCK_TIME): Use gl_ rather than fetish_ for
13013         variable names.
13014         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Renamed from
13015         fetish_FUNC_RMDIR_NOTEMPTY.  All uses changed.  Use gl_ for
13016         variable prefixes.
13017         * m4/fcntl-safer.m4: Remove.
13018         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Use AC_LIBSOURCES and AC_LIBOBJ.
13019         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Likewise.
13020         Invoke gl_PREREQ_FD_SAFER.
13021         (gl_PREREQ_FD_SAFER): New macro.
13022         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): Check for siginterrupt.
13023         * m4/readutmp.m4 (gl_READUTMP): Require AC_C_INLINE.
13024         Use AC_CHECK_HEADERS_ONCE and AC_CHECK_FUNCS_ONCE when possible.
13025         Remove duplicate call to AC_LIBOBJ(readutmp).
13026         (gl_PREREQ_READUTMP): Remove.  All uses inlined.
13027
13028         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Check for message, not for
13029         MAP_ANON.  Problem reported by Moriyoshi Koizumi to bug-cvs.
13030
13031 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
13032
13033         * MODULES.html.sh (Misc): Add byteswap.
13034
13035 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
13036
13037         * modules/getcwd (Depends-on): Add extensions.
13038         * modules/openat (Depends-on): Likewise.
13039
13040 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
13041
13042         * modules/byteswap: New file.
13043
13044 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
13045
13046         * m4/byteswap.m4: New file.
13047
13048 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
13049
13050         * lib/byteswap_.h: New file.
13051
13052 2005-04-25  Karl Berry  <karl@gnu.org>
13053
13054         * m4/gettext.m4: Update from GNU gettext 0.14.4.
13055
13056 2005-04-25  Albert Chin  <china@thewrittenword.com>
13057
13058         * lib/regex.c: Include <stdio.h>, as a workaround to a Compaq Desktop
13059         Toolkit C bug.
13060
13061 2005-04-21  Oskar Liljeblad  <oskar@osk.mine.nu>
13062
13063         * gnulib-tool (Options): Add -s for --symlink/--symbolic.
13064         (func_ln_if_changed) Remove forcibly for no error message
13065         in case file does not exist.
13066
13067 2005-04-19  Simon Josefsson  <jas@extundo.com>
13068
13069         * gnulib-tool (Options): Make --symlink mean --symbolic.
13070
13071 2005-04-18  Oskar Liljeblad  <oskar@osk.mine.nu>
13072
13073         * doc/gnulib.texi (Initial import): Fix.  Mention --aux-dir.
13074
13075 2005-04-16  Simon Josefsson  <jas@extundo.com>
13076
13077         * modules/getpass-gnu (Makefile.am): Don't mention getpass.h.
13078
13079 2005-04-15  Simon Josefsson  <jas@extundo.com>
13080
13081         * m4/getpass.m4 (gl_FUNC_GETPASS): Use AC_LIBSOURCES.
13082
13083 2005-04-15  Simon Josefsson  <jas@extundo.com>
13084
13085         * gnulib-tool: Rename --symlink to --symbolic.
13086
13087 2005-04-15  Oskar Liljeblad  <oskar@osk.mine.nu>
13088
13089         * gnulib-tool: Add -s, --symlink option to gnulib-tool to make
13090         symbolic links to files instead of copying/moving.  Add --aux-dir,
13091         specifying directory relative --dir where auxiliary build tools
13092         are placed.
13093
13094 2005-04-14  Bruno Haible  <bruno@clisp.org>
13095
13096         * modules/allocsa (License): Change to LGPL.
13097         Requested by Yoann Vandoorselaere <yoann@prelude-ids.org>.
13098
13099 2005-04-13  Paul Eggert  <eggert@cs.ucla.edu>
13100
13101         * lib/getdate.y (zone): Allow relunit_snumber after tZONE, so
13102         that "UTC +1 second" continues to work.  Problem reported
13103         by Dmitry V. Levin.
13104         (relunit_snumber): New rule.
13105         (relunit): Use it.
13106
13107 2005-04-12  Paul Eggert  <eggert@cs.ucla.edu>
13108
13109         * lib/getdate.y (universal_time_zone_table): New constant.
13110         (time_zone_table): Remove GMT, UT, UTC entries; they're now in
13111         universal_time_zone_table.
13112         (lookup_zone): Prefer universal_time_zone_table to
13113         local_time_zone_table, so that "GMT" time stamps are allowed in
13114         London during the summer.  Problem reported by Ian Abbott.
13115
13116 2005-04-12  Jim Meyering  <jim@meyering.net>
13117
13118         * lib/human.c (humblock): Set *options even when returning due to
13119         xstrtoumax conversion failure.  Thanks to a used-uninitialized
13120         warning from gcc-4.
13121
13122 2005-04-09  Jim Meyering  <jim@meyering.net>
13123
13124         * lib/posixtm.c (posixtime) [lint]: Avoid spurious warning from gcc-4's
13125         -Wuninitialized: initialize tm0.tm_year.
13126
13127 2005-04-04  Paul Eggert  <eggert@cs.ucla.edu>
13128
13129         * lib/getdate.y (parser_control): rels_seen is now a boolean, not a
13130         count, since there's no maximum.  All uses changed.
13131         Add member dsts_seen.
13132         (local_zone): Accumulate dsts_seen rather than relying on tm_isdst
13133         not being INT_MAX.
13134         (get_date): Initialize dsts_seen, and check that it doesn't go over 1.
13135         Use pc_rels_seen to decide whther a date is absolute.
13136
13137         * lib/getdate.y (number): Don't overwrite year.
13138         (get_date): Initialize pc.year.digits to 0, not 4, to enable above
13139         check.
13140
13141 2005-04-02  Simon Josefsson  <jas@extundo.com>
13142
13143         * lib/getaddrinfo.h: Fix OpenBSD compilation failure, inspired by tiny
13144         patch from Yoann Vandoorselaere <yoann@prelude-ids.org>.
13145
13146 2005-03-28  Eric Blake  <ebb9@byu.net>  (tiny change)
13147
13148         * m4/getcwd-path-max.m4: Return success on systems such as Cygwin
13149         where no absolute path name can be longer than PATH_MAX.
13150
13151 2005-03-27  Jim Meyering  <jim@meyering.net>
13152
13153         * lib/argmatch.c: Clarify comment: null-terminated -> NULL-terminated.
13154
13155 2005-03-26  Paul Eggert  <eggert@cs.ucla.edu>
13156
13157         * lib/intprops.h (INT_STRLEN_BOUND, INT_BUFSIZE_BOUND):
13158         "one's complement" -> "ones' complement" in comment, as per Knuth.
13159         "value of type" -> "type or expression" in comment.
13160         * lib/mktime.c, strftime.c: Propagate intprops.h comment nits.
13161
13162 2005-03-26  Jim Meyering  <jim@meyering.net>
13163
13164         Comment nits.
13165         * lib/intprops.h: Add the apostrophe in `(one|two)'s complement'.
13166         Correct typos: s/or/of/.
13167
13168 2005-03-26  Jim Meyering  <jim@meyering.net>
13169
13170         * modules/check-include-files: Move to ../ and rename to...
13171         * check-module: ...this.
13172
13173 2005-03-25  Jim Meyering  <jim@meyering.net>
13174
13175         * modules/xvasprintf (Files): Add xalloc.h.
13176
13177 2005-03-23  Paul Eggert  <eggert@cs.ucla.edu>
13178
13179         * modules/gettext (Files): config/config.rpath ->
13180         build-aux/config.rpath
13181         * modules/iconv (Files): Likewise.
13182         Problem reported by Oskar Liljeblad.
13183
13184 2005-03-23  Jim Meyering  <jim@meyering.net>
13185
13186         * modules/check-include-files: New script to check for
13187         missing dependencies, multiple includes, etc.
13188
13189         * modules/c-strtold (Depends-on): Add xalloc.
13190         * modules/c-strtod (Depends-on): Add xalloc.
13191         * modules/hash (Depends-on): Add xalloc.
13192         (Files): Remove lib/xalloc.h.
13193
13194         * modules/gethrxtime (Files): Add lib/gethrxtime.h.
13195         * modules/userspec (Files): Add lib/inttostr.h.
13196
13197 2005-03-23  Jim Meyering  <jim@meyering.net>
13198
13199         * lib/canonicalize.c: Remove duplicate `#include "stat-macros.h"'.
13200
13201 2005-03-22  Jim Meyering  <jim@meyering.net>
13202
13203         * modules/stat-macros: New module.
13204         * modules/canonicalize, modules/euidaccess, modules/file-type,
13205         * modules/filemode, modules/lchown, modules/makepath,
13206         * modules/rmdir, modules/stat: Depend on new stat-macros module
13207         rather than listing lib/stat-macros.h manually.
13208         Don't add stat-macros.h to lib_SOURCES or list it in Files: section.
13209
13210 2005-03-22  Jim Meyering  <jim@meyering.net>
13211
13212         * m4/stat-macros.m4 (gl_STAT_MACROS): New file/macro.
13213
13214 2005-03-22  Bruno Haible  <bruno@clisp.org>
13215
13216         * config/srclist.txt: Replace target directory 'config' with
13217         'build-aux'.
13218         * config/config.guess, config.sub, config.rpath, depcomp, install-sh:
13219         * config/mdate-sh, missing, mkinstalldirs, texinfo.tex: Move to
13220         ../build-aux/.
13221
13222 2005-03-21  Paul Eggert  <eggert@cs.ucla.edu>
13223
13224         * modules/chdir-long (Depends-on): Add mempcpy.
13225
13226         * modules/acl, modules/backupfile, modules/c-strtod,
13227         modules/c-strtold, modules/canon-host, modules/canonicalize,
13228         modules/cloexec, modules/closeout, modules/dirfd, modules/dirname,
13229         modules/exclude, modules/exitfail, modules/file-type,
13230         modules/filemode, modules/fpending, modules/fsusage, modules/getcwd,
13231         modules/getdate, modules/getline, modules/getpagesize,
13232         modules/getpass, modules/getugroups, modules/group-member,
13233         modules/hard-locale, modules/hash, modules/human, modules/idcache,
13234         modules/inttostr, modules/long-options, modules/makepath,
13235         modules/md5, modules/memcasecmp, modules/memcoll,
13236         modules/modechange, modules/mountlist, modules/path-concat,
13237         modules/pathmax, modules/physmem, modules/posixtm, modules/posixver,
13238         modules/quote, modules/quotearg, modules/readtokens, modules/readutmp,
13239         modules/safe-read, modules/safe-write, modules/same, modules/savedir,
13240         modules/settime, modules/sha1, modules/sig2str, modules/strdup,
13241         modules/strftime, modules/strndup, modules/strverscmp,
13242         modules/timespec, modules/unlocked-io, modules/userspec,
13243         modules/utimecmp, modules/utimens, modules/xalloc, modules/xstrtol,
13244         modules/yesno:
13245         Remove lib_SOURCES line from Makefile.am section, as this is now
13246         done automatically by the corresponding Autoconf macro.
13247
13248 2005-03-21  Jim Meyering  <jim@meyering.net>
13249
13250         Changes imported from coreutils.
13251
13252         * lib/cycle-check.c: Don't include xalloc.h.
13253
13254         * lib/path-concat.c: Don't include assert.h.
13255         (path_concat): Remove assertion that would have triggered
13256         for ABASE starting with more than one slash.
13257         Reported by Andreas Schwab.
13258
13259         * lib/path-concat.c (path_concat): Set *BASE_IN_RESULT
13260         properly when ABASE is an absolute file name.
13261         Correct the description of this function.
13262         Include <assert.h>.
13263         Add an assertion and a test driver.
13264         This fixes a bug introduced on 2004-07-02.
13265         Andreas Schwab reported the resulting failure of cp --parents:
13266         http://lists.gnu.org/archive/html/bug-coreutils/2005-01/msg00130.html
13267
13268 2005-03-21  Jim Meyering  <jim@meyering.net>
13269
13270         * m4/chdir-long.m4 (gl_PREREQ_CHDIR_LONG): Invoke gl_FUNC_MEMRCHR.
13271         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Check for memrchr decl.
13272
13273 2005-03-21  Jim Meyering  <jim@meyering.net>
13274         and  Paul Eggert  <eggert@cs.ucla.edu>
13275
13276         * m4/acl.m4, m4/backupfile.m4, m4/c-strtod.m4, m4/canon-host.m4,
13277         m4/canonicalize.m4, m4/cloexec.m4, m4/closeout.m4, m4/dirfd.m4,
13278         m4/dirname.m4, m4/exclude.m4, m4/exitfail.m4, m4/file-type.m4,
13279         m4/filemode.m4, m4/fpending.m4, m4/fsusage.m4, m4/getcwd.m4,
13280         m4/getdate.m4, m4/getline.m4, m4/getpagesize.m4, m4/getpass.m4,
13281         m4/getugroups.m4, m4/group-member.m4, m4/hard-locale.m4, m4/hash.m4,
13282         m4/human.m4, m4/idcache.m4, m4/inttostr.m4, m4/long-options.m4,
13283         m4/makepath.m4, m4/md5.m4, m4/memcasecmp.m4, m4/memcoll.m4,
13284         m4/modechange.m4, m4/mountlist.m4, m4/nanosleep.m4, m4/path-concat.m4,
13285         m4/pathmax.m4, m4/physmem.m4, m4/posixtm.m4, m4/posixver.m4,
13286         m4/quote.m4, m4/quotearg.m4, m4/readtokens.m4, m4/readutmp.m4,
13287         m4/safe-read.m4, m4/safe-write.m4, m4/same.m4, m4/savedir.m4,
13288         m4/settime.m4, m4/sha1.m4, m4/sig2str.m4, m4/strdup.m4, m4/strftime.m4,
13289         m4/strndup.m4, m4/strverscmp.m4, m4/timespec.m4, m4/unlocked-io.m4,
13290         m4/userspec.m4, m4/utimecmp.m4, m4/utimens.m4, m4/xalloc.m4,
13291         m4/xnanosleep.m4, m4/xstrtol.m4, m4/yesno.m4:
13292         Use AC_LIBSOURCES and AC_LIBOBJ to indicate source and object files
13293         for these modules.
13294
13295 2005-03-18  Paul Eggert  <eggert@cs.ucla.edu>
13296
13297         * lib/strftime.c (my_strftime): If the underlying strftime returns 0
13298         (which shouldn't happen), generate nothing instead of returning 0
13299         immediately, so that nstrftime (NULL, ...) doesn't return 0.
13300
13301 2005-03-16  Bruno Haible  <bruno@clisp.org>
13302
13303         * modules/stdint (Makefile.am): Use HAVE_LONG_LONG_64BIT instead of
13304         HAVE_LONGLONG_64BIT.
13305
13306 2005-03-16  Bruno Haible  <bruno@clisp.org>
13307
13308         * m4/stdint.m4 (gl_STDINT_H): Define HAVE_LONG_LONG_64BIT instead of
13309         HAVE_LONGLONG_64BIT.
13310
13311 2005-03-16  Bruno Haible  <bruno@clisp.org>
13312
13313         * lib/stdint_.h: Use HAVE_LONG_LONG_64BIT instead of
13314         HAVE_LONGLONG_64BIT.
13315
13316 2005-03-15  Paul Eggert  <eggert@cs.ucla.edu>
13317
13318         * lib/strftime.c (my_strftime): Prepend space to format so that we can
13319         reliably distinguish strftime failure from empty output on POSIX
13320         hosts.
13321
13322 2005-03-15  Paul Eggert  <eggert@cs.ucla.edu>
13323
13324         * lib/iconvme.c (SIZE_MAX): New macro, if not already defined.
13325         (iconv_string): Don't guess a size-zero buffer, as that might cause
13326         buffer overrun.  Instead, avoid multiplying by MB_LEN_MAX if the
13327         result would be 'too large', where 'too large' is (heuristically)
13328         the square root of SIZE_MAX, divided by MB_LEN_MAX to allay
13329         overflow concerns.  This will prevent some unwanted malloc failures
13330         when the inputs are very large.
13331
13332 2005-03-15  Karl Berry  <karl@gnu.org>
13333
13334         * config/srclist.txt (config.rpath): from gettext.
13335         * config/config.rpath: update.
13336
13337 2005-03-15  Bruno Haible  <bruno@clisp.org>
13338
13339         * lib/regex.c (byte_re_match_2_internal): Rename local variable 'not'
13340         to 'negate'.
13341
13342         * lib/regex.c (byte_re_match_2_internal): Reduce scope of same_str_p
13343         variable.
13344
13345         * lib/regex.c (EXTEND_BUFFER, regcomp): Cast the realloc/malloc
13346         results.
13347
13348 2005-03-14  Simon Josefsson  <jas@extundo.com>
13349
13350         * lib/timegm.h: Use proper prototype CPP guards, reported by Dave Love
13351         <fx@gnu.org>.
13352
13353 2005-03-14  Paul Eggert  <eggert@cs.ucla.edu>
13354
13355         * lib/mktime.c (TYPE_TWOS_COMPLEMENT, TYPE_ONES_COMPLEMENT,
13356         TYPE_SIGNED_MAGNITUDE, TYPE_MINIMUM, TYPE_MAXIMUM): Sync from
13357         intprops.h.
13358         * lib/strtol.c: Likewise.
13359
13360 2005-03-14  Jim Meyering  <jim@meyering.net>
13361
13362         * lib/strftime.c (my_strftime) [HAVE_STRFTIME && ! (_NL_CURRENT
13363         && HAVE_STRUCT_ERA_ENTRY)]: Initialize the first byte of ubuf[]
13364         to be nonzero so that we (and caller) can detect the difference
13365         between a valid zero-length expansion and an error return, even
13366         when the underlying strftime fails before writing anything into
13367         that location.
13368
13369 2005-03-14  Bruno Haible  <bruno@clisp.org>
13370
13371         * m4/lib-link.m4, gettext.m4, nls.m4, po.m4:
13372         Update from GNU gettext 0.14.3.
13373
13374 2005-03-10  Jim Meyering  <jim@meyering.net>
13375
13376         * m4/save-cwd.m4 (gl_SAVE_CWD): Check for fchdir.
13377
13378 2005-03-10  Jim Meyering  <jim@meyering.net>
13379
13380         * lib/save-cwd.c [!HAVE_FCHDIR]: Define open, fchdir, and chdir_long
13381         so that this module works on systems without fchdir.
13382
13383 2005-03-09  Paul Eggert  <eggert@cs.ucla.edu>
13384
13385         Factor int-properties macros into a single file, except for
13386         glibc-related files.
13387         * lib/intprops.h: New file.
13388         * lib/getloadavg.c: Include it instead of limits.h.
13389         (INT_STRLEN_BOUND): Remove.
13390         * lib/human.c: Include intprops.h.
13391         (group_number): Use INT_STRLEN_BOUND instead of rolling it ourself.
13392         * lib/human.h (LONGEST_HUMAN_READABLE): Use 146/485 rather than
13393         302/1000.
13394         * lib/inttostr.h: Include intprops.h instead of limits.h.
13395         (INT_STRLEN_BOUND, INT_BUFSIZE_BOUND): Remove.
13396         * lib/mktime.c (TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT): New macros,
13397         for consistency with intprops.h.
13398         (time_t_is_integer, twos_complement_arithmetic): Use them.
13399         * lib/sig2str.h: Include <signal.h>, intprops.h.
13400         (INT_STRLEN_BOUND): Remove.
13401         * lib/strftime.c (TYPE_SIGNED): Remove.
13402         (INT_STRLEN_BOUND): Switch to same implementation as intprops.h.
13403         * lib/strtol.c: Adjust comments to match intprops.h.
13404         * lib/userspec.c: Include intprops.h.
13405         (TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Remove.
13406         * lib/utimecmp.c, xnanosleep.c, xstrtol.c: Likewise.
13407         * lib/utimecmp.c (utimecmp): Use TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT
13408         instead of rolling our own expressions.
13409         * lib/xstrtol.c: Include xstrtol.h first, to test interface.
13410
13411         * lib/strftime.c: Include <stdbool.h>.  Use bool where appropriate,
13412         instead of int.
13413         (my_strftime): Do not mishandle years close to INT_MAX, by doing
13414         the right thing even if adding 1900 would overflow.  Similarly
13415         for tm_mon + 1 and tm_yday + 1.
13416         Make %Y always equivalent to %C%y, and similarly for %G and %g.
13417         (DO_NUMBER, DO_NUMBER_SPACEPAD): Set digits to d, not a conditional.
13418         (DO_SIGNED_NUMBER): New macro.
13419         (my_strftime) [HAVE_TZNAME]: Don't dump core if tp->tm_dst > 1.
13420
13421 2005-03-07  Bruno Haible  <bruno@clisp.org>
13422
13423         * m4/mmap-anon.m4 (MAP_FILE, MAP_FAILED): Remove definitions.
13424
13425 2005-03-07  Bruno Haible  <bruno@clisp.org>
13426
13427         * lib/pagealign_alloc.c (MAP_FILE, MAP_FAILED): Define fallbacks.
13428
13429 2005-03-04  Derek R. Price  <derek@ximbiot.com>
13430
13431         * gnulib-tool (func_cp_if_changed, func_mv_if_changed): New functions.
13432         (func_import): Only replace files via --import when they have actually
13433         changed.
13434
13435 2005-03-03  Derek R. Price  <derek@ximbiot.com>
13436
13437         * m4/mmap-anon.m4: New file.
13438         * m4/pagealign_alloc.m4: New file.
13439
13440 2005-03-03  Derek R. Price  <derek@ximbiot.com>
13441             Bruno Haible  <bruno@clisp.org>
13442
13443         * modules/pagealign_alloc: New file.
13444         * MODULES.html.sh (Memory management functions): Add pagealign_alloc.
13445
13446 2005-03-03  Derek R. Price  <derek@ximbiot.com>
13447             Bruno Haible  <bruno@clisp.org>
13448
13449         * lib/pagealign_alloc.h: New file.
13450         * lib/pagealign_alloc.c: New file.
13451
13452 2005-03-03  Bruno Haible  <bruno@clisp.org>
13453
13454         * m4/inttypes.m4, isc-posix.m4, once-only.m4:
13455         Use an all-permissive copyright notice, recommended by RMS.
13456
13457 2005-03-02  Bruno Haible  <bruno@clisp.org>
13458
13459         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Undo the replacement here. Because
13460         of AIX, the replacement has to be done only after <string.h> is
13461         included, therefore not in config.h. stpncpy.h does the replacement,
13462         and stpncpy.c uses it.
13463
13464 2005-03-02  Bruno Haible  <bruno@clisp.org>
13465
13466         * lib/stpncpy.h (stpncpy): Define as a macro without arguments, so that
13467         stpncpy.c uses it.
13468
13469 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
13470
13471         Remove workaround for bug in Linux kernel 2.6.8 or thereabouts.
13472         The workaround isn't strictly needed for POSIX conformance, and
13473         it's too much of a pain to configure and maintain.  We'll ask
13474         people to fix their kernels instead.
13475         * lib/xnanosleep.c: Don't include gethrxtime.h or xtime.h.
13476         (NANOSLEEP_BUG_WORKAROUND): Remove.
13477         (xnanosleep): Remove the workaround.
13478
13479 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
13480
13481         * modules/gettime (Makefile.am): Remove lib_SOURCES line.
13482         Reported by Derek Price.
13483         (Include): Add "timespec.h".
13484
13485         * modules/xnanosleep (Depends-on): Remove gethrxtime.
13486
13487 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
13488
13489         * m4/xnanosleep.m4 (gl_XNANOSLEEP): Remove configuration attempting
13490         to detect nanosleep bug.
13491
13492 2005-03-01  Bruno Haible  <bruno@clisp.org>
13493
13494         * lib/vasnprintf.c (EOVERFLOW): Define to a fallback if needed.
13495
13496 2005-02-26  Paul Eggert  <eggert@cs.ucla.edu>
13497
13498         * modules/gethrxtime: New file.
13499         * modules/xnanosleep (Files): Add m4/xnanosleep.m4.
13500         (Depends-on): Add gethrxtime.
13501         (configure.ac): Add gl_XNANOSLEEP.
13502         (Makefile.am): Remove lib_SOURCES line.
13503
13504 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
13505
13506         * m4/gethrxtime.m4, m4/xnanosleep.m4: New files.
13507         * m4/gettime.m4 (gl_GETTIME): Check for nanotime.
13508
13509 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
13510
13511         * lib/gethrxtime.h, lib/gethrxtime.c, lib/xtime.h: New files.
13512         * lib/timespec.h (gettime): Return void, since it always
13513         succeeds now.  All uses changed.
13514         * lib/gettime.c (gettime) Likewise.
13515         [HAVE_NANOTIME]: Prefer nanotime.
13516         Assume gettimeofday succeeds, as POSIX requires.
13517         Assime time () succeeds, since other code already does.
13518         * lib/xnanosleep.c: Include xtime.h and gethrxtime.h, not xalloc.h.
13519         (timespec_subtract): Remove.
13520         (NANOSLEEP_BUG_WORKAROUND): New constant.
13521         (xnanosleep): Use gethrxtime rather than gettime; this simplifies
13522         things considerably.  Use it only on GNU/Linux hosts, since the
13523         workaround shouldn't be needed elsewhere.
13524
13525 2005-02-24  Bruno Haible  <bruno@clisp.org>
13526
13527         * modules/gettext (Files): Add m4/glibc2.m4.
13528
13529 2005-02-24  Bruno Haible  <bruno@clisp.org>
13530
13531         * m4/gettext.m4, intdiv0.m4, intmax.m4, inttypes-pri.m4, lcmessage.m4:
13532         * m4/lib-link.m4, lib-prefix.m4, nls.m4, po.m4, printf-posix.m4:
13533         * m4/progtest.m4:
13534         Update from GNU gettext 0.14.2.
13535         * m4/glibc2.m4: New file, from GNU gettext 0.14.2.
13536
13537 2005-02-24  Bruno Haible  <bruno@clisp.org>
13538
13539         * lib/localcharset.c: Update from GNU gettext 0.14.2.
13540         * lib/config.charset: Update from GNU gettext 0.14.2.
13541
13542 2005-02-24  Bruno Haible  <bruno@clisp.org>
13543
13544         * lib/gettext.h: Update from GNU gettext 0.14.2.
13545
13546 2005-02-23  Simon Josefsson  <jas@extundo.com>
13547
13548         * m4/iconvme.m4: New file.
13549
13550 2005-02-23  Jim Meyering  <jim@meyering.net>
13551
13552         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Revert yesteday's
13553         change.
13554         Thanks to Bruno Haible for catching it.
13555
13556 2005-02-22  Simon Josefsson  <jas@extundo.com>
13557
13558         * modules/iconvme: New file.
13559
13560         * MODULES.html.sh: Add iconvme.
13561
13562 2005-02-22  Simon Josefsson  <jas@extundo.com>
13563
13564         * lib/iconvme.h, lib/iconvme.c: New files, from libc.
13565
13566 2005-02-22  Simon Josefsson  <jas@extundo.com>
13567
13568         * config/srclist.txt: Sync iconvme.h, iconvme.c from libc.
13569
13570 2005-02-22  Jim Meyering  <jim@meyering.net>
13571
13572         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Fix typo:
13573         s/ifndef/ifdef/.
13574
13575 2005-02-20  Neil Conway  <neilc@samurai.com>
13576
13577         * lib/xgethostname.c (xgethostname): Check for ENOMEM, which is
13578         returned by OSX/Darwin if the specified buffer is not large
13579         enough for the hostname.
13580
13581 2005-02-03  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
13582
13583         * lib/argp-help.c (__argp_help): Create a fake struct argp_state and
13584         pass it to _help, otherwise the latter coredumps trying to
13585         dereference state.root_argp.
13586
13587 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
13588
13589         * modules/chdir-long (Depends-on): Add memrchr.
13590         * modules/memrchr (Files): Add lib/memrchr.h.
13591         (Include): "memrchr.h".
13592
13593 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
13594
13595         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Add AC_LIBSOURCES, for memrchr.h.
13596
13597 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
13598
13599         * lib/memrchr.h: New file.
13600         * lib/chdir-long.c: Include it.
13601         * lib/memrchr.c [!defined _LIBC]: Include it rather than <string.h>
13602         Don't bother including stddef.h.
13603
13604 2005-02-01  Paul Eggert  <eggert@cs.ucla.edu>
13605
13606         * lib/mountlist.h (MOUNTLIST_H_): New macro, to protect against double
13607         inclusion.
13608         Include <sys/types.h>, for dev_t.
13609         (ME_DUMMY, ME_REMOTE): Move from here....
13610         * lib/mountlist.c (ME_DUMMY, ME_REMOTE): To here.
13611         (ME_DUMMY): Count "subfs" as a dummy.  Problem reported by
13612         Dmitry V. Levin.
13613         Include mountlist.h first, to test the interface.
13614
13615 2005-01-29  Bruno Haible  <bruno@clisp.org>
13616
13617         * lib/progname.c (program_name): Initialize.
13618         Needed when linking statically on MacOS X.
13619
13620 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
13621
13622         Sync from coreutils.
13623         * modules/getloadavg (Files): Remove m4/getloadavg.m4.
13624         (Depends-on): Add c-strtod.
13625         (configure.ac): Replace gl_FUNC_GETLOADAVG with AC_FUNC_GETLOADAVG.
13626
13627 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
13628
13629         Sync from coreutils.
13630         * m4/getloadavg.m4, glibc.m4, search-libs.m4: Remove.
13631
13632         Remove files that are specific to coreutils.
13633         * m4/check-decl.m4, jm-macros.m4, lib-check.m4, prereq.m4: Remove.
13634
13635 2005-01-28  Bruno Haible  <bruno@clisp.org>
13636
13637         * modules/javacomp: New file.
13638         * MODULES.html.sh (Java): Add javacomp.
13639
13640 2005-01-28  Bruno Haible  <bruno@clisp.org>
13641
13642         * m4/javacomp.m4: New file, from GNU gettext.
13643
13644 2005-01-28  Bruno Haible  <bruno@clisp.org>
13645
13646         * lib/javacomp.sh.in: New file, from GNU gettext.
13647         * lib/javacomp.h: New file, from GNU gettext.
13648         * lib/javacomp.c: New file, from GNU gettext.
13649
13650 2005-01-26  Simon Josefsson  <jas@extundo.com>
13651
13652         * lib/gai_strerror.c: Use GPL in header.
13653
13654 2005-01-26  Bruno Haible  <bruno@clisp.org>
13655
13656         * modules/javaexec: New file.
13657         * MODULES.html.sh (Java): Add javaexec.
13658
13659 2005-01-26  Bruno Haible  <bruno@clisp.org>
13660
13661         * m4/javaexec.m4: New file, from GNU gettext.
13662
13663 2005-01-26  Bruno Haible  <bruno@clisp.org>
13664
13665         * lib/javaexec.sh.in: New file, from GNU gettext.
13666         * lib/javaexec.h: New file, from GNU gettext.
13667         * lib/javaexec.c: New file, from GNU gettext.
13668
13669 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
13670
13671         * modules/lchown (Depends-on): Remove lchown.h
13672
13673 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
13674
13675         * m4/sysexits.m4 (gl_SYSEXITS): Reverted logic. SYSEXITS_H
13676         must be defined if the header file was not found, in order
13677         to provide a replacement. Reported by Todd Vierling <tv@duh.org>
13678
13679 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
13680
13681         * lib/argp-help.c (hol_entry_help): Avoid using non-constant
13682         initializers for struct pentry_state.
13683         (__argp_error): Check return value of __asprintf
13684         (__argp_failure): Translate error message
13685
13686         * lib/argp-parse.c: Removed braces around the expansion of N_()
13687
13688 2005-01-23  Paul Eggert  <eggert@cs.ucla.edu>
13689
13690         * m4/acl.m4, afs.m4, alloca.m4, argp.m4, assert.m4, atexit.m4,
13691         backupfile.m4, base64.m4, bison.m4, c-bs-a.m4, c-stack.m4,
13692         c-strtod.m4, calloc.m4, canon-host.m4, canonicalize.m4,
13693         clock_time.m4, cloexec.m4, closeout.m4, d-ino.m4, d-type.m4,
13694         dirfd.m4, dirname.m4, dos.m4, dup2.m4, error.m4, euidaccess.m4,
13695         exclude.m4, exitfail.m4, extensions.m4, fcntl-safer.m4,
13696         file-type.m4, fileblocks.m4, filemode.m4, fnmatch.m4, fpending.m4,
13697         free.m4, fstypename.m4, fsusage.m4, ftruncate.m4, getaddrinfo.m4,
13698         getcwd-path-max.m4, getcwd.m4, getdate.m4, getdomainname.m4,
13699         getgroups.m4, gethostname.m4, getline.m4, getndelim2.m4,
13700         getnline.m4, getopt.m4, getpagesize.m4, getpass.m4, getsubopt.m4,
13701         gettime.m4, gettimeofday.m4, getugroups.m4, getusershell.m4,
13702         group-member.m4, hard-locale.m4, hash.m4, host-os.m4, human.m4,
13703         idcache.m4, inttostr.m4, isdir.m4, jm-winsz1.m4, jm-winsz2.m4,
13704         link-follow.m4, long-options.m4, ls-mntd-fs.m4, lstat.m4,
13705         makepath.m4, mathl.m4, md5.m4, memcasecmp.m4, memchr.m4,
13706         memcmp.m4, memcoll.m4, memcpy.m4, memmem.m4, memmove.m4,
13707         memrchr.m4, memset.m4, mkdir-slash.m4, mkstemp.m4, mktime.m4,
13708         modechange.m4, mountlist.m4, nanosleep.m4, obstack.m4,
13709         path-concat.m4, pathmax.m4, perl.m4, physmem.m4, poll.m4,
13710         posixtm.m4, posixver.m4, putenv.m4, quote.m4, quotearg.m4,
13711         readdir.m4, readtokens.m4, readutmp.m4, regex.m4, rename.m4,
13712         restrict.m4, rmdir-errno.m4, rmdir.m4, rpmatch.m4, same.m4,
13713         savedir.m4, settime.m4, sha1.m4, sig2str.m4, snprintf.m4,
13714         sockpfaf.m4, st_dm_mode.m4, st_mtim.m4, stat.m4, stdint.m4,
13715         stdio-safer.m4, strchrnul.m4, strdup.m4, strerror.m4,
13716         strerror_r.m4, strftime.m4, strndup.m4, strnlen.m4, strsep.m4,
13717         strtod.m4, strtoimax.m4, strtok_r.m4, strtol.m4, strtoll.m4,
13718         strtoul.m4, strtoull.m4, strtoumax.m4, strverscmp.m4, sysexits.m4,
13719         time_r.m4, timegm.m4, timespec.m4, tm_gmtoff.m4, tzset.m4,
13720         uint32_t.m4, uintptr_t.m4, unistd-safer.m4, unlink-busy.m4,
13721         unlocked-io.m4, uptime.m4, userspec.m4, utimbuf.m4, utime.m4,
13722         utimecmp.m4, utimens.m4, utimes-null.m4, vsnprintf.m4, xalloc.m4,
13723         xgetcwd.m4, xreadlink.m4, xstrndup.m4, xstrtod.m4, xstrtoimax.m4,
13724         xstrtol.m4, xstrtoumax.m4, yesno.m4:
13725         Use an all-permissive copyright notice, recommended by RMS.
13726
13727 2005-01-21  Paul Eggert  <eggert@cs.ucla.edu>
13728
13729         * modules/chdir-long (Depends-on): Remove mempcpy.
13730
13731 2005-01-21  Jim Meyering  <jim@meyering.net>
13732
13733         * lib/openat.h (AT_SYMLINK_NOFOLLOW): Define to 4096, so it's the
13734         same value as for Solaris 9.
13735
13736         * lib/chdir-long.c (chdir_long): Rewrite to remove limitation on
13737         component length.  This included changing the parameter to be
13738         of type `char *' rather than `char const *'.
13739         * lib/chdir-long.h (chdir_long): Update prototype.
13740
13741         * lib/openat.c (fdopendir, fstatat): New functions.
13742         * lib/openat.h: Include headers required for use of DIR and struct
13743         stat.
13744         [AT_SYMLINK_NOFOLLOW]: Define.
13745         (fdopendir, fstatat): Add prototypes.
13746
13747 2005-01-21  Bruno Haible  <bruno@clisp.org>
13748
13749         * modules/classpath: New file.
13750         * MODULES.html.sh (Java): Add classpath.
13751
13752 2005-01-21  Bruno Haible  <bruno@clisp.org>
13753
13754         * lib/classpath.h: New file, from GNU gettext.
13755         * lib/classpath.c: New file, from GNU gettext.
13756
13757 2005-01-20  Simon Josefsson  <jas@extundo.com>
13758
13759         * modules/version-etc-fsf: New file.
13760
13761 2005-01-20  Simon Josefsson  <jas@extundo.com>
13762
13763         * lib/version-etc-fsf.c: New file, with version_etc_copyright.
13764         * lib/version-etc.c: Remove version_etc_copyright.
13765         * lib/version-etc.h (version_etc_copyright): Use [] instead of * in
13766         prototype, suggested by Paul Eggert <eggert@CS.UCLA.EDU>.
13767
13768 2005-01-20  Simon Josefsson  <jas@extundo.com>
13769
13770         * lib/base64.h (isbase64): Add.
13771
13772         * lib/base64.c (isb64): Rename to isbase64, use to_uchar instead of
13773         using a unsigned prototype, don't inline.
13774         (base64_decode): Use it.
13775
13776 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
13777
13778         * m4/save-cwd.m4 (gl_SAVE_CWD): Remove check for fcntl; we now assume
13779         it.
13780
13781 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
13782
13783         * lib/save-cwd.c (save_cwd): Remove code to support the case
13784         where fchdir is missing or flaky.
13785
13786 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
13787
13788         * MODULES.html.sh (Command-line arguments): Add version-etc-fsf.
13789
13790 2005-01-19  Paul Eggert  <eggert@cs.ucla.edu>
13791
13792         * modules/mempcpy (Makefile.am): Remove mention of mempcpy.h;
13793         AC_LIBSOURCES now does this.
13794         * MODULES.html.sh (Sizes of integer types <limits.h>): New element,
13795         with new ullong_max module.
13796
13797 2005-01-19  Bruno Haible  <bruno@clisp.org>
13798
13799         * modules/sh-quote: New file.
13800         * MODULES.html.sh (Executing programs): Add sh-quote.
13801
13802 2005-01-19  Bruno Haible  <bruno@clisp.org>
13803
13804         * lib/sh-quote.h: New file, from GNU gettext.
13805         * lib/sh-quote.c: New file, from GNU gettext.
13806
13807 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
13808
13809         Merge from coreutils.
13810         * m4/ullong_max.m4: New file.
13811         * m4/jm-macros.m4 (gl_MACROS): Require gl_ULLONG_MAX.
13812         (gl_MACROS): Assume localeconv exists.
13813
13814 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
13815
13816         Merge changes from coreutils, as described below in several
13817         changelogs dated today.
13818
13819         * lib/save-cwd.c: Include "save-cwd.h" before other include files.
13820         (O_DIRECTORY): Remove; not needed here, since "." must be
13821         a directory.  All uses removed.
13822         (save_cwd): Use __sgi || __sun, not sun || __sun.  __sun is
13823         universal on Suns, and we also need to test for IRIX.
13824         Revamp code to use 'if' rather than '#if'.
13825         Avoid unnecessary comparison of cwd->desc to 0.
13826
13827         * lib/utimens.c (futimens): Robustify the previous patch, by checking
13828         for known valid error numbers rather than observed invalid ones.
13829
13830 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
13831
13832         * modules/ullong_max: New file.
13833
13834         * modules/chdir-long, modules/openat: New files.
13835         * modules/save-cwd (Depends-on): Depend on chdir-long.
13836         (Makefile.am): Remove lib_SOURCES; now handled by AC_LIBSOURCES.
13837
13838 2005-01-18  Jim Meyering  <jim@meyering.net>
13839
13840         Merge from coreutils.
13841         * m4/chdir-long.m4, m4/openat.m4: New files.
13842         * m4/save-cwd.m4 (gl_SAVE_CWD): Add AC_LIBSOURCES for save-cwd.c,
13843         save-cwd.h.  Add AC_LIBOBJ for save-cwd.
13844         * m4/chown.m4 (gl_FUNC_CHOWN): When cross-compiling, assume that chown
13845         is sane and DOES follow symlinks.  Besides, testing 20 different
13846         systems found no broken chown implementations.
13847         Prompted by a change in rsync's copy of this macro.
13848         * m4/jm-macros.m4 (gl_MACROS): Require gl_FUNC_CHDIR_LONG.
13849
13850         * m4/lchown.m4 (gl_FUNC_LCHOWN): Use AC_LIBSOURCES.
13851
13852         * m4/utimes.m4: Work around tests/touch/empty-file failure on a system
13853         (sparc64, Linux-2.4.28, glibc-2.3.3) that didn't honor utimes'
13854         NULL-means-set-to-current-time semantics.
13855         Remove temporary file immediately, rather than waiting
13856         for configure's at-exit trap code to do it.
13857
13858 2005-01-18  Jim Meyering  <jim@meyering.net>
13859
13860         * lib/version-etc.c (version_etc_copyright): Update copyright date.
13861
13862         * lib/utimens.c (futimens): Account for the fact that futimes
13863         can also fail with errno == ENOSYS or errno == ENOENT.
13864         Patch from Dmitry V. Levin.
13865
13866         Change the name of the robust chdir function from chdir to chdir_long.
13867         * lib/save-cwd.c: Include chdir-long.h rather than chdir.h.
13868         (restore_cwd): Use chdir_long, not chdir.
13869         * lib/chdir-long.c: Renamed from chdir.c.
13870         * lib/chdir-long.h: Renamed from chdir.h.
13871         [!defined PATH_MAX]: Define chdir_long to chdir on systems like the
13872         Hurd.
13873
13874 2005-01-18  Bruno Haible  <bruno@clisp.org>
13875
13876         * m4/allocsa.m4, m4/codeset.m4, m4/copy-file.m4, m4/eaccess.m4:
13877         * m4/eealloc.m4, m4/eoverflow.m4, m4/execute.m4, m4/fatal-signal.m4:
13878         * m4/findprog.m4, m4/glibc21.m4, m4/iconv.m4, m4/intmax_t.m4:
13879         * m4/inttypes_h.m4, m4/lib-ld.m4, m4/lib-link.m4, m4/lib-prefix.m4:
13880         * m4/linebreak.m4, m4/localcharset.m4, m4/longdouble.m4:
13881         * m4/longlong.m4, m4/mbrtowc.m4, m4/mbstate_t.m4, m4/mbswidth.m4:
13882         * m4/mkdtemp.m4, m4/pipe.m4, m4/readlink.m4, m4/safe-read.m4:
13883         * m4/safe-write.m4, m4/setenv.m4, m4/sig_atomic_t.m4:
13884         * m4/signalblocking.m4, m4/signed.m4, m4/size_max.m4, m4/ssize_t.m4:
13885         * m4/stdbool.m4, m4/stdint_h.m4, m4/stpcpy.m4, m4/stpncpy.m4:
13886         * m4/strcase.m4, m4/strcspn.m4, m4/strpbrk.m4, m4/strstr.m4:
13887         * m4/ucs4-utf.m4, m4/uintmax_t.m4, m4/ulonglong.m4, m4/unicodeio.m4:
13888         * m4/utf-ucs4.m4, m4/vasnprintf.m4, m4/vasprintf.m4:
13889         * m4/wait-process.m4, m4/wchar_t.m4, m4/wint_t.m4, m4/xsize.m4:
13890         Use an all-permissive copyright notice, recommended by RMS.
13891
13892 2005-01-18  Bob Proulx  <bob@proulx.com>
13893
13894         * lib/obstack.c [DEFAULT_ALIGNMENT]: Use an intermediate type to
13895         simplify offsetof() macro construct to avoid compile failure with
13896         native HP-UX 11.0 ANSI C compiler.
13897
13898 2005-01-17  Bruno Haible  <bruno@clisp.org>
13899
13900         * lib/stpncpy.c: Remove HAVE_STPNCPY and gnu_stpncpy renaming,
13901         redundant because stpncpy.m4 takes care of it.
13902
13903 2005-01-17  Bruno Haible  <bruno@clisp.org>
13904
13905         * lib/progreloc.c: Include xalloc.h instead of xmalloc.h.
13906
13907 2005-01-17  Bruno Haible  <bruno@clisp.org>
13908
13909         * lib/progreloc.c (xstrdup): Define as strdup if no xmalloc should be
13910         used.
13911
13912 2005-01-17  Bruno Haible  <bruno@clisp.org>
13913
13914         * lib/fwriteerror.h (fwriteerror): Change specification to include
13915         fclose.
13916         * lib/fwriteerror.c: Include <stdbool.h>.
13917         (fwriteerror): At the end, close the file stream. Record whether
13918         stdout was already closed.
13919
13920 2005-01-17  Bruno Haible  <bruno@clisp.org>
13921
13922         * lib/execute.c (environ): Declare if needed.
13923         * lib/pipe.c (environ): Likewise.
13924         Reported by Michael Schloh von Bennewitz <michael.schloh@cw.com>.
13925
13926 2005-01-11  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
13927
13928         * modules/argp: Depend on vsnprintf
13929
13930 2005-01-10  Jim Meyering  <jim@meyering.net>
13931
13932         * modules/closeout (Depends-on): Add atexit.
13933
13934 2005-01-06  Bruno Haible  <bruno@clisp.org>
13935
13936         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Rename stpncpy to gnu_stpncpy here.
13937
13938 2005-01-04  Paul Eggert  <eggert@cs.ucla.edu>
13939
13940         * lib/human.c (SIZE_MAX, UINTMAX_MAX): Move these conditional
13941         definitions to be after all include files, to avoid collisions.
13942         Problem reported by Bob Proulx.
13943
13944 2005-01-04  Jim Meyering  <jim@meyering.net>
13945
13946         Changes imported from coreutils.
13947         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Rather than using "conftestXXXXXX"
13948         as the mkstemp template, use a temporary directory and an
13949         8.3-friendly template to avoid trouble on systems like DJGPP.
13950         Reported by Juan M. Guerrero via Stepan Kasal.
13951         * m4/(gl_FUNC_MKSTEMP): Include <unistd.h> for the declaration of
13952         close. Remove the temporary directory right away, rather than waiting
13953         for configure's at-exit trap code to do it.
13954         Suggestion from Stepan Kasal.
13955
13956 2005-01-01  Simon Josefsson  <jas@extundo.com>
13957
13958         * gnulib-tool: Print #include directives when --import'ing.
13959
13960 2004-12-28  Simon Josefsson  <jas@extundo.com>
13961
13962         * tests/test-base64.c: Include required header files.  Remove
13963         unused variables.
13964
13965 2004-12-28  Paul Eggert  <eggert@cs.ucla.edu>
13966
13967         * modules/error (Depends-on): Remove gettext.
13968
13969 2004-12-28  Paul Eggert  <eggert@cs.ucla.edu>
13970
13971         * lib/error.c [!_LIBC && !ENABLE_NLS]: Do not include "gettext.h";
13972         not needed.  This removes a dependency on the gettext module.
13973         [defined _LIBC]: Do not include <libintl.h>; not needed.
13974
13975 2004-12-24  Paul Eggert  <eggert@cs.ucla.edu>
13976
13977         * m4/c-strtod.m4 (gl_C99_STRTOLD): New macro.
13978         (gl_C_STRTOD): Use it instead of AC_CHECK_DECLS_ONCE(strtold).
13979
13980 2004-12-24  Paul Eggert  <eggert@cs.ucla.edu>
13981
13982         * lib/c-strtod.c (STRTOD): Depend on HAVE_C99_STRTOLD, not
13983         HAVE_DECL_STRTOLD.
13984
13985 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
13986
13987         * modules/getdate (Depends-on): Remove alloca-opt.
13988
13989 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
13990
13991         * m4/getdate.m4 (gl_GETDATE): Remove AC_FUNC_ALLOCA.
13992
13993 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
13994
13995         * lib/argp-parse.c: Include <stddef.h>.
13996         (alignof, alignto): New macros.
13997         (parser_init): Don't assume that void * is aligned sufficiently
13998         for struct option.
13999
14000         * lib/getdate.y (YYSTACK_USE_ALLOCA): Define to 0, since there's no
14001         need to extend the stack.
14002         (YYINITDEPTH): New macro, so that the initial stack isn't overly
14003         large.
14004
14005 2004-12-22  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
14006
14007         * lib/argp-parse.c (parser_init): Avoid arithmetics on void pointers.
14008
14009 2004-12-19  Paul Eggert  <eggert@cs.ucla.edu>
14010
14011         * modules/regex (lib_SOURCES): Remove regex.c, undoing previous
14012         (2004-10-24) change.  Apparently this was a false alarm.
14013
14014         * modules/getdate: Depend on alloca-opt, not alloca.
14015
14016 2004-12-19  Paul Eggert  <eggert@cs.ucla.edu>
14017
14018         * lib/alloca_.h: Conditionalize on _GNULIB_ALLOCA_H, not _ALLOCA_H.
14019         Remove now-obsolete comment about AIX.
14020         * lib/getdate.y: Include <alloca.h> only if HAVE_ALLOCA.
14021         (YYSTACK_USE_ALLOCA): Define to 0 if !HAVE_ALLOCA.
14022         (YYMAXDEPTH): New macro.
14023
14024 2004-12-18  Simon Josefsson  <jas@extundo.com>
14025
14026         * modules/alloca: Depend on alloca-opt, instead of duplicating it.
14027
14028 2004-12-18  Bruno Haible  <bruno@clisp.org>
14029
14030         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Also test for sigaction.
14031
14032 2004-12-18  Bruno Haible  <bruno@clisp.org>
14033
14034         * lib/fatal-signal.c (fatal_signals): Make non-const.
14035         (init_fatal_signals): New function.
14036         (uninstall_handlers, install_handlers): Ignore signals that were set to
14037         SIG_IGN.
14038         (at_fatal_signal): Call init_fatal_signals.
14039         (init_fatal_signal_set): Likewise. Ignore signals that were set to
14040         SIG_IGN.
14041         Reported by Paul Eggert.
14042
14043 2004-12-18  Bruno Haible  <bruno@clisp.org>
14044
14045         * doc/alloca.texi: New file.
14046         * doc/alloca-opt.texi: New file.
14047
14048 2004-12-17  Jim Meyering  <jim@meyering.net>
14049
14050         * config/install-sh: Use `(exit N); exit N', not `(exit N); exit'.
14051         Otherwise, install-sh could exit with improper exit status when
14052         exiting via a trapped interrupt.  Thanks to a report from Bob Proulx.
14053
14054 2004-12-16  Simon Josefsson  <jas@extundo.com>
14055
14056         * tests/test-base64.c: Add license.
14057
14058 2004-12-15  Stepan Kasal  <address@hidden>
14059
14060         * gnulib-tool (func_emit_lib_Makefile_am): Shorten a long sed command.
14061
14062 2004-12-12  Paul Eggert  <eggert@cs.ucla.edu>
14063
14064         * modules/getcwd (Files): Add m4/d-ino.m4.
14065         Suggested by Mark D. Baushke.
14066
14067 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
14068
14069         * lib/getdate.y (textint): New member "negative".
14070         (time_zone_hhmm): New function.
14071         Expect 14 shift-reduce conflicts, not 13.
14072         (o_colon_minutes): New rule.
14073         (time, zone): Use it to add support for +HH:MM, UTC+HH:MM.
14074         (yylex): Set the "negative" member of signed numbers.
14075
14076 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
14077
14078         * doc/getdate.texi (Time of day items, Time zone items):
14079         Describe new formats +00:00, UTC+00:00.
14080
14081 2004-12-07  Paul Eggert  <eggert@cs.ucla.edu>
14082
14083         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Fix typo in previous change:
14084         spurious "-l"s.  Problem reported by Stepan Kasal.
14085
14086 2004-12-06  Paul Eggert  <eggert@cs.ucla.edu>
14087
14088         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): New macro, to work around bug
14089         in Autoconf 2.59.  Problem reported by Mark D. Baushke.
14090
14091 2004-12-04  Simon Josefsson  <jas@extundo.com>
14092
14093         * modules/getaddrinfo (License): Add LGPL, reported by Yoann
14094         Vandoorselaere <yoann@prelude-ids.org>.
14095
14096 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
14097
14098         Changes imported from coreutils.
14099         * m4/hard-locale.m4 (gl_HARD_LOCALE): Assume locale.h and setlocale
14100         exist.
14101         * m4/human.m4 (gl_HUMAN): Assume locale.h and localeconv exist.
14102
14103 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
14104
14105         Changes imported from coreutils.
14106         * lib/hard-locale.c: Assume <locale.h> exists.
14107         Include "strdup.h".
14108         (GLIBC_VERSION): New macro.
14109         (hard_locale): Assume setlocale exists.
14110         Rewrite to avoid #ifdef.
14111         Use strdup rather than malloc + strcpy.
14112         * lib/human.c: Assume <locale.h> exists.
14113         (human_readable): Assume localeconv exists.
14114
14115 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
14116
14117         * modules/hard-locale (Depends-on): Add strdup.
14118
14119 2004-12-01  Jakub Jelinek  <jakub@redhat.com>
14120
14121         * lib/mktime.c (__mktime_internal): If SEC_REQUESTED != SEC,
14122         convert T2, not T.  (Imported from libc.)
14123
14124 2004-11-30  Simon Josefsson  <jas@extundo.com>
14125
14126         * modules/restrict (License): Change to LGPL.
14127
14128 2004-11-30  Simon Josefsson  <jas@extundo.com>
14129
14130         * m4/restrict.m4: Add copyright and copying conditions.
14131
14132 2004-11-30  Simon Josefsson  <jas@extundo.com>
14133
14134         * m4/base64.m4: New file.
14135
14136 2004-11-30  Simon Josefsson  <jas@extundo.com>
14137
14138         * MODULES.html.sh (Extra functions based on ANSI C 89): Add
14139         base64.
14140
14141         * tests/test-base64.c: New file.
14142
14143         * modules/base64: New file.
14144
14145 2004-11-30  Paul Eggert  <eggert@cs.ucla.edu>
14146
14147         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX):
14148         Define HAVE_PARTLY_WORKING_GETCWD if getcwd is partly working.
14149
14150         * m4/readutmp.m4 (gl_READUTMP): Don't check for sys/param.h.
14151
14152 2004-11-30  Paul Eggert  <eggert@cs.ucla.edu>
14153
14154         * lib/getcwd.c (is_ENAMETOOLONG): New macro.
14155         (__getcwd.c): Don't restore errno; glibc doesn't.
14156         [HAVE_PARTLY_WORKING_GETCWD && !defined AT_FDCWD]: Try system getcwd
14157         first, falling back to our code only if its results look suspicious.
14158         Ensure that the resulting buffer is only as large as necessary.
14159
14160         * lib/readutmp.c: Include readutmp.h first.
14161         Include <errno.h>, since readutmp.h no longer does that.
14162         * lib/readutmp.h: Don't include <errno.h>,
14163         <sys/param.h>, <time.h>; not needed to establish interface.
14164         (errno): Remove decl.
14165         (HAVE_STRUCT_XTMP_UT_TYPE): Remove; no longer needed.
14166         (UT_TYPE_EQ, UT_TYPE_NOT_DEFINED, UT_TYPE_BOOT_TIME,
14167         UT_TYPE_USER_PROCESS, IS_USER_PROCESS): New macros.
14168
14169 2004-11-28  Simon Josefsson  <jas@extundo.com>
14170
14171         * lib/base64.h, base64.c: New file.
14172
14173 2004-11-27  Paul Eggert  <eggert@cs.ucla.edu>
14174
14175         * lib/getcwd.h: New file, which I forgot to check in on 2004-11-25.
14176
14177 2004-11-26  Paul Eggert  <eggert@cs.ucla.edu>
14178
14179         * modules/getcwd (Files): Add lib/getcwd.h, m4/getcwd.m4.
14180         (Depends-on): Remove pathmax, same.  Add mempcpy.
14181         (configure.ac): GL_FUNC_GETCWD_PATH_MAX -> gl_FUNC_GETCWD.
14182         (Makefile.am): Append getcwd.h to lib_SOURCES.
14183         (Include): Add getcwd.h.
14184         (Maintainer): Change from Jim Meyering to "all, glibc",
14185         since getdate now uses intended-for-glibc code.
14186         * modules/xgetcwd (Files): Remove m4/getcwd.m4.
14187         (Depends-on): Depend on getcwd.  Do not depend on pathmax.
14188
14189 2004-11-25  Paul Eggert  <eggert@cs.ucla.edu>
14190
14191         Fix problems reported by Scott S. Tinsley for HP-UX 11.11 using
14192         HP's ANSI C compiler.
14193         * lib/fsusage.c (statvfs) [HAVE_SYS_STATVFS_H]: Remove decl.
14194         Declaring int functions causes warnings on some modern systems and
14195         shouldn't be needed to compile on ancient ones.
14196         * lib/same.c (MIN) [defined MIN]: Don't define, since it's already
14197         defined.
14198
14199         * lib/getcwd.c: Replace by a copy of glibc/sysdeps/posix/getcwd.c, but
14200         with the following changes.
14201         (__set_errno): Parenthesize properly.
14202         Include <stdbool.h>.
14203         (MIN, MAX, MATCHING_INO): New macros.
14204         (__getcwd): Define with prototype, not K&R form.
14205         Use heuristics to allocate default buffer on stack if possible.
14206         If AT_FDCWD is defined, use openat and fstatat to avoid O(N**2)
14207         behavior, and to avoid the PATH_MAX limit when computing
14208         ../../../../...
14209         Use MATCHING_INO to compare inode number to file.
14210         Check for arithmetic overflow in size calculations.
14211         Fix bug in reallocation of dot array that caused getcwd to fail
14212         on directories nested deeper than 75.
14213         Be more careful about saving errno on error.
14214         Do not use realloc; use only free+malloc, as this is a bit
14215         more flexible and avoids a needless copy operation.
14216         Do not inspect st_dev and st_ino for symbolic links; POSIX
14217         doesn't specify the latter.
14218         Check for closedir errors.
14219         Avoid needless casts.
14220         Use "#ifdef weak_alias" around weak_alias, to be like other
14221         glibc code.
14222         The following changes to getcwd.c have effect only when used in
14223         gnulib; they have no effect inside glibc proper.
14224         (#pragma alloca) [defined _AIX && !defined __GNUC__]: Remove,
14225         as alloca isn't used.
14226         (alloca, __alloca): Likewise.
14227         [!_LIBC]: Include "getcwd.h", "mempcpy.h".
14228         Include <stddef.h>, <stdlib.h>, <string.h>, <limits.h>
14229         unconditionally, as gnulib assumes C89 or better.
14230         Do not include <sys/param.h>.
14231         (errno) [!defined __GNU_LIBRARY__ && !defined STDC_HEADERS]: Remove
14232         no-longer-necessary 'extern int errno' decl; gnulib assumes C89 or
14233         better.
14234         (NULL) [!defined NULL]: Remove; we assume C89 or better.
14235         Include <dirent.h> in a way that is compatible with modern Autoconf.
14236         (_D_ALLOC_NAMELEN, _D_EXACT_NAMLEN):
14237         New macros, if not already defined.
14238         Include <unistd.h> if _LIBC, not if __GNU_LIBRARY__.
14239         Use "_LIBC", not "defined _LIBC", for consistency.
14240         (HAVE_MEMPCPY): Remove; no longer needed now that gnulib has
14241         a mempcpy module.
14242         (__lstat, __closedir, __opendir, __readdir) [!_LIBC]: New macros.
14243         (GETCWD_RETURN_TYPE): Remove.  All uses replaced by char *.
14244         * lib/xgetcwd.c: David MacKenzie's old code was removed, so give
14245         credit only to Jim Meyering and adjust the copyright dates.
14246         Do not include <limits.h>, <stdio.h>, <sys/types.h>,
14247         <stdlib.h>, <unistd.h>, "pathmax.h".
14248         Instead, include "xgetcwd.h" (first) and "getcwd.h".
14249         (INITIAL_BUFFER_SIZE): Remove.
14250         (xgetcwd): Rely on getcwd, since we now depend on a reliable one.
14251
14252 2004-11-25  Paul Eggert  <eggert@cs.ucla.edu>
14253
14254         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Renamed from
14255         GL_FUNC_GETCWD_PATH_MAX for consistency.  All uses changed.
14256         Use the _ONCE methods, for efficiency.
14257         Check for fcntl.h.  In test program, include <errno.h>
14258         and <fcntl.h> if available.  Remove old K&R cruft from
14259         test program.  Check for common errors in GNU/Linux,
14260         OpenBSD, and Solaris.  Just set gl_cv_func_getcwd_path_max;
14261         don't do AC_LIBOBJ, as that's getcwd.m4's job.
14262         * m4/getcwd.m4 (gl_FUNC_GETCWD_NULL): Renamed from
14263         AC_FUNC_GETCWD_NULL.  All used changed.  Change cache variable
14264         name accordingly.
14265         (gl_FUNC_GETCWD, gl_PREREQ_GETCWD): New macros.  Revamp to
14266         accommodate new getcwd.c.
14267         * m4/jm-macros.m4 (gl_MACROS): Don't require GL_FUNC_GETCWD_PATH_MAX.
14268         * m4/prereq.m4 (gl_PREREQ): Add gl_FUNC_MEMPCPY.
14269         * m4/xgetcwd.m4 (gl_XGETCWD): Replace with gl_FUNC_GETCWD, since
14270         that's all we need now.
14271
14272 2004-11-23  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
14273
14274         * m4/argp.m4 (gl_ARGP): Require gl_GETOPT_SUBSTITUTE unconditionally:
14275         argp-parse.c depends on getopt internals, that means we should
14276         always use our getopt, to be on the safe side.
14277         * m4/getopt.m4 (gl_GETOPT): Check if GETOPT_H is already set, in
14278         order not to spoil the result of an eventual previous invocation
14279         of gl_GETOPT_SUBSTITUTE.
14280
14281 2004-11-23  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
14282
14283         * lib/getopt_.h: Re-addition of __getopt_argv_const caused
14284         redefinition warnings. To avoid them, include the defines
14285         in `#if !defined __need_getopt ... #endif'. The only place
14286         where __getopt_argv_const is used is in definitions
14287         of getopt_long and getopt_long_only below, which are as well
14288         protected by `#ifndef __need_getopt'.
14289         [defined __GETOPT_PREFIX && !defined __need_getopt]: Undef
14290         __need_getopt after including <stdio.h> and <unistd.h> These
14291         headers might have defined it.
14292
14293 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
14294
14295         * m4/utimens.m4 (gl_UTIMENS): Check for futimes function.
14296
14297 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
14298
14299         * lib/utimens.c (__attribute__, ATTRIBUTE_UNUSED): New macros.
14300         (futimens): New function, which uses futimes if available.
14301         (futimens, utimens): Support timespec==NULL, with same semantics
14302         as utime and utimens.
14303         * lib/utimens.h (futimens): New decl.
14304
14305 2004-11-23  Jim Meyering  <jim@meyering.net>
14306
14307         * lib/getopt_.h: Remove trailing blanks.
14308
14309 2004-11-23  Jim Meyering  <jim@meyering.net>
14310
14311         * lib/__fpending.c: Add comment.
14312
14313 2004-11-22  Paul Eggert  <eggert@cs.ucla.edu>
14314
14315         * modules/canonicalize (Depends-on): Add xreadlink.
14316         Problem reported by James Youngman.
14317
14318 2004-11-20  Paul Eggert  <eggert@cs.ucla.edu>
14319
14320         * lib/getopt_.h (__GETOPT_CONCAT, __GETOPT_XCONCAT, __GETOPT_ID):
14321         New macros.
14322         (getopt, getopt_long, getopt_long_only, optarg, opterr, optind,
14323         optopt): Use them instead of invoking ## directly; otherwise, the
14324         symbols will be __GETOPT_PREFIXgetopt rather than rpl_getopt.
14325
14326 2004-11-19  Bruno Haible  <bruno@clisp.org>
14327
14328         * lib/strtok_r.c: Move comments from here...
14329         * lib/strtok_r.h: ... to here.
14330
14331 2004-11-17  Paul Eggert  <eggert@cs.ucla.edu>
14332
14333         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Check for buggy calloc
14334         implementations that mishandle size_t overflow.
14335
14336 2004-11-17  Paul Eggert  <eggert@cs.ucla.edu>
14337
14338         * lib/realloc.c (rpl_realloc): Call 'free' if n==0, since realloc
14339         might fail.  Problem reported by Yoann Vandoorselaere.
14340         * lib/calloc.c (rpl_calloc): Defend against buggy calloc
14341         implementations that mishandle size_t overflow.
14342
14343 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
14344
14345         * modules/canon-host (Depends-on): Add strdup.
14346
14347 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
14348
14349         * m4/canon-host.m4 (gl_CANON_HOST): Check for getaddrinfo.
14350
14351 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
14352
14353         * lib/canon-host.c: Include "strdup.h".
14354         (canon_host): Use getaddrinfo if available, so that IPv6 works.
14355         Use strdup instead of malloc/strcpy to duplicate strings.
14356
14357         * lib/human.h (LONGEST_HUMAN_READABLE): Add 1 for space before unit.
14358         (human_space_before_unit): New constant.
14359         * lib/human.c (human_readable): Support it.
14360
14361         * lib/xgetcwd.c: Include <limits.h>, for PATH_MAX.
14362         (xgetcwd): Set errno correctly when failing.
14363         Work around Solaris 9 bug: getcwd sets errno==ERANGE even though
14364         the failure is actually due to a PATH_MAX problem.
14365
14366         Further getopt changes to make it more likely that glibc will
14367         buy the changes back.
14368         * lib/getopt.c (POSIXLY_CORRECT): New constant.
14369         (getopt): Use it, so to preserve glibc semantic
14370         * lib/getopt1.c (getopt_long, getopt_long_only): Arg is char * const *
14371         when compiling for libc.
14372         * lib/getopt_.h (__getopt_argv_const): Bring it back.
14373         (getopt_long, getopt_long_only): Use it.
14374
14375         * lib/getopt.c (_getopt_initialize, _getopt_internal_r,
14376         _getopt_internal): New arg POSIXLY_CORRECT.  All callers changed.
14377         (getopt): Argv is now char * const *, as per standard.
14378         (_getopt_internal_r, _getopt_internal): Argv is now char **,
14379         not char *__getopt_argv_const *.
14380         * lib/getopt1.c (getopt_long, _getopt_long_r, getopt_long_only,
14381         _getopt_long_only_r): Likewise.
14382         * lib/getopt_.h (getopt, getopt_long, geopt_long_only): Likewise.
14383         * lib/getopt_int.h (_getopt_internal, _getopt_internal_r,
14384         _getopt_long_r, _getopt_long_only_r): Likewise.
14385         * lib/getopt_.h (__getopt_argv_const): Remove.
14386         (getopt): Argv is now char * const *, as per standard.
14387
14388         * lib/getdate.y (tORDINAL): New token.
14389         (day, relunit): Allow it for relative times.
14390         (relative_time_table): Use tORDINAL for ordinals.
14391
14392 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
14393
14394         * doc/getdate.texi (General date syntax): "next" is 1, not 2.
14395         Document that "second" isn't allowed as an ordinal number.
14396
14397 2004-11-16  Jim Meyering  <jim@meyering.net>
14398
14399         * modules/closeout (Depends-on): Add fpending.
14400
14401 2004-11-15  Jim Meyering  <jim@meyering.net>
14402
14403         * lib/closeout.c: Include "__fpending.h" once again.
14404         Include <stdbool.h>.
14405         (close_stdout): Don't fail just because stdout was closed initially,
14406         since some programs don't write to stdout in the normal course of
14407         operation (other than --version and --help), and we don't want this
14408         function to make e.g. `touch file >&-' fail.
14409         But do fail if it was closed and someone has tried to write to it.
14410         E.g., `printf foo >&-' must fail.
14411
14412 2004-11-13  Jim Meyering  <jim@meyering.net>
14413
14414         * m4/jm-macros.m4: Do require gl_FUNC_FPENDING.
14415
14416 2004-11-12  Simon Josefsson  <jas@extundo.com>
14417
14418         * config/srclist.txt: Add strtok_r.c, glibc bought our changes, but a
14419         small doc fix is still pending.
14420
14421 2004-11-11  Simon Josefsson  <jas@extundo.com>
14422
14423         * modules/strtok_r: New file.
14424
14425         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
14426         strtok_r.
14427
14428 2004-11-11  Simon Josefsson  <jas@extundo.com>
14429
14430         * m4/strtok_r.m4: New file.
14431
14432         * m4/getopt.m4: Replace opterr.
14433
14434 2004-11-11  Simon Josefsson  <jas@extundo.com>
14435
14436         * lib/strtok_r.h, strtok_r.c: New file.
14437
14438 2004-11-11  Paul Eggert  <eggert@cs.ucla.edu>
14439
14440         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): Define __GETOPT_PREFIX instead
14441         of replacing opterr, getopt, etc.  This should handle the
14442         powerpc-apple-darwin5.5 problem recently noted by Simon Josefsson.
14443
14444 2004-11-11  Paul Eggert  <eggert@cs.ucla.edu>
14445
14446         * lib/getopt_.h (__getopt_argv_const): New macro, to be used so that
14447         we can stop lying to compilers about the constness of argv when we
14448         are compiled outside glibc.
14449         (getopt, getopt_long, getopt_long_only): Use it.
14450         * lib/getopt.c (_getopt_initialize, _getopt_internal_r,
14451         _getopt_internal, getopt): Likewise.
14452         * lib/getopt1.c (getopt_long, _getopt_long_r, getopt_long_only,
14453         _getopt_long_only_r): Likewise.
14454         * lib/getopt_int.h (_getopt_internal, _getopt_internal_r,
14455         _getopt_long_r, _getopt_long_only_r): Likewise.
14456
14457         * lib/getopt_.h [defined __GETOPT_PREFIX && !defined __need_getopt]:
14458         Include <stdlib.h> and <stdio.h>, and <unistd.h> if available.
14459         Then rename getopt to __GETOPT_PREFIX##getopt, and so forth for
14460         the other external symbols.
14461         (getopt) [!defined __GNU_LIBRARY]: Use prototype, not old-style
14462         declaration, since the above renaming now works around collisions.
14463
14464 2004-11-11  Jim Meyering  <jim@meyering.net>
14465
14466         * lib/linebreak.c: Remove trailing blanks.
14467         * lib/alloca_.h: Likewise.
14468         * lib/acosl.c: Likewise.
14469         * lib/euidaccess.c: Likewise.
14470         * lib/allocsa.h: Likewise.
14471
14472 2004-11-10  Simon Josefsson  <jas@extundo.com>
14473
14474         * m4/getaddrinfo.m4: New file.
14475
14476 2004-11-10  Simon Josefsson  <jas@extundo.com>
14477
14478         * lib/getaddrinfo.h, lib/getaddrinfo.c: New files.
14479
14480 2004-11-10  Simon Josefsson  <jas@extundo.com>
14481
14482         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
14483         getaddrinfo.
14484
14485         * modules/getaddrinfo: New file.
14486
14487 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
14488
14489         * m4/prereq.m4 (gl_PREREQ): Require gt_FUNC_SETENV.
14490
14491 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
14492
14493         * lib/mktime.c (SHR): New macro, which is a portable
14494         substitute for >> that should work even on Crays.
14495         (TIME_T_MIDPOINT, ydhms_diff, __mktime_internal): Use it.
14496         Problem reported by Mark D. Baushke in
14497         <http://lists.gnu.org/archive/html/bug-gnulib/2004-11/msg00071.html>.
14498         * lib/getdate.y (SHR): Likewise.
14499         (tm_diff): Use it.
14500         * lib/strftime.c (SHR): Likewise.
14501         (tm_diff): Use it.
14502         * lib/quotearg.c (struct quoting_options): Use unsigned int for
14503         quote_these_too, so that right shifts are well defined.  All uses
14504         changed.
14505
14506 2004-11-10  Jim Meyering  <jim@meyering.net>
14507
14508         Ensure that no close failure goes unreported.
14509         * lib/closeout.c (close_stdout): Always close stdout.  I.e., don't
14510         return early when it seems there's nothing to flush.
14511         Don't include __fpending.h.
14512
14513 2004-11-10  Jim Meyering  <jim@meyering.net>
14514
14515         * modules/closeout (Depends-on): Remove fpending.
14516
14517 2004-11-10  Jim Meyering  <jim@meyering.net>
14518
14519         * m4/jm-macros.m4 (gl_MACROS): Don't require gl_FUNC_FPENDING.
14520
14521 2004-11-09  Paul Eggert  <eggert@cs.ucla.edu>
14522
14523         * m4/strftime.m4 (_gl_STRFTIME_PREREQS): Remove.  Move its body to
14524         gl_FUNC_STRFTIME.
14525         (gl_FUNC_STRFTIME): Use AC_CHECK_FUNCS_ONCE and AC_CHECK_HEADERS_ONCE
14526         and AC_REQUIRE when possible, to avoid duplicate checks.
14527         Check for <wchar.h>.
14528
14529 2004-11-09  Paul Eggert  <eggert@cs.ucla.edu>
14530
14531         * lib/strftime.c (DO_MULTIBYTE): Check for wchar.h, too.
14532
14533 2004-11-09  Bruno Haible  <bruno@clisp.org>
14534
14535         * m4/sockpfaf.m4: New file.
14536
14537 2004-11-05  Bruno Haible  <bruno@clisp.org>
14538
14539         * lib/readlink.c: Include stddef.h, needed for size_t on Woe32.
14540         Reported by Mark D. Baushke <mdb@cvshome.org>.
14541
14542 2004-11-04  Bruno Haible  <bruno@clisp.org>
14543
14544         2004-09-11  Bruno Haible  <bruno@clisp.org>
14545                 * allocsa.valgrind: New file.
14546         2004-02-06  Bruno Haible  <bruno@clisp.org>
14547                 * allocsa.h (sa_alignof): Define differently with HP-UX cc, to
14548                 avoid a bug of this cc on HP-UX 10.20 dealing with enums.
14549                 Reported by Christopher Seip <chris.seip@hp.com>.
14550
14551 2004-11-04  Bruno Haible  <bruno@clisp.org>
14552
14553         * modules/allocsa (Files): Add lib/allocsa.valgrind.
14554         (Makefile.am): Distribute it.
14555
14556 2004-11-03  Paul Eggert  <eggert@cs.ucla.edu>
14557
14558         * lib/xreadlink.c (xreadlink): AIX and HP-UX readlink return -1
14559         with errno == ERANGE if the buffer is too small.
14560         Problem reported by Mark D. Baushke.
14561
14562 2004-11-03  Albert Chin  <china@thewrittenword.com>
14563             Paul Eggert  <eggert@cs.ucla.edu>
14564
14565         * m4/uint32_t.m4 (gl_AC_TYPE_UINT32_T): When determining uint32_t
14566         equivalent, substitute $ac_type for equivalent type rather than
14567         blindly using uint32_t *always* which won't work if uint32_t is not
14568         available.  Define _UINT32_T to work around typedef of uint32_t if
14569         <sys/sched.h>, <pthread.h>, or <semaphore.h> used on Solaris
14570         2.5.1.
14571
14572 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
14573
14574         * m4/jm-macros.m4: Sync from coreutils.
14575         (gl_MACROS): Check for mbrlen, for pathchk.
14576         (gl_CHECK_ALL_TYPES): Require AC_TYPE_MBSTATE_T, for pathchk.
14577
14578 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
14579
14580         * lib/xreadlink.c (MAXSIZE): New macro.
14581         (xreadlink): Use it instead of SSIZE_MAX.  Ensure initial buffer
14582         size does not exceed MAXSIZE.  Avoid cast.
14583         As suggested by Mark D. Baushke in
14584         <http://lists.gnu.org/archive/html/bug-gnulib/2004-11/msg00009.html>,
14585         if readlink fails with buffer size just under MAXSIZE, try again
14586         with MAXSIZE.
14587
14588 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
14589
14590         * config/srclist.txt: Add mktime.c; glibc bought all our changes.
14591
14592 2004-11-02  Derek R. Price  <derek@ximbiot.com>
14593         and  Paul Eggert  <eggert@cs.ucla.edu>
14594
14595         * lib/getdate.y [!TEST]: Include <stdio.h>, since we use sprintf now.
14596         (get_date): Overparenthesize to avoid GCC warning.
14597
14598 2004-11-02  Bruno Haible  <bruno@clisp.org>
14599
14600         * m4/setenv.m4 (gt_FUNC_SETENV): Define VOID_UNSETENV if unsetenv()
14601         returns void.
14602
14603 2004-11-02  Bruno Haible  <bruno@clisp.org>
14604
14605         * lib/setenv.h (unsetenv): Define as a macro if the system's unsetenv()
14606         function returns void.
14607
14608 2004-11-01  Paul Eggert  <eggert@cs.ucla.edu>
14609
14610         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for declarations of
14611         fflush_unlocked, flockfile, funlockfile, funlockfile,
14612         fputs_unlocked, putc_unlocked.
14613
14614 2004-11-01  Paul Eggert  <eggert@cs.ucla.edu>
14615
14616         * lib/getpass.c (fflush_unlocked, flockfile, funlockfile)
14617         (funlockfile, fputs_unlocked, putc_unlocked): Don't define if
14618         already declared.
14619
14620 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
14621
14622         * modules/getdate (Files): Add doc/getdate.texi.
14623         (Depends-on): Add setenv, xalloc.
14624
14625 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
14626
14627         * lib/getdate.y: Add support for TZ="foo" within a date string.
14628         Fix some bugs near time_t boundaries.  Reject dates with
14629         out-of-range components, e.g., "Sept 31".
14630         Include <stdlib.h>, "setenv.h", "xalloc.h".
14631         (ISDIGIT_LOCALE): Remove; unused.
14632         Note that the TZ and time functions used here are not reentrant.
14633         (mktime_ok, get_tz): New functions.
14634         (TZBUFSIZE): New constant.
14635         (get_date): Parse leading TZ="foo".  Reject out-of-range components;.
14636         This requires that we sometimes generate our own TZ="XXX..." setting.
14637
14638 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
14639
14640         * doc/getdate.texi: New file, from coreutils with modifications for
14641         the new TZ parsing.
14642
14643 2004-10-27  Derek R. Price  <derek@ximbiot.com>
14644
14645         * lib/mktime.c (not_equal_tm): Remove redundant check.
14646
14647 2004-10-24  Paul Eggert  <eggert@cs.ucla.edu>
14648
14649         * modules/regex (lib_SOURCES): Add regex.c.
14650         Reported by James Youngman in
14651         <http://lists.gnu.org/archive/html/bug-gnulib/2004-10/msg00199.html>.
14652
14653 2004-10-24  Paul Eggert  <eggert@cs.ucla.edu>
14654
14655         * lib/getdate.y: Use Bison 1.875 features, and some minor
14656         code cleanups.  This change does not affect semantics.
14657         Don't include <stdlib.h>; no longer needed.
14658         Don't include unlocked-io.h; only the "#if TEST" code uses
14659         stdio, and performance isn't crucial there.
14660         (PC, YYLEX_PARAM, YYPARSE_PARAM): Remove; replaced by
14661         Bison 1.875 features as described below.
14662         All uses of "PC." replaced by "pc->".
14663         (YYSTYPE): Add a forward declaration.
14664         (yylex, yyerror): Use full prototypes in forward decls.
14665         Use "%pure-parser" rather than obsolescent "%pure_parser".
14666         Use %parse-param and %lex-param instead of obsolescent
14667         YYPARSE_PARAM and YYLEX_PARAM.
14668         (meridian_table, month_and_day_table, time_units_table,
14669         relative_time_table, time_zone_table, military_table,
14670         lookup_zone, lookup_word, get_date):
14671         Use NULL instead of 0 where appropriate.
14672         (to_hour): Avoid abort (), to avoid a dependency on
14673         stdlib.h.
14674         (yyerror, yylex): Now accepts parser_control * arg.
14675         (main) [TEST]: Use '\0' rather than 0 for char.
14676
14677 2004-10-22  Paul Eggert  <eggert@cs.ucla.edu>
14678
14679         * m4/getpagesize.m4 (gl_GETPAGESIZE): Check for <sys/param.h>.
14680
14681 2004-10-22  Paul Eggert  <eggert@cs.ucla.edu>
14682
14683         * lib/getpagesize.c (getpagesize): Don't assume <sys/param.h> exists.
14684         It's now the caller's responsibility to handle the case where
14685         !HAVE_GETPAGESIZE && !defined getpagesize.
14686
14687         * lib/mktime.c (leapyear): Arg is long int, not int.
14688
14689 2004-10-18  Paul Eggert  <eggert@cs.ucla.edu>
14690
14691         * lib/argp-fs-xinl.c, argp-xinl.c: Update from glibc.
14692
14693 2004-10-17  Paul Eggert  <eggert@cs.ucla.edu>
14694
14695         * gnulib-tool (func_emit_lib_Makefile_am): Fix typo: a $ was
14696         missing.  Problem reported by James Youngman.
14697
14698 2004-10-16  Simon Josefsson  <jas@extundo.com>
14699
14700         * gnulib-tool: Fix comments.  Fix parse problem.
14701         (func_emit_lib_Makefile_am): Don't hard code a in libgl_a_SOURCES.
14702
14703 2004-10-15  Paul Eggert  <eggert@cs.ucla.edu>
14704
14705         * m4/getopt.m4 (gl_GETOPT): Detect and reject the incompatible BSD
14706         implementation of getopt_long.  Problem reported by Alexander Taler in:
14707         http://lists.gnu.org/archive/html/bug-gnulib/2004-10/msg00103.html
14708
14709 2004-10-15  Bruno Haible  <bruno@clisp.org>
14710
14711         * gnulib-tool: Untabify. Initialize supplied_libname.
14712         (func_usage): More homogenous output.
14713         (func_modules_transitive_closure, func_modules_to_filelist,
14714         func_emit_lib_Makefile_am): New functions.
14715         (func_import): New function, extracted from big case statement. Use
14716         func_get_license, func_modules_transitive_closure,
14717         func_modules_to_filelist, func_emit_lib_Makefile_am. Initialize
14718         opt_lgpl. Don't use test -a, as it's not portable.
14719         (func_create_testdir): Use func_modules_transitive_closure,
14720         func_modules_to_filelist, func_emit_lib_Makefile_am.
14721
14722 2004-10-15  Bruno Haible  <bruno@clisp.org>
14723
14724         * gnulib-tool (func_import): Let gl_INIT define LTALLOCA when needed.
14725
14726 2004-10-15  Bruno Haible  <bruno@clisp.org>
14727
14728         * gnulib-tool (func_emit_lib_Makefile_am): Add markers to separate
14729         the portions belonging to each module.
14730         Suggested by Derek Robert Price <derek@ximbiot.com>.
14731
14732 2004-10-12  Simon Josefsson  <jas@extundo.com>
14733
14734         * lib/getpass.c (fflush_unlocked, flockfile, funlockfile)
14735         (fputs_unlocked, putc_unlocked) [!_LIBCS && !USE_UNLOCKED_IO]: Map
14736         to real functions.
14737
14738 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
14739
14740         * modules/vsnprintf: New file.
14741
14742 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
14743
14744         * m4/vsnprintf.m4: New file.
14745
14746 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
14747
14748         * lib/vsnprintf.h: New file.
14749         * lib/vsnprintf.c: New file.
14750
14751 2004-10-11  Bruno Haible  <bruno@clisp.org>
14752
14753         * MODULES.html.sh (Support for systems lacking ISO C 99): Add
14754         vsnprintf.
14755
14756 2004-10-10  Paul Eggert  <eggert@cs.ucla.edu>
14757
14758         * config/srclistvars.sh: Add GNUSTANDARDS (for eggert only).
14759
14760 2004-10-07  Bruno Haible  <bruno@clisp.org>
14761
14762         * lib/snprintf.c (snprintf): Avoid a memory allocation if the result
14763         fits into the provided buffer.
14764
14765 2004-10-06  Paul Eggert  <eggert@cs.ucla.edu>
14766
14767         * lib/diacrit.c, diacrit.h: Add GPL notice.
14768
14769         * lib/atanl.c, logl.c: Add GPL notice, to match glibc's added LGPL
14770         notice.
14771         * lib/atanl.c (atanl): Keep the code as similar to glibc as possible.
14772         * lib/logl.c (logl): Keep the code as similar to glibc as possible.
14773         This avoids a potential constant-folding bug.
14774
14775 2004-10-05  Bruno Haible  <bruno@clisp.org>
14776
14777         * m4/strsep.m4 (gl_FUNC_STRSEP): Require AC_GNU_SOURCE. Don't check
14778         for the declaration of strsep.
14779
14780 2004-10-05  Bruno Haible  <bruno@clisp.org>
14781
14782         * lib/strsep.h: Don't declare strsep() if HAVE_STRSEP.
14783
14784 2004-10-04  Simon Josefsson  <jas@extundo.com>
14785
14786         * modules/memmem: New file.
14787         * tests/test-memmem.c: New file.
14788         * MODULES.html.sh (Extra functions based on ANSI C 89): Add memmem.
14789
14790 2004-10-04  Simon Josefsson  <jas@extundo.com>
14791
14792         * m4/memmem.m4: New file.
14793
14794 2004-10-04  Simon Josefsson  <jas@extundo.com>
14795
14796         * lib/memmem.h: New file.
14797         * lib/memmem.c: New file, taken from glibc.
14798
14799 2004-10-04  Simon Josefsson  <jas@extundo.com>
14800
14801         * lib/error.c, md5.c, regex.c: Use '#if USE_UNLOCKED_IO' instead of
14802         '#ifdef USE_UNLOCKED_IO'.
14803
14804 2004-10-04  Simon Josefsson  <jas@extundo.com>
14805
14806         * config/srclist.txt: Add memmem from glibc.
14807
14808 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
14809
14810         * modules/xalloc (Files, Makefile.am): Remove xstrdup.c.
14811
14812         * modules/argmatch, modules/argp, modules/closeout, modules/error,
14813         modules/exclude, modules/getdate, modules/getline,
14814         modules/getndelim2, modules/getpass, modules/getpass-gnu,
14815         modules/getusershell, modules/linebuffer, modules/md5,
14816         modules/mountlist, modules/posixtm, modules/readtokens,
14817         modules/readutmp, modules/regex, modules/sha1,
14818         modules/version-etc, modules/yesno:
14819         Remove dependency on unlocked-io.
14820
14821 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
14822
14823         * m4/xalloc.m4 (gl_PREREQ_XSTRDUP): Remove.  All uses removed.
14824
14825         * m4/unlocked-io.m4: Add copyright notice.
14826         (gl_FUNC_GLIBC_UNLOCKED_IO): Define USE_UNLOCKED_IO.
14827
14828 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
14829
14830         * lib/xalloc.h (xmemdup): Renamed from xclone.  All uses changed.
14831         * lib/xmalloc.c (xmemdup): Likewise.
14832         * lib/xalloc.h (CCLONE, CLONE, NEW, XCALLOC, XMALLOC, XREALLOC,
14833         XFREE): Remove these long-obsolescent macros.
14834         * lib/xmalloc.c (xstrdup): Implementation moved here from xstrdup.c
14835         * lib/xstrdup.c: Remove.
14836
14837         * lib/regex.c (re_comp): Cast gettext return value to char *,
14838         Problem reported by Martin Neitzel via Mark D. Baushke.
14839
14840 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
14841
14842         * lib/argmatch.c, closeout.c, error.c, exclude.c, getdate.y,
14843         getndelim2.c, getpass.c, getusershell.c, linebuffer.c,
14844         md5.c, mountlist.c, posixtm.c, readtokens.c, readutmp.c,
14845         regex.c, sha1.c, version-etc.c, yesno.c:
14846         Include "unlocked-io.h" only if USE_UNLOCKED_IO.
14847         * lib/unlocked-io.h: Don't worry about USE_UNLOCKED_IO; that's now
14848         the includer's responsibility.
14849
14850         Sync from coreutils.
14851
14852         * lib/modechange.c (mode_compile): Don't decrement a pointer that
14853         points to the start of a string, as the C Standard says the
14854         resulting behavior is undefined.
14855
14856         * lib/backupfile.h (enum backuptype): Rename none -> no_backups,
14857         simple -> simple_backups, numbered_existing ->
14858         numbered_existing_backups, numbered -> numbered_backups
14859         to avoid shadowing problems.  All uses changed.
14860         * lib/argmatch.c (enum backuptype) [defined TEST]: Likewise.
14861         * lib/backupfile.c (check_extension, numbered_backup):
14862         Rename locals to avoid shadowing 'basename'.
14863         * lib/backupfile.h (VALID_BACKUP_TYPE): Don't evaluate arg more than
14864         once.
14865
14866         * lib/.cppi-disable: Add getopt_.h, getopt_int.h.
14867         * lib/.cvsignore: Add getopt.h.
14868
14869 2004-10-04  Bruno Haible  <bruno@clisp.org>
14870
14871         * modules/README: New file.
14872         * gnulib-tool (func_all_modules, func_verify_module): modules/README is
14873         not a module.
14874
14875 2004-10-02  Jim Meyering  <jim@meyering.net>
14876
14877         * lib/dirfd.h, getpagesize.h: Add copyright notice.
14878
14879 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
14880
14881         * modules/strsep: New file.
14882
14883 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
14884
14885         * m4/strsep.m4: New file.
14886
14887 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
14888
14889         * lib/strsep.h: New file.
14890         * lib/strsep.c: New file.
14891
14892 2004-10-01  Simon Josefsson  <jas@extundo.com>
14893
14894         * lib/snprintf.c (snprintf): Handle size==0.
14895
14896 2004-10-01  Simon Josefsson  <jas@extundo.com>
14897             Bruno Haible  <bruno@clisp.org>
14898
14899         * lib/snprintf.c: Include <stdarg.h>, <stdlib.h>, <string.h>.
14900         (snprintf): Declare 'args'.
14901
14902 2004-10-01  Paul Eggert  <eggert@cs.ucla.edu>
14903
14904         * lib/snprintf.c: Remove comments as to why each header is needed.
14905
14906 2004-10-01  Bruno Haible  <bruno@clisp.org>
14907
14908         * MODULES.html.sh: Add strsep.
14909
14910 2004-09-30  Simon Josefsson  <jas@extundo.com>
14911
14912         * modules/snprintf: New file.
14913
14914 2004-09-30  Simon Josefsson  <jas@extundo.com>
14915
14916         * m4/snprintf.m4: New file.
14917
14918 2004-09-30  Simon Josefsson  <jas@extundo.com>
14919
14920         * lib/snprintf.h, lib/snprintf.c: New files.
14921
14922 2004-09-30  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
14923
14924         * lib/argp-help.c (canon_doc_option): Fixed coredump if *name==NULL
14925         (hol_entry_help): Never translate an empty string.
14926         Do not translate option tag (opt->name) if OPTION_NO_TRANS is set
14927         * lib/argp.h (OPTION_NO_TRANS): New option.
14928
14929 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
14930
14931         * modules/argp (Maintainer): Replace Simon Josefsson
14932         by Sergey Poznyakoff.
14933
14934 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
14935
14936         * config/srclist.txt: Comment-out argp/argp.h, until we get the argp
14937         changes merged back into glibc.
14938
14939 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
14940
14941         * MODULES.html.sh (Support for systems lacking ISO C 99): Add snprintf.
14942
14943 2004-09-29  Oskar Liljeblad  <oskar@osk.mine.nu>
14944
14945         * lib/xvasprintf.c: Include xalloc.h.
14946         (xvasprintf): Use xalloc_die, not xmalloc_die.
14947
14948 2004-09-29  Bruno Haible  <bruno@clisp.org>
14949
14950         * modules/alloca-opt: New file, derived from modules/alloca.
14951         * modules/allocsa: Depend on alloca-opt instead of alloca.
14952         * modules/setenv: Likewise.
14953         * modules/vasnprintf: Likewise.
14954         * MODULES.html.sh: Add alloca-opt.
14955
14956 2004-09-28  Simon Josefsson  <jas@extundo.com>
14957
14958         * gnulib-tool: New parameter --lgpl, to asseert that modules are
14959         LGPL, and to replace license template from GPL to LGPL.
14960
14961 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
14962
14963         * modules/dummy: Change license to LGPL.
14964
14965 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
14966
14967         * lib/dummy.c: Change copyright notice to FSF, and license to GPL.
14968
14969 2004-09-24  Simon Josefsson  <jas@extundo.com>
14970
14971         * modules/minmax (License): Change from GPL to LGPL.
14972
14973 2004-09-23  Simon Josefsson  <jas@extundo.com>
14974
14975         * gnulib-tool (--import): Typo.
14976
14977 2004-09-23  Simon Josefsson  <jas@extundo.com>
14978
14979         * gnulib-tool (--import): Make sure *.m4 end up in m4/ by default.
14980
14981 2004-09-22  Bruno Haible  <bruno@clisp.org>
14982
14983         * modules/*: Add 'License' field.
14984         * gnulib-tool: Accept --extract-license option.
14985         (func_get_license): New function.
14986
14987 2004-09-21  Bruno Haible  <bruno@clisp.org>
14988
14989         * modules/vasnprintf (Files): Add m4/stdint_h.m4, m4/inttypes_h.m4.
14990         Reported by Simon Josefsson.
14991
14992 2004-09-20  Paul Eggert  <eggert@cs.ucla.edu>
14993
14994         * modules/inttostr (Files): Add m4/longlong.m4, since it uses
14995         gl_AC_TYPE_LONG_LONG.
14996
14997 2004-09-20  Paul Eggert  <eggert@cs.ucla.edu>
14998
14999         * config/srclist.txt: Add getsubopt.c, since libc bought our changes.
15000
15001 2004-09-18  Simon Josefsson  <jas@extundo.com>
15002         and  Paul Eggert  <eggert@cs.ucla.edu>
15003
15004         * gnulib-tool: Replace various ad-hoc automake/autoconf/aclocal
15005         calls with autoreconf.  Define GL_LIB.
15006
15007 2004-09-14  Karl Berry  <karl@gnu.org>
15008
15009         * config/srclist.txt: unsync setenv.c, sigh.
15010
15011 2004-09-13  Paul Eggert  <eggert@cs.ucla.edu>
15012
15013         * lib/argp-pvh.c (argp_program_version_hook): Provide initial value.
15014         Problem reported by Bruno Haible in:
15015         http://lists.gnu.org/archive/html/bug-tar/2004-09/msg00023.html
15016
15017 2004-09-13  Paul Eggert  <eggert@cs.ucla.edu>
15018
15019         * config/srclist.txt: Comment out argp-pvh.c.
15020
15021 2004-09-11  Paul Eggert  <eggert@cs.ucla.edu>
15022
15023         * lib/mempcpy.h: Wrap the entire include file inside #ifndef mempcpy,
15024         in case some system header has #define'd it.  Problem reported by
15025         Soeren D. Schulze in
15026         <http://lists.gnu.org/archive/html/bug-gnulib/2004-09/msg00017.html>.
15027
15028 2004-09-09  Karl Berry  <karl@gnu.org>
15029
15030         * regex.[ch]: delete from the root.  These were supposed to be
15031                 synced with emacs cvs, but this has not happened for about
15032                 a year, and anyway nothing else uses emacs regex.[ch].
15033                 bug-gnulib mail from Jeff Bailey, 9 Sep 2004 15:49:24 -0700.
15034                 lib/regex[.ch] is untouched.
15035
15036 2004-09-09  Bruno Haible  <bruno@clisp.org>
15037
15038         * modules/vasnprintf (Files): Add m4/eoverflow.m4.
15039
15040 2004-09-09  Bruno Haible  <bruno@clisp.org>
15041
15042         * m4/eoverflow.m4: New file, taken from GNU libiconv eilseq.m4 with
15043         modifications.
15044         * m4/vasnprintf.m4 (gl_FUNC_VASNPRINTF): Require gl_EOVERFLOW.
15045
15046 2004-09-08  Oskar Liljeblad  <oskar@osk.mine.nu>
15047
15048         * modules/xvasprintf: New file.
15049         * MODULES.html.sh (Extra functions based on ANSI C 89): Add vasprintf.
15050
15051 2004-09-08  Oskar Liljeblad  <oskar@osk.mine.nu>
15052
15053         * lib/xvasprintf.h: New file.
15054         * lib/xvasprintf.c: New file.
15055         * lib/xasprintf.c: New file.
15056
15057 2004-09-08  Bruno Haible  <bruno@clisp.org>
15058
15059         * m4/stdint.m4: New file, taken from GNU clisp with modifications.
15060
15061 2004-09-08  Bruno Haible  <bruno@clisp.org>
15062
15063         * lib/vasnprintf.c (VASNPRINTF): Signal EOVERFLOW if the resulting
15064         length is > INT_MAX.
15065         * lib/vasprintf.c (vasprintf): Don't test for length > INT_MAX any
15066         more.
15067
15068 2004-09-08  Bruno Haible  <bruno@clisp.org>
15069
15070         * lib/stdint_.h: New file, taken from GNU clisp.
15071
15072 2004-09-08  Bruno Haible  <bruno@clisp.org>
15073             Oskar Liljeblad  <oskar@osk.mine.nu>
15074
15075         * modules/stdint: New file.
15076         * MODULES.html.sh (Support for systems lacking ISO C 99): Add stdint.
15077
15078 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
15079
15080         Import from coreutils.
15081         * lib/userspec.c: Don't use <alloca.h>, so that we don't use alloca on
15082         strings on unbounded length.  alloca's performance benefits aren't
15083         that important here.
15084         (V_STRDUP): Remove.
15085         (parse_with_separator): New function, with most of the internals
15086         of the old parse_user_spec.  Allow user to omit both user and group,
15087         for compatibility with FreeBSD.
15088         Clone only the user name, not the entire spec.
15089         Do not set *uid, *gid unless entirely successful.
15090         Avoid memory leak in some failing cases.
15091         Fix regression for USER.GROUP reported by Dmitry V. Levin in
15092         <http://lists.gnu.org/archive/html/bug-coreutils/2004-08/msg00102.html>
15093         (parse_user_spec): Rewrite to use parse_with_separator.
15094
15095 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
15096
15097         * modules/userspec: Don't depend on alloca.
15098
15099 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
15100
15101         * m4/userspec.m4 (gl_USERSPEC): Don't require AC_FUNC_ALLOCA.
15102
15103 2004-08-17  Paul Eggert  <eggert@cs.ucla.edu>
15104
15105         * MODULES.html.sh: Add xalloc-die, c-strtod, c-strtold, raise,
15106         readtokens0, getcwd, fcntl-safer, canonicalize, cycle-check,
15107         utimecmp, utimens, xnanosleep.  Rename sha to sha1.
15108
15109 2004-08-16  Simon Josefsson  <jas@extundo.com>
15110
15111         * gnulib-tool: Use sed instead of autoconf --trace, inspired by
15112         libtoolize behaviour by "Gary V. Vaughan" <gary@gnu.org>.
15113         Add --dry-run for --import.
15114         Let user provided command line parameters override configure.ac
15115         settings.
15116
15117 2004-08-12  Simon Josefsson  <jas@extundo.com>
15118
15119         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): New macro,
15120         as discussed with Paul Eggert in threads rooted at
15121         <http://lists.gnu.org/archive/html/bug-gnulib/2004-06/msg00039.html>
15122         and
15123         <http://lists.gnu.org/archive/html/bug-gnulib/2004-07/msg00001.html>.
15124         Before, the test was empty, and relied on ELIDE_CODE in source
15125         code.)
15126         (gl_PREREQ_GETOPT): New macro.
15127         (gl_GETOPT): Use them.
15128
15129 2004-08-12  Simon Josefsson  <jas@extundo.com>
15130
15131         * lib/getopt.c, getopt1.c: Remove ELIDE_CODE hack.
15132         * lib/getopt_.h: Renamed from getopt.h.
15133
15134 2004-08-12  Simon Josefsson  <jas@extundo.com>
15135
15136         * gnulib-tool: Add --source-base, --m4-base, --libtool options.
15137         Change default library name from libfoo to libgnu.
15138         Now, if you have a configure.ac that says:
15139                 gl_SOURCE_BASE(gl)
15140                 gl_M4_BASE(gl/m4)
15141                 gl_MODULES(error getopt etcetera)
15142                 gl_INIT
15143         you can import all you need by running:
15144                 ../gnulib/gnulib-tool --import
15145
15146         * modules/getopt (Files): Rename getopt.h to getopt_.h.
15147         (Makefile.am): Rewrite, use logic from argz.
15148         (Include): Use <getopt.h> instead of "getopt.h".
15149
15150 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
15151
15152         * modules/argp (Files): Add m4/unlocked-io.m4.
15153         (Depends-on): Add extensions.
15154
15155 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
15156
15157         * m4/argp.m4 (gl_ARGP): Do not check for argp.h or argp_parse; nobody
15158         uses HAVE_ARGP_H or HAVE_ARGP_PARSE.
15159         Require gl_FUNC_GLIBC_UNLOCKED_IO, gl_USE_SYSTEM_EXTENSIONS.
15160         Check for program_invocation_name, program_invocation_short_name,
15161         flockfile, funlockfile, features.h, _getopt_long_only_r.
15162
15163 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
15164
15165         * lib/argp-help.c, argp-parse.c: Use "gettext.h" instead of
15166         its complicated substitute.
15167         * lib/argp-help.c: Include <errno.h>, for program_invocation_short_name
15168         and program_invocation_name.
15169         (__argp_basename) [!_LIBC]: Remove; the only use was
15170         replaced by its body.
15171         (__argp_short_program_name): Change condition from
15172         !defined __argp_short_program_name to
15173         ! (defined _LIBC || HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME),
15174         to match argp-namefrob.h.
15175         (__argp_failure): Don't assume strerror_r returns char *.
15176         * lib/argp-parse.c (N_): Define unconditionally.
15177         (argp_default_options): Fill out initializers with 0 to avoid
15178         gcc warnings.
15179
15180 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
15181
15182         * config/srclist.txt: Remove getopt.c, getopt.h (renamed to getopt_.h),
15183         getopt1.c.
15184
15185 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
15186
15187         Merge from coreutils.
15188
15189         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for wmemchr and wmemcpy.
15190
15191         * m4/obstack.m4 (gl_PREREQ_OBSTACK): Require
15192         gl_AC_HEADER_INTTYPES_H, gl_AC_HEADER_STDINT_H, gl_AC_TYPE_UINTMAX_T.
15193
15194 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
15195
15196         Merge from coreutils.
15197
15198         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Don't set to 1 if missing
15199         wmemchr or wmemcpy.  Problem reported by Robert Dahlem
15200         for Reliant Unix 5.43.
15201
15202         * lib/obstack.c: Include <inttypes.h> and <stdint.h> if available.
15203         (union fooround): Use uintmax_t, not long int.
15204         The rest is a merge from libc:
15205         [defined _LIBC]: Include <shlib-compat.h>.
15206         (_obstack) [defined _LIBC]: Remove after 2.3.4.
15207
15208         * lib/settime.c (settime): Recode to avoid warning with
15209         Sun Forte C 6U2.
15210
15211         * lib/strverscmp.c: Convert to UTF-8.
15212
15213 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
15214
15215         * modules/obstack (Files): Add m4/inttypes_h.m4, m4/stdint_h.m4,
15216         m4/uintmax_t.m4.
15217
15218 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
15219
15220         * modules/xalloc-die: New file.
15221         * modules/xalloc: Remove dependencies on error, gettext, exitfail.
15222
15223         * modules/md5 (Files): Add m4/uint32_t.m4.
15224         * modules/sha1: Renamed from modules/sha.
15225         (Files):
15226         Rename lib/sha.h to lib/sha1.h.
15227         Rename lib/sha.c to lib/sha1.c.
15228         Rename m4/sha.m4 to m4/sha1.m4.
15229         (lib_SOURCES): Likewise.
15230         (configure.ac): Rename gl_SHA to gl_SHA1.
15231         (Include): sha.h -> sha1.h.
15232
15233 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
15234
15235         * m4/uint32_t.m4, m4/uintptr_t.m4: New files.
15236         * m4/sha1.m4: Renamed from sha.m4.
15237         (gl_SHA1): Renamed from gl_SHA.  All uses changed.
15238
15239 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
15240
15241         * lib/obstack.h (obstack_empty_p):
15242         Don't assume that chunk->contents is suitably aligned.
15243         * lib/obstack.c (_obstack_begin, _obstack_begin_1, _obstack_newchunk):
15244         Likewise. Problem reported by Benno in
15245         <http://sources.redhat.com/ml/libc-alpha/2004-08/msg00055.html>.
15246
15247         * lib/chown.c (rpl_chown): Work even if the file is writeable but not
15248         readable.  This could be improved further but it'd take some work.
15249
15250 2004-08-08  Simon Josefsson  <jas@extundo.com>
15251
15252         * modules/xgethostname (Depends-on): Remove exit and error (not
15253         used).
15254
15255         * modules/getpass-gnu: Add getpass.h.
15256         (Depends-on): Add stdbool.
15257         * modules/getpass: Add getpass.h.
15258
15259 2004-08-08  Simon Josefsson  <jas@extundo.com>
15260
15261         * m4/getpass.m4 (gl_FUNC_GETPASS, gl_FUNC_GETPASS_GNU):
15262         Check getpass declaration.
15263
15264 2004-08-08  Simon Josefsson  <jas@extundo.com>
15265
15266         * lib/xgethostname.c: Don't include error.h (not used).
15267
15268         * lib/getpass.h: Add.
15269         * lib/getpass.c: Include getpass.h first.
15270
15271 2004-08-08  Paul Eggert  <eggert@cs.ucla.edu>
15272
15273         * lib/xalloc-die.c: New file.
15274         * lib/xalloc.h (xalloc_fail_func, xalloc_msg_memory_exhausted): Remove.
15275         All uses removed.
15276         * lib/xmalloc.c (xalloc_fail_func, xalloc_msg_memory_exhausted):
15277         Likewise. Move inclusions of gettext.h, error.h, exitfail.h to
15278         xalloc-die.c.
15279         (_, N_, xalloc_die): Move to xalloc-die.c.
15280         * lib/userspec.c (parse_user_spaec): Use xstrdup rather than strdup,
15281         so that we needn't mess with xalloc_msg_memory_exhausted.
15282
15283         * lib/sha1.h: Renamed from sha.h.
15284         (SHA1_H): Renamed from _SHA_H.
15285         (sha1_ctx): Renamed from sha_ctx.
15286         (sha1_init_ctx): Renamed from sha_init_ctx.
15287         (sha1_process_block): Renamed from sha_process_block.
15288         (sha1_process_bytes): Renamed from sha_process_bytes.
15289         (sha1_finish_ctx): Renamed from sha_finish_ctx.
15290         (sha1_read_ctx): Renamed from sha_read_ctx.
15291         (sha1_stream): Renamed from sha_stream.
15292         (sha1_buffer): Renamed from sha_buffer.
15293         * lib/sha1.c: Likewise; renamed from sha.c.
15294         Do not include <sys/types.h>.
15295         Include <stddef.h> rather than <stdlib.h>.
15296
15297 2004-08-08  Bruno Haible  <bruno@clisp.org>
15298
15299         * lib/pathname.h (FILE_SYSTEM_PREFIX_LEN): Renamed from
15300         FILESYSTEM_PREFIX_LEN.
15301         * lib/progreloc.c: Likewise.
15302         * lib/concatpath.c (concatenated_pathname): Use FILE_SYSTEM_PREFIX_LEN.
15303
15304 2004-08-06  Simon Josefsson  <jas@extundo.com>
15305
15306         * modules/progname (Depends-on): Don't depend on stdbool.
15307
15308 2004-08-06  Simon Josefsson  <jas@extundo.com>
15309
15310         * modules/getsubopt: New file.
15311         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
15312         getsubopt.
15313
15314 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
15315
15316         More merge from coreutils.
15317
15318         * m4/utimens.m4, m4/utimecmp.m4: New files.
15319         * m4/backupfile.m4, euidacces.m4, acl.m4, afs.m4, calloc.m4, dirfd.m4,
15320         fsusage.m4, jm-macros.m4, ls-mntd-fs.m4, md5.m4, mountlist.m4,
15321         prereq.m4, sha.m4: Import changes from coreutils.
15322
15323 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
15324
15325         More merge from coreutils.
15326         * modules/raise, modules/readtokens0, modules/utimens:
15327         * modules/utimecmp, module/xnanosleep: New files.
15328         * modules/strftime: Add lib/strftime.h.
15329         Change include from <time.h> to "strftime.h".
15330         * modules/yesno: Add lib/yesno.h.
15331         * modules/backupfile: Remove lib/addext.c.
15332         * modules/euidaccess: Add stat-macros.h.
15333         * modules/canonicalize, modules/euidaccess,
15334         modules/filemode, modules/lchown, modules/makepath,
15335         modules/rmdir, modules/stat: Likewise.
15336
15337 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
15338
15339         Merge from tar.
15340         * lib/argp-help.c (make_hol, hol_append): Don't assume that
15341         SIZE_MAX is a valid preprocessor constant.
15342         (__argp_basename): Change from "#ifndef _LIBC"
15343         to "#ifndef __argp_short_program_name", so that
15344         we don't compile these functions for tar.
15345
15346         More merges from coreutils.
15347         * lib/raise.c, lib/readtokens0.h, lib/readtokens0.c, lib/strftime.h:
15348         * lib/utimens.h, lib/utimens.c, lib/utimecmp.h, lib/utimecmp.c:
15349         * lib/xnanosleep.h, lib/xnanosleep.c, lib/yesno.h: New files.
15350         * lib/addext.c: Remove; no longer needed.
15351         * lib/yesno.c, lib/argmatch.h, lib/argmatch.c, lib/backupfile.h,
15352         lib/backupfile.c, lib/euidaccess.c, lib/filemode.c, lib/closeout.c,
15353         lib/dup2.c, lib/exclude.c, lib/fileblocks.c, lib/filemode.c,
15354         lib/fnmatch.c, lib/fnmtahc_loop.c, lib/fopen-safer.c, lib/fsusage.c,
15355         lib/fsusage.h, lib/ftruncate.c, lib/full-write.c, lib/getdate.y,
15356         lib/getloadavg.c, lib/getugroups.c, lib/hard-locale.c,
15357         lib/hard-locale.h, lib/hash.c, lib/human.c, lib/human.h, lib/lchown.c,
15358         lib/lchown.h, lib/makepath.c, lib/makepath.h, lib/md5.c, lib/md5.h,
15359         lib/memchr.c, lib/memcoll.c, lib/memrchr.c, lib/modechange.c,
15360         lib/modechange.h, lib/mountlist.c, lib/mountlist.h, lib/nanosleep.c,
15361         lib/posixtm.c, lib/putenv.c, quotearg.c, lib/quotearg.h,
15362         lib/readtokens.c, lib/readutmp.c, lib/readutmp.h, lib/rmdir.c,
15363         lib/safe-read.c, lib/save-cwd.c, lib/savedir.c, lib/setenv.c,
15364         lib/sig2str.c, lib/stat.c, lib/strtoimax.c, lib/strverscmp.c,
15365         lib/userspec.c, lib/utime.c, lib/version-etc.c., lib/xgethostname.c,
15366         lib/xmemcoll.c, lib/xreadlink.c, lib/xstrtod.c, lib/xstrtod.h,
15367         lib/xstrtoimax.c, lib/xstrtol.c, lib/xstrtol.h, lib/xstrtoumax.c:
15368         Import changes from coreutils.
15369
15370 2004-08-05  Simon Josefsson  <jas@extundo.com>
15371
15372         * m4/strdup.m4: Always run gl_PREREQ_STRDUP, since strdup.h need it.
15373
15374 2004-08-05  Simon Josefsson  <jas@extundo.com>
15375
15376         * m4/getsubopt.m4: New file.
15377
15378 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
15379
15380         Merge from coreutils.
15381
15382         * m4/c-strtod.m4, m4/canonicalize.m4, m4/fcntl-safer.m4:
15383         * m4/getcwd-path-max.m4: New files.
15384
15385         * m4/dos.m4 (gl_AC_DOS): filesystem -> file system renaming.
15386         FILESYSTEM_PREFIX_LEN ->
15387         FILE_SYSTEM_PREFIX_LEN.
15388         FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX ->
15389         FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX.
15390         FILESYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR ->
15391         FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR.
15392
15393         * m4/path-concat.m4 (gl_PATH_CONCAT): Don't require gl_AC_DOS, the
15394         prerequisite modules now handle the DOS stuff.
15395         Don't check for unistd.h.
15396
15397 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
15398
15399         Merge from coreutils.
15400
15401         * lib/.gdb-history: Remove; this doesn't belong here.
15402
15403         * lib/c-strtod.c, lib/c-strtod.h, lib/c-strtold.c, lib/cycle-check.c:
15404         * lib/cycle-check.h, lib/dev-ino.h, lib/canonicalize.h:
15405         * lib/canonicalize.c, lib/fcntl-safer.h, lib/fcntl-safer.c:
15406         * lib/getcwd.c: New files.
15407
15408         * lib/dirname.h: Include <stdbool.h>.
15409         (FILE_SYSTEM_PREFIX_LEN): Renamed from FILESYSTEM_PREFIX_LEN,
15410         for consistency with POSIX terminology.  All uses changed.
15411         (IS_ABSOLUTE_FILE_NAME, IS_RELATIVE_FILE_NAME): New macros.
15412         (strip_trailing_slashes): Use bool for booleans.
15413         * lib/stripslash.c (strip_trailing_slashes): Likewise.
15414
15415         * lib/error.c: Work around bug in OpenBSD 3.4 sterror_r: it
15416         sometimes returns a positive errno value even when it succeeds.
15417         (print_errno_message) [!LIBC]: Fall back on strerror if
15418         __strerror_r fails.
15419
15420         * lib/path-concat.c (mempcpy): Don't define if a system header defines
15421         it. Don't include stdio.h, stdlib.h, unistd.h, strdup.h.
15422         (longest_relative_suffix): New function.
15423         (path_concat): Use it.  Assume first argument is not NULL.
15424         Port to DOS.  Omit redundant separators.
15425         Report an error instead of returning NULL.
15426         Use mempcpy instead of memcpy.
15427         (xpath_concat): Remove: not declared or used.
15428
15429         * lib/same.h: Include <stdbool.h>
15430         (same_name): Return bool, not int.
15431         * lib/same.c (same_name): Likewise.
15432         (errno): Don't declare; we assume C89 or better now.
15433
15434         * lib/stat-macros (S_ISCTG, S_ISOFD, S_ISOFL): New macros,
15435         if not already defined.
15436
15437         * lib/xgetcwd.c (errno): Don't declare; we assume C89 or better now.
15438         * lib/dup-safer.c (errno): Likewise.
15439
15440 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
15441
15442         Merge from coreutils.
15443         * modules/c-strtod, modules/c-strtold, modules/canonicalize:
15444         * modules/cycle-check, modules/fcntl-safer, modules/getcwd: New files.
15445         * modules/path-concat: Don't depend on strdup.
15446
15447 2004-08-03  Simon Josefsson  <jas@extundo.com>
15448
15449         * lib/strdup.h: Only use HAVE_DECL_STRDUP if defined.
15450         * lib/progname.h: Don't include stdbool.h.
15451
15452 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
15453
15454         * modules/fatal: Remove, as the "fatal" module wasn't used or working.
15455         * MODULES.html.sh (func_all_modules): Remove fatal.
15456
15457 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
15458
15459         * m4/fatal.m4: Remove, as the "fatal" module wasn't used or working.
15460
15461 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
15462
15463         * lib/fatal.c, fatal.h: Remove as the "fatal" module wasn't used or
15464         working.
15465
15466 2004-08-02  Simon Josefsson  <jas@extundo.com>
15467
15468         * lib/getsubopt.h: New file, with comments from Bruno Haible.
15469         * lib/getsubopt.c: New file, from glibc, but slightly modified based on
15470         suggestions from Paul Eggert <eggert@cs.ucla.edu>.
15471
15472 2004-08-01  Simon Josefsson  <jas@extundo.com>
15473
15474         * lib/xgetdomainname.c: Include stdlib.h, for free().
15475
15476 2004-07-19  Bruno Haible  <bruno@clisp.org>
15477
15478         * MODULES.html.sh (func_all_modules): Add dummy.
15479
15480 2004-07-16  Simon Josefsson  <jas@extundo.com>
15481
15482         * modules/dummy: New file.
15483
15484 2004-07-16  Simon Josefsson  <jas@extundo.com>
15485
15486         * lib/dummy.c: New file.
15487
15488 2004-07-16  Bruno Haible  <bruno@clisp.org>
15489
15490         * lib/backupfile.h: Add extern "C" for C++.
15491         * lib/closeout.h: Likewise.
15492         * lib/copy-file.h: Likewise.
15493         * lib/findprog.h: Likewise.
15494         * lib/full-write.h: Likewise.
15495         * lib/pathname.h: Likewise.
15496         * lib/progname.h: Likewise.
15497         * lib/stpcpy.h: Likewise.
15498         * lib/stpncpy.h: Likewise.
15499         * lib/strcase.h: Likewise.
15500         * lib/strstr.h: Likewise.
15501         * lib/xalloc.h: Likewise.
15502
15503         * lib/mbswidth.h: Add extern "C" for C++.
15504         Reported by Albert Chin-A-Young <china@thewrittenword.com>.
15505
15506 2004-07-13  Robert Millan  <robertmh@gnu.org>
15507
15508         * m4/host-os.m4: s/KNetBSD/kNetBSD/g and s/KFreeBSD/kFreeBSD/g.
15509
15510 2004-07-09  Simon Josefsson  <jas@extundo.com>
15511
15512         * lib/getndelim2.c: Include stddef.h, for ptrdiff_t.  (FreeBSD 4.9
15513         failed without this.)
15514
15515 2004-07-09  Paul Eggert  <eggert@cs.ucla.edu>
15516
15517         * modules/chown (Files): Add lib/fchown-stub.c, since
15518         gl_PREREQ_CHOWN invokes AC_LIBOBJ(fchown-stub).
15519
15520 2004-07-09  Paul Eggert  <eggert@cs.ucla.edu>
15521
15522         * lib/fchown-stub.c: New file.
15523
15524 2004-06-24  Jim Meyering  <jim@meyering.net>
15525
15526         * lib/obstack.h (obstack_base): Cast to (void *), per documentation.
15527
15528 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
15529
15530         * modules/argz: Omit "#include".
15531
15532         * MODULES.html.sh (func_all_modules): Add calloc, to match
15533         2004-06-01 addition of calloc module.
15534
15535 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
15536
15537         * m4/argz.m4: New file, which is autoupdated from libtool.
15538
15539 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
15540
15541         * lib/argz.c, lib/argz_.h: New files, which are autoupdated from
15542         libtool.
15543
15544 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
15545
15546         * config/srclist-update: Don't insist on "USA." before the
15547         close-comment, as libtool omits the period and puts the */ on a
15548         separate line.
15549         * config/srclist.txt: Add argz.c, argz_.h, argz.m4.
15550         * config/srclistvars.sh: Add LIBTOOL (for eggert only).
15551
15552 2004-06-22  Gary V. Vaughan  <gary@gnu.org>
15553
15554         * modules/argz: New file.
15555         * MODULES.html.sh (func_all_modules): Add argz.
15556
15557 2004-06-12  Jim Meyering  <jim@meyering.net>
15558         and  Paul Eggert  <eggert@cs.ucla.edu>
15559
15560         * modules/hash (Files): Add lib/xalloc.h.
15561         * modules/pipe (Depends-on): Add wait-process.
15562         * modules/stat (Depends-on): Add xalloc.
15563         * modules/userspec (Files): Add lib/userspec.h.
15564         * modules/xstrto
15565
15566         Upgrade from gettext-0.13.
15567         * modules/gettext (Files): Add m4/intmax.m4, m4/longdouble.m4,
15568         m4/longlong.m4, m4/printf-posix.m4, m4/signed.m4, m4/size_max.m4,
15569         m4/wchar_t.m4, m4/wint_t.m4, m4/xsize.m4.
15570
15571 2004-06-10  Jim Meyering  <jim@meyering.net>
15572
15573         * lib/calloc.c: New file.
15574
15575 2004-06-06  Paul Eggert  <eggert@cs.ucla.edu>
15576
15577         * lib/getdate.y (yylex): Allow space between sign and number.
15578         Problem reported by Dan Jacobson.
15579
15580 2004-06-01  Paul Eggert  <eggert@cs.ucla.edu>
15581
15582         Merge from coreutils CVS.
15583
15584         * m4/backupfile.m4, dirname.m4, human.m4, inttypes.m4, longlong.m4,
15585         makepath.m4, memchr.m4, memcmp.m4, mountlist.m4, path-concat.m4,
15586         putenv.m4, quotearg.m4, readutmp.m4, strtoimax.m4, strtoll.m4,
15587         strtoull.m4, strtoumax.m4, ulonglong.m4, vasnprintf.m4,
15588         xstrtol.m4: Fix copyright date and/or serial number.
15589
15590         * m4/chown.m4 (gl_PREREQ_CHOWN): Check for fcntl.h.
15591         See if we need an fchown replacement.
15592         (gl_FUNC_CHOWN_FOLLOWS_SYMLINK): New macro.
15593         (gl_FUNC_CHOWN): Require gl_FUNC_CHOWN_FOLLOWS_SYMLINK,
15594         and use the replacement function if we detect either defect.
15595
15596         * m4/prereq.m4 (gl_PREREQ): Add gl_ALLOCSA, gl_CLOEXEC, gl_INTTOSTR,
15597         gl_UTIMECMP.
15598
15599 2004-06-01  Paul Eggert  <eggert@cs.ucla.edu>
15600         and  Jim Meyering  <jim@meyering.net>
15601
15602         Merge from coreutils CVS.
15603
15604         * lib/stat-macros.h: New file, with contents from file-type.h
15605         and coreutils' system.h.
15606         * lib/file-type.c: Include "stat-macros.h".
15607         * lib/file-type.h (file_type): Move all macro definitions to new file,
15608         stat-macros.h.
15609
15610         * lib/chown.c (rpl_chown) [CHOWN_FAILS_TO_HONOR_ID_OF_NEGATIVE_ONE]:
15611         Wrap old code with this conditional.
15612         [CHOWN_MODIFIES_SYMLINK]: Try to work around a chown
15613         function that does not dereference symlinks.
15614         * lib/lchown.c (lchown) [CHOWN_MODIFIES_SYMLINK]: Just call chown.
15615
15616         * lib/xreadlink.c: Include xreadlink.h first, to catch .h file
15617         dependency problems.
15618         (xreadlink): Accept new arg SIZE, for efficiency.
15619         All decls and uses changed.
15620         * lib/xreadlink.h: Include <stddef.h>, for size_t.
15621
15622         * lib/.cppi-disable: Add alloca_.h, allocsa.h, exit.h, getndelim2.h,
15623         gettext.h, localcharset.h, strdup.h, strndup.h, strtoul.c, time_r.h.
15624
15625         * lib/.cvsignore: Add alloca.h, fnmatch.h, poll.h, stdbool.h,
15626         sysexits.h.
15627
15628 2004-06-01  Jim Meyering  <jim@meyering.net>
15629
15630         * m4/calloc.m4: New file.
15631
15632 2004-05-31  Paul Eggert  <eggert@cs.ucla.edu>
15633
15634         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Detect _Bool bug in HP aC++/ANSI
15635         C B3910B A.05.55 [Dec 04 2003].  Problem reported by Jim Meyering.
15636         Also, fix a typo in a diagnostic.
15637
15638 2004-05-30  Paul Eggert  <eggert@cs.ucla.edu>
15639
15640         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Do not require AC_FUNC_MALLOC
15641         or AC_FUNC_REALLOC.
15642
15643 2004-05-30  Paul Eggert  <eggert@cs.ucla.edu>
15644
15645         * lib/xmalloc.c (HAVE_MALLOC, HAVE_REALLOC): Do not require these
15646         macros to be defined.
15647         (xnmalloc_inline, xnrealloc_inline, xcalloc): Do not die if
15648         the allocator returns NULL because the requested size is zero.
15649
15650 2004-05-20  Paul Eggert  <eggert@cs.ucla.edu>
15651
15652         * lib/malloc/obstack.c (_obstack) [defined _LIBC]: Bring back this
15653         var.  Add comment explaining why libc still defines it.  This
15654         merges the following patch from glibc:
15655         http://sources.redhat.com/ml/libc-alpha/2004-05/msg00157.html
15656
15657 2004-05-20  Andreas Schwab  <schwab@suse.de>
15658
15659         * m4/free.m4: Replace free if it not known to work, not the other
15660         way round.
15661
15662 2004-05-19  Paul Eggert  <eggert@cs.ucla.edu>
15663
15664         * lib/obstack.c (_obstack): Remove unused variable.  It hasn't been
15665         present in glibc since revision 1.1 of this file.
15666         * lib/obstack.h (_obstack_free, obstack_1grow, obstack_1grow_fast,
15667         obstack_alignment_mask, obstack_alloc, obstack_base,
15668         obstack_blank, obstack_blank_fast, obstack_chunk_size,
15669         obstack_copy, obstack_copy0, obstack_finish, obstack_grow,
15670         obstack_grow0, obstack_init, obstack_int_grow,
15671         obstack_int_grow_fast, obstack_make_room, obstack_memory_used,
15672         obstack_next_free, obstack_object_size, obstack_ptr_grow,
15673         obstack_ptr_grow_fast, obstack_room): Remove declarations of
15674         nonexistent functions.
15675
15676 2004-05-18  Karl Berry  <karl@gnu.org>
15677
15678         * config/srclist.txt: break link for vasnprintf.c.
15679
15680 2004-05-17  Paul Eggert  <eggert@cs.ucla.edu>
15681
15682         Port obstack to the AS/400, where pointers are 16 bytes wide and
15683         you cannot cast an integer to a valid pointer.  This patch is
15684         currently waiting to be integrated into glibc; see
15685         <http://sources.redhat.com/ml/libc-alpha/2004-05/msg00073.html>.
15686
15687         * lib/obstack.h (__PTR_TO_INT, __INT_TO_PTR): Remove.
15688         All uses of __INT_TO_PTR (PTR_TO_INT ...) replaced by __PTR_ALIGN.
15689         (__BPTR_ALIGN, __PTR_ALIGN): New macros.
15690         (struct obstack): temp member is now a union of a pointer and
15691         an integer, instead of an integer.  All integer uses changed.
15692         This does not affect the physical layout of struct obstack,
15693         except on hosts (like the AS/400) where the size or alignment of
15694         void * is greater than that of ptrdiff_t.
15695         (obstack_finish) [! (defined __GNUC__ && defined __STDC__ &&
15696         __STDC__)]: Store temporary in pointer member of union, not
15697         integer member.
15698         * lib/obstack.c: Include <stddef.h>, for offsetof.
15699         (struct fooalign): Remove; it doesn't need a name.
15700         (union fooround): Change double to long double, and add void *.
15701         (DEFAULT_ALIGNMENT): Use offsetof to compute.
15702         (DEFAULT_ALIGNMENT, DEFAULT_ROUNDING): Now an enum constant,
15703         not a macro.  Hence the values are always int; so remove all
15704         casts-to-int in uses.
15705
15706 2004-05-17  Paul Eggert  <eggert@cs.ucla.edu>
15707
15708         * config/srclist.txt: Break link for argp-help.c and argp-parse.c until
15709         we can get this patch merged into glibc.
15710
15711 2004-05-17  Derek R. Price  <derek@ximbiot.com>
15712             Paul Eggert  <eggert@cs.ucla.edu>
15713
15714         * m4/argp: Depend on alloca.
15715
15716 2004-05-17  Derek R. Price  <derek@ximbiot.com>
15717             Paul Eggert  <eggert@cs.ucla.edu>
15718
15719         * lib/argp-help.c, argp-parse.c: Assume <alloca.h> rather than
15720         freecoding.
15721
15722 2004-05-17  Bruno Haible  <bruno@clisp.org>
15723
15724         * lib/vasnprintf.c (VASNPRINTF): Correctly handle the case of a
15725         precision that consists of a '.' followed by an empty digit string.
15726         Patch by Tor Lillqvist <tml@iki.fi>.
15727
15728 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
15729
15730         * m4/alloca.m4 (gl_FUNC_ALLOCA): Define HAVE_ALLOCA_H always,
15731         for backward compatibility with older code.  We need our own
15732         alloca.h if _AIX is defined.  Define HAVE_ALLOCA if we discover
15733         it under some other name, and our alloca.h will define it.
15734
15735 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
15736             Derek Price  <derek@ximbiot.com>
15737
15738         * lib/alloca.c: Include <alloca.h>, to get our interface.
15739         * lib/alloca_.h: Use __alloca on AIX, so that we don't have to
15740         include <alloca.h> first.  Use C89 prototype for alloca; this
15741         requires including <stddef.h> for size_t.  Use extern "C" if C++.
15742         Use #elif for simplicity, since we can assume C89 now.
15743         Don't try to source the system alloca.h since it will not be found
15744         and to prevent recursively including its replacement.
15745         * lib/fnmatch.c: Include <alloca.h> instead of opencoding.
15746         * lib/regex.c: Likewise.
15747
15748 2004-05-16  Derek Price  <derek@ximbiot.com>
15749             Paul Eggert  <eggert@cs.ucla.edu>
15750
15751         getline cleanup.  This changes the getndelim2 API: both order of
15752         arguments, and meaning of delim2 (now uses EOF, not 0, to indicate
15753         no delimiter).
15754
15755         * lib/getline.c: Don't include stddef.h or stdio.h, since our
15756         interface does that.
15757         (getline): Always use getdelim, so that we don't have two
15758         copies of this code.
15759         * lib/getndelim2.c: Include <limits.h>, <inttypes.h>, <stdint.h>
15760         if available.
15761         (PTRDIFF_MAX, SIZE_MAX, SSIZE_MAX): Define if not defined.
15762         (GETNDELIM2_MAXIMUM): New macro.
15763         (getndelim2): Reorder arguments.  delim==EOF now means no delimiter,
15764         instead of the old practice of delim2==0.  All callers changed.
15765         Return -1 on overflow, instead of returning junk.
15766         Do not set *linesize unless allocation succeeds.
15767         * lib/getndelim2.h: Do not include stddef.h; no longer needed, now
15768         that we include sys/types.h.
15769         * lib/getnline.h: Likewise.
15770         * lib/getndelim2.h (GETNLINE_NO_LIMIT): New macro.
15771         (getndelim2): Reorder arguments.
15772         * lib/getnline.c (getnline, getndelim):
15773         Don't discard the NMAX argument.
15774         (getnline): Invoke getndelim, to avoid code duplication.
15775         * lib/getnline.h (GETNLINE_NO_LIMIT): New macro, used instead
15776         of (size_t) -1 by callers of the getnline family.
15777
15778 2004-05-13  Paul Eggert  <eggert@cs.ucla.edu>
15779
15780         * m4/gettime.m4 (gl_GETTIME): Require gl_TIMESPEC.
15781         Check for gettimeofday.
15782         * m4/settime.m4 (gl_SETTIME): Require gl_TIMESPEC.
15783         Check for settimeofday, stime.
15784
15785 2004-05-13  Paul Eggert  <eggert@cs.ucla.edu>
15786
15787         * lib/nanosleep.c (suspended): Change its type from int to
15788         sig_atomic_t volatile.
15789         (first_call): Make it private to rpl_nanosleep, and have it
15790         be zero initially as that's a bit faster.
15791         (my_usleep): Round up fractional times instead of truncating them,
15792         as this is the usual meaning for 'sleep'.
15793
15794         * lib/gettime.c (gettime): Fall back on `time' if `gettimeofday'
15795         doesn't work.
15796         * lib/settime.c: Include <unistd.h>, for stime (on Solaris 8, anyway).
15797         (ENOSYS): Define if not defined.
15798         (settime): Fall back on stime if it exists and settimeofday fails.
15799         But don't bother with fallbacks if a method fails with errno == EPERM.
15800
15801 2004-05-11  Jim Meyering  <jim@meyering.net>
15802
15803         Prior to this change, the save_cwd caller required read access to the
15804         current directory on most systems (ones with the fchdir function).
15805
15806         * lib/save-cwd.c (save_cwd) [HAVE_FCHDIR]: If opening `.' read-only
15807         fails, try write-only, and finally, resort to using xgetcwd.
15808
15809 2004-05-06  Paul Eggert  <eggert@cs.ucla.edu>
15810
15811         * lib/obstack.c, obstack.h: Import changes from libc.
15812
15813 2004-04-28  Bruno Haible  <bruno@clisp.org>
15814
15815         * lib/findprog.c (find_in_path): Treat Cygwin like Windows, since it
15816         also implicitly appends .exe to executables.
15817         * lib/localcharset.c (ISSLASH): Treat Cygwin like Windows, since it now
15818         accepts Windows pathnames.
15819         * lib/pathname.h (ISSLASH, IS_PATH_WITH_DIR, FILESYSTEM_PREFIX_LEN):
15820         Treat Cygwin like Windows, since it now accepts Windows pathnames.
15821         * lib/progreloc.c (ISSLASH, IS_PATH_WITH_DIR, FILESYSTEM_PREFIX_LEN):
15822         Treat Cygwin like Windows, since it now accepts Windows pathnames.
15823         Reported by Derek Robert Price <derek@ximbiot.com>.
15824
15825 2004-04-21  Karl Berry  <karl@gnu.org>
15826
15827         * config/srclist.txt (localcharset.c): break sync.
15828
15829 2004-04-20  Paul Eggert  <eggert@twinsun.com>
15830
15831         * m4/host-os.m4: Add a copyright notice.
15832
15833 2004-04-20  Jim Meyering  <jim@meyering.net>
15834
15835         Change UTILS_ to gl_ in AC_DEFINE'd names.
15836         Change utils_- and jm_-prefixed variables, too.
15837         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Renamed from
15838         UTILS_FUNC_MKDIR_TRAILING_SLASH.
15839         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Renamed from UTILS_FUNC_MKSTEP.
15840
15841         * m4/dirfd.m4 (gl_FUNC_DIRFD): Rename from UTILS_FUNC_DIRFD.
15842         Don't emit trailing blanks.
15843         Also rename jm_-prefixed variables to have gl_ prefix.
15844
15845         * m4/host-os.m4 (gl_HOST_OS): Rename from UTILS_HOST_OS.
15846         Also rename jm_-prefixed variables to have gl_ prefix.
15847
15848         * m4/jm-macros.m4: Reflect the renamings.
15849         * m4/prereq.m4: Likewise.
15850
15851 2004-04-20  Jim Meyering  <jim@meyering.net>
15852
15853         * lib/getndelim2.c (getndelim2): Upon realloc failure, don't leak
15854         memory.
15855
15856 2004-04-20  Jim Meyering  <jim@meyering.net>
15857             Bruno Haible  <bruno@clisp.org>
15858
15859         * lib/localcharset.c (get_charset_aliases) [!VMS && !WIN32]: Don't leak
15860         memory when realloc fails.
15861
15862 2004-04-19  Jim Meyering  <jim@meyering.net>
15863
15864         * m4/readutmp.m4 (gl_PREREQ_READUTMP): Require gl_FUNC_FREE,
15865         now that readutmp.c may call `free (0)'.
15866
15867 2004-04-19  Bruno Haible  <bruno@clisp.org>
15868
15869         * m4/mbrtowc.m4: Change jm_ to gl_ in cache variables as well.
15870         * m4/inttypes_h.m4: Likewise.
15871         * m4/stdint_h.m4: Likewise.
15872         * m4/intmax_t.m4: Likewise.
15873         * m4/uintmax_t.m4: Likewise.
15874
15875 2004-04-18  Jim Meyering  <jim@meyering.net>
15876
15877         * m4/prereq.m4: Don't forbid jm_ prefix.
15878
15879         * m4/afs.m4, m4/allocsa.m4, m4/assert.m4, m4/backupfile.m4:
15880         * m4/bison.m4, m4/check-decl.m4, m4/chown.m4, m4/d-ino.m4:
15881         * m4/d-type.m4, m4/dirname.m4, m4/dos.m4, m4/error.m4, m4/fpending.m4:
15882         * m4/fstypename.m4, m4/fsusage.m4, m4/ftruncate.m4, m4/getdate.m4:
15883         * m4/getgroups.m4, m4/gettext.m4, m4/glibc21.m4, m4/group-member.m4:
15884         * m4/human.m4, m4/intmax.m4, m4/intmax_t.m4, m4/inttostr.m4:
15885         * m4/inttypes.m4, m4/inttypes_h.m4, m4/jm-macros.m4, m4/jm-winsz1.m4:
15886         * m4/jm-winsz2.m4, m4/lchown.m4, m4/lib-check.m4, m4/link-follow.m4:
15887         * m4/localcharset.m4, m4/longlong.m4, m4/ls-mntd-fs.m4, m4/lstat.m4:
15888         * m4/makepath.m4, m4/mbrtowc.m4, m4/mbswidth.m4, m4/memchr.m4:
15889         * m4/memcmp.m4, m4/mkdtemp.m4, m4/mkstemp.m4, m4/mountlist.m4:
15890         * m4/nanosleep.m4, m4/path-concat.m4, m4/perl.m4, m4/prereq.m4:
15891         * m4/putenv.m4, m4/quotearg.m4, m4/regex.m4, m4/stat.m4:
15892         * m4/stdint_h.m4, m4/strftime.m4, m4/strtoimax.m4, m4/strtoll.m4:
15893         * m4/strtoull.m4, m4/strtoumax.m4, m4/timespec.m4, m4/uintmax_t.m4:
15894         * m4/ulonglong.m4, m4/unlink-busy.m4, m4/unlocked-io.m4, m4/uptime.m4,
15895         * m4/utimbuf.m4, m4/utime.m4, m4/utimes-null.m4, m4/vasnprintf.m4:
15896         * m4/xstrtoimax.m4, m4/xstrtol.m4, m4/xstrtoumax.m4:
15897         Change jm_ to gl_ in AC_DEFINE'd names. Update all uses.
15898
15899 2004-04-18  Jim Meyering  <jim@meyering.net>
15900
15901         * lib/readutmp.c (read_utmp) [UTMP_NAME_FUNCTION]: Upon realloc
15902         failure, don't leak memory and do call END_UTMP_ENT.
15903
15904 2004-04-16  Jim Meyering  <jim@meyering.net>
15905
15906         * m4/prereq.m4 (jm_PREREQ_STAT): Remove macro.  It is specific to
15907         coreutils' stat program.
15908         (gl_PREREQ): Don't require jm_PREREQ_STAT.
15909
15910 2004-04-11  Paul Eggert  <eggert@twinsun.com>
15911
15912         * lib/inttostr.h: Include <limits.h> unconditionally, since we assume
15913         C89.
15914         (CHAR_BIT): Remove, since we assume C89.
15915         Include <stdint.h> if available, as per current Autoconf CVS advice.
15916
15917 2004-03-31  Jim Meyering  <jim@meyering.net>
15918
15919         * m4/prereq.m4: Require AC_FUNC_MALLOC, not jm_FUNC_MALLOC.
15920         Require AC_FUNC_REALLOC, not jm_FUNC_REALLOC.
15921         * m4/xalloc.m4: Likewise.
15922
15923 2004-03-30  Paul Eggert  <eggert@twinsun.com>
15924
15925         Merge from coreutils.
15926
15927         * m4/inttostr.m4: New file.
15928         * m4/getdate.m4 (gl_GETDATE): Remove time-related stuff.
15929         Require AM_STDBOOL_H and gl_TIMESPEC instead.
15930         Require gl_CLOCK_TIME.
15931         * m4/clock_time.m4 (gl_CLOCK_TIME): Require AC_GNU_SOURCE.
15932
15933 2004-03-30  Paul Eggert  <eggert@twinsun.com>
15934
15935         * lib/cloexec.h, cloexec.c (set_cloexec_flag): Return int
15936         not bool, to be more consistent with Unix conventions.
15937         Suggested by Bruno Haible.
15938
15939         Merge from coreutils.
15940
15941         * lib/imaxtostr.c, lib/inttostr.c, lib/inttostr.h, lib/offtostr.c:
15942         * lib/umaxtostr.c: New files.
15943
15944         * lib/getdate.h: Include stdbool.h, and timespec.h instead of
15945         the usual <time.h> dance.
15946         (get_date): Change signature to support fractional time stamps.
15947         All callers changed.
15948         * lib/getdate.y: Include "getdate.h" first, as we can now
15949         assume C89 and don't need to worry about 'const'.
15950         Similarly, include "unlocked-io.h" near start, not in middle.
15951         Include <limits.h>.
15952         (textint.value): Use long int rather than int.
15953         (textint.digits): Use size_t rather than int.
15954         (BILLION, LOG10_BILLION): New constants.
15955         (parser_control): New member rel_ns.  Members day_ordinal,
15956         time_zone, month, day, hour, minutes, rel_year, rel_month,
15957         rel_day, rel_hour, rel_minutes, rel_seconds
15958         are now long int, not int.  Member seconds is now struct timespec,
15959         not int.  New member timespec_seen.  Members dates_seen, days_seen,
15960         local_zones_seen, rels_seen, times_seen, zones_seen are now size_t,
15961         not int.
15962         (%union.intval): Now long int, not int.
15963         New member timespec.
15964         (tSDECIMAL_NUMBER, tUDECIMAL_NUMBER): New tokens.
15965         (seconds, signed_seconds, unsigned_seconds): New nonterminals.
15966         (spec): Now is a timespec or an item list.
15967         (timespec, items): New nonterminals.
15968         (time, rel, relunit, number, get_date):
15969         Add support for fractional seconds.
15970         (time): Fix bug: seconds weren't cleared in "00:00 +0000" syntax.
15971         (gmtime, localtime, mktime): Remove decls; not needed with C89.
15972         (to_hour): First arg is now long int, not int.
15973         (to_year): Returns long int, not int.
15974         Don't treat year -70 like 70.
15975         (tm_diff): Returns long int, not int.
15976         (lookup_word): Use bool instead of int when appropriate.
15977         (yylex): Use size_t for count, not int.
15978         Detect overflow when parsing large integer constants.
15979         Add support for fractions.
15980         (get_date): Make pointers 'const' if possible.
15981         Use more-portable code to detect integer overflow.
15982         (main) [TEST]: Adjust to above changes.  Test for localtime failure.
15983         Don't use ctime; it's not reliable if the year has >4 digits.
15984
15985         * lib/human.c (humblock): Inspect BLOCKSIZE if BLOCK_SIZE isn't set.
15986         This is for compatibility with BSD.
15987
15988         * lib/timespec.h (ST_TIME_CMP_NS, ST_TIME_CMP): Define.
15989         (ATIME_CMP, CTIME_CMP, MTIME_CMP, TIMESPEC_NS): Likewise.
15990         From coreutils' system.h.
15991
15992         * lib/userspec.c: Don't include "posixver.h".
15993         (parse_user_spec): Fall back on USER.GROUP parsing, regardless
15994         of POSIX version, as POSIX 1003.1-2001 allows that behavior as a
15995         compatible extension.  Simplify code by removing a boolean int
15996         that was always nonzero if a string was nonnull.
15997
15998 2004-03-30  Jim Meyering  <jim@meyering.net>
15999
16000         Merge from coreutils.
16001
16002         Avoid a configure-time warning about sys/ucred.h on OSF V4.0.
16003         * m4/ls-mntd-fs.m4: Test for sys/ucred.h separately, since
16004         on some systems one must include <grp.h> before it.
16005         Reported by Christian Krackowizer.
16006
16007 2004-03-30  Jim Meyering  <jim@meyering.net>
16008
16009         Merge from coreutils.
16010
16011         * lib/mountlist.c [HAVE_SYS_UCRED_H]: Include grp.h before sys/ucred.h.
16012
16013         * lib/readtokens.c (readtoken): Don't leak 64 bytes when reading
16014         an empty input stream.
16015
16016         * lib/readtokens.c: Include <stdbool.h>.
16017         (readtoken): Use `size_t' rather than int/long.
16018         All callers adjusted.
16019         Use `bool' rather than `int' where appropriate.
16020         Use memset rather than an explicit loop.
16021         Use x2nrealloc rather than xrealloc.
16022         Allow the use of `\0' as a delimiter.
16023         (readtokens): Likewise.
16024         * lib/readtokens.h (readtoken, readtokens): Update prototypes.
16025
16026 2004-03-30  Jim Meyering  <jim@meyering.net>
16027
16028         * m4/realloc.m4: Remove file, since now it does no more than
16029         AC_REQUIRE([AC_FUNC_REALLOC]), and that can be done via
16030         the `configure.ac' section of module/realloc.
16031         * m4/malloc.m4: Likewise, but for AC_FUNC_MALLOC.
16032
16033 2004-03-30  Bruno Haible  <bruno@clisp.org>
16034
16035         * lib/getloadavg.c (getloadavg): Don't assume setlocale returns
16036         nonnull.
16037
16038 2004-03-29  Paul Eggert  <eggert@twinsun.com>
16039
16040         Merge changes to getloadavg.c from coreutils and Emacs.
16041
16042         * lib/getloadavg.c [!defined HAVE_SETLOCALE] (setlocale):
16043         Define to an expression, not to the empty string.
16044         Include cloexec.h and xalloc.h.
16045         (getloadavg): Restore LC_NUMERIC locale after setting it temporarily.
16046         Use set_cloexec_flag rather than rolling our own.
16047         * lib/cloexec.c, lib/cloexec.h: New files.
16048
16049 2004-03-29  Paul Eggert  <eggert@twinsun.com>
16050
16051         * m4/cloexec.m4: New file.
16052
16053 2004-03-18  Paul Eggert  <eggert@twinsun.com>
16054
16055         * lib/getopt.h: Sync with libc CVS.
16056
16057 2004-03-18  Paul Eggert  <eggert@twinsun.com>
16058             Bruno Haible  <bruno@clisp.org>
16059
16060         * m4/mbswidth.m4 (gl_MBSWIDTH): Also test whether <wchar.h> declares
16061         mbswidth.
16062
16063 2004-03-18  Paul Eggert  <eggert@twinsun.com>
16064             Bruno Haible  <bruno@clisp.org>
16065
16066         * lib/mbswidth.h: Include <wchar.h> only if
16067         HAVE_DECL_MBSWIDTH_IN_WCHAR_H, not on all platforms that have
16068         <wchar.h>.
16069         * lib/mbswidth.c: Include <stdio.h> and <time.h> before <wchar.h>.
16070
16071 2004-03-09  Paul Eggert  <eggert@twinsun.com>
16072
16073         * lib/argp-parse.c, getopt.c, getopt.h, getopt1.c:
16074         Sync with libc CVS.
16075         * lib/getopt_int.h: New file, also synced from libc.
16076
16077 2004-03-09  Paul Eggert  <eggert@twinsun.com>
16078
16079         * config/srclistvars.sh: Add GNUWWWLICENSES for eggert.
16080         * config/srclist.txt: Sync getopt with libc.  Add getopt_int.h.
16081         Bring back getopt.c, getopt.h, getopt1.c.
16082
16083 2004-03-07  Paul Eggert  <eggert@twinsun.com>
16084
16085         * m4/c-stack.m4 (gl_PREREQ_C_STACK): Renamed from jm_PREREQ_C_STACK.
16086         All uses changed.  Check for sa_sigaction member; this fixes
16087         a bug first reported by Jason Andrade in
16088         <http://mail.gnu.org/archive/html/bug-textutils/2003-03/msg00027.html>.
16089
16090 2004-03-07  Paul Eggert  <eggert@twinsun.com>
16091
16092         * lib/c-stack.c (SIGACTION_WORKS): New macro.  Use it instead of long
16093         '#if' expressions.  Unlike the code it replaces, it does not
16094         depend on (defined _SC_PAGESIZE).  However, it does depend on
16095         HAVE_STRUCT_SIGACTION_SA_SIGACTION; this last change fixes a bug
16096         first reported by Jason Andrade in
16097         <http://mail.gnu.org/archive/html/bug-textutils/2003-03/msg00027.html>.
16098
16099 2004-02-25  Simon Josefsson  <jas@extundo.com>
16100
16101         * m4/strdup.m4 (gl_PREREQ_STRDUP): Check whether strdup is declared.
16102
16103 2004-02-25  Simon Josefsson  <jas@extundo.com>
16104
16105         * lib/strdup.h: New file.
16106         * lib/strdup.c: Include it.
16107         * lib/path-concat.c: Include strdup.h. Drop strdup declaration.
16108         * lib/userspec.c: Include strdup.h. Drop strdup declaration.
16109
16110 2004-02-23  Karl Berry  <karl@gnu.org>
16111
16112         * doc/maintain.texi, doc/standards.texi, doc/make-stds.texi: new files
16113         (from fencepost.gnu.org:/gd/gnuorg).
16114
16115 2004-02-23  Karl Berry  <karl@gnu.org>
16116
16117         * config/srclistvars.sh (GNUORG) [karl]: redefine.
16118         * config/srclist.txt: add maintain/standards documents.
16119
16120 2004-02-18  Bruno Haible  <bruno@clisp.org>
16121
16122         * m4/xsize.m4 (gl_XSIZE): Require AC_C_INLINE.
16123         Reported by Derek Robert Price <derek@ximbiot.com>.
16124
16125 2004-02-16  Karl Berry  <karl@gnu.org>
16126
16127         * config/mkinstalldirs, install-sh: update from automake.
16128
16129 2004-02-06  Karl Berry  <karl@gnu.org>
16130
16131         * m4/po.m4: update from gettext 0.14.1.
16132
16133 2004-02-06  Karl Berry  <karl@gnu.org>
16134
16135         * lib/config.charset: update from gettext 0.14.1.
16136
16137 2004-02-05  Paul Eggert  <eggert@twinsun.com>
16138
16139         Add comments and code, prompted by suggestions from Bruno Haible
16140         for sh-quote.
16141         * lib/quotearg.h (quotearg_alloc): New decl.  Improve the comments
16142         describing the enum quoting_style values.
16143         * lib/quotearg.c (quotearg_alloc): New function.
16144         (quotearg_buffer_restyled): Treat lone { and } as special.
16145         Treat = as special.  Work around bug with older shells
16146         that "see" a '\' that is really the 2nd byte of a multibyte char.
16147         Quote empty string with shell_quoting_style.
16148
16149 2004-02-03  Bruno Haible  <bruno@clisp.org>
16150
16151         * m4/pipe.m4: New file, from GNU gettext.
16152
16153 2004-02-03  Bruno Haible  <bruno@clisp.org>
16154
16155         * lib/pipe.h: New file, from GNU gettext.
16156         * lib/pipe.c: New file, from GNU gettext.
16157
16158 2004-01-27  Bruno Haible  <bruno@clisp.org>
16159
16160         * m4/execute.m4: New file, from GNU gettext.
16161
16162 2004-01-27  Bruno Haible  <bruno@clisp.org>
16163
16164         * lib/execute.h: New file, from GNU gettext.
16165         * lib/execute.c: New file, from GNU gettext.
16166         * lib/w32spawn.h: New file, from GNU gettext.
16167
16168 2004-01-24  Paul Eggert  <eggert@twinsun.com>
16169
16170         Merge from diffutils.
16171
16172         * lib/file-type.c (file_type): Add typed memory objects.
16173         * lib/file-type.h (S_TYPEISTMO): New macro.
16174
16175         * lib/c-stack.h (c_stack_action): Remove argv argument.
16176         * lib/c-stack.c (c_stack_action): Likewise.  All uses changed.
16177         (die): Don't calculate message unless segv_action returns.
16178         (get_stack_location, min_address_from_argv, max_address_from_argv,
16179         volatile stack_base, volatile_stack_size): Remove.
16180         (segv_handler): If ! HAVE_XSI_STACK_OVERFLOW_HEURISTIC, assume
16181         that every segmentation violation is a stack overflow.  (Ouch!)
16182         See Debian bug 136249 (still outstanding) for more info about why
16183         HAVE_XSI_STACK_OVERFLOW_HEURISTIC fails on Linux kernels.
16184
16185 2004-01-24  Paul Eggert  <eggert@twinsun.com>
16186
16187         Exit-status fix from coreutils.
16188
16189         Use exit_failure consistently in place of EXIT_FAILURE,
16190         so that program exit statuses are consistent on failure.
16191
16192         * lib/argmatch.c (ARGMATCH_DIE) [! defined ARGMATCH_DIE]:
16193         Include "exitfail.h", and use exit_failure rather than EXIT_FAILURE.
16194         * lib/argmatch.h: Comment fix to match the above.
16195         * lib/obstack.c (obstack_exit_failure) [!defined _LIBC]:
16196         Now a macro referring to exit_failure, instead of a separate
16197         variable.  Include "exitfail.h" to get it.
16198         * lib/xstrtol.h: Include "exitfail.h".
16199         (STRTOL_FATAL_ERROR): Exit with status exit_failure, not 2.
16200
16201         * lib/long-options.c (parse_long_options): Use prototype
16202         for usage function arg.  Pass it EXIT_SUCCESS rather than 0,
16203         for clarity.
16204
16205 2004-01-21  Jim Meyering  <jim@meyering.net>
16206
16207         * lib/mktime.c (__mktime_internal) [!_LIBC]: Define to mktime_internal
16208         so as not to conflict with a different-sized __mktime_internal
16209         function in GNU libc.
16210         * lib/timegm.c (__mktime_internal) [!_LIBC]: Likewise.
16211         Problem building statically-linked `ls' reported by Michael Brunnbauer.
16212
16213 2004-01-20  Karl Berry  <karl@gnu.org>
16214
16215         * config/config.guess: update from config.
16216
16217         * config/srclistvars.sh: GNUWWWLICENSES for karl.
16218
16219 2004-01-20  Bruno Haible  <bruno@clisp.org>
16220
16221         Safer stack allocation.
16222         * lib/setenv.c: Include allocsa.h.
16223         (alloca): Remove fallback definition.
16224         (freea): Remove macro.
16225         (__add_to_environ) [!_LIBC]: Use allocsa instead of alloca. Use freesa
16226         instead of freea.
16227
16228 2004-01-20  Bruno Haible  <bruno@clisp.org>
16229
16230         * m4/eealloc.m4: New file, from GNU gettext.
16231
16232 2004-01-20  Bruno Haible  <bruno@clisp.org>
16233
16234         * m4/allocsa.m4: New file, from GNU gettext.
16235
16236 2004-01-20  Bruno Haible  <bruno@clisp.org>
16237
16238         * lib/xallocsa.h: New file, from GNU gettext.
16239         * lib/xallocsa.c: New file, from GNU gettext.
16240
16241 2004-01-20  Bruno Haible  <bruno@clisp.org>
16242
16243         * lib/wait-process.c: On Windows, include windows.h. Needed on mingw.
16244
16245 2004-01-20  Bruno Haible  <bruno@clisp.org>
16246
16247         * lib/wait-process.c (wait_subprocess): Add ignore_sigpipe argument.
16248         * lib/wait-process.c (wait_subprocess): Likewise. Handle SIGPIPE
16249         specially.
16250
16251 2004-01-20  Bruno Haible  <bruno@clisp.org>
16252
16253         * lib/wait-process.c (wait_process): Disable the 2003-10-31 waitid()
16254         patch.
16255
16256 2004-01-20  Bruno Haible  <bruno@clisp.org>
16257
16258         * lib/wait-process.c (cleanup_slaves): Use ANSI C declaration.
16259
16260 2004-01-20  Bruno Haible  <bruno@clisp.org>
16261
16262         * lib/eealloc.h: New file.
16263
16264 2004-01-20  Bruno Haible  <bruno@clisp.org>
16265
16266         * lib/binary-io.h: Avoid warnings on Cygwin.
16267
16268 2004-01-20  Bruno Haible  <bruno@clisp.org>
16269
16270         * lib/allocsa.h: New file, from GNU gettext.
16271         * lib/allocsa.c: New file, from GNU gettext.
16272
16273 2004-01-18  Karl Berry  <karl@gnu.org>
16274
16275         * doc/gpl.texi, doc/lgpl.texi: new files.
16276
16277 2004-01-18  Karl Berry  <karl@gnu.org>
16278
16279         * config/srclistvars.sh (GNUWWWLICENSES): new variable.
16280         * config/srclist.txt ({fdl,gpl,lgpl}.text): get from there.
16281
16282 2004-01-15  Paul Eggert  <eggert@twinsun.com>
16283
16284         Merge from coreutils.
16285
16286         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for uintptr_t.
16287         * m4/posixver.m4 (gl_POSIXVER): Require gl_DEFAULT_POSIX2_VERSION.
16288         (gl_DEFAULT_POSIX2_VERSION): Move
16289         the documentation from 'configure' into 'config.hin',
16290         so that 'configure --help' isn't burdened by it and
16291         we don't have to worry about its formatting there.
16292         Reword the documentation so that it's more succinct
16293         and can be run together into a single paragraph.
16294         * m4/same.m4 (gl_SAME): Check for pathconf.
16295
16296 2004-01-15  Paul Eggert  <eggert@twinsun.com>
16297
16298         Merge from coreutils.
16299
16300         * lib/posixver.c: Include posixver.h.
16301
16302         * lib/same.c: Include <stdbool.h>, <limits.h>.
16303         (_POSIX_NAME_MAX): Define if not defined.
16304         (MIN): New macro.
16305         (same_name): If file names are silently truncated, report
16306         that the file names are the same if they are the same after
16307         the silent truncation.
16308
16309         * lib/xstrtod.h (xstrtod): Accept an extra arg, specifying the
16310         conversion function.
16311         * lib/xstrtod.c (xstrtod): Likewise.  All callers changed to
16312         include c-strtod.h and use c_strtod.  Don't include stdlib.h; no
16313         longer needed.
16314
16315 2004-01-15  Jim Meyering  <jim@meyering.net>
16316
16317         Merge from coreutils.
16318
16319         * m4/clock_time.m4 (gl_CLOCK_TIME): Don't set LIB_CLOCK_GETTIME
16320         if no library is required.
16321         * m4/jm-macros.m4: Don't require UTILS_SYS_OPEN_MAX.
16322         * m4/jm-macros.m4 (jm_MACROS): Require gl_FUNC_FREE.
16323         * m4/jm-macros.m4 (jm_MACROS): Require autoconf-2.58.
16324         (AC_LANG_SOURCE): Remove definition, now that we require autoconf-2.58.
16325         * m4/jm-macros.m4 (jm_MACROS): Don't require AC_FUNC_FTW.
16326         * m4/lib-check.m4 (jm_LIB_CHECK): Do not set LIB_CRYPT to the
16327         value, $ac_cv_search_crypt, if it's "none required".
16328         * m4/posixver.m4 (gl_DEFAULT_POSIX2_VERSION): New macro.
16329         * m4/prereq.m4 (jm_PREREQ): Require AC_FUNC_GETLOADAVG,
16330         not gl_FUNC_GETLOADAVG.
16331         * m4/prereq.m4 (jm_PREREQ): Require gl_READTOKENS, gl_MD5, gl_MAKEPATH,
16332         gl_LONG_OPTIONS, and gl_IDCACHE, gl_GETUGROUPS.
16333
16334 2004-01-15  Jim Meyering  <jim@meyering.net>
16335
16336         Merge from coreutils.
16337
16338         * lib/md5.h (rol) [__GNUC__ && __i386__]: Don't use `asm' code.  These
16339         days, gcc-3.x does better all by itself.  Patch from Dean Gaudet:
16340         http://mail.gnu.org/archive/html/bug-coreutils/2003-11/msg00144.html
16341
16342         * lib/posixver.c (DEFAULT_POSIX2_VERSION): Use definition of new,
16343         optional configure-time default.
16344
16345         * lib/version-etc.c (version_etc_copyright): Update copyright date.
16346
16347         * lib/xreadlink.c (xreadlink): Correct outdated comment.
16348
16349 2004-01-15  Alexandre Duret-Lutz  <adl@gnu.org>
16350
16351         Merge from coreutils.
16352
16353         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Do not set LIB_NANOSLEEP to the
16354         value, $ac_cv_search_nanosleep, if it's "none required".
16355
16356 2004-01-14  Paul Eggert  <eggert@twinsun.com>
16357
16358         * lib/fnmatch_loop.c (ALLOCA_LIMIT): Remove macro, which collided
16359         with like-named macro in fnmatch.c.
16360         (EXT): Use an internal constant instead.
16361
16362         Merge fnmatch patches from glibc.
16363         * lib/fnmatch.c (mbsinit): Remove define.
16364         Add libc_hidden_ver (__fnmatch, fnmatch).
16365         * lib/fnmatch_loop.c (FCT): Cast to int32_t and UCHAR when appropriate.
16366         Adjust to renaming of collseq_table_lookup to __collseq_table_lookup.
16367
16368 2004-01-14  Karl Berry  <karl@gnu.org>
16369
16370         * config/install-sh: update from automake.
16371
16372 2004-01-13  Karl Berry  <karl@gnu.org>
16373
16374         * config/install-sh: update from automake.
16375
16376 2004-01-09  Karl Berry  <karl@gnu.org>
16377
16378         * config/install-sh: update from automake.
16379
16380 2004-01-05  Karl Berry  <karl@gnu.org>
16381
16382         * config/config.{sub,guess}: update from config.
16383
16384 2003-12-31  Karl Berry  <karl@gnu.org>
16385
16386         * config/depcomp: update from automake.
16387
16388 2003-12-14  Karl Berry  <karl@gnu.org>
16389
16390         * lib/config.charset: update from gettext-runtime.
16391
16392 2003-12-03  Paul Eggert  <eggert@twinsun.com>
16393
16394         * lib/getgroups.c (getgroups): xmalloc takes one argument, not two.
16395         Bug reported by Alfred M. Szmidt.
16396
16397 2003-12-03  Bruno Haible  <bruno@clisp.org>
16398
16399         * m4/gettext.m4: Upgrade from gettext-0.13.
16400         * m4/po.m4: Upgrade from gettext-0.13.
16401         * m4/size_max.m4 (gl_SIZE_MAX): Don't use the _ONCE macros here.
16402         * m4/intmax.m4: New file, from gettext-0.13.
16403         * m4/printf-posix.m4: New file, from gettext-0.13.
16404
16405 2003-11-29  Karl Berry  <karl@gnu.org>
16406
16407         * lib/argp-{help.c,parse.c,namefrob.h}, argp.h: update from libc.
16408
16409 2003-11-25  Paul Eggert  <eggert@twinsun.com>
16410             Bruno Haible  <bruno@clisp.org>
16411
16412         * lib/printf-parse.h: Don't include sys/types.h.
16413         (ARG_NONE): New macro.
16414         (char_directive): Change type of *arg_index fields to size_t.
16415         * lib/printf-parse.c: Don't include sys/types.h.
16416         (SSIZE_MAX): Remove macro.
16417         (PRINTF_PARSE): Change the type of the arg_index variables to size_t.
16418         Remove unnecessary overflow check.
16419         * lib/vasnprintf.c (VASNPRINTF): Update for type change of *arg_index
16420         fields.
16421
16422 2003-11-25  Bruno Haible  <bruno@clisp.org>
16423
16424         * modules/vasnprintf (Files): Remove m4/ssize_t.m4.
16425
16426 2003-11-25  Bruno Haible  <bruno@clisp.org>
16427
16428         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Don't require
16429         gt_TYPE_SSIZE_T.
16430
16431 2003-11-24  Paul Eggert  <eggert@twinsun.com>
16432
16433         * modules/alloca: Remove dependency on xalloc.
16434
16435 2003-11-24  Paul Eggert  <eggert@twinsun.com>
16436
16437         * lib/alloca.c: Remove dependency on xalloc module.
16438         (xalloc_die): Remove.
16439         (memory_full) [!defined emacs]: New macro.
16440         [!defined emacs]: Don't include xalloc.h.
16441         (alloca): Invoke memory_full, not xalloc_die, if malloc fails or
16442         address arithmetic overflows.  Change datatypes a bit to avoid
16443         unnecessary casts.
16444
16445 2003-11-22  Jim Meyering  <jim@meyering.net>
16446
16447         * lib/xmalloc.c (x2nrealloc_inline): Fix typos in comments:
16448         s/size/size_t/.
16449
16450 2003-11-21  Karl Berry  <karl@gnu.org>
16451
16452         * config/config.{sub,guess}: update from config.
16453
16454 2003-11-18  Karl Berry  <karl@gnu.org>
16455
16456         * config/config.{sub,guess}: update from config.
16457
16458         * config/(printf-{parse,args}.[ch]): sync broken, sigh.
16459
16460 2003-11-17  Paul Eggert  <eggert@twinsun.com>
16461
16462         * README: Mention that S+T cannot overflow if S is the size of
16463         an existing object and T is sufficiently small.
16464
16465 2003-11-17  Jim Meyering  <jim@meyering.net>
16466
16467         On systems without utime and without a utimes function capable of
16468         dealing with a NULL struct utimbuf* argument, this utime replacement
16469         could -- in unusual circumstances -- leak a file descriptor.
16470         * lib/utime.c: Include <unistd.h> and <errno.h>.
16471         (utime_null): Be sure to close `fd' and to preserve errno.
16472         Reported by Geoff Collyer via Arnold Robbins.
16473
16474 2003-11-17  Bruno Haible  <bruno@clisp.org>
16475
16476         * modules/vasnprintf (Files): Add m4/ssize_t.m4.
16477         (Depends-on): Add xsize.
16478
16479 2003-11-17  Bruno Haible  <bruno@clisp.org>
16480
16481         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Require gt_TYPE_SSIZE_T.
16482
16483 2003-11-17  Bruno Haible  <bruno@clisp.org>
16484
16485         * lib/vasnprintf.c (alloca): Remove fallback definition.
16486         (freea): Remove definition.
16487         (VASNPRINTF): Use alloca only for small sizes, say <= 4000 bytes.
16488         Reported by Paul Eggert.
16489
16490 2003-11-16  Paul Eggert  <eggert@twinsun.com>
16491             Bruno Haible  <bruno@clisp.org>
16492
16493         Protect against address arithmetic overflow.
16494         * lib/printf-args.h: Include stddef.h.
16495         (arguments): Change type of field 'count' to size_t.
16496         * lib/printf-args.c (printf_fetchargs): Use size_t instead of
16497         'unsigned int' where appropriate.
16498         * lib/printf-parse.h: Include sys/types.h.
16499         (char_directive): Change type of *arg_index fields to ssize_t.
16500         (char_directives): Change type of fields 'count', max_*_length to
16501         size_t.
16502         * lib/printf-parse.c: Include sys/types.h and xsize.h.
16503         (SSIZE_MAX): Define fallback value.
16504         (PRINTF_PARSE): Use size_t instead of 'unsigned int' and ssize_t
16505         instead of 'int' where appropriate. Check a_allocated, d_allocated
16506         against overflow. Reject %m$ argument numbers > SSIZE_MAX + 1.
16507         * lib/vasnprintf.c: Include xsize.h.
16508         (VASNPRINTF): Use size_t instead of 'unsigned int' where appropriate.
16509         Check alloca, malloc, realloc, ENSURE_ALLOCATION arguments against
16510         overflow. Avoid wraparound when converting a width or precision from
16511         decimal to binary.
16512
16513 2003-11-16  Bruno Haible  <bruno@clisp.org>
16514
16515         Update from GNU gettext.
16516         * lib/printf-parse.c: Generalize to it can be compiled for wide
16517         strings.
16518         (PRINTF_PARSE, CHAR_T, DIRECTIVE, DIRECTIVES): New macros.
16519         * lib/vasnprintf.c: Generalize to it can be compiled for wide strings.
16520         (VASNPRINTF, CHAR_T, DIRECTIVE, DIRECTIVES, PRINTF_PARSE, USE_SNPRINTF,
16521         SNPRINTF): New macros.
16522         Don't include <alloca.h> if the file is used inside libintl.
16523         (local_wcslen): New function, for Solaris 2.5.1.
16524         (VASNPRINTF): Use it instead of wcslen.
16525
16526 2003-11-16  Bruno Haible  <bruno@clisp.org>
16527
16528         * lib/xsize.h (xmax): New function.
16529         (xsum, xsum3, xsum4): Declare as "pure" functions.
16530
16531 2003-11-12  Paul Eggert  <eggert@twinsun.com>
16532
16533         * modules/xalloc (Files): Undo latest change, since xalloc.h
16534         no longer needs SIZE_MAX or PTRDIFF_MAX.
16535
16536 2003-11-12  Paul Eggert  <eggert@twinsun.com>
16537
16538         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Do not require gl_SIZE_MAX or
16539         gl_PTRDIFF_MAX.
16540
16541 2003-11-12  Paul Eggert  <eggert@twinsun.com>
16542
16543         * lib/xstrtol.c (__xstrtol): Remove "break" immediately after
16544         "return", to pacify some unknown compiler.  Problem reported
16545         by Joerg Schilling.
16546
16547 2003-11-12  Paul Eggert  <eggert@twinsun.com>
16548
16549         * lib/xalloc.h: Do not include <limits.h> or <stdint.h>.
16550         (xalloc_oversized): Use sizeof (ptrdiff_t) and sizeof (size_t) for
16551         the heuristic, rather than PTRDIFF_MAX and SIZE_MAX.  This
16552         heuristic is just as accurate as far as we know, and it removes a
16553         dependency on size_max.m4 and ptrdiff_max.m4.
16554
16555 2003-11-11  Bruno Haible  <bruno@clisp.org>
16556
16557         * modules/xsize (Files): Add m4/size_max.m4.
16558         * modules/xalloc (Files): Add m4/size_max.m4, m4/ptrdiff_max.m4.
16559
16560 2003-11-11  Bruno Haible  <bruno@clisp.org>
16561
16562         * m4/size_max.m4: New file.
16563         * m4/ptrdiff_max.m4: New file.
16564         * m4/xsize,m4 (gl_XSIZE): Require gl_SIZE_MAX.
16565         * m4/xalloc.m4 (gl_PREREQ_XALLOC): New macro.
16566         (gl_XALLOC): Invoke it.
16567
16568 2003-11-11  Bruno Haible  <bruno@clisp.org>
16569
16570         * lib/xsize.h (SIZE_MAX): Remove fallback definition.
16571         * lib/xalloc.h: Include limits.h. Assume SIZE_MAX and PTRDIFF_MAX are
16572         defined.
16573
16574 2003-11-10  Paul Eggert  <eggert@twinsun.com>
16575
16576         * lib/xalloc.h (xalloc_oversized): [! (defined PTRDIFF_MAX &&
16577         PTRDIFF_MAX < SIZE_MAX)]: Fix off-by-one error that would have
16578         rejected some allocations of exactly SIZE_MAX - 2 bytes.
16579         From Bruno Haible.
16580         [defined PTRDIFF_MAX && PTRDIFF_MAX < SIZE_MAX]: Use SIZE_MAX,
16581         not (size_t) -1, since it's defined here.
16582
16583 2003-11-09  Karl Berry  <karl@gnu.org>
16584
16585         * config/mkinstalldirs, depcomp, mdate-sh: update from automake.
16586
16587 2003-11-06  Paul Eggert  <eggert@twinsun.com>
16588
16589         * lib/xalloc.h [HAVE_STDINT_H]: Include <stdint.h>.
16590         (xalloc_oversized) [! (PTRDIFF_MAX < SIZE_MAX)]:
16591         Reject sizes of exactly SIZE_MAX bytes.
16592         * lib/xreadlink.c: Include "xalloc.h" before checking whether SIZE_MAX
16593         is defined, since "xalloc.h" now defines SIZE_MAX on modern hosts.
16594
16595 2003-11-05  Bruno Haible  <bruno@clisp.org>
16596
16597         * lib/xsize.h: Include limits.h, to avoid a possible collision with
16598         SIZE_MAX defined in <limits.h> on Solaris.
16599
16600 2003-11-04  Jim Meyering  <jim@meyering.net>
16601
16602         * modules/sysexits: Use the `$(VAR)' notation for AC_SUBST'd
16603         variable names, rather than @VAR@.
16604         * modules/poll: Likewise.
16605
16606 2003-11-04  Bruno Haible  <bruno@clisp.org>
16607
16608         * modules/xsize: New file.
16609         * modules/linebreak: Depend on xsize.
16610         * MODULES.html.sh (func_all_modules): Add xsize.
16611
16612 2003-11-04  Bruno Haible  <bruno@clisp.org>
16613
16614         * m4/xsize.m4: New file.
16615
16616 2003-11-04  Bruno Haible  <bruno@clisp.org>
16617
16618         * lib/xsize.h: New file.
16619         * lib/linebreak.c: Include xsize.h.
16620         (mbs_possible_linebreaks, mbs_width_linebreaks): Check malloc()
16621         argument for overflow.
16622         Suggested by Paul Eggert.
16623
16624 2003-11-03  Karl Berry  <karl@gnu.org>
16625
16626         * config/config.{guess,sub}: update from config.
16627
16628 2003-11-03  Jim Meyering  <jim@meyering.net>
16629
16630         * modules/userspec (lib_SOURCES): Add userspec.h.
16631         (Include): Add "userspec.h".
16632         Improve description.
16633
16634 2003-11-03  Jim Meyering  <jim@meyering.net>
16635
16636         * lib/userspec.c: Include "userspec.h".
16637         * lib/userspec.h: New file.
16638
16639 2003-11-03  Bruno Haible  <bruno@clisp.org>
16640
16641         * m4/wait-process.m4 (gl_WAIT_PROCESS): Also check for waitid.
16642
16643 2003-11-03  Bruno Haible  <bruno@clisp.org>
16644
16645         * lib/wait-process.c (wait_process): Use waitid with WNOWAIT if
16646         available, to avoid (extremely rare) race condition.
16647         Suggested by Paul Eggert.
16648
16649 2003-11-02  Karl Berry  <karl@gnu.org>
16650
16651         * config/srclist.txt (vasprintf.c): sync broken, sigh.
16652
16653 2003-10-31  Paul Eggert  <eggert@twinsun.com>
16654
16655         * lib/mountlist.h (struct mount_entry.me_type_malloced): New member.
16656         * lib/mountlist.c (SIZE_MAX): Define if not defined already.
16657         (read_filesystem_list): Set and use me_type_malloced.
16658         Use "sizeof *me" rather than "sizeof (struct mount_entry)" (or
16659         whatever the type happens to be), for brevity and consistency.
16660         Check for size calculation overflow on Alphas running OSF/1.
16661
16662 2003-10-31  Jim Meyering  <jim@meyering.net>
16663
16664         * lib/hash.c: Include "xalloc.h" for use of xalloc_oversized.
16665
16666         * lib/linebuffer.c: Include <string.h> for declaration of memset.
16667
16668 2003-10-30  Paul Eggert  <eggert@twinsun.com>
16669             Bruno Haible  <bruno@clisp.org>
16670
16671         * lib/vasprintf.c: Include <limits.h>, <stdlib.h>.
16672         (vasprintf): Fail if the resulting length doesn't fit in an 'int'.
16673
16674 2003-10-30  Paul Eggert  <eggert@cs.ucla.edu>
16675
16676         * m4/host-os.m4 (UTILS_HOST_OS): Change netbsd*-gnu pattern back to
16677         netbsd*-gnu*.  Suggested by Robert Millan.
16678
16679 2003-10-29  Paul Eggert  <eggert@twinsun.com>
16680
16681         * modules/group-member: Depend on stdbool.
16682
16683 2003-10-29  Paul Eggert  <eggert@twinsun.com>
16684
16685         * m4/xalloc.m4 (gl_XALLOC): Undo previous change.
16686
16687 2003-10-29  Paul Eggert  <eggert@twinsun.com>
16688
16689         * m4/host-os.m4 (UTILS_HOST_OS): Resurrect netbsd*-gnu.  Add comments
16690         to it, and to knetbsd*-gnu and kfreebsd*-gnu.  Remove the '*' from
16691         after the 'gnu' in these cases.  This fixes some bugs in the
16692         previous change, and is based on suggestions by Robert Millan.
16693
16694 2003-10-29  Paul Eggert  <eggert@twinsun.com>
16695
16696         * lib/xalloc.h (xalloc_oversized): Now a macro, not a function,
16697         so that it works even if SIZE_MAX < N.  Do not include <stdbool.h>;
16698         no longer needed.
16699         * lib/quotearg.c (quotearg_n_options): Use it.
16700         * lib/group-member.c: Include <stdbool.h>.
16701         (free_group_info): Arg is now const *; don't free arg.
16702         (get_group_info): Now returns bool and accepts struct group_info *,
16703         rather than returning a malloc'ed struct group_info *.
16704         All uses changed.  Check for overflow in internal size calculation.
16705
16706         * lib/getusershell.c (readname): Simplify the code by using x2nrealloc
16707         rather than xmalloc/xrealloc.
16708         * lib/linebuffer.c (initbuffer, readlinebuffer): Simplify the code by
16709         using x2realloc rather than xmalloc/xrealloc.  Also, fix a C
16710         conformance bug: the old code used a pointer after freeing the
16711         storage that it addressed.
16712         * lib/hash.c (hash_initialize): Simplify the code by using
16713         xalloc_oversized rather than doing it by hand.
16714         * lib/getgroups.c (getgroups): Don't use xrealloc, since we don't need
16715         the buffer preserved.  Use free and xmalloc instead.
16716         * lib/quotearg.c (quotearg_n_options): Likewise.
16717         Use a simpler test for size overflow.  Don't use xalloc_oversized
16718         because unsigned int might be wider than size_t (!); this suggests
16719         that we should switch from unsigned int to size_t for slot numbers.
16720
16721 2003-10-28  Paul Eggert  <eggert@twinsun.com>
16722
16723         * m4/host-os.m4 (UTILS_HOST_OS): Identify GNU/KFreeBSD and
16724         GNU/KNetBSD.  These implementations use glibc atop the FreeBSD and
16725         NetBSD kernels.  Requested by Richard Stallman.
16726
16727 2003-10-27  Paul Eggert  <eggert@twinsun.com>
16728
16729         * lib/exclude.c (new_exclude): Use xzalloc rather than xmalloc
16730         to allocate the returned structure.  Do not allocate a subarray,
16731         as x2nrealloc will do that.
16732         (add_exclude): Use x2nrealloc to reallocate ex->exclude,
16733         instead of xnrealloc.
16734         (add_exclude_file): Use x2realloc instead of malloc + xnrealloc.
16735
16736 2003-10-27  Bruno Haible  <bruno@clisp.org>
16737
16738         * lib/stdbool_.h: Better support for BeOS.
16739
16740 2003-10-26  Paul Eggert  <eggert@twinsun.com>
16741
16742         * m4/xalloc.m4 (gl_XALLOC): Requore AC_C_INLINE, since xalloc.h
16743         now uses inline.
16744
16745 2003-10-26  Paul Eggert  <eggert@twinsun.com>
16746
16747         * lib/xalloc.h (xalloc_oversized): New static inline function, for
16748         callers that want to do their own size-overflow checking.  Include
16749         <stdbool.h>, since xalloc_oversized returns bool.
16750         * lib/xalloc.c (array_size_overflow): Remove.  All callers changed
16751         to use xalloc_oversized.
16752
16753         Add two functions x2realloc, x2nrealloc, for programs that grow
16754         arrays dynamically by doubling their sizes.
16755         * lib/xalloc.h (x2realloc, x2nrealloc): New decls.
16756         * lib/xmalloc.c (x2nrealloc_inline, x2nrealloc, x2realloc):
16757         New functions.
16758
16759         Port to C99 semantics for 'inline' of external functions.
16760         Bug reported by Bruno Haible.
16761         * lib/xmalloc.c (xnmalloc_inline): New static inline function,
16762         with the old contents of xnmalloc.
16763         (xnmalloc, xmalloc): Use it.
16764         (xnrealloc_inline): New static inline function,
16765         with the old contents of xnrealloc.
16766         (xnrealloc, xrealloc): Use it.
16767
16768         * lib/alloc.c (alloca): xmalloc cannot return NULL, so don't test for
16769         that.
16770
16771 2003-10-26  Karl Berry  <karl@gnu.org>
16772
16773         * config/srclist.txt (COPYING.DOC): no longer available from
16774         /gd/gnuorg; don't know where the ultimate source is.
16775
16776 2003-10-25  Paul Eggert  <eggert@twinsun.com>
16777
16778         Fix several address-calculation bugs in the hash modules,
16779         plus some minor code cleanup.
16780
16781         * lib/hash.h: Include <stdbool.h>, for bool.
16782         * lib/hash.c: Don't include <stdbool.h>, since hash.h does it now.
16783         * lib/hash.h (Hash_hasher, hash_get_n_buckets, hash_get_n_buckets_used,
16784         hash_get_n_entries, hash_get_max_bucket_length,
16785         hash_get_entries, hash_do_for_each, hash_string, hash_initialize,
16786         hash_rehash): Use size_t rather than unsigned.
16787         * lib/hash.c (struct hash_table, hash_get_n_buckets,
16788         hash_get_n_buckets_used, hash_get_n_entries,
16789         hash_get_max_bucket_length, hash_table_ok, hash_print_statistics,
16790         hash_get_entries, hash_do_for_each, hash_string, is_prime,
16791         next_prime, hash_initialize, hash_rehash, hash_delete, hash_print):
16792         Likewise.
16793         (SIZE_MAX): Define if not defined.
16794         (hash_get_max_bucket_length, hash_table_ok, hash_lookup,
16795         hash_get_first, hash_get_next, hash_get_entries, hash_do_for_each,
16796         hash_print):
16797         Use const * when possible.
16798         (hash_string): Use (unsigned char) *P rather than *(unsigned char *) P.
16799         (check_tuning): Fix bug: if tuning parameters were very close to
16800         0 or 1, rounding errors could have caused subscript violations.
16801         (hash_initialize, allocate_entry, hash_print): Remove unnecessary cast.
16802         (hash_initialize): Add 'fail:' label
16803         to free table and return NULL, and use it to simplify code.
16804         Use calloc rather than clearing the storage ourself.
16805         (hash_initialize, hash_rehash): Check for arithmetic overflow in
16806         buffer size calculations.
16807         * lib/hash-pjw.h (hash_pjw): Use size_t, not unsigned.
16808         Include <stddef.h>, for size_t.
16809         * lib/hash-pjw.c (hash_pjw): Likewise.
16810         Switch to method described by Bruno Haible.
16811         Include <limits.h>, for CHAR_BIT.
16812         (SIZE_BITS): New macro.
16813
16814 2003-10-23  Paul Eggert  <eggert@twinsun.com>
16815
16816         * m4/getline.m4 (AM_FUNC_GETLINE):
16817         Don't include getndelim2.o twice into LIBOBJS; this breaks on some
16818         hosts.  Problem reported by Derek Robert Price in
16819         <http://mail.gnu.org/archive/html/bug-gnulib/2003-10/msg00092.html>.
16820         This patch can be withdrawn after Autoconf 2.58 is required for gnulib.
16821         * m4/getndelim2.m4 (gl_GETNDELIM2): Likewise.
16822
16823 2003-10-21  Paul Eggert  <eggert@twinsun.com>
16824
16825         * lib/getndelim2.c (getndelim2): When size calculation overflows,
16826         ceiling the allocation at NMAX bytes rather than silently
16827         discarding input bytes before NMAX is reached.  This makes
16828         a difference only if NMAX exceeds SIZE_MAX / 2.
16829
16830         * lib/obstack.c: Merge from glibc.
16831         [defined _LIBC]: Include <obstack.h>, not "obstack.h".
16832         Add libc_hidden_def (_obstack_newchunk).
16833         (_obstack_free) [! defined _LIBC]: Remove.
16834         [defined _LIBC]: Make a strong alias from obstack_free, rather than
16835         a clone of the function body.
16836         (fputs) [defined _LIBC && defined USE_IN_LIBIO]: Remove.
16837         [defined _LIBC && !defined USE_IN_LIBIO]: Include <libio/iolibio.h>.
16838
16839         * lib/obstack.h: Indenting cleanup, to make it easier to merge with
16840         glibc.
16841         (obstack_grow, obstack_grow0): Remove unnecessary parentheses around
16842         arg to memcpy.
16843
16844         * lib/obstack.h (obstack_1grow_fast): Properly parenthesize arg.
16845         (obstack_ptr_grow_fast, obstack_int_grow_fast):
16846         Don't use lvalue casts, as GCC plans to remove support for them
16847         in GCC 3.5.  Reported by Joseph S. Myers.  This bug
16848         was also present in the non-GCC version, indicating that this
16849         code had always been buggy and had never been widely used.
16850         (obstack_1grow, obstack_ptr_grow, obstack_int_grow, obstack_blank):
16851         Use the fast variant of each macro, rather than copying the
16852         definiens of the fast variant; that way, we'll be more likely to
16853         catch future bugs in the fast variants.
16854
16855 2003-10-20  Bruno Haible  <bruno@clisp.org>
16856
16857         * modules/wait-process: New file.
16858         * MODULES.html.sh (func_all_modules): Add wait-process.
16859
16860 2003-10-20  Bruno Haible  <bruno@clisp.org>
16861
16862         * m4/wait-process.m4: New file.
16863
16864 2003-10-20  Bruno Haible  <bruno@clisp.org>
16865
16866         * lib/wait-process.h: New file, from GNU gettext.
16867         * lib/wait-process.c: New file, from GNU gettext.
16868
16869 2003-10-19  Jim Meyering  <jim@meyering.net>
16870
16871         * lib/vasnprintf.c (vasnprintf): Work around losing snprintf on
16872         HPUX 10.20.
16873
16874 2003-10-18  Karl Berry  <karl@gnu.org>
16875
16876         * config/config.guess: update from config.
16877
16878 2003-10-16  Paul Eggert  <eggert@twinsun.com>
16879
16880         * lib/getgroups.c: Include <errno.h>, <stdlib.h>.
16881         (getgroups): First arg is int, not size_t.
16882         Don't let 'free' mangle errno.
16883
16884 2003-10-16  Paul Eggert  <eggert@twinsun.com>
16885
16886         * README: Mention that gnulib assumes that (foo *) NULL + 0 == NULL.
16887
16888 2003-10-16  Karl Berry  <karl@gnu.org>
16889
16890         * config/config.{guess,sub}: update from config.
16891
16892 2003-10-16  Jim Meyering  <jim@meyering.net>
16893
16894         * lib/xmalloc.c: Include <string.h>, for declarations of memset and
16895         memcpy.
16896
16897 2003-10-15  Paul Eggert  <eggert@twinsun.com>
16898
16899         * lib/exclude.c: Do not include <inttypes.h> or <stdint.h>.
16900         (SIZE_MAX): Remove.
16901         (new_exclude, add_exclude_file): Initial size no longer needs to
16902         be a power of 2.
16903         (add_exclude, add_exclude_file): Use xnrealloc instead of rolling
16904         our own address arithmetic overflow checking.
16905
16906         * lib/fnmatch.c (SIZE_MAX): Define if standard headers don't.
16907         (fnmatch): Do not alloca more than 2000 wide characters;
16908         instead, use malloc for large buffers.
16909         Check for address arithmetic overflow, and return -1
16910         with errno set to ENOMEM in that case.
16911         * lib/fnmatch_loop.c (ALLOCA_LIMIT): New macro.
16912         (NEW_PATTERN): Do not alloca more than 8000 bytes;
16913         instead, return -1.  Check for address arithmetic overflow.
16914
16915 2003-10-14  Paul Eggert  <eggert@twinsun.com>
16916
16917         Handle invalid suffixes and overflow independently, so that
16918         callers can treat them independently as needed.  Fix some bugs in
16919         suffix handling, e.g., "100k@" was not diagnosed as an invalid
16920         suffix for a human-readable blocksize.  The major caller-visible
16921         change is the addition of a new
16922         LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW enum value, indicating
16923         that both overflow and suffix chars were found.
16924
16925         * lib/human.c (humblock): Don't check separately for invalid suffix
16926         char; that is xstrtoumax's job (now that its bug is fixed).
16927         * lib/xstrtoimax.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM) [defined
16928         INTMAX_MAX]: New macros.
16929         * lib/xstrtol.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM, TYPE_MINIMUM,
16930         TYPE_MAXIMUM): New macros.
16931         (bkm_scale, bkm_scale_by_power): Return strtol_error, not int.
16932         (bkm_scale, bkm_scale_by_power, __xstrtol): Return maximal values
16933         if overflow occurs, as it's what __strtol does and it's more useful
16934         in practice.
16935         (__xstrtol): If __strtol reports some error other than ERANGE,
16936         reflect it to the caller as LONGINT_INVALID.  If it reports
16937         ERANGE, continue the rest of parsing, and report LONGINT_OVERFLOW
16938         | LONGINT_INVALID_SUFFIX_CHAR if both errors occur.
16939         * lib/xstrtol.h (LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW): New enum
16940         value.
16941         (_STRTOL_ERROR): Handle it.  Abort when given unknown error codes.
16942         * lib/xstrtoul.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM): New macros.
16943         * lib/xstrtoumax.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM)
16944         [defined UINTMAX_MAX]: New macros.
16945
16946 2003-10-14  Bruno Haible  <bruno@clisp.org>
16947
16948         * modules/fatal-signal: Add m4/sig_atomic_t.m4 to file list.
16949
16950 2003-10-14  Bruno Haible  <bruno@clisp.org>
16951
16952         * m4/sig_atomic_t: New file, from GNU gettext.
16953         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Require gt_TYPE_SIG_ATOMIC_T.
16954
16955 2003-10-14  Bruno Haible  <bruno@clisp.org>
16956
16957         * lib/fatal-signal.h: Improved comments. Suggested by Paul Eggert.
16958         * lib/fatal-signal.c: Use sig_atomic_t. Suggested by Paul Eggert.
16959         Also use volatile where needed.
16960
16961 2003-10-12  Paul Eggert  <eggert@twinsun.com>
16962
16963         * modules/xalloc: Do not depend on 'exit'.  Depend on 'stdbool'.
16964         Change maintainer from Bruno Haible to 'all'.
16965
16966 2003-10-12  Paul Eggert  <eggert@twinsun.com>
16967
16968         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Require AC_C_INLINE.
16969
16970 2003-10-12  Paul Eggert  <eggert@twinsun.com>
16971
16972         * lib/xalloc.h (xnmalloc, xzalloc, xnrealloc, xclone): New decls.
16973         (XMALLOC, XCALLOC, XREALLOC, XFREE, CCLONE, CLONE): Deprecate,
16974         and define in terms of the other primitives.
16975         * lib/xmalloc.c: Include stdbool.h; do not include exit.h.
16976         (SIZE_MAX): Define if not already defined.
16977         (array_size_overflow): New function.
16978         (xalloc_die): Abort instead of exiting if 'error' returns.
16979         (xnmalloc, xnrealloc, xzalloc, xclone): New functions.
16980         (xmalloc, xrealloc): Use them.
16981         (xcalloc): Check for address arithmetic overflow.
16982         * lib/xstrdup.c (xstrdup): Use xclone, since memcpy should be
16983         a bit faster than strcpy.
16984
16985 2003-10-10  Simon Josefsson  <jas@extundo.com>
16986
16987         * modules/argp (Depends-on): Add restrict and strcase.
16988
16989 2003-10-10  Simon Josefsson  <jas@extundo.com>
16990
16991         * m4/argp.m4: Add AC_C_INLINE.
16992
16993 2003-10-08  Paul Eggert  <eggert@twinsun.com>
16994
16995         Merge getpass from libc, plus a few fixes.
16996
16997         * lib/getpass.c (HAVE_STDIO_EXT) [_LIBC]: Define to 1.
16998         Include <stdbool.h>.
16999         Include <stdio_ext.h> if HAVE_STDIO_H, otherwise define
17000         __fsetlocking to empty.
17001         [_LIBC]: Do not include "getline.h" or "unlocked-io.h", but
17002         do include <bits/libc-lock.h>.
17003         Do not include <fcntl.h>; not needed.
17004         [_LIBC]: Include <wchar.h>.
17005         (NOTCANCEL_MODE): New macro.
17006         (flockfile, funlockfile) [_LIBC]: New macros.
17007         (__libc_cleanup_push, __libc_cleanup_pop, __getline, __tcgetattr)
17008         [!_LIBC]: New macros.
17009         (call_fclose): New function.
17010         (getpass): Use it.  Save tty stream separately; this simplifies the
17011         code and makes it more reliable if stdin happens to equal stdout.
17012         Invoke __fsetlocking on tty.
17013         Handle thread cancellation if needed.
17014         Namespace cleanup (use __tcgetattr, __getline).
17015         Use bool for Booleans.
17016         [USE_IN_LIBIO]: Handle wide streams.
17017         [!_LIBC]: Unconditionally do the fseek, since we don't know what
17018         stream might go where.
17019
17020         * lib/unlocked-io.h: Include <stdio.h>, so that the caller
17021         doesn't have to include <stdio.h> before us.
17022         (clearerr_unlocked, feof_unlocked, ferror_unlocked,
17023         fflush_unlocked, fgets_unlocked, fputc_unlocked, fputs_unlocked,
17024         fread_unlocked, fwrite_unlocked, getc_unlocked, getchar_unlocked,
17025         putc_unlocked, putchar_unlocked): Define to the unlocked counterpart
17026         if not declared, so that we can use getpass.c code from libc without
17027         rewriting it.
17028         (flockfile, ftrylockfile, funlockfile): New macros.
17029
17030 2003-10-08  Paul Eggert  <eggert@twinsun.com>
17031
17032         * modules/getpass: Depend on stdbool.
17033
17034 2003-10-08  Paul Eggert  <eggert@twinsun.com>
17035
17036         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for stdio_ext.h.
17037
17038 2003-10-07  Karl Berry  <karl@gnu.org>
17039
17040         * config/config.{guess,sub}: update from config.
17041
17042 2003-10-06  Jim Meyering  <jim@meyering.net>
17043             Bruno Haible  <bruno@clisp.org>
17044
17045         This lets translators provide better translations for the
17046         "Written by ..." part of --version output.
17047         * lib/version-etc.h: Include stdarg.h.
17048         (version_etc_copyright): Declare as readonly.
17049         (version_etc): Make this function variadic with a NULL-terminated list
17050         of author name strings.
17051         (version_etc_va): New declaration.
17052         * lib/version-etc.c: Include stdarg.h, stdlib.h.
17053         (version_etc_copyright): Declare as readonly.
17054         (version_etc_va): New function. Provide a different translatable string
17055         for each possible number of authors < 10. Abbreviate when there are 10
17056         authors or more.
17057         (version_etc): Make this function variadic. Call version_etc_va.
17058         Suggestion from Gary V. Vaughan.
17059
17060         * lib/long-options.h (parse_long_options): Change prototype: the
17061         authors string is moved to the end and becomes variadic.
17062         * lib/long-options.c: Include stdarg.h.
17063         (parse_long_options): Make this function variadic, too.
17064         Call version_etc_va, not version_etc.
17065
17066 2003-10-06  Bruno Haible  <bruno@clisp.org>
17067
17068         * modules/version-etc-2: Remove file.
17069         * MODULES.html.sh (func_all_modules): Remove version-etc-2.
17070
17071 2003-10-06  Bruno Haible  <bruno@clisp.org>
17072
17073         * modules/fatal-signal: New file.
17074         * MODULES.html.sh (func_all_modules): Add fatal-signal.
17075
17076 2003-10-06  Bruno Haible  <bruno@clisp.org>
17077
17078         * m4/fatal-signal.m4: New file.
17079         * m4/signalblocking.m4: New file, from GNU gettext.
17080
17081 2003-10-06  Bruno Haible  <bruno@clisp.org>
17082
17083         * lib/version-etc-2.h: Remove file.
17084         * lib/version-etc-2.c: Remove file.
17085
17086 2003-10-06  Bruno Haible  <bruno@clisp.org>
17087
17088         * lib/fatal-signal.h: New file, from GNU gettext.
17089         * lib/fatal-signal.c: New file, from GNU gettext.
17090
17091 2003-10-05  Paul Eggert  <eggert@twinsun.com>
17092
17093         * README: Rework advice for preventing empty .o files.
17094         Don't recommend ELIDE constructs.  Recommend <stddef.h>,
17095         not <sys/types.h>.
17096
17097 2003-10-04  Karl Berry  <karl@gnu.org>
17098
17099         * lib/argp*: update from libc.
17100
17101 2003-10-04  Karl Berry  <karl@gnu.org>
17102
17103         * config/config.{guess,sub}: update from config.
17104
17105 2003-10-02  Bruno Haible  <bruno@clisp.org>
17106
17107         * modules/lchown (Include): Add lchown.h.
17108         * modules/time_r (Include): Use "..." syntax.
17109         * modules/xgetdomainname (Include): Add xgetdomainname.h.
17110
17111 2003-10-01  Simon Josefsson  <jas@extundo.com>
17112
17113         * MODULES.html.sh (func_all_modules): Move gethostname from section
17114         'based on' to section 'lacking' POSIX:2001.
17115
17116 2003-10-01  Larry Jones  <lawrence.jones@eds.com>
17117
17118         * lib/getpass.c (getpass): Use a no-op fseek when switching from input
17119         to output mode on the same stream.
17120
17121 2003-09-29  Paul Eggert  <eggert@twinsun.com>
17122
17123         * lib/strftime.c (tm_diff) [! HAVE_TM_GMTOFF]:
17124         Fix arg typo in previous patch.
17125
17126 2003-09-28  Jim Meyering  <jim@meyering.net>
17127
17128         * lib/error.c: Correct cpp indentation.
17129
17130 2003-09-27  Paul Eggert  <eggert@twinsun.com>
17131
17132         * modules/free: New file.
17133
17134 2003-09-27  Paul Eggert  <eggert@twinsun.com>
17135
17136         * m4/free.m4: New file.
17137
17138 2003-09-27  Paul Eggert  <eggert@twinsun.com>
17139
17140         * lib/minmax.h (MIN, MAX)
17141         [__STDC__ && defined __GNUC__ && __GNUC__ >= 2]:
17142         Omit the special code that used __typeof__, since we worry that
17143         it could be more trouble than it's worth.  See:
17144         http://mail.gnu.org/archive/html/bug-gnulib/2003-01/msg00090.html
17145         http://mail.gnu.org/archive/html/bug-gnulib/2003-01/msg00095.html
17146
17147         * lib/free.c: New file.
17148
17149 2003-09-27  Oskar Liljeblad  <oskar@osk.mine.nu>
17150
17151         Trivial fixes to Makefile.am parts of module listings.
17152         * modules/strstr: Append strstr.h to lib_SOURCES.
17153         * modules/strcase: Likewise, for strcase.h.
17154
17155 2003-09-27  Karl Berry  <karl@gnu.org>
17156
17157         * config/mkinstalldirs: update from automake.
17158
17159 2003-09-26  Paul Eggert  <eggert@twinsun.com>
17160
17161         * lib/error.c (SIZE_MAX) [!defined SIZE_MAX]: Define.
17162         (error_tail): Do not loop, reallocating temporary buffer, since
17163         the output cannot contain more wide characters than the input
17164         contains bytes, the size must be big enough already.  This avoids
17165         one potential size overflow calculation.  Check for size overflow
17166         when calculating temporary buffer size.  Free temporary buffer
17167         when done, if it was allocated with malloc; this plugs a memory
17168         leak.  Remove casts from void * to pointers, that are no longer
17169         needed now that we're assuming C89 or better.
17170
17171         Merge error changes from glibc.
17172
17173         * lib/error.c, error.h: Update copyright notice header to match glibc.
17174         * lib/error.c [defined _LIBC]: Include <errno.h>, <bits/libc-lock.h>.
17175         (error, error_at_line) [defined _LIBC && defined __libc_ptf_call]:
17176         Disable cancellation while printing error.
17177         * lib/error.h: Prepend __ to parameter names.
17178
17179 2003-09-26  Jim Meyering  <jim@meyering.net>
17180
17181         * lib/error.c (error_tail): Move some declarations
17182         into inner scope where the local variables are used.
17183
17184 2003-09-26  Bruno Haible  <bruno@clisp.org>
17185
17186         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Add comments about the AIX
17187         stpncpy().
17188         Don't define stpncpy through config.h; it's now done through stpncpy.h.
17189
17190 2003-09-26  Bruno Haible  <bruno@clisp.org>
17191
17192         * lib/stpncpy.h (gnu_stpncpy): New declaration.
17193         (stpncpy): Define as alias for gnu_stpncpy.
17194         * lib/stpncpy.c [!_LIBC]: Define gnu_stpncpy, not stpncpy.
17195
17196 2003-09-25  Simon Josefsson  <jas@extundo.com>
17197
17198         * lib/xgetdomainname.h: New file.
17199         * lib/xgetdomainname.c: New file.
17200
17201 2003-09-25  Simon Josefsson  <jas@extundo.com>
17202             Bruno Haible  <bruno@clisp.org>
17203
17204         * modules/getdomainname: New file.
17205         * modules/xgetdomainname: New file.
17206         * MODULES.html.sh (func_all_modules): Add getdomainname,
17207         xgetdomainname.
17208
17209 2003-09-25  Simon Josefsson  <jas@extundo.com>
17210             Bruno Haible  <bruno@clisp.org>
17211
17212         * m4/getdomainname.m4: New file.
17213
17214 2003-09-25  Simon Josefsson  <jas@extundo.com>
17215             Bruno Haible  <bruno@clisp.org>
17216
17217         * lib/getdomainname.h: New file.
17218         * lib/getdomainname.c: New file.
17219
17220 2003-09-25  Karl Berry  <karl@gnu.org>
17221
17222         * lib/argp-fmtstream.c, argp-help.c: update from libc.
17223
17224 2003-09-25  Karl Berry  <karl@gnu.org>
17225
17226         * config/install-sh: update from automake.
17227
17228 2003-09-25  Bruno Haible  <bruno@clisp.org>
17229
17230         * modules/version-etc-2: New file, from modules/version-etc with
17231         modifications.
17232         * MODULES.html.sh (func_all_modules): Add version-etc-2.
17233
17234 2003-09-25  Bruno Haible  <bruno@clisp.org>
17235
17236         * lib/version-etc-2.h: New file, from version-etc.h with modifications.
17237         * lib/version-etc-2.c: New file, from version-etc.c with modifications.
17238
17239 2003-09-24  Simon Josefsson  <jas@extundo.com>
17240
17241         * modules/xgethostname: Add xgethostname.h.
17242
17243 2003-09-24  Paul Eggert  <eggert@twinsun.com>
17244
17245         * lib/linebuffer.c (freebuffer): Don't free the argument, just
17246         the buffer associated with the argument.  Bug reported by
17247         Simon Josefsson.
17248
17249 2003-09-24  Paul Eggert  <eggert@twinsun.com>
17250
17251         * README: Document assumptions that 'int' is at least 32 bits
17252         wide, that integer arithmetic is 2's complement without overflow,
17253         that there are no holes in integer values, that adding sizes of
17254         two nonoverlapping objects can't overflow, and that all-bits-zero
17255         yields scalar zero.  Fix spelling and capitalization typos.
17256
17257 2003-09-19  Karl Berry  <karl@gnu.org>
17258
17259         * lib/argp.h: update from libc.
17260
17261 2003-09-17  Paul Eggert  <eggert@twinsun.com>
17262
17263         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Call AC_BEFORE first,
17264         to avoid spurious warnings like "AC_RUN_IFELSE was called before
17265         gl_USE_SYSTEM_EXTENSIONS" from autoreconf.
17266
17267 2003-09-17  Paul Eggert  <eggert@twinsun.com>
17268
17269         * gnulib-tool: Use "test -h", not "test -L", for portability
17270         to Solaris 8 /bin/sh.  (This bug is fixed in Solaris 9.)
17271         (tags_regexp): Remove, since \| doesn't conform to POSIX.
17272         (sed_extract_prog): Issue s commands one-by-one, rather than
17273         using \| in one s command.
17274
17275 2003-09-16  Paul Eggert  <eggert@twinsun.com>
17276
17277         * lib/linebuffer.c (readlinebuffer): Return NULL immediately upon
17278         input error, instead of returning NULL the next time we are called
17279         (and therefore losing track of errno).
17280
17281 2003-09-16  Bruno Haible  <bruno@clisp.org>
17282
17283         * gnulib-tool (func_create_testdir): Warn about duplicated
17284         dependencies.
17285
17286 2003-09-15  Paul Eggert  <eggert@twinsun.com>
17287
17288         * modules/argmatch, modules/fatal, modules/obstack,
17289         modules/xalloc, modules/xgethostname: Sort dependencies by
17290         importance, not alphabetically.
17291
17292 2003-09-15  Paul Eggert  <eggert@twinsun.com>
17293
17294         * lib/getndelim2.c (getndelim2): Don't trash errno when a read
17295         fails, so that the caller gets the proper errno.
17296
17297         * lib/readutmp.c (read_utmp): Likewise.
17298         Check for fstat error.  Close stream and free storage
17299         when failing.
17300
17301 2003-09-14  Karl Berry  <karl@gnu.org>
17302
17303         * config/srclist.txt (strdup.c): disable for c89 changes.
17304
17305 2003-09-14  Jim Meyering  <jim@meyering.net>
17306
17307         * lib/getloadavg.c: Correct cpp indentation.
17308         * lib/strdup.c: Likewise.
17309         * lib/vasnprintf.c: Likewise.
17310
17311 2003-09-14  Bruno Haible  <bruno@clisp.org>
17312
17313         * modules/fwriteerror: New file.
17314         * MODULES.html.sh (func_all_modules): Add fwriteerror.
17315
17316 2003-09-14  Bruno Haible  <bruno@clisp.org>
17317
17318         * lib/fwriteerror.h: New file.
17319         * lib/fwriteerror.c: New file.
17320
17321 2003-09-12  Paul Eggert  <eggert@twinsun.com>
17322
17323         * modules/argmatch, modules/exitfail, modules/fatal, modules/obstack,
17324         modules/xgethostname, modules/xalloc: Depend on exit.
17325
17326 2003-09-12  Paul Eggert  <eggert@twinsun.com>
17327
17328         * m4/error.m4: Require AC_FUNC_STRERROR_R rather than invoking it.
17329
17330         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Require AC_AIX
17331         and AC_MINIX, too, so that their extensions are available.
17332
17333         * m4/prereq.m4 (jm_PREREQ_ADDEXT): Remove.  All uses removed.
17334         This macro has been superseded by gl_BACKUPFILE.
17335
17336         More patches to assume C89 or better.
17337
17338         * m4/error.m4 (gl_ERROR): Don't check for vprintf.
17339
17340         * m4/check-decl.m4 (jm_CHECK_DECLS): Include <string.h>, <stdlib.h>
17341         unconditionally.
17342         * m4/closeout.m4 (gl_CLOSEOUT): Don't check for stdlib.h.
17343         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER):
17344         Include <string.h>, <stdlib.h> unconditionally.
17345         * m4/lstat.m4 (gl_PREREQ_LSTAT): Don't check for stdlib.h, free.
17346         * m4/readdir.m4 (GL_FUNC_READDIR): Don't check for string.h.
17347         * m4/readutmp.m4 (gl_PREREQ_READUTMP): Don't check for standard C
17348         headers or for string.h.
17349         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Don't check for stdlib.h
17350         or strtoul.
17351
17352         * m4/mkstemp.m4 (jm_PREREQ_TEMPNAME): Do not require standard C
17353         headers.
17354         * m4/strdup.m4 (gl_PREREQ_STRDUP): Likewise.
17355         * m4/userspec.m4 (gl_USERSPEC): Likewise.
17356         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Likewise.
17357         * m4/xstrtod.m4 (gl_XSTRTOD): Likewise.
17358         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
17359         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't check for limits.h,
17360         memcpy, memset.
17361         (jm_FUNC_GNU_STRFTIME): Don't require standard C headers.
17362         * m4/strtod.m4 (gl_FUNC_STRTOD): Do not check for float.h.
17363         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Do not check for stdlib.h,
17364         strtol.
17365         * m4/strtol.m4 (gl_FUNC_STRTOL): Do not check for limits.h.
17366         * m4/userspec.m4 (gl_USERSPEC): Do not check for string.h.
17367         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Do not check for string.h, strtol,
17368         strtoul.
17369
17370 2003-09-12  Paul Eggert  <eggert@twinsun.com>
17371
17372         * lib/argmatch.c, fatal.c, xgethostname.c, xmalloc.c: Include exit.h.
17373         * lib/obstack.c [!defined _LIBC]: Likewise.
17374         * lib/argmatch.c (EXIT_FAILURE): Remove; now done by exit.h
17375         * lib/exitfail.c, fatal.c, xgethostname.c, xmalloc.c: Likewise.
17376         * lib/exitfail.c: Don't include stdlib.h; no longer needed.
17377
17378         More changes to assume C89 or better.
17379
17380         * lib/error.c (error_tail): Assume vprintf.
17381
17382         * lib/argmatch.c (getenv): Remove decl.
17383         * lib/progreloc.c (get_full_program_name): Define via prototype.
17384         * lib/setenv.c (clearenv): Likewise.
17385         * lib/stpncpy.c: Do not include <string.h> or <sys/types.h>; not
17386         needed.
17387         * lib/strdup.c: Include <stdlib.h>, <string.h> unconditionally.
17388         (malloc, memcpy): Remove decls.
17389         * lib/strftime.c (HAVE_LIMITS_H, STDC_HEADERS) [defined _LIBC]: Remove.
17390         (HAVE_MEMCPY) [defined emacs && !defined HAVE_BCOPY]: Remove.
17391         Include <limits.h>, <stddef.h>, <stdlib.h>, <string.h> unconditionally.
17392         (memcpy): Remove macro.
17393         (MEMCPY) [!defined COMPILE_WIDE]: Define to memcpy unconditionally.
17394         (__P): Remove.  All uses removed.
17395         (PTR): Remove.  All uses changed to void *.
17396         (CHAR_BIT, NULL): Remove.
17397         (spaces, zeros, memset_space, memset_zero)
17398         [!defined memset && !defined HAVE_MEMSET && !defined _LIBC]:
17399         Remove.
17400         (LOCALE_PARAM, LOCALE_PARAM_DECL): Remove.
17401         (memcpy_lowcase, memcpy_uppcase, tm_diff, iso_week_days):
17402         Define with prototype.
17403         Remove now-unnecessary prototype decl.
17404         (extra_args_spec): Assume ANSI C.  All uses changed.
17405         (extra_args_spec_iso): Remove.
17406         (my_strftime, emacs_strftimeu): Define via prototype.
17407         * lib/strtod.c: Include <float.h>, <stdlib.h>, <string.h>
17408         unconditionally.
17409         (DBL_MAX, DBL_MIN, HUGE_VAL, NULL): Remove decls.
17410         * lib/strtoimax.c: Include <stdlib.h> unconditionally.
17411         (strtoul, strtol): Remove decls.
17412         * lib/strtol.c (STDC_HEADERS, HAVE_LIMITS_H, NULL, ULONG_MAX,
17413         LONG_MAX): Remove.
17414         Include <limits.h>, <stddef.h>, <stdlib.h>, <string.h> unconditionally.
17415         (LOCALE_PARAM_DECL): Remove.  All uses changed to LOCALE_PARAM_PROTO.
17416         (LOCALE_PARAM_PROTO): New macro.
17417         (INTERNAL, INTERNAL1, WEAKNAME): Assume ANSI C, not K&R.
17418         (INTERNAL (strtol), strtol): Define with a prototype.
17419         (PARAMS): Remove.  All uses removed.
17420         * lib/tempname.c: Include <string.h> unconditionally.
17421         * lib/userspec.c: Include <stdlib.h>, <string.h> unconditionally.
17422         * lib/xgethostname.c (main): Define with a prototype.
17423         * lib/xmalloc.c: Include "xalloc.h" first, to check interface.
17424         Include <stdlib.h> unconditionally.
17425         (calloc, malloc, realloc, free): Remove decls.
17426         * lib/xstrtod.c: Include "xstrtod.h" first, to check interface.
17427         Include <stdlib.h> unconditionally.  Sort include file names.
17428         (strtod): Remove.
17429         (xstrtod): Define with a prototype.
17430         * lib/xstrtol.c: Include <stdlib.h>, <string.h> unconditionally.
17431         (strtol, strtoul): Remove decls.
17432
17433 2003-09-11  Paul Eggert  <eggert@twinsun.com>
17434
17435         More patches to assume C89 or better.
17436         * m4/strndup.m4 (gl_PREREQ_STRNDUP): Remove STDC_HEADERS check.
17437         * m4/strnlen.m4 (gl_PREREQ_STRNLEN): Don't check for memory.h,
17438         string.h, memchr, STDC_HEADERS.
17439
17440 2003-09-11  Paul Eggert  <eggert@twinsun.com>
17441
17442         * lib/strndup.c: Don't include <stdio.h>, <sys/types.h>.
17443         Include <stdlib.h>, <string.h> unconditionally.
17444         Remove now-unnecessary cast to char *.
17445         * lib/strnlen.c: Include <string.h> unconditionally.
17446         * lib/yesno.c (yesno): Define with a prototype.
17447
17448 2003-09-11  Bruno Haible  <bruno@clisp.org>
17449
17450         * config/srclist.txt (setenv.c, unsetenv.c): Disable for the moment.
17451
17452 2003-09-10  Jim Meyering  <jim@meyering.net>
17453
17454         * lib/error.c: Correct indentation of cpp directives.
17455
17456 2003-09-10  Bruno Haible  <bruno@clisp.org>
17457
17458         * m4/strcspn.m4 (gl_PREREQ_STRCSPN): Remove <string.h> check.
17459         * m4/strpbrk.m4 (gl_PREREQ_STRPBRK): Remove <string.h> check.
17460         * m4/strstr.m4 (gl_PREREQ_STRSTR): Remove <string.h> check.
17461         * m4/unicodeio.m4 (gl_UNICODEIO): Remove <string.h> check.
17462         * m4/setenv.m4 (gl_PREREQ_SETENV, gl_PREREQ_UNSETENV): Remove
17463         <stdlib.h> and <string.h> checks.
17464         * m4/xreadlink.m4 (gl_XREADLINK): Remove <stdlib.h> check.
17465         * m4/yesno.m4 (gl_YESNO): Remove <stdlib.h> check.
17466
17467 2003-09-10  Bruno Haible  <bruno@clisp.org>
17468
17469         * lib/strcspn.c: Include <string.h> unconditionally.
17470         * lib/strpbrk.c: Include <string.h> unconditionally.
17471         * lib/strstr.c: Include <string.h> unconditionally.
17472         * lib/unicodeio.c: Include <string.h> unconditionally.
17473         * lib/setenv.c: Include <stdlib.h> and <string.h> unconditionally.
17474         * lib/unsetenv.c: Likewise.
17475         * lib/xreadlink.c: Include <stdlib.h> unconditionally.
17476         * lib/yesno.c: Include <stdlib.h> unconditionally.
17477         (rpmatch): Add prototype.
17478
17479 2003-09-09  Paul Eggert  <eggert@twinsun.com>
17480
17481         More patches to assume C89 or better.
17482         * m4/getcwd.m4 (AC_FUNC_GETCWD_NULL): Don't check for stdlib.h.
17483         * m4/getopt.m4 (gl_GETOPT): Don't check for string.h.
17484         * m4/getugroups.m4 (gl_GETUGROUPS): Do not check for standard C headers
17485         or for string.h.
17486         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Do not check for
17487         stdlib.h.
17488         * m4/group-member.m4 (gl_PREREQ_GROUP_MEMBER): Do not require standard
17489         C headers.
17490         * m4/hard-locale.m4 (gl_HARD_LOCALE): Do not check for stdlib.h,
17491         string.h.
17492         * m4/hash.m4 (gl_HASH): Do not check for stdlib.h, malloc, free.
17493         * m4/human.m4 (gl_HUMAN): Do not check for stdlib.h, string.h, getenv.
17494         * m4/idcache.m4 (gl_IDCACHE): Do not check for standard C headers,
17495         or for string.h.
17496         * m4/long-options.m4 (gl_LONG_OPTIONS): Do not check for stdlib.h.
17497         * m4/makepath.m4 (gl_MAKEPATH): Do not check for string.h or standard
17498         C headers.
17499         * m4/md5.m4 (gl_MD5): Don't check for limits.h, standard C headers,
17500         memcpy.
17501         * m4/sha.m4 (gl_SHA): Don't check for standard Cheaders, memcpy.
17502         * m4/memchr.m4 (jm_PREREQ_MEMCHR): Don't check for limits.h, stdlib.h.
17503         * m4/memcmp.m4 (gl_PREREQ_MEMCMP): Don't check for string.h.
17504         * m4/memcoll.m4 (gl_MEMCOLL): Likewise.
17505         * m4/memrchr.c (gl_PREREQ_MEMRCHR): Don't check for limits.h.
17506         * m4/mkdir-slash.m4 (gl_PREREQ_MKDIR): Don't check for stdlib.h,
17507         string.h, free.
17508         * m4/mktime.m4 (gl_PREREQ_MKTIME): Don't check for standard C headers.
17509         * m4/modechange.m4 (gl_MODECHANGE): Don't check for standard C headers.
17510         * m4/mountlist.m4 (gl_PREREQ_MOUNTLIST_EXTRA): Don't check for standard
17511         C headers, or for string.h.
17512         * m4/obstack.m4 (gl_OBSTACK): Don't check for stddefe.h, string.h.
17513         (gl_PREREQ_OBSTACK): Don't check for stdlib.h.
17514         * m4/path-concat.m4 (gl_PATH_CONCAT): Don't check for standard C
17515         headers, memory.h, stdlib.h, string.h, strings.h.
17516         * m4/posixtm.m4 (gl_POSIXTM): Don't check for stdlib.h, string.h.
17517         * m4/posixver.m4 (gl_POSIXVER): Don't check for getenv.
17518         * m4/putenv.m4 (gl_PREREQ_PUTENV): Don't check for string.h, memcpy,
17519         strchr.
17520         * m4/readtokens.m4 (gl_READTOKENS): Don't check for standard C
17521         headers, memory.h, string.h.
17522         * m4/regex.m4 (jm_PREREQ_REGEX): Do not check for limits.h, string.h.
17523         * m4/rename.m4 (gl_PREREQ_RENAME): Do not check for stdlib.h, string.h,
17524         free.
17525         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Don't check for standard C
17526         headers.
17527         * m4/same.m4 (gl_SAME): Don't check for stdlib.h, string.h, free.
17528         * m4/save-cwd.m4 (gl_SAVE_CWD): Don't check for standard C headers.
17529         * m4/savedir.m4 (gl_SAVEDIR): Don't check for standard C headers.
17530         * m4/strchrnul.m4 (gl_PREREQ_STRCHRNUL): Don't check for string.h.
17531         * m4/xgetcwd.m4 (gl_XGETCWD): Don't check for stdlib.h.
17532
17533 2003-09-09  Paul Eggert  <eggert@twinsun.com>
17534
17535         More K&R removal.
17536
17537         * lib/acosl.c (main): Use a prototype.
17538         * lib/asinl.c, cosl.c, expl.c, frexpl.c, ldexpl.c, sinl.c,
17539         tanl.c: Likewise.
17540
17541         * lib/getloadavg.c (getloadavg, main): Define via prototypes.
17542
17543         * lib/getopt.h (struct option.name): Assume C89, and use 'const'.
17544         (getopt, etopt_long, getopt_long_only, _getopt_internal)
17545         [defined __GNU_LIBRARY__]: Assume C89, so we can always declare
17546         with a prototype.
17547         * lib/getopt.c (const): Remove macro.
17548         Include <string.h> unconditionally.
17549         (my_index): Remove; all uses changed to strchr.
17550         (strlen): Remove decl.
17551         (exchange): Remove forward decl; no longer needed.
17552         (exchange, _getopt_initialize, _getopt_internal, getopt, main):
17553         Define with prototype.
17554         * lib/getopt1.c (const): Remove macro.
17555         (getopt_long, getopt_long_only, main): Define with prototype.
17556
17557         * lib/getugroups.c: Include <string.h> unconditionally.
17558
17559         * lib/getusershell.c: Include <stdlib.h> unconditionally.
17560         (getusershell, setusershell, endusershell, readname, main):
17561         Define with prototypes.
17562
17563         * lib/group-member.c: Include group-member.h first.
17564         Include <stdlib.h> unconditionally.
17565
17566         * lib/hard-locale.c: Include hard-locale.h first.
17567         Include <stdlib.h>, <string.h> unconditionally.
17568
17569         * lib/hash.c (free, malloc): Remove decls.
17570         Include <stdlib.h> unconditionally.
17571
17572         * lib/human.c: Include <stdlib.h>, <string.h> unconditionally.
17573         (getenv): Do not declare.
17574
17575         * lib/idcache.c: Include <string.h> unconditionally.
17576
17577         * lib/long-options.c: Include long-options.h first, to test interface.
17578         Include <stdlib.h> unconditionally.
17579
17580         * lib/makepath.c: Include makepath.h first, to test interface.
17581         Include <stdlib.h> and <string.h> unconditionally.
17582
17583         * lib/linebuffer.c: Include <stdlib.h>.
17584         (free): Remove decl.
17585
17586         * lib/malloc.c: Include <stdlib.h>, for malloc; don't bother with
17587         stddef.h. rpl_malloc returns void *, not char *.
17588         * lib/realloc.c (rpl_realloc): Likewise.  Also, define with a
17589         prototype.
17590
17591         * lib/md5.h: Include <limits.h> unconditionally.
17592         (UINT_MAX_32_BITS): Don't worry about non-__STDC__ case.
17593         (__P): Remove; all uses removed.
17594         * lib/md5.c: Include "md5.h" first.
17595         (md5_init_ctx, md5_read_ctx, md5_finish_ctx, md5_stream,
17596         md5_buffer, md5_process_bytes, md5_process_block):
17597         Define with prototypes.
17598         * lib/sha.h (__P): Remove all uses.  (It wasn't defined??)
17599         * lib/sha.c: Include "sha.h" first.
17600         Include <stdlib.h>, <string.h> unconditionally.
17601
17602         * lib/memchr.c (__ptr_t): Remove; all uses changed to void *.
17603         * lib/memcmp.c (__ptr_t): Likewise.
17604         * lib/memrchr.c (__ptr_t): Likewise.
17605         * lib/memchr.c, memcmp.c, memcoll.c, memrchr.c:
17606         Include <string.h> unconditionally.
17607         * lib/memchr.c, memrchr.c: Include <limits.h> unconditionally.
17608         * lib/memchr.c: Include <stdlib.h> unconditionally.
17609         * lib/memchr.c (LONG_MAX): Remove.
17610         * lib/memrchr.c (LONG_MAX): Likewise.
17611         * lib/memchr.c (__memchr): Define via a prototype.
17612         * lib/memrchr.c (__memrchr): Likewise.
17613         * lib/memcmp.c (__P): Remove, and remove all uses.
17614         (memcmp_bytes, memcmp_common_alignment, memcmp_not_common_alignment):
17615         Remove forward decls; no longer needed.
17616         * lib/memcpy.c, memmove.c, memset.c: Include <stddef.h>.
17617         Use types required by C89 in prototype.
17618
17619         * lib/mkdir.c: Include <stdlib.h>, <string.h> unconditionally.
17620         * lib/savedir.c: Likewise.
17621         * lib/mkdir.c (free): Remove decl.
17622         * lib/rmdir.c (rmdir): Define with a prototype.
17623         * lib/savedir.c: Include savedir.h first, to test interface.
17624
17625         * lib/mktime.c (STDC_HEADERS): Remove.
17626         Include <stdlib.h>, <string.h> unconditionally.
17627
17628         * lib/modechange.c: Include <stdlib.h> unconditionally.
17629         (malloc): Remove decl.
17630
17631         * lib/mountlist.c: Include <stdlib.h>, <string.h> unconditionally.
17632         (free): Remove decl.
17633
17634         * lib/obstack.h (PTR_INT_TYPE) [!defined __PTRDIFF_TYPE__]:
17635         Define to ptrdiff_t, without bothering to check HAVE_STDDEF_H.
17636         (This type really should be intptr_t, but that's a C99ism.)
17637         (_obstack_memcpy): Remove: all uses changed to memcpy.
17638         Include <string.h> unconditionally.
17639         (struct obstack): Assume __STDC__ for types of members
17640         chunkfun, freefun, extra_arg.
17641         (_obstack_newchunk, _obstack_free, _obstack_begin, _obstack_begin_1,
17642         _obstack_memory_used, obstack_alloc_failed_handler, obstack_init,
17643         obstack_begin, obstack_specify_allocation,
17644         obstack_specify_allocation_with_arg, obstack_chunkfun,
17645         obstack_freefun, obstack_free) [! (defined __STDC__ && __STDC__)]:
17646         Remove unprototyped decls and the macros that use them.
17647         * lib/obstack.c (POINTER): Remove.  All uses changed to void *.
17648         (obstack_alloc_failed_handler, CALL_CHUNKFUN, CALL_FREEFUN,
17649         _obstack_begin, _obstack_begin_1, _obstack_allocated_p)
17650         (defined __STDC__ && __STDC__)]:
17651         Remove nonprototyped code.
17652         Include <stdlib.h> unconditionally.
17653         (_obstack_begin, _obstack_begin_1, _obstack_newchunk,
17654         _obstack_allocated_p, _obstack_free, obstack_free,
17655         _obstack_memory_used, print_and_abort):
17656         Define using prototypes.
17657         (obstack_1grow, obstack_1grow_fast, obstack_alloc, obstack_base,
17658         obstack_blank, obstack_blank_fast, obstack_copy, obstack_copy0,
17659         obstack_finish, obstack_grow, obstack_grow0, obstack_make_room,
17660         obstack_next_free, obstack_object_size, obstack_room) [0]:
17661         Remove unused, unprototyped code.
17662
17663         * lib/path-concat.c: Include <stdlib.h>, <string.h> unconditionally.
17664
17665         * lib/physmem.c (physmem_total, physmem_available, main): Define
17666         with prototypes.
17667
17668         * lib/posixtm.c: Include <stdlib.h>, <string.h> unconditionally.
17669         (main): Define with a prototype.
17670
17671         * lib/posixver.c (getenv): Remove decl.
17672
17673         * lib/putenv.c (malloc): Returns void *, not char *.
17674         Include <string.h> unconditionally.
17675         (strchr, memcpy, NULL): Do not define.
17676
17677         * lib/readtokens.c: Include readtokens.h first, to test interface.
17678         Include <stdlib.h>, <string.h> unconditionally.
17679         (init_tokenbuffer): Define with a prototype.
17680
17681         * lib/regex.c (PARAMS): Remove.  All uses removed.
17682         All uses of _RE_ARGS removed, too.
17683         Include <stddef.h>, <stdlib.h>, <string.h>, <limits.h>
17684         unconditionally.
17685         (bzero): Assume memset exists.
17686         (memcmp, memcpy, NULL): Remove.
17687         (SIGN_EXTEND_CHAR): Remove; all uses replaced by casts to signed
17688         char, or assignments to local vars of type signed char.
17689         (init_syntax_once, PREFIX(extract_number_and_incr),
17690         PREFIX(print_partial_compiled_pattern),
17691         PREFIX(print_compiled_pattern), PREFIX(print_double_string),
17692         convert_mbs_to_wcs, print_fastmap, re_set_syntax,
17693         PREFIX(regex_grow_registers), PREFIX(regex_compile),
17694         PREFIX(store_op1), PREFIX(store_op2), PREFIX(insert_op1),
17695         PREFIX(insert_op2), PREFIX(at_begline_loc_p),
17696         PREFIX(at_endline_loc_p), group_in_compile_stack, insert_space,
17697         wcs_compile_range, byte_compile_range, truncate_wchar,
17698         PREFIX(re_compile_fastmap), re_compile_fastmap, re_set_registers,
17699         re_search, re_search_2, PREFIX(re_search_2), re_match, re_match_2,
17700         count_mbs_length, wcs_re_match_2_internal,
17701         byte_re_match_2_internal, PREFIX(group_match_null_string_p),
17702         PREFIX(alt_match_null_string_p),
17703         PREFIX(common_op_match_null_string_p), PREFIX(bcmp_translate),
17704         re_compile_pattern, re_comp, re_exec, regcomp, regexec, regerror,
17705         regfree, PREFIX(extract_number)): Define with prototype.  Remove
17706         now-unnecessary declaration, if any.
17707         (byte_compile_range, PREFIX(regex_compile), re_comp, re_exec,
17708         regcomp, regexec):
17709         Remove now-unnecessary casts among pointer types.
17710         * lib/regex.h (_RE_ARGS): Remove.  All uses removed.
17711
17712         * lib/rename.c: Include <stdlib.h>, <string.h> unconditionally.
17713         (free): Remove decl.
17714
17715         * lib/rpmatch.c: Include <stdlib.h> unconditionally.
17716
17717         * lib/same.c: Include <stdlib.h>, <string.h> unconditionally.
17718         (free): Remove decl.
17719
17720         * lib/save-cwd.c: Include <stdlib.h> unconditionally.
17721         * lib/xgetcwd.c: Likewise.
17722
17723         * lib/stat.c: Include <stdlib.h>, <string.h> unconditionally.
17724         (free): Remove decl.
17725
17726         * lib/strchrnul.c (strchrnul): Define with a prototype.
17727         Fix bug: c_in was not converted to char before searching.
17728
17729         The following changes are not K&R related:
17730
17731         * lib/group-member.h: Include <sys/types.h>, so that this file is
17732         self-contained.
17733         * lib/makepath.h: Likewise.
17734
17735         * lib/getusershell.c (readname, default_index, line_size, readname):
17736         Use size_t, not int, for sizes.
17737         (readname): If the size overflows, report an error instead of
17738         looping forever.
17739
17740 2003-09-09  Paul Eggert  <eggert@twinsun.com>
17741
17742         * config/srclist.txt: Do not get getopt.h, getopt1.c, or regex.h from
17743         libc.
17744
17745 2003-09-09  Paul Eggert  <eggert@twinsun.com>
17746
17747         * README: New section: portability guidelines.
17748
17749 2003-09-09  Derek Robert Price  <derek@ximbiot.com>
17750
17751         * m4/getndelim2.m4 (gl_PREREQ_GETNDELIM2): Assume stdlib.h per the
17752         C89 spec.
17753
17754 2003-09-09  Derek Robert Price  <derek@ximbiot.com>
17755
17756         * lib/getndelim2.c: Assume stdlib.h per the C89 spec.
17757
17758 2003-09-08  Paul Eggert  <eggert@twinsun.com>
17759
17760         Assume C89 or better; remove K&R cruft.
17761         A few of these changes were first proposed by Derek Robert Price
17762         in <http://mail.gnu.org/archive/html/bug-gnulib/2003-07/msg00105.html>.
17763
17764         * lib/addext.c: Include <string.h> unconditionally.
17765         * lib/backupfile.c: Include <string.h>, <stdlib.h> unconditionally.
17766         Don't declare getenv or malloc.
17767
17768         * lib/alloca.c: Include <string.h>, <stdlib.h> unconditionally.
17769         (POINTER_TYPE, pointer): Remove; all uses changed to void *.
17770         (NULL): Remove.
17771         (find_stack_direction, alloca): Use prototypes.
17772
17773         * lib/atexit.c (atexit): Define using a prototype.
17774
17775         * lib/basename.c, dirname.c, stripslash.c:
17776         Include <string.h> unconditionally.
17777
17778         * lib/bcopy.c: Include <stddef.h>.
17779         (bcopy): Define with prototype, using 'const' and 'void' and 'size_t'.
17780
17781         * lib/canon-host.c: Include <stdlib.h>, <string.h> unconditionally.
17782
17783         * lib/error.h (error, error_at_line, error_print_progname)
17784         [! (defined (__STDC__) && __STDC__)]: Remove decls.
17785         * lib/error.c: Include error.h first, to check interface.
17786         Include <stdarg.h>, <stdlib.h>, <string.h> unconditionally.
17787         (VA_START): Remove; all uses changeed to va_start.
17788         (exit, strerror): Remove decls.
17789         (error_print_progname): Prototype uncondionally.
17790         Don't include <errno.h>; no longer needed.
17791         (private_strerror): Remove.
17792         (error_tail): Always define.
17793         (error, error_at_line): Assume C89 or better; always use prototypes.
17794         * lib/fatal.c: Include "fatal.h" first, to test interface.
17795         Include <stdarg.h>, <stdlib.h>, <string.h> unconditionally.
17796         (VA_START): Remove; all uses changed to va_start.
17797         [! (HAVE_VPRINTF || HAVE_DOPRNT || _LIBC)]: Remove support for
17798         this case.
17799         (exit): Remove decl.
17800         (fatal): Prototype unconditionally.  Assume va_start works.
17801         Abort at end, to pacify gcc.
17802
17803         * lib/euidaccess.c (main): Define with a prototype.
17804
17805         * lib/exclude.c: Include <stdlib.h>, <string.h> unconditionally.
17806
17807         * lib/exitfail.c: Include <stdlib.h> unconditionally.
17808
17809         * lib/fnmatch_.h (__P): Remove.  All uses changed to assume
17810         prototypes.
17811         * lib/fnmatch.c: Include fnmatch.h first, to test interface.
17812         Include <string.h>, <stddef.h>, <stdlib.h> unconditionally.
17813         (getenv): Remove decl.
17814         (fnmatch): Define using a prototype.
17815         * lib/fnmatch_loop.c (FCT): Remove forward decl; no longer needed.
17816         (FCT): Define using a prototype.
17817
17818         * lib/getdate.y: Include <stdlib.h>, <string.h> unconditionally.
17819
17820         * lib/gethostname.c: Include <stddef.h>.
17821         (gethostname): Define with prototype.  Length is size_t, not int.
17822
17823 2003-09-08  Paul Eggert  <eggert@twinsun.com>
17824
17825         Assume C89 or better; remove K&R cruft.
17826         * m4/alloca.m4 (gl_PREREQ_ALLOCA): Don't check for stdlib.h, string.h.
17827         * m4/backupfile.m4 (gl_BACKUPFILE): Don't check for stdlib.h,
17828         string.h, getenv, malloc.
17829         * m4/dirname.m4 (gl_DIRNAME): Don't check for string.h or C standard
17830         headers.
17831         * m4/canon-host.m4 (gl_CANON_HOST): Don't check for string.h, stdlib.h.
17832         * m4/error.m4 (jm_PREREQ_ERROR): Do not require STDC headers, and
17833         do not check for strerror.
17834         * m4/exclude.m4: Do not check for stdlib.h, string.h, strings.h.
17835         * m4/exitfail.m4 (gl_EXITFAIL): Do not check for stdlib.h.
17836         * m4/fatal.m4 (gl_FATAL): Do not require STDC headers, and
17837         do not check for doprnt or vprintf.
17838         * m4/fnmatch.m4 (gl_PREREQ_FNMATCH_EXTRA): Remove.  All uses removed.
17839         * m4/getdate.m4 (gl_GETDATE): Don't check for stdlib.h or string.h.
17840
17841 2003-09-08  Paul Eggert  <eggert@twinsun.com>
17842
17843         * lib/getversion.c: Remove; was migrated to backupfile.c in 1997.
17844         getversion.c should have been removed then, but was accidentally
17845         preserved.
17846
17847         * lib/utime.c [!HAVE_UTIMES_NULL]: Include <sys/stat.h>, <fcntl.h>.
17848         (utime_null): Fix typo: 'st' was sometimes called 'sb'.
17849
17850 2003-09-08  Karl Berry  <karl@gnu.org>
17851
17852         * config/config.sub, config.guess, srclistvars.sh: update from savannah
17853                 config, forget about prep.
17854
17855         * config/depcomp, missing: update from automake.
17856
17857 2003-09-07  Paul Eggert  <eggert@twinsun.com>
17858
17859         * modules/time_r: Depend on 'restrict'.  Fix from Simon Josefsson in
17860         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00028.html>.
17861
17862 2003-09-07  Paul Eggert  <eggert@twinsun.com>
17863
17864         * lib/time_r.c (gmtime_r, localtime_r): Fix silly typo: missing arg to
17865         copy_tm_result.  Bug reported by Simon Josefsson in
17866         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00028.html>.
17867
17868 2003-09-06  Paul Eggert  <eggert@twinsun.com>
17869
17870         * m4/time_r.m4: New file.
17871         * m4/mktime.m4 (gl_PREREQ_MKTIME): Remove check for limits.h.
17872         * m4/timegm.m4 (gl_FUNC_TIMEGM): Assume that timegm is buggy if mktime
17873         is. Check for timegm declaration.
17874         (gl_PREREQ_TIMEGM): Require gl_FUNC_MKTIME.
17875         Do not check for gmtime_r.
17876         Replace mktime if __mktime_internal does not exist and if mktime
17877         hasn't been replaced already.
17878
17879 2003-09-06  Paul Eggert  <eggert@twinsun.com>
17880
17881         * lib/time_r.c, lib/time_r.h: New files.
17882
17883         * lib/mktime.c (my_mktime_localtime_r): Remove; all uses changed to
17884         __localtime_r.
17885         (__localtime_r) [!defined _LIBC]: New macro.  Include <time_r.h>.
17886         (__mktime_internal) [!defined _LIBC]: Now extern, not static.
17887
17888         * lib/strftime.c (my_strftime_gmtime_r): Remove; all uses changed to
17889         __gmtime_r.
17890         (my_strftime_localtime_r): Remove; all uses changed to __localtime_r.
17891         (__gtime_r, __localtime_r) [!HAVE_TM_GMTOFF]: New macros.
17892         Include <time_r.h>.
17893
17894         * lib/timegm.c: Switch to glibc implementation, with the following
17895         changes:
17896         [defined HAVE_CONFIG_H]: Include <config.h>.
17897         [!defined _LIBC]: Include "timegm.h" rather than <time.h>.
17898         (__mktime_internal) [!defined _LIBC]: New decl.
17899         (__gmtime_r) [!defined _LIBC]: New macro and function.
17900         (timegm): Use a prototype, since gnulib assumes C89.
17901         Do not bother declaring tmp to be const, as it's not really usefu.
17902         * lib/timegm.h: Hoist "#include <time.h>" out of #ifdef.
17903         (timegm): Declare only if HAVE_DECL_TIMEGM.
17904
17905 2003-09-06  Paul Eggert  <eggert@twinsun.com>
17906
17907         * MODULES.html.sh (func_all_modules): Add time_r.
17908         * modules/time_r: New file.
17909         * modules/mktime, modules/strftime, modules/timegm: Depend on time_r.
17910         * modules/timegm: Depend on mktime.  Change maintainer to "all, glibc".
17911
17912 2003-09-03  Paul Eggert  <eggert@twinsun.com>
17913
17914         * lib/human.c (human_readable): Fix bug that rounded 10501 to 10k.
17915         Bug reported by Lute Kamstra in
17916         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00003.html>.
17917
17918         * lib/getdate.y (relative_time_table): Use tDAY_UNIT for "tomorrow",
17919         "yesterday", "today", and "now" rather than tMINUTE_UNIT.  Of
17920         course with correspondingly smaller numbers for tomorrow and
17921         yesterday.  From Tadayoshi Funaba.  Originally installed into
17922         sh-utils on 1999-08-07, but the patch got lost (I guess during the
17923         coreutils merge?).
17924
17925 2003-08-31  Simon Josefsson  <jas@extundo.com>
17926
17927         * modules/timegm: New file.
17928         * MODULES.html.sh (func_all_modules): Add timegm.
17929
17930 2003-08-31  Simon Josefsson  <jas@extundo.com>
17931
17932         * m4/timegm.m4: New file.
17933
17934 2003-08-31  Simon Josefsson  <jas@extundo.com>
17935
17936         * lib/timegm.h: New file.
17937         * lib/timegm.c: New file.  Based on
17938         wget-1.8.2/src/http.c:mktime_from_utc.
17939
17940 2003-08-31  Karl Berry  <karl@gnu.org>
17941
17942         * lib/argp.h: update from libc.
17943
17944 2003-08-28  Bruno Haible  <bruno@clisp.org>
17945
17946         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Remove AC_DEFINE of fnmatch here.
17947         This avoids havoc on compilers for which '#define fnmatch rpl_fnmatch'
17948         followed by '#define fnmatch fnmatch_posix' gives an error.
17949
17950 2003-08-28  Bruno Haible  <bruno@clisp.org>
17951
17952         * lib/binary-io.h: Undefine O_BINARY before defining it. This avoids a
17953         warning on QNX, which defines O_BINARY to 000000.
17954
17955 2003-08-27  Jim Meyering  <jim@meyering.net>
17956
17957         * m4/mkstemp.m4: Require that the system mkstemp be able to create
17958         70 temporary files, not just 30.  Tru64 V4.0F's mkstemp function
17959         would fail after 32.  Reported by Danny Levinson.  Details here:
17960         http://mail.gnu.org/archive/html/bug-coreutils/2003-08/msg00124.html
17961
17962 2003-08-24  Bruno Haible  <bruno@clisp.org>
17963
17964         * lib/binary-io.h: Include <stdio.h>, to avoid a compilation error when
17965         MSVC7 <stdio.h> is included later.
17966
17967 2003-08-22  Simon Josefsson  <jas@extundo.com>
17968
17969         * modules/strndup (Makefile.am): Add strndup.h to lib_SOURCES.
17970
17971 2003-08-20  Karl Berry  <karl@gnu.org>
17972
17973         * m4/lib-ld.m4: serial 1003 from gettext, no changes besides serial.
17974
17975 2003-08-20  Bruno Haible  <bruno@clisp.org>
17976
17977         * modules/progname: New file.
17978         * MODULES.html.sh (func_all_modules): Add progname.
17979
17980 2003-08-20  Bruno Haible  <bruno@clisp.org>
17981
17982         * lib/progname.h: New file, from GNU gettext.
17983         * lib/progname.c: New file, from GNU gettext.
17984         * lib/progreloc.c: New file, from GNU gettext.
17985
17986 2003-08-19  Jim Meyering  <jim@meyering.net>
17987
17988         * m4/lib-ld.m4: Revert yesterday's change, per Bruno's request here:
17989         http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00155.html
17990
17991 2003-08-19  Bruno Haible  <bruno@clisp.org>
17992
17993         * m4/xalloc.m4 (gl_PREREQ_XSTRDUP): Don't check for <string.h> any
17994         more.
17995
17996 2003-08-19  Bruno Haible  <bruno@clisp.org>
17997
17998         * lib/xstrdup.c: Assume <string.h> exists.
17999
18000 2003-08-18  Paul Eggert  <eggert@twinsun.com>
18001
18002         * modules/stdbool: Add BUILT_SOURCES.  Prefer $@ to target name
18003         in makefile rules.
18004
18005 2003-08-18  Jim Meyering  <jim@meyering.net>
18006
18007         * m4/getloadavg.m4: Use [\t ], not [ \t] (where \t is a literal TAB).
18008         * m4/lib-ld.m4: Likewise.
18009
18010 2003-08-18  Jim Meyering  <jim@meyering.net>
18011
18012         * lib/setenv.h: Indent nested cpp directive.
18013         * lib/vasnprintf.c: Remove trailing blanks.
18014
18015 2003-08-17  Simon Josefsson  <jas@extundo.com>
18016
18017         * modules/xstrndup: New file.
18018         * MODULES.html.sh (func_all_modules): Add xstrndup.
18019
18020 2003-08-17  Simon Josefsson  <jas@extundo.com>
18021
18022         * modules/argp: Fix autoconf macro name. Add more dependencies.
18023
18024 2003-08-17  Simon Josefsson  <jas@extundo.com>
18025
18026         * m4/xstrndup.m4: New file.
18027
18028 2003-08-17  Simon Josefsson  <jas@extundo.com>
18029
18030         * m4/argp.m4: New file.
18031
18032 2003-08-17  Simon Josefsson  <jas@extundo.com>
18033             Bruno Haible  <bruno@clisp.org>
18034
18035         * lib/xstrndup.h: New file.
18036         * lib/xstrndup.c: New file.
18037
18038 2003-08-17  Bruno Haible  <bruno@clisp.org>
18039
18040         * modules/strndup (Files, Include): Add lib/strndup.h.
18041
18042 2003-08-17  Bruno Haible  <bruno@clisp.org>
18043
18044         * modules/euidaccess (Files): Add lib/euidaccess.h.
18045
18046 2003-08-17  Bruno Haible  <bruno@clisp.org>
18047
18048         * lib/strndup.h: New file.
18049
18050 2003-08-17  Bruno Haible  <bruno@clisp.org>
18051
18052         * gnulib-tool (func_create_testdir): Handle gl_USE_SYSTEM_EXTENSIONS
18053         like AC_GNU_SOURCE.
18054         * modules/extensions (configure.ac): Comment out the invocation of
18055         gl_USE_SYSTEM_EXTENSIONS.
18056
18057 2003-08-16  Paul Eggert  <eggert@twinsun.com>
18058
18059         Merges from coreutils, etc.
18060         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Insert ':' to prevent a syntax
18061         error in gl_FUNC_MATCH.  This fixes a bug I introduced on 2003-05-28.
18062         * m4/readlink.m4 (gl_PREREQ_READLINK): Renamed from gl_PREREQ_READLINE,
18063         fixing a typo.
18064         * m4/host-os.m4 (UTILS_HOST_OS): Add GNU/NetBSD, GNU/FreeBSD.
18065         * m4/hash.m4 (gl_HASH): Use AM_STDBOOL_H, not AC_HEADER_STDBOOL.
18066
18067 2003-08-16  Paul Eggert  <eggert@twinsun.com>
18068
18069         Document merge from coreutils.
18070         * modules/alloca: Append $(ALLOCA_H) to BUILT_SOURCES.
18071         * modules/fnmatch: Append $(FNMATCH_H) to BUILT_SOURCES.
18072         * modules/utime: Add m4/utimes-null.m4.
18073
18074 2003-08-16  Paul Eggert  <eggert@twinsun.com>
18075
18076         * lib/regex.h, strdup.c, strtoll.c, strtoul.c: Do not normalize white
18077         space, undoing this 2003-08-12 change:
18078         <http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00080.html>
18079
18080 2003-08-16  Paul Eggert  <eggert@twinsun.com>
18081
18082         * config/srclist.txt: Get regex.h, strdup.c, strtoll.c,
18083         strtoul.c from libc, undoing this 2003-08-12 change:
18084         <http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00080.html>
18085
18086 2003-08-16  Jim Meyering  <jim@meyering.net>
18087
18088         Merges from coreutils.
18089         * m4/readdir.m4 (GL_FUNC_READDIR): Change name to have GL_ (not jm_)
18090         prefix.  Adjust cache variables similarly.  Create 500 rather than
18091         just 300 files, to exercise bug on Darwin6.5, too.
18092         * m4/perl.m4 (jm_PERL): Use $am_missing_run, not undefined
18093         $missing_dir.
18094         * m4/jm-winsz1.m4: Require AC_SYS_POSIX_TERMIOS, not
18095         AM_SYS_POSIX_TERMIOS.
18096         Reported by mkc@mathdogs.com.
18097         Also change use of $am_cv_sys_posix_termios
18098         to $ac_cv_sys_posix_termios.  Reported by Andreas Schwab.
18099         * m4/getgroups.m4 (jm_FUNC_GETGROUPS): Rewrite to use AC_FUNC_GETGROUPS
18100         and (if needed) to call AC_LIBOBJ and to set GETGROUPS_LIB.
18101         * m4/fsusage.m4 [__GLIBC__]: GNU libc's statvfs stats each mount point
18102         in /proc/mounts until it finds one with matching device number.  This
18103         is unnecessary when the FILE argument *is* a mount point.  No stat call
18104         is necessary in that case.  So, disable the statvfs-testing code on
18105         systems with GNU libc.  Reported by Andrei Gaponenko via Tim Waugh
18106         as RedHat bug# 84846.
18107         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size
18108         to 1MB, so as not to render systems with no stack size limit (e.g.,
18109         linux-2.2.x) unusable.  Suggestion and code from Bruno Haible.
18110         Include <unistd.h>.  On some systems,
18111         it is required for the definition of _SC_PAGESIZE.
18112
18113 2003-08-16  Jim Meyering  <jim@meyering.net>
18114
18115         Merge from coreutils.
18116         * lib/xstrtoimax.c: #else #if -> #elif.
18117         * lib/xstrtoumax.c: Likewise.
18118
18119 2003-08-16  Jim Meyering  <jim@meyering.net>
18120
18121         * m4/utimes.m4 (gl_FUNC_UTIMES): New file.
18122         * m4/utimes.m4: Removed.
18123         * m4/utimes-null.m4: Renamed from utimes.m4.
18124
18125         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size
18126         to 1MB, so as not to render systems with no stack size limit (e.g.,
18127         linux-2.2.x) unusable.  Suggestion and code from Bruno Haible.
18128         Include <unistd.h>.  On some systems,
18129         it is required for the definition of _SC_PAGESIZE.
18130
18131 2003-08-16  Jim Meyering  <jim@meyering.net>
18132         and Paul Eggert  <eggert@cs.ucla.edu>
18133
18134         Merges from coreutils, etc.
18135
18136         * m4/jm-macros.m4 (AC_LANG_SOURCE(C)): New macro, undefine, then define
18137         using the latest version from cvs.  This avoids problems with #line
18138         directives using a vendor (Sun) compiler.
18139         (jm_MACROS): Bump prerequisite from 2.52g to 2.57.
18140         Don't set GETGROUPS_LIB here; now it's
18141         done via getgroups.m4's wrapper function.
18142         AC_SUBST OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, and MAN here,
18143         rather than just in sh-util/configure.in, so that the
18144         now-shared-by-fileutils-and-textutils lib/Makefile.am are all the
18145         same.
18146         Use AC_CONFIG_LIBOBJ_DIR(lib) to tell the new
18147         AC_FUNC_GETLOADAVG where to find getloadavg.c.
18148         Require AC_FUNC_FTW, gt_INTTYPES_PRI, gl_CLOCK_TIME,
18149         UTILS_SYS_OPEN_MAX, GL_FUNC_GETCWD_PATH_MAX, GL_FUNC_READDIR,
18150         gl_FSUSAGE, gl_MOUNTLIST, AC_FUNC_CANONICALIZE_FILE_NAME.
18151         Remove code that is now done by the newly-required macros.
18152         Append $(EXEEXT) to DF_PROG.
18153         AC_LIBOBJ fchdir-stub if fchdir doesn't exist; similarly for fchown.
18154         Do not invoke or require the following here,
18155         since prereq.m4 or some gnulib .m4 now does this for us:
18156         gl_REGEX, UTILS_FUNC_MKDIR_TRAILING_SLASH, jm_BISON, gl_FUNC_MKTIME,
18157         jm_FUNC_LSTAT, jm_FUNC_STAT, jm_FUNC_REALLOC, jm_FUNC_MALLOC,
18158         jm_FUNC_NANOSLEEP, jm_FUNC_READDIR, jm_FUNC_MEMCMP,
18159         jm_FUNC_GLIBC_UNLOCKED_IO, AC_FUNC_FNMATCH_GNU, jm_FUNC_PUTENV,
18160         jm_AC_PREREQ_XSTRTOUMAX, jm_AC_PREREQ_XSTRTOIMAX,
18161         AC_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, AC_FUNC_VPRINTF,
18162         vb_FUNC_RENAME, UTILS_FUNC_MKSTEP, jm_FUNC_UTIME, AM_FUNC_GETLINE,
18163         AC_FUNC_OBSTACK.
18164         Do not replace the following functions, as this is now the job
18165         of some gnulib .m4: strcasecmp, strncasecmp, dup2, gethostname,
18166         getusershell, sig2str, strcspn, stpcpy, strstr, strtol, strtoul
18167         strpbrk, euidaccess, memcmp, rmdir, rpmatch, strndup, strverscmp,
18168         atexit getpass, strdup, getpagesize.
18169         Replace 'raise'.
18170         Do not check for the following functions, as this is now the job
18171         of some gnulib .m4: bcopy, canonicalize_file_name, fchdir, ftime,
18172         getcwd, getmntinfo, resolvepath.  But check for sysctl, setreuid,
18173         setregid.
18174         (jm_CHECK_ALL_HEADERS): Do not check for fenv.h.
18175         Check for sys/sysctl.h.
18176         (jm_CHECK_ALL_TYPES): Do not require AC_STRUCT_TM, AC_STRUCT_TIMEZONE,
18177         jm_CHECK_TYPE_STRUCT_TIMESPEC.  Invoke gt_TYPE_SSIZE_T instead
18178         of checking for ssize_t ourselves.
18179
18180         * m4/prereq.m4 (jm_PREREQ): Don't invoke macros; AC_REQUIRE them.
18181         Require every macro that gnulib/modules/* suggests for us.
18182         (jm_PREREQ_ADDEXT): New macro.
18183         (jm_PREREQ_STAT): Check for 'struct statfs' on Ultrix 4.4.
18184         Require jm_AC_TYPE_LONG_LONG instead of invoking it.
18185
18186         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): New macro.
18187         (gl_PHYSMEM): Use it.
18188         Also check for `table' function.
18189         Check for new headers and functions.
18190         Add check for sys/sysmp.h.
18191         With suggestions from Kaveh Ghazi.
18192         Ignore headers that are present but cannot be compiled.  This
18193         avoids spurious warnings on Solaris 9 sparc with Forte Developer 7
18194         C 5.4.
18195
18196 2003-08-15  Paul Eggert  <eggert@twinsun.com>
18197
18198         Document merge from coreutils.
18199         * modules/userspec: Depend on posixver.
18200         * modules/strftime: Depend on tzset.
18201
18202 2003-08-15  Paul Eggert  <eggert@twinsun.com>
18203
18204         * lib/config.charset, ref-add.sin, ref-del.sin: Use three spaces,
18205         rather than tab, after '#' in shell-script copyright notices.
18206         Suggested by Bruno Haible.
18207
18208 2003-08-15  Paul Eggert  <eggert@twinsun.com>
18209
18210         * config/srclist-update: Use three spaces, rather than tab, after '#'
18211         in shell-script copyright notices.  Suggested by Bruno Haible.
18212         Remove unnecessary parenthesization in regular expression.
18213
18214 2003-08-15  Jim Meyering  <jim@meyering.net>
18215
18216         Merge from coreutils.
18217         * lib/xgethostname.c: Include <stdlib.h>.
18218         (xghostname): Don't exit for anything other than memory-related
18219         failure; just return NULL.
18220         * lib/userspec.c: Include "posixver.h".
18221         (parse_user_spec): Accept `.' as a separator only
18222         in pre-POSIX-200112 mode.
18223         * lib/strtoimax.c: Use #elif rather than #else #if.
18224         * lib/strftime.c (my_strftime) [!_LIBC && HAVE_TZNAME && HAVE_TZSET]:
18225         Remove function, now that we can rely on a working tzset function.
18226         [!_LIBC]: Ensure that the required autoconf test has been run.
18227         [!defined _NL_CURRENT && HAVE_STRFTIME]:
18228         Use underlying_strftime for %r.
18229         * lib/sha.c: Merge in some clean-up and optimization changes from
18230         glibc.
18231         * lib/sha.c (sha_stream) [BLOCKSIZE]: Move definition to top of file.
18232         Ensure that it is a multiple of 64.
18233         Rearrange loop exit tests so as to avoid performing an
18234         additional fread after encountering an error or EOF.
18235         * lib/realloc.c: Update copyright date.
18236
18237 2003-08-15  Jim Meyering  <jim@meyering.net>
18238         and Paul Eggert  <eggert@twinsun.com>
18239
18240         Merge from coreutils.
18241         * lib/readutmp.h (HAVE_UTMPX_H): Undef if struct utmp has the ut_exit
18242         member but strut utmpx does not.  Needed for AIX 4.3.3.
18243         (UT_EXIT_E_TERMINATION, UT_EXIT_E_EXIT): Define.
18244
18245 2003-08-15  Jim Meyering  <jim@meyering.net>
18246         and Paul Eggert  <eggert@cs.ucla.edu>
18247
18248         Merges from coreutils, etc.
18249         * m4/strftime.m4 (_jm_STRFTIME_PREREQS):
18250         Require gl_FUNC_TZSET_CLOBBER.
18251         * m4/readutmp.m4 (gl_READUTMP): Check for ut_exit.ut_exit,
18252         ut_exit.e_exit, ut_exit.ut_termination, and ut_exit.e_termination
18253         members.
18254
18255 2003-08-14  Paul Eggert  <eggert@twinsun.com>
18256
18257         Help the merge from coreutils.
18258         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): New macro.
18259         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Use it.
18260         * m4/tzset.m4: Use it too.
18261
18262 2003-08-14  Paul Eggert  <eggert@twinsun.com>
18263
18264         * modules/tzset: New file.
18265
18266 2003-08-14  Jim Meyering  <jim@meyering.net>
18267
18268         Merges from coreutils.
18269         * modules/fnmatch: Use the `$(FNMATCH_H)' notation for AC_REPLACED
18270         variable names, rather than @FNMATCH_H@.
18271         * modules/alloca: Likewise for $(ALLOCA_H).
18272
18273         * modules/fnmatch (fnmatch.h): Use `$@' in the commands, in place of
18274         the three copies of the literal target, `fnmatch.h'.
18275         * modules/alloca (alloca.h): Likewise.
18276
18277 2003-08-14  Jim Meyering  <jim@meyering.net>
18278
18279         Merge from coreutils.
18280         * m4/tzset.m4: New file.
18281         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Move the
18282         MOUNTED_VMOUNT test to precede the MOUNTED_GETMNTENT1 tests, since
18283         otherwise, AIX 5.1 systems would end up using the latter.
18284         MOUNTED_GETMNTENT1 support is inadequate on such systems: 1) detecting
18285         whether a file system is remote doesn't work  2) the MOUNTED_VMOUNT
18286         code reports the HOSTNAME:/MOUNT_POINT, while the MOUNTED_GETMNTENT1
18287         code reports merely /MOUNT_POINT.  Reported by Mike Jetzer.
18288
18289 2003-08-14  Jim Meyering  <jim@meyering.net>
18290
18291         Merge from coreutils.
18292         * lib/obstack.h: Whitespace changes.
18293         * lib/mountlist.c: Remove anachronistic casts of xmalloc, xrealloc,
18294         and xcalloc return values.
18295         (read_filesystem_list) [MOUNTED_GETFSSTAT]:
18296         Use MNT_NOWAIT, rather than MNT_WAIT.  Otherwise, `df DIR' could
18297         hang on OSF/1 5.1 for DIR on both local and remote file systems.
18298         Reported by (and fix confirmed by) Nelson H. F. Beebe.
18299         (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
18300         error from mntctl.
18301         Use mntctl's return value to drive the entry-processing loop, since
18302         we can't rely on the value of the vmt_length member in the last
18303         entry.  On some systems doing so could result in exhausting
18304         virtual memory.  Based in part on a patch from Mike Jetzer.
18305
18306 2003-08-14  Jim Meyering  <jim@meyering.net>
18307         and Paul Eggert  <eggert@twinsun.com>
18308
18309         Merges from coreutils, plus other fixes.
18310         * lib/physmem.c: Merge in portability changes from gcc/libiberty
18311         to support AIX, IRIX, Tru64, and Windows.  See the ChangeLog there
18312         for credits and details.  Thanks to Kaveh Ghazi for helping
18313         to keep these files in sync.
18314         (ARRAY_SIZE): Define it.
18315         (physmem_total, physmem_available): Add comments. From Kaveh Ghazi.
18316         * lib/memcasecmp.c: Remove unnecessary parentheses after 'defined'.
18317         (memcasecmp): Don't assume size_t fits in unsigned int.
18318         Remove casts and duplicate code.
18319         * lib/md5.c: Include <string.h> and <stdlib.h> unconditionally.
18320         (memcpy): Remove definition.
18321         Merge in some clean-up and optimization changes from glibc.
18322         [BLOCKSIZE]: Move definition to top of file.
18323         Ensure that it is a multiple of 64.
18324         Rearrange loop exit tests so as to avoid performing an
18325         additional fread after encountering an error or EOF.
18326         * lib/md5.h (md5_uintptr): Define.
18327         * lib/makepath.c (CLEANUP_CWD): Report an error if we failed to
18328         return to the initial working directory.  Preserve errno
18329         for caller.
18330         * lib/idcache.c: Include "xalloc.h".
18331         (xmalloc, xrealloc): Remove decls.
18332         (getuser): Remove casts no longer required in C89.
18333         * lib/human.c: Include stdio.h, for sprintf.
18334         * lib/group-member.c: Include "xalloc.h".
18335         (xmalloc, xrealloc): Remove decls.
18336         (get_group_info): Remove casts no longer required in C89.
18337         * lib/getusershell.c (readname): Remove casts no longer required in
18338         C89.
18339         * lib/gettimeofday.c (rpl_gmtime, rpl_tzset): New functions.
18340         * lib/getline.c: Whitespace fix, from coreutils.
18341
18342 2003-08-13  Paul Eggert  <eggert@twinsun.com>
18343
18344         * m4/exclude.m4 (gl_EXCLUDE): Require AC_C_INLINE, AC_HEADER_STDC.
18345         Check for isascii.
18346
18347         * m4/gettext.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, lib-link.m4,
18348         lib-prefix.m4, longdouble.m4, po.m4, progtest.m4, signed.m4:
18349         Undo previous (whitespace-only) change.
18350
18351 2003-08-13  Paul Eggert  <eggert@twinsun.com>
18352
18353         * lib/exclude.c: Include <ctype.h>
18354         (IN_CTYPE_DOMAIN): New macro.
18355         (is_space): New fn.
18356         (add_exclude_file): If LINE_END is a space, ignore trailing spaces
18357         and empty lines.
18358
18359         * lib/argp-help.c, argp-parse.c, config.charset, getopt.h:
18360         Undo previous (whitespace-only) change.
18361
18362 2003-08-13  Paul Eggert  <eggert@twinsun.com>
18363
18364         * config/srclist-update: Change update back to the old behavior,
18365         leaving whitespace alone.  Use one 'sed' command rather than a
18366         pipeline.
18367         (fixlicense): Now a variable, not a function.
18368         (remove_trailing_blanks): Remove.
18369         (fixfile): Don't invoke unexpand or cat, or remove trailing blanks.
18370         * config/config.guess, config.sub, install-sh, missing, texinfo.tex:
18371         Undo previous (whitespace-only) change.
18372
18373 2003-08-12  Paul Eggert  <eggert@twinsun.com>
18374
18375         Merge from coreutils.
18376         * modules/euidaccess: Add lib_SOURCES, include for new
18377         file euidaccess.h
18378
18379 2003-08-12  Paul Eggert  <eggert@twinsun.com>
18380
18381         * m4/gettext.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, lib-link.m4,
18382         lib-prefix.m4, longdouble.m4, po.m4, progtest.m4, signed.m4:
18383         Normalize leading white space and remove trailing white space.
18384
18385         Merge from coreutils
18386         * m4/euidaccess.m4 (gl_FUNC_EUIDACCESS): Check for euidaccess decl.
18387
18388         * m4/lib-ld.m4, lib-link.m4, lib-prefix.m4: Regenerate from gettext
18389         0.12.1.  These files are now being upgraded automatically by
18390         ../config/srclist-update.
18391
18392 2003-08-12  Paul Eggert  <eggert@twinsun.com>
18393
18394         * lib/argp-help.c, argp-parse.c, config.charset, getopt.h:
18395         Normalize leading white space and remove trailing white space.
18396         * lib/ref-add.sin, ref-del.sin: Use '#' before empty line in copyright
18397         notice, as per ../config/srclist-update.
18398
18399         Merge from coreutils.
18400         * lib/euidaccess.h: New file.
18401         * lib/euidaccess.c: Include it.
18402         * lib/.cppi-disable: Add printf-args.h, printf-parse.h, stdbool_.h,
18403         vasnprintf.h, vasprintf.h.  Remove strdup.c, gettext.h.
18404         * lib/regex.h, strdup.c, strtoll.c, strtoul.c: Normalize white space.
18405
18406 2003-08-12  Paul Eggert  <eggert@twinsun.com>
18407
18408         * config/srclist-update: Add copyright notice.
18409         (remove_id_lines, remove_trailing_blanks): New constants.
18410         (fixfile): Use them to normalize spacing a bit in copied files.
18411         * config/config.guess, config.sub, install-sh, missing, texinfo.tex:
18412         Normalize leading white space and remove trailing white space.
18413
18414         * config/texinfo.tex: Sync with texinfo.
18415
18416         * config/srclist.txt: Don't get regex.h, strdup.c, strtoll.c,
18417         strtoul.c from libc, to merge coreutils whitespace changes.
18418
18419         * config/srclist.txt: Get the following m4 files from gettext:
18420         codeset.m4, gettext.m4, glibc21.m4, iconv.m4, intdiv0.m4,
18421         inttypes-pri.m4, lcmessage.m4, lib-ld.m4, lib-link.m4, lib-prefix.m4,
18422         longdouble.m4, nls.m4, po.m4, progtest.m4, signed.m4, wchar_t.m4,
18423         wint_t.m4.
18424
18425 2003-08-12  Karl Berry  <karl@gnu.org>
18426
18427         * config/srclist.txt: can't sync vasnprintf.c any more, changes have
18428         been made.
18429
18430 2003-08-11  Paul Eggert  <eggert@twinsun.com>
18431
18432         * modules/gnu-source, m4/gnu-source.m4:
18433         Remove; we're assuming Autoconf 2.54 or later now.
18434         Suggested by Bruno Haible.
18435         * MODULES.html.sh (func_all_modules): Remove gnu-source.
18436
18437 2003-08-11  Bruno Haible  <bruno@clisp.org>
18438
18439         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Also check for wcslen.
18440
18441 2003-08-11  Bruno Haible  <bruno@clisp.org>
18442
18443         * lib/vasnprintf.c (local_wcslen): New function, for Solaris 2.5.1.
18444         (vasnprintf): Use it instead of wcslen.
18445
18446 2003-08-11  Bruno Haible  <bruno@clisp.org>
18447
18448         * lib/stdbool_.h (_Bool): Undo last change; instead use a negative enum
18449         value to ensure that _Bool promotes to int. Use #define for _Bool when
18450         using the Solaris C compiler. Adds comments suggested by Paul Eggert.
18451
18452 2003-08-10  Karl Berry  <karl@gnu.org>
18453
18454         * lib/regex.h: update from libc (whitespace fix).
18455
18456 2003-08-09  Paul Eggert  <eggert@twinsun.com>
18457
18458         Merge some files from coreutils.  These changes were
18459         originally made by Jim Meyering.
18460         * lib/acl.c: Include <sys/types.h> before <sys/stat.h>;
18461         many older Unixes require this.
18462         * lib/alloca.c (alloca): Remove cast to argument of free;
18463         no longer needed in C89.
18464         * lib/alloca_.h, regex.h: Fix white space to match
18465         what GNU indent does.
18466
18467 2003-08-09  Paul Eggert  <eggert@twinsun.com>
18468
18469         * m4/regex.m4 (jm_INCLUDED_REGEX): Change "\201" to "\371";
18470         apparently Emacs's Unicode mode got confused before my 2003-08-05
18471         checkin.
18472
18473 2003-08-08  Paul Eggert  <eggert@twinsun.com>
18474
18475         * m4/extensions.m4: New file.
18476         * m4/timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC):
18477         Require gl_USE_SYSTEM_EXTENSIONS.
18478         * m4/unlocked-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO):
18479         Require gl_USE_SYSTEM_EXTENSIONS rather than AC_GNU_SOURCE.
18480
18481 2003-08-08  Paul Eggert  <eggert@twinsun.com>
18482
18483         * MODULES.html.sh (func_all_modules): Add extensions, gnu-source.
18484         * modules/extensions, modules/gnu-source: New files.
18485         * modules/timespec, modules/unlocked-io: Depend on extensions.
18486
18487 2003-08-07  Paul Eggert  <eggert@twinsun.com>
18488
18489         * modules/restrict: New file.
18490         * MODULES.html.sh (func_all_modules): Add restrict.
18491         * modules/regex: Depend on restrict.
18492
18493 2003-08-07  Paul Eggert  <eggert@twinsun.com>
18494
18495         * m4/restrict.m4: New file.
18496         * m4/regex.m4 (jm_PREREQ_REGEX): Add gl_C_RESTRICT.
18497
18498 2003-08-07  Bruno Haible  <bruno@clisp.org>
18499
18500         * modules/getndelim2 (Makefile.am): Add the files to EXTRA_DIST, not
18501         lib_SOURCES, because getndelim2.m4 now uses AC_LIBOBJ(getndelim2).
18502
18503 2003-08-07  Bruno Haible  <bruno@clisp.org>
18504
18505         * m4/getndelim2.m4 (gl_GETNDELIM2): Use AC_LIBOBJ(getndelim2). This
18506         makes the module 'getndelim2' compatible with the module 'getline'.
18507
18508 2003-08-05  Paul Eggert  <eggert@twinsun.com>
18509
18510         * m4/regex.m4 (jm_INCLUDED_REGEX): Replace a single non-ASCII
18511         byte with "\201" to avoid glitches when editing that source file
18512         with multi-gnome-terminal.
18513
18514 2003-08-05  Paul Eggert  <eggert@twinsun.com>
18515
18516         * lib/bumpalloc.h: Remove.
18517
18518 2003-08-05  Paul Eggert  <eggert@twinsun.com>
18519
18520         * MODULES.html.sh (func_all_modules): Remove bumpalloc.
18521         * modules/bumpalloc: Remove.
18522
18523 2003-08-04  Paul Eggert  <eggert@twinsun.com>
18524
18525         * lib/getloadavg.c: Change copyright notice and spacing to conform to
18526         GNU coding style.
18527
18528         Merge from coreutils.
18529         * lib/error.c [!USE_IN_LIBIO]: Omit this case; assume USE_IN_LIBIO is
18530         1. From glibc.
18531         * lib/getdate.y (date): Also accept dates like May-23-2003; suggestion
18532         from Karl Berry, implemented by Jim Meyering.
18533         * lib/getgroups.c: Include "xalloc.h" instead of declaring xalloc fns;
18534         from Dmitry V. Levin.
18535         Remove anachronistic cast of xrealloc.
18536         * lib/fnmatch_.h (__const): Remove.  Use 'const'.
18537         * lib/fnmatch_loop.c (NEW_PATTERN): Cast alloca return value to proper
18538         type. Otherwise, it wouldn't compile with at least /bin/cc on
18539         ymp-cray-unicos9.0.2.X.
18540         Combine two mostly-identical uses of alloca into one.
18541         Thanks to the Cray-Cyber project for access to a Cray Y-MP.
18542
18543 2003-08-04  Dave Love  <d.love@dl.ac.uk>
18544
18545         [From Emacs.]
18546
18547         * lib/getloadavg.c: Check `__unix' as well as `unix'.  Use #ifdef, not
18548         #if.  Check HAVE_LIBKSTAT as well as LOAD_AVE_TYPE.  Check
18549         F_SETFD, not FD_SETFD.  Use HAVE_STRUCT_NLIST_N_UN_N_NAME, not
18550         obsolete NLIST_NAME_UNION.
18551         [__GNU__]: Undef BSD and FSCALE.
18552         [!NLIST_STRUCT]: Remove conditional definition of NLIST_STRUCT.
18553
18554 2003-08-03  Paul Eggert  <eggert@twinsun.com>
18555
18556         * lib/stdbool_.h (_Bool): Make it signed char, instead of
18557         an enum type, so that it's guaranteed to promote to int.  See:
18558         <http://mail.gnu.org/archive/html/bug-gnulib/2003-07/msg00124.html>
18559
18560 2003-08-03  Karl Berry  <karl@gnu.org>
18561
18562         * config/depcomp: update from automake.
18563
18564 2003-07-31  Paul Eggert  <eggert@twinsun.com>
18565
18566         * lib/strerror.c: Include config.h, limits.h.  Declare sprintf.
18567         (strerror): Don't assume that a printable int fits in 14 bytes.
18568
18569 2003-07-31  Bruno Haible  <bruno@clisp.org>
18570
18571         * modules/getpass-gnu: New file.
18572         * MODULES.html.sh (func_all_modules): Add getpass-gnu.
18573
18574 2003-07-31  Bruno Haible  <bruno@clisp.org>
18575
18576         * m4/getpass.m4 (gl_FUNC_GETPASS_GNU): New macro.
18577
18578 2003-07-24  Karl Berry  <karl@gnu.org>
18579
18580         * config/missing: update from automake.
18581
18582 2003-07-24  Derek Robert Price  <derek@ximbiot.com>
18583             Bruno Haible  <bruno@clisp.org>
18584
18585         * lib/getline.h (getline, getdelim): Change return type to ssize_t.
18586         * lib/getline.c (getline, getdelim): Likewise.
18587         Remove _GNU_SOURCE define; now it's defined in config.h through
18588         m4/getline.m4.
18589
18590 2003-07-23  Karl Berry  <karl@gnu.org>
18591
18592         * config/config.sub: update from prep.
18593
18594 2003-07-22  Paul Eggert  <eggert@twinsun.com>
18595
18596         * modules/xalloc (Depends-on): Add exitfail.
18597         * modules/xmemcoll: Likewise.
18598
18599 2003-07-22  Paul Eggert  <eggert@twinsun.com>
18600
18601         * lib/xalloc.h (XCALLOC, XREALLOC, CCLONE): Fix under- and
18602         over-parenthesization in macros.
18603
18604         Sync with coreutils.
18605
18606         * lib/xalloc.h (XMALLOC, XCALLOC, XREALLOC): Remove casts not
18607         required by C99.
18608
18609         Use `exit_failure' for xalloc and xmemcoll instead of their own
18610         private exit-failure variables.
18611         * lib/xalloc.h (xalloc_exit_failure): Remove.
18612         * lib/xmalloc.c: Likewise.  Include exitfail.h.
18613         (xalloc_die): Use exit_failure instead of xalloc_exit_failure.
18614         * lib/xmemcoll.h (xmemcoll_exit_failure): Remove.
18615         * lib/xmemcoll.c: Likewise.  Include exitfail.h.
18616         (xmemcoll): Use exit_failure instead of xalloc_exit_failure.
18617
18618 2003-07-20  Jim Meyering  <jim@meyering.net>
18619
18620         * modules/closeout (Depends-on): Add exitfail.
18621         Suggestion from Bruno Haible.
18622
18623 2003-07-19  Karl Berry  <karl@gnu.org>
18624
18625         * config/config.sub: update from prep.
18626
18627 2003-07-18  Paul Eggert  <eggert@twinsun.com>
18628
18629         * lib/closeout.h (close_stdout_set_status, close_stdout_status):
18630         Remove.
18631         * lib/closeout.c: Likewise.  Include "closeout.h" right after config.h,
18632         to test that it can stand by itself.  Include "exitfail.h".
18633         Clients should set exit_failure instead.
18634         (EXIT_FAILURE): Remove; no longer needed.  Do not include <stdlib.h>.
18635
18636 2003-07-18  Bruno Haible  <bruno@clisp.org>
18637
18638         * modules/getndelim2: New file.
18639         * modules/getline: Share files with module getndelim2.
18640         * modules/getnline: Depend on getndelim2 instead of sharing files with
18641         it. Add getnline.c to lib_SOURCES.
18642         * MODULES.html.sh (func_all_modules): Add getndelim2.
18643
18644 2003-07-18  Bruno Haible  <bruno@clisp.org>
18645
18646         * m4/getndelim2.m4: New file.
18647         * m4/getline.m4 (AM_FUNC_GETLINE): Add AC_LIBOBJ of getndelim2.c and
18648         invoke gl_PREREQ_GETNDELIM2.
18649         (gl_PREREQ_GETLINE): Drop AC_HEADER_STDC, now done by
18650         gl_PREREQ_GETNDELIM2.
18651         * m4/getnline.m4 (gl_GETNLINE): Drop AC_HEADER_STDC, now done by
18652         gl_GETNDELIM2.
18653
18654 2003-07-18  Bruno Haible  <bruno@clisp.org>
18655
18656         * lib/getndelim2.h: New file.
18657         * lib/getndelim2.c: Make into a module of its own. Include config.h,
18658         getndelim2.h.
18659         (getndelim2): Make non-static. Change return type to ssize_t.
18660         * lib/getline.h: Change argument names.
18661         * lib/getline.c: Include getndelim2.h instead of getndelim2.c.
18662         * lib/getnline.c: Include getndelim2.h.
18663
18664 2003-07-18  Andreas Schwab  <schwab@suse.de>
18665
18666         * lib/memcoll.c (memcoll) [!HAVE_STRCOLL]: Clear errno.
18667
18668 2003-07-17  Karl Berry  <karl@gnu.org>
18669
18670         * config/config.sub: update from prep.
18671
18672 2003-07-17  Bruno Haible  <bruno@clisp.org>
18673
18674         * modules/getnline: New file.
18675         * modules/getline: Add lib/getndelim2.c to source file list.
18676         * MODULES.html.sh (func_all_modules): Add getnline.
18677
18678 2003-07-17  Bruno Haible  <bruno@clisp.org>
18679
18680         * m4/getnline.m4: New file.
18681
18682 2003-07-17  Bruno Haible  <bruno@clisp.org>
18683
18684         * m4/Makefile.am.in: Remove file.
18685         * m4/Makefile.am: Remove file.
18686         * m4/Makefile.in: Remove file.
18687
18688 2003-07-17  Bruno Haible  <bruno@clisp.org>
18689
18690         * lib/getnline.h: New file.
18691         * lib/getnline.c: New file.
18692         * lib/getndelim2.c: New file, extracted from getline.c.
18693         (getndelim2): Renamed from getdelim2, with added nmax argument.
18694         * lib/getline.c: Include getndelim2.c.
18695         (getdelim2): Moved out to getndelim2.c.
18696         (getline, getdelim): Update.
18697
18698 2003-07-17  Bruno Haible  <bruno@clisp.org>
18699
18700         * lib/Makefile.am: Remove file.
18701         * lib/Makefile.in: Remove file.
18702
18703 2003-07-17  Bruno Haible  <bruno@clisp.org>
18704
18705         * configure.in: Remove file.
18706         * Makefile.in: Remove file.
18707
18708 2003-07-17  Bruno Haible  <bruno@clisp.org>
18709
18710         * MODULES.html.sh: Put the </BODY> right before </HTML>.
18711
18712 2003-07-16  Karl Berry  <karl@gnu.org>
18713
18714         * config/srclist-update: was running fixlicense twice, which caused
18715                 texinfo.tex to be nullified for some reason.  Simplify,
18716                 $gplsrc is no longer needed as far as I can see?
18717
18718 2003-07-16  Jim Meyering  <jim@meyering.net>
18719
18720         * modules/save-cwd: Depend on xgetcwd.  From Derek Price.
18721
18722 2003-07-15  Paul Eggert  <eggert@twinsun.com>
18723
18724         * config/srclist.txt: Get the following files from gettext-runtime/intl
18725         instead: config.charset, localcharset.c, localcharset.h, ref-add.sin,
18726         ref-del.sin.  From Bruno Haible.
18727         * config/srclist-update (fixfile): Change grep pattern again, since the
18728         previous fix didn't work (there was another trailing $).  Use
18729         '[$]' to escape the $s.
18730
18731 2003-07-15  Karl Berry  <karl@gnu.org>
18732
18733         * lib/vasnprintf.c: update from gettext.
18734
18735 2003-07-15  Karl Berry  <karl@gnu.org>
18736
18737         * config/srclist-update (fixfile): Change grep pattern, since 'Id'
18738         gets expanded when surrounded by '$'.
18739
18740 2003-07-15  Jim Meyering  <jim@meyering.net>
18741
18742         * modules/save-cwd: Don't depend on error.  From Derek Price.
18743
18744 2003-07-15  Jim Meyering  <jim@meyering.net>
18745
18746         * lib/makepath.c (make_path): Enclose diagnostic in _(...).
18747
18748 2003-07-14  Simon Josefsson  <jas@extundo.com>
18749
18750         * modules/mempcpy: New file.
18751         * MODULES.html.sh (func_all_modules): Add mempcpy.
18752
18753 2003-07-14  Simon Josefsson  <jas@extundo.com>
18754
18755         * m4/mempcpy.m4: New file.
18756
18757 2003-07-14  Simon Josefsson  <jas@extundo.com>
18758
18759         * lib/mempcpy.h: New file.
18760         * lib/mempcpy.c: New file.
18761
18762 2003-07-14  Paul Eggert  <eggert@twinsun.com>
18763
18764         * modules/getdate, modules/posixtm: Depend on mktime.
18765
18766 2003-07-14  Paul Eggert  <eggert@twinsun.com>
18767
18768         * lib/ceill.c, expl.c, floorl.c, frexpl.c, ldexpl.c, mathl.h,
18769         sincosl.c, sqrtl.c, trigl.c, trigl.h, poll.c, poll_.h, mkstemp.c,
18770         unicodeio.c, unicodeio.h, unlocked-io.h:
18771         Switch from LGPL to GPL.
18772
18773 2003-07-14  Paul Eggert  <eggert@twinsun.com>
18774
18775         * lib/asnprintf.c, asprintf.c, config.charset, gettext.h,
18776         localcharset.c, localcharset.h, mkdtemp.c, printf-args.c,
18777         printf-args.h, printf-parse.c, printf-parse.h, ref-add.sin,
18778         ref-del.sin, setenv.c, unsetenv.c, vasnprintf.c, vasnprintf.h,
18779         vasprintf.c, vasprintf.h: Regenerate.  These files are now being
18780         updated automatically by ../config/srclist-update.  This changes
18781         their license from LPGL to GPL.
18782
18783 2003-07-14  Paul Eggert  <eggert@twinsun.com>
18784
18785         * config/srclist.txt: Add tons more gettext files.  $GETTEXT is now
18786         assumed to refer to the root of the most recent stable gettext version.
18787         * config/srclistvars.sh: Add defaults for eggert.
18788         * config/srclist-update: Convert LGPL to GPL in shell scripts, too.
18789         Match "This program" as well as "The program".  This is needed
18790         for gettext.
18791
18792 2003-07-14  Jim Meyering  <jim@meyering.net>
18793
18794         Don't emit diagnostics.  Let callers do that.
18795         * lib/save-cwd.c: Don't include "error.h".
18796         (save_cwd): Don't call error.  Ensure that errno is valid
18797         when returning nonzero.
18798
18799         * lib/save-cwd.h (restore_cwd): Update prototype.
18800         * lib/save-cwd.c (restore_cwd): Remove two parameters.
18801         Simplify.  Don't call error upon failure.  Let callers do that.
18802         (save_cwd): Mention that Irix 5.3 has the same problem as SunOS 4
18803         when auditing is enabled.  But don't bother updating the #if.
18804
18805 2003-07-11  Alexandre Duret-Lutz  <adl@gnu.org>
18806
18807         * lib/obstack.h (__INT_TO_PTR): Revert change of 2003-03-13;
18808         it breaks C++ compilation.
18809         [!__GNUC__ || !__STDC__] (obstack_finish): Cast result to void*.
18810
18811 2003-07-10  Simon Josefsson  <jas@extundo.com>
18812
18813         * modules/strchrnul (Makefile.am): Add strchrnul.h.
18814
18815 2003-07-10  Jim Meyering  <jim@meyering.net>
18816
18817         * m4/clock_time.m4: Remove trailing blank.
18818         * m4/intmax_t.m4: Likewise.
18819
18820 2003-07-10  Jim Meyering  <jim@meyering.net>
18821
18822         * lib/vasnprintf.c: Remove trailing blanks.
18823         Make cpp indentation consistent.
18824
18825 2003-07-09  Paul Eggert  <eggert@twinsun.com>
18826
18827         * lib/alloca_.h, euidaccess.c, getpass.c, memrchr.c, obstack.h,
18828         posixver.c, strftime.c, strnlen.c, strverscmp.c:
18829         Switch from LGPL to GPL.
18830
18831 2003-07-09  Paul Eggert  <eggert@twinsun.com>
18832
18833         * config/srclist.txt: Sort sublists.  Add
18834         $LIBCSRC/sysdeps/generic/strtoul.c. In comments, add more libc files
18835         that differ from gnulib for one reason or another; we'd like this list
18836         to be smaller but for now let's document what we have.
18837
18838 2003-07-08  Paul Eggert  <eggert@twinsun.com>
18839
18840         * config/srclist-update: Port to POSIX 1003.1-2001 hosts by avoiding
18841         the use of GNU extensions.  Change "x=`eval echo $x`" to the shorter
18842         and sweeter "eval x=$x".
18843         * config/srclist.txt: Get lib/argp* from glibc.
18844
18845 2003-07-07  Paul Eggert  <eggert@twinsun.com>
18846
18847         * lib/mktime.c: Fix some boundary cases and remove need for floating
18848         point.
18849
18850         Issue a compile-time diagnostic if time_t is floating point, or if
18851         two's complement arithmetic is not in effect, or if arithmetic
18852         right shift does not propagate the sign.  These assumptions were
18853         all in the original code but they weren't checked.
18854
18855         (TIME_T_MIDPOINT, verify): New macros.
18856         (__isleap): Remove; it has integer overflow problems.
18857         (leapyear): New function, without those problems.
18858         (ydhms_tm_diff): Remove; splitting into two parts.
18859         (ydhms_diff): New function, containing the arithmetic part of
18860         the old ydhms_tm_diff function.  Issue a compile-time
18861         diagnostic if we are not using C99 integer division.
18862         Avoid casts when possible.
18863         (guess_time_tm): New function, containing the checking part of
18864         the old ydhms_tm_diff function.  Return the new value, rather than
18865         the difference between it and the old.  Accept a new argument T
18866         so that *T specifies the old value.  Check for overflow in the result.
18867
18868         (__mktime_internal): Use a time_t offset, not a long int offset.
18869         This undoes the 2003-06-04 change, which is no longer needed now
18870         that we have better overflow checking.
18871         (localtime_offset): Likewise.
18872
18873         (__mktime_internal): Avoid harmful overflow on hosts where time_t
18874         and long are 64-bit but int is only 32-bit.
18875         (ydhms_diff): Use long int to store year1 and yday1.
18876         Issue a compile-time diagnostic if long int is not wide enough.
18877
18878         (__mktime_internal): Use long int to store adjusted year and yday.
18879         Use plain C rather than preprocessor commands, if that doesn't
18880         affect efficiency.
18881         Check for overflow (and try to repair) after each probe
18882         rather than checking only at the very end.  This avoids some bugs
18883         (e.g., southern hemisphere, behind GMT, and GMT offset at minimum time
18884         does not equal GMT offset at maximum time).
18885         Use integer to check for overflow rather than floating point; this
18886         is more portable to non-IEEE hosts, and is a tad faster.
18887         When we detect that we are oscillating between two values,
18888         don't check whether tm_isdst has the requested value, since
18889         we already know the answer.  When tm_isdst has the wrong value,
18890         use a different heuristic to find the right one, based on the
18891         extreme values actually observed in practice in tz2003a,
18892         rather than the (overly optimistic) "previous 3 calendar quarters".
18893
18894         (not_equal_tm, print_tm, check_result): Use "const T" rather than
18895         "T const" to accommodate glibc style.
18896         (check_result): Use less-confusing report format.  "long" -> "long int.
18897         (main): Likewise.
18898         Don't loop if the iteration overflows time_t.
18899         Allow a negative step in the iteration.
18900
18901 2003-07-06  Karl Berry  <karl@gnu.org>
18902
18903         * config/depcomp: update from automake.
18904         * config/config.sub: update from prep.
18905
18906 2003-07-03  Karl Berry  <karl@gnu.org>
18907
18908         * config/config.guess: update from prep.
18909
18910 2003-07-01  Paul Eggert  <eggert@twinsun.com>
18911
18912         * m4/xreadlink.m4 (gl_XREADLINK): Don't check for sys/types.h, since
18913         xreadlink.c now includes it unconditionally.
18914
18915 2003-07-01  Paul Eggert  <eggert@twinsun.com>
18916
18917         * lib/xreadlink.c: Include <sys/types.h> unconditionally, instead of
18918         having it depend on HAVE_SYS_TYPES_H.
18919
18920 2003-07-01  Bruno Haible  <bruno@clisp.org>
18921
18922         * m4/ssize_t.m4 (gt_TYPE_SSIZE_T): Don't include <unistd.h>.
18923         <sys/types.h> should be sufficient.
18924         Reported by Paul Eggert.
18925
18926 2003-06-26  Karl Berry  <karl@gnu.org>
18927
18928         * config/depcomp: update from automake.
18929
18930 2003-06-26  Bruno Haible  <bruno@clisp.org>
18931
18932         * modules/human: Depend on module stdbool.
18933
18934 2003-06-25  Bruno Haible  <bruno@clisp.org>
18935
18936         * modules/readlink: New file.
18937         * modules/xreadlink: Depend on it.
18938         * MODULES.html.sh (func_all_modules): Add readlink.
18939
18940 2003-06-25  Bruno Haible  <bruno@clisp.org>
18941
18942         * m4/readlink.m4: New file.
18943
18944 2003-06-25  Bruno Haible  <bruno@clisp.org>
18945
18946         * lib/readlink.c: New file.
18947
18948 2003-06-22  Karl Berry  <karl@gnu.org>
18949
18950         * config/srclist.txt: update mkinstalldirs from automake.
18951         * config/mkinstalldirs: update.
18952
18953 2003-06-22  Bruno Haible  <bruno@clisp.org>
18954
18955         Portability to mingw32.
18956         * m4/ssize_t.m4: New file, from GNU gettext.
18957         * m4/safe-read.m4 (gl_PREREQ_SAFE_READ): Require gt_TYPE_SSIZE_T.
18958         * m4/xreadlink.m4 (gl_XREADLINK): Require gt_TYPE_SSIZE_T.
18959
18960 2003-06-22  Bruno Haible  <bruno@clisp.org>
18961
18962         * modules/safe-read: Add m4/ssize_t.m4.
18963         * modules/xreadlink: Add m4/ssize_t.m4.
18964
18965 2003-06-20  Bruno Haible  <bruno@clisp.org>
18966
18967         Assume C89, so PARAMS isn't needed.
18968         * lib/unicodeio.h (PARAMS): Remove.
18969         * lib/unicodeio.c: Don't use PARAMS.
18970
18971 2003-06-18  Karl Berry  <karl@gnu.org>
18972
18973         * config/config.{guess,sub}: update from prep.
18974
18975 2003-06-18  Jim Meyering  <jim@meyering.net>
18976
18977         Merge changes from coreutils.
18978         * lib/readutmp.c: Include <string.h> and <stdlib.h> unconditionally.
18979         Remove explicit declarations of xmalloc and realloc.
18980         Include xalloc.h.
18981         (read_utmp): Remove anachronistic cast of xmalloc.
18982
18983 2003-06-17  Paul Eggert  <eggert@twinsun.com>
18984
18985         Assume C89, so PARAMS isn't needed.
18986         * lib/backupfile.h (PARAMS): Remove.  All uses removed.
18987         * lib/closeout.h, lib/dirname.h, lib/filemode.h, lib/fsusage.h,
18988         lib/getdate.h, lib/getline.h, lib/group-member.h, lib/hard-locale.h,
18989         lib/hash.h, lib/linebuffer.h, lib/long-options.h, lib/makepath.h,
18990         lib/memcasecmp.h, lib/memcoll.h, lib/modechange.h, lib/mountlist.h,
18991         lib/path-concat.h, lib/physmem.h, lib/posixtm.h, lib/quote.h,
18992         lib/readutmp.h, lib/same.h, lib/save-cwd.h, lib/savedir.h,
18993         lib/stdio-safer.h, lib/strtoimax.c, lib/strverscmp.h,
18994         lib/unistd-safer.h, lib/version-etc.h, lib/xalloc.h, lib/xreadlink.h,
18995         lib/xstrtod.h, lib/xstrtol.h: Likewise.
18996         * lib/filemode.h, lib/hard-locale.h, lib/memcoll.h, lib/modechange.h,
18997         lib/physmem.h, lib/same.h, lib/strverscmp.h: Do not include config.h;
18998         no longer needed. Anyway, config.h should always be included before any
18999         other file.
19000
19001 2003-06-11  Simon Josefsson  <jas@extundo.com>
19002
19003         * modules/sysexits: New file.
19004         * MODULES.html.sh (func_all_modules): Add sysexits.
19005
19006 2003-06-11  Simon Josefsson  <jas@extundo.com>
19007
19008         * lib/sysexit_.h: New file.
19009
19010 2003-06-11  Derek Price  <derek@ximbiot.com>
19011
19012         * lib/stat.c [LSTAT]: Compile/use slash_aware_lstat only if it is
19013         necessary.
19014
19015 2003-06-11  Bruno Haible  <bruno@clisp.org>
19016
19017         * m4/sysexits.m4: New file.
19018
19019 2003-06-10  Simon Josefsson  <jas@extundo.com>
19020
19021         * lib/argp.h: New file, from glibc.
19022         * lib/argp-ba.c: New file, from glibc.
19023         * lib/argp-eexst.c: New file, from glibc.
19024         * lib/argp-fmtstream.c: New file, from glibc.
19025         * lib/argp-fmtstream.h: New file, from glibc.
19026         * lib/argp-fs-xinl.c: New file, from glibc.
19027         * lib/argp-help.c: New file, from glibc.
19028         * lib/argp-namefrob.h: New file, from glibc.
19029         * lib/argp-parse.c: New file, from glibc.
19030         * lib/argp-pv.c: New file, from glibc.
19031         * lib/argp-pvh.c: New file, from glibc.
19032         * lib/argp-xinl.c: New file, from glibc.
19033
19034 2003-06-10  Simon Josefsson  <jas@extundo.com>
19035
19036         * modules/strchrnul: New file.
19037
19038 2003-06-10  Simon Josefsson  <jas@extundo.com>
19039
19040         * modules/argp: New file.
19041
19042 2003-06-10  Simon Josefsson  <jas@extundo.com>
19043
19044         * m4/strchrnul.m4: New file.
19045
19046 2003-06-10  Simon Josefsson  <jas@extundo.com>
19047
19048         * lib/strchrnul.h: New file.
19049         * lib/strchrnul.c: New file.
19050
19051 2003-06-10  Bruno Haible  <bruno@clisp.org>
19052
19053         * MODULES.html.sh (func_all_modules): Add strchrnul and argp.
19054
19055 2003-06-07  Karl Berry  <karl@gnu.org>
19056
19057         * config/config.{guess,sub}: update from prep.
19058
19059 2003-06-07  Jim Meyering  <jim@meyering.net>
19060
19061         * modules/strtod: Use $(...) notation, not @...@ for
19062         AC_REPLACE'd variables.
19063         * modules/localcharset: Likewise.
19064
19065 2003-06-07  Jim Meyering  <jim@meyering.net>
19066
19067         * lib/readtokens.h: Put `Free Software Foundation, Inc.'
19068         in place of my name in the copyright comment.
19069         Remove definition and uses of __P.
19070
19071         From coreutils.
19072         * lib/stat.c: Don't declare xmalloc explicitly.
19073         Instead, include "xalloc.h".
19074         * lib/readtokens.c (readtokens): Remove anachronistic casts of xmalloc,
19075         xrealloc, and xcalloc return values.
19076         * lib/xgetcwd.c (xgetcwd): Include "xgetcwd.h".
19077         Improve comment.
19078         * lib/xgetcwd.h: Remove definition/uses of PARAMS.
19079
19080 2003-06-07  Bruno Haible  <bruno@clisp.org>
19081
19082         * modules/poll (Makefile.am): Use explicit creation rule for poll.h, to
19083         avoid AC_CONFIG_LINKS.
19084         * modules/fnmatch (Makefile.am): Use explicit creation rule for
19085         fnmatch.h, to avoid AC_CONFIG_LINKS.
19086         * modules/alloca (Makefile.am): Make creation of alloca.h Ctrl-C safe.
19087
19088 2003-06-07  Bruno Haible  <bruno@clisp.org>
19089
19090         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH, gl_FUNC_FNMATCH_POSIX,
19091         gl_FUNC_FNMATCH_GNU): Set FNMATCH_H instead of invoking
19092         AC_CONFIG_LINKS. Needed to allow for a different name of the lib
19093         directory.
19094         * m4/poll.m4 (gl_FUNC_POLL): Set POLL_H instead of invoking
19095         AC_CONFIG_LINKS. Needed to allow for a different name of the lib
19096         directory.
19097
19098 2003-06-06  Jim Meyering  <jim@meyering.net>
19099
19100         Merge from coreutils.
19101         * lib/same.c: (same_name): Declare *_basename locals to be `const'.
19102         Consolidate declarations and initializations of *_base* locals.
19103
19104         Merge from coreutils.
19105         This avoids a core dump on systems without GNU putenv,
19106         when running `env -u SOME_ALREADY_UNSET_VARIABLE'.
19107         * lib/putenv.c (__set_errno, LOCK, UNLOCK): Define.
19108         (unsetenv): New static function, from GNU libc.
19109         (rpl_putenv): Use it.
19110
19111         * lib/modechange.c: Remove trailing blanks.
19112
19113         Merge from coreutils.
19114         * lib/fsusage.c: Remove declaration of statfs.
19115         It conflicted with one from OSF/1 5.1 in <sys/mount.h>.
19116
19117         * lib/posixtm.c: Include <stdbool.h> unconditionally.
19118
19119 2003-06-06  Jim Meyering  <jim@meyering.net>
19120
19121         * lib/stdbool_.h: Renamed from stdbool.h.in.
19122
19123 2003-06-06  Jim Meyering  <jim@meyering.net>
19124             Bruno Haible  <bruno@clisp.org>
19125
19126         * modules/stdbool: Reflect renaming: stdbool.h.in -> stdbool_.h.
19127         Adjust Makefile.am snippet not to redirect directly to target.
19128         Use $(STDBOOL_H) notation, not @STDBOOL_H@ for AC_REPLACE'd variables.
19129
19130 2003-06-05  Paul Eggert  <eggert@twinsun.com>
19131
19132         * lib/mktime.c (__mktime_internal): When resolving a tm_isdst
19133         mismatch, look in future quarters as well as past.  This fixes a
19134         bug when processing fall-backwards gaps immediately after a long
19135         period of daylight-saving time.
19136
19137         * lib/mktime.c: Assume freestanding C89 or better.
19138         (HAVE_LIMITS_H): Remove.  Assume it's 1.
19139         (__P): Remove; not used.
19140         (CHAR_BIT, INT_MIN, INT_MAX): Remove; <limits.h> defines them.
19141         (mktime, not_equal_tm, print_tm, check_result,
19142         main): Use prototypes.  Use const * where appropriate.
19143         (main): Fix typo in testing code that uncovered by above changes.
19144         (Local Variables): Remove -DHAVE_LIMITS_H from compile-command.
19145
19146 2003-06-04  Paul Eggert  <eggert@twinsun.com>
19147
19148         * m4/human.m4 (gl_HUMAN): Require AM_STDBOOL_H.  Check for
19149         locale.h, localeconv.  This merges changes from coreutils.
19150
19151         * m4/mktime.m4 (AC_FUNC_MKTIME): New macro, taken from Autoconf CVS.
19152         It can be removed after the next Autoconf is released.
19153         * m4/exclude.m4 (gl_EXCLUDE): Don't check for sys/types.h; no loner
19154         needed.
19155
19156 2003-06-04  Paul Eggert  <eggert@twinsun.com>
19157
19158         * lib/mktime.c: Fix Debian bug 177940
19159         <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=177940>.
19160         (localtime_offset): Now long int, not time_t, because we want it
19161         to be guaranteed to be signed.  All uses changed.
19162         (__mktime_internal): If overflow would occur when adding offset,
19163         don't add it.
19164
19165         Merge 'human' changes from coreutils.  Rewrite to support
19166         locale-specific notations like thousands separators.
19167         * lib/human.c: Simplify authorship notice.
19168         Include human.h immediately after config.h.
19169         <sys/types.h>, <stdio.h>: Do not include; no longer needed.
19170         <limits.h>: Do not include, since human.h does.
19171         (SIZE_MAX, UINTMAX_MAX): New macros.
19172         <strings.h>: Include if HAVE_STRINGS_H, not if !HAVE_STRING_H.
19173         <locale.h>: Include if HAVE_LOCALE_H and HAVE_LOCALECONV.
19174         (HUMAN_READABLE_SUFFIX_LENGTH_MAX): New macro.
19175         (power_letter): Renamed from suffixes.
19176         (generate_suffix_backwards): Remove.
19177         (adjust_value): Now takes int style (because of human.h changes)
19178         and long double value (for greater precision on some platforms).
19179         (group_number): New function.
19180         (human_readable): Use it.  Use integer options, not enum.
19181         Put the options before the sizes in the arg list.
19182         Support all the new options.
19183         The old human_readable function has been removed;
19184         use inttostr.h instead.
19185         (human_readable, default_block_size, humblock):
19186         Use uintmax_t, not int, for block sizes.
19187         (human_readable_inexact, block_size_types): Remove.
19188         (block_size_opts): New constant.
19189         (human_options): Renamed from human_block_size, with new signature
19190         that allows block sizes up to UINTMAX_MAX.  All callers changed.
19191         * lib/human.h: Add copyright and authorship notice.
19192         Include <limits.h> and <stdbool.h> unconditionally.
19193         (PARAMS): Remove.  All uses removed.
19194         (LONGEST_HUMAN_READABLE): Add support for thousands separator.
19195         (enum human_inexact_style): Remove tag; now a nameless enum.
19196         (human_floor, human_ceiling, human_round_to_even): Now have
19197         values 2, 0, 1 rather than -1, 1, 0.
19198         (human_group_digits, human_suppress_point_zero, human_autoscale,
19199         human_base_1024, human_SI, human_B): New constants.
19200         (human_readable_inexact, human_block_size): Remove.
19201         (human_readable): Size args are now uintmax_t, not int.
19202         (human_options): New decl.
19203
19204         * lib/exclude.c: (new_exclude, add_exclude): Remove casts that are
19205         unnecessary now that we assume C89 or better.  This change
19206         imported from coreutils.
19207
19208         * lib/mktime.c (__mktime_internal): Do not reject negative timestamps
19209         arbitrarily.  This is the same patch as 2003-05-28, but it got lost
19210         in the 2003-05-30 sync from glibc.
19211
19212         .h files should stand alone, but we shouldn't include <sys/types.h>
19213         if we can get away with just <stddef.h>.
19214
19215         * lib/__fpending.h, addext.c, backupfile.c, exclude.c, getline.c,
19216         malloc.c, putenv.c, realloc.c, strcasecmp.c: Include <stddef.h>
19217         rather than <sys/types.h>, as we merely need size_t.
19218         * lib/dirname.h, memcoll.h, xalloc.h, xmemcoll.h: Include <stddef.h>,
19219         to get size_t.
19220         * lib/hash.h, linebuffer.h, readtokens.h, stdio-safer.h, version-etc.h:
19221         Include <stdio.h>, to get FILE.
19222         * lib/memcasecmp.c: Don't include <sys/types.h>, as we can assume
19223         memcasecmp.h has included <stddef.h> and all we need is size_t.
19224         * lib/memcoll.c: Include "memcoll.h", which gets us size_t and checks
19225         our interface, instead of including <sys/types.h>
19226
19227 2003-06-04  Paul Eggert  <eggert@twinsun.com>
19228
19229         * config/srclist.txt ($LIBCSRC/time/mktime.c lib gpl): Comment out for
19230         now, as glibc mktime is buggy on non-glibc systems.
19231
19232 2003-06-03  Karl Berry  <karl@gnu.org>
19233
19234         * config/config.sub: update from prep.
19235
19236 2003-06-02  Paul Eggert  <eggert@twinsun.com>
19237
19238         [from coreutils]
19239         Fix some minor time-related bugs with POSIX time arguments.
19240         Some valid time stamps were being rejected (notably -1, and
19241         time stamps before 1900 on 64-bit hosts).  And some invalid
19242         time stamps were being accepted, e.g. September 31.
19243
19244         * lib/posixtm.h (posixtime): Return bool instead of time_t, so
19245         that we can return (time_t) -1 successfully.
19246         * lib/posixtm.c: Likewise.
19247         [HAVE_STDBOOL_H]: Include <stdbool.h>.
19248         (bool, false, true) [!HAVE_STDBOOL_H]: New type.
19249         (t): Remove static var.
19250         (year, posix_time_parse): Now takes struct tm * arg to modify, instead
19251         of static var.  All uses changed.
19252         (year): Do not reject years before 1900; they can occur with
19253         64-bit time_t.
19254         (posix_time_parse): Do not check for out-of-range components;
19255         that is now the caller's responsibility, since our checks were
19256         only approximations.
19257         (posixtime): Use mktime to check for out-of-range components,
19258         since it knows them exactly.
19259         If mktime returns (time_t) -1, check whether an error actually occurred
19260         by invoking localtime on -1.
19261         (main) [TEST_POSIXTIME]: Check for input data errors, and report
19262         posixtime failures better.
19263         Improve the test data (in comments only).
19264
19265 2003-06-02  Karl Berry  <karl@gnu.org>
19266
19267         * config/mkinstalldirs (version): new variable.
19268         (--version): new option.
19269         (usage): improve message.
19270
19271 2003-05-30  Karl Berry  <karl@gnu.org>
19272
19273         * lib/mktime.c: update from libc.
19274
19275 2003-05-30  Bruno Haible  <bruno@clisp.org>
19276
19277         * modules/gettext: Add files m4/nls.m4 and m4/po.m4.
19278         * config/config.rpath: Upgrade to gettext-0.12.1.
19279
19280 2003-05-30  Bruno Haible  <bruno@clisp.org>
19281
19282         * m4/gettext.m4: Upgrade to gettext-0.12.1.
19283         * m4/nls.m4: New file, from gettext-0.12.1.
19284         * m4/po.m4: New file, from gettext-0.12.1.
19285         * m4/progtest.m4: Upgrade to gettext-0.12.1.
19286
19287 2003-05-30  Bruno Haible  <bruno@clisp.org>
19288
19289         * lib/config.charset: Upgrade to gettext-0.12.1 and libiconv-1.9.1.
19290         * lib/localcharset.h: Likewise.
19291         * lib/localcharset.c: Likewise.
19292
19293 2003-05-29  Karl Berry  <karl@gnu.org>
19294
19295         * config/config.rpath: update from gettext.
19296
19297 2003-05-28  Paul Eggert  <eggert@twinsun.com>
19298
19299         Assume the headers required for C89 freestanding compilers.
19300         * m4/backupfile.m4 (gl_BACKUPFILE): Don't check for limits.h.
19301         * m4/fsusage.m4 (gl_PREREQ_FSUSAGE_EXTRA): Likewise.
19302         * m4/human.m4 (gl_HUMAN): Likewise.
19303         * m4/pathmax.m4 (gl_PATHMAX): Likewise.
19304         * m4/rpmatch.m4 (gl_FUNC_RPMATCH): Likewise.
19305         * m4/userspec.m4 (gl_USERSPEC): Likewise.
19306         * m4/xreadlink.m4 (gl_XREADLINK): Likewise.
19307         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
19308         * m4/quote.m4 (gl_QUOTE): Don't check for stddef.h.
19309
19310 2003-05-28  Paul Eggert  <eggert@twinsun.com>
19311
19312         Assume the headers required for C89 freestanding compilers.
19313         * lib/addext.c, lib/backupfile.c, lib/fsusage.c, lib/human.c,
19314         lib/pathmax.h, lib/rpmatch.c, lib/userspec.c, lib/xreadlink.c,
19315         lib/xstrtol.c: Include <limits.h> without checking for HAVE_LIMITS_H.
19316         * lib/backupfile.c, lib/fsusage.c, lib/hash.c, lib/human.c,
19317         lib/safe-read.c, lib/userspec.c, lib/xstrtol.c (CHAR_BIT): Don't
19318         define, since <limits.h> is guaranteed to do that.
19319         * lib/fatal.c: Include <stdarg.h> without checking for __STDC__.
19320         * lib/exclude.c: Include <stdbool.h> unconditionally.
19321         * lib/tempname.c: Include <stddef.h> unconditionally.
19322         * lib/hash.c: Include <limits.h>, since we no longer define CHAR_BIT.
19323         * lib/modechange.c, rpmatch.c (NULL): Don't define, since
19324         <stddef.h> does that.
19325         * lib/quote.c: Dont include <stddef.h> or <sys/types.h>; not needed.
19326         * lib/safe-read.c (INT_MAX): Don't define, since <limits.h> does that.
19327         * lib/safe-read.c (TYPE_MINIMUM, TYPE_MAXIMUM): Remove; no longer
19328         needed.
19329         * lib/xstrtol.c: Likewise.
19330         * lib/safe-read.c: Remove TYPE_SIGNED; no longer needed.
19331         * lib/savedir.c: Include <stddef.h> instead of defining NULL.
19332
19333         * lib/addext.c (addext): Use assignment rather than cast, to avoid
19334         warnings on some platforms.
19335
19336         * lib/mktime.c (__mktime_internal): Do not reject negative timestamps
19337         arbitrarily.
19338
19339 2003-05-26  Jim Meyering  <jim@meyering.net>
19340
19341         Merge in a change from coreutils:
19342         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Test the cache variable, not one
19343         that is guaranteed to be `no'.  Use `no_such_member' to indicate
19344         that condition, rather than `-1' which is slightly misleading.
19345         Change the name of the cache variable to have the gl_ prefix.
19346         Prompted by a patch from Richard Dawe for DJGPP.
19347
19348 2003-05-24  Karl Berry  <karl@gnu.org>
19349
19350         * config/config.guess: update from prep.
19351
19352 2003-05-22  Karl Berry  <karl@gnu.org>
19353
19354         * gnulib-tool (func_usage): =LIBRARY not =libRARY in help msg.
19355
19356 2003-05-20  Karl Berry  <karl@gnu.org>
19357
19358         * config/config.guess: update from prep.
19359
19360 2003-05-18  Karl Berry  <karl@gnu.org>
19361
19362         * config/srclistvars.sh (TEXMF): use TEXMFROOT instead, since TEXMF
19363         might actually be set by the user.
19364
19365         * config/depcomp, install-sh, mdate-sh: update from automake.
19366
19367 2003-05-17  Bruno Haible  <bruno@clisp.org>
19368
19369         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Fix a quoting bug leading to an
19370         invalid expansion for AC_EGREP_CPP.
19371         * m4/strtoimax.m4 (gl_FUNC_STRTOIMAX): Likewise.
19372         * m4/strtoumax.m4 (gl_FUNC_STRTOUMAX): Likewise.
19373         Suggested by Akim Demaille <akim@epita.fr> in
19374         http://mail.gnu.org/archive/html/bug-autoconf/2003-05/threads.html
19375
19376 2003-05-12  Jim Meyering  <jim@meyering.net>
19377
19378         * lib/strftime.c (my_strftime): Let the `-' (no-pad) flag affect
19379         the space-padded-by-default conversion specifiers, %e, %k, %l.
19380
19381 2003-05-12  Bruno Haible  <bruno@clisp.org>
19382
19383         * lib/linebreak.c (iconv_string_length): Don't return -1 just because
19384         the string is longer than 4 KB.
19385
19386 2003-05-11  Karl Berry  <karl@gnu.org>
19387
19388         * config/config.{guess,sub}: update from prep.
19389
19390 2003-05-09  Bruno Haible  <bruno@clisp.org>
19391
19392         * modules/error: Add m4/strerror_r.m4 to file list.
19393
19394 2003-05-03  Bruno Haible  <bruno@clisp.org>
19395
19396         Upgrade to Unicode-4.0.
19397         * lib/linebreak.c (nonspacing_table_data): Change width of U+00AD,
19398         U+0350..U+0357, U+035D..U+035F, U+0600..U+0603, U+0610..U+0615,
19399         U+0656..U+0658, U+0A01, U+0AE2..U+0AE3, U+0CBC, U+17B4..U+17B5,
19400         U+17DD, U+1920..U+1922, U+1927..U+192B, U+1932, U+1939..U+193B
19401         from 1 to 0. Change width of U+0CBF, U+0CC6, U+180E from 0 to 1.
19402         (uc_width): Change width of U+4DC0..U+4DFF from 2 to 1. Change width
19403         of U+2A6D7..U+2F7FF, U+2FA1E..U+2FFFD, U+30000..U+3FFFD from 1 to 2.
19404         Change width of U+E0100..U+E01EF from 1 to 0.
19405
19406 2003-04-25  Jim Meyering  <jim@meyering.net>
19407
19408         * lib/copy-file.c (copy_file_preserving): Declare buf_size to be
19409         of type size_t, not int.
19410
19411 2003-04-25  Bruno Haible  <bruno@clisp.org>
19412
19413         * lib/copy-file.c: Include <stddef.h>, for size_t.
19414
19415 2003-04-21  Paul Eggert  <eggert@twinsun.com>
19416
19417         * m4/error.m4 (gl_ERROR): Do not put under dynamic conditions some
19418         code which expansion is under static control.  Patch imported from
19419         Akim Demaille's patch to Bison; see
19420         <http://mail.gnu.org/archive/html/bison-patches/2003-03/msg00057.html>.
19421
19422 2003-04-14  Bruno Haible  <bruno@clisp.org>
19423
19424         * m4/error.m4 (jm_PREREQ_ERROR): Use AC_FUNC_VPRINTF.
19425
19426 2003-04-11  Jim Meyering  <jim@meyering.net>
19427
19428         Merge changes from Coreutils.
19429
19430         2003-03-22  Jim Meyering  <jim@meyering.net>
19431
19432         * lib/strftime.c (widen): Cast alloca return value to proper type.
19433
19434         2003-01-19  Ulrich Drepper  <drepper@redhat.com>
19435
19436         From GNU libc.
19437         * lib/strftime.c (my_strftime): Handle very large width
19438         specifications for numeric values correctly.  Improve checks for
19439         overflow.
19440
19441         2003-01-19  Jim Meyering  <jim@meyering.net>
19442
19443         * lib/strftime.c (widen) [COMPILE_WIDE]: Merge nearly-identical
19444         definitions.
19445         (nl_get_alt_digit) [! defined my_strftime]: Define.
19446         (my_strftime) [_NL_CURRENT]: Merge nearly-identical uses of
19447         _nl_get_alt_digit and _nl_get_walt_digit.
19448
19449         * lib/strftime.c (my_strftime): Merge in locale-related changes from
19450         libc. These changes have no effect outside of _LIBC.
19451
19452 2003-04-10  Bruno Haible  <bruno@clisp.org>
19453
19454         * modules/findprog: New file.
19455         * MODULES.html.sh (func_all_modules): Add it.
19456
19457 2003-04-10  Bruno Haible  <bruno@clisp.org>
19458
19459         * m4/findprog.m4: New file.
19460         * m4/eaccess.m4: New file.
19461
19462 2003-04-10  Bruno Haible  <bruno@clisp.org>
19463
19464         * lib/findprog.h: New file, from GNU gettext.
19465         * lib/findprog.c: New file, from GNU gettext.
19466
19467 2003-04-05  Jim Meyering  <jim@meyering.net>
19468
19469         Merge changes from Coreutils.
19470
19471         * lib/exclude.h (PARAMS): Remove definition and uses.
19472         * lib/exclude.c: Remove uses of `PARAMS'.
19473
19474         * lib/dirname.c [TEST_DIRNAME]: Update build instructions for test.
19475         Add test-cases for DOS filenames. Declare program_name.
19476         (main): Set up program_name.  Patch by Rich Dawe.
19477
19478         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
19479         error from mntctl.
19480         Use mntctl's return value to drive the entry-processing loop, since
19481         we can't rely on the value of the vmt_length member in the last
19482         entry.  On some systems doing so could result in exhausting
19483         virtual memory.  Based in part on a patch from Mike Jetzer.
19484
19485 2003-04-04  Bruno Haible  <bruno@clisp.org>
19486
19487         * modules/linebreak: New file.
19488         * MODULES.html.sh (func_all_modules): Add it.
19489
19490 2003-04-04  Bruno Haible  <bruno@clisp.org>
19491
19492         * m4/linebreak.m4: New file.
19493
19494 2003-04-04  Bruno Haible  <bruno@clisp.org>
19495
19496         * lib/linebreak.h: New file, from GNU gettext.
19497         * lib/linebreak.c: New file, from GNU gettext with slight
19498         modifications.
19499         * lib/lbrkprop.h: New file, from GNU gettext.
19500
19501 2003-04-03  Bruno Haible  <bruno@clisp.org>
19502
19503         * modules/utf8-ucs4: New file.
19504         * modules/utf16-ucs4: New file.
19505         * modules/ucs4-utf8: New file.
19506         * modules/ucs4-utf16: New file.
19507         * MODULES.html.sh (func_all_modules): Add them.
19508
19509 2003-04-03  Bruno Haible  <bruno@clisp.org>
19510
19511         * m4/utf-ucs4.m4: New file.
19512         * m4/ucs4-utf.m4: New file.
19513
19514 2003-04-03  Bruno Haible  <bruno@clisp.org>
19515
19516         * lib/utf8-ucs4.h: New file, from GNU gettext.
19517         * lib/utf16-ucs4.h: New file, from GNU gettext.
19518         * lib/ucs4-utf8.h: New file, from GNU gettext.
19519         * lib/ucs4-utf16.h: New file, from GNU gettext.
19520
19521 2003-04-02  Bruno Haible  <bruno@clisp.org>
19522
19523         * modules/binary-io: New file.
19524         * MODULES.html.sh (func_all_modules): Add it.
19525
19526 2003-04-02  Bruno Haible  <bruno@clisp.org>
19527
19528         * lib/binary-io.h: New file, from GNU gettext.
19529
19530 2003-04-01  Bruno Haible  <bruno@clisp.org>
19531
19532         * modules/pathname: New file.
19533         * MODULES.html.sh (func_all_modules): Add it.
19534
19535 2003-04-01  Bruno Haible  <bruno@clisp.org>
19536
19537         * lib/pathname.h: New file, from GNU gettext.
19538         * lib/concatpath.c: New file, from GNU gettext.
19539
19540 2003-03-30  Bruno Haible  <bruno@clisp.org>
19541
19542         * m4/copy-file.m4 (gl_COPY_FILE): Add check for chown().
19543
19544 2003-03-30  Bruno Haible  <bruno@clisp.org>
19545
19546         * lib/copy-file.c (copy_file_preserving): Don't set owner if the
19547         function chown() doesn't exist.
19548
19549 2003-03-28  Bruno Haible  <bruno@clisp.org>
19550
19551         * modules/copy-file: New file.
19552         * MODULES.html.sh (func_all_modules): Add it.
19553
19554 2003-03-28  Bruno Haible  <bruno@clisp.org>
19555
19556         * m4/copy-file.m4: New file.
19557
19558 2003-03-28  Bruno Haible  <bruno@clisp.org>
19559
19560         * lib/copy-file.h: New file, from GNU gettext.
19561         * lib/copy-file.c: New file, from GNU gettext.
19562
19563 2003-03-18  Jim Meyering  <jim@meyering.net>
19564
19565         * lib/quote.c (quote_n): Fix typo in comment.
19566
19567 2003-03-18  Bruno Haible  <bruno@clisp.org>
19568
19569         * m4/onceonly.m4: Use m4_defn instead of defn, for better error
19570         checking.
19571         * m4/onceonly_2_57.m4: Likewise.
19572
19573 2003-03-17  Bruno Haible  <bruno@clisp.org>
19574
19575         * m4/onceonly.m4: Require autoconf 2.54 or newer.
19576         (m4_quote): Remove macro.
19577         * m4/onceonly_2_57.m4: Require autoconf 2.54 or newer.
19578
19579 2003-03-14  Jim Meyering  <jim@meyering.net>
19580
19581         Merge changes from Coreutils.
19582         * lib/obstack.h (obstack_object_size): Declare temporary, __o,
19583         to be const, in order to avoid warnings.
19584         (obstack_room): Likewise.
19585         (obstack_empty_p): Likewise.
19586
19587 2003-03-14  Bruno Haible  <bruno@clisp.org>
19588
19589         * m4/onceonly_2_57.m4 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE,
19590         AC_CHECK_DECLS_ONCE): Quote AC_FOREACH variable-expansions properly.
19591
19592 2003-03-13  Paul Eggert  <eggert@twinsun.com>
19593
19594         Merge changes from Bison.
19595         * lib/obstack.h: (__INT_TO_PTR) [__STDC__]: Cast result to
19596         (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
19597         when compiling Bison 1.875's `bitset bset = obstack_alloc
19598         (bobstack, bytes);'.  Problem reported by Nelson H. F. Beebe.
19599         * lib/hash.c: Include <stdbool.h> unconditionally.
19600
19601 2003-03-13  Paul Eggert  <eggert@twinsun.com>
19602
19603         * m4/onceonly.m4 (m4_quote): New macro.
19604         (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
19605         Quote AC_FOREACH variable-expansions properly.
19606
19607 2003-03-13  Paul Eggert  <eggert@twinsun.com>
19608
19609         * doc/COPYING.DOC, fdl.texi: Sync with latest FSF version.
19610
19611 2003-03-09  Paul Eggert  <eggert@twinsun.com>
19612
19613         * lib/argmatch.c (EXIT_FAILURE): Define if the system doesn't.
19614         Reported by Bruce Becker; see:
19615         http://mail.gnu.org/archive/html/bug-bison/2003-03/msg00017.html
19616
19617 2003-03-03  Paul Eggert  <eggert@twinsun.com>
19618             Bruno Haible  <bruno@clisp.org>
19619
19620         * lib/mbswidth.h: Include <wchar.h>. Needed for UnixWare 7.1.1.
19621         Reported by John Hughes, see
19622         http://mail.gnu.org/archive/html/bug-bison/2003-02/msg00030.html
19623
19624 2003-02-20  Bruno Haible  <bruno@clisp.org>
19625
19626         * MODULES.html.sh (func_all_modules): Add poll.
19627
19628 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
19629
19630         * modules/poll: New file.
19631
19632 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
19633
19634         * lib/poll_.h: New file.
19635         * lib/poll.c: New file.
19636
19637 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
19638
19639         * m4/poll.m4: New file.
19640
19641 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
19642
19643         * modules/mathl: New file.
19644
19645 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
19646
19647         * lib/mathl.h: New file.
19648         * lib/acosl.c: New file.
19649         * lib/asinl.c: New file.
19650         * lib/atanl.c: New file.
19651         * lib/ceill.c: New file.
19652         * lib/cosl.c: New file.
19653         * lib/expl.c: New file.
19654         * lib/floorl.c: New file.
19655         * lib/frexpl.c: New file.
19656         * lib/ldexpl.c: New file.
19657         * lib/logl.c: New file.
19658         * lib/sincosl.c: New file.
19659         * lib/sinl.c: New file.
19660         * lib/sqrtl.c: New file.
19661         * lib/tanl.c: New file.
19662         * lib/trigl.c: New file.
19663         * lib/trigl.h: New file.
19664
19665 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
19666
19667         * m4/mathl.m4: New file.
19668
19669 2003-02-18  Bruno Haible  <bruno@clisp.org>
19670
19671         * MODULES.html.sh (func_all_modules): Add mathl.
19672
19673 2003-02-17  Bruno Haible  <bruno@clisp.org>
19674
19675         * modules/mkdtemp: New module.
19676         * MODULES.html.sh (func_all_modules): Add it.
19677
19678 2003-02-17  Bruno Haible  <bruno@clisp.org>
19679
19680         * m4/mkdtemp.m4: New file, from GNU gettext with modifications.
19681
19682 2003-02-17  Bruno Haible  <bruno@clisp.org>
19683
19684         * lib/mkdtemp.h: New file, from GNU gettext.
19685         * lib/mkdtemp.c: New file, from GNU gettext.
19686
19687 2003-02-02  Jim Meyering  <jim@meyering.net>
19688
19689         * m4/regex.m4 (jm_INCLUDED_REGEX): Detect broken re_search in
19690         e.g. glibc-2.2.93.
19691
19692 2003-01-31  Bruno Haible  <bruno@clisp.org>
19693
19694         * m4/rename.m4 (vb_FUNC_RENAME): Add a redirection from 'rename' to
19695         'rpl_rename'.
19696         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Add a redirection from 'strnlen' to
19697         'rpl_strnlen'.
19698         * m4/strtod.m4 (gl_FUNC_STRTOD): Add a redirection from 'strtod' to
19699         'rpl_strtod'.
19700         * m4/utime.m4 (jm_FUNC_UTIME): Add a redirection from 'utime' to
19701         'rpl_utime'.
19702
19703 2003-01-31  Bruno Haible  <bruno@clisp.org>
19704
19705         * lib/rename.c: #undef rename before defining rpl_rename.
19706         * lib/strnlen.c: #undef strnlen, define rpl_strnlen instead of strnlen.
19707
19708 2003-01-30  Bruno Haible  <bruno@clisp.org>
19709
19710         * modules/vasnprintf, modules/vasprintf: New modules.
19711         * MODULES.html.sh (func_all_modules): Add them.
19712
19713 2003-01-30  Bruno Haible  <bruno@clisp.org>
19714
19715         * m4/signed.m4: New file, from GNU gettext.
19716         * m4/longdouble.m4: New file, from GNU gettext.
19717         * m4/wchar_t.m4: New file, from GNU gettext.
19718         * m4/wint_t.m4: New file, from GNU gettext.
19719         * m4/vasnprintf.m4: New file.
19720         * m4/vasprintf.m4: New file.
19721
19722 2003-01-30  Bruno Haible  <bruno@clisp.org>
19723
19724         * lib/printf-args.h: New file, from GNU gettext.
19725         * lib/printf-args.c: New file, from GNU gettext.
19726         * lib/printf-parse.h: New file, from GNU gettext.
19727         * lib/printf-parse.c: New file, from GNU gettext.
19728         * lib/vasnprintf.h: New file, from GNU gettext.
19729         * lib/vasnprintf.c: New file, from GNU gettext.
19730         * lib/asnprintf.c: New file, from GNU gettext.
19731         * lib/vasprintf.h: New file, from GNU gettext with modifications.
19732         * lib/vasprintf.c: New file, from GNU gettext.
19733         * lib/asprintf.c: New file, from GNU gettext.
19734
19735 2003-01-29  Bruno Haible  <bruno@clisp.org>
19736
19737         * modules/stpncpy: New module.
19738         * MODULES.html.sh (func_all_modules): Add it.
19739
19740 2003-01-29  Bruno Haible  <bruno@clisp.org>
19741
19742         * m4/stpncpy.m4: New file.
19743
19744 2003-01-29  Bruno Haible  <bruno@clisp.org>
19745
19746         * lib/stpncpy.h: New file, from GNU gettext with modifications.
19747         * lib/stpncpy.c: New file, from GNU gettext with modifications.
19748
19749 2003-01-28  Bruno Haible  <bruno@clisp.org>
19750
19751         * modules/c-ctype: New module.
19752         * MODULES.html.sh (func_all_modules): Add it.
19753
19754 2003-01-28  Bruno Haible  <bruno@clisp.org>
19755
19756         * lib/c-ctype.h: New file, from GNU gettext, with changes suggested by
19757         Paul Eggert.
19758         * lib/c-ctype.c: New file, from GNU gettext, with changes suggested by
19759         Paul Eggert.
19760
19761 2003-01-27  Bruno Haible  <bruno@clisp.org>
19762
19763         * modules/xsetenv: New module.
19764         * MODULES.html.sh (func_all_modules): Add it.
19765
19766 2003-01-27  Bruno Haible  <bruno@clisp.org>
19767
19768         * lib/xsetenv.h: New file, from GNU gettext.
19769         * lib/xsetenv.c: New file, from GNU gettext.
19770
19771 2003-01-23  Jim Meyering  <jim@meyering.net>
19772
19773         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Correct typo: s/-1/no/ that kept this
19774         from working on systems without dirfd (at least Irix and OSF1/Tru64).
19775
19776 2003-01-23  Bruno Haible  <bruno@clisp.org>
19777
19778         * modules/minmax: New module.
19779         * MODULES.html.sh (func_all_modules): Add it.
19780
19781 2003-01-23  Bruno Haible  <bruno@clisp.org>
19782
19783         * lib/minmax.h: New file, from GNU gettext, with comments from Paul
19784         Eggert.
19785
19786 2003-01-22  Bruno Haible  <bruno@clisp.org>
19787
19788         * modules/exit: New module.
19789         * MODULES.html.sh (func_all_modules): Add it.
19790
19791 2003-01-22  Bruno Haible  <bruno@clisp.org>
19792
19793         * lib/exit.h: New file, from GNU gettext.
19794
19795 2003-01-19  Bruno Haible  <bruno@clisp.org>
19796
19797         * gnulib-tool: Recognize option --extract-maintainer.
19798         (func_get_maintainer): New function.
19799         * modules/*: Add Maintainer entry.
19800
19801 2003-01-16  Jim Meyering  <jim@meyering.net>
19802
19803         * m4/regex.m4: The `regex' struct is both input and output.
19804         Initialize it before each use.  Patch by Tim Waugh.
19805
19806 2003-01-16  Bruno Haible  <bruno@clisp.org>
19807
19808         * MODULES.html.sh: Add a table of contents. Add the module name as
19809         leftmost column. Add hyperlinks.
19810
19811 2003-01-15  Bruno Haible  <bruno@clisp.org>
19812
19813         * m4/md5.m4 (gl_MD5): Require AC_C_INLINE.
19814
19815 2003-01-15  Bruno Haible  <bruno@clisp.org>
19816
19817         * m4/longlong.m4 (jm_AC_TYPE_LONG_LONG): Also test the LL suffix.
19818         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Also test the ULL
19819         suffix.
19820
19821 2003-01-15  Bruno Haible  <bruno@clisp.org>
19822
19823         * m4/alloca.m4 (gl_FUNC_ALLOCA): Invoke AC_EGREP_CPP prerequisites.
19824
19825 2003-01-15  Bruno Haible  <bruno@clisp.org>
19826
19827         * lib/stpcpy.h (stpcpy): Use ANSI C function declarations.
19828         * lib/strcase.h (strcasecmp, strncasecmp): Likewise.
19829
19830 2003-01-14  Jim Meyering  <jim@meyering.net>
19831
19832         * lib/same.c (same_name): Tweak a comment.
19833
19834 2003-01-14  Bruno Haible  <bruno@clisp.org>
19835
19836         * lib/same.c (same_name): Reorder tests so as to avoid calling stat()
19837         when a string comparison is sufficient.
19838
19839 2003-01-14  Bruno Haible  <bruno@clisp.org>
19840
19841         * lib/readtokens.c (readtoken): Cast character to 'unsigned char', not
19842         'unsigned int'.
19843
19844 2003-01-14  Bruno Haible  <bruno@clisp.org>
19845
19846         * lib/hash-pjw.c: Add comment about low quality of this function.
19847
19848 2003-01-13  Bruno Haible  <bruno@clisp.org>
19849
19850         * modules/stpcpy: Distribute lib/stpcpy.h.
19851         * modules/setenv: Depend on alloca. Distribute lib/setenv.h.
19852
19853 2003-01-13  Bruno Haible  <bruno@clisp.org>
19854
19855         * modules/*: Add a description.
19856         * modules/strpbrk: Fix Makefile.am snippet.
19857         * modules/strtoimax: Fix dependencies.
19858         * modules/strtoumax: Likewise.
19859
19860 2003-01-13  Bruno Haible  <bruno@clisp.org>
19861
19862         * gnulib-tool (func_create_testdir): Substitute lib_OBJECTS.
19863         * modules/alloca (Makefile.am): All object files depend on alloca.h.
19864         * modules/stdbool (Makefile.am): All object files depend on stdbool.h.
19865
19866 2003-01-13  Bruno Haible  <bruno@clisp.org>
19867
19868         * gnulib-tool (func_create_testdir): Store config/* files in the main
19869         directory.
19870         * config.rpath: Move to ...
19871         * config/config.rpath: ... here.
19872         * modules/gettext: Contains config/config.rpath, not config.rpath.
19873         * modules/iconv: Likewise.
19874
19875 2003-01-12  Paul Eggert  <eggert@twinsun.com>
19876
19877         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
19878         to avoid collisions with libcurses and libreadline.
19879
19880         * m4/getstr.m4: Remove.
19881         * m4/getline.m4 (gl_PREREQ_GETLINE): Require AC_HEADER_STDC.
19882
19883 2003-01-12  Paul Eggert  <eggert@twinsun.com>
19884
19885         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
19886         to avoid collisions with libcurses and libreadline.
19887
19888         * lib/Makefile.am (libfetish_a_SOURCES): Remove getstr.c, getstr.h.
19889         * lib/getstr.h, getstr.c: Remove.
19890         * lib/getline.c: Include "getline.h", to check interface.
19891         Move body of old getstr.c here: this defines MIN_CHUNK and
19892         declares getdelim2, which is renamed from getstr.
19893         (getline, getdelim): Adjust to renaming of getstr -> getdelim2.
19894
19895         * lib/linebuffer.c (readlinebuffer): Renamed from readline.
19896         All uses changed.
19897         * lib/linebuffer.h: Likewise.
19898         (readline): Remove backward-compatibility macro.
19899
19900 2003-01-12  Paul Eggert  <eggert@twinsun.com>
19901
19902         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
19903         to avoid collisions with libcurses and libreadline.
19904         * getstr: Remove.
19905         * MODULES.html.sh: Remove getstr.
19906         * modules/getline: Depend on unlocked-io, not getstr.
19907
19908 2003-01-12  Jim Meyering  <jim@meyering.net>
19909
19910         * lib/makepath.c: Don't test HAVE_ERRNO_H.  It's not necessary.
19911
19912 2003-01-10  Bruno Haible  <bruno@clisp.org>
19913
19914         * modules/alloca: Change Makefile.am requirements. Simplify Include
19915         requirements. Add lib/alloca_.h to file list.
19916
19917 2003-01-10  Bruno Haible  <bruno@clisp.org>
19918
19919         * m4/alloca.m4 (gl_FUNC_ALLOCA): Also define ALLOCA_H.
19920
19921 2003-01-10  Bruno Haible  <bruno@clisp.org>
19922
19923         * lib/alloca_.h: New file.
19924         * lib/getdate.y: Unconditionally include alloca.h.
19925         * lib/makepath.c: Likewise.
19926         * lib/setenv.c: Likewise.
19927         * lib/userspec.c: Likewise.
19928
19929 2003-01-09  Karl Berry  <karl@gnu.org>
19930
19931         * MODULES.html.sh: include `dirname $0` in PATH, to find
19932         gnulib-tool.
19933
19934 2003-01-09  Bruno Haible  <bruno@clisp.org>
19935
19936         * modules/stdbool: Change configure.ac, Makefile.am requirements.
19937         Simplify Include requirements. Add lib/stdbool.h.in to file list.
19938
19939 2003-01-09  Bruno Haible  <bruno@clisp.org>
19940
19941         * m4/stdbool.m4 (AM_STDBOOL_H): New macro.
19942
19943 2003-01-09  Bruno Haible  <bruno@clisp.org>
19944
19945         * lib/stdbool.h.in: New file.
19946
19947 2003-01-09  Bruno Haible  <bruno@clisp.org>
19948
19949         * gnulib-tool (func_all_modules): Ignore files ending in ~.
19950         * MODULES.html.sh: Likewise.
19951
19952 2003-01-08  Jim Meyering  <jim@meyering.net>
19953
19954         * lib/full-write.c: Undefine and define-away `const' after inclusion
19955         of errno.h, not before.  Suggestion from Bruno Haible.
19956
19957 2003-01-08  Bruno Haible  <bruno@clisp.org>
19958
19959         * modules/full-read: Depend on full-write.
19960
19961 2003-01-08  Bruno Haible  <bruno@clisp.org>
19962
19963         * lib/safe-read.c: Include specification header first, to ensure its
19964         selfcontainedness.
19965         * lib/full-write.c: Likewise.
19966
19967 2003-01-07  Jim Meyering  <jim@meyering.net>
19968
19969         * lib/full-write.c: Rework so that it may serve to define full_read,
19970         too.
19971         * lib/full-read.c: Simply #define FULL_READ and include full-write.c.
19972
19973 2003-01-07  Bruno Haible  <bruno@clisp.org>
19974
19975         * lib/strtoimax.c: Include <stdint.h> as an alternative to
19976         <inttypes.h>.
19977         * lib/xstrtol.h: Likewise.
19978         * lib/xstrtoimax.c: Likewise.
19979         * lib/xstrtoumax.c: Likewise.
19980         * lib/human.h: Likewise.
19981
19982         * lib/tempname.c: Include <inttypes.h> too. Avoids a compilation error
19983         on systems that have <inttypes.h> but not <stdint.h>.
19984
19985 2003-01-07  Bruno Haible  <bruno@clisp.org>
19986
19987         * MODULES.html.sh: Add copyright notice.
19988         (missed_files): Omit CVS directory entries.
19989         (func_module): Make it work with sed-3.02.
19990         * MODULES.txt: Remove file.
19991
19992 2003-01-06  Jim Meyering  <jim@meyering.net>
19993
19994         * lib/version-etc.c: Update year in translatable copyright string.
19995
19996 2003-01-03  Karl Berry  <karl@gnu.org>
19997
19998         * config/config.{guess,sub}: update from prep.
19999
20000 2003-01-02  Karl Berry  <karl@gnu.org>
20001
20002         * doc/COPYING.DOC: belatedly updated to 1.2.
20003
20004 2003-01-01  Karl Berry  <karl@gnu.org>
20005
20006         * gnulib-tool (func_verify_module): report module name $module in
20007         error message, not $1.
20008         * gnulib-tool (create-testdir): don't complain if destdir couldn't
20009         be created, only if it doesn't exist.
20010         * gnulib-tool (last_checkin_date): don't expand the $Date here.
20011
20012 2002-12-31  Paul Eggert  <eggert@twinsun.com>
20013
20014         * m4/memcoll.m4 (gl_MEMCOLL): Require AC_FUNC_MEMCMP.
20015
20016 2002-12-31  Paul Eggert  <eggert@twinsun.com>
20017
20018         * lib/memcoll.c (memcoll): Fall back on a simple algorithm using
20019         memcmp if strcoll doesn't work.
20020
20021 2002-12-31  Bruno Haible  <bruno@clisp.org>
20022
20023         * lib/utime.c (utime_null): No need to call ftruncate if the file was
20024         nonempty.
20025
20026 2002-12-31  Bruno Haible  <bruno@clisp.org>
20027
20028         * lib/memcoll.c (STRCOLL): New macro.
20029         (memcoll): Use it.
20030
20031 2002-12-31  Bruno Haible  <bruno@clisp.org>
20032
20033         * lib/localcharset.h: New file.
20034         * lib/localcharset.c: Include it.
20035         * lib/unicodeio.c: Likewise.
20036
20037 2002-12-31  Bruno Haible  <bruno@clisp.org>
20038
20039         * lib/getstr.h (getstr): Define, to avoid clash with libcurses.
20040         * lib/linebuffer.h (readline): Define, to avoid clash with libreadline.
20041
20042 2002-12-31  Bruno Haible  <bruno@clisp.org>
20043
20044         * lib/getline.h: Include <stddef.h>, for size_t.
20045
20046         * lib/unicodeio.h: Include <stddef.h>, for size_t.
20047         * lib/unicodeio.c: Don't include <stddef.h>.
20048
20049 2002-12-31  Bruno Haible  <bruno@clisp.org>
20050
20051         * lib/getdate.y (get_date): Test HAVE_STRUCT_TM_TM_ZONE, not
20052         HAVE_TM_ZONE.
20053
20054 2002-12-24  Karl Berry  <karl@gnu.org>
20055
20056         * config/config.guess: update from prep.
20057
20058 2002-12-24  Bruno Haible  <bruno@clisp.org>
20059
20060         General infrasructure.
20061         * m4/README: Rewritten.
20062         * m4/onceonly.m4: New file.
20063         * m4/onceonly_2_57.m4: New file.
20064
20065         Module atexit.
20066         * m4/atexit.m4: New file.
20067
20068         Module strtod.
20069         * m4/strtod.m4: New file.
20070
20071         Module strtol.
20072         * m4/strtol.m4: New file.
20073
20074         Module strtoul.
20075         * m4/strtoul.m4: New file.
20076
20077         Module memchr.
20078         * m4/memchr.m4: New file.
20079
20080         Module memcmp.
20081         * m4/memcmp.m4 (gl_PREREQ_MEMCMP): New macro.
20082         (jm_FUNC_MEMCMP): Invoke it.
20083
20084         Module memcpy.
20085         * m4/memcpy.m4: New file.
20086
20087         Module memmove.
20088         * m4/memmove.m4: New file.
20089
20090         Module memset.
20091         * m4/memset.m4: New file.
20092
20093         Module strcspn.
20094         * m4/strcspn.m4: New file.
20095
20096         Module strpbrk.
20097         * m4/strpbrk.m4: New file.
20098
20099         Module strstr.
20100         * m4/strstr.m4: New file.
20101
20102         Module strerror.
20103         * m4/strerror.m4: New file.
20104
20105         Module mktime.
20106         * m4/mktime.m4: Renamed from jm-mktime.m4.
20107         (gl_PREREQ_MKTIME): New macro.
20108         (gl_FUNC_MKTIME): Renamed from jm_FUNC_MKTIME. Invoke gl_PREREQ_MKTIME.
20109
20110         Module malloc.
20111         * m4/malloc.m4 (gl_PREREQ_MALLOC): New macro.
20112         (jm_FUNC_MALLOC): Use AC_FUNC_MALLOC. Invoke gl_PREREQ_MALLOC.
20113         Don't define HAVE_DONE_WORKING_MALLOC_CHECK, since nothing uses it.
20114
20115         Module realloc.
20116         * m4/realloc.m4 (gl_PREREQ_REALLOC): New macro.
20117         (jm_FUNC_REALLOC): Use AC_FUNC_REALLOC. Invoke gl_PREREQ_REALLOC.
20118         Don't define HAVE_DONE_WORKING_REALLOC_CHECK, since nothing uses it.
20119
20120         Module strftime.
20121         * m4/tm_gmtoff.m4: New file, extracted from strftime.m4.
20122         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Use AC_FUNC_STRFTIME.
20123         Don't test for bcopy (we are not emacs). Invoke AC_TYPE_MBSTATE_T and
20124         gl_TM_GMTOFF.
20125         (_jm_STRFTIME_PREREQS, jm_FUNC_GNU_STRFTIME): Use onceonly macros.
20126
20127         Module xalloc.
20128         * m4/xalloc.m4: New file.
20129
20130         Module alloca.
20131         * m4/alloca.m4: New file.
20132
20133         Module putenv.
20134         * m4/putenv.m4 (gl_PREREQ_PUTENV): New macro.
20135         (jm_FUNC_PUTENV): Invoke it.
20136
20137         Module setenv.
20138         * m4/setenv.m4 (gt_FUNC_SETENV): New macro.
20139         (gt_CHECK_VAR_DECL): Fix quoting error that led to infinite loop in m4
20140         when invoked twice.
20141         (gt_PREREQ_SETENV, gt_PREREQ_UNSETENV): New macros, replacing old
20142         gt_FUNC_SETENV.
20143
20144         Module memrchr.
20145         * m4/memrchr.m4: New file.
20146
20147         Module stpcpy.
20148         * m4/stpcpy.m4: New file.
20149
20150         Module strcase.
20151         * m4/strcase.m4: New file.
20152
20153         Module strdup.
20154         * m4/strdup.m4: New file.
20155
20156         Module strnlen.
20157         * m4/strnlen.m4: New file.
20158
20159         Module strndup.
20160         * m4/strndup.m4: New file.
20161
20162         Module xstrtod.
20163         * m4/xstrtod.m4: New file.
20164
20165         Module xstrtol.
20166         * m4/xstrtol.m4: New file.
20167
20168         Module getdate.
20169         * m4/getdate.m4: New file.
20170
20171         Module unlocked-io.
20172         * m4/unlocked-io.m4: Renamed from jm-glibc-io.m4.
20173         (jm_FUNC_GLIBC_UNLOCKED_IO): Invoke AC_GNU_SOURCE. Use onceonly macros.
20174         * m4/jm-glibc-io.m4n: Remove file.
20175
20176         Module long-options.
20177         * m4/long-options.m4: New file.
20178
20179         Module md5.
20180         * m4/md5.m4: New file.
20181
20182         Module sha.
20183         * m4/sha.m4: New file.
20184
20185         Module getstr.
20186         * m4/getstr.m4: New file.
20187
20188         Module getline.
20189         * m4/getline.m4 (gl_PREREQ_GETLINE): New macro.
20190         (AM_FUNC_GETLINE): Invoke AC_GNU_SOURCE. Use <stdlib.h>, not
20191         <sys/types.h>, for size_t. Use the function name gnu_getline, not
20192         simply getline. Infoke gl_PREREQ_GETLINE.
20193
20194         Module obstack.
20195         * m4/obstack.m4: New file.
20196
20197         Module hash.
20198         * m4/hash.m4: New file.
20199
20200         Module readtokens.
20201         * m4/readtokens.m4: New file.
20202
20203         Module strverscmp.
20204         * m4/strverscmp.m4: New file.
20205
20206         Module stdbool.
20207         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Add test for _Bool. Needed for
20208         OSF/1.
20209
20210         Module strtoll.
20211         * m4/strtoll.m4: New file.
20212
20213         Module strtoull.
20214         * m4/strtoull.m4: New file.
20215
20216         Module strtoimax.
20217         * m4/strtoimax.m4: New file.
20218
20219         Module strtoumax.
20220         * m4/strtoumax.m4: New file.
20221
20222         Module xstrtoimax.
20223         * m4/xstrtoimax.m4 (jm_XSTRTOIMAX): Renamed from
20224         jm_AC_PREREQ_XSTRTOIMAX.
20225         Moved the strtol prerequisites to strtol.m4.
20226         Moved the strtoll prerequisites to strtoll.m4.
20227         Moved the strtoimax prerequisites to strtoimax.m4.
20228
20229         Module xstrtoumax.
20230         * m4/xstrtoumax.m4 (jm_XSTRTOUMAX): Renamed from
20231         jm_AC_PREREQ_XSTRTOUMAX.
20232         Moved the strtoul prerequisites to strtoul.m4.
20233         Moved the strtoull prerequisites to strtoull.m4.
20234         Moved the strtoumax prerequisites to strtoumax.m4.
20235
20236         Module chown.
20237         * m4/chown.m4 (gl_PREREQ_CHOWN): New macro.
20238         (jm_FUNC_CHOWN): Use AC_FUNC_CHOWN. Invoke gl_PREREQ_CHOWN.
20239
20240         Module dup2.
20241         * m4/dup2.m4: New file.
20242
20243         Module ftruncate.
20244         * m4/ftruncate.m4 (gl_PREREQ_FTRUNCATE): New macro.
20245         (jm_FUNC_FTRUNCATE): Use AC_REPLACE_FUNCS. Invoke gl_PREREQ_FTRUNCATE.
20246
20247         Module getgroups.
20248         * m4/getgroups.m4 (gl_PREREQ_GETGROUPS): New macro.
20249         (jm_FUNC_GETGROUPS): Use AC_FUNC_GETGROUPS. Invoke gl_PREREQ_GETGROUPS.
20250
20251         Module gettimeofday.
20252         * m4/gettimeofday.m4 (gl_PREREQ_GETTIMEOFDAY): New macro.
20253         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Use onceonly macros. Invoke
20254         gl_PREREQ_GETTIMEOFDAY.
20255
20256         Module mkdir.
20257         * m4/mkdir-slash.m4 (gl_PREREQ_MKDIR): New macro.
20258         (UTILS_FUNC_MKDIR_TRAILING_SLASH): Invoke gl_PREREQ_MKDIR.
20259
20260         Module mkstemp.
20261         * m4/mkstemp.m4 (gl_PREREQ_MKSTEMP): New macro.
20262         (jm_PREREQ_TEMPNAME): New macro, from prereq.m4. Also invoke
20263         jm_AC_TYPE_UINTMAX_T.
20264         (UTILS_FUNC_MKSTEMP): Invoke gl_PREREQ_MKSTEMP and jm_PREREQ_TEMPNAME.
20265
20266         Module stat.
20267         * m4/stat.m4 (gl_PREREQ_STAT): New macro.
20268         (jm_FUNC_STAT): Use AC_FUNC_STAT. Invoke gl_PREREQ_STAT.
20269
20270         Module lstat.
20271         * m4/lstat.m4 (gl_PREREQ_LSTAT): New macro.
20272         (jm_FUNC_LSTAT): Use AC_FUNC_LSTAT. Invoke gl_PREREQ_LSTAT.
20273
20274         Module timespec.
20275         * m4/timespec.m4 (gl_TIMESPEC): New macro.
20276         (jm_CHECK_TYPE_STRUCT_TIMESPEC): Add check for <sys/time.h>.
20277         * m4/st_mtim.m4: Indentation.
20278
20279         Module nanosleep.
20280         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): New macro.
20281         (jm_FUNC_NANOSLEEP): Add check for <sys/time.h>. Invoke
20282         gl_PREREQ_NANOSLEEP.
20283
20284         Module regex.
20285         * m4/regex.m4 (jm_PREREQ_REGEX): New macro.
20286         (jm_INCLUDED_REGEX): Invoke jm_PREREQ_REGEX.
20287         (gl_REGEX): New macro.
20288
20289         Module rename.
20290         * m4/rename.m4 (gl_PREREQ_RENAME): New macro.
20291         (vb_FUNC_RENAME): Invoke gl_PREREQ_RENAME.
20292
20293         Module rmdir.
20294         * m4/rmdir.m4: New file.
20295
20296         Module utime.
20297         * m4/utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Use onceonly macros.
20298         * m4/utime.m4 (gl_PREREQ_UTIME): New macro.
20299         (jm_FUNC_UTIME): Invoke gl_PREREQ_UTIME.
20300
20301         Module dirname.
20302         * m4/dirname.m4: New file.
20303
20304         Module getopt.
20305         * m4/getopt.m4: New file.
20306
20307         Module unistd-safer.
20308         * m4/unistd-safer.m4: New file.
20309
20310         Module fnmatch.
20311         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Include <stdlib.h>, for exit()
20312         declaration.
20313         (gl_PREREQ_FNMATCH_EXTRA): New macro.
20314         (gl_FUNC_FNMATCH_POSIX): New macro.
20315         (gl_FUNC_FNMATCH_GNU): Renamed from AC_FUNC_FNMATCH_GNU. Invoke
20316         gl_PREREQ_FNMATCH_EXTRA. Use the function name gnu_fnmatch, not
20317         simply fnmatch.
20318
20319         Module exclude.
20320         * m4/exclude.m4: New file.
20321
20322         Module human.
20323         * m4/human.m4: New file.
20324
20325         Module acl.
20326         * m4/acl.m4: Nop.
20327
20328         Module backupfile.
20329         * m4/backupfile.m4: New file.
20330         * m4/d-ino.m4: Indentation.
20331
20332         Module fsusage.
20333         * m4/fsusage.m4 (gl_FSUSAGE): New macro.
20334         (jm_STATFS_TRUNCATES): New macro, from coreutils-4.5.4/configure.ac.
20335         (gl_PREREQ_FSUSAGE_EXTRA): New macro.
20336
20337         Module dirfd.
20338         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Invoke some AC_EGREP_CPP
20339         requirements.
20340
20341         Module euidaccess.
20342         * m4/euidaccess.m4: New file.
20343
20344         Module file-type.
20345         * m4/file-type.m4: New file.
20346
20347         Module fileblocks.
20348         * m4/fileblocks.m4: New file.
20349
20350         Module filemode.
20351         * m4/filemode.m4: New file.
20352
20353         Module isdir.
20354         * m4/isdir.m4: New file.
20355
20356         Module lchown.
20357         * m4/lchown.m4 (gl_PREREQ_LCHOWN): New macro.
20358         (jm_FUNC_LCHOWN): Invoke gl_PREREQ_LCHOWN.
20359
20360         Module makepath.
20361         * m4/makepath.m4: New file.
20362
20363         Module modechange.
20364         * m4/modechange.m4: New file.
20365
20366         Module mountlist.
20367         * m4/mountlist.m4: New file.
20368         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Use onceonly macros.
20369         Indentation.
20370
20371         Module path-concat.
20372         * m4/path-concat.m4: New file.
20373
20374         Module pathmax.
20375         * m4/pathmax.m4: New file.
20376
20377         Module same.
20378         * m4/same.m4: New file.
20379
20380         Module save-cwd.
20381         * m4/save-cwd.m4: New file.
20382
20383         Module savedir.
20384         * m4/savedir.m4: New file.
20385
20386         Module xgetcwd.
20387         * m4/xgetcwd.m4: New file.
20388         * m4/getcwd.m4 (AC_FUNC_GETCWD_NULL): Use onceonly macros.
20389
20390         Module xreadlink.
20391         * m4/xreadlink.m4: New file.
20392
20393         Module safe-read.
20394         * m4/safe-read.m4: New file.
20395
20396         Module safe-write.
20397         * m4/safe-write.m4: New file.
20398
20399         Module closeout.
20400         * m4/closeout.m4: New file.
20401
20402         Module stdio-safer.
20403         * m4/stdio-safer.m4: New file.
20404
20405         Module getpass.
20406         * m4/getpass.m4: New file.
20407
20408         Module getugroups.
20409         * m4/getugroups.m4: New file.
20410
20411         Module group-member.
20412         * m4/group-member.m4 (gl_PREREQ_GROUP_MEMBER): New macro.
20413         (jm_FUNC_GROUP_MEMBER): Invoke AC_GNU_SOURCE, gl_PREREQ_GROUP_MEMBER.
20414
20415         Module idcache.
20416         * m4/idcache.m4: New file.
20417
20418         Module userspec.
20419         * m4/userspec.m4: New file.
20420
20421         Module gettime.
20422         * m4/clock_time.m4: New file.
20423         * m4/gettime.m4: New file.
20424
20425         Module settime.
20426         * m4/settime.m4: New file.
20427
20428         Module posixtm.
20429         * m4/posixtm.m4: New file.
20430
20431         Module gethostname.
20432         * m4/gethostname.m4: New file.
20433
20434         Module canon-host.
20435         * m4/canon-host.m4: New file.
20436
20437         Module gettext.
20438         * m4/codeset.m4: New file, from gettext-0.11.5.
20439         * m4/gettext.m4: New file, from gettext-0.11.5.
20440         * m4/glibc21.m4: New file, from gettext-0.11.5.
20441         * m4/iconv.m4: New file, from gettext-0.11.5.
20442         * m4/intdiv0.m4: New file, from gettext-0.11.5.
20443         * m4/inttypes-pri.m4: New file, from gettext-0.11.5.
20444         * m4/inttypes.m4: New file, from gettext-0.11.5.
20445         * m4/inttypes_h.m4: New file, from gettext-0.11.5 with modifications.
20446         * m4/isc-posix.m4: New file, from gettext-0.11.5.
20447         * m4/lcmessage.m4: New file, from gettext-0.11.5.
20448         * m4/lib-ld.m4: New file, from gettext-0.11.5.
20449         * m4/lib-link.m4: New file, from gettext-0.11.5.
20450         * m4/lib-prefix.m4: New file, from gettext-0.11.5.
20451         * m4/progtest.m4: New file, from gettext-0.11.5.
20452         * m4/stdint_h.m4: New file, from gettext-0.11.5 with modifications.
20453         * m4/uintmax_t.m4: New file, from gettext-0.11.5 with modifications.
20454         * m4/ulonglong.m4: New file, from gettext-0.11.5 with modifications.
20455
20456         Module localcharset.
20457         * m4/localcharset.m4: New file.
20458
20459         Module hard-locale.
20460         * m4/hard-locale.m4: New file.
20461
20462         Module mbswidth.
20463         * m4/mbswidth.m4 (gl_MBSWIDTH): Renamed from jm_PREREQ_MBSWIDTH. Use
20464         onceonly macros.
20465         * m4/mbrtowc.m4: Add comment.
20466
20467         Module memcasecmp.
20468         * m4/memcasecmp.m4: New file.
20469
20470         Module memcoll.
20471         * m4/memcoll.m4: New file.
20472
20473         Module unicodeio.
20474         * m4/unicodeio.m4: New file.
20475
20476         Module rpmatch.
20477         * m4/rpmatch.m4: New file.
20478
20479         Module yesno.
20480         * m4/yesno.m4: New file.
20481
20482         Module exitfail.
20483         * m4/exitfail.m4: New file.
20484
20485         Module c-stack.
20486         * m4/c-stack.m4 (gl_C_STACK): New macro.
20487         (jm_PREREQ_C_STACK): Check for <sys/time.h>. Use onceonly macros.
20488
20489         Module error.
20490         * m4/error.m4 (gl_ERROR): New macro.
20491         (jm_PREREQ_ERROR): Use onceonly macros.
20492
20493         Module fatal.
20494         * m4/fatal.m4: New file.
20495
20496         Module getloadavg.
20497         * m4/getloadavg.m4 (AC_FUNC_GETLOADAVG): Use onceonly macros.
20498         (gl_FUNC_GETLOADAVG, gl_PREREQ_GETLOADAVG): New macros.
20499
20500         Module getpagesize.
20501         * m4/getpagesize.m4: New file.
20502
20503         Module getusershell.
20504         * m4/getusershell.m4: New file.
20505
20506         Module physmem.
20507         * m4/physmem.m4: New file.
20508
20509         Module posixver.
20510         * m4/posixver.m4: New file.
20511
20512         Module quotearg.
20513         * m4/quotearg.m4: New file.
20514
20515         Module quote.
20516         * m4/quote.m4: New file.
20517
20518         Module readutmp.
20519         * m4/readutmp.m4: New file, based on jm_PREREQ_READUTMP from prereq.m4.
20520
20521         Module sig2str.
20522         * m4/sig2str.m4: New file.
20523
20524         Other.
20525         * m4/longlong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Remove, moved to
20526         ulonglong.m4.
20527         * m4/intmax_t.m4: New file.
20528         * m4/d-type.m4: Indentation.
20529         * m4/jm-macros.m4: Update.
20530         * m4/prereq.m4 (jm_PREREQ): Update.
20531         (jm_PREREQ_ADDEXT): Remove, obsoleted by backupfile.m4.
20532         (jm_PREREQ_CANON_HOST): Remove, obsoleted by canon-host.m4.
20533         (jm_PREREQ_DIRNAME): Remove, obsoleted by dirname.m4.
20534         (jm_PREREQ_EXCLUDE): Remove, obsoleted by exclude.m4.
20535         (jm_PREREQ_GETPAGESIZE): Remove, obsoleted by getpagesize.m4.
20536         (jm_PREREQ_HARD_LOCALE): Remove, obsoleted by hard-locale.m4.
20537         (jm_PREREQ_HASH): Remove, obsoleted by hash.m4.
20538         (jm_PREREQ_HUMAN): Remove, obsoleted by human.m4.
20539         (jm_PREREQ_MEMCHR): Remove, obsoleted by memchr.m4.
20540         (jm_PREREQ_PHYSMEM): Remove, obsoleted by physmem.m4.
20541         (jm_PREREQ_POSIXVER): Remove, obsoleted by posixver.m4.
20542         (jm_PREREQ_QUOTEARG): Remove, obsoleted by quotearg.m4.
20543         (jm_PREREQ_READUTMP): Remove, obsoleted by readutmp.m4.
20544         (jm_PREREQ_REGEX): Remove, obsoleted by regex.m4.
20545         (jm_PREREQ_STRNLEN): Remove, obsoleted by strnlen.m4.
20546         (jm_PREREQ_TEMPNAME): Remove, obsoleted by mkstemp.m4.
20547         (jm_PREREQ_XGETCWD): Remove, obsoleted by xgetcwd.m4.
20548         (jm_PREREQ_XREADLINK): Remove, obsoleted by xreadlink.m4.
20549         * m4/readdir.m4 (jm_FUNC_READDIR): Use onceonly macros.
20550
20551 2002-12-24  Bruno Haible  <bruno@clisp.org>
20552
20553         * MODULES.txt: Update according to m4/ changes.
20554
20555         Module gettext.
20556         * config.rpath: New file, from gettext-0.11.5.
20557
20558         * modules/*: New module descriptions.
20559         * gnulib-tool: New file.
20560         * MODULES.html.sh: New file.
20561
20562 2002-12-21  Karl Berry  <karl@gnu.org>
20563
20564         * doc/fdl.texi: update to version 1.2.
20565
20566 2002-12-19  Karl Berry  <karl@gnu.org>
20567
20568         * config/config.guess: update from prep.
20569
20570 2002-12-18  Bruno Haible  <bruno@clisp.org>
20571
20572         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't test for localtime_r.
20573         * m4/jm-mktime.m4 (jm_FUNC_MKTIME): Likewise.
20574
20575 2002-12-17  Bruno Haible  <bruno@clisp.org>
20576
20577         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Remove checks for limits.h,
20578         stdlib.h, string.h.
20579
20580 2002-12-17  Bruno Haible  <bruno@clisp.org>
20581
20582         * lib/canon-host.c (strdup): Remove unused declaration.
20583
20584         * lib/fsusage.c: Include full_read.h.
20585         (get_fs_usage): Use full_read instead of safe_read.
20586
20587         * lib/utime.c (utime_null): Use SAFE_READ_ERROR.
20588
20589 2002-12-12  Karl Berry  <karl@gnu.org>
20590
20591         * config/config.guess: update from prep.
20592
20593 2002-12-11  Bruno Haible  <bruno@clisp.org>
20594
20595         * m4/setenv.m4: New file, from gettext-0.11.5.
20596
20597 2002-12-11  Bruno Haible  <bruno@clisp.org>
20598
20599         * lib/setenv.h: Rewritten to cope with systems that have setenv() but
20600         not unsetenv().
20601         * lib/setenv.c, unsetenv.c: Taken from glibc-2.2.4 with the following
20602         modifications:
20603
20604         2002-12-11  Bruno Haible  <bruno@clisp.org>
20605
20606                 * setenv.c (alloca): Fall back to malloc.
20607                 (freea): New macro.
20608                 (setenv): Use freea() to free memory allocated with alloca().
20609
20610         2002-11-13  Bruno Haible  <bruno@clisp.org>
20611
20612                 * setenv.c (compar_fn_t, __add_to_environ, setenv): Use ANSI C
20613                 function declarations.
20614                 * unsetenv.c (unsetenv): Likewise.
20615
20616         2002-03-04  Bruno Haible  <bruno@clisp.org>
20617
20618                 Portability to AIX 4.3.3.
20619                 * unsetenv.c: New file, extracted from setenv.c.
20620                 * setenv.c: Move the unsetenv() function to unsetenv.c.
20621
20622         2001-12-20  Bruno Haible  <bruno@clisp.org>
20623
20624                 * setenv.c (__add_to_environ): Don't call realloc(NULL,...),
20625                 use malloc instead. For SunOS 4.
20626
20627         2001-12-11  Bruno Haible  <bruno@clisp.org>
20628
20629                 * setenv.c: Declare alloca.
20630                 (compar_fn_t): New typedef.
20631                 (KNOWN_VALUE, STORE_VALUE): Use it.
20632
20633         * lib/Makefile.am (libfetish_a_SOURCES): Add setenv.c, unsetenv.c,
20634         setenv.h.
20635
20636 2002-12-10  Paul Eggert  <eggert@twinsun.com>
20637
20638         Port exclude.c and exclude.h to more non-GNU systems, e.g. Solaris 7.
20639         * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE, EXCLUDE_WILDCARDS):
20640         Choose values that are less likely to collide with system fnmatch
20641         options.
20642         * lib/exclude.c (FNM_CASEFOLD, FNM_LEADING_DIR): Define to 0 if not
20643         defined (e.g., a pure POSIX system).
20644         (EXCLUDE_macros_do_not_collide_with_FNM_macros): Use FNM_PATHNAME
20645         instead of FNM_FILE_NAME, for compatibility with pure POSIX sytems.
20646
20647 2002-12-06  Paul Eggert  <eggert@twinsun.com>
20648
20649         Undo the 2001-07-02 change for jm-glibc-io, as it was too much of
20650         a pain in practice to deal with generated m4 files.  This change
20651         goes together with the 2002-12-04 unlocked-io.h change in ../lib.
20652
20653         * m4/Makefile.am.in (Makefile.am): Don't mention jm-glibc-io.m4n
20654         and jm-glibc-io.m4, as they are no longer a special case.
20655         * m4/jm-glibc-io.m4: Rename from jm-glibc-io.m4n, and remove the
20656         kludge and the auto-generation stuff.  Check only whether the
20657         functions are declared, not whether they exist, since older hosts
20658         that don't declare the functions can't use the optimization anyway.
20659
20660 2002-12-06  Jim Meyering  <jim@meyering.net>
20661
20662         * lib/error.c: Be consistent: change `#ifndef _LIBC' to `#if !_LIBC'.
20663
20664         Merge in changes from libc's misc/error.c, in preparation
20665         for the merge of gnulib's changes back into libc.
20666
20667         * lib/error.c (_): Define only if not already defined.
20668         Move definition to follow all #include directives.
20669         Include unlocked-io.h only if !_LIBC.
20670         [_LIBC]: Include <libio/libioP.h>.
20671         [USE_IN_LIBIO]: Include <libio/iolibio.h>
20672         (fflush): Tweak definition to use INTUSE.
20673         (putc): Define.
20674
20675 2002-12-05  Paul Eggert  <eggert@twinsun.com>
20676
20677         * lib/alloca.c [defined emacs]: Include "lisp.h".
20678         (xalloc_die) [defined emacs]: New macro.
20679         (free) [defined emacs && defined EMACS_FREE]: Define to EMACS_FREE.
20680         [! defined emacs]: Include <xalloc.h>.
20681         (POINTER_TYPE) [!defined POINTER_TYPE]: New macro.
20682         (pointer): Typedef to POINTER_TYPE *.
20683         (malloc): Remove decl; we now always use xmalloc.
20684         (alloca): Use old-style definition, since Emacs needs this.
20685         Check for arithmetic overflow when computing combined size.
20686
20687 2002-12-04  Paul Eggert  <eggert@twinsun.com>
20688
20689         Do not generate unlocked-io.h automatically, since it's easier to
20690         maintain it by hand.
20691
20692         * lib/unlocked-io.h: New file, from GNU diffutils,
20693         but with proper copyright notice and attribution.
20694         * lib/gen-uio: Remove.
20695         * lib/Makefile.am: Add copyright notice.
20696         (libfetish_a_SOURCES): Add unlocked-io.h.
20697         (BUILT_SOURCES, all-local): Remove unlocked-io.h.
20698         (DISTCLEANFILES, io_functions): Remove macros.
20699         (EXTRA_DIST): Remove gen_uio.
20700         (unlocked-io.h): Remove rule.
20701
20702 2002-12-04  Jim Meyering  <jim@meyering.net>
20703
20704         Reflect the fact that stat.c and lstat.c are no longer generated.
20705         * lib/Makefile.am (BUILT_SOURCES): Remove stat.c and lstat.c.
20706         (DISTCLEANFILES): Likewise.
20707         (EXTRA_DIST): Likewise.
20708         (all_local): Don't depend on stat.c or lstat.c.
20709         (stat.c, lstat.c): Remove rules.
20710         (EXTRA_DIST): Remove xstat.in.
20711
20712         * lib/xstat.in: Remove file.  Contents moved into stat.c.
20713         * lib/stat.c: New file.  Contents mostly from xstat.in.
20714         * lib/stat.c: Rework so that it may serve to define rpl_lstat, too.
20715         * lib/lstat.c: New file. Simply #define LSTAT and include stat.c.
20716
20717         * lib/safe-read.c: Rework so that it may serve to define safe_write,
20718         too.
20719         * lib/safe-write.c: Simply #define SAFE_WRITE and include safe-read.c.
20720
20721 2002-12-03  Jim Meyering  <jim@meyering.net>
20722
20723         * lib/safe-read.c, safe-write.c: Change variable names and comments,
20724         but not semantics, to minimize the differences between these two files.
20725         (safe_read): Change comment to mention SAFE_READ_ERROR.
20726
20727         * lib/safe-read.c (IS_EINTR): Define.
20728         (safe_read): Use IS_EINTR in place of in-function cpp directives.
20729
20730 2002-12-02  Jim Meyering  <jim@meyering.net>
20731
20732         * lib/safe-read.c (EINTR): Define.
20733         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
20734         (INT_MAX): Provide fallback.
20735         (safe_read): Rewrite to iterate IFF the read fails with EINTR.
20736
20737         * lib/safe-read.h (SAFE_READ_ERROR): Define.
20738
20739 2002-12-02  Bruno Haible  <bruno@clisp.org>
20740
20741         * lib/safe-write.c (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM):
20742         Define, taken from safe-read.c.
20743         (INT_MAX): Provide fallback.
20744         (safe_write): Rewrite to iterate IFF the write fails with EINTR.
20745         * lib/safe-write.h (SAFE_WRITE_ERROR): Define.
20746
20747         * lib/safe-read.c (EINTR): Remove definition.
20748         (safe_read): Don't use EINTR if it is absent.
20749
20750 2002-12-01  Jim Meyering  <jim@meyering.net>
20751
20752         * lib/safe-read.c: (safe_read): Also exit the loop when read returns
20753         zero.
20754         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM, INT_MAX): Define.
20755
20756 2002-11-27  Paul Eggert  <eggert@twinsun.com>
20757
20758         * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
20759         hash_find_entry, hash_rehash): Replace `if (limit <= value) abort ();'
20760         with `if (! (value < limit)) abort ();', for readability.
20761
20762 2002-11-26  Karl Berry  <karl@gnu.org>
20763
20764         * lib/strdup.c: copy from libc again, with jim's ok.
20765         * lib/.cppi-disable: re-add strdup.c
20766
20767 2002-11-25  Karl Berry  <karl@gnu.org>
20768
20769         * lib/strtoll.c: copy from libc, meaning we now #include <strtol.c>
20770         instead of "strtol.c".
20771
20772 2002-11-25  Karl Berry  <karl@gnu.org>
20773
20774         * config/install-sh: update from automake for variable quoting, $0 in
20775         error msgs, etc.
20776
20777         * config/srclist.txt ($LIBCSRC/time/mktime.c lib gpl): new entry.
20778         * config/srclist.txt ($LIBCSRC/sysdeps/generic/strtoll.c lib gpl): new
20779         entry.
20780
20781 2002-11-25  Jim Meyering  <jim@meyering.net>
20782
20783         * lib/mktime.c: Sync from libc, now that it has the latest fix.
20784
20785 2002-11-24  Karl Berry  <karl@gnu.org>
20786
20787         * lib/error.c, getopt.c, getopt.h, getopt1.c, obstack.c, regex.c,
20788         regex.h, strdup.c, strtoll.c, tempname.c: change license to gpl.
20789
20790 2002-11-24  Jim Meyering  <jim@meyering.net>
20791
20792         Update from coreutils:
20793
20794         * lib/mktime.c: Merge in changes from libc.
20795
20796         Avoid a link-time failure on some Linux systems.
20797         * lib/mktime.c (STATIC): Define to be empty (_LIBC) or `static'
20798         (otherwise).
20799         (__mon_yday): Declare with the STATIC attribute.
20800         (__mktime_internal): Likewise.
20801         Based on a report from Greg Schafer.
20802
20803 2002-11-23  Jim Meyering  <jim@meyering.net>
20804
20805         * lib/sig2str.c (str2signum, sig2str): Avoid a warning from gcc:
20806         Use `unsigned', not `int', as type of index.
20807
20808         * lib/xstat.in [@BEGIN_LSTAT_ONLY@]: Include <string.h>.
20809
20810         * lib/fsusage.c: Remove unneeded parentheses around operands of
20811         `defined'.
20812
20813 2002-11-22  Paul Eggert  <eggert@twinsun.com>
20814
20815         * lib/quotearg.h: Allow multiple inclusion by surrounding with
20816         "#ifndef QUOTEARG_H_".  Include <stddef.h>, for size_t,
20817         so that we can be included first.
20818         (PARAMS): Remove; we now assume C89 or later.  All uses removed.
20819         * lib/quotearg.c: Include quotearg.h immediately after config.h.
20820         No need to include stddef.h or sys/types.h any more.
20821         Surround local include files with "", not "<>".
20822         Assume HAVE_LIMITS_H unconditionally, as we assume C89.
20823         Similarly, assume HAVE_C_BACKSLASH_A, CHAR_BIT, UCHAR_MAX, UINT_MAX,
20824         HAVE_STDLIB_H, HAVE_STRING_H, STDC_HEADERS.
20825         (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
20826         (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
20827         (ISPRINT): Remove; no longer needed now that we assume C89.
20828
20829         (clone_quoting_options, quotearg_buffer, quotearg_n_options):
20830         Preserve errno.
20831
20832         (quotearg_buffer_restyled, quotearg_n, quotearg_n_style,
20833         quotearg_char): Use SIZE_MAX rather than
20834         (size_t) -1 when we are talking about "infinity".
20835
20836         (quotearg_buffer_restyled): Fix bug when quoting trigraphs.
20837
20838 2002-11-22  Paul Eggert  <eggert@twinsun.com>
20839
20840         * lib/hash.c: Avoid use of <assert.h>, as the GNU Coding Standards
20841         hint that one should use `if (! x) abort ();' rather than `assert
20842         (x);', and anyway it's one less thing to worry about configuring.
20843         (hash_lookup, hash_get_first, hash_get_next, hash_find_entry,
20844         hash_rehash, hash_insert): Use abort rather than assert.
20845
20846 2002-11-22  Bruno Haible  <bruno@clisp.org>
20847
20848         * lib/safe-read.h: Assume C89. Add comments.
20849         (safe_read): Change return type to size_t.
20850         * lib/safe-read.c (safe_read): Change return type to size_t. Handle
20851         byte counts > SSIZE_MAX correctly.
20852         * lib/safe-write.h: New file.
20853         * lib/safe-write.c: New file.
20854         * lib/full-read.h: New file.
20855         * lib/full-read.c: New file.
20856         * lib/full-write.h: Assume C89. Add comments.
20857         * lib/full-write.c: Include safe-write.h.
20858         (full_write): Rewritten to use safe_write.
20859         Suggested by Jim Meyering and Paul Eggert.
20860
20861 2002-11-21  Jim Meyering  <jim@meyering.net>
20862
20863         * lib/strdup.c (strdup): Tweak comment and initial #if/#include.
20864
20865         Merge in changes from the coreutils.
20866
20867         2002-09-25  Paul Eggert  <eggert@twinsun.com>
20868         * lib/fsusage.c [! HAVE_INTTYPES_H && HAVE_STDINT_H] Include
20869         <stdint.h>.
20870         (UINTMAX_MAX) [!defined UINTMAX_MAX]: New macro.
20871         (PROPAGATE_ALL_ONES): Work even if X is unsigned and narrower than
20872         int.  Work more efficiently if X is the same width as uintmax_t.
20873         Do not compare X to -1, to avoid bogus compiler warning.
20874         (get_fs_usage): (uintmax_t) -1 -> UINTMAX_MAX to avoid a cast.
20875         Don't assume that f_frsize and f_bsize are the same type.
20876
20877         * lib/mountlist.c: #undef MNT_IGNORE before defining it, to avoid
20878         warning on FreeBSD.
20879
20880         * lib/makepath.c (make_path): Restore umask *before* creating the final
20881         component.
20882         (make_path): Minor reformatting.
20883
20884         * lib/xmalloc.c: Adjust to work with new autoconf macros,
20885         AC_FUNC_MALLOC and AC_FUNC_REALLOC: test #ifndef
20886         HAVE_MALLOC/HAVE_REALLOC.
20887
20888         * lib/mountlist.h (ME_DUMMY): Don't count entries of type `auto' as
20889         dummy ones.  At least on GNU/Linux systems, `auto' means something
20890         else.
20891         From Michael Stone.
20892
20893 2002-11-21  Bruno Haible  <bruno@clisp.org>
20894
20895         Remove case insensitive option matching.
20896         * lib/argmatch.h (argcasematch): Remove declaration.
20897         (ARGCASEMATCH): Remove macro.
20898         (__xargmatch_internal): Remove case_sensitive argument.
20899         (XARGMATCH): Update.
20900         (XARGCASEMATCH): Remove macro.
20901         * lib/argmatch.c (argmatch): Renamed from __argmatch_internal. Remove
20902         case_sensitive argument.
20903         (argcasematch): Remove function.
20904         (__xargmatch_internal): Remove case_sensitive argument.
20905         (main): Use XARGMATCH instead of XARGCASEMATCH.
20906
20907         * lib/xmalloc.c: Change compile-time error message. Add comment about
20908         required autoconf version.
20909
20910 2002-11-20  Paul Eggert  <eggert@twinsun.com>
20911
20912         Merge argmatch cleanups from Bison.  Assume C89.
20913
20914         * lib/argmatch.c: Include config.h here, not in argmatch.h.
20915         Include stdlib.h, for EXIT_FAILURE.
20916         Always include <string.h>, since we assume C89.
20917         (EXIT_FAILURE): Remove pre-C89 bug workaround.
20918         * lib/argmatch.h: Do not include <config.h> or <sys/types.h>.
20919         Include <stddef.h> instead, since it's all we need for size_t.
20920         (PARAMS): Remove.  All uses removed.
20921         (ARRAY_CARDINALITY): Do not bother to #undef.
20922         (ARRAY_CARDINALITY, ARGMATCH, ARGCASEMATCH, invalid_arg,
20923         ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
20924         Remove unnecessary parentheses.
20925         (ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
20926         Insert necessary parentheses.
20927         (ARGMATCH_CONSTRAINT, ARGMATCH_VERIFY): New macros.
20928         (ARGMATCH_ASSERT): Use ARGMATCH_CONSTRAINT.
20929
20930 2002-11-19  Bruno Haible  <bruno@clisp.org>
20931
20932         * lib/mbswidth.c: Include mbswidth.h right at the beginning.
20933         * lib/mbswidth.h: Include <stddef.h>, for size_t.
20934
20935         * lib/mbswidth.h (PARAMS): Remove macro.
20936         (mbswidth, mbsnwidth): Use ANSI C function declarations.
20937         * lib/mbswidth.c (mbswidth, mbsnwidth): Likewise.
20938
20939         * lib/gcd.h (PARAMS): Remove macro.
20940         (gcd): Use ANSI C function declarations.
20941         * lib/gcd.c (gcd): Likewise.
20942
20943 2002-11-15  Bruno Haible  <bruno@clisp.org>
20944
20945         * lib/strcspn.c: Include <stddef.h>.
20946         (strcspn): Use ANSI C function declaration. Change return type to
20947         size_t. Use NULL.
20948         * lib/strpbrk.c: Minimize diffs to glibc. Include <stddef.h>.
20949         (strpbrk): Use NULL.
20950         * lib/strpbrk.h (PARAMS): Remove macro.
20951         (strpbrk): Use ANSI C function declaration.
20952         * lib/strstr.c: Don't include <sys/types.h>.
20953         * lib/strstr.h (PARAMS): Remove macro.
20954         (strstr): Use ANSI C function declarations.
20955
20956 2002-11-14  Karl Berry  <karl@gnu.org>
20957
20958         * config/mkinstalldirs: `do' on separate line, instead of
20959         `for var; do'.
20960
20961 2002-11-06  Bruno Haible  <bruno@clisp.org>
20962
20963         * lib/gcd.h (gcd): Change argument type to 'unsigned long'.
20964         * lib/gcd.c (gcd): Likewise.
20965
20966 2002-11-05  Bruno Haible  <bruno@clisp.org>
20967
20968         * lib/gcd.h: New file, from gettext-0.11.5.
20969         * lib/gcd.c: New file, from gettext-0.11.5.
20970
20971 2002-11-05  Bruno Haible  <bruno@clisp.org>
20972
20973         * lib/error.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
20974         * lib/getopt.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
20975         * lib/obstack.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
20976         * lib/regex.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
20977
20978         * lib/argmatch.c: Include gettext.h instead of <locale.h> and
20979         <libintl.h>.
20980         * lib/makepath.c: Include gettext.h instead of <locale.h> and
20981         <libintl.h>.
20982
20983         * lib/closeout.c: Include gettext.h instead of <libintl.h>.
20984         * lib/human.c: Include gettext.h instead of <libintl.h>.
20985         * lib/quotearg.c: Include gettext.h instead of <libintl.h>.
20986         * lib/rpmatch.c: Include gettext.h instead of <libintl.h>.
20987         * lib/unicodeio.c: Include gettext.h instead of <libintl.h>.
20988         * lib/userspec.c: Include gettext.h instead of <libintl.h>.
20989         * lib/version-etc.c: Include gettext.h instead of <libintl.h>.
20990         * lib/xmalloc.c: Include gettext.h instead of <libintl.h>.
20991         (textdomain): Remove definition.
20992         * lib/xmemcoll.c: Include gettext.h instead of <libintl.h>.
20993
20994         * lib/long-options.c: Remove include of <libintl.h> and definition of
20995         _.
20996         * lib/same.c: Remove include of <libintl.h> and definition of _.
20997
20998 2002-11-04  Owen Taylor  <otaylor@redhat.com>
20999
21000         * lib/config.charset: A few additions for Solaris.
21001
21002 2002-11-04  Bruno Haible  <haible@clisp.cons.org>
21003
21004         Make it possible to build libcharset with CC=gcc CFLAGS="-x c++".
21005         * lib/localcharset.c (locale_charset): Declare as extern "C".
21006
21007 2002-11-04  Bruno Haible  <haible@clisp.cons.org>
21008
21009         * lib/config.charset: msdos in uk_UA uses CP1125.
21010
21011 2002-11-04  Bruno Haible  <bruno@clisp.org>
21012
21013         * lib/stpcpy.h: New file, from GNU gettext-0.11.5.
21014         * lib/strcase.h: New file, from GNU gettext-0.11.5.
21015         * lib/strpbrk.h: New file, from GNU gettext-0.11.5.
21016         * lib/strstr.h: New file, from GNU gettext-0.11.5.
21017         * lib/xgetcwd.h: New file, from GNU gettext-0.11.5.
21018
21019 2002-11-04  Bruno Haible  <bruno@clisp.org>
21020
21021         * lib/localcharset.c (locale_charset): Don't return an empty string.
21022
21023 2002-11-04  Bruno Haible  <bruno@clisp.org>
21024
21025         * lib/localcharset.c (get_charset_aliases): Add more Windows specific
21026         aliases.
21027
21028 2002-11-04  Bruno Haible  <bruno@clisp.org>
21029
21030         * lib/config.charset: Update for newest glibc. Add canonical names
21031         ISO-8859-14, KOI8-T, TCVN5712-1, GEORGIAN-PS.
21032
21033 2002-11-04  Bruno Haible  <bruno@clisp.org>
21034
21035         * lib/config.charset: Add support for NetBSD.
21036
21037 2002-11-04  Bruno Haible  <bruno@clisp.org>
21038
21039         * lib/config.charset [msdosdjgpp]: For Russian, use CP866.
21040
21041 2002-11-01  Bruno Haible  <bruno@clisp.org>
21042
21043         * configure.in: Add AC_CONFIG_AUX_DIR call.
21044         (AC_OUTPUT): Add m4/Makefile, lib/Makefile. Remove doc/Makefile,
21045         test/Makefile.
21046         * Makefile.in (subdirs): Add m4, lib. Remove doc, test.
21047
21048 2002-09-28  Karl Berry  <karl@gnu.org>
21049
21050         * config/srclist.txt: can't copy install-sh/mkinstalldirs from
21051         installed automake until the next release, since changes have been
21052         made.
21053
21054 2002-09-25  Karl Berry  <karl@gnu.org>
21055
21056         * lib/strdup.c: copy from libc/string (via ../config/srclist*).
21057         * lib/getopt*: copy from libc/posix.
21058         * lib/gettext.h: copy from gettext.
21059         * lib/.cppi-disable: add strdup.c, gettext.h.
21060
21061 2002-09-25  Karl Berry  <karl@gnu.org>
21062
21063         * config/srclist.txt: enable gettext.h check.
21064         * config/config.{guess,sub}: update from prep.
21065         * config/depcomp, install-sh, mdate-sh, missing, mkinstalldirs: update
21066                 from automake 1.6.3.
21067         See srclist*.
21068
21069 2002-08-23  Stefan Monnier  <monnier@cs.yale.edu>
21070
21071         * regex.c (PATFETCH): Remove the translating fetch.
21072         (PATFETCH_RAW): Rename to PATFETCH.
21073         (set_image_of_range): New fun.
21074         (SET_RANGE_TABLE_WORK_AREA): Use it.
21075         (regex_compile): Don't translate the pattern chars so eagerly.
21076         Only do it when inserting an `exactn' bytecode or when handling
21077         a char-range.
21078         (mutually_exclusive_p): Avoid empty statement.
21079
21080 2002-07-06  Jim Meyering  <meyering@lucent.com>
21081
21082         * m4/README: Don't mention Makefile.am.in.
21083         Outline how I've tested changes to .m4 files.  Yep, it's a pain.
21084
21085 2002-07-01  Jim Meyering  <meyering@lucent.com>
21086
21087         * lib/c-stack.c: Include sys/time.h.
21088         From Volker Borchert.
21089
21090 2002-06-26  Paul Eggert  <eggert@twinsun.com>
21091
21092         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for btowc.
21093
21094 2002-06-26  Paul Eggert  <eggert@twinsun.com>
21095
21096         * lib/fnmatch.c, fnmatch_loop.c (WIDE_CHAR_SUPPORT):
21097         New macro.  Use it uniformly instead of
21098         (defined HAVE_WCTYPE_H && defined HAVE_WCHAR_H).
21099         It also uses HAVE_BTOWC, to fix a porting bug on Solaris 2.5.1
21100         reported by Vin Shelton.
21101
21102 2002-06-22  Paul Eggert  <eggert@twinsun.com>
21103
21104         * lib/c-stack.h (segv_handler, c_stack_action) [! defined SA_SIGINFO]:
21105         Do not assume SA_SIGINFO behavior.
21106         Bug reported by Jim Meyering on NetBSD 1.5.2.
21107
21108 2002-06-22  Jim Meyering  <meyering@lucent.com>
21109
21110         * m4/c-stack.m4: New file, from diffutils-2.8.2.
21111         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_C_STACK.
21112
21113         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Don't require AC__GNU_SOURCE,
21114         now that configure.ac uses AC_GNU_SOURCE.
21115         (jm_MACROS): Rename: jm_FUNC_FNMATCH to AC_FUNC_FNMATCH_GNU.
21116         * m4/prereq.m4 (jm_PREREQ_EXCLUDE): Likewise, wrt jm_FUNC_FNMATCH.
21117
21118         Update to latest tools.  Suggestions from Paul Eggert.
21119         * m4/stdbool.m4: New file, from diffutils-2.8.2.
21120         * m4/gnu-source.m4: Update from diffutils-2.8.2.
21121         * m4/fnmatch.m4: Likewise.
21122         * m4/prereq.m4: Change each use of AC_CHECK_HEADERS(stdbool.h)
21123         to AC_HEADER_STDBOOL
21124
21125 2002-06-22  Jim Meyering  <meyering@lucent.com>
21126
21127         * lib/fnmatch.c (ISASCII, ISPRINT): Undefine, to avoid warning about
21128         redefinition due to Solaris 2.6's definition in /usr/include/sys/euc.h.
21129
21130 2002-06-22  Jim Meyering  <meyering@lucent.com>
21131
21132         * lib/c-stack.c, lib/c-stack.h: New files, from diffutils-2.8.2.
21133
21134         * lib/exitfail.c, exitfail.h: Likewise.
21135         * lib/Makefile.am (libfetish_a_SOURCES): Add exitfail.c and exitfail.h.
21136
21137         * lib/Makefile.am (libfetish_a_SOURCES): Add fnmatch_.h in place
21138         of fnmatch.h.
21139         (EXTRA_DIST): Add fnmatch_loop.c.
21140         (libfetish_a_SOURCES): Add c-stack.c and c-stack.h.
21141
21142         * lib/fnmatch_loop.c: New file, from diffutils-2.8.2.
21143         * lib/fnmatch.c: Update from diffutils-2.8.2.
21144         * lib/fnmatch_.h: New file.  From diffutils-2.8.2.
21145         * lib/fnmatch.h: Remove file.
21146
21147 2002-06-21  Jim Meyering  <meyering@lucent.com>
21148
21149         * m4/c-bs-a.m4: Add comment, from diffutils-2.8.2.
21150         * m4/mbrtowc.m4: Likewise.
21151
21152         * m4/mbstate_t.m4: Update from diffutils-2.8.2.
21153         * m4/mbswidth.m4: Reflect name change:
21154         s/AC_MBSTATE_T/AC_TYPE_MBSTATE_T.
21155         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Likewise.
21156
21157         * m4/lib-link.m4: Update from gettext-0.11.2.
21158         * m4/gettext.m4: Likewise.
21159
21160         * m4/jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for hurd.h.
21161         From Alfred M. Szmidt.
21162
21163 2002-06-18  Paul Eggert  <eggert@twinsun.com>
21164
21165         * lib/file-type.h: Report an error if neither S_ISREG nor
21166         S_IFREG is defined, instead of using a test specific to glibc
21167         2.2.  This should be safe, since POSIX requires S_ISREG and
21168         Unix Version 7 had S_IFREG.  We don't need to check for
21169         <sys/types.h> since we don't use any symbols that it defines.
21170
21171 2002-06-15  Richard Dawe  <richdawe@bigfoot.com>
21172
21173         * lib/Makefile.am (lstat.c, stat.c, .sin.sed): Use t-$@, rather than
21174         $@-t, so that each temporary file name is unique and valid in the first
21175         8 characters, for operation under DOS.
21176
21177 2002-06-15  Paul Eggert  <eggert@twinsun.com>
21178
21179         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for st_author.
21180
21181 2002-06-15  Jim Meyering  <meyering@lucent.com>
21182
21183         Work even with DJGPP 2.03, which lacks support for symlinks.
21184         From Richard Dawe.
21185         * lib/xstat.in (S_ISLNK): Define to 0 if neither S_ISLNK nor S_IFLNK
21186         is defined.
21187         * lib/lchown.c (S_ISLNK): Likewise.
21188
21189 2002-06-15  Jim Meyering  <meyering@lucent.com>
21190
21191         * lib/file-type.h (FILE_TYPE_H): Guard entire contents with #ifndef.
21192         For GNU libc 2.2 and newer, ensure that <sys/types.h> and <sys/stat.h>
21193         have been included before this file.
21194
21195 2002-06-14  Jim Meyering  <meyering@lucent.com>
21196
21197         * lib/file-type.h: Use the version from diffutils-2.8.2.
21198         * lib/file-type.c: Likewise.
21199
21200 2002-06-07  Jim Meyering  <meyering@lucent.com>
21201
21202         * m4/prereq.m4 (jm_PREREQ_STAT): Check for sys/param.h and sys/mount.h.
21203         They're needed at least for NetBSD 1.5.2.
21204         ($statxfs_includes): Include those same headers.
21205         ($statxfs_includes): Include sys/vfs.h if available.
21206         ($statxfs_includes): Likewise for sys/statvfs.h.
21207         Check for the following members in both structs statfs and statvfs:
21208         f_basetype, f_type, f_fsid.__val, f_namemax, f_namelen.
21209
21210 2002-06-01  Jim Meyering  <meyering@lucent.com>
21211
21212         * m4/d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename macro:
21213         s/D_TYPE_IN_DIRENT/HAVE_STRUCT_DIRENT_D_TYPE/.
21214
21215 2002-05-28  Jim Meyering  <meyering@lucent.com>
21216
21217         * m4/readdir.m4 (jm_FUNC_READDIR): Undefine `mkdir', not `rmdir'.
21218         Reported by Volker Borchert.
21219
21220 2002-05-27  Jim Meyering  <meyering@lucent.com>
21221
21222         Fix a problem seen only on nonconforming systems whereby ls.c's
21223         use of localtime, and then of gettimeofday would cause trouble:
21224         the localtime call used to initialize rpl_gettimeofday's save
21225         mechanism would clobber ls's current local time information so
21226         that in any long listing the first file would always be listed
21227         with date 1970-01-01.  Analysis by Volker Borchert.
21228
21229         * lib/gettimeofday.c (localtime): Undefine.
21230         (rpl_localtime): New function.
21231
21232 2002-05-27  Jim Meyering  <meyering@lucent.com>
21233
21234         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Also replace
21235         localtime.
21236
21237         * m4/readdir.m4 (jm_FUNC_READDIR): Undefine `rmdir' so we don't try to
21238         use the replacement function; it wouldn't resolve at link time.
21239         Reported by Volker Borchert.
21240
21241 2002-05-22  Jim Meyering  <meyering@lucent.com>
21242
21243         * lib/Makefile.am (libfetish_a_SOURCES): Add file-type.c and
21244         file-type.h.
21245         * lib/file-type.h: New file.
21246         * lib/file-type.c (file_type): New file/function.  Extracted from
21247         diffutils.
21248
21249 2002-04-30  Jim Meyering  <meyering@lucent.com>
21250
21251         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_STAT.
21252
21253 2002-04-29  Paul Eggert  <eggert@twinsun.com>
21254
21255         * m4/prereq.m4 (jm_PREREQ_SIG2STR): Remove; all callers changed.
21256
21257 2002-04-29  Paul Eggert  <eggert@twinsun.com>
21258
21259         * m4/prereq.m4 (jm_PREREQ_HARD_LOCALE): Check for stdlib.h.
21260         Do not check for alloca.h (no longer used) or stdbool.h (was never
21261         used?).  Add AM_C_PROTOTYPES since hard-locale.h uses it.
21262
21263 2002-04-29  Paul Eggert  <eggert@twinsun.com>
21264
21265         * lib/hard-locale.c: Upgrade to version used in GNU Diffutils 2.8.1.
21266
21267 2002-04-29  Jim Meyering  <meyering@lucent.com>
21268
21269         * m4/jm-macros.m4 (jm_MACROS): Remove use of AC_FUNC_STRNLEN.
21270         * m4/prereq.m4: Add jm_PREREQ_STRNLEN.
21271         Use AC_FUNC_STRNLEN here instead.
21272
21273         * m4/jm-macros.m4: Don't AC_REQUIRE([AC_PROG_CC_STDC]).
21274         With autoconf-2.53a, it's part of AC_PROG_CC.
21275
21276 2002-04-28  Paul Eggert  <eggert@twinsun.com>
21277
21278         * m4/jm-macros.m4 (jm_MACROS): Add AC_REPLACE_FUNCS(sig2str).
21279         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_SIG2STR.
21280
21281 2002-04-28  Paul Eggert  <eggert@twinsun.com>
21282
21283         * lib/sig2str.h, lib/sig2str.c: New files.
21284         * lib/Makefile.am (libfetish_a_SOURCES): Add sig2str.h.
21285
21286 2002-04-28  Paul Eggert  <eggert@twinsun.com>
21287
21288         * lib/sig2str.h (SIGNUM_BOUND): Do not use WTERMSIG, to avoid
21289         depending on <sys/wait.h> and WTERMSIG.  Default to 64 instead
21290         of 127, since 64 is the largest conceivable number for ancient
21291         nonstandard hosts.
21292         * lib/sig2str.c: Do not include <sys/wait.h>; no longer needed.
21293
21294 2002-04-28  Jim Meyering  <meyering@lucent.com>
21295
21296         * lib/sig2str.c (WTERMSIG): Remove definition (unused).
21297
21298 2002-04-24  Jim Meyering  <meyering@lucent.com>
21299
21300         * m4/prereq.m4 (jm_PREREQ_HARD_LOCALE): New macro.
21301         (jm_PREREQ): Use it.
21302
21303         * m4/getloadavg.m4: Check for these headers: locale.h unistd.h
21304         mach/mach.h fcntl.h.
21305         Check for this function: setlocale.
21306
21307 2002-04-24  Jim Meyering  <meyering@lucent.com>
21308
21309         * lib/gettext.h: New file, from Gettext.
21310         * lib/Makefile.am (INCLUDES): Remove -I../intl.
21311         (libfetish_a_SOURCES): Add gettext.h.
21312
21313 2002-04-16  Jim Meyering  <meyering@lucent.com>
21314
21315         * m4/prereq.m4 (jm_PREREQ_READUTMP): Also check for these members:
21316         ut_pid, ut_id, ut_exit.
21317
21318 2002-04-16  Jim Meyering  <meyering@lucent.com>
21319
21320         * lib/readutmp.h (UT_TYPE): Remove definition (now in who.c).
21321         (HAVE_STRUCT_XTMP_UT_EXIT, HAVE_STRUCT_XTMP_UT_ID): Define.
21322         (HAVE_STRUCT_XTMP_UT_PID, HAVE_STRUCT_XTMP_UT_TYPE): Define.
21323
21324 2002-04-12  Jim Meyering  <meyering@lucent.com>
21325
21326         * m4/ls-mntd-fs.m4 (checking for getmntinfo function...): Remove
21327         now-bogus check for f_type in sys/mount.h.  Instead, just test for the
21328         existence of the getmntinfo function.  Needed for Darwin 5.3.
21329
21330         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Also detect when dirfd is a macro.
21331         This is necessary at least on Darwin 5.3.
21332
21333         * m4/jm-macros.m4: Don't AC_REPLACE(strnlen), now that we use
21334         AC_FUNC_STRNLEN.  Otherwise, we'd end up putting two copies of
21335         strnlen.o in the library, and that makes some versions of ranlib
21336         object.
21337
21338 2002-04-12  Jim Meyering  <meyering@lucent.com>
21339
21340         * lib/dirfd.h (dirfd): Elide prototype if dirfd is a macro.
21341
21342 2002-04-09  Jim Meyering  <meyering@lucent.com>
21343
21344         * m4/malloc.m4: (jm_FUNC_MALLOC): Change the `checking ...' message
21345         to be more precise.  Rather than saying we're checking whether the
21346         function `works', say what we're testing.
21347         * m4/realloc.m4 (jm_FUNC_REALLOC): Likewise.
21348         Reported by Bruno Haible.
21349
21350 2002-03-10  Jim Meyering  <meyering@lucent.com>
21351
21352         * lib/makepath.c (make_path): Remove a comma from a diagnostic.
21353         Suggestion from Santiago Vila.
21354
21355 2002-03-08  Jim Meyering  <meyering@lucent.com>
21356
21357         * lib/rename.c: Mention that this wrapper is needed also on
21358         mips-dec-ultrix4.4 systems.
21359
21360 2002-03-02  Jim Meyering  <meyering@lucent.com>
21361
21362         * lib/gettime.c (gettime): Test HAVE_CLOCK_GETTIME,
21363         not HAVE_CLOCK_SETTIME.
21364
21365 2002-02-27  Paul Eggert  <eggert@twinsun.com>
21366
21367         * m4/jm-macros.m4 (jm_MACROS): Do not replace stime; no longer used.
21368         Check for clock_settime.
21369
21370 2002-02-27  Paul Eggert  <eggert@twinsun.com>
21371
21372         * lib/nanosleep.h: Rename to....
21373         * lib/timespec.h: New name for nanosleep.h.  All uses changed.
21374
21375         * lib/gettime.c: New file.
21376         * lib/settime.c: New file.
21377         * lib/stime.c: Remove.
21378
21379         * lib/Makefile.am (libfetish_a_SOURCES): Add gettime.c, settime.c,
21380         timespec.h.  Remove nanosleep.h.
21381
21382 2002-02-25  Paul Eggert  <eggert@twinsun.com>
21383
21384         * m4/acl.m4: New file.
21385         * m4/jm-macros.m4 (jm_MACROS): Require AC_FUNC_ACL.
21386         Do not check for acl or sys/acl.h, as AC_FUNC_ACL does that now.
21387
21388 2002-02-25  Paul Eggert  <eggert@twinsun.com>
21389
21390         * lib/acl.c, lib/acl.h: New files.
21391         * lib/Makefile.am (libfetish_a_SOURCES): Add acl.h, acl.c.
21392
21393 2002-02-24  Jim Meyering  <meyering@lucent.com>
21394
21395         * lib/strnlen.c (strnlen): Define-away/undef so that an inconsistent
21396         prototype in string.h (on at least AIX4.3.2.0 w/gcc-2.95.3) doesn't
21397         cause trouble.  Reported by Nelson Beebe.
21398
21399 2002-02-23  Paul Eggert  <eggert@twinsun.com>
21400
21401         * lib/path-concat.c (xpath_concat): Reorder code to pacify
21402         compilers that don't know that xalloc_die never returns.
21403
21404 2002-02-20  Jim Meyering  <meyering@lucent.com>
21405
21406         * lib/getdate.c: Regenerate using bison-1.33.
21407
21408 2002-02-17  Jim Meyering  <meyering@lucent.com>
21409
21410         * config/config.guess (main): Don't use `head -1'; it's no longer
21411         portable. Use `sed 1q' instead.
21412
21413 2002-02-16  gettextize  <bug-gnu-gettext@gnu.org>
21414
21415         * m4/codeset.m4: Upgrade to gettext-0.11.
21416         * m4/gettext.m4: Upgrade to gettext-0.11.
21417         * m4/glibc21.m4: Upgrade to gettext-0.11.
21418         * m4/iconv.m4: Upgrade to gettext-0.11.
21419         * m4/isc-posix.m4: Upgrade to gettext-0.11.
21420         * m4/lcmessage.m4: Upgrade to gettext-0.11.
21421         * m4/lib-ld.m4: New file, from gettext-0.11.
21422         * m4/lib-link.m4: New file, from gettext-0.11.
21423         * m4/lib-prefix.m4: New file, from gettext-0.11.
21424         * m4/progtest.m4: Upgrade to gettext-0.11.
21425
21426 2002-02-15  Paul Eggert  <eggert@twinsun.com>
21427
21428         * m4/prereq.m4 (jm_PREREQ_POSIXVER): New macro.
21429         (jm_PREREQ): Use it.
21430
21431 2002-02-15  Paul Eggert  <eggert@twinsun.com>
21432
21433         * lib/posixver.c, lib/posixver.h: New files.
21434         * lib/Makefile.am (libfetish_a_SOURCES): Add them.
21435
21436 2002-02-02  Paul Eggert  <eggert@twinsun.com>
21437             Bruno Haible  <bruno@clisp.org>
21438
21439         * lib/unicodeio.h (print_unicode_char): Add exit_on_error argument.
21440         (fwrite_success_callback): New declaration.
21441         * lib/unicodeio.c (unicode_to_mb): New function, extracted from
21442         print_unicode_char. Call failure callback instead of error.
21443         (fwrite_success_callback): New function.
21444         (exit_failure_callback): New function.
21445         (fallback_failure_callback): New function.
21446         (print_unicode_char): Call unicode_to_mb.
21447
21448 2002-01-26  Jim Meyering  <meyering@lucent.com>
21449
21450         * m4/jm-macros.m4 (jm_MACROS): Require autoconf-2.52g.
21451         * m4/strnlen.m4: Remove file, now that it's part of autoconf.
21452
21453 2002-01-26  Jim Meyering  <meyering@lucent.com>
21454
21455         * lib/Makefile.am (getdate$U.o): Depend on unlocked-io.h.
21456
21457 2002-01-22  Paul Eggert  <eggert@twinsun.com>
21458
21459         * m4/jm-macros.m4 (jm_MACROS): Require AC_FUNC_FSEEKO.
21460
21461 2002-01-22  Jim Meyering  <meyering@lucent.com>
21462
21463         * lib/Makefile.am (Makefile): Don't depend on $(BUILT_SOURCES).
21464         Otherwise, some versions of automake would omit the rule that makes
21465         Makefile from Makefile.in.
21466
21467 2002-01-21  Paul Eggert  <eggert@twinsun.com>
21468
21469         * lib/xmemcoll.h, lib/xmemcoll.c: New files.
21470         * lib/Makefile.am (libfetish_a_SOURCES): Add them.
21471         * lib/memcoll.c: Include errno.h, and declare errno if not defined.
21472         (memcoll): Set errno to zero if there is no error.
21473
21474         * lib/quotearg.c (quotearg_buffer_restyled):
21475         Fix bug with quoting buffers containing NUL when backslashing escapes.
21476         This bug was exposed by the other changes in this patch.
21477         (quotearg_n_options): New arg ARGSIZE.
21478         All callers changed.
21479         (quoting_options_from_style): New function.
21480         (quotearg_n_style): Use it.
21481         (quotearg_n_style_mem): New function.
21482
21483         * lib/quotearg.h (quotearg_n_style_mem): New function.
21484
21485 2002-01-19  Jim Meyering  <meyering@lucent.com>
21486
21487         * m4/jm-macros.m4 (jm_MACROS): Use AC_FUNC_STRNLEN.
21488         Remove useless quotes: DF_PROG="df".
21489         * m4/strnlen.m4: New file.
21490
21491 2002-01-16  Paul Eggert  <eggert@twinsun.com>
21492
21493         * lib/backupfile.c (ISDIGIT): Comment fix.
21494         * lib/getdate.y (ISDIGIT): Likewise.
21495         * lib/posixtm.c (ISDIGIT, year): Likewise.
21496         * lib/strverscmp.c (ISDIGIT): Likewise.
21497         * lib/userspec.c (ISDIGIT): Likewise.
21498
21499 2002-01-16  Jim Meyering  <meyering@lucent.com>
21500
21501         * lib/getdate.y: Add three semicolons, each just before a closing
21502         brace. Bison (as of version 1.31) no longer papers over that mistake.
21503
21504 2002-01-05  Jim Meyering  <meyering@lucent.com>
21505
21506         * lib/version-etc.c (version_etc_copyright): Update copyright year.
21507
21508 2001-12-19  Paul Eggert  <eggert@twinsun.com>
21509
21510         * lib/closeout.c (close_stdout_status): If ferror (stdout), do
21511         not silently exit merely because the output buffer happens to
21512         have nothing pending.
21513
21514 2001-12-18  Paul Eggert  <eggert@twinsun.com>
21515
21516         See the big note in ../ChangeLog.
21517         * lib/human.c (suffixes): Prefer K to k for 1024.
21518         (generate_suffix_backwards): New function.
21519         (human_readable_inexact): Use it.
21520         * lib/xstrtol.c (__xstrtol): If there is no number but there
21521         is a valid suffix, assume 1.  "MB" now means decimal, "MiB" binary.
21522         Accept 'K' as well as 'k'.
21523
21524 2001-12-15  Jim Meyering  <meyering@lucent.com>
21525
21526         * lib/regex.h (__restrict_arr): Update from libc.
21527
21528         * lib/mountlist.h (ME_REMOTE): Recognize file systems of type smbfs
21529         as `remote' if the name starts with `//'.  Suggested by Michael Stone.
21530         (STREQ): Define.
21531
21532 2001-12-14  Jim Meyering  <meyering@lucent.com>
21533
21534         * m4/jm-macros.m4 (jm_MACROS): Check for iswspace.
21535         Suggestion from Bruno Haible.
21536
21537 2001-12-10  Jim Meyering  <meyering@lucent.com>
21538
21539         * lib/linebuffer.c: Remove explicit declarations of xmalloc and
21540         xrealloc, Instead, include "xalloc.h".
21541         (initbuffer): Don't cast xmalloc return value to char*.
21542         (readline): Reword comment.
21543         Don't cast xrealloc return value to char*
21544         Return NULL, not 0.
21545
21546 2001-12-09  Jim Meyering  <meyering@lucent.com>
21547
21548         * lib/modechange.c (mode_compile): Add cast to avoid pedantic warning
21549         about `signed and unsigned type in conditional expression'.
21550         * lib/posixtm.c (posix_time_parse): Likewise.
21551
21552         * lib/xreadlink.c (xreadlink): Add cast to avoid a pedantic warning.
21553
21554         * lib/readtokens.c (readtoken): Declare an index to be of type unsigned
21555         to avoid a pedantic warning.
21556
21557         * lib/getstr.c: Don't include assert.h.
21558         (getstr): Remove warning-evoking assertions.
21559         Return -1 if offset parameter is out of bounds.
21560         Change the type of a local from int to size_t.
21561
21562         * lib/strftime.c (my_strftime_localtime_r): Include this function
21563         definition in the `#if ! HAVE_TM_GMTOFF' block.
21564
21565         * lib/xgethostname.c: Remove declarations of xmalloc and xrealloc.
21566         Include xalloc.h instead.
21567
21568 2001-12-02  Jim Meyering  <meyering@lucent.com>
21569
21570         * lib/tempname.c: Don't declare getenv, thus reverting the change of
21571         2001-11-18.  It's no longer necessary, now that stdlib.h is always
21572         included.
21573
21574         * lib/regex.c [!__BOUNDED_POINTERS__]: Define away __bounded,
21575         __unbounded, and __ptrvalue.  Reported by Uwe H. Steinfeld.
21576
21577 2001-11-30  Akim Demaille  <akim@epita.fr>
21578
21579         * lib/xstrdup.c: Include xalloc.h, so that xstrdup is declared
21580         before being defined.
21581
21582 2001-11-27  Paul Eggert  <eggert@twinsun.com>
21583
21584         * lib/quotearg.h (quotearg_n, quotearg_n_style):
21585         First arg is int, not unsigned.
21586         * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
21587         (SIZE_MAX, UINT_MAX): New macros.
21588         (quotearg_n_options): Abort if N is negative.
21589         Avoid overflow check on hosts where size_t is 64 bits and int
21590         is 32 bits, as overflow is impossible there.
21591         Fix off-by-one typo that caused unnecessary reallocation.
21592
21593 2001-11-27  Jim Meyering  <meyering@lucent.com>
21594
21595         * lib/tempname.c: Merge with version from libc.
21596         * lib/regex.c: Likewise.
21597
21598         * lib/tempname.c: Include stdlib.h unconditionally.  On some old
21599         systems for which STDC_HEADERS is 0, it was not included, resulting in
21600         a warning about an integer-to-pointer conversion problem with getenv.
21601         Reported by Volker Borchert.
21602
21603 2001-11-26  Jim Meyering  <meyering@lucent.com>
21604
21605         * lib/gtod.h: Remove file.
21606         * lib/Makefile.am (libfetish_a_SOURCES): Remove gtod.h.
21607         * lib/gettimeofday.c: Don't include gtod.h.
21608         (GTOD_init): Remove function.
21609         (rpl_gettimeofday): Do its job here instead, rather than aborting.
21610         Suggestion from Volker Borchert.
21611
21612 2001-11-23  Jim Meyering  <meyering@lucent.com>
21613
21614         * lib/hash.h (struct hash_table): Don't define here.  Merely declare
21615         it.
21616         * lib/hash.c (struct hash_table): Define it here instead.
21617
21618 2001-11-22  Jim Meyering  <meyering@lucent.com>
21619
21620         * lib/hash.h: Bracket contents of file with #ifndef HASH_H_ ... #endif.
21621
21622 2001-11-20  Jim Meyering  <meyering@lucent.com>
21623
21624         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Update comment to reflect that
21625         SunOS 4.1.4 and Solaris 2.5.1 lose, too.
21626
21627 2001-11-19  Jim Meyering  <meyering@lucent.com>
21628
21629         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Don't bother with a temporary
21630         directory.  Use "conftestXXXXXX" as the template.
21631         Suggestion from Paul Eggert.
21632
21633         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Close each descriptor
21634         immediately, so the test doesn't mistakenly hit the max-open-files
21635         limit.
21636
21637 2001-11-18  Paul Eggert  <eggert@twinsun.com>
21638
21639         * lib/tempname.c (TMP_MAX): Remove; no longer needed.
21640         (TEMPORARIES): New macro.
21641         (__gen_tempname): Use TEMPORARIES rather than TMP_MAX.  This
21642         removes an artificial limitation (e.g. HP-UX 10.20, where
21643         TMP_MAX is 17576).
21644
21645 2001-11-18  Jim Meyering  <meyering@lucent.com>
21646
21647         * m4/prereq.m4 (jm_PREREQ_TEMPNAME): Check for declaration of getenv.
21648
21649 2001-11-18  Jim Meyering  <meyering@lucent.com>
21650
21651         * lib/tempname.c [!HAVE_DECL_GETENV]: Declare getenv to avoid warning
21652         on SunOS 4.
21653
21654         * lib/Makefile.am (Makefile): Depend on $(BUILT_SOURCES), so those
21655         files will be created before anything else.
21656
21657 2001-11-17  Paul Eggert  <eggert@twinsun.com>
21658
21659         * m4/jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): Do not define
21660         WINSIZE_IN_PTEM if <termios.h> defines struct winsize.
21661
21662 2001-11-17  Jim Meyering  <meyering@lucent.com>
21663
21664         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): New file and macro.
21665         Prompted by a report from Bob Proulx.
21666
21667         * m4/jm-macros.m4 (jm_MACROS): Don't test for mkstemp here.
21668         Instead, require UTILS_FUNC_MKSTEMP.
21669
21670 2001-11-17  Jim Meyering  <meyering@lucent.com>
21671
21672         * m4/jm-macros.m4 (jm_MACROS): Remove code to set POW_LIBM.
21673         Now, that's done as part of AC_FUNC_STRTOD.
21674
21675 2001-11-17  Jim Meyering  <meyering@lucent.com>
21676
21677         * lib/modechange.c (mode_adjust): Fix error introduced on 1999-04-26
21678         that made e.g., `chmod a=,o=w,g=o F' cause F to be group readable
21679         rather than group writable.  Patch by Juan F. Codagnone.
21680
21681         * lib/readtokens.c: Remove explicit declarations of xmalloc and
21682         xrealloc, Instead, include "xalloc.h".
21683
21684         * lib/mountlist.c: Include unlocked-io.h after all system headers.
21685         Remove explicit declarations of xmalloc, xrealloc,
21686         and xstrdup.  Instead, include "xalloc.h".
21687
21688         * lib/argmatch.c, closeout.c, error.c, exclude.c: Include
21689         unlocked-io.h.
21690         * lib/fatal.c, getdate.y, getpass.c, getstr.c, getusershell.c:
21691         Likewise.
21692         * lib/mountlist.c, posixtm.c, readtokens.c, readutmp.c: Likewise.
21693
21694         * lib/regex.c, sha.c, version-etc.c, yesno.c: Likewise.
21695         Reported by Padraig Brady.
21696
21697         * lib/mkstemp.c: #undef mkstemp.
21698         Include config.h.
21699         (rpl_mkstemp): Rename from mkstemp.
21700         Protoize.
21701
21702 2001-11-16  Jim Meyering  <meyering@lucent.com>
21703
21704         * lib/physmem.c [HAVE_SYS_PSTAT_H]: Include <sys/pstat.h>.
21705         (physmem_total) [HAVE_PSTAT_GETSTATIC]: If sysconf couldn't be used to
21706         determine the amount of total physical memory, use pstat_getstatic.
21707         HPUX-11 doesn't define _SC_PHYS_PAGES.
21708         (physmem_available) [HAVE_PSTAT_GETSTATIC && HAVE_PSTAT_GETDYNAMIC]:
21709         If sysconf couldn't be used to determine the amount of available
21710         physical memory, use both pstat_getstatic and pstat_getdynamic.
21711         Based on a patch from Bob Proulx.
21712
21713 2001-11-10  Jim Meyering  <meyering@lucent.com>
21714
21715         * m4/prereq.m4 (jm_PREREQ_PHYSMEM): New function.
21716         (jm_PREREQ): Use it.
21717
21718 2001-11-09  Jim Meyering  <meyering@lucent.com>
21719
21720         * m4/jm-macros.m4: Require autoconf-2.52f.
21721         (AC_FUNC_ERROR_AT_LINE, AC_FUNC_OBSTACK, AC_FUNC_STRTOD):
21722         Use these AC_-prefixed names, not the AM_-prefixed ones.
21723
21724         * m4/afs.m4 (jm_AFS): Quote the body.  Patch by Akim Demaille.
21725
21726 2001-11-05  Jim Meyering  <meyering@lucent.com>
21727
21728         * lib/xstat.in (slash_aware_lstat): Correct a misleading comment.
21729
21730 2001-11-04  Jim Meyering  <meyering@lucent.com>
21731
21732         * m4/fpending.m4: Remove unused cruft that saved, set, and restored
21733         $DEFS.
21734
21735 2001-11-03  Jim Meyering  <meyering@lucent.com>
21736
21737         * m4/jm-glibc-io.m4n (jm_FUNC_GLIBC_UNLOCKED_IO): Quote first arg
21738         of AC_DEFUN.
21739
21740         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Rework so dirfd.c doesn't have to
21741         know the name of the variable in the macro definition.
21742
21743 2001-11-03  Jim Meyering  <meyering@lucent.com>
21744
21745         * lib/argmatch.h (ARGMATCH_TO_ARGUMENT): Remove casts of first two args
21746         in argmatch_to_argument call.
21747
21748         * lib/dirfd.c (dirfd): Reflect the fact that DIR_TO_FD now takes an
21749         argument.
21750
21751         * lib/hash.c (hash_clear): Fix a bug that could lead to an infloop or
21752         e.g., a fault due to an attempt to free a NULL pointer.
21753
21754 2001-11-01  Jim Meyering  <meyering@lucent.com>
21755
21756         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): New macro.
21757         * m4/jm-macros.m4 (jm_MACROS): Require UTILS_FUNC_DIRFD.
21758
21759 2001-11-01  Jim Meyering  <meyering@lucent.com>
21760
21761         * lib/dirfd.c, lib/dirfd.h: New files.
21762         * lib/Makefile.am (libfetish_a_SOURCES): Add dirfd.h.
21763
21764         * lib/hash.c (hash_print) [TESTING]: Clean up.
21765
21766 2001-10-22  Paul Eggert  <eggert@twinsun.com>
21767
21768         * lib/hard-locale.c (alloca): Define to __builtin_alloca if __GNUC__,
21769         to avoid a warning if -Wall.
21770
21771 2001-10-22  Jeff Bailey  <jbailey@outpost.dnsalias.org>
21772
21773         * README: New file
21774         * doc/*: Add COPYING, COPYING.LIB, COPYING.DOC, fdl.texi
21775         (per RMS's instructions, this is now the canonical source)
21776         * lgpl/, gpl/: New directories.
21777
21778 2001-10-21  Paul Eggert  <eggert@twinsun.com>
21779
21780         * lib/regex.c (uintptr_t): Remove macro and decl; it's config.h's job.
21781
21782 2001-10-21  Jim Meyering  <meyering@lucent.com>
21783
21784         * lib/obstack.c (_): Honor the setting of ENABLE_NLS.  Otherwise,
21785         this code would end up calling gettext even in packages built
21786         with --disable-nls.
21787         * lib/getopt.c (_): Likewise.
21788         * lib/regex.c (_): Likewise.
21789
21790 2001-10-20  Paul Eggert  <eggert@twinsun.com>
21791
21792         * m4/error.m4 (jm_PREREQ_ERROR):
21793         Do not invoke AC_CHECK_FUNCS with strerror_r, as
21794         AC_FUNC_STRERROR_R does that.
21795         Check for strerror declaration.
21796
21797         * m4/strerror_r.m4: Add copyright notice, as nontrivial m4 files
21798         are supposed to have them these days.
21799         (AC_FUNC_STRERROR_R): Always do char* test, so that it gets cached.
21800         Merge changes from latest Autoconf CVS.
21801         Rename ac_cv_func_strerror_r_works to ac_cv_func_strerror_r_char_p,
21802         and rename HAVE_WORKING_STRERROR_R to STRERROR_R_CHAR_P, since
21803         POSIX decided to standardize on the int flavor of strerror_r.
21804
21805 2001-10-20  Paul Eggert  <eggert@twinsun.com>
21806
21807         * lib/error.c (strerror_r): Do not declare unless !_LIBC.
21808         Do not check for HAVE_DECL_STRERROR_R missing unless STRERROR_R_CHAR_P.
21809         Use strerror_r that is only a macro, even if it is not a function.
21810         (strerror): Check for HAVE_DECL_STRERROR before declaring.
21811         (private_strerror): Use prototypes, not old-style function definition.
21812         (print_errno_message): New function.
21813         Support the POSIX 'int'-flavored strerror_r, as well as the traditional
21814         char*-flavored one.
21815         (error_tail, error, error_at_line): Use it.
21816
21817 2001-10-11  Jim Meyering  <meyering@lucent.com>
21818
21819         * lib/argmatch.c (argmatch_invalid): Use quotearg_n_style (0, ...
21820         and quote_n (1, ... to avoid clobbering a buffer.
21821
21822 2001-10-05  Jim Meyering  <meyering@lucent.com>
21823
21824         * lib/Makefile.am: (libfetish_a_SOURCES): Add hash-pjw.c and
21825         hash-pjw.h.
21826         * lib/hash-pjw.c: New file (factored out of fileutils' remove.c).
21827         * lib/hash-pjw.h: New file.
21828
21829 2001-09-30  Jim Meyering  <meyering@lucent.com>
21830
21831         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): See if
21832         `struct fsstat' has the `f_fstypename' member.
21833         Use that to define FS_TYPE, which is now used to make
21834         the getfsstat link test tighter.
21835
21836 2001-09-30  Jim Meyering  <meyering@lucent.com>
21837
21838         * lib/mountlist.c [MOUNTED_GETFSSTAT]:
21839         Include <sys/ucred.h>, for Apple Darwin.
21840         Include sys/mount.h and sys/fs_types.h only if available.
21841         (FS_TYPE): Define.
21842         (read_filesystem_list): Use FS_TYPE.
21843
21844 2001-09-29  Paul Eggert  <eggert@twinsun.com>
21845
21846         * lib/exclude.c (excluded_filename): 0 -> false, since it's
21847         a boolean context.
21848
21849 2001-09-29  Jim Meyering  <meyering@lucent.com>
21850
21851         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS)
21852         [one-argument getmntent function]): Include stdio.h before mntent.h.
21853         SunOS 4.1.x needs it for the declaration of `FILE'.
21854         Patch by Volker Borchert.
21855
21856         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS)
21857         Check for these headers: sys/param.h sys/ucred.h sys/mount.h
21858         sys/fs_types.h, and make the link-test for getfsstat guard #include
21859         directives with appropriate #if HAVE_*_H tests so that we can
21860         detect getfsstat on Apple Darwin1.3.7 systems.
21861         Reported by Nelson Beebe.
21862         Fix harmless typo in cache variable name: s/getsstat/getfsstat/.
21863
21864 2001-09-28  Paul Eggert  <eggert@twinsun.com>
21865
21866         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
21867         #defines strtoimax.  Also treat the other strto* functions
21868         like strtoimax.
21869
21870         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
21871         Check for strtoul and strtoumax,
21872         as those declarations are made even in the signed case.
21873         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX):
21874         Likewise, for strtol and strtoimax.
21875
21876 2001-09-28  Paul Eggert  <eggert@twinsun.com>
21877
21878         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
21879         #defines strtoimax.  Also treat the other strto* functions
21880         like strtoimax.
21881
21882         * lib/xstrtol.c (strtol): Do not declare if HAVE_DECL_STRTOL.
21883         (strtoul): Do not declare if HAVE_DECL_STRTOUL.
21884         (strtoimax, strtoumax): Do not declare if already defined as a macro.
21885
21886 2001-09-26  Jim Meyering  <meyering@lucent.com>
21887
21888         Most macros in unlocked-io.h had the wrong number of arguments.
21889         * lib/gen-uio: New script.
21890         (USE_UNLOCKED_IO): Define to 1 if not already defined.
21891         * lib/unlocked-io.hin: Remove file.
21892         * lib/Makefile.am (unlocked-io.h): Rewrite to use a separate script,
21893         rather than trying to embed it here.
21894         (EXTRA_DIST): Add gen-uio.  Remove unlocked-io.hin
21895         Reported by Padraig Brady.
21896
21897 2001-09-25  Volker Borchert  <bt@teknon.de>
21898
21899         * lib/gettimeofday.c (rpl_gettimeofday): Declare local variable
21900         `result'.
21901
21902 2001-09-24  Jim Meyering  <meyering@lucent.com>
21903
21904         * m4/gettext.m4: Use the version from gettext-0.10.40, not CVS.
21905
21906 2001-09-23  Jim Meyering  <meyering@lucent.com>
21907
21908         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add a compile-test
21909         instead of the mere test for existence of mntent.h.  The latter
21910         would get a false-positive on AIX 3.4 systems.
21911         In the outer getmntent if-block, don't die if neither of the getmntent
21912         tests succeeds.  Instead, just fall through and continue with the
21913         remaining tests.
21914
21915 2001-09-23  Jim Meyering  <meyering@lucent.com>
21916
21917         * lib/mountlist.c: Remove useless parentheses in #if directives.
21918         (MOUNTED) [!defined MOUNTED]: Define to _PATH_MOUNTED, for when
21919         the deprecated MOUNTED symbol is no longer defined in mntent.h.
21920
21921 2001-09-22  Jim Meyering  <meyering@lucent.com>
21922
21923         * m4/gettext.m4: New file.  From gettext.
21924         * m4/lcmessage.m4: Sync with gettext -- this changes only comments.
21925         * m4/progtest.m4: Likewise
21926         * m4/isc-posix.m4: Decrement serial number to sync with gettext.
21927         * m4/glibc21.m4: Likewise.
21928
21929         * m4/libintl.m4: Remove.  No longer used.
21930
21931 2001-09-22  Jim Meyering  <meyering@lucent.com>
21932
21933         * lib/localcharset.c: Update from latest gettext.
21934         * lib/config.charset: Likewise.
21935
21936 2001-09-20  Jim Meyering  <meyering@lucent.com>
21937
21938         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX): Check for declaration of
21939         strtoimax.
21940         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check for declaration of
21941         strtoumax.
21942
21943 2001-09-20  Jim Meyering  <meyering@lucent.com>
21944
21945         * lib/xstrtol.c (strtoimax): Guard declaration with
21946         `#if !HAVE_DECL_STRTOIMAX', rather than just `#ifndef strtoimax'.
21947         The latter fails because some systems (at least rs6000-ibm-aix4.3.3.0)
21948         have their own, conflicting declaration of strtoimax in sys/inttypes.h.
21949         (strtoumax): Likewise, for completeness (it wasn't necessary).
21950
21951 2001-09-17  Paul Eggert  <eggert@twinsun.com>
21952
21953         * lib/strtoimax.c (HAVE_LONG_LONG):
21954         Redefine to HAVE_UNSIGNED_LONG_LONG if unsigned.
21955         (strtoimax): Use sizeof (long), not sizeof strtol (ptr, endptr, base),
21956         to work around bug in IBM C compiler.
21957
21958 2001-09-17  Jim Meyering  <meyering@lucent.com>
21959
21960         * m4/chown.m4, fstypename.m4, getgroups.m4, gettimeofday.m4,
21961         * m4/jm-mktime.m4, lstat.m4, malloc.m4, memcmp.m4, mkdir-slash.m4,
21962         * m4/nanosleep.m4, putenv.m4, readdir.m4, realloc.m4, rename.m4,
21963         * m4/st_dm_mode.m4, stat.m4, strerror_r.m4, timespec.m4, utimbuf.m4,
21964         * m4/utimes.m4: Use AC_DEFINE rather than AC_DEFINE_UNQUOTED,
21965         whenever the right hand side need not be expanded by the shell.
21966
21967 2001-09-16  Paul Eggert  <eggert@twinsun.com>
21968
21969         * m4/fnmatch.m4 (jm_FUNC_FNMATCH): Remove test for GNU C
21970         library.  It's not correct, as some older glibcs are buggy.
21971         fnmatch wasn't fixed until glibc 2.2.
21972
21973         Use AC_DEFINE, not AC_DEFINE_UNQUOTED, as there's no
21974         special shell magic here.
21975
21976 2001-09-16  Jim Meyering  <meyering@lucent.com>
21977
21978         * m4/mkdir-slash.m4 (UTILS_FUNC_MKDIR_TRAILING_SLASH): New file/macro.
21979         * m4/jm-macros.m4: Require it.
21980
21981 2001-09-16  Jim Meyering  <meyering@lucent.com>
21982
21983         * lib/mkdir.c: New file.
21984
21985 2001-09-15  Jim Meyering  <meyering@lucent.com>
21986
21987         * m4/jm-macros.m4: Check for help2man.
21988
21989 2001-09-11  Jim Meyering  <meyering@lucent.com>
21990
21991         * m4/host-os.m4 (UTILS_HOST_OS): New file/macro.
21992         The body, by Paul Eggert, was moved here from configure.in.
21993         * m4/jm-macros.m4: Require UTILS_HOST_OS.
21994
21995 2001-09-04  Paul Eggert  <eggert@twinsun.com>
21996
21997         * m4/prereq.m4 (jm_PREREQ_XREADLINK): New macro.
21998         (jm_PREREQ): Use it.
21999
22000 2001-09-04  Paul Eggert  <eggert@twinsun.com>
22001
22002         * lib/xreadlink.c (xreadlink): Omit size_t* arg.  All uses changed.
22003         Use ssize_t, not int, to store result of readlink.
22004         Check for ssize_t overflow as well as size_t overflow,
22005         as POSIX says the result of readlink is implementation-defined
22006         when ssize_t overflows.
22007         Remove unnecessary cast to char*.
22008         Use free+malloc instead of realloc, as the storage doesn't need
22009         to be preserved and it's clearer and can be more efficient that way.
22010         (SIZE_MAX, SSIZE_MAX): New macros, if <limits.h> doesn't declare.
22011         * lib/xreadlink.h (xreadlink): Update prototype.
22012
22013 2001-09-04  Paul Eggert  <eggert@twinsun.com>
22014
22015         * lib/xgetcwd.c: Revert some of the previous change; intead,
22016         fix the HAVE_GETCWD_NULL code to behave more like the
22017         !HAVE_GETCWD_NULL code used to.
22018
22019         Include "xalloc.h".
22020         (xgetcwd): Do not return NULL when memory is exhausted; instead,
22021         invoke xalloc_die.
22022
22023 2001-09-03  Paul Eggert  <eggert@twinsun.com>
22024
22025         * m4/prereq.m4 (jm_PREREQ_XGETCWD): Check for limits.h and
22026         sys/param.h, as pathmax.h includes them.
22027
22028 2001-09-03  Paul Eggert  <eggert@twinsun.com>
22029
22030         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_XGETCWD.
22031         (jm_PREREQ_XGETCWD): New macro.
22032
22033         * m4/getcwd.m4: New file.
22034
22035 2001-09-03  Paul Eggert  <eggert@twinsun.com>
22036
22037         * lib/xgetcwd.c: Fix the !HAVE_GETCWD_NULL code to behave more
22038         like the HAVE_GETCWD_NULL code.
22039         Include pathmax.h if not HAVE_GETCWD.
22040         Do not include xalloc.h.
22041         (INITIAL_BUFFER_SIZE): New symbol.
22042         Do not use xmalloc / xrealloc, since the caller is responsible for
22043         handling errors.  Preserve errno around `free' during failure.
22044         Do not overrun buffer when using getwd.
22045
22046 2001-09-03  Paul Eggert  <eggert@twinsun.com>
22047
22048         * lib/xgetcwd.c (xgetcwd): Use HAVE_GETCWD_NULL, not (defined
22049         __GLIBC__ && __GLIBC__ >= 2), to decide whether to use
22050         getcwd (NULL, 0).
22051
22052 2001-09-03  Paul Eggert  <eggert@twinsun.com>
22053
22054         * lib/exclude.c (fnmatch_no_wildcards): Fix confusion between
22055         usage of FNM_CASEFOLD and FNM_LEADING_DIR.  The bug was
22056         spotted by Jim Meyering.
22057
22058 2001-09-03  Jim Meyering  <meyering@lucent.com>
22059
22060         * lib/xreadlink.c (xreadlink): Preserve errno around `free' during
22061         failure.
22062
22063 2001-09-02  Jim Meyering  <meyering@lucent.com>
22064
22065         * lib/error.c: Update from GNU libc.
22066
22067 2001-09-01  Jim Meyering  <meyering@lucent.com>
22068
22069         * m4/jm-macros.m4 (jm_MACROS): Check for canonicalize_file_name.
22070         Used by df.
22071
22072 2001-09-01  Jim Meyering  <meyering@lucent.com>
22073
22074         * lib/xreadlink.c: New file.
22075         * lib/xreadlink.h: New file.
22076         * lib/Makefile.am (libfetish_a_SOURCES): Add xreadlink.c and
22077         xreadlink.h.
22078
22079         * lib/regex.c (uintptr_t) [!_LIBC]: Define to private_uintptr_t, so it
22080         doesn't conflict with sparc Solaris 7's definition in
22081         /usr/include/sys/int_types.h.
22082
22083         * lib/exclude.c: Use `""', not `<>' to #include non-system header
22084         files.
22085         (fnmatch_no_wildcards): Rewrite not to use function names, strcasecmp
22086         and strncasecmp as r-values.  Unixware didn't have declarations.
22087
22088 2001-08-31  Paul Eggert  <eggert@twinsun.com>
22089
22090         * lib/xstrtol.h: Add copyright notice.
22091         (_DECLARE_XSTRTOL): Improve quality of diagnostic for
22092         LONGINT_INVALID_SUFFIX_CHAR.
22093
22094 2001-08-31  Paul Eggert  <eggert@twinsun.com>
22095
22096         * lib/xstrtol.c (strtoimax): New decl.
22097
22098 2001-08-31  Paul Eggert  <eggert@twinsun.com>
22099
22100         * lib/xgetcwd.c: Don't include pathmax.h.
22101         Include stdlib.h and unistd.h if available.
22102         Include xalloc.h.
22103         (xmalloc, xstrdup, free): Remove decls.
22104         (xgetcwd): Don't assume sizes fit in unsigned.
22105         Check for overflow when computing sizes.
22106         Simplify reallocation code.
22107
22108 2001-08-31  Paul Eggert  <eggert@twinsun.com>
22109
22110         * lib/savedir.c (savedir): Remove size parameter, as POSIX says that
22111         a directory's st_size can have an arbitrary value, so the old
22112         usage could waste an arbitrary amount of memory.  All uses
22113         changed.
22114         * lib/savedir.h: Update prototype.
22115
22116 2001-08-31  Paul Eggert  <eggert@twinsun.com>
22117
22118         * lib/Makefile.am (libfetish_a_SOURCES): Remove strtoxmax.c.
22119
22120         * lib/strtoimax.c: Renamed from strtoxmax.c, removing the
22121         old strtoimax.c.
22122
22123         Also, make the following further changes to make this file's
22124         configuration more similar to that of strtol.c:
22125         (UNSIGNED): Renamed from STRTOUXMAX_UNSIGNED.  All uses changed.
22126         (strtoumax, uintmax_t, strtoull, strtol): Remove.
22127         (intmax_t, strtoimax, strtol, strtoll): New macros, if UNSIGNED.
22128         (strtoimax): Renamed from strtoumax.  All uses of unsigned values
22129         changed to signed values.
22130
22131         And make the following changes as well:
22132         Fix copyright notice, as 1999 was missing.
22133         (verify): New macro.
22134         (strtoimax): Check sizes at compile-time, not run-time.
22135         Prefer strtol to strtoll if both work.
22136         (main): Remove; it was not that useful and was a pain to maintain.
22137
22138         * lib/strtoumax.c: Include strtoimax.c, not strtouxmax.c.
22139
22140 2001-08-31  Jim Meyering  <meyering@lucent.com>
22141
22142         * lib/xgetcwd.c (xgetcwd): Reorganize to avoid some duplication.
22143         Use an initial, malloc'd, buffer of length 128 rather than
22144         a statically allocated one of length 1024.
22145
22146 2001-08-30  Paul Eggert  <eggert@twinsun.com>
22147
22148         Simplify code, partly by assuming autoconf 2.52 semantics.
22149
22150         * m4/Makefile.am (EXTRA_DIST): Remove uintmax_t.m4.
22151
22152         * m4/inttypes.m4 (AC_PREREQ): Bump to 2.52.
22153         (jm_AC_HEADER_INTTYPES_H): Remove; now done by autoconf in 2.52.
22154         All uses removed.
22155         (jm_AC_TYPE_INTMAX_T, jm_AC_TYPE_UINTMAX_T):
22156         Move AC_REQUIRE to next-to-top level, to avoid confusion.
22157         Use 2.52's AC_CHECK_TYPE instead of merely looking for the header.
22158         * m4/prereq.m4 (jm_PREREQ_HUMAN): Don't require
22159         jm_AC_HEADER_INTTYPES_H.
22160         * m4/jm-macros.m4 (jm_MACROS): Likewise.
22161
22162         * m4/uintmax_t.m4: Remove, as it duplicates inttypes.m4.
22163
22164         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
22165         Quote first arg of AC_DEFUN.
22166         Require jm_AC_TYPE_UINTMAX_T and jm_AC_TYPE_UNSIGNED_LONG_LONG
22167         since they are needed to parse the include file even if we need
22168         only xstrtoimax.  Simplify logic behind the args to AC_REPLACE.
22169         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Likewise,
22170         but with opposite signedness.
22171
22172 2001-08-30  Paul Eggert  <eggert@twinsun.com>
22173
22174         Merge 'exclude' changes from tar 1.13.22.
22175         This fixes one or two unlikely storage allocation overflow bugs,
22176         but doesn't change user-visible behavior otherwise.
22177
22178 2001-08-30  Paul Eggert  <eggert@twinsun.com>
22179
22180         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_EXCLUDE.
22181         (jm_PREREQ_EXCLUDE): New macro.
22182
22183 2001-08-30  Paul Eggert  <eggert@twinsun.com>
22184
22185         * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
22186         tm to be declared.
22187
22188 2001-08-30  Paul Eggert  <eggert@twinsun.com>
22189
22190         * lib/hash.c: Remove '2001' from copyright notice.
22191
22192 2001-08-30  Paul Eggert  <eggert@twinsun.com>
22193
22194         * lib/full-write.h: New file.
22195         * lib/Makefile.am (libfetish_a_SOURCES): Add full-write.h.
22196         * lib/full-write.c: Correct credits, as cccp.c no longer
22197         exists and anyway it was so heavily changed from the old cccp
22198         code as to be unrecognizable.  Include full-write.h.
22199         (full_write) Return size_t, with short writes meaning failure.
22200         All callers changed.  This fixes a bug with large buffers
22201         on 64-bit hosts.
22202         * lib/utime.c: Include full-write.h.
22203
22204 2001-08-30  Paul Eggert  <eggert@twinsun.com>
22205
22206         * lib/exclude.c (bool): Declare, perhaps by including stdbool.h.
22207         (<sys/types.h>): Include only if HAVE_SYS_TYPES_H.
22208         (<stdlib.h>, <string.h>, <strings.h>, <inttypes.h>, <stdint.h>):
22209         Include if available.
22210         (<xalloc.h>): Include
22211         (SIZE_MAX): Define if <stdint.h> or <inttypes.h> doesn't.
22212         (verify): New macro.  Use it to verify that EXCLUDE macros do not
22213         collide with FNM macros.
22214         (struct patopts): New struct.
22215         (struct exclude): Use it, as exclude patterns now come with options.
22216         (new_exclude): Support above changes.
22217         (new_exclude, add_exclude_file):
22218         Initial size must now be a power of two to simplify overflow checking.
22219         (free_exclude, fnmatch_no_wildcards): New function.
22220         (excluded_filename): No longer requires options arg, as the options
22221         are determined by add_exclude.  Now returns bool, not int.
22222         (excluded_filename, add_exclude):
22223         Add support for the fancy new exclusion options.
22224         (add_exclude, add_exclude_file): Now takes int options arg.
22225         Check for arithmetic overflow when computing sizes.
22226         (add_exclude_file): xrealloc might modify errno, so don't
22227         realloc until after errno might be used.
22228
22229         * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE,EXCLUDE_WILDCARDS):
22230         New macros.
22231         (free_exclude): New decl.
22232         (add_exclude, add_exclude_file): Now takes int options arg.
22233         (excluded_filename): No longer requires options arg, as the options
22234         are determined by add_exclude.  Now returns bool, not int.
22235
22236 2001-08-30  Paul Eggert  <eggert@twinsun.com>
22237
22238         * lib/alloca.c (alloca): Arg is of type size_t, not unsigned.
22239
22240 2001-08-27  Jim Meyering  <meyering@lucent.com>
22241
22242         * lib/Makefile.am (libfetish_a_SOURCES): Add strtoxmax.c
22243
22244         * lib/version-etc.c (N_): Remove definition.
22245         Revert most of last change.
22246         Instead, simply don't mark the `Copyright...' string for translation.
22247         Based on advice from Paul Eggert.
22248
22249         * lib/strtoxmax.c: Tweak comment.
22250
22251 2001-08-26  Jim Meyering  <meyering@lucent.com>
22252
22253         * m4/jm-macros.m4: Require jm_AC_PREREQ_XSTRTOIMAX.
22254
22255         * m4/xstrtoimax.m4: New file.
22256         * m4/xstrtoumax.m4: Add comments explaining why we
22257         AC_REPLACE_FUNCS(strtol).
22258
22259 2001-08-26  Jim Meyering  <meyering@lucent.com>
22260
22261         * lib/version-etc.c (version_etc_copyright_fmt): Replace literal year
22262         of copyright with `%s' so translators don't get an untranslated
22263         message in 2002.
22264         (COPYRIGHT_YEAR): Define.
22265         (version_etc): Use fprintf rather than fputs.
22266         Suggestion from Ulrich Drepper.
22267
22268         * lib/Makefile.am (libfetish_a_SOURCES): Add xstrtoimax.c.
22269
22270         * lib/strtoll.c: New file, from GNU libc.
22271         * lib/xstrtoimax.c: New file.
22272
22273         * lib/xstrtol.h: Add xstrtoimax.
22274         * lib/strtoumax.c: New file.  Simply include "strtoumax.c".
22275         * lib/strtoimax.c: New file.  Likewise, but first define
22276         STRTOUXMAX_SIGNED.
22277
22278         * lib/strtoumax.c: Factor to work both for unsigned and signed types,
22279         ...
22280         * lib/strtoxmax.c: ... then renamed to this.
22281
22282 2001-08-18  Paul Eggert  <eggert@twinsun.com>
22283
22284         * m4/inttypes.m4: Add AC_PREREQ(2.13).
22285         (jm_AC_HEADER_INTTYPES_H): Test for intmax_t, too.
22286         (jm_AC_TYPE_INTMAX_T): New macro.
22287         (jm_AC_TYPE_UINTMAX_T): Moved here from uintmax_t.m4.
22288
22289         * m4/longlong.m4 (jm_AC_TYPE_LONG_LONG): New macro.
22290
22291         * m4/longlong.m4: Renamed from ulonglong.m4.
22292         * m4/inttypes.m4: Renamed from inttypes_h.m4.
22293         * m4/uintmax_t.m4: Removed.
22294
22295 2001-08-13  Paul Eggert  <eggert@twinsun.com>
22296
22297         * lib/Makefile.am (unlocked-io.h): Do not append "_unlocked" twice.
22298         Port to Solaris 8, where 'sed' requires a space after the 'r'
22299         command, and where sh dislikes "$/".  Clean up the spacing a bit.
22300         Redirect output to $tmp just once.
22301
22302 2001-08-12  Paul Eggert  <eggert@sic.twinsun.com>
22303
22304         * lib/addext.c (<errno.h>): Include.
22305         (errno): Declare if not defined.
22306         (addext): Work correctly when pathconf returns -1 and leaves
22307         errno alone because there is no limit.  Also, work even if
22308         pathconf returns a value greater than SIZE_MAX.
22309
22310 2001-08-12  Jim Meyering  <meyering@lucent.com>
22311
22312         * m4/afs.m4, assert.m4, bison.m4, check-decl.m4, chown.m4, d-ino.m4,
22313         d-type.m4, dos.m4, error.m4, fnmatch.m4, fpending.m4, fstypename.m4,
22314         fsusage.m4, ftruncate.m4, getgroups.m4, glibc.m4, gnu-source.m4,
22315         group-member.m4, jm-glibc-io.m4, jm-macros.m4, jm-mktime.m4,
22316         jm-winsz1.m4, jm-winsz2.m4, lchown.m4, lib-check.m4, libintl.m4,
22317         link-follow.m4, ls-mntd-fs.m4, lstat.m4, malloc.m4, mbrtowc.m4,
22318         mbstate_t.m4, mbswidth.m4, memcmp.m4, nanosleep.m4, perl.m4,
22319         prereq.m4, putenv.m4, readdir.m4, realloc.m4, regex.m4, rename.m4,
22320         rmdir-errno.m4, search-libs.m4, st_dm_mode.m4, st_mtim.m4, stat.m4,
22321         strftime.m4, timespec.m4, unlink-busy.m4, uptime.m4, utimbuf.m4,
22322         utime.m4, utimes.m4, xstrtoumax.m4:
22323         Quote the first argument in each use of AC_DEFUN.
22324
22325 2001-08-12  Jim Meyering  <meyering@lucent.com>
22326
22327         * lib/xgetcwd.c (xgetcwd) [defined __GLIBC__ && __GLIBC__ >= 2]:
22328         Simply `return getcwd (NULL, 0);'.
22329         [! (defined __GLIBC__ && __GLIBC__ >= 2)]:
22330         Use 1300 as initial value for length, not PATH_MAX.
22331
22332         * lib/pathmax.h: Clean up cpp syntax.
22333
22334 2001-08-12  Jim Meyering  <meyering@lucent.com>
22335
22336         * lib/gettimeofday.c: New file.
22337         * lib/gtod.h: New file.
22338         * lib/Makefile.am (libfetish_a_SOURCES): Add gtod.h.
22339
22340 2001-08-05  Jim Meyering  <meyering@lucent.com>
22341
22342         * m4/jm-macros.m4: Require autoconf-2.52.
22343
22344 2001-08-04  Jim Meyering  <meyering@lucent.com>
22345
22346         * lib/error.h (__attribute__): Remove `|| __STRICT_ANSI__' from #if
22347         stmt, to get in sync with glibc.
22348
22349 2001-08-03  Paul Eggert  <eggert@twinsun.com>
22350
22351         The following changes are from gettext 0.10.39 as maintained by
22352         Bruno Haible.
22353
22354         * lib/mbswidth.h (MBSW_REJECT_UNPRINTABLE, MBSW_REJECT_INVALID):
22355         Renamed from MBSW_ACCEPT_UNPRINTABLE and MBSW_ACCEPT_INVALID
22356         with inverted sense.  All uses changed.
22357
22358         * lib/mbswidth.c: Don't include <limits.h>.
22359         Include <stdlib.h> and <string.h> unconditionally.
22360         (iswcntrl, mbsinit, ISCNTRL): New macros.
22361         (mbsnwidth): Use K&R style function declarations.
22362         Don't bother checking for MB_LEN_MAX == 1, since the compiler
22363         can optimize it when MB_CUR_MAX == 1.
22364         The width of control characters is zero, not 1.
22365
22366 2001-08-03  Paul Eggert  <eggert@twinsun.com>
22367
22368         The following changes are from gettext 0.10.39 as maintained by
22369         Bruno Haible, except that getline.m4 continues to use AC_LIBOBJ.
22370
22371         * m4/codeset.m4: Upgrade to serial AM1.
22372         (AM_LANGINFO_CODESET): Renamed from jm_LANGINFO_CODESET;
22373         all uses changed.  Quote first arg of AC_DEFUN.
22374         (am_cv_langinfo_codeset): Renamed from jm_cv_langinfo_codeset.
22375
22376         * m4/iconv.m4: Upgrade to serial AM2.
22377         (AM_ICONV): Renamed from jm_ICONV; all uses changed.
22378         Add --with-libconv-prefix.
22379         Quote first arg of AC_DEFUN.  Add description for ICONV_CONST.
22380         (am_cv_func_iconv): Renamed from jm_cv_func_iconv.
22381         (am_cv_lib_iconv): Renamed from jm_cv_lib_iconv.
22382         (am_cv_proto_iconv): Renamed from jm_cv_proto_iconv.
22383         * m4/jm-macros.m4 (jm_MACROS): Reflect s/jm_/AM_/ renamings.
22384
22385         * m4/c-bs-a.m4 (AC_C_BACKSLASH_A): Quote first arg of AC_DEFUN.
22386         * m4/getline.m4 (AM_FUNC_GETLINE): Likewise.
22387         * m4/glibc21.m4 (jm_GLIBC21): Likewise.
22388         * m4/inttypes_h.m4 (jm_AC_HEADER_INTTYPES_H): Likewise.
22389         * m4/isc-posix.m4 (AC_ISC_POSIX): Likewise.
22390         * m4/lcmessage.m4 (AM_LC_MESSAGES): Likewise.
22391         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): Likewise.
22392         * m4/uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Likewise.
22393         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Likewise.
22394
22395         * m4/getline.m4 (AM_FUNC_GETLINE): Don't bother checking for
22396         string.h any more.
22397
22398         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): If not found, print "no",
22399         not the default value.
22400
22401         2001-06-25  Bruno Haible  <haible@clisp.cons.org>
22402         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Don't require AM_C_PROTOTYPES.
22403         Also check for mbsinit.  Needed for SCO 3.2v5.0.2.
22404         Also include <string.h>; this is where AIX 3.2.5 declares wcwidth.
22405         Also check for iswcntrl, used for wcwidth fallback.
22406         Use AC_TRY_COMPILE to emulate AC_CHECK_DECLS, for portability
22407         to Autoconf 2.13.
22408
22409 2001-08-03  Jim Meyering  <meyering@lucent.com>
22410
22411         * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): Use `#include', not `@%:@include',
22412         as it was in the original.  Reported by Paul Eggert.
22413
22414 2001-07-16  Jim Meyering  <meyering@lucent.com>
22415
22416         * m4/gettimeofday.m4: New file.
22417         Prompted by a report from Bernhard Baehr.
22418
22419 2001-07-15  Jim Meyering  <meyering@lucent.com>
22420
22421         * m4/Makefile.am.in (Makefile.am): Remove most of the unlocked-io.h
22422         stuff. Now it's in ../Makefile.cfg.
22423
22424 2001-07-15  Jim Meyering  <meyering@lucent.com>
22425
22426         * lib/Makefile.am (EXTRA_DIST): Add unlocked-io.hin.
22427         (BUILT_SOURCES): Add unlocked-io.h.
22428         (io_functions): Define.
22429         (unlocked-io.h): New rule.
22430         (DISTCLEANFILES): Add unlocked-io.h.
22431         (all-local): Depend on unlocked-io.h, to ensure it is created.
22432
22433         * lib/unlocked-io.hin: New file
22434
22435         * lib/regex.c: Update from glibc.
22436
22437 2001-07-05  Jim Meyering  <meyering@lucent.com>
22438
22439         * lib/Makefile.am (noinst_HEADERS): Remove definition, per new automake
22440         recommendation.
22441         (libfetish_a_SOURCES): Put all .h files here instead.
22442         Remove a thus-exposed (better checks in automake) duplicate and
22443         two unnecessary .h files.
22444
22445 2001-07-04  Jim Meyering  <meyering@lucent.com>
22446
22447         * m4/Makefile.am.in (glibc-io.struct): New target.  Rework the code
22448         that generates jm-glibc-io.m4 so that it doesn't trigger any make
22449         distcheck failure.
22450
22451 2001-07-02  Jim Meyering  <meyering@lucent.com>
22452
22453         The following changes were prompted by suggestions from Bruno Haible.
22454
22455         * m4/jm-glibc-io.m4n: New file, the template from which jm-glibc-io.m4
22456         is now generated.
22457         * m4/Makefile.am.in (Makefile.am): Include jm-glibc-io.m4n in emitted
22458         definition of EXTRA_DIST.
22459         (Makefile.am): Emit the dependency, `all-local: jm-glibc-io.m4' to
22460         ensure that the generated file is created/updated whenever the list
22461         of $(unlocked_functions) is changed.
22462         (jm-glibc-io.m4): New rule.
22463         (unlocked-io.h): New rule -- currently unused.
22464
22465 2001-06-24  Jim Meyering  <meyering@lucent.com>
22466
22467         * m4/regex.m4 (jm_INCLUDED_REGEX): Use a quadrigraph to represent an
22468         unmatched right bracket, rather than kludging it with an extra,
22469         falsely-matching quote in a comment.  Patch by Akim Demaille.
22470
22471 2001-06-11  Jim Meyering  <meyering@lucent.com>
22472
22473         * lib/regex.c: Update from GNU libc.
22474
22475 2001-05-27  Jim Meyering  <meyering@lucent.com>
22476
22477         * m4/prereq.m4 (jm_PREREQ_READUTMP): Check for ut_type in struct utmpx.
22478         Check for ut_type in struct utmp.
22479
22480 2001-05-27  Jim Meyering  <meyering@lucent.com>
22481
22482         * lib/readutmp.h (UT_TYPE): Define.
22483
22484 2001-05-24  Jim Meyering  <meyering@lucent.com>
22485
22486         * lib/argmatch.c: Include "quote.h".
22487         (argmatch_invalid): Remove explicit `' quotes.  Instead, use the
22488         quote function.  Reported by Göran Uddeborg.
22489
22490 2001-05-22  Jim Meyering  <meyering@lucent.com>
22491
22492         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't use AC_LIBOBJ(strftime),
22493         now that we use the package-supplied version unconditionally.
22494         (jm_FUNC_STRFTIME): Don't replace strftime, for the same reason.
22495
22496 2001-05-21  Jim Meyering  <meyering@lucent.com>
22497
22498         * m4/regex.m4: Change a couple backticks to single quotes to avoid
22499         shell syntax errors.
22500
22501 2001-05-21  Alexandre Duret-Lutz  <duret_g@epita.fr>
22502
22503         * m4/dos.m4 (jm_AC_DOS): Check for _WIN32, __WIN32__, and __MSDOS__.
22504
22505 2001-05-20  Paul Eggert  <eggert@twinsun.com>
22506
22507         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME):
22508         Don't bother to check library strftime, since
22509         we'll be using our own my_strftime function anyway.
22510         Define my_strftime instead of strftime.
22511
22512 2001-05-20  Alexandre Duret-Lutz  <duret_g@epita.fr>
22513
22514         * lib/dirname.c (dir_name): Compute append_dot using path, not newpath
22515         which is not yet declared.
22516
22517 2001-05-15  Jim Meyering  <meyering@lucent.com>
22518
22519         * m4/regex.m4: Use proper quoting so brackets appear in the test
22520         program.
22521         Reported by, and with help from, Bruno Haible.
22522
22523 2001-05-13  Jim Meyering  <meyering@lucent.com>
22524
22525         * m4/jm-macros.m4 (major_t, minor_t): Define to unsigned int if
22526         undefined.
22527
22528 2001-05-11  Paul Eggert  <eggert@twinsun.com>
22529
22530         dirname code cleanup.  base_name now behaves more compatibly
22531         with POSIX basename when given file names that have trailing
22532         slashes, and similarly for dir_name.  Add new primitives
22533         base_len and dir_len.  Put the directory-name-related decls
22534         into dirname.h.
22535
22536         * lib/addext.c (ISSLASH, base_name): Remove; now in dirname.h.
22537         * lib/backupfile.c (base_name): Likewise.
22538         * lib/basename.c (FILESYSTEM_PREFIX_LEN, PARAMS, ISSLASH): Likewise.
22539         * lib/dirname.c (FILESYSTEM_PREFIX_LEN, ISSLASH): Likewise.
22540         * lib/makepath.c (strip_trailing_slashes): Likewise.
22541         * lib/path-concat.c (DIRECTORY_SEPARATOR, FILESYSTEM_PREFIX_LEN,
22542         ISSLASH): Likewise.
22543         * lib/rename.c (strip_trailing_slashes): Likewise.
22544         * lib/same.c (base_name): Likewise.
22545         * lib/stripslash.c (ISSLASH): Likewise.
22546
22547         * lib/addext.c: Include <dirname.h> after size_t is defined.
22548         * lib/backupfile.c: Likewise.
22549
22550         * lib/addext.c (addext): Use base_len to trim redundant
22551         trailing slashes instead of doing it ourselves.
22552         But do not trim the last slash if it is not redundant.
22553
22554         * lib/backupfile.c (find_backup_file_name,
22555         max_backup_version): Use base_len instead of rolling it ourselves.
22556         Handle the case of "" and (on DOS) "C:" correctly.
22557
22558         * lib/basename.c: Do not include <stdio.h>, <assert.h>; no longer
22559         needed. Include <string.h>, <dirname.h>.
22560         (base_name): Allow file names ending in slashes, other than names
22561         that are all slashes.  In this case, return the basename followed
22562         by the slashes.  This is more general, and can be used in places
22563         where the original base_name purposely had an assertion failure.
22564         (base_len): New function.
22565
22566         * lib/dirname.c: Include <string.h> instead of <stdlib.h>.
22567         Do not include <assert.h>; no longer needed.
22568         Include xalloc.h.
22569         (memrchr): Remove decl.
22570         (dir_name_r): Remove.
22571         (dir_len): Renamed from dirlen.  All callers changed.
22572         Rewrite in terms of base_name, for simplicity and consistency.
22573         (dir_name): Never return NULL.  All callers changed.
22574         Do not include <stdlib.h> in test program; no longer needed.
22575         return 0; is fine for test program.
22576
22577         * lib/dirname.h (DIRECTORY_SEPARATOR, ISSLASH, FILESYSTEM_PREFIX_LEN):
22578         New macros.
22579         (base_name, base_len, dir_len, strip_trailing_slashes): New decls.
22580
22581         * lib/path-concat.c (path_concat): Use base_len to compute
22582         base length, not strlen; this means we cannot rely on memcpy
22583         to null-terminate.
22584
22585         * lib/same.c (STREQ): Remove.
22586         (same_name): Handle the case where the basename ends in trailing '/'.
22587
22588         * lib/stripslash.c (strip_trailing_slashes): Return nonzero if
22589         a slash was stripped.  Do not strip the last slash after a
22590         file system prefix.
22591
22592 2001-05-11  Paul Eggert  <eggert@twinsun.com>
22593
22594         * lib/Makefile.am (libfetish_a_SOURCES):
22595         Add strftime.c, since we now compile it on all hosts.
22596
22597         * lib/strftime.c (my_strftime):
22598         Define to nstrftime if emacs, but only if my_strftime is not defined.
22599         (extra_args, extra_args_spec, extra_args_spec_iso): Rename from
22600         ut_argument, ut_argument_spec, ut_argument_spec_iso, respectively.
22601         Add one more extra argument: a nanoseconds value.
22602         All uses changed.
22603         (ns): New macro.
22604         (my_strftime function): Add %N format.
22605         (emacs_strftimeu): Renamed from emacs_strftime,
22606         with extra ut argument.
22607
22608 2001-05-09  Paul Eggert  <eggert@twinsun.com>
22609
22610         * m4/jm-macros.m4 (jm_MACROS): Do not check for fseeko; no longer used.
22611
22612 2001-04-21  Jim Meyering  <meyering@lucent.com>
22613
22614         * m4/rmdir-errno.m4: Write to a new file, so that a restrictive umask
22615         doesn't interfere.
22616
22617 2001-04-21  Alexandre Duret-Lutz  <duret_g@epita.fr>
22618
22619         * m4/ftruncate.m4: Check for chsize.
22620         Link with ftruncate.o unconditionally if ftruncate is missing.
22621         This was required when cross-compiling to i586-mingw32msvc.
22622
22623 2001-04-08  Jim Meyering  <meyering@lucent.com>
22624
22625         * lib/getdate.y (get_date): Set tm_isdst to -1 to ensure that it is
22626         recomputed; that's necessary when the offset spans a DST transition.
22627         Patch by David J. MacKenzie.  Reported by Hon-Yin Kok.
22628
22629 2001-04-02  Jim Meyering  <meyering@lucent.com>
22630
22631         * lib/regex.h, regex.c: Update from GNU libc.
22632
22633 2001-03-24  Jim Meyering  <meyering@lucent.com>
22634
22635         * m4/jm-macros.m4: Require autoconf-2.49d.
22636
22637 2001-03-20  Bruno Haible  <haible@clisp.cons.org>
22638
22639         * m4/iconv.m4 (jm_ICONV): Recommend GNU libiconv.
22640
22641 2001-03-19  Paul Eggert  <eggert@twinsun.com>
22642
22643         * lib/version-etc.c (version_etc_copyright): Update to 2001.
22644
22645 2001-03-17  Jim Meyering  <meyering@lucent.com>
22646
22647         * m4/memcmp.m4 (jm_AC_FUNC_MEMCMP): Remove my copy of AC_FUNC_MEMCMP,
22648         now that the version in autoconf is equivalent.
22649         (jm_FUNC_MEMCMP): Adjust to use AC_FUNC_MEMCMP.
22650
22651         * m4/error.m4 (jm_PREREQ_ERROR): Invoke AC_FUNC_STRERROR_R.
22652         Suggestion from Akim Demaille.
22653
22654         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_TEMPNAME.
22655         (jm_PREREQ_TEMPNAME): New function.
22656
22657 2001-03-16  Paul Eggert  <eggert@twinsun.com>
22658
22659         * lib/tempname.c (uint64_t): Define to uintmax_t if
22660         not defined, and if UINT64_MAX is not defined.
22661         Required at least for Vax Ultrix4.3, which doesn't define uint64_t.
22662         Reported by John David Anglin.
22663
22664 2001-03-15  Bruno Haible  <haible@clisp.cons.org>
22665
22666         * lib/localcharset.c (locale_charset): Allow wildcard syntax. Also
22667         resolve alias if codeset is empty.
22668         * lib/config.charset (BeOS): Use wildcard syntax.
22669
22670 2001-03-13  Jim Meyering  <meyering@lucent.com>
22671
22672         * lib/path-concat.c (path_concat)
22673         [FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]: Don't insert a backslash when
22674         concatenating e.g., `C:' and `foo'.
22675         From Bruno Haible.
22676
22677 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
22678
22679         * lib/localcharset.c (locale_charset): Don't use
22680         setlocale(LC_CTYPE,NULL). Don't return NULL.
22681         * lib/unicodeio.c (print_unicode_char): Simplify accordingly.
22682
22683 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
22684
22685         * lib/config.charset: Update for FreeBSD 4.2 and OSF/1 5.1. Add
22686         support for DOS/DJGPP.
22687
22688 2001-03-01  Paul Eggert  <eggert@twinsun.com>
22689
22690         * m4/jm-macros.m4 (jm_MACROS): Use mkstemp replacement if the system
22691         lacks mkstemp.  Compile our own tempname.c if we compile our own
22692         mkstemp.c, as mkstemp relies on tempname.
22693
22694 2001-03-01  Jim Meyering  <meyering@lucent.com>
22695
22696         * m4/dos.m4 (jm_AC_DOS): Remove extra backslashes, now that
22697         AH_VERBATIM really does output its argument verbatim.
22698
22699 2001-02-28  Paul Eggert  <eggert@twinsun.com>
22700
22701         * lib/Makefile.am (libfetish_a_SOURCES):
22702         Add dup-safer.c, fopen-safer.c.
22703         (noinst_HEADERS): Add stdio-safer.h, unistd-safer.h.
22704
22705         * lib/dup-safer.c, lib/fopen-safer.c, lib/stdio-safer.h:
22706         * lib/unistd-safer.h: New files.
22707
22708 2001-02-25  Paul Eggert  <eggert@twinsun.com>
22709
22710         The mkstemp replacement is taken from glibc 2.2.2, with some
22711         portability fixes for use outside glibc, as follows:
22712
22713         * lib/tempname.c (struct_stat64): New macro.
22714         (direxists, __gen_tempname): Use it.
22715         This avoids a portability problem with Solaris 8.
22716
22717         * lib/tempname.c (<config.h>): Include if HAVE_CONFIG_H.
22718         (<stddef.h>, <stdint.h>, <string.h>):
22719         Include only if STDC_HEADERS || _LIBC.
22720         (<fcntl.h>): Include only if HAVE_FCNTL_H || _LIBC.
22721         (<unistd.h>): Include only if HAVE_UNISTD_H || _LIBC.
22722         (<sys/time.h>): Include only if HAVE_SYS_TIME_H || _LIBC.
22723         (__set_errno): Define this macro if <errno.h> doesn't.
22724         (P_tmpdir, TMP_MAX, __GT_FILE, __GT_BIGFILE, __GT_DIR, __GT_NOCREATE):
22725         Define these macros if <stdio.h> doesn't.
22726         (S_ISDIR, S_IRUSR, S_IWUSR, S_IXUSR):
22727         Define these macros if <sys/stat.h>
22728         doesn't.  Ignore <sys/stat.h> S_ISDIR if STAT_MACROS_BROKEN.
22729         (stat64, __getpid, __gettimeofday, __mkdir, __open, __open64, lxstat64,
22730         __xstat64): Define if not _LIBC.
22731         (__secure_getenv): Define if ! (HAVE___SECURE_GETENV || _LIBC).
22732         (__gen_tempname): Invoke gettimeofday only if
22733         HAVE_GETTIMEOFDAY || _LIBC;
22734         otherwise, fall back on plain "time".
22735         Use macros like S_IRUSR | S_IWUSR rather than octal values like 0600.
22736
22737         * lib/mkstemp.c (__GT_FILE): Define to zero if not defined.
22738
22739         * lib/mkstemp.c, lib/tempname.c: New files, taken from glibc 2.2.2.
22740
22741 2001-02-18  Paul Eggert  <eggert@twinsun.com>
22742
22743         * m4/jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for sys/resource.h.
22744
22745 2001-02-17  Paul Eggert  <eggert@twinsun.com>
22746
22747         * m4/mbrtowc.m4: New file, defining jm_FUNC_MBRTOWC.
22748         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH):
22749         Use jm_FUNC_MBRTOWC, not AC_CHECK_FUNCS(mbrtowc).
22750         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Likewise.
22751
22752 2001-02-17  Paul Eggert  <eggert@twinsun.com>
22753
22754         * lib/mbswidth.c, quotearg.c (mbrtowc, mbsinit):
22755         Remove workaround macros for hosts that have mbrtowc but not
22756         mbstate_t, as we now insist on proper declarations for both
22757         before using mbrtowc.
22758
22759 2001-02-17  Jim Meyering  <meyering@lucent.com>
22760
22761         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Don't check for
22762         getmntent via AC_CHECK_FUNCS, since that would get a `no' and disrupt
22763         further attempts by AC_FUNC_GETMNTENT to check with e.g., -lgen on
22764         UnixWare 7.1.1.
22765
22766         * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): Adapt to use AC_CACHE_CHECK etc.,
22767         rather than AC_CACHE_VAL.
22768
22769 2001-02-17  Jim Meyering  <meyering@lucent.com>
22770
22771         * lib/strtoul.c: Sync from GNU libc.  Use double quotes, not <...>
22772         around included file name.
22773
22774         * lib/strnlen.c (__strnlen): Merge in a change from GNU libc.
22775
22776         * lib/strftime.c: Update from GNU libc (the only changes were to
22777         comments).
22778
22779 2001-02-17  Jim Meyering  <meyering@lucent.com>
22780
22781         * lib/regex.c: Update from libc.
22782
22783 2001-02-17  Bruno Haible  <haible@clisp.cons.org>
22784
22785         * lib/mbswidth.h (mbswidth): Also define as macro, to avoid prototype
22786         clash.
22787
22788 2001-02-16  Paul Eggert  <eggert@twinsun.com>
22789
22790         * lib/alloca.c (malloc): Undef before defining, since stdlib.h
22791         may have defined it.  Needed for Encore Umax-3.0.9.16b systems.
22792         Reported by Mark Hounschell via Paul Eggert.
22793
22794 2001-02-07  Jim Meyering  <meyering@lucent.com>
22795
22796         * m4/regex.m4 (jm_INCLUDED_REGEX): Add a test for the latest bug.
22797
22798 2001-02-05  Jim Meyering  <meyering@lucent.com>
22799
22800         * m4/jm-macros.m4: Require autoconf-2.14d (not yet released), because
22801         it includes the patch required for `large file' support with at least
22802         HP-UX's 10.20 /bin/cc.
22803
22804 2001-02-03  Jim Meyering  <meyering@lucent.com>
22805
22806         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Restore prior use of
22807         AS_IF, now that it works once again (mysteriously).
22808         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise.
22809
22810 2001-01-30  Jim Meyering  <meyering@lucent.com>
22811
22812         Don't use filenames that are 8.3-equivalent to "conftest" on DOS.
22813         * m4/chown.m4: Rename conftestchown to conftest.chown.
22814         * m4/rename.m4: s/conftestdir/conftest.d1/ and
22815         s/conftestdir2/conftest.d2/.
22816         * m4/utimes.m4: s/conftestdata/conftest.data/
22817         Inspired by Pavel Roskin's change in autoconf.
22818
22819 2001-01-30  Bruno Haible  <haible@clisp.cons.org>
22820
22821         * lib/config.charset: Update for FreeBSD 4.2.
22822
22823 2001-01-27  Jim Meyering  <meyering@lucent.com>
22824
22825         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Open-code what was
22826         a use of AS_IF.
22827         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise.
22828
22829 2001-01-26  Jim Meyering  <meyering@lucent.com>
22830
22831         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for stddef.h, now that
22832         quotearg.c includes it.
22833
22834 2001-01-26  Jim Meyering  <meyering@lucent.com>
22835
22836         * lib/quotearg.c: Include stddef.h.
22837         * lib/quote.c: Include stddef.h.
22838         Reported by Axel Kittenberger.
22839
22840         * lib/xmalloc.c [HAVE_DONE_WORKING_MALLOC_CHECK]: Enclose error-evoking
22841         line in double quotes so that it evokes a better diagnostic.
22842         [HAVE_DONE_WORKING_REALLOC_CHECK]: Likewise.
22843         Reported by Axel Kittenberger.
22844
22845 2001-01-24  Stefan Monnier  <monnier@cs.yale.edu>
22846
22847         * regex.c (mutually_exclusive_p): Don't blindly handle `charset_not'
22848         as if it was a `charset'.
22849
22850 2001-01-21  Bruno Haible  <haible@clisp.cons.org>
22851
22852         * m4/iconv.m4 (jm_ICONV): Also check whether the iconv declaration
22853         has const.
22854
22855 2001-01-21  Bruno Haible  <haible@clisp.cons.org>
22856
22857         * lib/unicodeio.c (print_unicode_char): Cast the second iconv() arg,
22858         to avoid a warning.  Add back 'const' to inptr.
22859
22860 2001-01-20  Jim Meyering  <meyering@lucent.com>
22861
22862         Be sure that headers are checked before used in code compiled
22863         for the type checks.
22864         * m4/jm-macros.m4 (jm_MACROS): Remove all header checks.
22865         In place of that, invoke jm_CHECK_ALL_TYPES.
22866         (jm_CHECK_ALL_HEADERS): New functions with the above checks.
22867         (jm_CHECK_ALL_TYPES): Require jm_CHECK_ALL_HEADERS.
22868         Alan Iwi reported a build failure on an f300-fujitsu-uxpv4.1_ES;
22869         The check for ssize_t was mistakenly run before the test for unistd.h.
22870
22871         The configure-time check for stdbool.h was missing.
22872         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_HASH.
22873         (jm_PREREQ_HASH): New function.
22874
22875 2001-01-17  Jim Meyering  <meyering@lucent.com>
22876
22877         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use AS_IF, not AS_IFELSE,
22878         for autoconf-2.49c.
22879         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Likewise.
22880
22881 2001-01-16  Jim Meyering  <meyering@lucent.com>
22882
22883         * lib/basename.c: Include <stdio.h>, needed by assert on SunOS 4.
22884         From Bruno Haible.
22885
22886 2001-01-14  Jim Meyering  <meyering@lucent.com>
22887
22888         * m4/rename.m4: Use temporary directories named conftestdir{,2}, not
22889         foo and bar.  Create conftestdir/ in the script, not in the C code.
22890         Remove directories in the script, not in the C code.
22891         Remove conftestdir{,2} before trying to create the directory.
22892         Make the entire configure script fail if the mkdir fails.
22893
22894 2001-01-14  Jim Meyering  <meyering@lucent.com>
22895
22896         * lib/rename.c: New file.  From Volker Borchert.
22897         Include stdlib.h, string.h or strings.h, and xalloc.h.
22898         Use strip_trailing_slashes rather than open-coding it.
22899
22900 2001-01-03  Paul Eggert  <eggert@twinsun.com>
22901
22902         * lib/strftime.c: Sync with glibc time/strftime.c 1.81.
22903
22904 2001-01-03  Jim Meyering  <meyering@lucent.com>
22905
22906         * lib/unicodeio.c (print_unicode_char): Remove `const' from declaration
22907         of local `inptr' to avoid warning with some system declarations of
22908         iconv.
22909
22910 2001-01-02  Volker Borchert  <bt@teknon.de>
22911
22912         * m4/rename.m4: New file.
22913         * m4/jm-macros.m4 (jm_MACROS): Require vb_FUNC_RENAME.
22914
22915 2001-01-01  Jim Meyering  <meyering@lucent.com>
22916
22917         * m4/prereq.m4 (jm_PREREQ_READUTMP): Include utmp.h (if available),
22918         even on systems with utmpx.h.  It's necessary for the declaration of
22919         utmp's ut_user member.  Reported by Andreas Jaeger.
22920
22921         * m4/check-decl.m4 (jm_CHECK_DECLS): Include grp.h and pwd.h if
22922         available. They are required for the declarations of getgrgid and
22923         getpwuid resp.
22924         (_jm_DECL_HEADERS): Check for grp.h and pwd.h.
22925         Reported by Andreas Jaeger.
22926
22927 2001-01-01  Alexandre Duret-Lutz  <duret_g@epita.fr>
22928
22929         * m4/libintl.m4 (AM_GNU_GETTEXT): Define MKINSTALLDIRS by
22930         expanding the value of $ac_aux_dir, as in AM_MISSING_HAS_RUN,
22931         so `make install' also works in VPATH builds.
22932
22933 2000-12-31  Alexandre Duret-Lutz  <duret_g@epita.fr>
22934
22935         * m4/libintl.m4 (AM_WITH_NLS): When using AC_CONFIG_AUX_DIR,
22936         prepend $(top_srcdir) to the value of MKINSTALLDIRS so that it
22937         can be used in subdirectories.
22938
22939 2000-12-29  Paul Eggert  <eggert@twinsun.com>
22940
22941         * lib/modechange.c: Do not assume that mode_t uses the
22942         traditional octal encoding.  E.g. "chmod 1 FOO" should set
22943         the other-execute bit of FOO even if S_IXOTH != 1.
22944
22945         (SUID, SGID, SVTX, RUSR, WUSR, XUSR, RGRP, WGRP, XGRP, ROTH,
22946         WOTH, XOTH, ALLM): New macros.
22947         (S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR,
22948          S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH):
22949         Use them.
22950         (S_ISGID): Fix typo; it was defaulting to the same value as S_ISUID.
22951         (S_IRWXU, S_IRWXG, S_IRWXO): Specify defaults in terms of the above.
22952         (mode_compile):
22953         No need to use uintmax_t; unsigned long is long enough.
22954         Don't bother to get suffix since we don't use it.
22955
22956 2000-12-26  Jim Meyering  <meyering@lucent.com>
22957
22958         * m4/dos.m4 (jm_AC_DOS): Rewrite (though it's still a stub) to work
22959         better with autoheader.
22960
22961 2000-12-24  Jim Meyering  <meyering@lucent.com>
22962
22963         * lib/hash.c (is_prime): Return explicit boolean values.
22964         (hash_get_first): Return NULL to appease Irix5.6's 89.
22965         Reported by Nelson Beebe.
22966
22967 2000-12-19  Bruno Haible  <haible@clisp.cons.org>
22968
22969         * lib/localcharset.c (locale_charset): Add support for Win32.
22970
22971 2000-12-18  Paul Eggert  <eggert@twinsun.com>
22972
22973         * lib/physmem.h, lib/physmem.c: New files.
22974
22975         * lib/Makefile.am (libfetish_a_SOURCES): Add physmem.c.
22976         (noinst_HEADERS): Add physmem.h.
22977
22978         * lib/xstrtol.c (__xstrtol): Add undocumented suffixes 'g' and
22979         't' for compatibility with Solaris 8 sort.
22980
22981 2000-12-18  Bruno Haible  <haible@clisp.cons.org>
22982
22983         * lib/config.charset: Add support for BeOS.
22984
22985 2000-12-17  Jim Meyering  <meyering@lucent.com>
22986
22987         * m4/dos.m4 (jm_AC_DOS): New file and macro.
22988         * m4/jm-macros.m4 (jm_MACROS): Require jm_AC_DOS.
22989
22990 2000-12-16  Jim Meyering  <meyering@lucent.com>
22991
22992         This bug had a serious impact on chown: `chown N:M FILE' (for integer
22993         N and M) would have treated it like `chown N:N FILE'.
22994
22995         * lib/userspec.c (parse_user_spec): Fix typo: s/u/g/.
22996
22997 2000-12-16  Jim Meyering  <meyering@lucent.com>
22998
22999         * lib/getusershell.c [!SHELLS_FILE && __DJGPP__]: Define
23000         SHELLS_FILE to a file name that's useful on djgpp systems.
23001         Include stdlib.h.
23002         (ADDITIONAL_DEFAULT_SHELLS): Define.
23003         (default_shells): Prepend ADDITIONAL_DEFAULT_SHELLS.
23004         Based mostly on a patch from Prashant TR.
23005
23006 2000-12-16  Bruno Haible  <haible@clisp.cons.org>
23007
23008         * lib/config.charset: Add ISO-8859-3, BIG5HKSCS, GB18030, JOHAB,
23009         VISCII, CP874, CP949, CP950, CP1250, CP1253, CP1254, CP1255, CP1256,
23010         CP1257 to the list of canonical encodings. Rename EUC-CN to GB2312.
23011
23012 2000-12-08  Andreas Schwab  <schwab@suse.de>
23013
23014         * lib/mbswidth.c (mbsnwidth): Don't loop endlessly when called with an
23015         invalid mulitbyte sequence and with the MBSW_ACCEPT_INVALID flag set.
23016
23017 2000-12-07  Jim Meyering  <meyering@lucent.com>
23018
23019         * lib/stripslash.c (ISSLASH): Define.
23020         (strip_trailing_slashes): Use ISSLASH rather than comparing against
23021         `/'.
23022         From Prashant TR.
23023
23024         * lib/dirname.c (FILESYSTEM_PREFIX_LEN): Define.
23025         (dir_name_r): Declare this function as static.
23026         [BACKSLASH_IS_PATH_SEPARATOR]: Fix a bug that'd
23027         manifest itself on a name containing a mix of slashes and
23028         backslashes.
23029         Make this function work with names starting with a DOS-style
23030         drive letter and colon prefix.
23031         (dir_name): Append `.' if necessary.
23032         Based mostly on patches from Prashant TR and Eli Zaretskii.
23033
23034         * lib/dirname.h (dir_name_r): Remove prototype.
23035
23036 2000-12-06  Paul Eggert  <eggert@twinsun.com>
23037
23038         * m4/off_t-format.m4: Remove this file.
23039         * m4/jm-macros.m4 (jm_MACROS): Remove jm_SYS_OFF_T_PRINTF_FORMAT.
23040
23041 2000-12-06  Jim Meyering  <meyering@lucent.com>
23042
23043         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): If we need the
23044         replacement strtoull, we may well need the replacement strtoul, too.
23045         Check for declarations of strtoul and strtoull.
23046         Check for strtol.  Mainly as a cue to cause automake to include
23047         strtol.c -- that file is included by each of strtoul.c and strtoull.c.
23048         Check for limits.h -- strtol.c needs it.
23049
23050 2000-12-05  Jim Meyering  <meyering@lucent.com>
23051
23052         * lib/dirname.c (dir_name_r): Add `const' in a few local declarations.
23053
23054 2000-12-04  Jim Meyering  <meyering@lucent.com>
23055
23056         * lib/path-concat.c: [!HAVE_DECL_MALLOC]: Declare malloc.
23057         Also include memory.h, stdlib.h, unistd.h if appropriate.
23058         Reported by Andreas Jaeger (conflicting declaration of malloc).
23059
23060 2000-12-02  Jim Meyering  <meyering@lucent.com>
23061
23062         * m4/off_t-format.m4 (OFF_T_PRINTF_FORMAT_STRING): New file/macro.
23063         * m4/jm-macros.m4 (jm_MACROS): require it.
23064
23065 2000-12-02  Jim Meyering  <meyering@lucent.com>
23066
23067         * lib/closeout.h: Make idempotent, to avoid some obscure warnings.
23068
23069 2000-12-01  Paul Eggert  <eggert@twinsun.com>
23070
23071         * lib/memrchr.c: Include <config.h> before any system include file.
23072
23073 2000-11-30  Jim Meyering  <meyering@lucent.com>
23074
23075         * m4/jm-macros.m4 (jm_MACROS): Check for stdint.h.
23076
23077 2000-11-30  Jim Meyering  <meyering@lucent.com>
23078
23079         * m4/getloadavg.m4: s/ifval/m4_ifval/ to accommodate new autoconf.
23080
23081 2000-11-29  Paul Eggert  <eggert@twinsun.com>
23082
23083         * lib/dirname.c (dir_name_r): Fix typo: int -> size_t.
23084
23085 2000-11-26  Jim Meyering  <meyering@lucent.com>
23086
23087         * lib/memcoll.c: Include sys/types.h.  From Werner Almesberger.
23088
23089 2000-11-22  Paul Eggert  <eggert@twinsun.com>
23090
23091         * lib/strftime.c (my_strftime): Do not invoke mbrlen with a
23092         size of (size_t) -1; it's not portable.
23093
23094 2000-11-17  Jim Meyering  <meyering@lucent.com>
23095
23096         * lib/strstr.c: Update from GNU libc.
23097
23098 2000-11-17  Akim Demaille  <akim@epita.fr>
23099
23100         * lib/obstack.h: Formatting changes.
23101         (obstack_grow, obstack_grow0): Don't cast WHERE at all: that would
23102         prevent type checking.
23103         (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
23104         cast the value to (void *): assigning a `foo *' to a `void *'
23105         variable is valid.
23106         (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
23107
23108 2000-11-16  Jim Meyering  <meyering@lucent.com>
23109
23110         * lib/strverscmp.c: Incorporate weak-alias-related changes from glibc.
23111
23112 2000-11-11  Jim Meyering  <meyering@lucent.com>
23113
23114         * lib/error.c: Add a couple #includes, merging from GNU libc version.
23115
23116 2000-11-10  Jim Meyering  <meyering@lucent.com>
23117
23118         * lib/obstack.h: Update from GNU libc.
23119         * lib/obstack.c: Likewise.
23120
23121 2000-11-08  Bruno Haible  <haible@clisp.cons.org>
23122
23123         * m4/jm-macros.m4 (jm_MACROS): Add test for wcrtomb.
23124
23125 2000-11-06  Paul Eggert  <eggert@twinsun.com>
23126
23127         * lib/getusershell.c (setusershell): Use rewind rather than
23128         fseek/fseeko, to avoid configuration hassles with fseeko.
23129         Don't bother opening SHELLS_FILE if shellstream is NULL;
23130         it's not necessary.
23131
23132 2000-11-05  Jim Meyering  <meyering@lucent.com>
23133
23134         * lib/makepath.h (make_dir): Declare.
23135         * lib/makepath.c (make_dir): Remove `static' attribute.
23136         Tweak a comment.
23137
23138 2000-11-04  Jim Meyering  <meyering@lucent.com>
23139
23140         * m4/regex.m4: Use the `m4_' prefix on `syscmd' and `m4_sysval'.
23141
23142 2000-11-04  Alexandre Duret-Lutz  <duret_g@epita.fr>
23143
23144         * lib/hash.c (hash_get_next): Fix a thinko:  when ENTRY is the
23145         last one in a bucket, advance to the next bucket.
23146
23147 2000-11-02  Vesselin Atanasov  <vesselin@bgnet.bg>
23148
23149         * lib/fnmatch.c: Do not comment out all the code if we are using
23150         the GNU C library, because in some cases we are replacing buggy
23151         code in the GNU C library itself.
23152
23153 2000-10-30  Stefan Monnier  <monnier@cs.yale.edu>
23154
23155         * regex.c (re_iswctype, re_wctype_to_bit): Fix braino.
23156         (regex_compile): Catch bogus \(\1\).
23157
23158 2000-10-30  Paul Eggert  <eggert@twinsun.com>
23159
23160         * lib/fnmatch.c (FOLD): Do not assume that characters are unsigned.
23161         (fnmatch): Fix some FNM_FILE_NAME and FNM_LEADING_DIR bugs,
23162         e.g. fnmatch("d*/*1", "d/s/1", FNM_FILE_NAME) incorrectly yielded zero.
23163
23164 2000-10-30  Paul Eggert  <eggert@twinsun.com>
23165
23166         * lib/error.h, getline.h, modechange.h:
23167         Remove "2000" from Copyright line, as the file hasn't been
23168         changed this year other than in the copyright notice.
23169
23170         * lib/xalloc.h: Add "2000" to Copyright line, as this file
23171         was changed this year.
23172
23173 2000-10-29  Jim Meyering  <meyering@lucent.com>
23174
23175         * m4/fsusage.m4: s/AC_SHELL_IFELSE/AS_IFELSE/ to match autoconf
23176         renaming.
23177         * m4/ls-mntd-fs.m4: Likewise
23178
23179 2000-10-29  Jim Meyering  <meyering@lucent.com>
23180
23181         * lib/xstat.in: Fix grammar in comment.
23182
23183 2000-10-29  Greg Louis  <glouis@dynamicro.on.ca>
23184
23185         * lib/regex.h (__restrict_arr): Move definition out of #ifndef block.
23186         Required because egcs-2.91.66 (aka 1.1.2) defines __restrict, but
23187         doesn't define __restrict_arr.
23188
23189 2000-10-28  Jim Meyering  <meyering@lucent.com>
23190
23191         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_MEMCHR.
23192         (jm_PREREQ_MEMCHR): New function.
23193
23194 2000-10-28  Jim Meyering  <meyering@lucent.com>
23195
23196         * lib/memchr.c: Update from libc.
23197         Adjust for portability:
23198         [HAVE_STDLIB_H]: Include stdlib.h.
23199         [HAVE_BP_SYM_H || _LIBC]: Guard inclusion of bp-sym.h.
23200         Undef __memchr, too.
23201         [!weak_alias]: Define __memchr to memchr.
23202
23203         * lib/regex.c: Update from libc.
23204         * lib/regex.h: Likewise.
23205         * lib/getopt1.c: Likewise.
23206         * lib/memcmp.c: Likewise.
23207
23208         * lib/getusershell.c (setusershell) [HAVE_FSEEKO]: Use fseeko.
23209         Avoid using fseek, when possible -- it's broken by design.
23210         Patch by Ulrich Drepper.
23211
23212 2000-10-27  Stefan Monnier  <monnier@cs.yale.edu>
23213
23214         * regex.c (POP_FAILURE_REG_OR_COUNT, re_match_2_internal)
23215         (re_match_2_internal, re_match_2_internal, re_match_2_internal):
23216         Giving in to popular pressure to shut up the compiler with casts.
23217
23218 2000-10-26  Jim Meyering  <meyering@lucent.com>
23219
23220         * lib/strftime.c: Update from libc.
23221
23222 2000-10-25  Stefan Monnier  <monnier@cs.yale.edu>
23223
23224         * regex.c: More `unsigned char' -> `re_char' changes.
23225         Also change several `int' into `re_wchar_t'.
23226         (PATTERN_STACK_EMPTY, PUSH_PATTERN_OP, POP_PATTERN_OP): Remove.
23227         (PUSH_FAILURE_POINTER): Don't cast any more.
23228         (POP_FAILURE_REG_OR_COUNT): Remove the cast that strips `const'.
23229         We want GCC to complain, since this piece of code makes
23230         re_match non-reentrant, which *should* be fixed.
23231         (GET_BUFFER_SPACE): Use size_t rather than unsigned long.
23232         (EXTEND_BUFFER): Use RETALLOC.
23233         (SET_LIST_BIT): Don't cast.
23234         (re_wchar_t): New type.
23235         (re_iswctype, re_wctype_to_bit): Make it crystal clear to GCC
23236         that those two functions will always properly return.
23237         (IMMEDIATE_QUIT_CHECK): Cast to void.
23238         (analyse_first): Use recursion rather than an explicit stack.
23239         (re_compile_fastmap): Can't fail anymore.
23240         (re_search_2): Don't check re_compile_fastmap for failure.
23241         (PUSH_NUMBER): Renamed from PUSH_FAILURE_COUNT.
23242         Now also sets the new value (passed in a new argument).
23243         (re_match_2_internal): Use it.
23244         Also, use a new var `reg' of type size_t when looping through regs
23245         rather than reuse the inappropriate `mcnt'.
23246
23247 2000-10-25  Jim Meyering  <meyering@lucent.com>
23248
23249         * lib/obstack.c: Update from libc.
23250
23251 2000-10-24  Kenichi Handa  <handa@etl.go.jp>
23252
23253         * regex.c (regex_compile): Change the way of handling a range from
23254         a char less than 256 to a char not less than 256.
23255
23256 2000-10-24  Andrew Innes  <andrewi@gnu.org>
23257
23258         * regex.c (IMMEDIATE_QUIT_CHECK): New macro, which does QUIT on
23259         NT-Emacs only.
23260         (re_match_2_internal): Use IMMEDIATE_QUIT_CHECK instead of QUIT,
23261         so that re_search functions only quit when callers expect them to.
23262
23263 2000-10-23  Jim Meyering  <meyering@lucent.com>
23264
23265         * lib/hard-locale.c (hard_locale): Revert last change -- it was simply
23266         wrong.  That set_locale call must not have any side effects.
23267         From Paul Eggert.
23268
23269 2000-10-22  Jim Meyering  <meyering@lucent.com>
23270
23271         * lib/md5.c (md5_process_block) [OP]: Use `rol', not CYCLIC.
23272         [CYCLIC]: Remove now-unused definition.
23273
23274         * lib/save-cwd.c (O_DIRECTORY): Define, if needed.
23275         (save_cwd) [HAVE_FCHDIR]: Use O_DIRECTORY when opening ".".
23276         Suggestion from Ulrich Drepper.
23277
23278 2000-10-21  Jim Meyering  <meyering@lucent.com>
23279
23280         * m4/check-decl.m4 (jm_CHECK_DECLS): Also check for memrchr.
23281         * m4/prereq.m4 (jm_PREREQ_DIRNAME): New macro.
23282         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memrchr.
23283
23284 2000-10-21  Jim Meyering  <meyering@lucent.com>
23285
23286         * lib/dirname.c (memrchr): Declare if necessary.
23287         (dir_name): Remove the restriction that there be no
23288         trailing slashes.  Now, this code skips past them, effectively
23289         ignoring them.
23290         [TEST_DIRNAME] (main): New unit tests.
23291
23292         * lib/memrchr.c: New file from GNU libc.
23293         Undef __memrchr, too.
23294         [!weak_alias]: Define __memrchr to memrchr.
23295         Guard weak_alias use with `#ifdef weak_alias'.
23296
23297 2000-10-21  Jim Meyering  <meyering@lucent.com>
23298
23299         * lib/dirname.c (dir_name_r): New function, factored out of dir_name.
23300         (dir_name): Use dir_name_r.
23301         * lib/dirname.h (dir_name_r): Declare it.
23302
23303 2000-10-17  Jim Meyering  <meyering@lucent.com>
23304
23305         * lib/quote.h (PARAMS): Define and use.
23306         Reported by Akim Demaille.
23307
23308         * lib/getopt.c: Update from libc.
23309
23310 2000-10-16  Jim Meyering  <meyering@lucent.com>
23311
23312         * lib/hard-locale.c (hard_locale): Use "", not 0 as 2nd arg to
23313         setlocale.
23314         From Jan Fedak.
23315
23316 2000-10-15  Stefan Monnier  <monnier@cs.yale.edu>
23317
23318         * regex.c (WIDE_CHAR_SUPPORT): Define if _LIBC as well.
23319
23320 2000-09-25  Jim Meyering  <meyering@lucent.com>
23321
23322         * lib/md5.h (rol): Define (from GnuPG).
23323
23324         * lib/sha.c: Give credit (GnuPG) where due.
23325         (M): Use rol rather than open-coding it.
23326         Add a FIXME comment.
23327
23328 2000-09-21  Jim Meyering  <meyering@lucent.com>
23329
23330         * lib/userspec.c (parse_user_spec): Remove debugging printf I'd added.
23331         Reported by Michael Stone.
23332
23333 2000-09-20  Jim Meyering  <meyering@lucent.com>
23334
23335         * lib/Makefile.am (libfetish_a_SOURCES): Add sha.c.
23336         (noinst_HEADERS): Add sha.h.
23337         Based on code from Scott G. Miller and from GnuPG.
23338
23339 2000-09-18  Jim Meyering  <meyering@lucent.com>
23340
23341         * m4/getloadavg.m4 (AC_FUNC_GETLOADAVG): Restore the initial value of
23342         LIBS. Otherwise, everyone ends up linking with -lelf for some
23343         configurations.
23344         Reported by Mike Stone.
23345
23346 2000-09-15  Jim Meyering  <meyering@lucent.com>
23347
23348         * lib/regex.c: Update from libc.
23349
23350 2000-09-10  Jim Meyering  <meyering@lucent.com>
23351
23352         * lib/getopt.c (_getopt_internal): Update from glibc.
23353
23354 2000-09-09  Jim Meyering  <meyering@lucent.com>
23355
23356         * lib/quotearg.c: Rename ISASCII to IN_CTYPE_DOMAIN, so people don't
23357         think it should be used as a general replacement for isascii.
23358         * lib/fnmatch.c: Likewise.
23359         * lib/mbswidth.c: Likewise
23360         * lib/regex.c: Likewise.
23361
23362         Don't use atoi.
23363         * lib/userspec.c: Include sys/param.h and limits.h.
23364         Include xstrtol.h.
23365         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
23366         (UID_T_MAX, GID_T_MAX, MAXUID, MAXGID): Define.
23367         (parse_user_spec): Use xstrtoul, not atoi when converting numeric
23368         UID, GID.  Check range.
23369
23370 2000-09-06  Jim Meyering  <meyering@lucent.com>
23371
23372         * lib/getopt.c (_getopt_internal): Update from glibc.
23373
23374 2000-08-30  Jim Meyering  <meyering@lucent.com>
23375
23376         * lib/strftime.c: Merge in changes from GNU libc.
23377
23378 2000-08-26  Jim Meyering  <meyering@lucent.com>
23379
23380         * m4/jm-macros.m4: Use jm_FUNC_FPENDING.
23381         * m4/fpending.m4: New file.
23382
23383 2000-08-26  Jim Meyering  <meyering@lucent.com>
23384
23385         * lib/closeout.c: Include "__fpending.h".
23386         (close_stdout_status): Return right away if there's nothing to flush.
23387
23388         * lib/Makefile.am (noinst_HEADERS): Add __fpending.h.
23389         * lib/__fpending.c: New file.
23390         * lib/__fpending.h: New file.
23391
23392 2000-08-20  Jim Meyering  <meyering@lucent.com>
23393
23394         * m4/check-decl.m4: Include utmp.h `#if HAVE_UTMP_H', rather than
23395         `#if !HAVE_UTMPX_H'.  The latter would lose on systems with neither
23396         utmp.h nor utmpx.h.  Reported by Eli Zaretskii.
23397
23398 2000-08-11  J. David Anglin  <dave@hiauly1.hia.nrc.ca>
23399
23400         Improve fileutils installation on systems where running
23401         programs (like install) can't be unlinked.
23402         * m4/unlink-busy.m4 (jm_FUNC_UNLINK_BUSY_TEXT): New file/macro.
23403         * m4/jm-macros.m4: Use jm_FUNC_UNLINK_BUSY_TEXT.
23404
23405 2000-08-07  Paul Eggert  <eggert@twinsun.com>
23406
23407         Standardize on "memory exhausted" instead of "Memory exhausted"
23408         or "virtual memory exhausted".
23409         * lib/obstack.c (print_and_abort): Use "memory exhausted", not
23410         "virtual memory exhausted".
23411         * lib/same.c (same_name): Invoke xalloc_die instead of printing
23412         our own message.
23413         * lib/userspec.c (parse_user_spec): Likewise.
23414         * lib/bumpalloc.h: comment fix
23415         * lib/same.c, userspec.c: Include xalloc.h.
23416
23417         * lib/xalloc.h (xalloc_msg_memory_exhausted): Now char const[],
23418         not char *const and pointing to a constant array.
23419         * lib/xmalloc.c (xalloc_msg_memory_exhausted): Likewise.
23420         (xrealloc): Comment fix.
23421
23422         * lib/userspec.c (parse_user_spec):
23423         Don't translate a message until just before returning,
23424         to avoid unnecessary translation.
23425
23426 2000-08-07  Jim Meyering  <meyering@lucent.com>
23427
23428         * lib/addext.c, argmatch.c, argmatch.h, backupfile.h, bumpalloc.h,
23429         chown.c, diacrit.h, dirname.h, dup2.c, exclude.h, fileblocks.c,
23430         fnmatch.c, fnmatch.h, fsusage.c, fsusage.h, getdate.h,
23431         getgroups.c, gethostname.c, getopt.h, group-member.c,
23432         hard-locale.c, hash.h, isdir.c, lchown.c, linebuffer.c,
23433         linebuffer.h, long-options.h, malloc.c, md5.c, md5.h, memchr.c,
23434         memcmp.c, memcoll.c, memset.c, mktime.c, modechange.h, obstack.h,
23435         pathmax.h, realloc.c, rmdir.c, safe-read.c, save-cwd.c, stime.c,
23436         stpcpy.c, strcasecmp.c, strcspn.c, strdup.c, stripslash.c,
23437         strstr.c, strtod.c, strtol.c, strtoul.c, strtoull.c, strtoumax.c,
23438         utime.c, version-etc.h, xalloc.h, xstrdup.c, xstrtoumax.c,
23439         yesno.c: Back out Copyright date changes for each file with no change
23440         this year.  This eases coordination with other programs using the same
23441         source code modules.  From Paul Eggert.
23442
23443 2000-08-06  Paul Eggert  <eggert@twinsun.com>
23444
23445         * m4/mbstate_t.m4 (AC_MBSTATE_T): Define mbstate_t to be int,
23446         not char, for compatibility with glibc 2.1.3 strftime.c.
23447
23448 2000-08-03  Greg McGary  <greg@mcgary.org>
23449
23450         * lib/regex.c (SET_HIGH_BOUND, MOVE_BUFFER_POINTER,
23451         ELSE_EXTEND_BUFFER_HIGH_BOUND): New macros.
23452         (EXTEND_BUFFER): Use them.
23453
23454 2000-08-01  Jim Meyering  <meyering@lucent.com>
23455
23456         * lib/dirname.c (ISSLASH): Define.
23457         (BACKSLASH_IS_PATH_SEPARATOR): Define.
23458         (dir_name) [BACKSLASH_IS_PATH_SEPARATOR]: Handle the case in which
23459         both `\' and `/' may be use as path separators.
23460         Based on a patch from Prashant TR.
23461
23462 2000-07-31  Paul Eggert  <eggert@twinsun.com>
23463
23464         * lib/quotearg.c (quotearg_n_options): Don't make the initial
23465         slot vector a constant, since it might get modified.
23466
23467 2000-07-31  Jim Meyering  <meyering@lucent.com>
23468
23469         * lib/xmalloc.c: Use `virtual memory exhausted', not
23470         `Memory exhausted'.
23471         * lib/obstack.c (print_and_abort): Likewise.
23472
23473 2000-07-30  Paul Eggert  <eggert@twinsun.com>
23474
23475         * lib/quotearg.c (quotearg_n_options): Preallocate a slot 0
23476         buffer, so that the caller can always quote one small
23477         component of a "memory exhausted" message in slot 0.
23478         From a suggestion by Jim Meyering.
23479
23480 2000-07-30  Jim Meyering  <meyering@lucent.com>
23481
23482         * lib/makepath.c (make_path): Quote the other instance, too.
23483
23484         * lib/quotearg.c (N_STATIC_SLOTVECS): Define.
23485         (STATIC_BUF_SIZE): Define.
23486         (quotearg_n_options): Use only statically allocated storage when
23487         N < N_STATIC_SLOTVECS and the length of the quoted result is smaller
23488         than STATIC_BUF_SIZE.
23489
23490 2000-07-29  Jim Meyering  <meyering@lucent.com>
23491
23492         * lib/diacrit.c (diacrit_diac): Use __MSDOS__ in favor of MSDOS.
23493         * lib/dirname.c (dir_name): Likewise.
23494
23495         * lib/basename.c (base_name): Use ISSLASH rather than comparing against
23496         `/'.
23497
23498         * lib/dirname.c (dir_name) [MSDOS]: Declare `lim' to be const.
23499         (dir_name): Assert that there are no trailing slashes.
23500
23501 2000-07-29  Bruno Haible  <haible@clisp.cons.org>
23502
23503         * lib/mbswidth.h (mbswidth): Add a flags argument.
23504         (mbswidth): New declaration.
23505         (MBSW_ACCEPT_INVALID, MBSW_ACCEPT_UNPRINTABLE): New macros.
23506         * lib/mbswidth.c (mbswidth): Add a flags argument.
23507         (mbsnwidth): New function.
23508
23509 2000-07-24  Jim Meyering  <meyering@lucent.com>
23510
23511         * lib/mbswidth.c: Remove useless #else.  From Bruno Haible.
23512
23513 2000-07-23  Paul Eggert  <eggert@twinsun.com>
23514
23515         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Check for wcwidth declaration.
23516
23517 2000-07-23  Paul Eggert  <eggert@twinsun.com>
23518
23519         * lib/quotearg.c: Streamline by invoking multibyte code only if needed.
23520         <wchar.h>: Include only if HAVE_MBRTOWC && 1 < MB_LEN_MAX.
23521         (MB_CUR_MAX): Redefine to 1 if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX).
23522         (quotearg_buffer_restyled): If a unibyte locale, don't bother to
23523         invoke multibyte primitives.
23524
23525 2000-07-23  Paul Eggert  <eggert@twinsun.com>
23526
23527         * lib/quotearg.c:
23528         Include <wchar.h> even if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX),
23529         so that mbstate_t is always defined.
23530
23531         Do not inspect MB_LEN_MAX, since it's incorrectly defined to
23532         be 1 in at least one GCC installation, and this configuration
23533         error is likely to be common.  Ignoring MB_LEN_MAX hurts
23534         performance on hosts that have mbrtowc but have only unibyte
23535         locales, but I assume these hosts are rare.
23536
23537 2000-07-23  Paul Eggert  <eggert@twinsun.com>
23538
23539         * lib/mbswidth.c (_XOPEN_SOURCE):
23540         Don't define; this causes problems on Solaris 7.
23541         (wcwidth) [!HAVE_DECL_WCWIDTH]: Declare.
23542
23543 2000-07-23  Jim Meyering  <meyering@lucent.com>
23544
23545         * m4/check-decl.m4 (jm_CHECK_DECLS): Check for declarations of these,
23546         too: getgrgid, getpwuid, getuid.
23547
23548 2000-07-23  Jim Meyering  <meyering@lucent.com>
23549
23550         * lib/basename.c (base_name): Add an assertion.
23551
23552 2000-07-23  Bruno Haible  <haible@clisp.cons.org>
23553
23554         * lib/quotearg.c: When the system forces us to redefine mbstate_t,
23555         shadow its mbsinit function.
23556
23557 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
23558
23559         * lib/mbswidth.h: New file.
23560         * lib/mbswidth.c: New file.
23561         * lib/Makefile.am (libfetish_a_SOURCES): Add mbswidth.c.
23562         (noinst_HEADERS): Add mbswidth.h.
23563
23564 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
23565
23566         * lib/config.charset: Add support for FreeBSD. Improve support for
23567         HP-UX and IRIX 6.
23568
23569 2000-07-16  Bruno Haible  <haible@clisp.cons.org>
23570
23571         * m4/mbswidth.m4: New file.
23572         * m4/prereq.m4 (jm_PREREQ): Call jm_PREREQ_MBSWIDTH.
23573
23574 2000-07-15  Jim Meyering  <meyering@lucent.com>
23575
23576         * lib/makepath.c: Include quote.h.
23577         (make_path): Convert "`%s'" in format strings to "%s", and wrap each
23578         corresponding argument in a `quote (...)' call.
23579         Give better diagnostics.
23580
23581         * lib/Makefile.am (libfetish_a_SOURCES): Add quote.c.
23582         (noinst_HEADERS): Add quote.h.
23583
23584         * lib/quote.c (quote, quote_n): New file.  Two functions taken verbatim
23585         from tar's src/misc.c.
23586         * lib/quote.h: New file.  Prototypes for same.
23587
23588 2000-07-14  Paul Eggert  <eggert@twinsun.com>
23589
23590         From a suggestion by Bruno Haible.
23591         * lib/quotearg.c (mbrtowc): Do not use HAVE_WCHAR_H in the definition.
23592         Use defined mbstate_t, not HAVE_MBSTATE_T_OBJECT,
23593         to decide whether to define the BeOS workaround macro;
23594         this adjusts to the change to AC_MBSTATE_T.
23595
23596 2000-07-14  Jim Meyering  <meyering@lucent.com>
23597
23598         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Require
23599         jm_AC_TYPE_UINTMAX_T.
23600
23601 2000-07-13  Paul Eggert  <eggert@twinsun.com>
23602
23603         * lib/quotearg.h (enum quoting style): New enum clocale_quoting_style.
23604
23605         * lib/quotearg.c (quoting_style_args, quoting_style_vals,
23606         quotearg_buffer_restyled): Add support for
23607         clocale_quoting_style.  Undo previous change to
23608         locale_quoting_style behavior, and undo the "{LEFT QUOTATION MARK}"
23609         and "{RIGHT QUOTATION MARK}" msgids.
23610
23611 2000-07-10  Paul Eggert  <eggert@twinsun.com>
23612
23613         From a suggestion by Bruno Haible.
23614         * m4/mbstate_t.m4 (AC_MBSTATE_T):
23615         Renamed from AC_MBSTATE_T_OBJECT.  All uses changed.
23616         Change from a two-part test, which defines both HAVE_MBSTATE_T_OBJECT
23617         and mbstate_t, to a single-part test that simply defines mbstate_t.
23618         * m4/prereq.m4 (jm_PREREQ_QUOTEARG):
23619         s/AC_MBSTATE_T_OBJECT/AC_MBSTATE_T/.
23620
23621 2000-07-10  Jim Meyering  <meyering@lucent.com>
23622
23623         * m4/strerror_r.m4: Mirror the correction made in autoconf.
23624
23625         * m4/gnu-source.m4: Output to confdefs.h directly.
23626         Suggestion from Akim Demaille.
23627
23628 2000-07-09  Paul Eggert  <eggert@twinsun.com>
23629
23630         The old behavior of quoting `like this' doesn't look good with
23631         newer, ISO-style fonts.  See:
23632         http://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html
23633
23634         Instead, quote "like this" by default.  Let the translator
23635         tailor the locale-specific quoting behavior by providing
23636         translations for {LEFT QUOTATION MARK} and {RIGHT QUOTATION MARK}.
23637
23638         * lib/quotearg.c (N_): New macro.
23639         (gettext_default): New function.
23640         (quotearg_buffer_restyled): Use
23641         gettext_default ("{LEFT QUOTATION MARK}", "\"") for left quote, and
23642         gettext_default ("{RIGHT QUOTATION MARK}", "\"") for right quote.
23643
23644 2000-07-09  Jim Meyering  <meyering@lucent.com>
23645
23646         * m4/jm-macros.m4 (jm_MACROS): Add a test to see if -lm is required
23647         to link seq.  If so, set SEQ_LIBM to -lm.  From Bruno Haible.
23648
23649         * m4/gnu-source.m4 (AC__GNU_SOURCE): New file/macro.
23650         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require it.
23651
23652 2000-07-09  Jim Meyering  <meyering@lucent.com>
23653
23654         * lib/Most files: Update copyright dates to include 2000.
23655
23656 2000-07-08  Jim Meyering  <meyering@lucent.com>
23657
23658         * lib/xgethostname.c (ENAMETOOLONG): Define to an unlikely value
23659         if not defined.
23660         (xgethostname): Remove now-unnecessary #ifdef.
23661         Move declaration of `err' into loop where it's used.
23662
23663 2000-07-05  Paul Eggert  <eggert@twinsun.com>
23664         and Bruno Haible  <haible@clisp.cons.org>
23665
23666         * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Test for mbstate_t
23667         only if the test for an object-type mbstate_t fails.  This
23668         prevents us from mistakenly reporting that mbstate_t is a
23669         system object type after we "#define mbstate_t int" to work
23670         around its lack.
23671
23672 2000-07-05  Paul Eggert  <eggert@twinsun.com>
23673         and Bruno Haible  <haible@clisp.cons.org>
23674
23675         * lib/quotearg.c (mbrtowc): Declare returned type, since BeOS doesn't.
23676
23677 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
23678
23679         * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Pass a reasonably large buffer
23680         to strerror_r.
23681         Include <ctype.h> for use of isalpha.
23682
23683 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
23684
23685         * lib/xgethostname.c (xgethostname): Protect against the SunOS 5.5 bug
23686         by allocating a larger buffer. Test the gethostname return value for
23687         being >= 0, not == 0, for BeOS.  Don't exhaust memory if gethostname
23688         returns an error and ENAMETOOLONG isn't defined.
23689
23690 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
23691
23692         * lib/quotearg.c (struct quoting_options): Simplify quote_these_too
23693         dimension.
23694
23695 2000-07-04  Jim Meyering  <meyering@lucent.com>
23696
23697         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use plain old `echo' instead
23698         of the deprecated AC_CHECKING.
23699
23700 2000-07-04  Jim Meyering  <meyering@lucent.com>
23701
23702         * lib/strndup.c: [!HAVE_DECL_STRNLEN]: Declare strnlen.
23703         Reported by Bruno Haible.
23704
23705 2000-07-04  Jim Meyering  <meyering@lucent.com>
23706
23707         * lib/quotearg.c: Make inclusion of <wchar.h> independent of whether
23708         HAVE_MBRTOWC is set.  Required at least for irix-5.6, which
23709         lacks mbrtowc.
23710
23711 2000-07-03  Paul Eggert  <eggert@twinsun.com>
23712
23713         * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Port to autoconf 2.13.
23714         Add AC_CHECK_HEADERS(stdlib.h), since we use HAVE_STDLIB_H.
23715
23716 2000-07-03  Paul Eggert  <eggert@twinsun.com>
23717         and Bruno Haible  <haible@clisp.cons.org>
23718
23719         * lib/quotearg.c (mbrtowc):
23720         Assign to *pwc, and return 1 only if result is nonzero.
23721         (iswprint): Use ISPRINT when substituting our own mbrtowc.
23722
23723 2000-07-03  Jim Meyering  <meyering@lucent.com>
23724
23725         * m4/check-decl.m4 (AC_CHECK_DECLS): Add strnlen.
23726
23727 2000-07-03  Jim Meyering  <meyering@lucent.com>
23728
23729         * lib/readutmp.h: [HAVE_UTMPX_H]: Include <utmp.h> if HAVE_UTMP_H.
23730         This is necessary to get a definition of e.g., UTMP_FILE on
23731         HP-UX 10.20.
23732         From Bob Proulx.
23733
23734 2000-07-02  Jim Meyering  <meyering@lucent.com>
23735
23736         * m4/mbstate_t.m4: Also define mbstate_t, if necessary.
23737
23738         * m4/chown.m4: Replace each use of AC_SUBST(LIBOBJS)/LIBOBJS=... with
23739         AC_LIBOBJ(function_name).
23740         * m4/chown.m4: Likewise.
23741         * m4/fnmatch.m4: Likewise.
23742         * m4/ftruncate.m4: Likewise.
23743         * m4/getgroups.m4: Likewise.
23744         * m4/getline.m4: Likewise.
23745         * m4/group-member.m4: Likewise.
23746         * m4/jm-macros.m4: Likewise.
23747         * m4/lstat.m4: Likewise.
23748         * m4/malloc.m4: Likewise.
23749         * m4/memcmp.m4: Likewise.
23750         * m4/nanosleep.m4: Likewise.
23751         * m4/putenv.m4: Likewise.
23752         * m4/realloc.m4: Likewise.
23753         * m4/regex.m4: Likewise.
23754         * m4/stat.m4: Likewise.
23755         * m4/strftime.m4: Likewise.
23756
23757 2000-07-02  Jim Meyering  <meyering@lucent.com>
23758
23759         * lib/quotearg.c (mbstate_t): Don't define here.
23760
23761 2000-07-02  Jim Meyering  <meyering@lucent.com>
23762
23763         * lib/nanosleep.c (SIGCONT): Define if not already defined.
23764
23765 2000-07-01  Jim Meyering  <meyering@lucent.com>
23766
23767         * m4/uptime.m4: Put double quotes around use of $cross_compiling.
23768
23769 2000-07-01  Jim Meyering  <meyering@lucent.com>
23770
23771         * m4/ls-mntd-fs.m4: Remove a `FIXME' comment and fix the associated
23772         problem.
23773
23774 2000-07-01  Bruno Haible  <haible@clisp.cons.org>
23775
23776         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Rename BeOS specific
23777         macro from MOUNTED_NEXT_DEV to MOUNTED_FS_STAT_DEV.
23778
23779 2000-07-01  Bruno Haible  <haible@clisp.cons.org>
23780
23781         * lib/mountlist.c: Use MOUNTED_FS_STAT_DEV instead of MOUNTED_NEXT_DEV,
23782         per change in ../m4/ls-mntd-fs.m4.
23783         (read_filesystem_list): Ignore symbolic links.
23784
23785 2000-06-29  Jim Meyering  <meyering@lucent.com>
23786
23787         * lib/same.c: Include <string.h> or <strings.h>, as appropriate,
23788         for declaration of strcmp.
23789
23790         * lib/long-options.c: Include <stdlib.h>, for declaration of exit.
23791
23792         * lib/mountlist.c (fsp_to_string) [HAVE_F_FSTYPENAME_IN_STATFS]:
23793         Avoid warning by casting result to `char *' to remove `const'.
23794
23795 2000-06-28  Jim Meyering  <meyering@lucent.com>
23796
23797         * m4/mbstate_t.m4: Use stdlib.h, not stdio.h.  The latter is not
23798         included by quotearg.c, for which we perform this test.  From
23799         Bruno Haible.
23800
23801 2000-06-27  Bruno Haible  <haible@clisp.cons.org>
23802
23803         * m4/check-decl.m4 (_jm_DECL_HEADERS): Check for utmp.h as well.
23804         * m4/prereq.m4 (jm_PREREQ_READUTMP): Likewise. If either <utmp.h> or
23805         <utmpx.h> exists, put readutmp.o into LIBOBJS.
23806
23807 2000-06-27  Bruno Haible  <haible@clisp.cons.org>
23808
23809         * lib/Makefile.am (libfetish_a_SOURCES): Remove readutmp.c.
23810
23811 2000-06-26  Paul Eggert  <eggert@twinsun.com>
23812
23813         savedir now sets errno on failure and invokes xmalloc to get memory.
23814         Fix a couple of other minor bugs while we're at it.
23815
23816         * lib/savedir.c (<unistd.h>): Do not include; there's no need.
23817         (NAMLEN): Remove macro.
23818         (malloc, realloc): Remove decls.
23819         (stpcpy): Likewise.
23820         ("xalloc.h"): Include.
23821         (NAME_SIZE_DEFAULT): New macro.
23822         (savedir): Use xmalloc / xrealloc to allocate memory.
23823         Use NAME_SIZE_DEFAULT if name_size is negative or overflows to zero.
23824         Skip "" directory entries.
23825         Use strlen to calculate directory entry length, since the old method
23826         is rarely used these days and isn't worth supporting.
23827         Don't use a pointer after freeing it.
23828         Check for integer overflow when calculating allocation size.
23829         Use memcpy to copy entries, instead of stpcpy.
23830         Set errno properly when returning NULL.
23831         Check for readdir error.
23832
23833 2000-06-26  Jim Meyering  <meyering@lucent.com>
23834
23835         * lib/posixtm.c [HAVE_STDLIB_H]: Include stdlib.h, for decl of abort.
23836
23837 2000-06-25  Jim Meyering  <meyering@lucent.com>
23838
23839         * m4/mbstate_t.m4: Include stdio.h before wchar.h to work around
23840         Linux header bug when _XOPEN_SOURCE is defined to 500.
23841
23842 2000-06-25  Bruno Haible  <haible@clisp.cons.org>
23843
23844         * lib/unicodeio.c (print_unicode_char): Work around ansi2knr
23845         deficiency.
23846
23847 2000-06-25  Bruno Haible  <haible@clisp.cons.org>
23848
23849         * lib/getusershell.c (xmalloc, xrealloc): Remove functions.
23850         Include xalloc.h.
23851         Don't include <stdlib.h>.  Don't declare malloc, realloc.
23852
23853 2000-06-24  Jim Meyering  <meyering@lucent.com>
23854
23855         * m4/strerror_r.m4: Revive this file -- to try out an experimental
23856         version of AC_FUNC_STRERROR_R that may work even on BeOS, a system
23857         for which strerror does return char*, but which lacks a conveniently
23858         accessible declaration of the function.  If the compile-test says
23859         strerror_r doesn't work, then resort to a `run'-test that works on
23860         BeOS and segfaults on DEC Unix.
23861
23862 2000-06-24  Jim Meyering  <meyering@lucent.com>
23863
23864         * lib/error.c [!HAVE_DECL_STRERROR_R]: Declare strerror_r.
23865
23866 2000-06-23  Paul Eggert  <eggert@twinsun.com>
23867
23868         * m4/mbstate_t.m4: New file, defining AC_MBSTATE_T_OBJECT.
23869         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Use it.  Add check for iswprint.
23870
23871 2000-06-23  Paul Eggert  <eggert@twinsun.com>
23872
23873         * lib/quotearg.c: Include <wctype.h> after <wchar.h>, for Solaris 2.5.
23874         (mbrtowc, mbstate_t): Define substitutes if
23875         HAVE_MBRTOWC && HAVE_WCHAR_H && !HAVE_MBSTATE_T_OBJECT.
23876         (iswprint): Define to 1 if !defined iswprint && !HAVE_ISWPRINT,
23877         not if ! (HAVE_MBRTOWC && HAVE_WCHAR_H).
23878
23879 2000-06-23  Jim Meyering  <meyering@lucent.com>
23880
23881         * m4/afs.m4: Add missing AC_MSG_RESULT.
23882         Reported by Bruno Haible.
23883
23884         * m4/fsusage.m4: s/AC_MSG_CHECKING/AC_CHECKING/.
23885         Suggestion from Bruno Haible.
23886
23887 2000-06-23  Jim Meyering  <meyering@lucent.com>
23888
23889         * lib/getpass.c: New file, from Bruno Haible.  Required for BeOS.
23890
23891 2000-06-21  Jim Meyering  <meyering@lucent.com>
23892
23893         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add getpass.
23894
23895 2000-06-21  Jim Meyering  <meyering@lucent.com>
23896
23897         * lib/Makefile.am (libfetish_a_SOURCES): Add getstr.c.
23898         (noinst_HEADERS): Add getstr.h.
23899
23900         * lib/getline.c (getstr): Move into a separate file.
23901         * lib/getstr.c (getstr): New file, extracted from getline.c, with
23902         the following changes: new parameter, delim2; both delim[12]
23903         parameters have type `int', not `char'.  The latter would lose
23904         with 8-bit delimiters.
23905         * lib/getstr.h: New file.
23906
23907 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
23908
23909         * lib/xgetcwd.c (xgetcwd): If the required pathname length is smaller
23910         than 1024, return a memory chunk of least possible size, instead
23911         of size PATH_MAX + 2. In the loop, increment the size proportionally.
23912         Use free/xmalloc instead of xrealloc to avoid copying for very long
23913         paths.
23914
23915 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
23916
23917         * lib/path-concat.c (path_concat): Don't access dir[-1] if dir is
23918         the empty string.
23919
23920 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
23921
23922         * lib/canon-host.c (canon_host): Use malloc and memcpy to copy an
23923         address, not strdup.  Include <stdlib.h> and don't declare free().
23924
23925 2000-06-19  Jim Meyering  <meyering@lucent.com>
23926
23927         * lib/getloadavg.c [HAVE_NLIST_H] (NLIST_STRUCT): Define.
23928
23929 2000-06-18  Jim Meyering  <meyering@lucent.com>
23930
23931         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Remove mkdir.
23932
23933         * m4/link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): Change the
23934         `checking whether...' message to be consistent with that of the
23935         lstat test.
23936
23937 2000-06-18  Jim Meyering  <meyering@lucent.com>
23938
23939         * lib/mkdir.c: Remove file, due mainly to copyright incompatibility.
23940         Besides, these days every porting target provides a mkdir function.
23941
23942         * lib/strnlen.c: Include memory.h, string.h, and/or strings.h as
23943         needed. (this snippet comes from src/system.h).
23944
23945 2000-06-16  Bruno Haible  <haible@clisp.cons.org>
23946
23947         * m4/glibc21.m4 (jm_GLIBC21): Define GLIBC21 for Makefiles, not for C.
23948
23949 2000-06-15  Paul Eggert  <eggert@twinsun.com>
23950
23951         * lib/human.c (adjust_value): New function.
23952         (human_readable_inexact): Apply rounding style even when
23953         printing approximate values.
23954
23955 2000-06-14  Paul Eggert  <eggert@twinsun.com>
23956
23957         * lib/human.c (human_readable_inexact): Allow an input block
23958         size that is not a multiple of the output block size, and vice versa.
23959         Reported by Piergiorgio Sartor.
23960
23961 2000-06-14  Paul Eggert  <eggert@twinsun.com>
23962
23963         * lib/getdate.y (get_date): Apply relative times after time
23964         zone indicator, not before.  Reported by Todd A. Jacobs.
23965
23966 2000-06-13  Jim Meyering  <meyering@lucent.com>
23967
23968         * lib/Makefile.am (all-local): Depend on lstat.c and stat.c.
23969
23970         * lib/xstat.in [!HAVE_DECL_FREE]: Declare free in lstat.c.
23971
23972 2000-06-12  Paul Eggert  <eggert@twinsun.com>
23973
23974         * lib/xstat.in: Include <stdlib.h> in lstat, to declare "free".
23975
23976 2000-06-12  Jim Meyering  <meyering@lucent.com>
23977
23978         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Replace with
23979         AC_FUNC_GETLOADAVG from autoconf, and tweak the latter to accept an
23980         optional argument.
23981         * m4/jm-macros.m4: s/AM_FUNC_GETLOADAVG/AC_FUNC_GETLOADAVG/, and supply
23982         the optional argument, `lib'.
23983
23984 2000-06-08  Jim Meyering  <meyering@lucent.com>
23985
23986         * m4/largefile.m4: Remove file (now that it's part of autoconf).
23987
23988 2000-06-04  Paul Eggert  <eggert@twinsun.com>
23989
23990         Rewrite largefile configuration so that we don't need to run
23991         getconf and don't need AC_CANONICAL_HOST.  [I'm leaving the use of
23992         AC_CANONICAL_HOST in configure.in -- jmm]
23993
23994         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS,
23995         AC_SYS_LARGEFILE_SPACE_APPEND): Remove.
23996         (AC_SYS_LARGEFILE_TEST_INCLUDES): New macro.
23997         (AC_SYS_LARGEFILE_MACRO_VALUE): Change arguments from
23998         CODE-TO-SET-DEFAULT to VALUE, INCLUDES, FUNCTION-BODY.
23999         All uses changed.
24000         Instead of inspecting the output of getconf, try to compile the
24001         test program without and with the macro definition.
24002         (AC_SYS_LARGEFILE): Do not require AC_CANONICAL_HOST or check
24003         for getconf.  Instead, check for the needed flags by compiling
24004         test programs.
24005
24006 2000-06-04  Paul Eggert  <eggert@twinsun.com>
24007
24008         * lib/strnlen.c: Include <config.h> if HAVE_CONFIG_H.
24009
24010 2000-06-04  Jim Meyering  <meyering@lucent.com>
24011
24012         * lib/getugroups.c (getugroups): Cast -1 to gid_t, for systems like
24013         SunOS 4.1.4 for which gid_t is an unsigned type.
24014
24015 2000-06-03  Jim Meyering  <meyering@lucent.com>
24016
24017         * m4/prereq.m4 (jm_PREREQ_HUMAN): Use []-quoted list in AC_CHECK_DECLS,
24018         now that autoconf requires that.
24019
24020         * m4/jm-glibc-io.m4: Add a kludge to make autoheader emit the required
24021         #undefs.  E.g., #undef HAVE_DECL_FERROR_UNLOCKED.
24022         Use []-quoted list in AC_CHECK_DECLS, now that autoconf requires that.
24023
24024 2000-06-03  Jim Meyering  <meyering@lucent.com>
24025
24026         * lib/strnlen.c [!HAVE_DECL_MEMCHR]: Declare memchr.
24027
24028 2000-06-03  Bruno Haible  <haible@clisp.cons.org>
24029
24030         * m4/glibc21.m4: New file.
24031         * m4/jm-macros.m4 (jm_MACROS): Call jm_GLIBC21.
24032
24033 2000-06-03  Bruno Haible  <haible@clisp.cons.org>
24034
24035         * lib/Makefile.am (install-exec-local): On systems with glibc-2.1 or
24036         newer, don't install charset.alias.
24037         * lib/config.charset: Change the Linux/glibc rules so they become empty
24038         on glibc-2.1 or newer.
24039
24040 2000-06-02  Jim Meyering  <meyering@lucent.com>
24041
24042         * lib/mountlist.c: Back out last change.  Instead, do this...
24043         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Set the
24044         me_dummy member using the same `ignore'-testing code.
24045         * lib/mountlist.h (ME_DUMMY): Add `autofs' to the list of ignored
24046         fs_type strings.
24047         From Mark D. Roth.
24048
24049 2000-05-29  Jim Meyering  <meyering@lucent.com>
24050
24051         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Ignore
24052         mounts with the `ignore' attribute.  Based on a patch from
24053         Mark D. Roth.
24054
24055 2000-05-28  Jim Meyering  <meyering@lucent.com>
24056
24057         * m4/jm-macros.m4 (AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK): Rename from
24058         jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
24059         * m4/stat.m4: Likewise.
24060         * m4/lstat.m4: Likewise.
24061         * m4/lstat-slash.m4: Remove file (absorbed into autoconf).
24062
24063         * m4/jm-macros.m4 (AC_FUNC_STRERROR_R): Rename from jm_FUNC_STRERROR_R.
24064         * m4/strerror_r.m4: Remove file (absorbed into autoconf).
24065
24066 2000-05-26  Jim Meyering  <meyering@lucent.com>
24067
24068         * m4/uptime.m4: Use `$cross_compiling', not `$ac_cv_prog_cc_cross'.
24069
24070 2000-05-24  Jim Meyering  <meyering@lucent.com>
24071
24072         * m4/prereq.m4: Use []-quoted list in AC_CHECK_MEMBERS, now that
24073         autoconf requires that.
24074         * m4/lib-check.m4: Likewise.
24075         * m4/jm-macros.m4: Likewise.
24076         * m4/strftime.m4: Likewise.
24077
24078         * m4/check-decl.m4 (jm_CHECK_DECLS): Use []-quoted list in
24079         AC_CHECK_DECLS, now that autoconf requires that.
24080
24081 2000-05-22  Jim Meyering  <meyering@lucent.com>
24082
24083         * m4/stat.m4: Require jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
24084         * m4/lstat.m4: Likewise.
24085
24086 2000-05-22  Jim Meyering  <meyering@lucent.com>
24087
24088         * lib/makepath.c: Remove old, now-unnecessary `#ifdef __MSDOS__' block.
24089
24090 2000-05-20  Jim Meyering  <meyering@lucent.com>
24091
24092         * m4/prereq.m4 (jm_PREREQ_HUMAN): New macro.
24093         (jm_PREREQ): Use it.
24094
24095 2000-05-18  Jim Meyering  <meyering@lucent.com>
24096
24097         * lib/hash.c (hash_rehash): Fix a nasty bug: copy the free entry list
24098         back, too, since it may have been modified by allocate_entry.
24099         (hash_delete): Rewrite to use neither the assignment operator
24100         nor the comma operator in an if-expression.
24101
24102 2000-05-15  Paul Eggert  <eggert@twinsun.com>
24103
24104         * lib/closeout.c:
24105         <sys/stat.h>, <sys/types.h>, <unistd.h>, (STDOUT_FILENO):
24106         Remove; no longer needed.
24107         "quotearg.h": Add include.
24108         (file_name): Do not bother to explicitly initialize to NULL; it's less
24109         efficient on some hosts.
24110         (close_stdout_status): Remove test as to whether stdout was already
24111         closed; it breaks for the case "echo x | sort >&-".
24112         Quote file name colons.
24113         Do not assume that _("write error") lacks format strings.
24114
24115 2000-05-15  Jim Meyering  <meyering@lucent.com>
24116
24117         * lib/version-etc.c (version_etc_copyright): Update the copyright
24118         string used in all --version output.
24119
24120 2000-05-14  Jim Meyering  <meyering@lucent.com>
24121
24122         * lib/closeout.c (close_stdout_set_file_name): New function.
24123         (close_stdout_status): Use new file-scoped global.
24124         Return right away if fstat says the stdout file descriptor is invalid.
24125         * lib/closeout.h (close_stdout_set_file_name): Declare.
24126
24127 2000-05-10  Jim Meyering  <meyering@lucent.com>
24128
24129         * lib/closeout.c [default_exit_status]: New file-scoped variable.
24130         (close_stdout_set_status): New function.
24131         * lib/closeout.h (close_stdout_set_status): Declare.
24132
24133 2000-05-09  Jim Meyering  <meyering@lucent.com>
24134
24135         * m4/gettext.m4: Rename this...
24136         * m4/libintl.m4: ...to this.
24137
24138 2000-05-08  Jim Meyering  <meyering@lucent.com>
24139
24140         * lib/long-options.c: Don't include closeout.h.
24141         (parse_long_options): Don't call close_stdout for --version.
24142
24143 2000-05-06  Paul Eggert  <eggert@twinsun.com>
24144
24145         * m4/largefile.m4 (AC_SYS_LARGEFILE): Define _XOPEN_SOURCE to
24146         be 500, instead of _GNU_SOURCE to be 1, to work around glibc
24147         2.1.3 bug.  This avoids a clash when files like regex.c define
24148         _GNU_SOURCE.
24149
24150 2000-05-06  Jim Meyering  <meyering@lucent.com>
24151
24152         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add atexit.
24153         (AC_REPLACE_FUNCS): Add strnlen.
24154
24155         * m4/rmdir-errno.m4 (fetish_FUNC_RMDIR_NOTEMPTY): New macro and file.
24156         * m4/jm-macros.m4: Require fetish_FUNC_RMDIR_NOTEMPTY.
24157
24158         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Save and restore LIBS around
24159         AC_SEARCH_LIBS call for nanosleep.
24160         (LIB_NANOSLEEP): Set and AC_SUBST.
24161
24162 2000-05-06  Jim Meyering  <meyering@lucent.com>
24163
24164         * lib/strnlen.c: Undefine __strnlen and strnlen.
24165         [!weak_alias]: Define __strnlen to strnlen.
24166
24167         * lib/atexit.c: New file, from libiberty.
24168
24169 2000-05-06  Jim Meyering  <meyering@lucent.com>
24170
24171         * lib/closeout.c (close_stdout_status): Also check for errors on the
24172         stderr stream.
24173
24174 2000-05-05  Jim Meyering  <meyering@lucent.com>
24175
24176         * m4/jm-macros.m4 (jm_MACROS): Save and restore LIBS around
24177         AC_SEARCH_LIBS call for clock_gettime.
24178         (LIB_CLOCK_GETTIME): Set and AC_SUBST.
24179
24180         * m4/search-libs.m4: Update from autoconf.
24181
24182         su doesn't work on Solaris 2.6.
24183         * m4/lib-check.m4: When checking for struct spwd.sp_pwdp, also include
24184         <shadow.h>.  Reported by Dragos Harabor.
24185
24186 2000-05-05  Bruno Haible  <haible@clisp.cons.org>
24187
24188         * lib/localcharset.c (get_charset_aliases): Use malloc, realloc and
24189         memcpy instead of xmalloc, xrealloc, path_concat.
24190         (locale_charset): Treat empty environment variables as absent.
24191         (DIRECTORY_SEPARATOR, ISSLASH): New macros.
24192
24193 2000-05-04  Jim Meyering  <meyering@lucent.com>
24194
24195         * lib/getopt.c: Update from glibc.
24196         * lib/obstack.c: Likewise.
24197         * lib/obstack.h: Likewise.
24198         * lib/regex.c: Likewise.  NB: K&R compiler support is dropped for this
24199         file
24200
24201         * lib/regex.h: Likewise.
24202         * lib/strndup.c: Likewise.
24203         * lib/strnlen.c: New file, from glibc.
24204
24205 2000-05-03  Jim Meyering  <meyering@lucent.com>
24206
24207         * m4/check-decl.m4 (AC_CHECK_DECLS): Add strndup.
24208
24209 2000-05-02  Paul Eggert  <eggert@twinsun.com>
24210
24211         * m4/largefile.m4 (AC_SYS_LARGEFILE): Define _GNU_SOURCE if
24212         this is needed to make ftello visible (e.g. glibc 2.1.3).  Use
24213         compile-time test, rather than inspecting host and OS, to
24214         decide whether to define _LARGEFILE_SOURCE.
24215
24216 2000-05-01  Jim Meyering  <meyering@lucent.com>
24217
24218         * m4/fsusage.m4: Use AC_MSG_CHECKING instead of obsolete AC_CHECKING.
24219
24220         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add BeOS support.
24221         Based on a patch from Bruno Haible.
24222
24223 2000-05-01  Jim Meyering  <meyering@lucent.com>
24224
24225         * lib/full-write.c (full_write): Remove `FIXME' part of comment.
24226
24227 2000-04-29  Jim Meyering  <meyering@lucent.com>
24228
24229         * lib/path-concat.c: Declare strdup only if it's not defined.
24230         * lib/canon-host.c: Likewise.
24231
24232 2000-04-28  Jim Meyering  <meyering@lucent.com>
24233
24234         * lib/rpmatch.c [HAVE_LIMITS_H]: Include limits.h before regex.h to
24235         avoid redefinition warning on some systems (HPUX).  Otherwise, regex.h
24236         is included first, then limits.h is included by locale.h by libintl.h.
24237         From John David Anglin.
24238
24239 2000-04-25  Jim Meyering  <meyering@lucent.com>
24240
24241         * lib/makepath.c (S_IRWXUGO): Define.
24242         (make_path): Always perform explicit chmod if MODE specifies any
24243         of the `special' permission bits.  Prompted by a bug report against
24244         install from Mate Wierdl and Joost van Baal.
24245
24246 2000-04-18  Jim Meyering  <meyering@lucent.com>
24247
24248         * m4/prereq.m4 (jm_PREREQ_GETPAGESIZE): New macro.
24249         (jm_PREREQ): Use it.
24250
24251 2000-04-18  Jim Meyering  <meyering@lucent.com>
24252
24253         * lib/README: New file.
24254
24255         * lib/getpagesize.h [!getpagesize && HAVE_OS_H && B_PAGE_SIZE]: Define
24256         getpagesize.  For BeOS.  Based on a patch from Bruno Haible.
24257
24258 2000-04-17  Jim Meyering  <meyering@lucent.com>
24259
24260         Get it right :-)
24261         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Emit the
24262         actual #define via AH_VERBATIM.  Don't need separate AC_DEFINE.
24263         Suggestion from Akim Demaille.
24264
24265 2000-04-17  Jim Meyering  <meyering@lucent.com>
24266
24267         * lib/strftime.c (my_strftime) [strftime]: Declare strftime here, since
24268         the definition of it to rpl_strftime also defined-away the system's
24269         declaration.
24270
24271 2000-04-15  Jim Meyering  <meyering@lucent.com>
24272
24273         Use `C' to denote so-called `contiguous' files, the same way
24274         that tar does.
24275         * lib/filemode.c (S_ISCTG) [!S_ISCTG && S_IFCTG]: Define.
24276         (ftypelet): Use S_ISCTG.
24277         From Michael Deutschmann.
24278
24279 2000-04-14  Jim Meyering  <meyering@lucent.com>
24280
24281         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use the one-arg
24282         form of AC_DEFINE.  Otherwise, the #ifndef in AH_VERBATIM gets
24283         clobbered.
24284
24285 2000-04-14  Jim Meyering  <meyering@lucent.com>
24286
24287         * lib/strftime.c (my_strftime) [#ifdef strftime]: Declare strftime.
24288
24289 2000-04-13  Jim Meyering  <meyering@lucent.com>
24290
24291         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use new
24292         AH_VERBATIM to insert required #ifndef into config.h.in.
24293         Suggestion from Akim Demaille.
24294
24295 2000-04-12  Jim Meyering  <meyering@lucent.com>
24296
24297         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Use AC_CHECK_HEADERS, not
24298         `AC_CHECK_HEADER' to check for locale.h.  Thanks to a report from
24299         Christian Krackowizer.
24300
24301         More code moved from ../configure.in into (jm_CHECK_ALL_TYPES).
24302         * m4/jm-macros.m4 (_GNU_SOURCE): Define.
24303         (AC_SYS_LARGEFILE): Require.
24304         (AM_C_PROTOTYPES): Require.
24305
24306 2000-04-08  Jim Meyering  <meyering@lucent.com>
24307
24308         * lib/Makefile.am (charset.alias): Use t-$@, not $@-t so the DOS 8.3
24309         names don't conflict.  Reported by Eli Zaretskii.
24310
24311 2000-04-07  Jim Meyering  <meyering@lucent.com>
24312
24313         * lib/putenv.c: Move inclusion of errno.h so it follows that of
24314         sys/types.h, to work around system header problems on AIX 3.2.5.
24315         From Bruno Haible.
24316
24317 2000-04-07  Bruno Haible  <haible@clisp.cons.org>
24318
24319         * lib/unicodeio.c (print_unicode_char): Avoid triggering Solaris iconv
24320         bug.  Deal with the different error behavior of Irix iconv.
24321
24322 2000-04-05  Paul Eggert  <eggert@twinsun.com>
24323
24324         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Don't use -n32 on
24325         IRIX if the installer said otherwise.
24326
24327 2000-04-05  Jim Meyering  <meyering@lucent.com>
24328
24329         Portability tweaks required for ultrix4.3.
24330         * m4/check-decl.m4 [!HAVE_UTMPX_H] (headers): Include <utmp.h>.
24331         (jm_CHECK_DECLS): Add getutent to the list of functions.
24332         (_jm_DECL_HEADERS): Add utmpx.h.
24333         From John David Anglin.
24334
24335         * m4/strftime.m4: Back out the 2000-04-02 change.
24336         Instead of that change, simply undefine putenv in the test program.
24337
24338 2000-04-05  Jim Meyering  <meyering@lucent.com>
24339
24340         Portability tweaks required for ultrix4.3.
24341         * lib/readutmp.h [HAVE_UTMPX_H && !HAVE_DECL_GETUTENT]: Declare
24342         getutent.
24343         * lib/readutmp.c: Include sys/types.h before sys/stat.h.
24344         * lib/canon-host.c: Declare strdup.
24345         * lib/path-concat.c: Likewise.
24346         From John David Anglin.
24347
24348 2000-04-04  Jim Meyering  <meyering@lucent.com>
24349
24350         Be more DOS 8.3-friendly.
24351         * lib/ref-add.sin: Renamed from ref-add.sed.in.
24352         * lib/ref-del.sin: Renamed from ref-del.sed.in.
24353         * lib/Makefile.am: Reflect renaming.
24354         Reported by Eli Zaretskii.
24355
24356         Use a temporary file name that won't clash with `charset.alias'
24357         in the DOS 8.3 name space.
24358         * lib/Makefile.am (charset_tmp): Define.
24359         (install-exec-local): Use $(charset_tmp) instead of $(charset_alias)-t.
24360         (uninstall-local): Likewise.
24361         Reported by Eli Zaretskii.
24362
24363 2000-04-03  Jim Meyering  <meyering@lucent.com>
24364
24365         * m4/gettext.m4: Fix typo in comment.
24366
24367         * m4/codeset.m4 (AC_CHECK_HEADERS): Add langinfo.h (moved here from
24368         textutils/configure.in).  Suggestion from Paul Eggert.
24369         (AC_CHECK_FUNCS): Add nl_langinfo.  (also from textutils/configure.in)
24370
24371 2000-04-02  Paul Eggert  <eggert@twinsun.com>
24372
24373         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME): Set TZ environment
24374         variable in the shell rather than using putenv, which isn't
24375         portable.  This avoids the configure-time inter-test dependency
24376         on the potentially-renamed putenv function.
24377
24378 2000-03-30  Paul Eggert  <eggert@twinsun.com>
24379
24380         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Include <sys/stat.h>
24381         before checking struct stat.st_blksize, so that
24382         HAVE_STRUCT_STAT_ST_BLKSIZE is defined correctly.
24383
24384 2000-03-29  Paul Eggert  <eggert@twinsun.com>
24385
24386         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Check for strftime,
24387         since strftime.c uses HAVE_STRFTIME to decide whether to use
24388         the underlying strftime.
24389
24390 2000-03-29  Paul Eggert  <eggert@twinsun.com>
24391
24392         * lib/time/strftime.c (my_strftime): Make sure we call the system
24393         strftime, not ourselves, when invoking the underlying strftime.
24394
24395 2000-03-24  Jim Meyering  <meyering@lucent.com>
24396
24397         * lib/Makefile.am (EXTRA_DIST): Add ref-add.sed.in and ref-del.sed.in.
24398         (charset_alias): Define.
24399         (install-exec-local): Factor out common code.
24400         (uninstall-local): Split lines longer than 80.
24401         (ref-add.sed, ref-del.sed): Remove rules... (do the following instead)
24402         (SUFFIXES): Define.
24403         (.sed.in.sed): New rule.  Don't redirect directly to $@.
24404         (CLEANFILES): Add ref-add.sed and ref-del.sed.
24405
24406 2000-03-19  Bruno Haible  <haible@clisp.cons.org>
24407
24408         * lib/config.charset: Output a line containing "Packages using this
24409         file".
24410         * lib/ref-add.sed.in, lib/ref-del.sed.in: New files.
24411         * lib/Makefile.am (install-exec-local, uninstall-local, ref-add.sed,
24412         ref-del.sed): New rules.
24413
24414 2000-03-17  Jim Meyering  <meyering@lucent.com>
24415
24416         * lib/unicodeio.c (<string.h>): Include only #if HAVE_STRING_H.
24417         Otherwise, include <strings.h>
24418
24419 2000-03-17  Bruno Haible  <haible@clisp.cons.org>
24420
24421         * lib/unicodeio.c (utf8_wctomb): New function.
24422         (print_unicode_char): Pass the Unicode character to iconv in UTF-8
24423         format instead of in UCS-4 with platform dependent endianness.
24424
24425 2000-03-10  Jim Meyering  <meyering@lucent.com>
24426
24427         * m4/lib-check.m4: Look for getspnam in -lgen, too.
24428         From Marco Franzen.
24429
24430 2000-03-07  Paul Eggert  <eggert@twinsun.com>
24431
24432         * lib/savedir.c (savedir): Work even if directory size is
24433         negative; this can happen with some screwy NFS configurations.
24434
24435 2000-03-06  Jim Meyering  <meyering@lucent.com>
24436
24437         * lib/localcharset.c (get_charset_aliases): Don't try to free file_name
24438         if it's NULL (because we ran out of memory).  From Bruno Haible.
24439
24440 2000-03-05  Jim Meyering  <meyering@lucent.com>
24441
24442         * lib/localcharset.c ("path-concat.h"): Include.
24443         (get_charset_aliases): Use path_concat instead of ANSI string
24444         concatenation.
24445
24446         * lib/unicodeio.h (PARAMS): Define.
24447         Use it to guard prototype.
24448
24449 2000-03-04  Jim Meyering  <meyering@lucent.com>
24450
24451         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require AC_C_VOLATILE,
24452         for lib/localcharset.c.
24453
24454 2000-03-04  Jim Meyering  <meyering@lucent.com>
24455
24456         * lib/Makefile.am (install-exec-local): Create $(libdir) before
24457         installing into it.
24458         (uninstall-local): Uncomment this rule so `make distcheck' works
24459         once again.
24460
24461         * lib/unicodeio.c (<errno.h>): Include it.
24462         (errno): Declare if not defined.
24463
24464         * lib/localcharset.c: Add Bruno's comment justifying use of volatile.
24465
24466         * lib/config.charset: New version, incorporating remarks from a linux
24467         i18n mailing list.  From Bruno Haible.
24468
24469 2000-03-04  Bruno Haible  <haible@clisp.cons.org>
24470
24471         * m4/codeset.m4: New file.
24472         * m4/iconv.m4: New file.
24473         * m4/jm-macros.m4 (jm_MACROS): Call jm_LANGINFO_CODESET and jm_ICONV.
24474
24475 2000-03-03  Jim Meyering  <meyering@lucent.com>
24476
24477         * m4/regex.m4: Make sure re_compile_pattern accepts patterns like `{1'.
24478
24479 2000-03-02  Jim Meyering  <meyering@lucent.com>
24480
24481         * m4/timespec.m4: Require AC_HEADER_TIME before the cache check so
24482         the messages come out on separate lines.
24483
24484         * m4/jm-glibc-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO): Use AC_CHECK_DECLS,
24485         rather than jm_CHECK_DECLARATIONS.
24486         * m4/decl.m4: Remove now-unused file.
24487
24488         * m4/check-decl.m4 (AC_CHECK_DECLS): Add getlogin, ttyname, and
24489         geteuid.
24490
24491 2000-03-02  Jim Meyering  <meyering@lucent.com>
24492
24493         * lib/Makefile.am (EXTRA_DIST): Add config.charset.
24494
24495 2000-03-01  Jim Meyering  <meyering@lucent.com>
24496
24497         * lib/localcharset.c: Guard some #includes with `#if HAVE_...'.
24498         * lib/unicodeio.c: Likewise.
24499
24500 2000-03-01  Bruno Haible  <haible@clisp.cons.org>
24501
24502         * lib/config.charset: New file.
24503         * lib/localcharset.c: New file.
24504         * lib/unicodeio.h, lib/unicodeio.c: New files.
24505         * lib/Makefile.am (DEFS): Add -DLIBDIR=...
24506         (libfetish_a_SOURCES): Add localcharset.c and unicodeio.c.
24507         (noinst_HEADERS): Add unicodeio.h.
24508         (all-local, install-exec-local, charset.alias): New targets.
24509
24510 2000-02-28  Paul Eggert  <eggert@twinsun.com>
24511
24512         * lib/quotearg.c (ALERT_CHAR): New macro.
24513         (quotearg_buffer_restyled): Use it.
24514
24515 2000-02-27  Jim Meyering  <meyering@lucent.com>
24516
24517         * m4/check-decl.m4: Add getenv to the list.
24518
24519 2000-02-27  Jim Meyering  <meyering@lucent.com>
24520
24521         * lib/strtoumax.c: Fix typo in decl of strtoul: s/long long/long/.
24522         Guard declaration of strtoull also with `&& HAVE_UNSIGNED_LONG_LONG'.
24523
24524         * lib/backupfile.c: Guard inclusion of stdlib.h with
24525         `#if HAVE_STDLIB_H', not `#if STDC_HEADERS'.
24526         Declare malloc if needed.
24527
24528         * lib/backupfile.c: Use `#if !HAVE_DECL...' instead of
24529         `#ifndef HAVE_DECL..'
24530         now that autoconf always defines the HAVE_DECL_ symbols.
24531         * lib/human.c: Likewise.
24532         * lib/same.c: Likewise.
24533         * lib/strtoumax.c: Likewise.
24534
24535         * lib/backupfile.c: Arrange for cpp to fail if the configure-time
24536         declaration check was not run.
24537         * lib/hash.c: Likewise.
24538         * lib/human.c: Likewise.
24539         * lib/same.c: Likewise.
24540         * lib/strtoumax.c: Likewise.
24541
24542         * lib/userspec.c (parse_user_spec): If there is no `:' but there is a
24543         `.', then first look up the entire `.'-containing string as a login
24544         name.
24545
24546 2000-02-23  Jim Meyering  <meyering@lucent.com>
24547
24548         * m4/check-decl.m4: Now that we have the new AC_CHECK_DECLS, use it
24549         in place of my hack.
24550
24551 2000-02-18  Paul Eggert  <eggert@twinsun.com>
24552
24553         * lib/getdate.y: Handle two-digit years with leading zeros correctly.
24554         (textint): New typedef.
24555         (parser_control): Member year changed from int to textint.
24556         All uses changed.
24557         (YYSTYPE): Removed; replaced by %union with int and textint members.
24558         (tDAY, tDAY_UNIT, tDAYZONE, tHOUR_UNIT, tID, tLOCAL_ZONE, tMERIDIAN,
24559         tMINUTE_UNIT, tMONTH, tMONTH_UNIT tSEC_UNIT, tSNUMBER, tUNUMBER,
24560         tYEAR_UNIT, tZONE, o_merid): Now of type <intval>.
24561         (tSNUMBER, tUNUMBER): Now of type <textintval>.
24562         (date, number, to_year): Use width of number in digits, not its value,
24563         to determine whether it's a 2-digit year, or a 2-digit time.
24564         (yylex): Store number of digits of numeric tokens.
24565         Reported by John Kendall.
24566
24567         (parser_control): Changed from struct parser_control to typedef (for
24568         consistency).  All uses changed.
24569
24570         (tID): Removed; not used.
24571         (yylex): Return '?' for unknown identifiers, rather than (unused) tID.
24572
24573 2000-02-14  Paul Eggert  <eggert@twinsun.com>
24574
24575         * lib/getpagesize.h (getpagesize): Port to VMS for Alpha;
24576         adapted from changes to grep getpagesize.h by Martin P.J. Zinser.
24577
24578 2000-02-12  Jim Meyering  <meyering@lucent.com>
24579
24580         * lib/userspec.c (ISDIGIT): Define it.
24581         (isdigit): Remove definition.
24582         (is_number): Use ISDIGIT, not isdigit.
24583         <libintl.h>: Include.
24584         (_ and N_): Define.
24585         (parse_user_spec): Mark translatable strings.
24586
24587 2000-02-10  Jim Meyering  <meyering@lucent.com>
24588
24589         With these changes, nanosleep.[ch] are finally enough like the other
24590         lib/* replacement files to compile on a few more losing systems.
24591
24592         * lib/nanosleep.h: Don't include config.h.
24593         Remove prototype from declaration of nanosleep.
24594         (PARAMS): Remove now-unneeded definition.
24595         * lib/nanosleep.c: #undef nanosleep.
24596         (rpl_nanosleep): Rename from nanosleep.
24597
24598 2000-02-10  Jim Meyering  <meyering@lucent.com>
24599
24600         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Rename replacement function from
24601         gnu_nanosleep to rpl_nanosleep.
24602
24603 2000-02-09  Jim Meyering  <meyering@lucent.com>
24604
24605         * m4/lib-check.m4 (jm_LIB_CHECK): Fix typo: check for sp_pwdp in
24606         struct spwd, rather than in struct passwd.  Reported by Gaël Quéri.
24607
24608 2000-02-08  Akim Demaille  <akim@epita.fr>
24609
24610         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Quote square brackets with
24611         `[' and `]' and remove uses of `changequote'.
24612         (AC_SYS_LARGEFILE_MACRO_VALUE): Likewise.
24613         (AC_SYS_LARGEFILE): Likewise.
24614         * m4/gettext.m4 (AM_GNU_GETTEXT): Likewise.
24615         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME): Remove now-unnecessary use
24616         of changequote.
24617         * m4/regex.m4 (jm_INCLUDED_REGEX): Likewise.
24618         * m4/readdir.m4 (jm_FUNC_READDIR): Likewise
24619         * m4/memcmp.m4 (jm_AC_FUNC_MEMCMP): Likewise, and add `int' for main.
24620         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Likewise.
24621
24622 2000-02-05  Jim Meyering  <meyering@lucent.com>
24623
24624         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require most macros.
24625         Remove explicit use of AC_HEADER_TIME.  It is required by
24626         jm_CHECK_TYPE_STRUCT_TIMESPEC.  Using AC_HEADER_TIME and
24627         `AC_REQUIRE'ing jm_CHECK_TYPE_STRUCT_TIMESPEC provoked a but
24628         in autoconf whereby the expansion of the latter ended up preceding
24629         the expansion of its prerequisite, AC_HEADER_TIME.
24630         Reported by Volker Borchert.
24631
24632 2000-02-03  Jim Meyering  <meyering@lucent.com>
24633
24634         * m4/prereq.m4 (jm_PREREQ_READUTMP): Check for utmpxname.
24635
24636 2000-02-03  Jim Meyering  <meyering@lucent.com>
24637
24638         * lib/readutmp.c (read_utmp): Guard with `#ifdef UTMP_NAME_FUNCTION',
24639         rather than with `#if HAVE_UTMPNAME'.
24640
24641 2000-02-02  Jim Meyering  <meyering@lucent.com>
24642
24643         * m4/prereq.m4 (jm_PREREQ_ADDEXT): Fix typo that resulted in no
24644         definition of HAVE_PATHCONF: s/AC_CHECK_FUNC/AC_CHECK_FUNCS/.
24645         Reported by Eli Zaretskii.
24646
24647 2000-02-01  Jim Meyering  <meyering@lucent.com>
24648
24649         * lib/readutmp.h (UT_USER): Add parens.  From Andreas Schwab.
24650
24651 2000-01-31  Jim Meyering  <meyering@lucent.com>
24652
24653         * m4/check-decl.m4 (jm_CHECK_DECLS): Add nanosleep to the list of
24654         functions.  Add the time.h and sys/time.h headers along with the
24655         AC_REQUIRE'ment of AC_HEADER_TIME.
24656
24657 2000-01-31  Jim Meyering  <meyering@lucent.com>
24658
24659         * lib/nanosleep.h (nanosleep): Guard declaration with
24660         `#if ! HAVE_DECL_NANOSLEEP'.
24661         Without this, OFS gets a redeclaration error for rpl_nanosleep, due to
24662         the declaration in that vendor's sys/timers.h.
24663         Reported by Christian Krackowizer.
24664
24665         * lib/quotearg.c (ISASCII): Add #undef and move definition to follow
24666         inclusion of wctype.h to work around Solaris 2.6 namespace pollution.
24667         (ISPRINT): Likewise.
24668         Reported by Tom Tromey.
24669
24670 2000-01-30  Jim Meyering  <meyering@lucent.com>
24671
24672         * m4/lib-check.m4: Clean up some kludgy old shadow password tests.
24673
24674         * m4/prereq.m4 (utmp_includes): Define.
24675         Check for ut_user and ut_name members in both struct utmpx
24676         and struct utmp.
24677
24678 2000-01-30  Jim Meyering  <meyering@lucent.com>
24679
24680         * lib/readutmp.c (extract_trimmed_name): Use UT_USER instead of
24681         hard-coding uses of ->ut_name.  The latter doesn't work with new Linux
24682         header files where only utmpx.ut_user is declared.
24683
24684         * lib/readutmp.h (UT_USER): Define.
24685
24686 2000-01-29  Jim Meyering  <meyering@lucent.com>
24687
24688         * m4/lib-check.m4: New file containing library-related checks from
24689         fileutils and sh-utils (textutils had none).
24690
24691 2000-01-28  Jim Meyering  <meyering@lucent.com>
24692
24693         * m4/perl.m4: Change format of warning message to look more like that
24694         from the missing script.  Suggestion from François Pinard.
24695
24696 2000-01-25  Jim Meyering  <meyering@lucent.com>
24697
24698         * m4/timespec.m4: Require AC_HEADER_TIME, and include sys/time.h as
24699         well as time.h in the compile check.
24700         * m4/nanosleep.m4: Require AC_HEADER_TIME rather than simply using it.
24701         Fix typo in cross-compiling case: s/yes/no/.
24702
24703 2000-01-23  Jim Meyering  <meyering@lucent.com>
24704
24705         * m4/jm-macros.m4: Move df-related tests here from
24706         fileutils/configure.in
24707
24708         * m4/ls-mntd-fs.m4: s/list_mounted_fs/ac_list_mounted_fs/
24709         (jm_LIST_MOUNTED_FILESYSTEMS): Take two parameters.
24710
24711         * m4/fsusage.m4: New file.  Extracted from fileutils/configure.in.
24712         s/space/ac_fsusage_space/.
24713         (jm_FILE_SYSTEM_USAGE): Take two parameters.
24714
24715         * m4/ftruncate.m4: New file (derived from part of
24716         fileutils/configure.in).
24717         * m4/jm-macros.m4 (jm_FUNC_FTRUNCATE): AC_REQUIRE it.
24718         (jm_CHECK_ALL_TYPES): Require AC_HEADER_MAJOR and AC_HEADER_DIRENT.
24719
24720         * m4/jm-macros.m4 (OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, MAN):
24721         AC_SUBST these here, rather than just in sh-util/configure.in, so
24722         that the now-shared-by-fileutils-and-textutils lib/Makefile.am are
24723         all the same.
24724         (AM_FUNC_OBSTACK): Add (from fileutils/configure.in).
24725         (AC_CHECK_FUNCS): Merge all checks from fileutils, textutils, sh-utils.
24726         (AM_FUNC_STRTOD): Added (from textutils', sh-utils' configure.in).
24727         (AC_SUBST(POW_LIBM)): Likewise.
24728         (AC_SUBST(DF_PROG)): Moved from fileutils/configure.in.
24729
24730 2000-01-23  Jim Meyering  <meyering@lucent.com>
24731
24732         * lib/Makefile.am (libfetish_a_SOURCES): Remove explicit mention of
24733         obstack.c.
24734
24735 2000-01-22  Jim Meyering  <meyering@lucent.com>
24736
24737         * m4/jm-macros.m4: Call AC_PROG_CC_STDC just before AC_C_CONST.
24738
24739         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Add wctype.h.
24740
24741         * m4/jm-macros.m4 (AC_CHECK_HEADERS): Add checks from fileutils'
24742         configure.in
24743         (AC_CHECK_HEADERS): Likewise for sh-utils.
24744         (AC_CHECK_HEADERS): Likewise for textutils.
24745         Merge the three lists of headers.
24746
24747         * m4/prereq.m4 (jm_PREREQ_ADDEXT): New macro.  Parts moved here
24748         from fileutils' configure.in.
24749
24750         * m4/decl.m4: Remove kludgy `test -z $ac_...AC_CHECK_HEADERS(...)'
24751         code. Moved tests into their own function (_jm_DECL_HEADERS) in
24752         check-decl.m4.
24753
24754         * m4/check-decl.m4: Use #if rather than #ifdef.
24755         Add HAVE_DECL_STRTOUL and HAVE_DECL_STRTOULL.
24756         (jm_CHECK_DECLARATIONS): Add strtoul strtoull.
24757         (_jm_DECL_HEADERS): Define new function.
24758         (jm_CHECK_DECLARATIONS): Require it.
24759
24760 2000-01-22  Jim Meyering  <meyering@lucent.com>
24761
24762         * lib/strtoumax.c: [! HAVE_DECL_STRTOUL]: Declare strtoul.
24763         [! HAVE_DECL_STRTOULL]: Declare strtoull.
24764         Required for some AIX systems.  Reported by Christian Krackowizer.
24765         [TESTING] (main): New function.
24766
24767         1997-10-17  Eli Zaretskii  <eliz@is.elta.co.il>
24768         * lib/dirname.c (dir_name): Support for DOS-style file names with drive
24769         letters.
24770
24771         * lib/quotearg.c [HAVE_WCTYPE_H]: Include <wctype.h> for decl of
24772         iswprint.
24773
24774         * lib/strverscmp.c (ISDIGIT): Define.
24775         (strverscmp): Use ISDIGIT, not isdigit.
24776
24777 2000-01-19  Jim Meyering  <meyering@lucent.com>
24778
24779         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Include <sys/time.h>, too.
24780         Use AC_HEADER_TIME.  Volker Borchert reported that OpenBSD-2.3/sparc
24781         defines `struct timespec' in <sys/time.h>
24782
24783         * m4/c-bs-a.m4: Remove uses of changequote altogether.
24784         Thanks to Akim for explaining.
24785
24786 2000-01-17  Paul Eggert  <eggert@twinsun.com>
24787
24788         * lib/nanosleep.c (nanosleep):
24789         Don't use SA_INTERRUPT to decide whether to call sigaction, as
24790         POSIX.1 doesn't require SA_INTERRUPT and some systems
24791         (e.g. Solaris 7) don't define it.  Use SA_NOCLDSTOP instead;
24792         it's been part of POSIX.1 since day 1 (in 1988).
24793
24794 2000-01-17  Jim Meyering  <meyering@lucent.com>
24795
24796         * lib/interlock: Remove unused file.  Reported by François Pinard.
24797
24798 2000-01-16  Paul Eggert  <eggert@twinsun.com>
24799
24800         * lib/quotearg.c (quotearg_buffer_restyled): Do not quote
24801         alert, backslash, formfeed, and vertical tab unnecessarily in
24802         shell quoting style.
24803
24804 2000-01-16  Jim Meyering  <meyering@lucent.com>
24805
24806         * m4/jm-macros.m4: Require jm_FUNC_GROUP_MEMBER, jm_FUNC_PUTENV,
24807         AM_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, jm_FUNC_MKTIME,
24808         jm_FUNC_GETGROUPS AC_FUNC_VPRINTF, AC_FUNC_ALLOCA,
24809         AM_FUNC_GETLOADAVG, and jm_SYS_PROC_UPTIME.
24810
24811 2000-01-16  Jim Meyering  <meyering@lucent.com>
24812
24813         * m4/c-bs-a.m4: Use `changequote(<<,>>)', rather than `changequote(, )'
24814         because the latter didn't work.
24815
24816 2000-01-15  Jim Meyering  <meyering@lucent.com>
24817
24818         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add gethostname and getusershell.
24819         (AC_REPLACE_FUNCS): Add memcpy and memset.
24820         Add these, too: stime strcspn stpcpy strstr strtol strtoul.
24821         Add strpbrk.
24822         Add these: euidaccess memcmp mkdir rmdir rpmatch strndup strverscmp.
24823
24824 2000-01-12  Jim Meyering  <meyering@lucent.com>
24825
24826         * m4/prereq.m4 (jm_PREREQ_CANON_HOST): New macro.
24827         (jm_PREREQ): Use it.
24828         (jm_PREREQ_READUTMP): New macro.
24829         (jm_PREREQ): Use it.
24830
24831 2000-01-11  Paul Eggert  <eggert@twinsun.com>
24832
24833         Quote multibyte characters correctly.
24834         * m4/c-bs-a.m4: New file.
24835         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): New macro.
24836         (jm_PREREQ): Use it.
24837
24838 2000-01-11  Paul Eggert  <eggert@twinsun.com>
24839
24840         * m4/uintmax_t.m4: Port to autoconf 2.13.
24841
24842 2000-01-08  Jim Meyering  <meyering@ascend.com>
24843
24844         * m4/strerror_r.m4 (jm_FUNC_STRERROR_R): New file/macro.
24845         * m4/jm-macros.m4 (jm_FUNC_STRERROR_R): Require it.
24846
24847 2000-01-04  Jim Meyering  <meyering@ascend.com>
24848
24849         * m4/d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename from
24850         jm_STRUCT_DIRENT_D_TYPE.
24851         * m4/d-ino.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_INO): Rename from
24852         jm_STRUCT_DIRENT_D_INO.
24853         * m4/utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Rename from
24854         jm_STRUCT_UTIMBUF.
24855         * m4/jm-macros.m4: Reflect s/jm_STRUCT_/jm_CHECK_TYPE_STRUCT_/
24856         renamings.
24857         * m4/utime.m4: Likewise.
24858
24859         * m4/timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): New file, macro.
24860         * m4/jm-macros.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): Require it.
24861
24862 2000-01-03  Paul Eggert  <eggert@twinsun.com>
24863
24864         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Search for nanosleep in -lrt
24865         (for Solaris 7) and in -lposix4 (for Solaris 2.5.1).
24866
24867 2000-01-02  Jim Meyering  <meyering@ascend.com>
24868
24869         * m4/search-libs.m4: Escape `$' in $3 of dnl comment.  I no longer
24870         remember if this is necessary.
24871
24872 1999-12-26  Jim Meyering  <meyering@ascend.com>
24873
24874         * m4/jm-macros.m4: Use it here.
24875         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): New file/macro.
24876
24877 1999-12-23  Jim Meyering  <meyering@ascend.com>
24878
24879         * m4/jm-macros.m4: Check for clock_gettime (moved from
24880         fileutils/configure.in)
24881         Check for gettimeofday.
24882
24883 1999-12-20  Jim Meyering  <meyering@ascend.com>
24884
24885         * m4/strftime.m4: Remove kludge, now that I'm using the fixed
24886         autoconf-2.14a-1999-12-20.
24887
24888 1999-12-19  Jim Meyering  <meyering@ascend.com>
24889
24890         * m4/lstat-slash.m4: New file.
24891         * m4/jm-macros.m4: Use the new macro:
24892         jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
24893
24894 1999-12-07  Jim Meyering  <meyering@ascend.com>
24895
24896         * m4/perl.m4: Require that File::Compare be available, too.
24897         Too many systems seem to lack it.
24898
24899         * m4/strftime.m4: Add checks for most of the cpp macros tested in
24900         GNU's strftime.c.  Prompted by a patch from Paul Eggert.
24901
24902 1999-11-18  Paul Eggert  <eggert@twinsun.com>
24903
24904         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around a
24905         problem with the QNX 4.25 shell, which doesn't propagate exit
24906         status of failed commands inside shell assignments.
24907
24908 1999-11-17  Jim Meyering  <meyering@ascend.com>
24909
24910         * m4/gettext.m4: Use new AC_CONFIG_LINKS in place of AC_LINK_FILES.
24911
24912 1999-11-07  Jim Meyering  <meyering@ascend.com>
24913
24914         * m4/getloadavg.m4: Add `, 1, [FIXME]' to each use of AC_DEFINE.
24915
24916 1999-11-06  Jim Meyering  <meyering@ascend.com>
24917
24918         * m4/link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): New file/macro.
24919         * m4/jm-macros.m4 (jm_MACROS): Use it here.
24920
24921 1999-11-05  Jim Meyering  <meyering@ascend.com>
24922
24923         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Move some tests from
24924         configure.in of textutils, fileutils, and sh-utils into this one
24925         (shared between those packages) file.
24926         Use `AC_CHECK_MEMBERS((struct stat.st_blksize))' instead of deprecated
24927         AC_STRUCT_ST_BLKSIZE.
24928
24929 1999-11-03  Jim Meyering  <meyering@ascend.com>
24930
24931         * m4/ssize_t.m4: Remove file.  No longer needed since the new version
24932         of AC_CHECK_TYPE checks includes unistd.h.
24933         * m4/jm-macros.m4: Use straight `AC_CHECK_TYPE(ssize_t, int)'.
24934         Suggestion from Akim Demaille.
24935
24936 1999-10-30  Jim Meyering  <meyering@ascend.com>
24937
24938         * m4/uintmax_t.m4: Require 2.14a.  Remove backslash before backtick in
24939         m4-quoted string.
24940         * m4/ls-mntd-fs.m4: Likewise.
24941         * m4/jm-macros.m4: Likewise.  Also, use AC_TYPE_SSIZE_T instead
24942         * m4/jm-winsz1.m4: Likewise.
24943
24944         * m4/const.m4: Remove file, since the fix made it into the experimental
24945         version of autoconf.
24946         * m4/mktime.m4: Likewise.
24947
24948         * m4/check-type.m4: Remove file, now that the latest version of
24949         AC_CHECK_TYPE takes a third arg to specify additional #includes.
24950
24951         * m4/ssize_t.m4: New file, requires experimental version of autoconf.
24952         * m4/jm-macros.m4: Use new AC_TYPE_SSIZE_T instead of my hacked
24953         AC_CHECK_TYPE.
24954
24955 1999-10-04  Jim Meyering  <meyering@ascend.com>
24956
24957         * m4/jm-macros.m4: Don't require autoconf-2.14.1.
24958
24959 1999-09-22  Paul Eggert  <eggert@twinsun.com>
24960
24961         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around GCC
24962         2.95.1 bug with HP-UX 10.20.
24963
24964 1999-09-17  Jim Meyering  <meyering@ascend.com>
24965
24966         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add strdup.
24967         Paul Nevai reported a link failure on a NeXT CUBE with NeXTSTEP 3.3
24968         due to missing strdup (against sh-utils-2.0).
24969
24970 1999-08-29  Jim Meyering  <meyering@ascend.com>
24971
24972         * m4/jm-macros.m4: Require jm_BISON.
24973         * m4/bison.m4: New file.
24974
24975 1999-08-17  Paul Eggert  <eggert@twinsun.com>
24976
24977         * m4/largefile.m4 (AC_SYS_LARGEFILE): Fix typo: missing comma
24978         in value for _FILE_OFFSET_BITS, which broke ports to HP-UX 10.20.
24979
24980 1999-08-05  Jim Meyering  <meyering@ascend.com>
24981
24982         * m4/getline.m4: Rename test file from conftestdata to conftest.data
24983         to avoid conflicts with `conftest' on 8+3 filesystems.
24984         Suggestion from Eli Zaretskii.
24985
24986 1999-08-04  Jim Meyering  <meyering@ascend.com>
24987
24988         * m4/jm-macros.m4: Move a 4-line block of code from the configure.in of
24989         fileutils and sh-utils (textutils's getline test was inadequate).
24990         (AM_FUNC_GETLINE): Run this test.
24991         (AC_CHECK_FUNCS): Check for getdelim.
24992         Reported by Bob Proulx.
24993
24994 1999-08-02  Jim Meyering  <meyering@ascend.com>
24995
24996         * m4/jm-macros.m4: Add a comment.
24997
24998 1999-08-01  Paul Eggert  <eggert@twinsun.com>
24999
25000         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check whether
25001         <inttypes.h> defines strtoumax as a macro (and not as a
25002         function).
25003
25004 1999-08-01  Paul Eggert  <eggert@twinsun.com>
25005
25006         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Make sure
25007         that we can shift, multiply and divide unsigned long long
25008         values; Ultrix cc can't do it.
25009
25010 1999-08-01  Paul Eggert  <eggert@twinsun.com>
25011
25012         * m4/mktime.m4: New file, which is a preview of what should appear
25013         in the next public autoconf release.
25014
25015 1999-08-01  Paul Eggert  <eggert@twinsun.com>
25016
25017         * m4/lfs.m4: Remove this file.
25018         * m4/largefile.m4: New file.  It contains the old contents of
25019         lfs.m4, except that all names with prefix AC_LFS have been
25020         changed to use the prefix AC_SYS_LARGEFILE instead, to be
25021         compatible with future autoconf versions.  Also, some minor m4
25022         quoting problems have been fixed.
25023
25024 1999-08-01  Paul Eggert  <eggert@twinsun.com>
25025
25026         * m4/gettext.m4 (AM_WITH_NLS): Remove unnecessary lines.
25027         Fix typo: $nls_cv_header_intl was misspelled as $nsl_cv_header_intl.
25028         (AM_GNU_GETTEXT): Fix problem with brackets and m4 quoting,
25029         and simplify the shell code.
25030
25031 1999-08-01  Jim Meyering  <meyering@ascend.com>
25032
25033         * m4/mktime.m4 (AC_FUNC_MKTIME): Undefine to avoid syntax errors from
25034         m4.
25035
25036 1999-07-20  Jim Meyering  <meyering@ascend.com>
25037
25038         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memmove.
25039
25040 1999-07-15  Jim Meyering  <meyering@ascend.com>
25041
25042         * m4/jm-macros.m4 (AC_CHECK_FUNCS): Check for getpagesize.
25043
25044 1999-05-22  Jim Meyering  <meyering@ascend.com>
25045
25046         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memchr.
25047
25048 1999-05-20  Jim Meyering  <meyering@ascend.com>
25049
25050         * m4/search-libs.m4 [AC_SEARCH_LIBS]: Quote name in undefine.
25051         Add a colon after each `then' in case $4 is empty.
25052
25053 1999-05-16  Jim Meyering  <meyering@ascend.com>
25054
25055         * m4/search-libs.m4: New file to override autoconf's AC_SEARCH_LIBS.
25056
25057 1999-05-10  Jim Meyering  <meyering@ascend.com>
25058
25059         * m4/jm-mktime.m4: Reflect renaming: AM_FUNC_MKTIME -> AC_FUNC_MKTIME.
25060
25061         * m4/jm-macros.m4: Require 2.14.1, since we use newly-renamed
25062         AC_FUNC_MKTIME.
25063
25064 1999-05-10  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
25065
25066         * m4/jm-mktime.m4, putenv.m4: Fix typos in config.h comments.
25067
25068 1999-05-04  Paul Eggert  <eggert@twinsun.com>
25069
25070         * m4/lfs.m4 (AC_LFS): -n32, -o32, and -n64 should be in CFLAGS,
25071         not CPPFLAGS, so that linking works correctly in IRIX.
25072
25073 1999-04-30  Paul Eggert  <eggert@twinsun.com>
25074
25075         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add dup2.
25076
25077 1999-04-20  Paul Eggert  <eggert@twinsun.com>
25078
25079         * m4/uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Move unsigned long
25080         long check into new jm_AC_TYPE_UNSIGNED_LONG_LONG macro.
25081         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require
25082         jm_AC_TYPE_UNSIGNED_LONG_LONG.
25083         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): New file/macro.
25084
25085         * m4/lfs.m4: Port to AIX and HP-UX.  Support cross-compilation.
25086
25087 1999-04-20  Jim Meyering  <meyering@ascend.com>
25088
25089         * m4/xstrtoumax.m4: Require jm_AC_TYPE_UNSIGNED_LONG_LONG.
25090         AC_REPLACE xstroull if necessary.  From Paul Eggert.
25091         (AC_CHECK_FUNCS): Remove strtoull, strtoumax, strtouq.
25092
25093 1999-04-18  Jim Meyering  <meyering@ascend.com>
25094
25095         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): New file/macro.
25096         * m4/jm-macros.m4: Use it.
25097
25098 1999-04-06  Jim Meyering  <meyering@ascend.com>
25099
25100         * m4/strftime.m4: Remove test for %f.
25101
25102 1999-03-29  Jim Meyering  <meyering@ascend.com>
25103
25104         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): New macro, contains the
25105         superset of the AC_TYPE_* checks in the textutils, fileutils,
25106         and sh-utils, plus AC_TYPE_PID_T.  Paul Eggert suggested adding
25107         AC_TYPE_PID_T.
25108
25109 1999-03-28  Jim Meyering  <meyering@ascend.com>
25110
25111         * m4/jm-macros.m4: Define GNU_PACKAGE here.
25112         Be sure to AC_SUBST it, once again, so that @GNU_PACKAGE@ is
25113         replaced e.g., in the *.sh files of the sh-utils.
25114
25115 1999-03-20  Jim Meyering  <meyering@ascend.com>
25116
25117         * m4/jm-macros.m4: s/jm_WITH_REGEX/jm_INCLUDED_REGEX/.
25118         * m4/regex.m4 (jm_INCLUDED_REGEX): Rename from jm_WITH_REGEX.
25119         Don't depend on AM_GLIBC.  Suggestions from Alain Magloire.
25120
25121 1999-03-19  Jim Meyering  <meyering@ascend.com>
25122
25123         * m4/jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): New macro.
25124
25125 1999-03-12  Jim Meyering  <meyering@ascend.com>
25126
25127         * m4/jm-macros.m4: Use AC_FUNC_SETVBUF_REVERSED.
25128
25129 1999-03-07  Jim Meyering  <meyering@ascend.com>
25130
25131         * m4/jm-glibc-io.m4: Use only those *_unlocked macros that are
25132         declared.
25133
25134 1999-02-17  Jim Meyering  <meyering@ascend.com>
25135
25136         * m4/gettext.m4 (AM_GNU_GETTEXT): Do `changequote' around use of
25137         brackets in macro definition.  From Eli Zaretskii and Alain Magloire.
25138
25139 1999-02-07  Jim Meyering  <meyering@ascend.com>
25140
25141         * m4/group-member.m4: New file -- extracted from sh-utils'
25142         configure.in.
25143
25144         1999-02-05  Eli Zaretskii  <eliz@is.elta.co.il>
25145         * m4/gettext.m4: Support DOS-style d:/foo/bar absolute file names.
25146
25147 1999-02-06  Jim Meyering  <meyering@ascend.com>
25148
25149         * m4/chown.m4: Use `AC_SUBST(LIBOBJS)' since we set LIBOBJS.
25150         * m4/fnmatch.m4: Likewise.
25151         * m4/getgroups.m4: Likewise.
25152         * m4/lstat.m4: Likewise.
25153         * m4/malloc.m4: Likewise.
25154         * m4/putenv.m4: Likewise.
25155         * m4/realloc.m4: Likewise.
25156         * m4/regex.m4: Likewise.
25157         * m4/stat.m4: Likewise.
25158         * m4/strftime.m4: Likewise.
25159         Suggestion from Alain Magloire.
25160
25161         * m4/chown.m4: Use `.$ac_objext', not `.o'.
25162         * m4/fnmatch.m4: Likewise.
25163         * m4/getgroups.m4: Likewise.
25164         * m4/getline.m4: Likewise.
25165         * m4/lstat.m4: Likewise.
25166         * m4/malloc.m4: Likewise.
25167         * m4/memcmp.m4: Likewise.
25168         * m4/putenv.m4: Likewise.
25169         * m4/realloc.m4: Likewise.
25170         * m4/regex.m4: Likewise.
25171         * m4/stat.m4: Likewise.
25172         * m4/strftime.m4: Likewise.
25173         Suggestion from Alain Magloire.
25174
25175         * m4/jm-macros.m4: Actually invoke jm_WITH_REGEX now that it requires
25176         an argument.
25177
25178         * m4/regex.m4: Add a run-time Test for proper operation of
25179         re_compile_pattern.
25180
25181 1999-01-31  Jim Meyering  <meyering@ascend.com>
25182
25183         * m4/getloadavg.m4: Check for locale.h and the function, setlocale.
25184
25185 1999-01-30  Jim Meyering  <meyering@ascend.com>
25186
25187         * m4/check-type.m4: Use 3-arg form of AC_DEFINE.
25188
25189         * m4/jm-mktime.m4: Make this a wrapper around the official
25190         AM_FUNC_MKTIME rather than my private copy, now that the official one
25191         is up to date.
25192         * m4/mktime.m4: Remove file.
25193
25194         * m4/getloadavg.m4: Use 3-arg form of AC_DEFINE.
25195         * m4/uptime.m4: Likewise.
25196         * m4/uintmax_t.m4: Likewise.
25197
25198 1999-01-28  Jim Meyering  <meyering@ascend.com>
25199
25200         * m4/jm-macros.m4: Use jm_AFS.
25201         * m4/afs.m4: New file (from fileutils' configure.in).
25202
25203         * m4/assert.m4: Use the 3-argument forms of AC_DEFINE* macros.
25204         * m4/chown.m4: Likewise.
25205         * m4/d-ino.m4: Likewise.
25206         * m4/d-type.m4: Likewise.
25207         * m4/fnmatch.m4: Likewise.
25208         * m4/getgroups.m4: Likewise.
25209         * m4/gettext.m4: Likewise.
25210         * m4/jm-mktime.m4: Likewise.
25211         * m4/jm-winsz2.m4: Likewise.
25212         * m4/lcmessage.m4: Likewise.
25213         * m4/ls-mntd-fs.m4: Likewise.
25214         * m4/malloc.m4: Likewise.
25215         * m4/memcmp.m4: Likewise.
25216         * m4/putenv.m4: Likewise.
25217         * m4/realloc.m4: Likewise.
25218         * m4/st_mtim.m4: Likewise.
25219         * m4/strftime.m4: Likewise.
25220
25221 1999-01-16  Jim Meyering  <meyering@ascend.com>
25222
25223         * m4/jm-macros.m4 (ARGMATCH_DIE): Define.
25224         (ARGMATCH_DIE_DECL): Define.
25225
25226 1999-01-12  Jim Meyering  <meyering@ascend.com>
25227
25228         * m4/Makefile.am.in: Rewrite to avoid using fmt.
25229         Reported by Lars Hecking.
25230
25231 1999-01-10  Jim Meyering  <meyering@ascend.com>
25232
25233         * m4/fstypename.m4: Use the new 3-arg form of AC_DEFINE instead of my
25234         gross kludge.
25235         * m4/inttypes_h.m4: Likewise.
25236         * m4/lstat.m4: Likewise.
25237         * m4/malloc.m4: Likewise.
25238         * m4/readdir.m4: Likewise.
25239         * m4/realloc.m4: Likewise.
25240         * m4/st_dm_mode.m4: Likewise.
25241         * m4/stat.m4: Likewise.
25242         * m4/utimbuf.m4: Likewise.
25243         * m4/utimes.m4: Likewise.
25244
25245         * m4/check-decl.m4: Use the new 3-arg form of AC_DEFINE instead of the
25246         AC_CHECK_FUNCS hack.  Now, it's still a hack, but at least the
25247         comments in config.h.in are meaningful.
25248
25249         * m4/jm-macros.m4: Require autoconf-2.13 here.
25250
25251         * m4/regex.m4: By default, don't use the included regex.c on systems
25252         with glibc 2.  Suggestion from Uli Drepper.
25253
25254 1999-01-02  Jim Meyering  <meyering@ascend.com>
25255
25256         * m4/jm-macros.m4: Replace strcasecmp and strncasecmp.
25257
25258 1998-12-18  Jim Meyering  <meyering@ascend.com>
25259
25260         * m4/Makefile.am.in (Makefile.am): Simplify rule.
25261         Based on a suggestion from Lars Hecking.
25262
25263 1998-11-16  Paul Eggert  <eggert@twinsun.com>
25264
25265         * m4/lfs.m4 (AC_LFS): Add support for HP-UX 10.20 and HP-UX 11.
25266
25267 1998-11-16  Jim Meyering  <meyering@ascend.com>
25268
25269         * m4/lfs.m4: Double-quote the `uname...` expression.
25270
25271 1998-11-14  Jim Meyering  <meyering@ascend.com>
25272
25273         * m4/lstat.m4: Correct comment.  POSIX does not permit it to succeed.
25274         * m4/stat.m4: Likewise.
25275
25276 1998-11-03  Jim Meyering  <meyering@ascend.com>
25277
25278         * m4/stat.m4: Rewrite to set HAVE_STAT_EMPTY_STRING_BUG.
25279         * m4/lstat.m4: Rewrite to set HAVE_LSTAT_EMPTY_STRING_BUG.
25280
25281 1998-10-18  Jim Meyering  <meyering@ascend.com>
25282
25283         * m4/check-decl.m4 (jm_CHECK_DECL_LOCALTIME_R): Remove macro.
25284
25285 1998-10-17  Jim Meyering  <meyering@ascend.com>
25286
25287         * m4/decl.m4 (jm_CHECK_DECLARATION): Don't hard-code which headers to
25288         include, though we still hard-code the `require'-like AC_CHECK_HEADERS
25289         calls for those previously hard-coded headers.  Instead, take a new
25290         parameter.
25291         (jm_CHECK_DECLARATIONS): Reflect interface change.
25292         * m4/check-decl.m4 (jm_CHECK_DECLS): Likewise.
25293         (jm_CHECK_DECL_LOCALTIME_R): New macro.
25294
25295         * m4/mktime.m4: Test for spring-forward gap before long-running test.
25296
25297 1998-10-14  Jim Meyering  <meyering@ascend.com>
25298
25299         * m4/mktime.m4: Use the more portable "TZ=PST8PDT,M4.1.0,M10.5.0"
25300         instead of "TZ=America/Vancouver".  From Paul Eggert.
25301
25302 1998-10-11  Jim Meyering  <meyering@ascend.com>
25303
25304         * m4/mktime.m4 (jm_AM_FUNC_MKTIME): New file and macro.
25305         This adds a test for a recently added compatibility fix for mktime.c.
25306         * m4/jm-mktime.m4: Require jm_AM_FUNC_MKTIME, not AM_FUNC_MKTIME.
25307
25308 1998-09-27  Jim Meyering  <meyering@ascend.com>
25309
25310         * m4/jm-macros.m4 (jm_MACROS): Require jm_FUNC_FNMATCH.
25311
25312         * m4/fnmatch.m4 (jm_FUNC_FNMATCH): New file/macro.  Extracted from
25313         ../configure.in, including a change from Gordon Matzigkeit to allow
25314         cross-compiling for the Hurd.
25315
25316         * m4/glibc.m4: New file/macro to test for the GNU C Library
25317         versions 1 and 2.  From Gordon Matzigkeit.
25318         Indent.
25319
25320 1998-09-21  Jim Meyering  <meyering@ascend.com>
25321
25322         * m4/chown.m4: Declare locals: before, after.  From Andries Brouwer.
25323
25324 1998-08-18  Paul Eggert  <eggert@twinsun.com>
25325
25326         Port nanosecond-resolution times to UnixWare 2.1.2 and
25327         pedantic Solaris 2.6.
25328
25329         * m4/st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC): Renamed from
25330         AC_STRUCT_ST_MTIM.
25331         * m4/st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC):
25332         Generate name of ns member, instead of just 1 or undef.
25333         Allow for UnixWare 2.1.2 and Solaris 2.6 if in pedantic mode.
25334
25335 1998-08-15  Jim Meyering  <meyering@ascend.com>
25336
25337         * m4/ssize_t.m4 (jm_TYPE_SSIZE_T): Remove file.
25338         * m4/check-type.m4: New file.  Replacement for AC_CHECK_TYPE.
25339         * m4/jm-macros.m4: Use the new AC_CHECK_TYPE(ssize_t, int)
25340         instead of jm_TYPE_SSIZE_T.
25341
25342 1998-08-12  Jim Meyering  <meyering@ascend.com>
25343
25344         * m4/st_dm_mode.m4: New file.  From Johan Danielsson.
25345
25346 1998-08-02  Jim Meyering  <meyering@ascend.com>
25347
25348         * m4/st_mtim.m4: Use hack to avoid having to put #undef HAVE_ST_MTIM
25349         in acconfig.h manually.
25350
25351 1998-07-31  Paul Eggert  <eggert@twinsun.com>
25352
25353         * m4/st_mtim.m4: New file.
25354
25355 1998-07-28  Jim Meyering  <meyering@ascend.com>
25356
25357         * m4/utimes.m4: Undef stat.
25358
25359 1998-07-25  Jim Meyering  <meyering@ascend.com>
25360
25361         * m4/utime.m4 (jm_FUNC_UTIME): New file and macro.
25362         * m4/utimes.m4 (jm_FUNC_UTIMES_NULL): New file and macro.
25363
25364 1998-07-09  Manfred Hollstein  <manfred@s-direktnet.de>
25365
25366         * m4/chown.m4 (jm_FUNC_CHOWN): Add a check to verify that the
25367         uid and gid actually remain unchanged.
25368
25369 1998-07-07  Jim Meyering  <meyering@ascend.com>
25370
25371         * m4/jm-glibc-io.m4: Remove fclose_unlocked.
25372
25373 1998-07-04  Jim Meyering  <meyering@ascend.com>
25374
25375         * m4/regex.m4: Use syscmd, ifelse, and sysval.  Mainly as an exercise
25376         to prove that this macro can be used in packages without regex.c.
25377
25378 1998-07-04  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
25379
25380         * m4/gettext.m4 (AM_WITH_NLS): Remove intl/libintl.h if <libintl.h>
25381         is to be used.
25382
25383 1998-07-03  Jim Meyering  <meyering@ascend.com>
25384
25385         * m4/gettext.m4: Add -lintl if it's found to be necessary.
25386
25387         * m4/gettext.m4: New file -- from gettext-0.10.35.
25388         * m4/lcmessage.m4: Likewise.
25389         * m4/progtest.m4: Likewise.
25390
25391         * m4/regex.m4 (jm_WITH_REGEX): New file and macro.
25392         * m4/jm-macros.m4: Require the new macro.
25393
25394 1998-06-29  Jim Meyering  <meyering@ascend.com>
25395
25396         * m4/fstypename.m4: Include sys/param.h.  NetBSD 1.3.1 requires this
25397         for the definition of NGROUPS (used in a system header included
25398         by sys/mount.h).
25399
25400 1998-06-28  Jim Meyering  <meyering@ascend.com>
25401
25402         * m4/ls-mntd-fs.m4: New file.
25403         * m4/fstypename.m4: New file.
25404
25405         * m4/jm-macros.m4: Require the new macro.
25406         * m4/jm-glibc-io.m4: New file.
25407
25408 1998-05-19  Jim Meyering  <meyering@ascend.com>
25409
25410         * m4/jm-macros.m4: Add jm_FUNC_LCHOWN.
25411         * m4/lchown.m4: New file.
25412
25413         * m4/Makefile.am.in: New file.
25414         * m4/Makefile.am (Makefile.am): Depend on Makefile.am.in.
25415
25416 1998-05-14  Jim Meyering  <meyering@ascend.com>
25417
25418         * m4/Makefile.am (EXTRA_DIST): Add them.
25419         * m4/jm-macros.m4: New file.
25420         * m4/utimbuf.m4: New file.
25421
25422 1998-05-12  Jim Meyering  <meyering@ascend.com>
25423
25424         * m4/Makefile.am (EXTRA_DIST): Add isc-posix.m4.
25425
25426 1998-05-11  Jim Meyering  <meyering@ascend.com>
25427
25428         * m4/isc-posix.m4: New file.
25429
25430 1998-05-10  Jim Meyering  <meyering@ascend.com>
25431
25432         * m4/jm-mktime.m4: Use AM_FUNC_MKTIME, now that it's up to date.
25433
25434 1998-05-09  Jim Meyering  <meyering@ascend.com>
25435
25436         * m4/Makefile.am (EXTRA_DIST): Add ssize_t.m4.
25437         (EXTRA_DIST): Remove mktime.m4, now that the new version is included
25438         with automake.
25439
25440         * m4/ssize_t.m4: New file.
25441         * m4/mktime.m4: Remove file -- the new automake has this now.
25442
25443 1998-04-26  Jim Meyering  <meyering@ascend.com>
25444
25445         * m4/assert.m4: New file.
25446         * m4/Makefile.am (EXTRA_DIST): Add assert.m4.
25447
25448 1998-04-05  Jim Meyering  <meyering@ascend.com>
25449
25450         * m4/prereq.m4 (jm_PREREQ_REGEX): New macro.
25451         (jm_PREREQ): Use it here.
25452
25453 1998-03-23  Jim Meyering  <meyering@eng.ascend.com>
25454
25455         * m4/inttypes_h.m4: Kludges so I don't have to add HAVE_INTTYPES_H
25456         in acconfig.h.
25457
25458 1998-03-15  Jim Meyering  <meyering@eng.ascend.com>
25459
25460         * m4/prereq.m4: New file.
25461         * m4/error.m4: New file.
25462         * m4/Makefile.am (EXTRA_DIST): Add error.m4 and prereq.m4.
25463
25464 1998-02-07  Jim Meyering  <meyering@eng.ascend.com>
25465
25466         * m4/getline.m4: Don't set am_cv_func_working_getline before the
25467         cache-check for the same variable -- that defeated the purpose of
25468         the test; the test program was never run.  This was a problem only
25469         on systems with losing getline functions -- HP-UX 10.20 is one.
25470         Reported by Bjorn Helgaas.
25471
25472 1998-02-06  Jim Meyering  <meyering@eng.ascend.com>
25473
25474         * m4/Makefile.am (EXTRA_DIST): Add perl.m4.
25475
25476 1998-01-10  Jim Meyering  <meyering@na-net.ornl.gov>
25477
25478         * m4/Makefile.am (EXTRA_DIST): Add const.m4.
25479
25480         * m4/const.m4: New file.  Use an initializer in this declaration
25481         typedef int charset[2]; const charset x;
25482         Reported by Bob Glickstein.
25483
25484 1997-12-21  Jim Meyering  <meyering@na-net.ornl.gov>
25485
25486         * m4/chown.m4: Fix reversed types on -1 args to chown.
25487         From Kaveh Ghazi.
25488
25489 1997-12-14  Jim Meyering  <meyering@na-net.ornl.gov>
25490
25491         * m4/check-decl.m4: s/DECLARATION_/DECL_/g.
25492         Add lseek and memchr.
25493
25494         * m4/decl.m4: s/HAVE_DECLARATION_/HAVE_DECL_/g.
25495         T.E.Dickey <dickey@clark.net> said that some older preprocessors
25496         have a 20-character limit on names.
25497
25498 1997-11-30  Jim Meyering  <meyering@na-net.ornl.gov>
25499
25500         * m4/inttypes_h.m4: New file.
25501         * m4/uintmax_t.m4: New file.
25502         * m4/Makefile.am (EXTRA_DIST): Add inttypes_h.m4 and uintmax_t.m4.
25503
25504 Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007
25505   Free Software Foundation, Inc.
25506 Copying and distribution of this file, with or without modification,
25507 are permitted provided the copyright notice and this notice are preserved.