Change calling convention of xmem_cd_iconv.
[pspp] / ChangeLog
1 2007-01-21  Bruno Haible  <bruno@clisp.org>
2
3         * lib/xstriconv.h: Update.
4
5         * lib/striconv.h (mem_cd_iconv): Change specification.
6         * lib/striconv.c (mem_cd_iconv): Don't free the user-supplied original
7         result buffer.
8         (str_cd_iconv): Update.
9         * tests/test-striconv.c (main): Update.
10
11 2007-01-21  Bruno Haible  <bruno@clisp.org>
12
13         * gnulib-tool: Fix test whether sed is GNU sed supporting --posix.
14
15 2007-01-20  Jim Meyering  <jim@meyering.net>
16
17         * lib/userspec.c (parse_with_separator): If a user or group string
18         starts with "+", skip the corresponding name-to-ID look-up, since
19         such a look-up must fail: user and group names may not include "+".
20
21 2007-01-19  Paul Eggert  <eggert@cs.ucla.edu>
22
23         * lib/poll.c: Include sys/time.h and time.h unconditionally,
24         since we now assume the sys_time module.
25         * m4/poll.m4 (gl_PREREQ_POLL): Don't require AC_HEADER_TIME or
26         check for sys/time.h; no longer needed.
27         * modules/poll (Depends-on): Depend on sys_time.
28
29 2007-01-18  Bruno Haible  <bruno@clisp.org>
30
31         * m4/mktime.m4 (AC_FUNC_MKTIME): Remove test for <sys/time.h>.
32         * m4/strftime.m4 (gl_FUNC_STRFTIME): Likewise.
33
34         * m4/tempname.m4 (gl_PREREQ_TEMPNAME): Remove tests for sys/time.h and
35         gettimeofday.
36
37         * tests/test-gettimeofday.c: Include <time.h>.
38         (dummy): Remove variable.
39
40         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Renamed from
41         gl_HEADER_SYS_TIME_H.
42         (gl_HEADER_SYS_TIME_H): New macro.
43
44         * lib/sys_time_.h: Test GETTIMEOFDAY_REPLACEMENT instead of
45         HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
46         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY,
47         gl_FUNC_GETTIMEOFDAY_CLOBBER): Set GETTIMEOFDAY_REPLACEMENT instead of
48         HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
49         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H): Initialize
50         GETTIMEOFDAY_REPLACEMENT instead of HAVE_GETTIMEOFDAY_POSIX_SIGNATURE
51         and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
52         * modules/sys_time (sys/time.h): Substitute GETTIMEOFDAY_REPLACEMENT
53         instead of HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and
54         GETTIMEOFDAY_CLOBBERS_LOCALTIME.
55
56         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Undo the
57         last change; it caused a compilation error when cross-compiling to
58         Cygwin.
59
60 2007-01-18  Jim Meyering  <jim@meyering.net>
61
62         Use "$(MKDIR_P) sys", not race-prone "test -d sys || mkdir sys".
63         * modules/sys_stat (Makefile.am): Use "$(MKDIR_P) sys", rather
64         than the race-prone "test -d sys || mkdir sys".
65         (configure.ac): Use AC_PROG_MKDIR_P.
66         * modules/sys_select: Likewise.
67         * modules/sys_socket: Likewise.
68         * modules/sys_time: Likewise.
69
70 2007-01-18  Eric Blake  <ebb9@byu.net>
71
72         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Also
73         replace gettimeofday.
74         * lib/gettimeofday.c (rpl_gettimeofday): Declare with replacement
75         name, to avoid infinite recursion.
76
77 2007-01-17  Paul Eggert  <eggert@cs.ucla.edu>
78
79         * MODULES.html.sh (Support for systems lacking POSIX:2001): New
80         module sys_time.
81         * lib/gethrxtime.c: Include <sys/time.h>, since we can no longer
82         assume timespec.h defines struct timeval.
83         * lib/settime.c: Likewise.
84         * lib/utimens.c: Likewise.
85         * lib/gettime.c (gettime): Remove test against HAVE_GETTIMEOFDAY,
86         since we now assume the gettimeofday module.
87         * lib/tempname.c (__gen_tempname): Likewise.
88         * lib/gettimeofday.h: Remove.
89         * lib/gettimeofday.c: Include <sys/time.h> instead of "gettimeofday.h".
90         Don't include <sys/types.h> and <stdlib.h>; shouldn't be needed.
91         Include <time.h>, for 'time()'.
92         (localtime_buffer_addr): Also use this workaround if
93         TZSET_CLOBBERS_LOCALTIME.  Set to a dummy static variable by default,
94         to simplify the uses.  All uses changed.
95         (localtime, gmtime, tzset, gettimeofday): Reformat slightly so
96         that #undef is inside {}, and 'const' follows type name consistently.
97         (tzset): Define replacement only if TZSET_CLOBBERS_LOCALTIME.
98         (gettimeofday): Do not use the maximum possible value for
99         tv->tv_usec, since that might break usages other than ls.c.
100         Instead, we'll leave ls.c alone.  This undoes today's patch
101         by Bruno.  Add a compile-time warning for 1s-clock resolution;
102         we've never observed the problem but might as well keep the
103         canary.
104         * lib/nanosleep.c: Include timespec.h first, for interface check.
105         * lib/nanosleep.c: Include <sys/time.h> unconditionally, since we
106         now assume the sys_time module.
107         * lib/tempname.c: Likewise.
108         * lib/timespec.h: Likewise.
109         * lib/nanosleep.c: Don't worry about TIME_WITH_SYS_TIME; no longer
110         needed.
111         * lib/strftime.c: Likewise.
112         * lib/timespec.h: Likewise.
113         * lib/posixtm.c: Include posixtm.h first, for interface check.
114         Don't worry about TM_IN_SYS_TIME; that's wayyy obsolete.
115         * lib/posixtm.h: Include stdbool.h and time.h, for proper interface.
116         * lib/strftime.c: Don't include <sys/types.h>; shouldn't be needed.
117         * lib/sys_time_.h: New file.
118         * lib/timespec.h (struct timespec): Use long int, not long.
119         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY):
120         (gl_FUNC_GETTIMEOFDAY_CLOBBER, gl_PREREQ_GETTIMEOFDAY):
121         Remove obsolescent call to AC_HEADER_TIME.
122         * m4/mktime.m4 (AC_FUNC_MKTIME): Likewise.
123         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
124         * m4/strftime.m4 (gl_FUNC_STRFTIME): Likewise.
125         * m4/timespec.m4 (gl_TIMESPEC, gl_CHECK_TYPE_STRUCT_TIMESPEC):
126         Likewise.
127         * m4/tzset.m4 (gl_FUNC_TZSET_CLOBBER): Likewise.
128         * m4/utimbuf.m4 (gl_CHECK_TYPE_STRUCT_UTIMBUF): Likewise.
129         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): Move sys/time.h tests
130         into the sys_time module.  Check for gettimeofday just once.
131         Prefix our variables with gl_, not with ac_ or jm_.  Tighten test
132         for gettimeofday signature to just check the signature.  Merely
133         compile it, since linking doesn't test signature.  Improve test for
134         whether gettimeofday.o is actually needed.
135         (gl_FUNC_GETTIMEOFDAY_CLOBBER): Renamed from
136         AC_FUNC_GETTIMEOFDAY_CLOBBER.  All uses changed.  Use
137         AC_RUN_IFELSE rather than AC_TRY_RUN.  If clobbering, set
138         and define GETTIMEOFDAY_CLOBBERS_LOCALTIME.
139         (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Don't define
140         GETTIMEOFDAY_CLOBBERS_LOCALTIME; that's gl_FUNC_GETTIMEOFDAY_CLOBBER's
141         job.  Don't define tzset; that's gl_FUNC_TZSET_CLOBBER's job.
142         * m4/mktime.m4 (AC_FUNC_MKTIME): Just include <time.h> rather
143         than worrying about sys/time.h.
144         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
145         Don't bother worrying about TIME_WITH_SYS_TIME.
146         * m4/stat-time.m4 (gl_STAT_TIME): Likewise.
147         * m4/posixtm.m4 (gl_POSIXTM): Remove obsolescent call to AC_STRUCT_TM.
148         * m4/sys_time_h.m4: New file.
149         * m4/tzset.m4 (gl_FUNC_TZSET_CLOBBER): Require gl_HEADER_SYS_TIME_H.
150         Don't include sys/time.h.  Return from main rather than exiting.
151         Define TZSET_CLOBBERS_LOCALTIME, for consistency with other names;
152         all uses changed.
153         * modules/gethrxtime (Depends-on): Add sys_time.
154         * modules/gettime (Depends-on): Likewise.
155         * modules/gettimeofday (Depends-on): Likewise.
156         * modules/nanosleep (Depends-on): Likewise.
157         * modules/settime (Depends-on): Likewise.
158         * modules/tempname (Depends-on): Likewise.
159         * modules/utimens (Depends-on): Likewise.
160         * modules/gettimeofday (Files): Remove lib/gettimeofday.h.
161         (Include:) Change back to <sys/time.h>.
162         (Maintainer:) Add self.
163         * modules/sys_time: New file.
164         * modules/tempname (Depends-on): Add gettimeofday.
165         * tests/test-gettimeofday.c: Include <sys/time.h>
166         rather than gettimeofday.h.
167
168 2007-01-17  Bruno Haible  <bruno@clisp.org>
169
170         * gnulib-tool (func_get_license): Revert last patch. Instead, let
171         the license default to GPL.
172         (func_create_testdir): Don't complain if a module is LGPL and its
173         tests module depends on GPLed modules.
174
175 2007-01-17  Bruno Haible  <bruno@clisp.org>
176
177         * lib/gettimeofday.c (gettimeofday): Add code for the case
178         HAVE_GETTIMEOFDAY && !GETTIMEOFDAY_CLOBBERS_LOCALTIME. Use the
179         maximum possible value for tv->tv_usec, rather than the minimum one.
180
181 2005-10-08  Martin Lambers  <marlam@marlam.de>
182 2005-10-08  Paul Eggert  <eggert@cs.ucla.edu>
183 2007-01-16  Bruno Haible  <bruno@clisp.org>
184
185         * modules/gettimeofday (Files): Add lib/gettimeofday.h.
186         (configure.ac): Remove AC_FUNC_GETTIMEOFDAY_CLOBBER. Add
187         gl_FUNC_GETTIMEOFDAY.
188         (Include): Add gettimeofday.h.
189         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): New macro.
190         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Don't invoke gl_PREREQ_GETTIMEOFDAY.
191         (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Define
192         GETTIMEOFDAY_CLOBBERS_LOCALTIME. Invoke gl_PREREQ_GETTIMEOFDAY here.
193         (gl_PREREQ_GETTIMEOFDAY): Check for <sys/timeb.h> and _ftime.
194         * lib/gettimeofday.h: New file.
195         * lib/gettimeofday.c: Include <sys/timeb.h>.
196         (localtime_buffer_addr, rpl_localtime, rpl_gmtime, rpl_tzset): Define
197         only if GETTIMEOFDAY_CLOBBERS_LOCALTIME.
198         (rpl_gettimeofday) [!HAVE_GETTIMEOFDAY]: Use _ftime() when available;
199         fall back on time().
200
201         * tests/test-gettimeofday.c: New file.
202         * modules/gettimeofday-tests: New file.
203
204 2007-01-16  Eric Blake  <ebb9@byu.net>
205
206         * modules/fnmatch (Depends-on): Depend on wchar.
207         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Assume <wchar.h>.
208         * m4/fnmatch.m4: Likewise.
209         * modules/mbchar (Makefile.am): Assume <wchar.h>.
210         * m4/mbchar.m4: Likewise.
211         * modules/mbswidth (Depends-on): Depend on wchar.
212         * lib/mbswidth.c: Assume <wchar.h>.
213         * m4/mbswidth.m4: Likewise.
214         * modules/quotearg (Depends-on): Depend on wchar.
215         * lib/quotearg.c: Assume <wchar.h>.
216         * m4/quotearg.m4: Likewise.
217         * modules/regex (Depends-on): Depend on wchar.
218         * lib/regex_internal.h: Assume <wchar.h>.
219         * m4/regex.m4: Likewise.
220         * modules/stdint (Depends-on): Depend on wchar.
221         * lib/stdint_.h [!defined WCHAR_MIN]: Assume <wchar.h>.
222         * m4/stdint.m4: Likewise.
223         * tests/test-stdint.c [HAVE_WINT_T]: Likewise.
224         * modules/strftime (Depends-on): Depend on wchar.
225         * lib/strftime.c (DO_MULTIBYTE): Assume <wchar.h>.
226         * modules/strtol (Depends-on): Depend on wchar.
227         * lib/strtol.c: Assume <wchar.h>.
228         * modules/wcwidth (Depends-on): Depend on wchar.
229         * lib/wcwidth.h: Assume <wchar.h>.
230         * m4/wcwidth.m4: Likewise.
231
232 2007-01-16  Bruno Haible  <bruno@clisp.org>
233
234         * modules/csharpexec-script: New, created from...
235         * modules/csharpexec: ... this.
236
237 2007-01-16  Paolo Bonzini  <bonzini@gnu.org>
238
239         * modules/javaexec-script: New, created from...
240         * modules/javaexec: ... this.
241
242 2007-01-16  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
243
244         * modules/poll (Dependencies): Add sys_select.
245
246 2007-01-15  Jim Meyering  <jim@meyering.net>
247
248         * m4/readutmp.m4 (gl_READUTMP): Work around AIX 4.3 struct-
249         redefinition bug when using both <utmp.h> and <utmpx.h> headers.
250         * lib/readutmp.h: Likewise.  Reported by Daniel Richard G. in
251         <http://article.gmane.org/gmane.comp.gnu.core-utils.bugs/9415>.
252
253 2007-01-15  Bruno Haible  <bruno@clisp.org>
254
255         * modules/striconveh: New file.
256         * lib/striconveh.h: New file.
257         * lib/striconveh.c: New file.
258         * MODULES.html.sh (Internationalization functions): Add striconveh.
259
260         * modules/striconveh-tests: New file.
261         * tests/test-striconveh.c: New file.
262
263 2007-01-15  Bruno Haible  <bruno@clisp.org>
264
265         * lib/striconv.c (str_cd_iconv): Use the first algorithm if iconv is
266         not from GNU libiconv or GNU libc.
267
268 2007-01-15  Bruno Haible  <bruno@clisp.org>
269
270         * doc/gnulib-intro.texi (Copyright): Explain the different license
271         terms for module descriptions, autoconf macros, tests, documentation.
272
273 2007-01-14  Bruno Haible  <bruno@clisp.org>
274
275         * modules/striconv-tests: New file.
276         * tests/test-striconv.c: New file.
277
278 2007-01-14  Bruno Haible  <bruno@clisp.org>
279
280         * modules/iconv-tests: New file.
281         * tests/test-iconv.c: New file.
282
283 2007-01-14  Bruno Haible  <bruno@clisp.org>
284
285         * gnulib-tool (func_get_license): For test modules, use the license of
286         the main module.
287
288 2007-01-14  Bruno Haible  <bruno@clisp.org>
289
290         * modules/iconv (Include): Clarify that <iconv.h> can only be included
291         if iconv is found to exist.
292
293 2007-01-14  Bruno Haible  <bruno@clisp.org>
294
295         * modules/c-ctype-tests: New file.
296         * tests/test-c-ctype.c: New file.
297
298 2007-01-14  Bruno Haible  <bruno@clisp.org>
299
300         * modules/binary-io-tests: New file.
301         * tests/test-binary-io.sh: New file.
302         * tests/test-binary-io.c: New file.
303
304 2007-01-14  Bruno Haible  <bruno@clisp.org>
305
306         * modules/array-oset-tests: New file.
307         * tests/test-array_oset.c: New file.
308
309 2007-01-14  Bruno Haible  <bruno@clisp.org>
310
311         * modules/array-list-tests: New file.
312         * tests/test-array_list.c: New file.
313
314 2007-01-14  Bruno Haible  <bruno@clisp.org>
315
316         * gnulib-tool (func_create_testdir): Don't unnecessarily run configure
317         and make.
318         Reported by Simon Josefsson in
319         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00139.html>
320
321 2007-01-14  Bruno Haible  <bruno@clisp.org>
322
323         * modules/allocsa-tests: New file.
324         * tests/test-allocsa.c: New file.
325
326 2007-01-14  Bruno Haible  <bruno@clisp.org>
327
328         * modules/fchdir (Depends-on): Add absolute-header.
329         * modules/unistd (Depends-on): Likewise.
330
331 2006-12-30  Bruno Haible  <bruno@clisp.org>
332
333         * modules/fchdir: New file.
334         * modules/unistd (Files): Add lib/unistd_.h.
335         (Makefile.am): Generate unistd.h from unistd_.h.
336         * lib/fchdir.c: New file.
337         * lib/dirent_.h: New file.
338         * lib/unistd_.h: New file.
339         * lib/fcntl_.h (open) [FCHDIR_REPLACEMENT]: New replacement.
340         * m4/fchdir.m4: New file.
341         * m4/unistd_h.m4 (gl_PREREQ_UNISTD): New macro.
342         (gl_HEADER_UNISTD): Invoke it.
343         * lib/dup-safer.c (dup_safer) [FCHDIR_REPLACEMENT]: Use the dup
344         function.
345         * lib/backupfile.c (opendir, closedir): Undefine.
346         * lib/chown.c (open, close): Undefine.
347         * lib/clean-temp.c (open, close): Undefine.
348         * lib/copy-file.c (open, close): Undefine.
349         * lib/execute.c (open, close): Undefine.
350         * lib/fsusage.c (open, close): Undefine.
351         * lib/gc-gnulib.c (open, close): Undefine.
352         * lib/getcwd.c (opendir, closedir): Undefine.
353         * lib/glob.c (opendir, closedir): Undefine.
354         * lib/javacomp.c (open, close): Undefine.
355         * lib/mountlist.c (open, close, opendir, closedir): Undefine.
356         * lib/openat-proc.c (open, close): Undefine.
357         * lib/pagealign_alloc.c (open, close): Undefine.
358         * lib/pipe.c (open, close): Undefine.
359         * lib/progreloc.c (open, close): Undefine.
360         * lib/savedir.c (opendir, closedir): Undefine.
361         * lib/utime.c (open, close): Undefine.
362         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add fchdir.
363
364 2007-01-10  Bruno Haible  <bruno@clisp.org>
365
366         * lib/striconv.c (mem_cd_iconv): Align the temporary buffer.
367
368 2007-01-12  Eric Blake  <ebb9@byu.net>
369
370         Provide a robust <wchar.h>.  Further simplifications are now
371         possible in other modules, but not included here.
372         * modules/wchar: New module.
373         * m4/wchar.m4: New file.
374         * lib/wchar_.h: Likewise.
375         * modules/mbchar (Depends-on): Depend on wchar, as the first use
376         of the new module.
377         * MODULES.html.sh (Extended multibyte and wide character utilities):
378         New section.
379
380 2007-01-12  Paul Eggert  <eggert@cs.ucla.edu>
381
382         * lib/xreadlink.c (SYMLINK_MAX) [!defined SYMLINK_MAX]: Define
383         to a reasonable default for memory allocation.
384         (xreadlink): Don't allocate a huge buffer, to work around a buggy
385         file system that reports garbage st_size values for symlinks.
386         Problem reported by Liyang Hu.
387
388 2007-01-11  Simon Josefsson  <simon@josefsson.org>
389
390         * gnulib-tool (func_all_modules): Exclude all .* files (e.g.,
391         Emacs .#* auto-save files).
392
393 2007-01-11  Bruno Haible  <bruno@clisp.org>
394
395         * gnulib-tool (func_all_modules): Exclude all files inside the CVS
396         directory.
397
398 2007-01-10  Paul Eggert  <eggert@cs.ucla.edu>
399
400         Use @...@ consistently in lib/wctype_.h.
401         * lib/wctype_.h [HAVE_WINT_T]: Go back to using @...@, but rely
402         on it being set to 1 or 0.
403         * m4/wctype.m4 (gl_WCTYPE_H): Set HAVE_WINT_T to 1 or 0, and
404         go back to AC_SUBSTing it.
405         * modules/wctype (Makefile.am): Undo previous change.
406
407 2007-01-10  Eric Blake  <ebb9@byu.net>
408
409         * lib/wctype_.h [HAVE_WINT_T]: Rely on AC_DEFINE.
410         * m4/wctype.m4 (gl_WCTYPE_H): No need to AC_SUBST(HAVE_WINT_T).
411         * modules/wctype (Makefile.am): Likewise.
412         Reported by Chris McGuire.
413
414 2007-01-10  Jim Meyering  <jim@meyering.net>
415
416         fts.c: a small readability/maintainability improvement
417         * lib/fts.c (fts_read): Make this code slightly more readable and
418         maintainable by hoisting the "sp->fts_cur = p" assignments to
419         immediately follow the statements that set P.  Derived from
420         the patch by Miloslav Trmac in http://bugzilla.redhat.com/222089.
421
422 2007-01-10  Eric Blake  <ebb9@byu.net>
423
424         * lib/wctype_.h [HAVE_WINT_T]: Include <stddef.h> before
425         <wchar.h>, to work around BSDI bug in BSD/OS 4.0.1.
426         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
427         * m4/wint_t.m4 (gt_TYPE_WINT_T): Likewise.
428         Reported by Chris McGuire.
429
430 2007-01-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
431
432         * gnulib-tool (func_all_modules): Use POSIX conforming escaping
433         in sed script.
434
435 2007-01-09  Bruno Haible  <bruno@clisp.org>
436
437         * MODULES.html.sh: Accept options --cvs-urls, --git-urls.
438         (repo_url_prefix, repo_url_suffix, repo_url_suffix_repl): New
439         variables.
440         (func_module): Use them.
441
442 2007-01-09  Bruno Haible  <bruno@clisp.org>
443
444         * modules/unistr/base: New file.
445         * lib/unistr.h: New file.
446
447         * modules/unistr/u8-to-u16: New file.
448         * lib/unistr/u8-to-u16.c: New file.
449
450         * modules/unistr/u8-to-u32: New file.
451         * lib/unistr/u8-to-u32.c: New file.
452
453         * modules/unistr/u16-to-u8: New file.
454         * lib/unistr/u16-to-u8.c: New file.
455
456         * modules/unistr/u16-to-u32: New file.
457         * lib/unistr/u16-to-u32.c: New file.
458
459         * modules/unistr/u32-to-u8: New file.
460         * lib/unistr/u32-to-u8.c: New file.
461
462         * modules/unistr/u32-to-u16: New file.
463         * lib/unistr/u32-to-u16.c: New file.
464
465         * modules/unistr/u8-check: New file.
466         * modules/unistr/u16-check: New file.
467         * modules/unistr/u32-check: New file.
468         * lib/unistr/u8-check.c: New file.
469         * lib/unistr/u16-check.c: New file.
470         * lib/unistr/u32-check.c: New file.
471
472         * modules/unistr/u8-chr: New file.
473         * modules/unistr/u16-chr: New file.
474         * modules/unistr/u32-chr: New file.
475         * lib/unistr/u8-chr.c: New file.
476         * lib/unistr/u16-chr.c: New file.
477         * lib/unistr/u32-chr.c: New file.
478
479         * modules/unistr/u8-cmp: New file.
480         * modules/unistr/u16-cmp: New file.
481         * modules/unistr/u32-cmp: New file.
482         * lib/unistr/u8-cmp.c: New file.
483         * lib/unistr/u16-cmp.c: New file.
484         * lib/unistr/u32-cmp.c: New file.
485
486         * modules/unistr/u8-cpy: New file.
487         * modules/unistr/u16-cpy: New file.
488         * modules/unistr/u32-cpy: New file.
489         * lib/unistr/u8-cpy.c: New file.
490         * lib/unistr/u16-cpy.c: New file.
491         * lib/unistr/u32-cpy.c: New file.
492         * lib/unistr/u-cpy.h: New file.
493
494         * modules/unistr/u8-cpy-alloc: New file.
495         * modules/unistr/u16-cpy-alloc: New file.
496         * modules/unistr/u32-cpy-alloc: New file.
497         * lib/unistr/u8-cpy-alloc.c: New file.
498         * lib/unistr/u16-cpy-alloc.c: New file.
499         * lib/unistr/u32-cpy-alloc.c: New file.
500         * lib/unistr/u-cpy-alloc.h: New file.
501
502         * modules/unistr/u8-endswith: New file.
503         * modules/unistr/u16-endswith: New file.
504         * modules/unistr/u32-endswith: New file.
505         * lib/unistr/u8-endswith.c: New file.
506         * lib/unistr/u16-endswith.c: New file.
507         * lib/unistr/u32-endswith.c: New file.
508         * lib/unistr/u-endswith.h: New file.
509
510         * modules/unistr/u8-mblen: New file.
511         * modules/unistr/u16-mblen: New file.
512         * modules/unistr/u32-mblen: New file.
513         * lib/unistr/u8-mblen.c: New file.
514         * lib/unistr/u16-mblen.c: New file.
515         * lib/unistr/u32-mblen.c: New file.
516
517         * modules/unistr/u8-mbtouc: New file.
518         * modules/unistr/u16-mbtouc: New file.
519         * modules/unistr/u32-mbtouc: New file.
520         * lib/unistr/u8-mbtouc.c: New file.
521         * lib/unistr/u16-mbtouc.c: New file.
522         * lib/unistr/u32-mbtouc.c: New file.
523
524         * modules/unistr/u8-mbtouc-safe: New file.
525         * modules/unistr/u16-mbtouc-safe: New file.
526         * modules/unistr/u32-mbtouc-safe: New file.
527         * lib/unistr/u8-mbtouc-safe.c: New file.
528         * lib/unistr/u16-mbtouc-safe.c: New file.
529         * lib/unistr/u32-mbtouc-safe.c: New file.
530
531         * modules/unistr/u8-move: New file.
532         * modules/unistr/u16-move: New file.
533         * modules/unistr/u32-move: New file.
534         * lib/unistr/u8-move.c: New file.
535         * lib/unistr/u16-move.c: New file.
536         * lib/unistr/u32-move.c: New file.
537         * lib/unistr/u-move.h: New file.
538
539         * modules/unistr/u8-next: New file.
540         * modules/unistr/u16-next: New file.
541         * modules/unistr/u32-next: New file.
542         * lib/unistr/u8-next.c: New file.
543         * lib/unistr/u16-next.c: New file.
544         * lib/unistr/u32-next.c: New file.
545
546         * modules/unistr/u8-prev: New file.
547         * modules/unistr/u16-prev: New file.
548         * modules/unistr/u32-prev: New file.
549         * lib/unistr/u8-prev.c: New file.
550         * lib/unistr/u16-prev.c: New file.
551         * lib/unistr/u32-prev.c: New file.
552
553         * modules/unistr/u8-set: New file.
554         * modules/unistr/u16-set: New file.
555         * modules/unistr/u32-set: New file.
556         * lib/unistr/u8-set.c: New file.
557         * lib/unistr/u16-set.c: New file.
558         * lib/unistr/u32-set.c: New file.
559         * lib/unistr/u-set.h: New file.
560
561         * modules/unistr/u8-startswith: New file.
562         * modules/unistr/u16-startswith: New file.
563         * modules/unistr/u32-startswith: New file.
564         * lib/unistr/u8-startswith.c: New file.
565         * lib/unistr/u16-startswith.c: New file.
566         * lib/unistr/u32-startswith.c: New file.
567         * lib/unistr/u-startswith.h: New file.
568
569         * modules/unistr/u8-stpcpy: New file.
570         * modules/unistr/u16-stpcpy: New file.
571         * modules/unistr/u32-stpcpy: New file.
572         * lib/unistr/u8-stpcpy.c: New file.
573         * lib/unistr/u16-stpcpy.c: New file.
574         * lib/unistr/u32-stpcpy.c: New file.
575         * lib/unistr/u-stpcpy.h: New file.
576
577         * modules/unistr/u8-stpncpy: New file.
578         * modules/unistr/u16-stpncpy: New file.
579         * modules/unistr/u32-stpncpy: New file.
580         * lib/unistr/u8-stpncpy.c: New file.
581         * lib/unistr/u16-stpncpy.c: New file.
582         * lib/unistr/u32-stpncpy.c: New file.
583         * lib/unistr/u-stpncpy.h: New file.
584
585         * modules/unistr/u8-strcat: New file.
586         * modules/unistr/u16-strcat: New file.
587         * modules/unistr/u32-strcat: New file.
588         * lib/unistr/u8-strcat.c: New file.
589         * lib/unistr/u16-strcat.c: New file.
590         * lib/unistr/u32-strcat.c: New file.
591         * lib/unistr/u-strcat.h: New file.
592
593         * modules/unistr/u8-strchr: New file.
594         * modules/unistr/u16-strchr: New file.
595         * modules/unistr/u32-strchr: New file.
596         * lib/unistr/u8-strchr.c: New file.
597         * lib/unistr/u16-strchr.c: New file.
598         * lib/unistr/u32-strchr.c: New file.
599
600         * modules/unistr/u8-strcmp: New file.
601         * modules/unistr/u16-strcmp: New file.
602         * modules/unistr/u32-strcmp: New file.
603         * lib/unistr/u8-strcmp.c: New file.
604         * lib/unistr/u16-strcmp.c: New file.
605         * lib/unistr/u32-strcmp.c: New file.
606
607         * modules/unistr/u8-strcpy: New file.
608         * modules/unistr/u16-strcpy: New file.
609         * modules/unistr/u32-strcpy: New file.
610         * lib/unistr/u8-strcpy.c: New file.
611         * lib/unistr/u16-strcpy.c: New file.
612         * lib/unistr/u32-strcpy.c: New file.
613         * lib/unistr/u-strcpy.h: New file.
614
615         * modules/unistr/u8-strcspn: New file.
616         * modules/unistr/u16-strcspn: New file.
617         * modules/unistr/u32-strcspn: New file.
618         * lib/unistr/u8-strcspn.c: New file.
619         * lib/unistr/u16-strcspn.c: New file.
620         * lib/unistr/u32-strcspn.c: New file.
621         * lib/unistr/u-strcspn.h: New file.
622
623         * modules/unistr/u8-strdup: New file.
624         * modules/unistr/u16-strdup: New file.
625         * modules/unistr/u32-strdup: New file.
626         * lib/unistr/u8-strdup.c: New file.
627         * lib/unistr/u16-strdup.c: New file.
628         * lib/unistr/u32-strdup.c: New file.
629         * lib/unistr/u-strdup.h: New file.
630
631         * modules/unistr/u8-strlen: New file.
632         * modules/unistr/u16-strlen: New file.
633         * modules/unistr/u32-strlen: New file.
634         * lib/unistr/u8-strlen.c: New file.
635         * lib/unistr/u16-strlen.c: New file.
636         * lib/unistr/u32-strlen.c: New file.
637         * lib/unistr/u-strlen.h: New file.
638
639         * modules/unistr/u8-strmblen: New file.
640         * modules/unistr/u16-strmblen: New file.
641         * modules/unistr/u32-strmblen: New file.
642         * lib/unistr/u8-strmblen.c: New file.
643         * lib/unistr/u16-strmblen.c: New file.
644         * lib/unistr/u32-strmblen.c: New file.
645
646         * modules/unistr/u8-strmbtouc: New file.
647         * modules/unistr/u16-strmbtouc: New file.
648         * modules/unistr/u32-strmbtouc: New file.
649         * lib/unistr/u8-strmbtouc.c: New file.
650         * lib/unistr/u16-strmbtouc.c: New file.
651         * lib/unistr/u32-strmbtouc.c: New file.
652
653         * modules/unistr/u8-strncat: New file.
654         * modules/unistr/u16-strncat: New file.
655         * modules/unistr/u32-strncat: New file.
656         * lib/unistr/u8-strncat.c: New file.
657         * lib/unistr/u16-strncat.c: New file.
658         * lib/unistr/u32-strncat.c: New file.
659         * lib/unistr/u-strncat.h: New file.
660
661         * modules/unistr/u8-strncmp: New file.
662         * modules/unistr/u16-strncmp: New file.
663         * modules/unistr/u32-strncmp: New file.
664         * lib/unistr/u8-strncmp.c: New file.
665         * lib/unistr/u16-strncmp.c: New file.
666         * lib/unistr/u32-strncmp.c: New file.
667
668         * modules/unistr/u8-strncpy: New file.
669         * modules/unistr/u16-strncpy: New file.
670         * modules/unistr/u32-strncpy: New file.
671         * lib/unistr/u8-strncpy.c: New file.
672         * lib/unistr/u16-strncpy.c: New file.
673         * lib/unistr/u32-strncpy.c: New file.
674         * lib/unistr/u-strncpy.h: New file.
675
676         * modules/unistr/u8-strnlen: New file.
677         * modules/unistr/u16-strnlen: New file.
678         * modules/unistr/u32-strnlen: New file.
679         * lib/unistr/u8-strnlen.c: New file.
680         * lib/unistr/u16-strnlen.c: New file.
681         * lib/unistr/u32-strnlen.c: New file.
682         * lib/unistr/u-strnlen.h: New file.
683
684         * modules/unistr/u8-strpbrk: New file.
685         * modules/unistr/u16-strpbrk: New file.
686         * modules/unistr/u32-strpbrk: New file.
687         * lib/unistr/u8-strpbrk.c: New file.
688         * lib/unistr/u16-strpbrk.c: New file.
689         * lib/unistr/u32-strpbrk.c: New file.
690         * lib/unistr/u-strpbrk.h: New file.
691
692         * modules/unistr/u8-strrchr: New file.
693         * modules/unistr/u16-strrchr: New file.
694         * modules/unistr/u32-strrchr: New file.
695         * lib/unistr/u8-strrchr.c: New file.
696         * lib/unistr/u16-strrchr.c: New file.
697         * lib/unistr/u32-strrchr.c: New file.
698
699         * modules/unistr/u8-strspn: New file.
700         * modules/unistr/u16-strspn: New file.
701         * modules/unistr/u32-strspn: New file.
702         * lib/unistr/u8-strspn.c: New file.
703         * lib/unistr/u16-strspn.c: New file.
704         * lib/unistr/u32-strspn.c: New file.
705         * lib/unistr/u-strspn.h: New file.
706
707         * modules/unistr/u8-strstr: New file.
708         * modules/unistr/u16-strstr: New file.
709         * modules/unistr/u32-strstr: New file.
710         * lib/unistr/u8-strstr.c: New file.
711         * lib/unistr/u16-strstr.c: New file.
712         * lib/unistr/u32-strstr.c: New file.
713         * lib/unistr/u-strstr.h: New file.
714
715         * modules/unistr/u8-strtok: New file.
716         * modules/unistr/u16-strtok: New file.
717         * modules/unistr/u32-strtok: New file.
718         * lib/unistr/u8-strtok.c: New file.
719         * lib/unistr/u16-strtok.c: New file.
720         * lib/unistr/u32-strtok.c: New file.
721         * lib/unistr/u-strtok.h: New file.
722
723         * modules/unistr/u8-uctomb: New file.
724         * modules/unistr/u16-uctomb: New file.
725         * modules/unistr/u32-uctomb: New file.
726         * lib/unistr/u8-uctomb.c: New file.
727         * lib/unistr/u16-uctomb.c: New file.
728         * lib/unistr/u32-uctomb.c: New file.
729
730         * MODULES.html.sh (Unicode string functions): Add the new modules.
731
732 2007-01-08  Bruno Haible  <bruno@clisp.org>
733
734         * gnulib-tool (func_all_modules): Use find, not ls, to traverse the
735         modules directory. Filter out CVS, ChangeLog, COPYING, README also from
736         subdirectories.
737
738 2007-01-08  Karl Berry  <karl@gnu.org>
739
740         * doc/error.texi: mention that main() fns must set program_name
741         when progname is used.
742
743 2007-01-08  Paul Eggert  <eggert@cs.ucla.edu>
744
745         * m4/wctype.m4 (gl_WCTYPE_H): Compute ABSOLUTE_WCTYPE_H even if
746         WCTYPE_H is empty, for the benefit of builds from non-distclean
747         directories.  Problem reported by Eric Blake in
748         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00157.html>.
749
750 2007-01-08  Bruno Haible  <bruno@clisp.org>
751
752         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Remove
753         PROVIDE_CANONICALIZE_FILENAME_MODE macro definition.
754         * lib/canonicalize.h: Test GNULIB_CANONICALIZE instead of
755         PROVIDE_CANONICALIZE_FILENAME_MODE.
756         * modules/canonicalize (configure.ac): Use gl_MODULE_INDICATOR.
757
758 2007-01-08  Bruno Haible  <bruno@clisp.org>
759
760         * m4/fts.m4 (gl_FUNC_FTS_LGPL): Remove _LGPL_PACKAGE macro definition.
761         * lib/fts_.h (_LGPL_PACKAGE): Remove macro.
762         Use !GNULIB_FTS instead of _LGPL_PACKAGE.
763         * lib/fts.c: Likewise.
764         * modules/fts (configure.ac): Use gl_MODULE_INDICATOR.
765
766 2006-12-25  Bruno Haible  <bruno@clisp.org>
767
768         * modules/utf8-ucs4-safe: New file.
769         * lib/utf8-ucs4-safe.h: New file.
770         * lib/unistr/utf8-ucs4-safe.c: New file.
771
772         * modules/utf16-ucs4-safe: New file.
773         * lib/utf16-ucs4-safe.h: New file.
774         * lib/unistr/utf16-ucs4-safe.c: New file.
775
776         * MODULES.html.sh (Unicode string functions): Add the new modules.
777
778 2007-01-08  Bruno Haible  <bruno@clisp.org>
779
780         * modules/utf8-ucs4 (Files, lib_SOURCES): Add unistr/utf8-ucs4.c.
781         (Depends-on): Add unitypes.
782         * lib/utf8-ucs4.h: Add double-inclusion guard. Include unitypes.h.
783         (u8_mbtouc_aux): Move out to separate file.
784         (u8_mbtouc): Use ucs4_t, uint8_t types.
785         * lib/unistr/utf8-ucs4.c: New file.
786
787         * modules/utf16-ucs4 (Files, lib_SOURCES): Add unistr/utf16-ucs4.c.
788         (Depends-on): Add unitypes.
789         * lib/utf16-ucs4.h: Add double-inclusion guard. Include unitypes.h.
790         (u16_mbtouc_aux): Move out to separate file.
791         (u16_mbtouc): Use ucs4_t, uint16_t types.
792         * lib/unistr/utf16-ucs4.c: New file.
793
794         * modules/ucs4-utf8 (Files, lib_SOURCES): Add unistr/ucs4-utf8.c.
795         (Depends-on): Add unitypes.
796         * lib/ucs4-utf8.h: Add double-inclusion guard. Include unitypes.h.
797         (u8_uctomb_aux): Move out to separate file.
798         (u8_uctomb): Use ucs4_t, uint8_t types.
799         * lib/unistr/ucs4-utf8.c: New file.
800
801         * modules/ucs4-utf16 (Files, lib_SOURCES): Add unistr/ucs4-utf16.c.
802         (Depends-on): Add unitypes.
803         * lib/ucs4-utf16.h: Add double-inclusion guard. Include unitypes.h.
804         (u16_uctomb_aux): Move out to separate file.
805         (u16_uctomb): Use ucs4_t, uint16_t types.
806         * lib/unistr/ucs4-utf16.c: New file.
807
808 2006-12-25  Bruno Haible  <bruno@clisp.org>
809
810         * modules/unitypes: New file.
811         * lib/unitypes.h: New file.
812         * MODULES.html.sh (func_all_modules): New section "Unicode string
813         functions". Move ucs4-utf8, ucs4-utf16, utf8-ucs4, utf16-ucs4 to
814         this section. Add unitypes.
815
816 2007-01-08  Bruno Haible  <bruno@clisp.org>
817
818         Avoid variable names that conflict with those from libtool.
819         * m4/lib-link.m4 (AC_LIB_RPATH, AC_LIB_LINKFLAGS_BODY,
820         AC_LIB_LINKFLAGS_FROM_LIBS): Rename libext to acl_libext,
821         shlibext to acl_shlibext, libname_spec to acl_libname_spec,
822         library_names_spec to acl_library_names_spec, hardcode_* to
823         acl_hardcode_*.
824         Reported by Ralf Wildenhues.
825
826 2007-01-08  Bruno Haible  <bruno@clisp.org>
827
828         * m4/gc-arcfour.m4 (gl_GC_ARCFOUR): Remove GC_USE_ARCFOUR macro
829         definition.
830         * m4/gc-arctwo.m4 (gl_GC_ARCTWO): Remove GC_USE_ARCTWO macro
831         definition.
832         * m4/gc-des.m4 (gl_GC_DES): Remove GC_USE_DES macro definition.
833         * m4/gc-hmac-md5.m4 (gl_GC_HMAC_MD5): Remove GC_USE_HMAC_MD5 macro
834         definition.
835         * m4/gc-hmac-sha1.m4 (gl_GC_HMAC_SHA1): Remove GC_USE_HMAC_SHA1 macro
836         definition.
837         * m4/gc-md2.m4 (gl_GC_MD2): Remove GC_USE_MD2 macro definition.
838         * m4/gc-md4.m4 (gl_GC_MD4): Remove GC_USE_MD4 macro definition.
839         * m4/gc-md5.m4 (gl_GC_MD5): Remove GC_USE_MD5 macro definition.
840         * m4/gc-random.m4 (gl_GC_RANDOM): Remove GC_USE_RANDOM macro
841         definition.
842         * m4/gc-rijndael.m4 (gl_GC_RIJNDAEL): Remove GC_USE_RIJNDAEL macro
843         definition.
844         * m4/gc-sha1.m4 (gl_GC_SHA1): Remove GC_USE_SHA1 macro definition.
845         * lib/gc-gnulib.c: Use GNULIB_GC_<algorithm> instead of
846         GC_USE_<algorithm>.
847         * lib/gc-libgcrypt.c: Likewise.
848         * modules/gc-arcfour (configure.ac): Use gl_MODULE_INDICATOR.
849         * modules/gc-arctwo (configure.ac): Likewise.
850         * modules/gc-des (configure.ac): Likewise.
851         * modules/gc-hmac-md5 (configure.ac): Likewise.
852         * modules/gc-hmac-sha1 (configure.ac): Likewise.
853         * modules/gc-md2 (configure.ac): Likewise.
854         * modules/gc-md4 (configure.ac): Likewise.
855         * modules/gc-md5 (configure.ac): Likewise.
856         * modules/gc-random (configure.ac): Likewise.
857         * modules/gc-rijndael (configure.ac): Likewise.
858         * modules/gc-sha1 (configure.ac): Likewise.
859
860 2007-01-08  Bruno Haible  <bruno@clisp.org>
861
862         * m4/close-stream.m4 (gl_CLOSE_STREAM): Remove GNULIB_CLOSE_STREAM
863         macro definition.
864         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Remove GNULIB_FCNTL_SAFER macro
865         definition.
866         * m4/stdio-safer.m4 (gl_FOPEN_SAFER): Remove GNULIB_FOPEN_SAFER macro
867         definition.
868         * modules/close-stream (configure.ac): Invoke gl_MODULE_INDICATOR.
869         * modules/fcntl-safer (configure.ac): Likewise.
870         * modules/fopen-safer (configure.ac): Likewise.
871         * modules/fwriteerror (configure.ac): Likewise. Remove explicit
872         GNULIB_FWRITEERROR macro definition.
873
874 2007-01-08  Bruno Haible  <bruno@clisp.org>
875
876         * m4/gnulib-common.m4: New file.
877         * gnulib-tool (func_get_autoconf_snippet): Undo last change.
878         (func_get_filelist): Add m4/gnulib-common.m4.
879
880 2007-01-08  Bruno Haible  <bruno@clisp.org>
881
882         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Simplify the sorting
883         command.
884
885 2007-01-08  Jim Meyering  <jim@meyering.net>
886
887         Use a more robust test for a "can't happen" condition.
888         * lib/fts.c (fts_read): Revert the change of 2006-11-22, since it
889         narrowed the st_size value.  Presuming the "can't happen" condition
890         is true, that narrowing could conceivably convert an invalid st_size
891         value into a valid one.  Instead, use a change based on Matthew
892         Woehlke's original patch.
893
894         Slight readability improvement: use an assert-like macro
895         in place of literal "abort ()" uses.
896         * lib/fts.c (fts_assert): Define.
897         (fts_set_stat_required, cwd_advance_fd, fts_read, fd_ring_check):
898         Use this macro instead of a bare 'abort'.
899
900 2007-01-05  Paul Eggert  <eggert@cs.ucla.edu>
901
902         Don't worry about using IRIX 5.3's wctype.h broken definitions;
903         simply work around them.
904         * lib/wctype_.h: Remove test for HAVE_WCTYPE_CTMP_BUG.
905         (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit, iswgraph, iswlower):
906         (iswprint, iswpunct, iswspace, iswupper, iswxdigit): Undef before declaring.
907         Don't bother to define as macros, since the standard doesn't require it.
908         * m4/wctype.m4 (WCTYPE_H, ABSOLUTE_WCTYPE_H): Simplify, since we no
909         longer worry about IRIX 5.3.
910         (HAVE_WCTYPE_CTMP_BUG): Remove.
911
912 2007-01-04  Paul Eggert  <eggert@cs.ucla.edu>
913
914         * lib/wctype_.h (_ctmp_) [HAVE_WCTYPE_CTMP_BUG]: Now of type wchar_t,
915         not wint_t.  Also, include <ctype.h>, to fix another IRIX bug.
916         * m4/wctype.m4 (gl_WCTYPE_H): Likewise.
917         Problems reported by Georg Schwarz for IRIX 5.3.
918
919         * gnulib-tool (autoconf_minversion): Take the maximum version number
920         found, not the minimum.  Problem reported by James Youngman.
921
922 2007-01-03  Karl Berry  <karl@gnu.org>
923
924         * doc/error.texi: new file, explaining interaction with progname.
925         * doc/gnulib.texi: include it.  Update copyright.
926
927 2007-01-03  Simon Josefsson  <simon@josefsson.org>
928
929         * gnulib-tool (func_create_testdir): Run AC_CANONICAL_BUILD and
930         AC_CANONICAL_HOST, to improve autobuild outputs.
931
932 2007-01-03  Paolo Bonzini  <bonzini@gnu.org>
933             Yoann Vandoorselaere <yoann.v@prelude-ids.com>
934
935         * lib/poll.c (poll): Use recv on Mac OS X to distinguish connected
936         sockets, server sockets, and other file descriptors.  Count errors
937         to compute the return value.  Reorder the code a bit to be easier
938         to follow.  Don't set event bits that were not requested (except
939         POLLERR and POLLHUP).
940
941 2007-01-01  Bruno Haible  <bruno@clisp.org>
942
943         * modules/lchmod (Include): Require lchmod.h, not lchown.h.
944
945 2007-01-03  Jim Meyering  <jim@meyering.net>
946
947         * modules/fts-lgpl (Depends-on): Add i-ring.  Reported by Bruno Haible.
948
949 2007-01-02  Bruno Haible  <bruno@clisp.org>
950
951         * modules/settime (Include): Require timespec.h.
952         * modules/nanosleep (Include): Likewise.
953
954 2007-01-01  Bruno Haible  <bruno@clisp.org>
955
956         * gnulib-tool (func_emit_copyright_notice): Bump year.
957         (func_get_autoconf_snippet): Emit a GNULIB_<modulename> macro.
958
959 2007-01-01  Bruno Haible  <bruno@clisp.org>
960
961         Improve support for OpenBSD.
962         * build-aux/config.rpath (libname_spec): Export.
963         (library_names_spec): New variable. Export.
964         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Extract libname_spec and
965         library_names_spec from the config.rpath output. Locate shared library
966         through the name pattern in library_names_spec.
967
968 2007-01-01  Eric Blake  <ebb9@byu.net>
969
970         * lib/version-etc.c (COPYRIGHT_YEAR): Bump for new year.
971
972 2006-12-30  Paul Eggert  <eggert@cs.ucla.edu>
973
974         * gnulib-tool (SORT): Remove, since we no longer assume GNU sort.
975         Rewrite so as not to assume GNU sort or "tail -1".  Also, don't
976         assume the C locale, and avoid an "eval" that could cause trouble.
977         Problem with SORT reported by Bob Proulx.
978
979         * lib/getpagesize.h (getpagesize) [defined __amigaos4__]:
980         Define.  Trivial patch from Henning Nielsen Lund, originally
981         sent to bug-grep@gnu.org today.
982
983 2006-12-29  Paul Eggert  <eggert@cs.ucla.edu>
984
985         * lib/acl.h: Include sys/types.h and sys/stat.h, for mode_t and
986         struct stat.  Problem reported by Henning Nielsen Lund.
987         * lib/acl.c: Include acl.h first, to check interface.  Don't
988         bother to include sys/types.h and sys/stat.h again.
989
990 2006-12-28  Paul Eggert  <eggert@cs.ucla.edu>
991
992         Import the following change from libc; problem reported by
993         Sven Verdoolaege.
994
995         2005-10-13  Ulrich Drepper  <drepper@redhat.com>
996
997         [BZ #1373]
998         * lib/argp.h: Remove __NTH for __argp_usage inline function.
999
1000 2006-12-28  Jim Meyering  <jim@meyering.net>
1001
1002         * build-aux/announce-gen: Do not assume that the package
1003         builds any of tar.gz, tar.bz2, and .xdelta files.
1004         Suggestion from Simon Josefsson.
1005
1006 2006-12-28  Simon Josefsson  <simon@josefsson.org>
1007
1008         * modules/announce-gen: New file.
1009
1010 2006-12-27  Paul Eggert  <eggert@cs.ucla.edu>
1011
1012         * lib/mbchar.h: Just include <wctype.h>; the wctype module
1013         handles its gotchas now.
1014         * lib/mbswidth.c: Likewise.
1015         * lib/wcwidth.h: Likewise.
1016         * m4/mbchar.m4 (gl_MBCHAR): Don't bother checking for wctype.h
1017         and iswcntrl; the wctype module does this stuff now.
1018         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
1019         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
1020         * modules/mbchar (Depends-on): Add wctype.
1021         * modules/mbswidth (Depends-on): Likewise.
1022         * modules/wcwidth (Depends-on): Likewise.
1023
1024 2006-12-27  Eric Blake  <ebb9@byu.net>
1025
1026         * lib/fnmatch.c: Reinstate inclusion of <wchar.h>, since this
1027         module uses more than what <wctype.h> is required to provide.
1028
1029 2006-12-26  Eric Blake  <ebb9@byu.net>
1030
1031         * gnulib-tool (sed_extract_prog): Avoid space-tab.
1032
1033 2006-12-26  Eric Blake  <ebb9@byu.net>
1034
1035         * modules/absolute-header: New module.
1036         * modules/fcntl (Depends-on): Depend on it.
1037         * modules/inttypes (Depends-on): Likewise.
1038         * modules/stdint (Depends-on): Likewise.
1039         * modules/sys_stat (Depends-on): Likewise.
1040         * modules/wctype (Depends-on): Likewise.
1041         * MODULES.html.sh (Support for building libraries and
1042         executables): Document it.
1043
1044 2006-12-25  Paul Eggert  <eggert@cs.ucla.edu>
1045
1046         * gnulib-tool (SED): Remove, undoing previous change.
1047         The problem was that it broke coreutils on Solaris, because
1048         "sed --posix" leaked into a makefile.
1049         (sed): New alias, if 'alias' and GNU sed.
1050
1051 2006-12-24  Jim Meyering  <jim@meyering.net>
1052
1053         Work around an fchownat bug in glibc-2.4:
1054         http://lists.ubuntu.com/archives/ubuntu-users/2006-September/093218.html
1055         This bug would cause "chown -RP ... DIR" to follow symlinks in DIR,
1056         in spite of the -P option.
1057         * m4/openat.m4 (gl_FUNC_FCHOWNAT, gl_FUNC_FCHOWNAT_DEREF_BUG):
1058         New macros.
1059         (gl_PREREQ_OPENAT): Require gl_FUNC_FCHOWNAT.
1060         * modules/openat (Files): Add lib/fchownat.c.
1061         * lib/openat.c (fchownat): Don't define here.  Move to...
1062         * lib/fchownat.c: ...this new file.
1063
1064 2006-12-23  Paul Eggert  <eggert@cs.ucla.edu>
1065
1066         Fix bug reported by Bruno Haible in
1067         <http://lists.gnu.org/archive/html/bug-gnulib/2006-12/msg00228.html>
1068         where quotearg.c didn't compile on Mac OS X 10.2 because it
1069         lacks <wchar.h> and wint_t.
1070         * lib/wctype_.h (__wctype_wint_t): New type.
1071         Include <stdio.h>, <time.h>, <wchar.h> only if HAVE_WINT_T.
1072         (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit, iswgraph):
1073         (iswlower, iswprint, iswpunct, iswspace, iswupper, ixwxdigit):
1074         Arg is now of type __wctype_wint_t, not wint_t.
1075         * m4/wctype.m4 (gl_WCTYPE_H): Require gt_TYPE_WINT_T, and
1076         substitute HAVE_WINT_T.
1077         * modules/wctype (Files): Add m4/wint_t.m4.
1078         (wctype.h): Substitute HAVE_WINT_T.
1079
1080 2006-12-23  Bruno Haible  <bruno@clisp.org>
1081
1082         * lib/safe-read.h [C++]: Wrap declarations in extern "C".
1083
1084 2006-12-23  Bruno Haible  <bruno@clisp.org>
1085
1086         * lib/canonicalize-lgpl.c (__realpath): Test HAVE_READLINK instead of
1087         S_ISLNK.
1088         Needed because gnulib's sys/stat.h replacement defines S_ISLNK on
1089         mingw.
1090
1091 2006-12-22  Bruno Haible  <bruno@clisp.org>
1092
1093         * lib/copy-file.c: Include acl.h.
1094         (copy_file_preserving) [USE_ACL]: Use copy_acl instead of chmod.
1095         Close the file descriptors only after being done with copy_acl.
1096         * modules/copy-file (Depends-on): Add acl.
1097
1098 2006-12-22  Bruno Haible  <bruno@clisp.org>
1099
1100         * gnulib-tool (SED): New variable.
1101         Use $SED instead of sed everywhere.
1102
1103 2006-12-22  Bruno Haible  <bruno@clisp.org>
1104
1105         * modules/no-c++: New file.
1106         * m4/no-c++.m4: New file.
1107         * MODULES.html.sh (Support for building libraries and executables):
1108         Add no-c++.
1109
1110 2006-12-22  Paul Eggert  <eggert@cs.ucla.edu>
1111
1112         * m4/mktime.m4 (AC_FUNC_MKTIME): Sync from Autoconf.
1113         Include <limits.h>, and use its INT_MAX to rewrite the
1114         j loop so that it does not overflow 'int'.  Problem reported by
1115         Ralf Wildenhues in
1116         <http://lists.gnu.org/archive/html/bug-gnulib/2006-12/msg00084.html>.
1117         Play it safe by shifting left by 1 rather than multiplying by 2,
1118         as GCC is less likely to optimize this away when the value
1119         is signed (when it assumes overflow leads to undefined behavior).
1120         Also, don't assume time_t uses two's complement.
1121
1122 2006-12-21  Paul Eggert  <eggert@cs.ucla.edu>
1123
1124         * MODULES.html.sh: New module wctype.
1125         * lib/wctype_.h, m4/wctype.m4, modules/wctype: New files.
1126         * lib/fnmatch.c: Don't bother to include <wchar.h> before
1127         <wctype.h>, since the new wctype module should fix this.
1128         * lib/quotearg.c: Include <wctype.h> unconditionally, since
1129         the wctype module should arrange for it.
1130         * lib/regex_internal.h: Likewise.
1131         * m4/quotearg.m4 (gl_QUOTEARG): Don't check for wctype.h or iswprint,
1132         since the wctype module should handle this now.
1133         * m4/regex.m4 (gl_PREREQ_REGEX): Don't check for wctype.h.
1134         * modules/fnmatch (Depends-on): Add wctype.
1135         * modules/quotearg (Depends-on): Likewise.
1136         * modules/regex (Depends-on): Likewise.
1137
1138 2006-12-19  Bruno Haible  <bruno@clisp.org>
1139
1140         * lib/strdup.h [C++]: Wrap definitions in extern "C".
1141         Suggested by Lorenzo Bettini <bettini@dsi.unifi.it>.
1142
1143 2006-12-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1144
1145         * modules/savewd (Depends-on): Fix dependency on fcntl.
1146
1147 2006-12-18  Paul Eggert  <eggert@cs.ucla.edu>
1148
1149         * m4/stdint.m4 (gl_STDINT_H): Set STDINT_H to empty if stdint.h
1150         conforms to C99, rather than relying on the user's environment
1151         setting of STDINT_H.
1152
1153 2006-12-18  Paul Eggert  <eggert@cs.ucla.edu>
1154         and Eric Blake  <ebb9@byu.net>
1155
1156         * lib/dirname.h (DOUBLE_SLASH_IS_DISTINCT_ROOT): Default to 0, not 1.
1157         This is more consistent with the other defines here.
1158         * m4/double-slash-root.m4 (gl_DOUBLE_SLASH_ROOT):
1159         Port to z/OS.  Problem reported by Paul Gilmartin.
1160         Change local vars to use gl_ prefix rather than ac_.
1161         Don't define DOUBLE_SLASH_IS_DISTINCT_ROOT to 0, for consistency
1162         with other defines.
1163         * modules/double-slash-root: New module.
1164         * modules/dirname (Files): Remove m4/double-slash-root.m4.
1165         (Depends-on): Add double-slash-root.
1166         * MODULES.html.sh (File system functions): Mention new module.
1167
1168 2006-12-14  Paul Eggert  <eggert@cs.ucla.edu>
1169
1170         * lib/yesno.c [!ENABLE_NLS]: Don't include getline.h.
1171         (yesno) [!ENABLE_NLS]: Don't invoke getline or rpmatch.
1172         This is for the benefit of gzip, which doesn't do i18n.
1173
1174 2006-12-12  Jim Meyering  <jim@meyering.net>
1175
1176         * m4/acl.m4 (gl_ACL_GET_FILE): Fix logic error.
1177         Reported by Andreas Schwab <schwab@suse.de>.
1178
1179 2006-12-12  Bruno Haible  <bruno@clisp.org>
1180
1181         Merge these changes.
1182         2006-09-05  Bruno Haible  <bruno@clisp.org>
1183         * lib/iconvme.c (iconv_string): No need to save and restore errno when
1184         iconv_alloc succeeded.
1185         (iconv_alloc): Don't assume that malloc() or realloc(), when failing,
1186         sets errno to ENOMEM. (malloc on GNU/kFreeBSD doesn't.) No need to
1187         test for " && dest " at the end - dest is always != NULL there. Call
1188         iconv with 4xNULL arguments initially, to reset the state. Call iconv
1189         with 2xNULL arguments, also to flush the state storage. Handle the
1190         IRIX iconv behaviour. Realloc the final result, to throw away unused
1191         memory.
1192
1193 2006-12-11  Paul Eggert  <eggert@cs.ucla.edu>
1194
1195         * m4/openat.m4 (gl_FUNC_OPENAT): Don't compile mkdirat
1196         and fchmodat unconditionally, since glibc 2.4 has them.
1197         Problem reported by Arkadiusz Miskiewicz.
1198
1199 2006-12-10  Bruno Haible  <bruno@clisp.org>
1200
1201         * gnulib-tool (func_import): Show the include files only for those
1202         modules that are copied and specified.
1203         Reported by Karl Berry.
1204
1205 2006-12-08  Jim Meyering  <jim@meyering.net>
1206
1207         * build-aux/announce-gen ($VERSION): Don't use of $Revision...$.
1208         Instead, use Emacs' time-stamp write hook.  Note that the time is UTC.
1209
1210         * build-aux/announce-gen: Add two new options, both optional:
1211         --bootstrap-tools=TOOL_LIST
1212               a comma-separated list of tools, e.g.,
1213               autoconf,automake,bison,gnulib
1214         --gnulib-snapshot-date=DATE
1215               if gnulib is in the bootstrap tool list,
1216               then report this as the snapshot date.
1217               If not specified, use the current date/time.
1218               If you specify a date here, be sure it's UTC.
1219
1220 2006-12-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1221
1222         * tests/test-argp-2.sh: Fix test to match actual output.
1223         (func_compare): Fix sed script to be portable.
1224
1225 2006-12-05  Paul Eggert  <eggert@cs.ucla.edu>
1226
1227         * lib/utimens.c (futimens) [HAVE_BUGGY_NFS_TIME_STAMPS]: Add a
1228         workaround for this case.  It is not autoconfigured now; offhand
1229         it's hard to see how to autoconfigure it.
1230
1231 2006-12-03  Paul Eggert  <eggert@cs.ucla.edu>
1232
1233         * lib/mkdir-p.c (make_dir_parents): Fix race condition when making
1234         a directory that is about to be chowned.  Such a directory's
1235         initial file permissions should permit the owner only and this
1236         should not be changed until after the chown, since the group and
1237         other bits would be incorrect if they granted permission before
1238         the chown.
1239
1240         Fix porting problem for iswctype reported by Georg Schwarz in:
1241         http://lists.gnu.org/archive/html/bug-coreutils/2006-12/msg00017.html
1242         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Require HAVE_ISWCTYPE, too.
1243         * lib/regex_internal.h (RE_ENABLE_I18N): Likewise.
1244         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for iswctype, too.
1245         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
1246
1247 2006-12-03  Jim Meyering  <jim@meyering.net>
1248
1249         * lib/fts.c (fts_load): Don't set sp->fts_dev here, since
1250         p->fts_statp may not yet be defined.
1251         (fts_read): Instead, set it in the caller, once p->fts_statp is
1252         sure to be defined, and corresponds to a top-level directory.
1253         This bug made du -x fail.  Here's the coreutils test case:
1254         http://git.sv.gnu.org/gitweb/?p=coreutils.git;a=commit;h=ba45154d8e9f
1255         Reported by Mike Frysinger.
1256
1257 2006-12-01  Jim Meyering  <jim@meyering.net>
1258
1259         * modules/savewd (Depends-on): Add fcntl_h to avoid self-test
1260         build failure due to missing definition of HAVE_WORKING_O_NOFOLLOW.
1261         Reported by Simon Josefsson.
1262
1263 2006-11-30  Jim Meyering  <jim@meyering.net>
1264
1265         * m4/warning.m4: Use the all-permissive copyright notice
1266         recommended by RMS (rather than LGPL).
1267         * m4/vararrays.m4: Likewise.
1268         * m4/flexmember.m4: Likewise.
1269
1270 2006-11-29  Bruno Haible  <bruno@clisp.org>
1271
1272         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
1273         noinst_LIBRARIES. Augment noinst_LIBRARIES and noinst_LTLIBRARIES
1274         using +=.
1275         Reported by Simon Josefsson <simon@josefsson.org>.
1276
1277 2006-11-28  James Youngman <jay@gnu.org>
1278
1279         * README: Advise users that they might find the bug-gnulib@gnu.org
1280         and autotools-announce@gnu.org mailing lists useful.
1281
1282 2006-11-28  Bruno Haible  <bruno@clisp.org>
1283
1284         * m4/ptrdiff_max.m4: Remove file.
1285
1286 2006-11-21  Bruno Haible  <bruno@clisp.org>
1287
1288         * m4/eoverflow.m4 (gl_EOVERFLOW): Use AC_COMPUTE_INT instead of
1289         _AC_COMPUTE_INT.
1290         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
1291         * m4/ptrdiff_max.m4 (gl_PTRDIFF_MAX): Use AC_COMPUTE_INT instead of
1292         _AC_COMPUTE_INT.
1293         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
1294         * m4/size_max.m4 (gl_SIZE_MAX): Use AC_COMPUTE_INT instead of
1295         _AC_COMPUTE_INT.
1296         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
1297
1298 2006-11-28  Jim Meyering  <jim@meyering.net>
1299
1300         * lib/regcomp.c (parse_branch): Rename local, exp->expr, to avoid
1301         warning from "gcc -Wshadow" about shadowing the builtin.
1302
1303 2006-11-27  Bruno Haible  <bruno@clisp.org>
1304
1305         * m4/stdint.m4 (gl_STDINT_BITSIZEOF): Use AC_COMPUTE_INT instead of
1306         _AC_COMPUTE_INT.
1307         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
1308
1309 2006-11-27  Bruno Haible  <bruno@clisp.org>
1310             Paul Eggert  <eggert@cs.ucla.edu>
1311
1312         * lib/regex.h (__restrict_arr): Redo logic of #if, for clarity.
1313
1314 2006-11-26  Bruno Haible  <bruno@clisp.org>
1315
1316         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
1317         noinst_LTLIBRARIES.
1318
1319 2006-11-27  Paul Eggert  <eggert@cs.ucla.edu>
1320             Bruno Haible  <bruno@clisp.org>
1321
1322         * lib/gettext.h (_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS): Define to 0
1323         if compiling with "gcc -ansi".
1324
1325 2006-11-26  Paul Eggert  <eggert@cs.ucla.edu>
1326
1327         Fix some incompatibilities with gcc -ansi -pedantic.
1328         * lib/regex.h (__restrict_arr): Don't use the [restrict] syntax
1329         if compiling pedantically with GCC, unless it's C99 or later.
1330         Don't trust sys/cdefs.h's definition of __restrict_arr, either, as
1331         it mishandles gcc -ansi -pedantic as well.
1332         * lib/regex_internal.h (re_token_t): Don't use enum bitfields
1333         if gcc -pedantic.
1334         * lib/regexec.c (check_node_accept_bytes): Don't use auto
1335         initializers for struct if -pedantic, unless it's C99 or later.
1336
1337 2006-11-25  Nix  <nix@esperi.org.uk>  (tiny change)
1338
1339         * m4/fcntl_h.m4 (gl_FCNTL_H): Test the atime, not the mtime.
1340         Don't close an fd more than once. Identical atimes indicate
1341         success, not failure.
1342
1343 2006-11-22  Robinson Mittmann <bob@hoplon.com>  (tiny change)
1344
1345         * lib/sincosl.c (kernel_sinl): Fix typo in threshold.
1346
1347 2006-11-23  Jim Meyering  <jim@meyering.net>
1348
1349         * build-aux/announce-gen: New file.  From coreutils.
1350
1351 2006-11-22  Jim Meyering  <jim@meyering.net>
1352
1353         Work around a compile-time error from the HP-UX 11.00 /bin/cc.
1354         * lib/fts.c (enum Fts_stat): Give this previously-anon enum a name.
1355         (fts_read): Use a temporary to narrow the overused st_size member
1356         before using it in a switch statement.  Reported by Matthew Woehlke.
1357
1358         * m4/clock_time.m4 (gl_CLOCK_TIME): Quote AC_SUBST argument.
1359         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Likewise.
1360
1361 2006-11-20  Bruno Haible  <bruno@clisp.org>
1362
1363         * gettext.m4 (AM_GNU_GETTEXT): Revert 2005-07-28 patch: Use
1364         changequote instead of pairs of brackets.
1365         Reported by Andreas Schwab <schwab@suse.de>.
1366
1367 2006-11-21  Jim Meyering  <jim@meyering.net>
1368
1369         * lib/fts.c (fts_safe_changedir): Move a declaration "up",
1370         so as to remain compatible with older compilers.
1371         Patch from Michael Deutschmann.
1372
1373 2006-11-20  Paul Eggert  <eggert@cs.ucla.edu>
1374
1375         * MODULES.html.sh (File system functions): Add openat.
1376
1377         * lib/openat.h (rpl_fstatat): New macro, if
1378         [HAVE_OPENAT && ! LSTAT_FOLLOWS_SLASHED_SYMLINK.
1379         (fstatat): Define to rpl_fstatat under the same conditions,
1380         unless COMPILING_FSTATAT.
1381         * m4/openat.m4 (gl_FUNC_OPENAT): Compile fstatat.c too, if fstatat
1382         seems to have the bug.
1383         * lib/fstatat.c: New file.
1384         * modules/openat (Files): Add it.
1385
1386 2006-11-20  Bruno Haible  <bruno@clisp.org>
1387
1388         * Makefile: New file.
1389
1390 2006-11-20  Jim Meyering  <jim@meyering.net>
1391
1392         The beginnings of syntax-related checks for gnulib.
1393         * lib/Makefile: New file.
1394         * lib/t-idcache: New script.  Ensure that the two halves of
1395         idcache.c stay in sync.
1396
1397         * lib/idcache.c: Adjust comments in user- and group- portions to
1398         be more accurate, and to be consistent with one another.
1399
1400 2006-11-20  Jim Meyering  <jim@meyering.net>
1401
1402         * lib/idcache.c: Restore most of the 2006-11-06 patch, so as to
1403         continue using the flexible array member (thus, this module performs
1404         half as many malloc calls), with the addition that...
1405         (getgroup, getuser): Consistently record a non-match via an empty
1406         "name" string, and map an empty string match to a NULL return value.
1407         * modules/idcache (Depends-on): Re-add flexmember.
1408
1409         * lib/idcache.c (getuser): Remove all uses of the register keyword.
1410         (getuidbyname, getgroup, getgidbyname): Likewise.
1411
1412         Use cleaner syntax: NULL rather than 0.
1413         * lib/idcache.c (getuidbyname, getgidbyname): Return NULL, not 0.
1414
1415 2006-11-20  Paul Eggert  <eggert@cs.ucla.edu>
1416
1417         * lib/idcache.c: Undo most recent patch, dated 2006-11-06.
1418         It mishandled the case where the group was missing.
1419         Problem reported by Greg Schafer.
1420         * modules/idcache: Likewise.
1421
1422 2006-11-18  Jim Meyering  <jim@meyering.net>
1423
1424         * check-module (%exempt_header): Add exception for some
1425         conditionally-included headers.
1426
1427         * modules/i-ring (Depends-on): Add verify.
1428         (License): Change to LGPL.
1429
1430 2006-11-16  Paul Eggert  <eggert@cs.ucla.edu>
1431
1432         * modules/getaddinfo (Depends-on): Remove inttostr; add snprintf.
1433         * lib/getaddrinfo.c: Include snprintf.h rather than intprops.h
1434         and inttostr.h.  Use snprintf rather than uinttostr, so that
1435         LGPLed code doesn't depend on GPLed.
1436
1437 2006-11-17  Paul Eggert  <eggert@cs.ucla.edu>
1438
1439         * modules/inline (License): Change from GPL to LGPL.
1440
1441 2006-11-17  Jim Meyering  <jim@meyering.net>
1442
1443         * modules/d-type (License): Switch to LGPL.
1444
1445 2006-11-15  Bruno Haible  <bruno@clisp.org>
1446
1447         * m4/alloca.m4 (gl_FUNC_ALLOCA): Fix the AC_CACHE_CHECK message.
1448
1449 2006-11-15  Eric Blake  <ebb9@byu.net>
1450
1451         * m4/allocsa.m4 (gl_ALLOCSA): Don't invoke macro already picked up by
1452         the module dependency.
1453
1454 2006-11-15  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
1455             Bruno Haible  <bruno@clisp.org>
1456
1457         * gnulib-tool (func_create_testdir): Add license consistency check.
1458
1459 2006-11-15  Eric Blake  <ebb9@byu.net>
1460
1461         * m4/alloca.m4 (gl_FUNC_ALLOCA): Use AC_CACHE_CHECK to avoid a
1462         random "(cached)" in configure output.
1463
1464 2006-11-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1465
1466         * m4/inttypes.m4 (gl_INTTYPES_H): Use AC_CACHE_CHECK so that the
1467         test for conforming inttypes.h is both announced and cached.
1468
1469         * MODULES.html.sh (seen_modules, seen_files): New variables.
1470         (func_module): Rewrite to use a few less gnulib-tool and sed
1471         invocations.  Avoid a couple of quadratic algorithms for ...
1472         (missed_modules, missed_files): ... these, with ...
1473         (func_append, func_tmpdir): ... these new functions, from
1474         gnulib-tool.  Analogously, install traps for cleanup.
1475
1476         * tests/test-gc.c (main): Remove unused variables.
1477         * tests/test-read-file.c: Include stdlib.h, for 'free'.
1478
1479 2006-11-14  Paul Eggert  <eggert@cs.ucla.edu>
1480
1481         * modules/inttostr (License): Change to LGPL.
1482
1483 2006-11-14  Eric Blake  <ebb9@byu.net>
1484
1485         * modules/tempname (License): Change to LGPL.
1486
1487 2006-11-14  Eric Blake  <ebb9@byu.net>
1488
1489         * doc/functions.texi (Function Portability): *printf functions on
1490         Cygwin now understand all POSIX size specifiers.
1491
1492 2006-11-14  Bruno Haible  <bruno@clisp.org>
1493
1494         * modules/c-ctype (License): Change to LGPL.
1495
1496 2006-11-12  Bruno Haible  <bruno@clisp.org>
1497
1498         * m4/lib-link.m4 (AC_LIB_LINKFLAGS, AC_LIB_HAVE_LINKFLAGS,
1499         AC_LIB_LINKFLAGS_BODY): Also set a LIB${NAME}_PREFIX variable. Needed
1500         for GNOME libraries, for which the include files are installed in
1501         subdirectories of $prefix/include.
1502
1503 2006-11-12  Bruno Haible  <bruno@clisp.org>
1504
1505         * m4/lib-link.m4: Require at least autoconf-2.54.
1506         (AC_LIB_LINKFLAGS_BODY) [autoconf < 2.61]: Turn dots into the library
1507         name to underscores for the --with option.
1508
1509 2006-11-13  Bruno Haible  <bruno@clisp.org>
1510
1511         * gnulib-tool (func_create_testdir): Set gl_source_base correctly in
1512         the tests directory.
1513         Reported by Ralf Wildenhues.
1514
1515 2006-11-13  Bruno Haible  <bruno@clisp.org>
1516
1517         * gnulib-tool (func_emit_initmacro_start): Also override AC_LIBSOURCES.
1518         (func_emit_initmacro_end): Undo the override here.
1519         (func_emit_initmacro_done): Emit a definition for gl_LIBSOURCES.
1520         Works around the famous automake error in coreutils.
1521
1522 2006-11-13  Eric Blake  <ebb9@byu.net>
1523
1524         * lib/gl_anytree_oset.h (gl_tree_search_atleast): Return the
1525         element, not its node.
1526
1527 2006-11-12  Bruno Haible  <bruno@clisp.org>
1528
1529         * gnulib-tool (func_emit_lib_Makefile_am): Replace occurrences of
1530         '$(top_srcdir)/build-aux/', taking into account the real auxdir.
1531
1532 2006-11-12  Bruno Haible  <bruno@clisp.org>
1533
1534         * gnulib-tool: New option --local-symlink.
1535         (func_usage): Document it.
1536         (lsymbolic): New variable.
1537         (func_import, func_create_testdir): If --symlink was not specified,
1538         test whether --local-symlink was specified and the file comes from
1539         the local_gnulib_dir.
1540
1541 2006-11-12  Bruno Haible  <bruno@clisp.org>
1542
1543         * gnulib-tool (func_ln): New function.
1544         (func_ln_if_changed, func_create_testdir): Use it instead of "ln -s".
1545
1546 2006-11-12  Bruno Haible  <bruno@clisp.org>
1547
1548         Finish support for source files in subdirectories.
1549         * gnulib-tool (func_emit_lib_Makefile_am): If some of the source files
1550         are in subdirectories, set uses_subdirs and add 'subdir-objects' to
1551         AUTOMAKE_OPTIONS.
1552         (func_import, func_create_testdir): Invoke AM_PROG_CC_C_O in this case.
1553
1554 2006-11-12  Bruno Haible  <bruno@clisp.org>
1555
1556         * gnulib-tool (func_get_automake_snippet): Synthesize also an
1557         EXTRA_lib_SOURCES augmentation.
1558         (func_emit_lib_Makefile_am): Initialize EXTRA_lib..._SOURCES to empty.
1559
1560 2006-11-12  Jim Meyering  <jim@meyering.net>
1561
1562         Make fts (in FTS_CWDFD mode) more efficient by caching a few open
1563         file descriptors.  This also averts a failure on systems with
1564         native openat support when a traversed directory lacks "x" access.
1565         * lib/fts_.h: Include "i-ring.h"
1566         (struct FTS) [fts_fd_ring]: New member.
1567         * lib/fts.c (RESTORE_INITIAL_CWD): Also call fd_ring_clear.
1568         (FCHDIR): Add parentheses.
1569         (fd_ring_check, fd_ring_print) [!FTS_DEBUG]: Define away.
1570         (cwd_advance_fd): Add a 3rd parameter.  Adjust all callers.
1571         When descending, rather than simply closing the previous
1572         fts_cwd_fd value, push that file descriptor onto the ring.
1573         (same_fd, fd_ring_print, fd_ring_check) [FTS_DEBUG]: New functions.
1574         (fts_open): Initialize the new fd_ring member.
1575         (fts_close): Clear the ring.
1576         (fts_safe_changedir): When possible, use our new fd_ring to skip
1577         the diropen and fstat and dev/ino comparison that would normally
1578         accompany a virtual `chdir ("..")'.
1579
1580         * modules/fts (Depends-on): Add i-ring.
1581         * modules/i-ring: New module.
1582         * lib/i-ring.c, lib/i-ring.h, lib/i-ring-test.c: New files.
1583         * m4/i-ring.m4: New file.
1584
1585 2006-11-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1586
1587         * gnulib-tool (func_create_testdir): Fix replacement of
1588         `build-aux' in configure.ac.  Run autotools in gltests
1589         subdirectory.
1590         (func_create_testdir, func_create_megatestdir, test): There is
1591         no need for '--force' in most autotool invocations in a new
1592         tree.  Actually fail the whole test if any of the tools, or the
1593         configure or make stages fail.
1594
1595         Sync from Automake.
1596         * build-aux/gnupload: Revert last change.  Add pointer to upload
1597         instructions of the GNU Maintenance Instructions.
1598         Suggestion by Karl Berry.
1599
1600 2006-11-10  Jim Meyering  <jim@meyering.net>
1601
1602         * lib/fts.c [FTS_DEBUG]: Don't try to print a pointer via %s.
1603
1604 2006-11-09  Paul Eggert  <eggert@cs.ucla.edu>
1605
1606         * lib/gettext.h (dgettext, dcgettext, ngettext) [! ENABLE_NLS]:
1607         (dngettext, dcngettext, bindtextdomain) [! ENABLE_NLS]:
1608         (bind_textdomain_codeset) [! ENABLE_NLS]:
1609         Evaluate all the arguments.  That way, callers get compatible behavior
1610         if the arguments have side effects.  Also, it avoids some GCC
1611         diagnostics in some cases; Joel E. Denny reported problems when Bison
1612         was configured with --enable-gcc-warnigs.
1613
1614 2006-11-10  Jim Meyering  <jim@meyering.net>
1615
1616         * m4/inline.m4 (gl_INLINE): Check with the compiler, not cpp, so that
1617         relevant options in CFLAGS (like -O, -fno-inline) are taken into
1618         account.
1619
1620 2006-11-10  Jim Meyering  <jim@meyering.net>
1621
1622         * modules/inline: New file/module.
1623         * modules/xalloc (Files): Remove m4/inline.m4.
1624         (Depends-on): Add inline, instead.
1625         * modules/oset: Likewise.
1626         * modules/list: Likewise.
1627
1628 2006-11-09  Paul Eggert  <eggert@cs.ucla.edu>
1629
1630         * lib/stdint_.h (uintmax_t): Fix typo: int64_t -> uint64_t.
1631         Problem reported by Matthew Woehlke.
1632
1633 2006-11-09  Bruno Haible  <bruno@clisp.org>
1634
1635         * lib/tempname.c (gen_tempname): Remove variant that invokes
1636         __gen_tempname.
1637         * m4/tempname.m4 (gl_FUNC_GEN_TEMPNAME): Don't test for
1638         __gen_tempname.
1639
1640 2006-11-08  Bruno Haible  <bruno@clisp.org>
1641
1642         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Set ac_cv_type_long_long_int
1643         to 'yes' instead of 'cross-compiling'.
1644
1645 2006-11-08  Paul Eggert  <eggert@cs.ucla.edu>
1646
1647         * lib/quotearg.h (quotearg_free): New decl.
1648         * lib/quotearg.c (quotearg_free): New function.
1649         (slot0, nslots, slotvec0, slotvec):
1650         Now file-scope so that quotearg_free can get at them.
1651
1652 2006-11-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1653
1654         Sync from Automake.
1655         * build-aux/gnupload: Add missing 'gnu' to example URL.
1656         Report by Karl Berry.
1657
1658 2006-11-08  Bruno Haible  <bruno@clisp.org>
1659
1660         * m4/inline.m4 (gl_INLINE): Also test __NO_INLINE__.
1661         Suggested by Paul Eggert.
1662
1663 2006-11-08  Jim Meyering  <jim@meyering.net>
1664
1665         * lib/fts.c [!_LGPL_PACKAGE]: Don't include fcntl--.h twice.
1666         It's already included if !_LIBC.
1667         (fts_safe_changedir): Add a comment.
1668
1669 2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
1670
1671         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Detect bug in
1672         Tandem NonStop Kernel (OSS) cc -O circa 2004, reported by
1673         Matthew Woehlke.
1674
1675         * lib/xalloc.h (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): Move
1676         definitions up, to avoid colliding with change below.
1677         (static_inline) [HAVE_INLINE]: New macro.
1678         (xnmalloc, xnrealloc, x2nrealloc, xcharalloc):
1679         Provide extern decls when !HAVE_INLINE.  Do not define unless
1680         static_inline is defined, either by us or by xmalloc.c.  Use
1681         static_inline rather than static inline.
1682         (XCALLOC): Optimize sizeof(T) = 1 case.
1683         * lib/xmalloc.c (static_inline) [!HAVE_INLINE]: New macro.
1684
1685 2006-11-07  Bruno Haible  <bruno@clisp.org>
1686
1687         * lib/xalloc.h (XNMALLOC): Restore optimization of sizeof(T) = 1 case.
1688         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Require gl_INLINE instead of
1689         AC_C_INLINE.
1690         * modules/xalloc (Files): Add m4/inline.m4.
1691
1692 2006-11-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1693
1694         * README: Fix typo.
1695         * doc/gnulib.texi (Miscellaneous Notes): Likewise, rename...
1696         (Miscellanous Notes): ...from this.
1697
1698 2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
1699
1700         * m4/flexmember.m4 (AC_C_FLEXIBLE_ARRAY_MEMBER):
1701         Mention that offsetof should be used instead of sizeof.
1702         From Bruno Haible.
1703
1704 2006-11-07  Bruno Haible  <bruno@clisp.org>
1705
1706         * lib/w32spawn.h (prepare_spawn): Use XNMALLOC instead of xmalloc.
1707
1708 2006-11-06  Paul Eggert  <eggert@cs.ucla.edu>
1709
1710         Simplify xmalloc expressions. Add overflow check in xmalloc arguments.
1711         * lib/gl_anyavltree_list2.h (create_subtree_with_contents):
1712         (gl_tree_create, gl_tree_add_first, gl_tree_add_last):
1713         (gl_tree_add_before, gl_tree_add_after):
1714         Use XMALLOC instead of xmalloc, and XCALLOC instead of xzalloc.
1715         * lib/gl_anyhash_list2.h (hash_resize): Likewise.
1716         * lib/gl_anylinked_list2.h (gl_linked_create_empty, gl_linked_create):
1717         (gl_linked_add_first, gl_linked_add_last, gl_linked_add_before):
1718         (gl_linked_add_after, gl_linked_add_at): Likewise.
1719         * lib/gl_anyrbtree_list2.h (create_subtree_with_contents):
1720         (gl_tree_create, gl_tree_add_first, gl_tree_add_last):
1721         (gl_tree_add_before, gl_tree_add_after): Likewise.
1722         * lib/gl_anytree_list2.h (gl_tree_create_empty): Likewise.
1723         * lib/gl_anytree_oset.h (gl_tree_create_empty): Likewise.
1724         * lib/gl_anytreehash_list1.h (add_to_bucket): Likewise.
1725
1726 2006-11-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1727
1728         * lib/gl_oset.h: Use C comment style, not C++ comment style.
1729
1730 2006-11-06  Bruno Haible  <bruno@clisp.org>
1731
1732         * m4/inline.m4: New file.
1733         * m4/gl_list.m4 (gl_LIST): Require gl_INLINE.
1734         * modules/list (Files): Add m4/inline.m4.
1735         * modules/oset (Files): Likewise.
1736
1737 2006-11-06  Paul Eggert  <eggert@cs.ucla.edu>
1738
1739         * lib/idcache.c: Include <stddef.h>, for offsetof.
1740         (struct userid.name): Change from char * to a flexible array member.
1741         All uses changed.
1742         * modules/idcache (Depends-on): Add flexmember.
1743
1744         * MODULES.html.sh (Core language properties): New module flexmember.
1745         * modules/flexmember, m4/flexmember.m4: New files.
1746
1747         * lib/xalloc.h (xnmalloc, xnrealloc, x2nrealloc): Now static
1748         inline functions that are identical with the old xnmalloc_inline,
1749         xnrealloc_inline, x2nrealloc_inline of lib/xmalloc.c.  This is so
1750         that we can avoid some unnecessary integer multiplications and
1751         divisions in the common case where the element size is known at
1752         compile time.
1753         (XNMALLOC) [HAVE_INLINE]: Remove special case, which is no longer
1754         needed.
1755         (xnboundedmalloc): Remove.
1756         (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): Use lower-case letters for
1757         arguments, for consistency with rest of this header.
1758         (xcharalloc): Rewrite using XNMALLOC.
1759         * lib/xmalloc.c (xnmalloc_inline, xnmalloc, xnrealloc_inline):
1760         (xnrealloc, x2nrealloc_inline, x2nrealloc): Remove.  The *_inline
1761         versions have been moved to lib/xalloc.h and renamed to be the
1762         non-*_inline versions.
1763         (xmalloc, xrealloc): Implement without reference to the xnmalloc
1764         and xnrealloc functions, since those functions are now inline and
1765         now call us.
1766         (x2realloc): Invoke x2realloc, not x2realloc_inline, to accommodate
1767         renaming described above.
1768         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Remove AC_C_INLINE since
1769         xmalloc.c no longer uses inline directly.  gl_PREREQ_XALLOC now
1770         captures the dependency in AC_C_INLINE.
1771
1772         New module canonicalize-lgpl, proposed by Charles Wilson in
1773         <http://lists.gnu.org/archive/html/bug-gnulib/2006-11/msg00020.html>
1774         with a few small changes afterwards.
1775         * MODULES.html.sh (File system functions): New module
1776         canonicalize-lgpl.
1777         * lib/canonicalize.h: Add comments for canonicalize_filename_mode
1778         and canonicalize_file_name.
1779         * lib/canonicalize-lgpl.c, m4/canonicalize-lgpl.m4:
1780         * modules/canonicalize-lgpl: New files.
1781
1782 2006-11-05  Bruno Haible  <bruno@clisp.org>
1783
1784         * gnulib-tool (func_import, func_create_testdir): Create directories
1785         also for files in subdirectories of lib/.
1786
1787 2006-11-05  Bruno Haible  <bruno@clisp.org>
1788
1789         * lib/gl_array_list.c (gl_array_iterator_next): Make pointer decrement
1790         ANSI C compliant.
1791
1792 2006-11-03  Bruno Haible  <bruno@clisp.org>
1793
1794         Simplify xmalloc expressions. Add overflow check in xmalloc arguments.
1795         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Require AC_C_INLINE.
1796         * lib/xalloc.h (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): New macros.
1797         (xnboundedmalloc): New inline function.
1798         * lib/classpath.c (new_classpath): Use XNMALLOC instead of xmalloc.
1799         * lib/clean-temp.c (create_temp_dir): Use XNMALLOC, XMALLOC instead of
1800         xmalloc.
1801         * lib/concatpath.c (concatenated_pathname): Use XNMALLOC instead of
1802         xmalloc.
1803         * lib/fatal-signal.c (at_fatal_signal): Use XNMALLOC instead of xmalloc.
1804         * lib/findprog.c (find_in_path): Use XNMALLOC instead of xmalloc.
1805         * lib/gl_array_list.c (gl_array_create_empty): Use XMALLOC instead of
1806         xmalloc.
1807         (gl_array_create): Use XNMALLOC, XMALLOC instead of xmalloc.
1808         * lib/gl_array_oset.c (gl_array_create_empty): Use XNMALLOC instead of
1809         xmalloc.
1810         * lib/gl_avltree_oset.c (gl_tree_add_first, gl_tree_add_before,
1811         gl_tree_add_after): Use XMALLOC instead of xmalloc.
1812         * lib/gl_carray_list.c (gl_carray_create_empty): Use XMALLOC instead of
1813         xmalloc.
1814         (gl_carray_create): Use XNMALLOC, XMALLOC instead of xmalloc.
1815         * lib/gl_rbtree_oset.c (gl_tree_add_first, gl_tree_add_before,
1816         gl_tree_add_after): Use XMALLOC instead of xmalloc.
1817         * lib/gl_sublist.c (gl_sublist_create): Use XMALLOC instead of xmalloc.
1818         * lib/pagealign_alloc.c (new_memnode): Use XMALLOC instead of xmalloc.
1819         * lib/sh-quote.c (shell_quote_argv): Use XNMALLOC instead of xmalloc.
1820         * lib/xvasprintf.c (xstrcat): Use XNMALLOC instead of xmalloc.
1821
1822 2006-11-03  Bruno Haible  <bruno@clisp.org>
1823
1824         * lib/c-ctype.h [C++]: Define functions without name mangling.
1825         * lib/fwriteerror.h [C++]: Likewise.
1826         * lib/gcd.h [C++]: Likewise.
1827         * lib/linebreak.h [C++]: Likewise.
1828
1829 2006-11-03  Paul Eggert  <eggert@cs.ucla.edu>
1830
1831         * lib/canonicalize.h: (canonicalize_mode_t, CAN_EXISTING):
1832         (CAN_ALL_BUT_LAST, CAN_MISSING, canonicalize_filename_mode):
1833         Define only if PROVIDE_CANONICALIZE_FILENAME_MODE is defined.
1834         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME):
1835         Check for functions and headers just once.
1836         Check for declaration of canonicalize_file_name.
1837         Define PROVIDE_CANONICALIZE_FILENAME_MODE.
1838
1839 2006-11-02  Charles Wilson  <cygwin@cwilson.fastmail.fm>
1840
1841         * gnulib-tool (func_import): Fix typo in actioncmd.
1842
1843 2006-11-02  Bruno Haible  <bruno@clisp.org>
1844
1845         * gnulib-tool (func_get_automake_snippet): Interpret a backslash-
1846         newline sequence in the Makefile.am snippet as a space, like "make"
1847         does.
1848         Reported by Roger Persson <perrog@gmail.com>.
1849
1850 2006-11-01  Bruno Haible  <bruno@clisp.org>
1851
1852         * m4/strcase.m4 (gl_FUNC_STRNCASECMP): Check whether strncasecmp is
1853         already declared in <string.h>.
1854         * lib/strcase.h (strncasecmp): Don't declare it if yes.
1855
1856 2006-11-01  Bruno Haible  <bruno@clisp.org>
1857
1858         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Don't define strcasecmp here.
1859         * lib/strcase.h: Include <string.h>.
1860         (strcasecmp): Define to rpl_strcasecmp here.
1861
1862 2006-11-01  Bruno Haible  <bruno@clisp.org>
1863
1864         * lib/printf-parse.c (PRINTF_PARSE): Cast malloc/realloc results.
1865
1866 2006-11-01  Eric Blake  <ebb9@byu.net>
1867
1868         * lib/mkstemp-safer.c (mkstemp_safer): Allow C++ compilation.
1869
1870         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Allow C++ configuration.
1871
1872 2006-10-29  Bruno Haible  <bruno@clisp.org>
1873
1874         Make it compile in C++ mode.
1875         * lib/full-write.c (full_rw): Add a cast.
1876
1877 2006-11-01  Bruno Haible  <bruno@clisp.org>
1878
1879         * gnulib-tool (func_get_automake_snippet): Change sed_combine_lines to
1880         be POSIX compliant.
1881         Reported by Roger Persson <perrog@gmail.com>.
1882
1883 2006-11-01  Eric Blake  <ebb9@byu.net>
1884
1885         * lib/getopt_.h: Fix comments.
1886
1887 2006-10-31  Eric Blake  <ebb9@byu.net>
1888
1889         * modules/tmpdir (Depends-on): Add sys_stat.
1890         * modules/mkdtemp (Depends-on): Add tempname, drop unistd.
1891         * lib/mkdtemp.c (gen_tempname): Remove; tempname covers this.
1892         * lib/tmpdir.c (S_ISDIR): Simplify, thanks to sys_stat.
1893         * m4/mkdtemp.m4 (gl_PREREQ_MKDTEMP): Simplify, thanks to
1894         tempname.
1895
1896 2006-10-31  Paul Eggert  <eggert@cs.ucla.edu>
1897
1898         Avoid some C++ diagnostics reported by Bruno Haible.
1899         * lib/quotearg.c (clone_quoting_options): Use xmemdup rather than
1900         xmalloc.
1901         (quotearg_alloc): Use xcharalloc rather than xmalloc.
1902         (struct slotvec): Move to top level.
1903         (quotearg_n_options): Rewrite to avoid xmalloc.
1904         * lib/xalloc.h (xcharalloc): New function.
1905         * (xrealloc, xnrealloc, x2realloc, x2nrealloc, xmemdup):
1906         [defined __cplusplus]: Add function template that provides result
1907         type propagation.  This part of the change is from Bruno Haible.
1908
1909 2006-10-29  Bruno Haible  <bruno@clisp.org>
1910
1911         Make it compile in C++ mode.
1912         * lib/striconv.c (mem_cd_iconv): Cast malloc/realloc result.
1913         * lib/strnlen1.c (strnlen1): Cast memchr result.
1914         * lib/mbchar.h (mb_copy): Rename arguments to 'new_mbc', 'old_mbc'.
1915         * lib/clean-temp.c (string_equals, string_hash): Add casts.
1916         (create_temp_dir): Rename local variable 'template'.
1917         (compile_csharp_using_sscli): Add cast.
1918         * lib/fatal-signal.c (at_fatal_signal): Cast xmalloc result.
1919         * lib/findprog.c (find_in_path): Likewise.
1920         * lib/linebreak.c (mbs_width_linebreaks): Cast malloc result.
1921         * lib/wait-process.c (register_slave_subprocess): Likewise.
1922
1923 2006-10-22  Bruno Haible  <bruno@clisp.org>
1924
1925         * modules/tsearch: New file.
1926         * lib/tsearch.h: New file.
1927         * lib/tsearch.c: New file, from glibc-2.5 with small modifications.
1928         * m4/tsearch.m4: New file.
1929         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add tsearch.
1930
1931 2006-10-29  Eric Blake  <ebb9@byu.net>
1932
1933         * lib/arcfour.c: Assume config.h.
1934         * lib/arctwo.c: Likewise.
1935         * lib/base64.c: Likewise.
1936         * lib/check-version.c: Likewise.
1937         * lib/crc.c: Likewise.
1938         * lib/des.c: Likewise.
1939         * lib/gc-gnulib.c: Likewise.
1940         * lib/gc-libgcrypt.c: Likewise.
1941         * lib/gc-pbkdf2-sha1.c: Likewise.
1942         * lib/getaddrinfo.c: Likewise.
1943         * lib/getdelim.c: Likewise.
1944         * lib/getline.c: Likewise.
1945         * lib/hmac-md5.c: Likewise.
1946         * lib/hmac-sha1.c: Likewise.
1947         * lib/iconvme.c: Likewise.
1948         * lib/md2.c: Likewise.
1949         * lib/md4.c: Likewise.
1950         * lib/memxor.c: Likewise.
1951         * lib/read-file.c: Likewise.
1952         * lib/readline.c: Likewise.
1953         * lib/rijndael-alg-fst.c: Likewise.
1954         * lib/rijndael-api-fst.c: Likewise.
1955         * lib/xgetdomainname.c: Likewise.
1956
1957 2006-10-28  Eric Blake  <ebb9@byu.net>
1958
1959         * lib/xstrndup.c: Assume config.h.
1960
1961 2006-10-27  Paul Eggert  <eggert@cs.ucla.edu>
1962
1963         Move stat.h-substitute stuff from lib/stat-macros.h to lib/stat_.h.
1964         stat-macros.h is now for our own macros, whereas stat_h is for
1965         macros in the <sys/stat.h> name space.
1966         * lib/stat-macros.h: Remove copyright notice, as this file is now tiny.
1967         (STAT_MACROS_H): Remove.
1968         (S_IFMT, S_ISBLK, S_ISCHR, S_ISDIR, S_ISFIFO, S_ISLNK, S_ISNAM):
1969         (S_ISMPB, S_ISMPC, S_ISNWK, S_ISREG, S_ISSOCK, S_ISDOOR, S_ISPORT):
1970         (S_TYPEISMQ, S_TYPEISTMO, S_TYPEISSEM, S_TYPEISSHM, S_ISCTG, S_ISOFD):
1971         (S_ISOFL, S_ISWHT, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IRGRP):
1972         (S_IROTH, S_IWUSR, S_IWGRP, S_IWOTH, S_IXUSR, S_IXGRP, S_IXOTH):
1973         (S_IRWXU, S_IRWXG, S_IRWXO, S_IXUGO, S_IRWXUGO):
1974         Move these macros to ...
1975         * lib/stat_.h: here.  Don't include stat-macros.h.
1976         * lib/canonicalize.c: Don't include stat-macros.h.
1977         * lib/chown.c: Likewise.
1978         * lib/euidaccess.c: Likewise.
1979         * lib/file-type.c: Likewise.
1980         * lib/filemode.c: Likewise.
1981         * lib/glob.c: Likewise.
1982         * lib/isapipe.c: Likewise.
1983         * lib/lchown.c: Likewise.
1984         * lib/lstat.c: Likewise.
1985         * lib/mkdir-p.c: Likewise.
1986         * lib/rmdir.c: Likewise.
1987         * m4/lchown.m4 (gl_FUNC_LCHOWN): Don't require gl_STAT_MACROS.
1988         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Don't check for io.h
1989         unless mkdir isn't declared, to speed up 'configure'.
1990         Always create sys/stat.h, since it's unlikely any real sys/stat.h
1991         would define all the S_* symbols.
1992         * modules/canonicalize (Depends-on):
1993         Depend on sys_stat, not stat-macros.
1994         * modules/chown: Likewise.
1995         * modules/euidaccess: Likewise.
1996         * modules/filemode: Likewise.
1997         * modules/file-type: Likewise.
1998         * modules/glob: Likewise.
1999         * modules/isapipe: Likewise.
2000         * modules/lchown: Likewise.
2001         * modules/lstat: Likewise.
2002         * modules/mkancesdirs: Likewise.
2003         * modules/rmdir: Likewise.
2004         * modules/mkdir-p (Depends-on): Also depend on sys_stat.
2005         * modules/modechange: Likewise.
2006         * modules/stat-macros (Files): Remove m4/stat-macros.m4.
2007         (configure.ac): Remove gl_STAT_MACROS.
2008         * modules/sys_stat (Depends-on): Remove stat-macros.
2009
2010 2006-10-27  Bruno Haible  <bruno@clisp.org>
2011
2012         * m4/signed.m4: Remove file.
2013         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_ARGS_: Remove bh_C_SIGNED
2014         invocation.
2015         * modules/vasnprintf (Files): Remove m4/signed.m4.
2016
2017 2006-10-27  Bruno Haible  <bruno@clisp.org>
2018
2019         Update to GNU gettext 0.16.
2020         * modules/gettext (Files): Add m4/intl.m4, m4/intldir.m4. Remove
2021         m4/inttypes-h.m4, m4/signed.m4.
2022         * m4/gettext.m4: Update to GNU gettext 0.16.
2023         * m4/intl.m4: New file, from GNU gettext.
2024         * m4/intldir.m4: New file, from GNU gettext.
2025         * config/srclist.txt: Update
2026
2027 2006-10-27  Eric Blake  <ebb9@byu.net>
2028
2029         * MODULES.html.sh: Document tempname.
2030         * modules/mkstemp (Depends-on): Add tempname, and drop transitive
2031         dependencies.
2032         (Files): Move lib/tempname.c...
2033         * modules/tempname: ...to this new module.
2034         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Remove tempname checks.
2035         (gl_PREREQ_TEMPNAME): Move...
2036         * m4/tempname.m4: ...to this new file.
2037         * lib/mkstemp.c (includes) [!_LIBC]: Use tempname.h.
2038         * modules/sys_stat (Depends-on): Add stat-macros.
2039         * lib/stat_.h (includes): Pick up stat macros.
2040         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Replace <sys/stat.h>
2041         if stat macros are broken.
2042         * lib/tempname.c (includes): No need to include "stat-macros.h".
2043         (__gen_tempname) [!_LIBC]: Expose as gen_tempname.
2044         (direxists, __path_search) [!_LIBC]: Don't compile these in
2045         gnulib; the tmpdir module covers that.
2046         * lib/tempname.h: New file.
2047
2048 2006-10-26  Paul Eggert  <eggert@cs.ucla.edu>
2049
2050         * COPYING: Explain how gnulib-tool converts licence headers.
2051         Almost all wording by Eric Blake.
2052
2053 2006-10-25  Paul Eggert  <eggert@cs.ucla.edu>
2054
2055         * lib/mbchar.h (is_basic_table): Make read-only.
2056         * lib/mbchar.c (is_basic_table): Likewise.
2057         Reported by John Darrington.
2058
2059 2006-10-25  Bruno Haible  <bruno@clisp.org>
2060
2061         * lib/progname.h (set_program_name): Undefine before defining.
2062
2063 2006-10-25  Bruno Haible  <bruno@clisp.org>
2064
2065         * lib/gettext.h (_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS): Define to
2066         false for non-gcc C++ compilers.
2067         Reported by Nelson H. F. Beebe <beebe@math.utah.edu>.
2068
2069 2006-10-24  Bruno Haible  <bruno@clisp.org>
2070
2071         * lib/striconv.c (mem_cd_iconv, str_cd_iconv): Treat all non-GNU
2072         iconv implementations like Irix iconv.
2073
2074 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
2075
2076         * modules/vararrays: New file.
2077         * m4/vararrays.m4: New file, taken from diffutils.
2078         * MODULES.html.sh: New module vararrays.
2079
2080 2006-10-24  Karl Berry  <karl@gnu.org>
2081
2082         * doc/gnulib-intro.texi: --- instead of --; non-naive naive.
2083         Don't call GNU Unix.
2084
2085 2006-10-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2086
2087         * users.txt: Add Libtool.
2088
2089         Sync from Libtool:
2090
2091         2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
2092
2093         * lib/argz.c: Remove check for HAVE_CONFIG_H, to conform
2094         to gnulib's policy of including config.h unconditionally.
2095
2096 2006-10-24  Bruno Haible  <bruno@clisp.org>
2097
2098         * modules/wcwidth (Files): Add m4/wint_t.m4.
2099         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Require gt_TYPE_WINT_T.
2100         * lib/wcwidth.h (iswprint): Use 'int' if 'wint_t' is not defined.
2101
2102 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
2103
2104         * lib/getdate.y (yyerror): Make the arguments pointer-to-const,
2105         to pacify GCC with some -W flags enabled.  Problem reported by
2106         Bruno Haible.
2107
2108 2006-10-24  Jim Meyering  <jim@meyering.net>
2109
2110         * MODULES.html.sh: Remove uinttostr.  It's not a module.
2111         Reported by Karl Berry.
2112
2113 2006-10-23  Bruno Haible  <bruno@clisp.org>
2114
2115         * lib/fts.c (fts_build): Move variable declaration, for C89 compliance.
2116
2117 2006-10-24  Bruno Haible  <bruno@clisp.org>
2118
2119         * lib/gl_list.h: Use C comment style, not C++ comment style.
2120
2121 2006-10-23  Eric Blake  <ebb9@byu.net>
2122
2123         * lib/getaddrinfo.c (includes): Add missing include.
2124
2125 2006-10-23  Bruno Haible  <bruno@clisp.org>
2126             Paul Eggert  <eggert@cs.ucla.edu>
2127
2128         Ability to rename obstack_free.
2129         * lib/obstack.h (__obstack_free): New macro. Declare instead of
2130         obstack_free.
2131         (obstack_free): Invoke the __obstack_free macro.
2132         * lib/obstack.c (obstack_free): Use __obstack_free macro.
2133
2134 2006-10-23  Bruno Haible  <bruno@clisp.org>
2135             Paul Eggert  <eggert@cs.ucla.edu>
2136
2137         * lib/argp.h (argp_parse, __argp_parse): Comment out the identifiers
2138         __argc, __argv from the declaration. (They are defined as macros on
2139         mingw.)
2140
2141 2006-10-22  Bruno Haible  <bruno@clisp.org>
2142
2143         * doc/gnulib-intro.texi: New file.
2144         * doc/gnulib.texi: Include it.
2145
2146 2006-10-21  Bruno Haible  <bruno@clisp.org>
2147
2148         * doc/gnulib.texi: Split the chapter "Gnulib" into 3 chapters
2149         "Introduction", "Miscellanous Notes", "Particular Modules".
2150
2151 2006-10-21  Bruno Haible  <bruno@clisp.org>
2152
2153         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
2154         Change mostlyclean-local rule to avoid sh syntax error from bash
2155         versions 2.00..2.05 when $(MOSTLYCLEANDIRS) is empty.
2156
2157 2006-10-23  Jim Meyering  <jim@meyering.net>
2158
2159         * lib/getaddrinfo.c (getnameinfo): Use new lightweight uinttostr,
2160         in place of snprintf.
2161
2162         * modules/inttostr (Files): Add lib/uinttostr.c.
2163         * lib/uinttostr.c (inttostr): New file/function.
2164         * lib/inttostr.h (uinttostr): Declare.
2165         * m4/inttostr.m4: Add AC_LIBOBJ([uinttostr]).
2166         * MODULES.html.sh (Numeric conversion functions <stdlib.h>):
2167         Add uinttostr.
2168         * modules/getaddrinfo (Depends-on): Remove snprintf.  Add inttostr.
2169
2170 2006-10-21  Paul Eggert  <eggert@cs.ucla.edu>
2171
2172         * lib/canonicalize.c (ELOOP): Define if not already defined.
2173         Problem reported by Bruno Haible in
2174         <http://lists.gnu.org/archive/html/bug-gnulib/2006-10/msg00282.html>.
2175
2176 2006-10-21  Paul Eggert  <eggert@cs.ucla.edu>
2177
2178         * lib/stdint_.h [defined _AIX]: Don't include <sys/types.h>.
2179         Problem reported by Perry Smith and Ville Laurikari.
2180
2181         * lib/getndelim2.c (SSIZE_MAX): Use same defn that getdelim.c
2182         uses.
2183
2184 2006-10-19  Bruno Haible  <bruno@clisp.org>
2185
2186         * lib/getndelim2.c (SSIZE_MAX): Provide fallback definition. Needed
2187         for mingw.
2188
2189 2006-10-19  Bruno Haible  <bruno@clisp.org>
2190
2191         * lib/openat-priv.h (EOPNOTSUPP): Provide fallback definition.
2192         Needed for mingw.
2193
2194 2006-10-19  Bruno Haible  <bruno@clisp.org>
2195
2196         * m4/size_max.m4 (gl_SIZE_MAX): Cache the result.
2197
2198 2006-10-19  Bruno Haible  <bruno@clisp.org>
2199
2200         * m4/allocsa.m4 (gl_ALLOCSA): Invoke gl_FUNC_ALLOCA, don't AC_REQUIRE
2201         it.
2202
2203 2006-10-19  Bruno Haible  <bruno@clisp.org>
2204
2205         * m4/alloca.m4 (gl_FUNC_ALLOCA): Cache the result of the AC_EGREP_CPP
2206         invocation.
2207
2208 2006-10-19  Bruno Haible  <bruno@clisp.org>
2209
2210         * gnulib-tool (func_create_testdir): Don't include ftruncate and
2211         mountlist by default.
2212
2213 2006-10-16  Bruno Haible  <bruno@clisp.org>
2214
2215         * lib/c-strstr.c: Include c-strstr.h.
2216
2217 2006-10-18  Charles Wilson  <cygwin@cwilson.fastmail.fm>
2218
2219         * gnulib-tool: Don't clobber $sourcebase when $local_gnulib_dir ends
2220         in a slash.
2221
2222 2006-10-18  Bruno Haible  <bruno@clisp.org>
2223
2224         * lib/lock.h [C++]: Wrap definitions in extern "C".
2225
2226 2006-10-18  Bruno Haible  <bruno@clisp.org>
2227
2228         * gnulib-tool (func_emit_initmacro_end): Remove duplicates from the
2229         gl_LIBOBJS list.
2230
2231 2006-10-18  Bruno Haible  <bruno@clisp.org>
2232
2233         * lib/findprog.c (find_in_path): Avoid "gcc -Wwrite-strings" warning.
2234
2235 2006-10-19  Paul Eggert  <eggert@cs.ucla.edu>
2236
2237         * lib/xstrtol.h: Include gettext.h.
2238         (_STRTOL_ERROR): Wrap English-language formats inside gettext.
2239         Problem reported by Eric Blake.
2240         * modules/xstrtol (Depends-on): Add gettext-h.
2241
2242 2006-10-19  Paul Eggert  <eggert@cs.ucla.edu>  (tiny change)
2243
2244         * lib/strftime.c (advance): New macro.
2245         (add): Use it to avoid adding 0 to a FILE *.  FILE can be an
2246         incomplete type, so you can't add 0 to it.  Problem and patch
2247         reported by Eelco Dolstra for dietlibc.
2248
2249 2006-10-18  Jim Meyering  <jim@meyering.net>
2250
2251         * lib/readutmp.c (desirable_utmp_entry): Use "bool" as the
2252         type for a local, and rename it: s/up/user_proc/.
2253
2254 2006-10-18  Sergey Poznyakoff  <gray@gnu.org.ua>
2255
2256         * lib/readutmp.c (desirable_utmp_entry): Implement new flag:
2257         READ_UTMP_USER_PROCESS.
2258         * lib/readutmp.h (READ_UTMP_USER_PROCESS): New flag
2259
2260 2006-10-17  Paul Eggert  <eggert@cs.ucla.edu>
2261
2262         * lib/localcharset.c: Do not check HAVE_SETLOCALE.
2263         * m4/localcharset.m4 (gl_LOCALCHARSET): Don't check for setlocale.
2264
2265 2006-10-17  Eric Blake  <ebb9@byu.net>
2266
2267         * lib/sigprocmask.c (sigprocmask): Fix typo.
2268
2269         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Fix typo.
2270
2271         * modules/clean-temp (Makefile.am): Don't add to make output...
2272         (configure.ac): ...instead define SIGNAL_SAFE_LIST inside
2273         config.h.
2274
2275 2006-10-17  Bruno Haible  <bruno@clisp.org>
2276
2277         * lib/gettext.h (gettext, ngettext, pgettext, npgettext): Define
2278         differently if DEFAULT_TEXT_DOMAIN is set.
2279
2280 2006-10-16  Bruno Haible  <bruno@clisp.org>
2281
2282         * lib/clean-temp.c: Include fwriteerror.h.
2283
2284 2006-10-16  Bruno Haible  <bruno@clisp.org>
2285
2286         * getndelim2.m4 (gl_GETNDELIM2): Remove 2003-10-23 hack.
2287
2288 2006-10-16  Bruno Haible  <bruno@clisp.org>
2289
2290         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Also test for sigset_t.
2291         * lib/sigprocmask.h: Include <sys/types.h>.
2292         (sigset_t): Use the system's definition if present.
2293
2294 2006-10-17  Eric Blake  <ebb9@byu.net>
2295
2296         * lib/xvasprintf.c (includes): Assume config.h.
2297         * lib/xasprintf.c (includes): Likewise.
2298
2299 2006-10-16  Paul Eggert  <eggert@cs.ucla.edu>
2300
2301         * lib/fsusage.c (PROPAGATE_ALL_ONES): Don't assume uintmax_t is
2302         at least as wide as intmax_t.
2303
2304 2006-10-16  Alexandre Duret-Lutz  <adl@gnu.org>
2305
2306         (Imported from Automake.)
2307         * build-aux/gnupload: Update to version 1.1 of directive file.
2308
2309 2006-10-16  Eric Blake  <ebb9@byu.net>
2310
2311         * modules/configmake (Makefile.am): Add pkglibexecdir support, to
2312         match Automake 1.10a.
2313
2314 2006-10-14  Bruno Haible  <bruno@clisp.org>
2315
2316         * modules/sigprocmask: New file.
2317         * lib/sigprocmask.h: New file.
2318         * lib/sigprocmask.c: New file.
2319         * m4/signalblocking.m4 (gl_SIGNALBLOCKING): Renamed from
2320         gt_SIGNALBLOCKING. When not defining HAVE_POSIX_SIGNALBLOCKING,
2321         request sigprocmask.o.
2322         (gl_PREREQ_SIGPROCMASK): New macro.
2323         * modules/fatal-signal (Files): Remove m4/signalblocking.m4.
2324         (Depends-on): Add sigprocmask.
2325         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Don't require
2326         gt_SIGNALBLOCKING. Test for 'raise' only once.
2327         * lib/fatal-signal.c: Include sigprocmask.h.
2328         (fatal_signal_set, init_fatal_signal_set, block_fatal_signals,
2329         unblock_fatal_signals): Define always.
2330         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
2331         sigprocmask.
2332
2333 2006-10-14  Paul Eggert  <eggert@cs.ucla.edu>
2334
2335         Sync from Automake.
2336         * build-aux/install-sh (posix_mkdir): Reject FreeBSD 6.1 mkdir -p -m,
2337         which incorrectly sets the mode of an existing destination
2338         directory.  In some cases the unpatched install-sh could do the
2339         equivalent of "chmod 777 /" or "chmod 0 /" on a buggy FreeBSD
2340         system.  We hope this is rare in practice, but it's clearly worth
2341         fixing.  Problem reported by Alex Unleashed in
2342         <http://lists.gnu.org/archive/html/bug-autoconf/2006-10/msg00012.html>.
2343         Also, don't bother to check for -m bugs unless we're using -m;
2344         suggested by Stepan Kasal.
2345
2346 2006-10-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2347
2348         Sync from Automake.
2349         * build-aux/depcomp (gcc3): Put dependency extraction flags before the
2350         `-c' flag, so they appear at the same position as in %FASTDEP%
2351         mode in depend2.am.  Fixes build failure for FreeBSD's c89,
2352         which ignores unknown options only after the first non-option.
2353         Bug report against M4 by Nelson H. F. Beebe.
2354
2355 2006-10-13  Jim Meyering  <jim@meyering.net>
2356
2357         Fix a bug in yesterday's change.
2358         * lib/fts.c (fts_open): When using FTS_XDEV|FTS_NOSTAT,
2359         p->fts_statp->st_dev would be used uninitialized.
2360         Ensures that we always call fts_stat on the very first entry.
2361         Miklos Szeredi reported that find -xdev stopped working.
2362
2363 2006-10-12  Bruno Haible  <bruno@clisp.org>
2364
2365         * gnulib-tool (func_get_automake_snippet): Append an automatically
2366         computed EXTRA_DIST augmentation.
2367         * modules/acl (Makefile.am): Remove EXTRA_DIST augmentation.
2368         * modules/alloca-opt (Makefile.am): Likewise.
2369         * modules/allocsa (Makefile.am): Likewise.
2370         * modules/arcfour (Makefile.am): Likewise.
2371         * modules/arctwo (Makefile.am): Likewise.
2372         * modules/argmatch (Makefile.am): Likewise.
2373         * modules/argz (Makefile.am): Likewise.
2374         * modules/atexit (Makefile.am): Likewise.
2375         * modules/backupfile (Makefile.am): Likewise.
2376         * modules/byteswap (Makefile.am): Likewise.
2377         * modules/c-strtod (Makefile.am): Likewise.
2378         * modules/c-strtold (Makefile.am): Likewise.
2379         * modules/calloc (Makefile.am): Likewise.
2380         * modules/canon-host (Makefile.am): Likewise.
2381         * modules/canonicalize (Makefile.am): Likewise.
2382         * modules/chdir-long (Makefile.am): Likewise.
2383         * modules/chdir-safer (Makefile.am): Likewise.
2384         * modules/check-version (Makefile.am): Likewise.
2385         * modules/chown (Makefile.am): Likewise.
2386         * modules/cloexec (Makefile.am): Likewise.
2387         * modules/close-stream (Makefile.am): Likewise.
2388         * modules/closeout (Makefile.am): Likewise.
2389         * modules/crc (Makefile.am): Likewise.
2390         * modules/csharpexec (Makefile.am): Likewise.
2391         * modules/cycle-check (Makefile.am): Likewise.
2392         * modules/des (Makefile.am): Likewise.
2393         * modules/dev-ino (Makefile.am): Likewise.
2394         * modules/dirfd (Makefile.am): Likewise.
2395         * modules/dirname (Makefile.am): Likewise.
2396         * modules/dup2 (Makefile.am): Likewise.
2397         * modules/eealloc (Makefile.am): Likewise.
2398         * modules/error (Makefile.am): Likewise.
2399         * modules/euidaccess (Makefile.am): Likewise.
2400         * modules/exclude (Makefile.am): Likewise.
2401         * modules/exitfail (Makefile.am): Likewise.
2402         * modules/fcntl-safer (Makefile.am): Likewise.
2403         * modules/fcntl (Makefile.am): Likewise.
2404         * modules/file-type (Makefile.am): Likewise.
2405         * modules/fileblocks (Makefile.am): Likewise.
2406         * modules/filemode (Makefile.am): Likewise.
2407         * modules/filenamecat (Makefile.am): Likewise.
2408         * modules/fnmatch (Makefile.am): Likewise.
2409         * modules/fopen-safer (Makefile.am): Likewise.
2410         * modules/fpending (Makefile.am): Likewise.
2411         * modules/fprintftime (Makefile.am): Likewise.
2412         * modules/free (Makefile.am): Likewise.
2413         * modules/fsusage (Makefile.am): Likewise.
2414         * modules/ftruncate (Makefile.am): Likewise.
2415         * modules/fts (Makefile.am): Likewise.
2416         * modules/gc-arcfour (Makefile.am): Likewise.
2417         * modules/gc-des (Makefile.am): Likewise.
2418         * modules/gc-hmac-md5 (Makefile.am): Likewise.
2419         * modules/gc-hmac-sha1 (Makefile.am): Likewise.
2420         * modules/gc-md4 (Makefile.am): Likewise.
2421         * modules/gc-pbkdf2-sha1 (Makefile.am): Likewise.
2422         * modules/gc-sha1 (Makefile.am): Likewise.
2423         * modules/gc (Makefile.am): Likewise.
2424         * modules/getaddrinfo (Makefile.am): Likewise.
2425         * modules/getcwd (Makefile.am): Likewise.
2426         * modules/getdelim (Makefile.am): Likewise.
2427         * modules/getdomainname (Makefile.am): Likewise.
2428         * modules/getgroups (Makefile.am): Likewise.
2429         * modules/gethostname (Makefile.am): Likewise.
2430         * modules/gethrxtime (Makefile.am): Likewise.
2431         * modules/getline (Makefile.am): Likewise.
2432         * modules/getloadavg (Makefile.am): Likewise.
2433         * modules/getlogin_r (Makefile.am): Likewise.
2434         * modules/getndelim2 (Makefile.am): Likewise.
2435         * modules/getopt (Makefile.am): Likewise.
2436         * modules/getpagesize (Makefile.am): Likewise.
2437         * modules/getpass-gnu (Makefile.am): Likewise.
2438         * modules/getpass (Makefile.am): Likewise.
2439         * modules/getsubopt (Makefile.am): Likewise.
2440         * modules/gettime (Makefile.am): Likewise.
2441         * modules/gettimeofday (Makefile.am): Likewise.
2442         * modules/getugroups (Makefile.am): Likewise.
2443         * modules/getusershell (Makefile.am): Likewise.
2444         * modules/glob (Makefile.am): Likewise.
2445         * modules/group-member (Makefile.am): Likewise.
2446         * modules/hard-locale (Makefile.am): Likewise.
2447         * modules/hash (Makefile.am): Likewise.
2448         * modules/hmac-md5 (Makefile.am): Likewise.
2449         * modules/hmac-sha1 (Makefile.am): Likewise.
2450         * modules/human (Makefile.am): Likewise.
2451         * modules/idcache (Makefile.am): Likewise.
2452         * modules/imaxabs (Makefile.am): Likewise.
2453         * modules/imaxdiv (Makefile.am): Likewise.
2454         * modules/inet_ntop (Makefile.am): Likewise.
2455         * modules/inet_pton (Makefile.am): Likewise.
2456         * modules/intprops (Makefile.am): Likewise.
2457         * modules/inttostr (Makefile.am): Likewise.
2458         * modules/inttypes (Makefile.am): Likewise.
2459         * modules/isapipe (Makefile.am): Likewise.
2460         * modules/javaversion (Makefile.am): Likewise.
2461         * modules/lchmod (Makefile.am): Likewise.
2462         * modules/lchown (Makefile.am): Likewise.
2463         * modules/localcharset (Makefile.am): Likewise.
2464         * modules/long-options (Makefile.am): Likewise.
2465         * modules/lstat (Makefile.am): Likewise.
2466         * modules/malloc (Makefile.am): Likewise.
2467         * modules/mathl (Makefile.am): Likewise.
2468         * modules/mbchar (Makefile.am): Likewise.
2469         * modules/md2 (Makefile.am): Likewise.
2470         * modules/md4 (Makefile.am): Likewise.
2471         * modules/md5 (Makefile.am): Likewise.
2472         * modules/memcasecmp (Makefile.am): Likewise.
2473         * modules/memchr (Makefile.am): Likewise.
2474         * modules/memcmp (Makefile.am): Likewise.
2475         * modules/memcoll (Makefile.am): Likewise.
2476         * modules/memcpy (Makefile.am): Likewise.
2477         * modules/memmem (Makefile.am): Likewise.
2478         * modules/memmove (Makefile.am): Likewise.
2479         * modules/mempcpy (Makefile.am): Likewise.
2480         * modules/memrchr (Makefile.am): Likewise.
2481         * modules/memset (Makefile.am): Likewise.
2482         * modules/memxor (Makefile.am): Likewise.
2483         * modules/mkancesdirs (Makefile.am): Likewise.
2484         * modules/mkdir-p (Makefile.am): Likewise.
2485         * modules/mkdir (Makefile.am): Likewise.
2486         * modules/mkdtemp (Makefile.am): Likewise.
2487         * modules/mkstemp (Makefile.am): Likewise.
2488         * modules/mktime (Makefile.am): Likewise.
2489         * modules/modechange (Makefile.am): Likewise.
2490         * modules/mountlist (Makefile.am): Likewise.
2491         * modules/nanosleep (Makefile.am): Likewise.
2492         * modules/obstack (Makefile.am): Likewise.
2493         * modules/openat (Makefile.am): Likewise.
2494         * modules/pagealign_alloc (Makefile.am): Likewise.
2495         * modules/pathmax (Makefile.am): Likewise.
2496         * modules/physmem (Makefile.am): Likewise.
2497         * modules/poll (Makefile.am): Likewise.
2498         * modules/posixtm (Makefile.am): Likewise.
2499         * modules/posixver (Makefile.am): Likewise.
2500         * modules/putenv (Makefile.am): Likewise.
2501         * modules/quote (Makefile.am): Likewise.
2502         * modules/quotearg (Makefile.am): Likewise.
2503         * modules/raise (Makefile.am): Likewise.
2504         * modules/read-file (Makefile.am): Likewise.
2505         * modules/readline (Makefile.am): Likewise.
2506         * modules/readlink (Makefile.am): Likewise.
2507         * modules/readtokens (Makefile.am): Likewise.
2508         * modules/readutmp (Makefile.am): Likewise.
2509         * modules/realloc (Makefile.am): Likewise.
2510         * modules/regex (Makefile.am): Likewise.
2511         * modules/rename-dest-slash (Makefile.am): Likewise.
2512         * modules/rename (Makefile.am): Likewise.
2513         * modules/rijndael (Makefile.am): Likewise.
2514         * modules/rmdir (Makefile.am): Likewise.
2515         * modules/rpmatch (Makefile.am): Likewise.
2516         * modules/safe-read (Makefile.am): Likewise.
2517         * modules/safe-write (Makefile.am): Likewise.
2518         * modules/same-inode (Makefile.am): Likewise.
2519         * modules/same (Makefile.am): Likewise.
2520         * modules/save-cwd (Makefile.am): Likewise.
2521         * modules/savedir (Makefile.am): Likewise.
2522         * modules/setenv (Makefile.am): Likewise.
2523         * modules/settime (Makefile.am): Likewise.
2524         * modules/sha1 (Makefile.am): Likewise.
2525         * modules/sig2str (Makefile.am): Likewise.
2526         * modules/snprintf (Makefile.am): Likewise.
2527         * modules/stat-macros (Makefile.am): Likewise.
2528         * modules/stat-time (Makefile.am): Likewise.
2529         * modules/stdbool (Makefile.am): Likewise.
2530         * modules/stdint (Makefile.am): Likewise.
2531         * modules/stdlib-safer (Makefile.am): Likewise.
2532         * modules/stpcpy (Makefile.am): Likewise.
2533         * modules/stpncpy (Makefile.am): Likewise.
2534         * modules/strcase (Makefile.am): Likewise.
2535         * modules/strcasestr (Makefile.am): Likewise.
2536         * modules/strchrnul (Makefile.am): Likewise.
2537         * modules/strcspn (Makefile.am): Likewise.
2538         * modules/strdup (Makefile.am): Likewise.
2539         * modules/strerror (Makefile.am): Likewise.
2540         * modules/strftime (Makefile.am): Likewise.
2541         * modules/strndup (Makefile.am): Likewise.
2542         * modules/strnlen (Makefile.am): Likewise.
2543         * modules/strpbrk (Makefile.am): Likewise.
2544         * modules/strsep (Makefile.am): Likewise.
2545         * modules/strstr (Makefile.am): Likewise.
2546         * modules/strtod (Makefile.am): Likewise.
2547         * modules/strtoimax (Makefile.am): Likewise.
2548         * modules/strtok_r (Makefile.am): Likewise.
2549         * modules/strtol (Makefile.am): Likewise.
2550         * modules/strtoll (Makefile.am): Likewise.
2551         * modules/strtoul (Makefile.am): Likewise.
2552         * modules/strtoull (Makefile.am): Likewise.
2553         * modules/strtoumax (Makefile.am): Likewise.
2554         * modules/strverscmp (Makefile.am): Likewise.
2555         * modules/sys_socket (Makefile.am): Likewise.
2556         * modules/sys_stat (Makefile.am): Likewise.
2557         * modules/sysexits (Makefile.am): Likewise.
2558         * modules/time_r (Makefile.am): Likewise.
2559         * modules/timegm (Makefile.am): Likewise.
2560         * modules/timespec (Makefile.am): Likewise.
2561         * modules/tmpfile-safer (Makefile.am): Likewise.
2562         * modules/trim (Makefile.am): Likewise.
2563         * modules/unistd-safer (Makefile.am): Likewise.
2564         * modules/unlinkdir (Makefile.am): Likewise.
2565         * modules/unlocked-io (Makefile.am): Likewise.
2566         * modules/userspec (Makefile.am): Likewise.
2567         * modules/utime (Makefile.am): Likewise.
2568         * modules/utimecmp (Makefile.am): Likewise.
2569         * modules/utimens (Makefile.am): Likewise.
2570         * modules/vasnprintf (Makefile.am): Likewise.
2571         * modules/vasprintf (Makefile.am): Likewise.
2572         * modules/vsnprintf (Makefile.am): Likewise.
2573         * modules/xalloc (Makefile.am): Likewise.
2574         * modules/xgetcwd (Makefile.am): Likewise.
2575         * modules/xnanosleep (Makefile.am): Likewise.
2576         * modules/xreadlink (Makefile.am): Likewise.
2577         * modules/xstrtod (Makefile.am): Likewise.
2578         * modules/xstrtol (Makefile.am): Likewise.
2579         * modules/xstrtold (Makefile.am): Likewise.
2580         * modules/yesno (Makefile.am): Likewise.
2581         * modules/getdate (Makefile.am): Don't add getdate.h to EXTRA_DIST.
2582
2583 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
2584
2585         * modules/error (Makefile.am): Distribute files through
2586         EXTRA_DIST, not lib_SOURCES.
2587
2588 2006-10-12  Eric Blake  <ebb9@byu.net>
2589
2590         * modules/error (Makefile.am): Distribute files in /lib.
2591         * modules/obstack (Makefile.am): Likewise.
2592
2593 2006-10-12  Bruno Haible  <bruno@clisp.org>
2594
2595         * modules/acl (Makefile.am): Distribute all files in lib/ through
2596         EXTRA_DIST.
2597         * modules/arcfour (Makefile.am): Likewise.
2598         * modules/arctwo (Makefile.am): Likewise.
2599         * modules/argmatch (Makefile.am): Likewise.
2600         * modules/argz (Makefile.am): Likewise.
2601         * modules/atexit (Makefile.am): Likewise.
2602         * modules/backupfile (Makefile.am): Likewise.
2603         * modules/c-strtod (Makefile.am): Likewise.
2604         * modules/c-strtold (Makefile.am): Likewise.
2605         * modules/calloc (Makefile.am): Likewise.
2606         * modules/canon-host (Makefile.am): Likewise.
2607         * modules/canonicalize (Makefile.am): Likewise.
2608         * modules/chdir-long (Makefile.am): Likewise.
2609         * modules/chdir-safer (Makefile.am): Likewise.
2610         * modules/check-version (Makefile.am): Likewise.
2611         * modules/chown (Makefile.am): Likewise.
2612         * modules/cloexec (Makefile.am): Likewise.
2613         * modules/close-stream (Makefile.am): Likewise.
2614         * modules/closeout (Makefile.am): Likewise.
2615         * modules/crc (Makefile.am): Likewise.
2616         * modules/cycle-check (Makefile.am): Likewise.
2617         * modules/des (Makefile.am): Likewise.
2618         * modules/dirfd (Makefile.am): Likewise.
2619         * modules/dirname (Makefile.am): Likewise.
2620         * modules/dup2 (Makefile.am): Likewise.
2621         * modules/euidaccess (Makefile.am): Likewise.
2622         * modules/exclude (Makefile.am): Likewise.
2623         * modules/exitfail (Makefile.am): Likewise.
2624         * modules/fcntl-safer (Makefile.am): Likewise.
2625         * modules/file-type (Makefile.am): Likewise.
2626         * modules/fileblocks (Makefile.am): Likewise.
2627         * modules/filemode (Makefile.am): Likewise.
2628         * modules/filenamecat (Makefile.am): Likewise.
2629         * modules/fnmatch (Makefile.am): Likewise.
2630         * modules/fopen-safer (Makefile.am): Likewise.
2631         * modules/fpending (Makefile.am): Likewise.
2632         * modules/fprintftime (Makefile.am): Likewise.
2633         * modules/free (Makefile.am): Likewise.
2634         * modules/fsusage (Makefile.am): Likewise.
2635         * modules/ftruncate (Makefile.am): Likewise.
2636         * modules/fts (Makefile.am): Likewise.
2637         * modules/gc (Makefile.am): Likewise.
2638         * modules/gc-pbkdf2-sha1 (Makefile.am): Likewise.
2639         * modules/getaddrinfo (Makefile.am): Likewise.
2640         * modules/getcwd (Makefile.am): Likewise.
2641         * modules/getdelim (Makefile.am): Likewise.
2642         * modules/getdomainname (Makefile.am): Likewise.
2643         * modules/getgroups (Makefile.am): Likewise.
2644         * modules/gethostname (Makefile.am): Likewise.
2645         * modules/gethrxtime (Makefile.am): Likewise.
2646         * modules/getline (Makefile.am): Likewise.
2647         * modules/getloadavg (Makefile.am): Likewise.
2648         * modules/getlogin_r (Makefile.am): Likewise.
2649         * modules/getopt (Makefile.am): Likewise.
2650         * modules/getpass (Makefile.am): Likewise.
2651         * modules/getpass-gnu (Makefile.am): Likewise.
2652         * modules/getsubopt (Makefile.am): Likewise.
2653         * modules/gettime (Makefile.am): Likewise.
2654         * modules/gettimeofday (Makefile.am): Likewise.
2655         * modules/getugroups (Makefile.am): Likewise.
2656         * modules/getusershell (Makefile.am): Likewise.
2657         * modules/glob (Makefile.am): Likewise.
2658         * modules/group-member (Makefile.am): Likewise.
2659         * modules/hard-locale (Makefile.am): Likewise.
2660         * modules/hash (Makefile.am): Likewise.
2661         * modules/hmac-md5 (Makefile.am): Likewise.
2662         * modules/hmac-sha1 (Makefile.am): Likewise.
2663         * modules/human (Makefile.am): Likewise.
2664         * modules/idcache (Makefile.am): Likewise.
2665         * modules/imaxabs (Makefile.am): Likewise.
2666         * modules/imaxdiv (Makefile.am): Likewise.
2667         * modules/inet_ntop (Makefile.am): Likewise.
2668         * modules/inet_pton (Makefile.am): Likewise.
2669         * modules/inttostr (Makefile.am): Likewise.
2670         * modules/isapipe (Makefile.am): Likewise.
2671         * modules/lchown (Makefile.am): Likewise.
2672         * modules/long-options (Makefile.am): Likewise.
2673         * modules/lstat (Makefile.am): Likewise.
2674         * modules/malloc (Makefile.am): Likewise.
2675         * modules/mathl (Makefile.am): Likewise.
2676         * modules/mbchar (Makefile.am): Likewise.
2677         * modules/md2 (Makefile.am): Likewise.
2678         * modules/md4 (Makefile.am): Likewise.
2679         * modules/md5 (Makefile.am): Likewise.
2680         * modules/memcasecmp (Makefile.am): Likewise.
2681         * modules/memchr (Makefile.am): Likewise.
2682         * modules/memcmp (Makefile.am): Likewise.
2683         * modules/memcoll (Makefile.am): Likewise.
2684         * modules/memcpy (Makefile.am): Likewise.
2685         * modules/memmem (Makefile.am): Likewise.
2686         * modules/memmove (Makefile.am): Likewise.
2687         * modules/mempcpy (Makefile.am): Likewise.
2688         * modules/memrchr (Makefile.am): Likewise.
2689         * modules/memset (Makefile.am): Likewise.
2690         * modules/memxor (Makefile.am): Likewise.
2691         * modules/mkancesdirs (Makefile.am): Likewise.
2692         * modules/mkdir (Makefile.am): Likewise.
2693         * modules/mkdir-p (Makefile.am): Likewise.
2694         * modules/mkdtemp (Makefile.am): Likewise.
2695         * modules/mkstemp (Makefile.am): Likewise.
2696         * modules/mktime (Makefile.am): Likewise.
2697         * modules/modechange (Makefile.am): Likewise.
2698         * modules/mountlist (Makefile.am): Likewise.
2699         * modules/nanosleep (Makefile.am): Likewise.
2700         * modules/openat (Makefile.am): Likewise.
2701         * modules/pagealign_alloc (Makefile.am): Likewise.
2702         * modules/physmem (Makefile.am): Likewise.
2703         * modules/poll (Makefile.am): Likewise.
2704         * modules/posixtm (Makefile.am): Likewise.
2705         * modules/posixver (Makefile.am): Likewise.
2706         * modules/putenv (Makefile.am): Likewise.
2707         * modules/quote (Makefile.am): Likewise.
2708         * modules/quotearg (Makefile.am): Likewise.
2709         * modules/raise (Makefile.am): Likewise.
2710         * modules/read-file (Makefile.am): Likewise.
2711         * modules/readline (Makefile.am): Likewise.
2712         * modules/readlink (Makefile.am): Likewise.
2713         * modules/readtokens (Makefile.am): Likewise.
2714         * modules/readutmp (Makefile.am): Likewise.
2715         * modules/realloc (Makefile.am): Likewise.
2716         * modules/regex (Makefile.am): Likewise.
2717         * modules/rename (Makefile.am): Likewise.
2718         * modules/rename-dest-slash (Makefile.am): Likewise.
2719         * modules/rijndael (Makefile.am): Likewise.
2720         * modules/rmdir (Makefile.am): Likewise.
2721         * modules/rpmatch (Makefile.am): Likewise.
2722         * modules/safe-read (Makefile.am): Likewise.
2723         * modules/safe-write (Makefile.am): Likewise.
2724         * modules/same (Makefile.am): Likewise.
2725         * modules/save-cwd (Makefile.am): Likewise.
2726         * modules/savedir (Makefile.am): Likewise.
2727         * modules/setenv (Makefile.am): Likewise.
2728         * modules/settime (Makefile.am): Likewise.
2729         * modules/sha1 (Makefile.am): Likewise.
2730         * modules/sig2str (Makefile.am): Likewise.
2731         * modules/snprintf (Makefile.am): Likewise.
2732         * modules/stdlib-safer (Makefile.am): Likewise.
2733         * modules/stpcpy (Makefile.am): Likewise.
2734         * modules/stpncpy (Makefile.am): Likewise.
2735         * modules/strcase (Makefile.am): Likewise.
2736         * modules/strcasestr (Makefile.am): Likewise.
2737         * modules/strchrnul (Makefile.am): Likewise.
2738         * modules/strcspn (Makefile.am): Likewise.
2739         * modules/strdup (Makefile.am): Likewise.
2740         * modules/strerror (Makefile.am): Likewise.
2741         * modules/strftime (Makefile.am): Likewise.
2742         * modules/strndup (Makefile.am): Likewise.
2743         * modules/strnlen (Makefile.am): Likewise.
2744         * modules/strpbrk (Makefile.am): Likewise.
2745         * modules/strsep (Makefile.am): Likewise.
2746         * modules/strstr (Makefile.am): Likewise.
2747         * modules/strtod (Makefile.am): Likewise.
2748         * modules/strtoimax (Makefile.am): Likewise.
2749         * modules/strtok_r (Makefile.am): Likewise.
2750         * modules/strtol (Makefile.am): Likewise.
2751         * modules/strtoll (Makefile.am): Likewise.
2752         * modules/strtoul (Makefile.am): Likewise.
2753         * modules/strtoull (Makefile.am): Likewise.
2754         * modules/strtoumax (Makefile.am): Likewise.
2755         * modules/strverscmp (Makefile.am): Likewise.
2756         * modules/time_r (Makefile.am): Likewise.
2757         * modules/timegm (Makefile.am): Likewise.
2758         * modules/tmpfile-safer (Makefile.am): Likewise.
2759         * modules/unistd-safer (Makefile.am): Likewise.
2760         * modules/unlinkdir (Makefile.am): Likewise.
2761         * modules/userspec (Makefile.am): Likewise.
2762         * modules/utime (Makefile.am): Likewise.
2763         * modules/utimecmp (Makefile.am): Likewise.
2764         * modules/utimens (Makefile.am): Likewise.
2765         * modules/vasnprintf (Makefile.am): Likewise.
2766         * modules/vasprintf (Makefile.am): Likewise.
2767         * modules/vsnprintf (Makefile.am): Likewise.
2768         * modules/xalloc (Makefile.am): Likewise.
2769         * modules/xgetcwd (Makefile.am): Likewise.
2770         * modules/xnanosleep (Makefile.am): Likewise.
2771         * modules/xreadlink (Makefile.am): Likewise.
2772         * modules/xstrtod (Makefile.am): Likewise.
2773         * modules/xstrtol (Makefile.am): Likewise.
2774         * modules/xstrtold (Makefile.am): Likewise.
2775         * modules/yesno (Makefile.am): Likewise.
2776
2777 2006-10-12  Jim Meyering  <jim@meyering.net>
2778
2779         * m4/getloadavg.m4: Revert the change below.
2780
2781         * m4/getloadavg.m4 (gl_GETLOADAVG): Test for the existence of
2782         lib/getloadavg.c using "ls -L", not "test -f".  The latter would
2783         fail with a symlink, which is what coreutils' ./bootstrap now
2784         creates by default.
2785
2786 2006-10-12  Bruno Haible  <bruno@clisp.org>
2787
2788         * lib/inttypes_.h (_LONG_LONG_FORMAT_PREFIX): Don't define for MSVC or
2789         mingw.
2790         (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX, _SCNu64_PREFIX): Handle
2791         MSVC and mingw explicitly.
2792
2793 2006-10-11  Simon Josefsson  <jas@extundo.com>
2794             Bruno Haible  <bruno@clisp.org>
2795
2796         Add support for multiple gnulib-tool invocations in the scope of a
2797         single configure.ac file.
2798         * gnulib-tool (func_emit_lib_Makefile_am): In the _LIBADD variable,
2799         use a private [LT]LIBOBJS variant. Define a _DEPENDENCIES variable
2800         with the same contents as the _LIBADD variable.
2801         (func_emit_initmacro_start, func_emit_initmacro_end,
2802         func_emit_initmacro_done): New functions.
2803         (func_import, func_create_testdir): Invoke them. Allow the identifiers
2804         gl_LIBOBJS and gl_LTLIBOBJS.
2805
2806 2006-10-11  Bruno Haible  <bruno@clisp.org>
2807
2808         * gnulib-tool (GETTEXTPATH, AUTOHEADER, AUTOPOINT): New variables.
2809         (func_create_testdir): Don't create po/Makefile.am, don't invoke
2810         autoreconf. Instead, invoke autopoint explicitly but move back the
2811         *.m4 files from gnulib.
2812
2813 2006-10-11  Bruno Haible  <bruno@clisp.org>
2814
2815         * gnulib-tool (func_usage): Make module names after --create-testdir
2816         optional.
2817         (func_create_testdir): If no module was specified, use nearly all
2818         modules.
2819
2820 2006-10-12  Jim Meyering  <jim@meyering.net>
2821
2822         Big performance improvement for fts-based tools that use FTS_NOSTAT.
2823         Avoid spurious inode-mismatch problems on non-POSIX file systems.
2824         Details: http://article.gmane.org/gmane.comp.lib.gnulib.bugs/7416
2825         * lib/fts_.h (FTS_DEFER_STAT): Define new flag.
2826         (FTS_OPTIONMASK): Extend the mask to reflect this addition.
2827         * lib/fts.c (DT_IS_KNOWN, DT_MUST_BE): Define.
2828         (FTS_NO_STAT_REQUIRED, FTS_STAT_REQUIRED): Define.
2829         (fts_set_stat_required): New function.
2830         (fts_open): Defer the calls to fts_stat, if possible or requested.
2831         Move the code that maps a command-line fts_info value FTS_DOT to FTS_D
2832         into fts_stat itself.
2833         (fts_read): Perform any required (deferred) fts_stat call.
2834         (fts_build): Likewise, for the directory we're about to open and read.
2835         In the readdir loop, carefully decide whether each entry will require
2836         an eventual call to fts_stat, using dirent.d_type info if available.
2837         (fts_stat): Move the test for whether to honor FTS_COMFOLLOW on
2838         a command line argument into this function.  Update all callers.
2839         Map a return value of FTS_DOT to FTS_D for a command line argument.
2840         * modules/fts (Depends-on): Add d-type.  Alphabetize.
2841         Thanks to Miklos Szeredi for his tenacity and for the initial
2842         bug report about "find" failing on a FUSE-based file system.
2843
2844         * lib/fts.c (fts_open): Use consistent indentation.
2845
2846 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
2847
2848         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Renamed from
2849         gl_USE_SYSTEM_EXTENSIONS, to fix a coreutils bootstrap failure
2850         reported by Jim Meyering.  All uses of cache variables renamed
2851         to match Autoconf's.
2852         (gl_USE_SYSTEM_EXTENSIONS): New macro, which simply requires
2853         the other one.
2854
2855         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH):
2856         Fix misspelling in diagnostic.
2857
2858 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
2859
2860         * lib/mkdir-p.c (HAVE_FCHMOD): Define to false if not already
2861         defined.  Problem reported by Matthew Woehlke.
2862
2863         * lib/inttypes_.h (_LONG_LONG_FORMAT_PREFIX): New macro.
2864         Add support for Tandem NonStop R series.
2865         (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX, _SCNu64_PREFIX):
2866         Use new macro.
2867
2868         * lib/rename-dest-slash.c: Include stdbool.h but not string.h.
2869         (has_trailing_slash): Omit size arg; all callers changed.
2870         Omit 'inline', since it doesn't help performance and we'd
2871         need to configure it.
2872         Don't count //, ///, etc. as having a trailing slash.
2873         As a side effect, this removes a C99ism reported by Matthew Woehlke.
2874         (rpl_rename_dest_slash): On failure, use rename's errno rather
2875         than (in some cases) an incorrect or junk errno.
2876         Simplify code by removing need to compute length; this does
2877         cause it to make two passes instead of one over the file name,
2878         but it's worth it.
2879
2880         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Undo previous
2881         change, since Autoconf's version may no longer be appropriate now
2882         that we are using CVS Autoconf's version.  Add support for Tandem.
2883
2884 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
2885             Bruno Haible  <bruno@clisp.org>
2886
2887         * lib/allocsa.h (sa_alignment_longlong, sa_alignment_max): Test
2888         HAVE_LONG_LONG_INT instead of HAVE_LONG_LONG.
2889         * m4/allocsa.m4 (gl_ALLOCSA): Invoke AC_TYPE_LONG_LONG_INT instead of
2890         gl_AC_TYPE_LONG_LONG.
2891
2892         * lib/printf-args.h (arg_type, argument): Test HAVE_LONG_LONG_INT
2893         instead of HAVE_LONG_LONG.
2894         * lib/printf-args.c (printf_fetchargs): Likewise.
2895         * lib/printf-parse.c (PRINTF_PARSE): Likewise.
2896         * lib/vasnprintf.c (VASNPRINTF): Likewise.
2897         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_ARGS, gl_PREREQ_PRINTF_PARSE,
2898         gl_PREREQ_VASNPRINTF): Invoke AC_TYPE_LONG_LONG_INT instead of
2899         gl_AC_TYPE_LONG_LONG.
2900
2901 2006-10-11  Bruno Haible  <bruno@clisp.org>
2902
2903         * m4/longlong.m4: Add comments.
2904         * m4/ulonglong.m4: Likewise.
2905
2906 2006-10-10  Bruno Haible  <bruno@clisp.org>
2907
2908         Make it possible to #define stpcpy, strdup to aliases.
2909         * lib/stpcpy.c (stpcpy) [!_LIBC]: Don't undefine.
2910         * lib/strdup.c (strdup) [!_LIBC]: Don't undefine.
2911
2912 2006-10-10  Bruno Haible  <bruno@clisp.org>
2913
2914         Make it possible to #define gcd to an alias.
2915         * lib/gcd.c: Include config.h.
2916
2917 2006-10-10  Bruno Haible  <bruno@clisp.org>
2918
2919         Make it possible to #define c_isascii to an alias.
2920         * lib/c-ctype.h: Don't define the macros if NO_C_CTYPE_MACROS is
2921         defined. Undefine the macros before defining them, to avoid gcc
2922         warnings.
2923         * lib/c-ctype.c: Include config.h. Don't undefine the macros; instead,
2924         define NO_C_CTYPE_MACROS early.
2925
2926 2006-10-10  Bruno Haible  <bruno@clisp.org>
2927
2928         Make it possible to #define set_program_name to an alias.
2929         * lib/progname.c: Don't undefine set_program_name; instead, undefine
2930         ENABLE_RELOCATABLE early.
2931
2932 2006-10-10  Paul Eggert  <eggert@cs.ucla.edu>
2933
2934         Port to Tandem NSK OSS, which has 64-bit signed int but at most
2935         32-bit unsigned int.  Problem reported by Matthew Woehlke in:
2936         http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00062.html
2937         More generally, don't assume that 64-bit signed int is available
2938         if unsigned int is, and vice versa.
2939         * lib/inttypes_.h (_PRIu64_PREFIX, _SCNu64_PREFIX): Depend on
2940         unsigned symbols, not on their signed counterparts.
2941         * lib/stdint_.h (uint64_t, uint_least64_t, uint_fast64_t, uintmax_t):
2942         (UINT64_MAX, UINT_LEAST64_MAX, UINT_FAST64_MAX, UINTMAX_MAX):
2943         (UINT64_C, UINTMAX_C):
2944         Likewise.
2945         * lib/strtoimax.c (strtoll): Depend on signed symbols, not their
2946         unsigned counterparts.
2947         (Have_long_long, Unsigned): New macros.
2948         (Int): Renamed from INT.
2949         (strtoimax): Use the new macros.
2950         * m4/stdint.m4 (gl_STDINT_H): Require AC_TYPE_UNSIGNED_LONG_LONG_INT
2951         and substitute HAVE_UNSIGNED_LONG_LONG_INT.
2952         * modules/inttypes (inttypes.h): Substitute
2953         HAVE_UNSIGNED_LONG_LONG_INT.
2954         * modules/stdint (stdint.h): Likewise.
2955         (Files): Add m4/ulonglong.m4.
2956
2957 2006-10-10  Bruno Haible  <bruno@clisp.org>
2958
2959         Fix a gcc -Wshadow warning.
2960         * lib/gl_anyhash_list2.h (hash_resize): Rename local variable 'index'
2961         to 'bucket'.
2962         * lib/gl_anylinked_list2.h (gl_linked_search_from_to,
2963         gl_linked_indexof_from_to): Likewise.
2964         * lib/gl_linkedhash_list.c (add_to_bucket, remove_from_bucket):
2965         Likewise.
2966         * lib/gl_anytreehash_list1.h (add_to_bucket, remove_from_bucket):
2967         Likewise.
2968         * lib/gl_anytreehash_list2.h (gl_tree_search_from_to): Likewise.
2969         Reported by Eric Blake.
2970
2971 2006-10-09  Paul Eggert  <eggert@cs.ucla.edu>
2972
2973         * lib/filemode.h [HAVE_DECL_STRMODE]: Include unistd.h too,
2974         for NetBSD.  Problem reported by Bruno Haible.
2975
2976 2006-10-09  Jim Meyering  <jim@meyering.net>
2977
2978         * lib/lchown.c: Include <sys/stat.h> before "stat-macros.h".
2979         Patch from Bruno Haible.
2980
2981 2006-10-09  Jim Meyering  <jim@meyering.net>
2982
2983         * lib/fts-cycle.c (leave_dir): When "leaving" a top level directory due
2984         to FTS_SKIP, don't copy the parent's uninitialized dev/ino values.
2985         Trigger with e.g., mkdir d && valgrind ./chmod u+rwx d d
2986
2987 2006-10-08  Paul Eggert  <eggert@cs.ucla.edu>
2988
2989         Don't include <config.h> twice; this doesn't work in some cases,
2990         e.g., when config.h has "#define intmax_t long long int" and
2991         we include <config.h>, <inttypes.h>, <config.h> in that order.
2992         Problem reported by Matthew Woehlke in:
2993         http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00073.html
2994         * lib/fprintftime.c: Don't include config.h or fprintftime.h.
2995         * lib/fts-cycle.c: Don't include config.h.
2996         * lib/strftime.c: Include fprintftime.h if FPRINTFTIME is defined.
2997         * lib/xstrtoimax.c: Remove copyright notice since it's short tnow.
2998         Don't include config.h or xstrtol.h.  Define STRTOL_T_MINIMUM
2999         and STRTOL_T_MAXIMUM unconditionally, since we now assume gnulib
3000         inttypes.h.
3001         * lib/xstrtoumax.c: Likewise.
3002         * lib/xstrtol.c: Include config.h and xstrtol.h after defining
3003         __strtol and the like, so that this module is more like its siblings.
3004         (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM) [! defined STRTOL_T_MINIMUM]:
3005         Remove; no longer needed now that we assume gnulib inttypes.h.
3006
3007 2006-10-08  Bruno Haible  <bruno@clisp.org>
3008
3009         * doc/gnulib-tool.texi: Emphasize the drawbacks of the --symlink
3010         option.
3011
3012 2006-10-07  Jim Meyering  <jim@meyering.net>
3013
3014         * modules/inttypes (inttypes.h): Revert what seems to have been
3015         an inadvertent part of today's change: use "|", not "/" in the
3016         substitution for the "/"-containing string, $(ABSOLUTE_INTTYPES_H).
3017
3018 2006-10-07  Bruno Haible  <bruno@clisp.org>
3019
3020         * modules/sublist: New file.
3021
3022 2006-10-07  Bruno Haible  <bruno@clisp.org>
3023
3024         * modules/alloca-opt (alloca.h): Add a "DO NOT EDIT" comment.
3025         * modules/argz (argz.h): Likewise.
3026         * modules/arpa_inet (arpa/inet.h): Likewise.
3027         * modules/byteswap (byteswap.h): Likewise.
3028         * modules/configmake (configmake.h): Likewise.
3029         * modules/fcntl (fcntl.h): Likewise.
3030         * modules/fnmatch (fnmatch.h): Likewise.
3031         * modules/getopt (getopt.h): Likewise.
3032         * modules/glob (glob.h): Likewise.
3033         * modules/inttypes (inttypes.h): Likewise.
3034         * modules/netinet_in (netinet/in.h): Likewise.
3035         * modules/poll (poll.h): Likewise.
3036         * modules/stdbool (stdbool.h): Likewise.
3037         * modules/stdint (stdint.h): Likewise.
3038         * modules/sys_select (sys/select.h): Likewise.
3039         * modules/sys_socket (sys/socket.h): Likewise.
3040         * modules/sys_stat (sys/stat.h): Likewise.
3041         * modules/sysexits (sysexits.h): Likewise.
3042         * modules/unistd (unistd.h): Likewise.
3043         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
3044         Add a "DO NOT EDIT" comment to the generated file.
3045         (func_import): Likewise for gnulib-comp.m4.
3046
3047 2006-10-07  Bruno Haible  <bruno@clisp.org>
3048
3049         * lib/gl_sublist.h: New file.
3050         * lib/gl_sublist.c: New file.
3051
3052 2006-10-06  Paul Eggert  <eggert@cs.ucla.edu>
3053
3054         * lib/mkancesdirs.c (mkancesdirs): Pass to MAKE_DIR both the full file
3055         name (relative to the original working directory) and the file
3056         name component (relative to the temporary working directory).  All
3057         callers changed.
3058         * lib/mkancesdirs.h (mkancesdirs): Adjust prototype to match.
3059         * lib/mkdir-p.c (make_dir_parents): Likewise.
3060         * lib/mkdir-p.h (make_dir_parents): Likewise.
3061
3062 2006-10-06  Eric Blake  <ebb9@byu.net>
3063
3064         Define several macros for use by the clean-temp module.
3065         * m4/close-stream.m4 (gl_CLOSE_STREAM): Define GNULIB_CLOSE_STREAM.
3066         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Define GNULIB_FCNTL_SAFER.
3067         * m4/stdio-safer.m4 (gl_FOPEN_SAFER): Define GNULIB_FOPEN_SAFER.
3068
3069         * lib/clean-temp.h (close_stream_temp): New declaration.
3070         * lib/clean-temp.c (includes): Pull in headers according to what
3071         other modules are in use.
3072         (close_stream_temp) [GNULIB_CLOSE_STREAM]: New function.
3073
3074 2006-10-06  Bruno Haible  <bruno@clisp.org>
3075
3076         * lib/javacomp.c (write_temp_file): Use fopen_temp, fwriteerror_temp
3077         instead of fopen, fwriteerror.
3078
3079 2006-10-06  Bruno Haible  <bruno@clisp.org>
3080
3081         * lib/clean-temp.h (cleanup_temp_file, cleanup_temp_subdir,
3082         cleanup_temp_dir_contents, cleanup_temp_dir): Change return type to
3083         int.
3084         * lib/clean-temp.c (do_unlink, do_rmdir, cleanup_temp_file,
3085         cleanup_temp_subdir, cleanup_temp_dir_contents, cleanup_temp_dir):
3086         Return an error indicator.
3087         Suggested by Eric Blake.
3088
3089 2006-10-06  Bruno Haible  <bruno@clisp.org>
3090
3091         * lib/clean-temp.c (PATH_MAX): Provide a fallback for GNU Hurd.
3092         Reported by Eric Blake.
3093
3094 2006-10-06  Bruno Haible  <bruno@clisp.org>
3095
3096         * modules/closeout (Description): Mention stderr too.
3097
3098 2006-10-06  Bruno Haible  <bruno@clisp.org>
3099         and Paul Eggert  <eggert@cs.ucla.edu>
3100
3101         * lib/closeout.c (close_stdout): Also close stderr.
3102         * lib/closeout.h: Update comment.
3103
3104 2006-10-05  Paul Eggert  <eggert@cs.ucla.edu>
3105
3106         Fix some Darwin-7.9.0 porting problems reported by Bruno Haible in
3107         <http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00063.html>.
3108         * lib/dirchownmod.c: Include lchown.h.
3109         * lib/lchown.c: Don't include files that lchown.h now includes.
3110         Don't declare chown, since lchown.h now does that.
3111         * lib/lchown.h: Include errno.h, sys/types.h, unistd.h.
3112         (lchown): Define to rpl_chown if lchown is declared but
3113         does not exist.  Declare using a prototype if lchown is not
3114         declared.  Add a copyright notice.
3115         * lib/mkstemp.h: Include <unistd.h>.
3116         * lib/openat.c: Include lchown.h.
3117
3118         * lib/fcntl_.h (O_NOFOLLOW): Don't depend on O_NOFOLLOW_IS_INEFFECTIVE;
3119         we now test for that separately.
3120         * lib/fts.c (fts_safe_changedir): Inspect HAVE_WORKING_O_NOFOLLOW
3121         rather than O_NOFOLLOW, when testing whether it's possible to
3122         avoid a race condition reliably.
3123         * lib/savewd.c (savewd_chdir): Likewise.
3124
3125         Remove macros that are no longer needed now that stdint.h is
3126         reliable.
3127         * lib/fsusage.c (UINTMAX_MAX): Remove.
3128         * lib/human.c (SIZE_MAX, UINTMAX_MAX): Remove.
3129         * lib/utimecmp.c (SIZE_MAX): Remove.
3130
3131         * m4/lchown.m4 (gl_FUNC_LCHOWN): Check whether lchown is declared.
3132
3133         * m4/fcntl_h.m4 (gl_FCNTL_H): Define HAVE_WORKING_O_NOFOLLOW instead
3134         of O_NOFOLLOW_IS_INEFFECTIVE.  Define HAVE_WORKING_O_NOATIME if
3135         O_NOATIME works.
3136
3137 2006-10-05  Bruno Haible  <bruno@clisp.org>
3138
3139         * lib/gl_list.h (gl_sortedlist_search_from_to,
3140         gl_sortedlist_indexof_from_to): New declarations.
3141         (gl_list_implementation): New fields sortedlist_search_from_to,
3142         sortedlist_indexof_from_to.
3143         (gl_sortedlist_search_from_to, gl_sortedlist_indexof_from_to): New
3144         inline functions.
3145         * lib/gl_list.c (gl_sortedlist_search_from_to,
3146         gl_sortedlist_indexof_from_to): New functions.
3147         * lib/gl_array_list.c (gl_array_sortedlist_indexof_from_to): New
3148         function.
3149         (gl_array_sortedlist_indexof, gl_array_sortedlist_search): Use it.
3150         (gl_array_sortedlist_search_from_to): New function.
3151         (gl_array_list_implementation): Update.
3152         * lib/gl_carray_list.c (gl_carray_sortedlist_indexof_from_to): New
3153         function.
3154         (gl_carray_sortedlist_indexof, gl_carray_sortedlist_search): Use it.
3155         (gl_carray_sortedlist_search_from_to): New function.
3156         (gl_carray_list_implementation): Update.
3157         * lib/gl_anylinked_list2.h (gl_linked_sortedlist_search_from_to,
3158         gl_linked_sortedlist_indexof_from_to): New functions.
3159         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
3160         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
3161         * lib/gl_anytree_list2.h (gl_tree_sortedlist_search_from_to,
3162         gl_tree_sortedlist_indexof_from_to): New functions.
3163         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
3164         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
3165         Update.
3166         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
3167         * lib/gl_rbtreehash_list.c (gl_avltreehash_list_implementation):
3168         Update.
3169
3170 2006-10-05  Bruno Haible  <bruno@clisp.org>
3171
3172         * lib/gl_list.h (gl_list_search_from, gl_list_search_from_to,
3173         gl_list_indexof_from, gl_list_indexof_from_to): New declarations.
3174         (struct gl_list_implementation): Add fields search_from_to,
3175         indexof_from_to. Remove fields search, indexof.
3176         (gl_list_search): Use the search_from_to method.
3177         (gl_list_search_from, gl_list_search_from_to): New functions.
3178         (gl_list_indexof): Use the indexof_from_to method.
3179         (gl_list_indexof_from, gl_list_indexof_from_to): New functions.
3180         * lib/gl_list.c (gl_list_search): Use the search_from_to method.
3181         (gl_list_search_from, gl_list_search_from_to): New functions.
3182         (gl_list_indexof): Use the indexof_from_to method.
3183         (gl_list_indexof_from, gl_list_indexof_from_to): New functions.
3184         * lib/gl_array_list.c (gl_array_indexof_from_to): Renamed from
3185         gl_array_indexof. Add start_index, end_index arguments.
3186         (gl_array_search_from_to): Renamed from gl_array_search. Add
3187         start_index, end_index arguments.
3188         (gl_array_remove, gl_array_list_implementation): Update.
3189         * lib/gl_carray_list.c (gl_carray_indexof_from_to): Renamed from
3190         gl_carray_indexof. Add start_index, end_index arguments.
3191         (gl_carray_search_from_to): Renamed from gl_carray_search. Add
3192         start_index, end_index arguments.
3193         (gl_carray_remove, gl_carray_list_implementation): Update.
3194         * lib/gl_anylinked_list2.h (gl_linked_search_from_to): Renamed from
3195         gl_linked_search. Add start_index, end_index arguments.
3196         (gl_linked_indexof_from_to): Renamed from gl_linked_indexof. Add
3197         start_index, end_index arguments.
3198         (gl_linked_remove): Update.
3199         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
3200         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
3201         * lib/gl_anytree_list1.h (iterstack_item_t): Change type of 'rightp'
3202         field to 'size_t'.
3203         * lib/gl_anytree_list2.h (gl_tree_search_from_to): Renamed from
3204         gl_tree_search. Add start_index, end_index arguments.
3205         (gl_tree_indexof_from_to): Renamed from gl_tree_indexof. Add
3206         start_index, end_index arguments.
3207         (gl_tree_remove): Update.
3208         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
3209         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
3210         * lib/gl_anytreehash_list1.h (compare_position_threshold): New
3211         function.
3212         * lib/gl_anytreehash_list2.h (gl_tree_search_from_to): Renamed from
3213         gl_tree_search. Add start_index, end_index arguments.
3214         (gl_tree_indexof_from_to): Renamed from gl_tree_indexof. Add
3215         start_index, end_index arguments.
3216         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
3217         Update.
3218         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Update.
3219
3220 2006-10-05  Bruno Haible  <bruno@clisp.org>
3221
3222         * modules/fwriteerror (configure.ac): Define GNULIB_FWRITEERROR.
3223
3224         * lib/clean-temp.h (open_temp, fopen_temp, close_temp, fclose_temp,
3225         fwriteerror_temp): New declarations.
3226         * lib/clean-temp.c (uintptr_t): Provide fallback definition.
3227         (descriptors): New variable.
3228         (cleanup): First, close the descriptors.
3229         (register_fd, unregister_fd, open_temp, fopen_temp, close_temp,
3230         fclose_temp, fwriteerror_temp): New functions.
3231
3232 2006-10-04  Jim Meyering  <jim@meyering.net>
3233
3234         * lib/fts.c (fts_open): Tiny comment change.
3235
3236 2006-10-04  Bruno Haible  <bruno@clisp.org>
3237
3238         Make it possible to invoke AC_GNU_SOURCE after gl_LOCK_EARLY.
3239         * m4/lock.m4 (gl_LOCK_EARLY_BODY): New macro, extracted code from
3240         gl_LOCK_BODY.
3241         (gl_LOCK_EARLY): Require gl_LOCK_EARLY_BODY, not gl_LOCK_BODY.
3242         (gl_LOCK_BODY): Remove settings of CPPFLAGS, now done in
3243         gl_LOCK_EARLY_BODY.
3244         (gl_LOCK): Require gl_LOCK_BODY.
3245
3246 2006-10-04  Bruno Haible  <bruno@clisp.org>
3247
3248         * lib/gl_oset.h (gl_setelement_threshold_fn): New type.
3249         (gl_oset_search_atleast): New declaration.
3250         (struct gl_oset_implementation): Add field 'search_atleast'.
3251         (gl_oset_search_atleast): New inline function.
3252         * lib/gl_oset.c (gl_oset_search_atleast): New function.
3253         * lib/gl_array_oset.c (gl_array_search_atleast): New function.
3254         (gl_array_oset_implementation): Update.
3255         * lib/gl_anytree_oset.h (gl_tree_search_atleast): New function.
3256         * lib/gl_avltree_oset.c (gl_avltree_oset_implementation): Update.
3257         * lib/gl_rbtree_oset.c (gl_rbtree_oset_implementation): Update.
3258
3259 2006-10-04  Bruno Haible  <bruno@clisp.org>
3260
3261         * lib/fatal-signal.c (fatal_signals) [WOE32]: Add the SIGBREAK signal.
3262
3263 2006-10-03  Bruno Haible  <bruno@clisp.org>
3264
3265         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Renamed
3266         from gl_avltreehash_list_implementation.
3267
3268 2006-10-03  Bruno Haible  <bruno@clisp.org>
3269
3270         * lib/gl_oset.c (gl_oset_add): Fix return type.
3271
3272 2006-10-02  Paolo Bonzini  <bonzini@gnu.org>  (tiny change)
3273
3274         * lib/quotearg.c (mbstate_t) [!HAVE_MBRTOWC]: #define to int.
3275
3276 2006-10-02  Eric Blake  <ebb9@byu.net>
3277
3278         * modules/strnlen (Depends-on): Add extensions.
3279
3280 2006-10-02  Eric Blake  <ebb9@byu.net>
3281
3282         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Use autoconf's
3283         definition in 2.60+.
3284
3285 2006-10-02  Dmitry V. Levin  <ldv@altlinux.org>
3286
3287         * lib/fts.c (fts_close, fts_build, fts_palloc): Remove redundant
3288         checks.
3289
3290 2006-10-02  Bruno Haible  <bruno@clisp.org>
3291
3292         * gnulib-tool (func_emit_lib_Makefile_am): Don't add no-dependencies
3293         to the AUTOMAKE_OPTIONS.
3294         Reported by Jim Meyering.
3295
3296 2006-09-29  Paul Eggert  <eggert@cs.ucla.edu>
3297
3298         Work around bug in Solaris 10 /proc file system:
3299         /proc/self/fd/NNN/.. isn't the parent directory of
3300         the directory whose file descriptor is NNN.  This needs to
3301         be worked around at run time, not compile time, since a
3302         program might be built on Solaris 8, where things work, and
3303         run on Solaris 10.
3304         * lib/openat-priv.h (BUILD_PROC_NAME): Remove.  All callers changed
3305         to use the following interface instead:
3306         (OPENAT_BUFFER_SIZE): New macro.
3307         (openat_proc_name): New function.
3308         * lib/at-func.c (AT_FUNC_NAME): Adjust to above changes.
3309         * lib/openat.c (openat_permissive, openat_needs_fchdir, fdopendir):
3310         Likewise.
3311         * lib/openat-proc.c: New file.
3312         * modules/openat (Files): Add lib/openat-proc.c.
3313         (Depends-on): Add same-inode, stdbool.
3314         * m4/openat.m4 (gl_FUNC_OPENAT): Add AC_LIBOBJ(openat-proc).
3315
3316 2006-09-29  Bruno Haible  <bruno@clisp.org>
3317
3318         * lib/fwriteerror.h (fwriteerror_no_ebadf): New declaration.
3319         * lib/(do_fwriteerror): Renamed from fwriteerror. Add ignore_ebadf
3320         argument. Set stdout_closed before testing for ferror, not after.
3321         (fwriteerror, fwriteerror_no_ebadf): New functions.
3322
3323 2006-09-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3324
3325         * m4/intmax.m4 (gt_TYPE_INTMAX_T): Avoid unused variables warning.
3326
3327 2006-09-28  Paolo Bonzini  <bonzini@gnu.org>
3328
3329         * lib/poll.c (rpl_poll) [__APPLE__]: Use FIONREAD instead of MSG_PEEK.
3330         * m4/poll.m4: Look for sys/ioctl.h and sys/filio.h.
3331
3332 2006-09-28  Jim Meyering  <jim@meyering.net>
3333
3334         * lib/mkdir-p.c: Include "dirchownmod.h", not "dirchownmod.c".
3335         Include <unistd.h>.
3336
3337 2006-09-28  Bruno Haible  <bruno@clisp.org>
3338
3339         * modules/avltreehash-list (Depends-on): Add stdint, remove size_max.
3340         * modules/linkedhash-list (Depends-on): Likewise.
3341         * modules/rbtreehash-list (Depends-on): Likewise.
3342
3343 2006-09-28  Bruno Haible  <bruno@clisp.org>
3344
3345         * lib/strndup.h: Simplify the redefinition of strndup.
3346         (_GL_CONCAT, _GL_XCONCAT, __STRNDUP_ID): Remove macros.
3347         * m4/strndup.m4 (gl_FUNC_STRNDUP): Don't define __STRNDUP_PREFIX.
3348
3349 2006-09-28  Bruno Haible  <bruno@clisp.org>
3350
3351         * lib/gl_avltreehash_list.c: Include <stdint.h> instead of size_max.h.
3352         * lib/gl_linkedhash_list.c: Likewise.
3353         * lib/gl_rbtreehash_list.c: Likewise.
3354
3355 2006-09-27  Paul Eggert  <eggert@cs.ucla.edu>
3356
3357         * lib/canon-host.c (canon_host_r): Work around bug in Darwin 7.9.0
3358         getaddrinfo.
3359
3360         * lib/__fpending.h: Don't include <stdio_ext.h> unless
3361         HAVE_DECL___FPENDING.  This avoids a bug with lsbcc, where
3362         it causes <stdio_ext.h> to cause a compile-time error.
3363         Problem reported by Nelson H. F. Beebe.
3364         * lib/getpass.c: Likewise, except for HAVE_DECL___FSETLOCKING instead
3365         of HAVE_DECL___PENDING.
3366
3367         * m4/fpending.m4 (gl_FUNC_FPENDING): Check for stdio_ext at most once.
3368         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for __fsetlocking's
3369         declaration.
3370
3371 2006-09-27  Jim Meyering  <jim@meyering.net>
3372
3373         This file could end up with a definition for a function
3374         named __strndup, rather than rpl_strndup on a system with
3375         incomplete weak_alias support.
3376         * lib/strndup.c (strndup): Rename from __strndup.
3377         Remove #defines that used to map __strndup to strndup.
3378         Don't use K&R prototypes.
3379         Remove LIBC-related code, since this file is not sync'd with glibc.
3380         * lib/strndup.h: Revamp, accordingly.
3381         * m4/strndup.m4: Modernize.
3382
3383 2006-09-26  Paul Eggert  <eggert@cs.ucla.edu>
3384
3385         * modules/savewd (Depends-on): Add 'raise'.
3386         * lib/savewd.c: Include <signal.h>, for 'raise'.
3387
3388 2006-09-26  Jim Meyering  <jim@meyering.net>
3389
3390         * m4/acl.m4 (AC_FUNC_ACL): Disable ACL support altogether
3391         when we detect Darwin 8.7.0's acl_get_file bug.
3392         Rearrange to perform the new (below) run-test while $LIBS
3393         contains any acl-related library.  Set USE_ACL at the end.
3394         (gl_ACL_GET_FILE): New function.
3395
3396 2006-09-26  Eric Blake  <ebb9@byu.net>
3397
3398         * lib/verror.c: Include <config.h> unconditionally.
3399
3400 2006-09-25  Paul Eggert  <eggert@cs.ucla.edu>
3401
3402         * modules/clock-time (Maintainer): Add self.
3403         * modules/getlogin_r (Depends-on): Add extensions.
3404
3405 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3406
3407         * modules/clock-time: New module.
3408         * modules/nanosleep (Depends-on): Add clock-time.
3409         * modules/gethrxtime (Depends-on): Likewise.
3410         * modules/gettime (Depends-on): Likewise.
3411         * modules/settime (Depends-on): Likewise.
3412
3413         * modules/fts-lgpl: Depend on openat.
3414         * modules/mkancesdirs: Depend on savewd.
3415         * modules/mkdir-p: Likewise.
3416
3417 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3418
3419         * m4/host-os.m4 (gl_HOST_OS): Require AC_CANONICAL_HOST.
3420
3421         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Rename cache variable from
3422         `gl_have_arbitrary_file_name_length_limit' to
3423         `gl_cv_have_arbitrary_file_name_length_limit', so that caching
3424         actually works between configure runs.
3425
3426 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3427             Bruno Haible  <bruno@clisp.org>
3428
3429         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Include <string.h>.
3430
3431 2006-09-25  Jim Meyering  <jim@meyering.net>
3432
3433         * m4/fcntl_h.m4 (gl_FCNTL_H): Fix typo in test for failed open.
3434         This typo caused coreutils/tests/dd/misc to fail on Darwin 8.7.0.
3435
3436 2006-09-25  Eric Blake  <ebb9@byu.net>
3437
3438         * gnulib-tool (func_import, func_create_testdir): Fix typos in
3439         exec's in 2006-09-18 patch when shuffling fds.
3440
3441 2006-09-25  Bruno Haible  <bruno@clisp.org>
3442
3443         * m4/getloadavg.m4 (gl_GETLOADAVG): Fix directory in error message.
3444         Reported by Jim Meyering.
3445
3446 2006-09-24  Jim Meyering  <jim@meyering.net>
3447
3448         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Don't use '>' to
3449         compare a pointer against a literal "0".  That caused failures with
3450         at least HP-UX's hpcc.
3451
3452 2006-09-22  Simon Josefsson  <jas@extundo.com>
3453
3454         * modules/gc-sha1:
3455         * modules/gc-md4:
3456         * modules/gc-hmac-sha1:
3457         * modules/gc-hmac-md5:
3458         * modules/gc-des:
3459         * modules/gc-arcfour: Distribute more files.
3460
3461 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3462
3463         * lib/gl_anylinked_list2.h [lint] (gl_linked_iterator)
3464         (gl_linked_iterator_from_to): Initialize struct completely.
3465         * lib/gl_anytree_list2.h [lint] (gl_tree_iterator): Likewise.
3466         (gl_tree_iterator_from_to): Likewise
3467         * lib/gl_anytree_oset.h [lint] (gl_tree_iterator): Likewise.
3468         * lib/gl_array_list.c [lint] (gl_array_iterator)
3469         (gl_array_iterator_from_to): Likewise.
3470         * lib/gl_array_oset.c [lint] (gl_array_iterator): Likewise.
3471         * lib/gl_carray_list.c [lint] (gl_carray_iterator)
3472         (gl_carray_iterator_from_to): Likewise.
3473
3474         * lib/gc-gnulib.c [GC_USE_HMAC_SHA1]: include hmac.h for hmac_sha1.
3475         * lib/md4.c (md4_process_block): Remove unused variable.
3476         * lib/rijndael-api-fst.c (rijndaelBlockDecrypt): GCC suggests
3477         parentheses for clarity.
3478
3479 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3480
3481         * modules/bison-i18n (Depends-on): Add gettext.
3482
3483 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3484
3485         * m4/fsusage.m4 (gl_STATFS_TRUNCATES): Avoid unused variable.
3486         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): Likewise.
3487         * m4/jm-winsz1.m4 (gl_HEADER_TIOCGWINSZ_IN_TERMIOS_H): Likewise;
3488         also add missing comma that caused broken test.
3489         * m4/link-follow.m4 (gl_AC_FUNC_LINK_FOLLOWS_SYMLINK): Include
3490         stdlib.h, for `abort'.
3491         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Avoid unused
3492         variables.
3493         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Check for and
3494         include unistd.h if present, for `rmdir'.
3495         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): Avoid unused
3496         variables.
3497         * m4/putenv.m4 (gl_FUNC_PUTENV): Rewrite using AC_RUN_IFELSE, and
3498         in the process include standard headers for prototypes.
3499         * m4/readutmp.m4 (gl_READUTMP): Require AC_GNU_SOURCE, so utmpxname
3500         gets declared on GNU/Linux.
3501         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Check for and include
3502         unistd.h, for `rmdir'.
3503         * m4/time_r.m4 (gl_TIME_R): Avoid unused variables.
3504
3505         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Avoid expression that is
3506         always true.
3507         * m4/strndup.m4 (gl_FUNC_STRNDUP): include stdlib.h, for `free'.
3508
3509         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Avoid gcc -Wall warnings.
3510
3511 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3512
3513         * gnulib-tool (func_version): Create output all at once.  This
3514         may help avoid triggering unnecessary SIGPIPEs, and at any
3515         rate it doesn't hurt.
3516
3517 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3518             Bruno Haible  <bruno@clisp.org>
3519
3520         * m4/lock.m4 (gl_LOCK_BODY): Avoid unused variables warning.
3521         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
3522         * m4/signed.m4 (bh_C_SIGNED): Likewise.
3523
3524         * m4/vasprintf.m4 (gl_PREREQ_VASPRINTF_H): New macro.
3525         (gl_FUNC_VASPRINTF): Invoke it.
3526
3527 2006-09-22  Bruno Haible  <bruno@clisp.org>
3528
3529         * m4/getloadavg.m4 (gl_GETLOADAVG): Expect the directory of
3530         getloadavg.c as first argument.
3531
3532 2006-09-22  Bruno Haible  <bruno@clisp.org>
3533
3534         * gnulib-tool (func_import, func_create_testdir): Set gl_source_base
3535         at the beginning of the gl_INIT macro.
3536         * modules/getloadavg (configure.ac): Pass $gl_source_base to
3537         gl_GETLOADAVG.
3538
3539 2006-09-22  Bruno Haible  <bruno@clisp.org>
3540
3541         * gnulib-tool (func_create_megatestdir): Don't include the config-h
3542         module.
3543         Suggested by Ralf Wildenhues.
3544
3545 2006-09-20  Paul Eggert  <eggert@cs.ucla.edu>
3546
3547         Import this patch from libc:
3548
3549         2006-09-06  Jakub Jelinek  <jakub@redhat.com>
3550
3551         * lib/regex_internal.c (re_string_reconstruct): Handle
3552         offset < pstr->valid_raw_len && pstr->offsets_needed case.
3553         Ensure no bytes read before raw_mbs array.  Pass a saved copy of
3554         pstr->valid_len - 1 rather than pstr->valid_raw_len - 1 to
3555         re_string_context_at.
3556
3557         * m4/regex.m4 (gl_REGEX): Check for locale.h, since the test
3558         now requires it.
3559         (gl_PREREQ_REGEX): Don't check for locale.h any more, since
3560         gl_REGEX now does it for us.
3561         (gl_REGEX): Add test taken from
3562         http://sourceware.org/ml/libc-hacker/2006-09/msg00008.html.
3563
3564         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Require AC_SYS_LARGEFILE.
3565         Check that large offsets work.  Modernize Autoconf usages.
3566         Prefer "yes" to mean a good thing rather than a bad.
3567         Don't put "#define mkstemp" in config.h, as this might interfere
3568         with standard system headers that "#define mkstemp mkstemp64".
3569
3570         * modules/mkstemp (Depends-on): Add extensions, so that
3571         mkstemp is visible on some platforms.
3572         (Makefile.am): Add mkstemp.h to EXTRA_DIST.
3573         (Include): Change to "mkstemp.h" from <stdlib.h>.
3574         (Files): Add mkstemp.h.
3575
3576         * lib/mkstemp.h: New file, since some standard headers
3577         #define mkstemp.
3578         * lib/mkstemp.c: Revamp to put the !_LIBC code together.
3579         Include "mkstemp.h".
3580         Make the _LIBC code resemble glibc original more,
3581         e.g., use K&R style.
3582         * lib/mkstemp-safer.c: Include "mkstemp.h" instead of <stdlib.h>.
3583         (mkstemp): Remove, since mkstemp.h does this for us.
3584         * lib/stdlib--.h: Include mkstemp.h.
3585
3586         Import this patch from libc:
3587
3588         2006-04-07  Ulrich Drepper  <drepper@redhat.com>
3589
3590         * lib/tempname.c (__gen_tempname): Change attempts_min
3591         into a macro.  Use preprocessor to decide how to initialize
3592         attempts [Coverity CID 67].
3593
3594 2006-09-20  Bruno Haible  <bruno@clisp.org>
3595
3596         * lib/mkdtemp.c: Import from libc.
3597         2006-04-07  Ulrich Drepper  <drepper@redhat.com>
3598                 * sysdeps/posix/tempname.c (__gen_tempname): Change
3599                 attempts_min into a macro.  Use preprocessor to decide how to
3600                 initialize attempts [Coverity CID 67].
3601         2001-11-27  Paul Eggert  <eggert@twinsun.com>
3602                 * sysdeps/posix/tempname.c (__gen_tempname): Try at least
3603                 ATTEMPTS_MIN or TMP_MAX times, whichever is greater.
3604
3605 2006-09-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3606
3607         * gnulib-tool (func_exit): New function, to allow to pass the
3608         exit status portably through the trap.  Use everywhere.
3609         (--help, --version): Signal a write error.
3610         (trap): catch SIGPIPE, for write errors.
3611         Exit at the end of the trap, with the correct exit status.
3612
3613 2006-09-19  Karl Berry  <karl@gnu.org>
3614
3615         * doc/gnulib.texi: note about the license texinfo files.
3616
3617 2006-09-19  Eric Blake  <ebb9@byu.net>
3618
3619         * gnulib-tool: Avoid space-tab.
3620
3621 2006-09-18  Paul Eggert  <eggert@cs.ucla.edu>
3622
3623         * lib/getaddrinfo.c (getaddrinfo) [defined HAVE_IPV6]: Fix typo
3624         that prevented coreutils 6.1 from building.  Problem reported
3625         by Petter Reinholdtsen.
3626
3627 2006-09-18  Paul Eggert  <eggert@cs.ucla.edu>
3628
3629         * gnulib-tool (avoidlist): Fix typo that broke options like
3630         --avoid=lock that are used by coreutils bootstrap.
3631
3632 2006-09-18  Mark D. Baushke  <mdb@gnu.org>
3633
3634         * m4/inttypes.m4 (gl_INTTYPES_H): Quote "test" args
3635         more systematically.
3636
3637 2006-09-18  Jim Meyering  <jim@meyering.net>
3638
3639         * lib/savewd.c (savewd_restore): Don't shadow: s/status/child_status/.
3640
3641 2006-09-18  Bruno Haible  <bruno@clisp.org>
3642
3643         * modules/inttypes (Files): Remove m4/inttypes-h.m4.
3644
3645 2006-09-18  Bruno Haible  <bruno@clisp.org>
3646
3647         * m4/inttypes-h.m4 (gl_HEADER_INTTYPES_H): Remove macro.
3648         * m4/inttypes-pri.m4: Require autoconf >= 2.52.
3649         (gt_INTTYPES_PRI): Invoke AC_CHECK_HEADERS on inttypes.h. Test
3650         ac_cv_header_inttypes_h instead of gl_cv_header_inttypes_h.
3651         * m4/gettext.m4: Require autoconf >= 2.52.
3652         (gt_INTL_SUBDIR_CORE): Invoke AC_CHECK_HEADERS on inttypes.h.
3653         * m4/inttypes.m4 (gl_INTTYPES_H): Test ac_cv_header_inttypes_h instead
3654         of gl_cv_header_inttypes_h.
3655
3656 2006-09-18  Bruno Haible  <bruno@clisp.org>
3657
3658         * lib/javaversion.c: Include configmake.h.
3659
3660 2006-09-18  Bruno Haible  <bruno@clisp.org>
3661
3662         * gnulib-tool (func_import, func_create_testdir): Use exec tricks to
3663         avoid that the while loops be executed in a subshell.
3664
3665 2006-09-18  Bruno Haible  <bruno@clisp.org>
3666
3667         * MODULES.html.sh (func_module): Break long lines.
3668         Suggested by Bruce Korb <bkorb@gnu.org>.
3669
3670 2006-09-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3671
3672         Speed up by a factor of 1.12.
3673         * gnulib-tool (nl): New variable.
3674         (func_import): Rewrite include directive extraction to only read each
3675         directive once.
3676
3677 2006-09-17  Bruno Haible  <bruno@clisp.org>
3678
3679         * modules/javaversion (Makefile.am): Remove DEFS setting.
3680         (Depends-on): Add configmake, for PKGDATADIR definition.
3681
3682 2006-09-17  Bruno Haible  <bruno@clisp.org>
3683
3684         * gnulib-tool (func_create_testdir): Rewrite all files at once.
3685
3686 2006-09-17  Bruno Haible  <bruno@clisp.org>
3687
3688         * gnulib-tool (func_append): New function, stolen from libtool.m4.
3689         (func_modules_transitive_closure, func_modules_add_dummy,
3690         func_modules_to_filelist, func_import, func_create_testdir,
3691         func_create_megatestdir, ...): Use it wherever possible.
3692         Suggested by Ralf Wildenhues.
3693
3694 2006-09-16  Karl Berry  <karl@gnu.org>
3695
3696         * doc/fdl.texi (ADDENDUM): switch to @heading from @appendixsubsec,
3697         to avoid sectioning errors.
3698         * doc/lgpl.texi, gpl.texi (Copying): downcase @unnumbered title.
3699         [ifinfo]: blank line after @center-ed titles.
3700         * doc/lgpl.texi (Library Copying): Rename main node to GNU LGPL.
3701         Spell FSF address consistently with others.
3702         (These changes approved by rms.)
3703
3704 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3705
3706         Speed up by a factor of 1.61.
3707         * gnulib-tool (func_modules_transitive_closure): Rewrite to not check
3708         already checked module names again.
3709
3710 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3711
3712         Speed up by a factor of 1.13.
3713         * gnulib-tool (func_import): Rewrite all old_files at once; likewise
3714         for new_files, and the input to func_add_or_update.
3715
3716 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3717
3718         * gnulib-tool (func_all_modules, func_modules_to_filelist, func_import,
3719         func_create_testdir, ...): Change 'sort | uniq' to 'sort -u'.
3720
3721 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
3722
3723         * modules/mkancesdirs (Depends-on): Add fcntl.
3724         * modules/savewd: New file.
3725         * MODULES.html.sh (File system functions): Add savewd.
3726
3727         * modules/configmake (Makefile.am): Add support for the
3728         Automake-supplied PKGLIBDIR, PKGINCLUDEDIR, PKGDATADIR.
3729
3730 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
3731
3732         * m4/savewd.m4: New file.
3733
3734 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
3735
3736         * lib/dirchownmod.c: Don't include fcntl.h; no longer needed.
3737         (dirchownmod): New arg FD.  All callers changed.
3738         Use FD rather than opening the directory ourself, as opening is
3739         now the caller's responsibility.
3740         * lib/dirchownmod.h: Likewise.
3741         * lib/mkancesdirs.c: Include <sys/types.h>, for portability to older
3742         hosts that require <sys/types.h> before <sys/stat.h>.  Include
3743         fcntl.h, savewd.h, and unistd.h, not dirname.h and stat-macros.h.
3744         (test_dir): Remove.
3745         (mkancesdirs): Return length of prefix of FILE that has already
3746         been made, or -2 if there is a child doing the work.  Redo
3747         algorithm so that it is O(N) rather than O(N**2).  Optimize away
3748         ".", and treat ".." specially since it might stray back into
3749         already-created areas.  Use a subprocess if necessary.  New arg
3750         WD; all users changed.  MAKE_DIR function should now return 1
3751         if it creates a directory that is not readable.  Return -2 if
3752         a child process is spun off.
3753         * lib/mkancesdirs.h: Include <stddef.h>, for ptrdiff_t.
3754         Adjust signature to match code.
3755         * lib/mkdir-p.c: Include dirname.h, for IS_ABSOLUTE_FILE_NAME.
3756         (make_dir_parents): Use a subprocess if necessary.  New arg WD;
3757         all users changed.
3758         * lib/savewd.c, lib/savewd.h: New files.
3759
3760 2006-09-15  Jim Meyering  <jim@meyering.net>
3761
3762         * modules/rename-dest-slash: New module.
3763         * MODULES.html.sh (posix_compat): Add it here.
3764
3765         * modules/rename: Reflect vb_FUNC_RENAME -> gl_FUNC_RENAME change.
3766
3767 2006-09-15  Jim Meyering  <jim@meyering.net>
3768
3769         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH): New
3770         file.
3771
3772         * m4/rename.m4 (gl_FUNC_RENAME): Rename from vb_FUNC_RENAME.
3773
3774 2006-09-15  Jim Meyering  <jim@meyering.net>
3775
3776         * lib/rename-dest-slash.c (has_trailing_slash): Use
3777         FILE_SYSTEM_PREFIX_LEN, for non-POSIX systems.
3778         (rpl_rename_dest_slash): Perform the cheaper trailing slash
3779         test before testing whether SRC is a directory.
3780         Suggestions from Bruno Haible.
3781
3782         Avoid a warning about an unused variable.
3783         * lib/regex_internal.c (re_dfa_add_node): Move declaration of "type"
3784         into the #ifdef block where it's used.
3785
3786         * lib/rename-dest-slash.c: New file.
3787
3788 2006-09-14  Bruno Haible  <bruno@clisp.org>
3789
3790         * lib/allocsa.c: Include <config.h> unconditionally.
3791         * lib/asnprintf.c: Likewise.
3792         * lib/asprintf.c: Likewise.
3793         * lib/c-strcasecmp.c: Likewise.
3794         * lib/c-strcasestr.c: Likewise.
3795         * lib/c-strncasecmp.c: Likewise.
3796         * lib/c-strstr.c: Likewise.
3797         * lib/classpath.c: Likewise.
3798         * lib/clean-temp.c: Likewise.
3799         * lib/concatpath.c: Likewise.
3800         * lib/copy-file.c: Likewise.
3801         * lib/csharpcomp.c: Likewise.
3802         * lib/csharpexec.c: Likewise.
3803         * lib/execute.c: Likewise.
3804         * lib/fatal-signal.c: Likewise.
3805         * lib/findprog.c: Likewise.
3806         * lib/fwriteerror.c: Likewise.
3807         * lib/gl_array_list.c: Likewise.
3808         * lib/gl_array_oset.c: Likewise.
3809         * lib/gl_avltree_list.c: Likewise.
3810         * lib/gl_avltree_oset.c: Likewise.
3811         * lib/gl_avltreehash_list.c: Likewise.
3812         * lib/gl_carray_list.c: Likewise.
3813         * lib/gl_linked_list.c: Likewise.
3814         * lib/gl_linkedhash_list.c: Likewise.
3815         * lib/gl_list.c: Likewise.
3816         * lib/gl_oset.c: Likewise.
3817         * lib/gl_rbtree_list.c: Likewise.
3818         * lib/gl_rbtree_oset.c: Likewise.
3819         * lib/gl_rbtreehash_list.c: Likewise.
3820         * lib/imaxabs.c: Likewise.
3821         * lib/imaxdiv.c: Likewise.
3822         * lib/javacomp.c: Likewise.
3823         * lib/javaexec.c: Likewise.
3824         * lib/javaversion.c: Likewise.
3825         * lib/linebreak.c: Likewise.
3826         * lib/localcharset.c: Likewise.
3827         * lib/lock.c: Likewise.
3828         * lib/mbchar.c: Likewise.
3829         * lib/mbswidth.c: Likewise.
3830         * lib/mkdtemp.c: Likewise.
3831         * lib/pipe.c: Likewise.
3832         * lib/printf-args.c: Likewise.
3833         * lib/printf-parse.c: Likewise.
3834         * lib/progname.c: Likewise.
3835         * lib/progreloc.c: Likewise.
3836         * lib/readlink.c: Likewise.
3837         * lib/sh-quote.c: Likewise.
3838         * lib/stpcpy.c: Likewise.
3839         * lib/stpncpy.c: Likewise.
3840         * lib/strcasecmp.c: Likewise.
3841         * lib/strcasestr.c: Likewise.
3842         * lib/strcspn.c: Likewise.
3843         * lib/striconv.c: Likewise.
3844         * lib/strncasecmp.c: Likewise.
3845         * lib/strnlen1.c: Likewise.
3846         * lib/strstr.c: Likewise.
3847         * lib/strtok_r.c: Likewise.
3848         * lib/tls.c: Likewise.
3849         * lib/tmpdir.c: Likewise.
3850         * lib/unicodeio.c: Likewise.
3851         * lib/unsetenv.c: Likewise.
3852         * lib/vasnprintf.c: Likewise.
3853         * lib/vasprintf.c: Likewise.
3854         * lib/wait-process.c: Likewise.
3855         * lib/xallocsa.c: Likewise.
3856         * lib/xsetenv.c: Likewise.
3857         * lib/xstriconv.c: Likewise.
3858
3859 2006-09-13  Simon Josefsson  <jas@extundo.com>
3860
3861         * m4/getdate.m4: Don't AC_LIBOBJ([getdate]), automake takes care of
3862         that internally, suggested by Ralf Wildenhues
3863         <Ralf.Wildenhues@gmx.de>.
3864
3865 2006-09-13  Simon Josefsson  <jas@extundo.com>
3866
3867         * gnulib-tool (func_emit_lib_Makefile_am): Use $(LIBOBJS), not
3868         @LIBOBJS@.
3869         Suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
3870
3871 2006-09-13  Paul Eggert  <eggert@cs.ucla.edu>
3872
3873         * lib/_fpending.c: Include <config.h> unconditionally, since we no
3874         longer worry about uses that don't define HAVE_CONFIG_H.
3875         * lib/acl.c, lib/alloca.c, lib/argmatch.c, lib/atexit.c:
3876         * lib/backupfile.c, lib/basename.c, lib/c-stack.c, lib/c-strtod.c:
3877         * lib/calloc.c,lib/ canon-host.c, lib/canonicalize.c, lib/chdir-long.c:
3878         * lib/chdir-safer.c, lib/chown.c, lib/cloexec.c, lib/close-stream.c:
3879         * lib/closeout.c, lib/creat-safer.c, lib/cycle-check.c, lib/diacrit.c:
3880         * lib/dirchownmod.c, lib/dirfd.c, lib/dirname.c, lib/dup-safer.c:
3881         * lib/dup2.c, lib/error.c, lib/euidaccess.c, lib/exclude.c:
3882         * lib/exitfail.c, lib/fchmodat.c, lib/fchown-stub.c, lib/fd-safer.c:
3883         * lib/file-type.c, lib/fileblocks.c, lib/filemode.c, lib/filenamecat.c:
3884         * lib/fnmatch.c, lib/fopen-safer.c, lib/fprintftime.c, lib/free.c:
3885         * lib/fsusage.c, lib/ftruncate.c, lib/fts-cycle.c, lib/fts.c:
3886         * lib/full-write.c, lib/gai_strerror.c, lib/getcwd.c, lib/getdate.y:
3887         * lib/getdomainname.c, lib/getgroups.c, lib/gethostname.c:
3888         * lib/gethrxtime.c, lib/getloadavg.c, lib/getlogin_r.c:
3889         * lib/getndelim2.c, lib/getnline.c, lib/getopt.c, lib/getopt1.c:
3890         * lib/getpass.c, lib/gettime.c, lib/gettimeofday.c, lib/getugroups.c:
3891         * lib/getusershell.c, lib/glob.c, lib/group-member.c:
3892         * lib/hard-locale.c, lib/hash-pjw.c, lib/hash.c, lib/human.c:
3893         * lib/idcache.c, lib/inet_ntop.c, lib/inet_pton.c, lib/inttostr.c:
3894         * lib/isdir.c, lib/lchown.c, lib/linebuffer.c, lib/long-options.c:
3895         * lib/lstat.c, lib/malloc.c, lib/md5.c, lib/memcasecmp.c, lib/memchr.c:
3896         * lib/memcmp.c, lib/memcoll.c, lib/memcpy.c, lib/memmove.c:
3897         * lib/memrchr.c, lib/mkancesdirs.c, lib/mkdir-p.c, lib/mkdir.c:
3898         * lib/mkdirat.c, lib/mkstemp-safer.c, lib/mkstemp.c, lib/modechange.c:
3899         * lib/mountlist.c, lib/nanosleep.c, lib/obstack.c, lib/open-safer.c:
3900         * lib/openat-die.c, lib/openat.c, lib/pagealign_alloc.c, lib/physmem.c:
3901         * lib/pipe-safer.c, lib/posixtm.c, lib/posixver.c, lib/putenv.c:
3902         * lib/quote.c, lib/quotearg.c, lib/raise.c, lib/readtokens.c:
3903         * lib/readtokens0.c, lib/readutmp.c, lib/realloc.c, lib/regex.c:
3904         * lib/rename.c, lib/rmdir.c, lib/rpmatch.c, lib/safe-read.c:
3905         * lib/same.c, lib/save-cwd.c, lib/savedir.c, lib/setenv.c:
3906         * lib/settime.c, lib/sha1.c, lib/sig2str.c, lib/snprintf.c:
3907         * lib/strdup.c, lib/strerror.c, lib/strftime.c, lib/stripslash.c:
3908         * lib/strndup.c, lib/strnlen.c, lib/strpbrk.c, lib/strtod.c:
3909         * lib/strtoimax.c, lib/strtol.c, lib/strverscmp.c, lib/tempname.c:
3910         * lib/time_r.c, lib/timegm.c, lib/tmpfile-safer.c, lib/unlinkdir.c:
3911         * lib/userspec.c, lib/utime.c, lib/utimecmp.c, lib/utimens.c:
3912         * lib/version-etc-fsf.c, lib/version-etc.c, lib/xalloc-die.c:
3913         * lib/xgetcwd.c, lib/xgethostname.c, lib/xmalloc.c, lib/xmemcoll.c:
3914         * lib/xnanosleep.c, lib/xreadlink.c, lib/xstrtod.c, lib/xstrtoimax.c:
3915         * lib/xstrtol.c, lib/xstrtoumax.c, lib/yesno.c:
3916         Likewise.
3917
3918 2006-09-13  Eric Blake  <ebb9@byu.net>
3919
3920         * lib/getopt.c: Fix typo in last commit.
3921
3922 2006-09-12  Sergey Poznyakoff  <gray@gnu.org.ua>
3923
3924         * lib/argp-help.c (argp_doc): Make sure NULL is not passed to
3925         dgettext.
3926
3927 2006-09-12  Jim Meyering  <jim@meyering.net>
3928
3929         * lib/nanosleep.c: Include <sys/types.h> before sys/select.h, to avoid
3930         compilation failure (due to use of pid_t in latter) on NetBSD 1.6.
3931         Reported by Nelson H. F. Beebe.
3932
3933 2006-09-10  Sergey Poznyakoff  <gray@gnu.org.ua>
3934
3935         * lib/argp-parse.c (__argp_parse) [!_LIBC]: Make sure
3936         program_invocation_name and program_invocation_short_name are
3937         initialized.
3938         * lib/argp-namefrob.h: Move declarations of program_invocation_name
3939         and program_invocation_short_name to argp.h, so they are visible
3940         to user programs.
3941         * lib/argp.h: Likewise
3942
3943 2006-09-10  Bruno Haible  <bruno@clisp.org>
3944
3945         * modules/mkdtemp (Files): Remove m4/ulonglong.m4, m4/stdint_h.m4,
3946         m4/inttypes_h.m4, m4/uintmax_t.m4.
3947
3948 2006-09-10  Bruno Haible  <bruno@clisp.org>
3949
3950         * m4/mkdtemp.m4 (gl_PREREQ_MKDTEMP): Don't require
3951         gl_AC_TYPE_UINTMAX_T.
3952
3953 2006-09-10  Bruno Haible  <bruno@clisp.org>
3954
3955         * lib/mkdtemp.c: Include <stdint.h> always. Don't include <inttypes.h>.
3956
3957 2006-09-09  Sergey Poznyakoff  <gray@gnu.org.ua>
3958
3959         * lib/argp.h (struct argp): Document the N_("..") "\v" N_("..")
3960         convention.  Text proposed by Bruno Haible.
3961         (struct argp_option): Document the use of N_() wrappers.
3962
3963         * lib/argp-help.c (argp_doc): Split the untranslated doc string on
3964         '\v', and translate the two parts separately, instead of feeding
3965         the whole string to gettext.  This allows to exclude
3966         '\v' from the strings visible to the translator by writing doc
3967         strings as N_("..") "\v" N_("..").
3968
3969 2006-09-09  Paul Eggert  <eggert@cs.ucla.edu>
3970
3971         * config/srclist.txt: Undo latest change; the bug was fixed.
3972
3973 2006-09-09  Bruno Haible  <bruno@clisp.org>
3974
3975         * gnulib-tool (func_emit_lib_Makefile_am): Eliminate lib_LDFLAGS
3976         assignments if building a library without libtool.
3977         (func_emit_tests_Makefile_am): Likewise. Handle lib_* variables as
3978         in func_emit_lib_Makefile_am.
3979         (func_import): When building a static library libfoo.a, arrange to
3980         define variables LIBFOO_LIBDEPS and LIBFOO_LTLIBDEPS.
3981         (func_create_testdir): Likewise.
3982         * modules/gc (configure.ac, Makefile.am): If building statically,
3983         augment gl_libdeps and gl_ltlibdeps instead of lib_LDFLAGS.
3984         * modules/iconvme (configure.ac, Makefile.am): Likewise.
3985         * modules/striconv (configure.ac, Makefile.am): Likewise.
3986         Based on a suggestion by Ralf Wildenhues.
3987
3988 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
3989
3990         * m4/mktime.m4 (AC_FUNC_MKTIME): Sync from Autoconf.
3991         Check for unistd.h too, since Autoconf doesn't assume POSIX.
3992         Also:
3993
3994         2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
3995         Add year_2050_test to catch glibc bug 2821
3996         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
3997
3998         2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
3999         Prefer #ifdef to #if.
4000
4001         2006-04-02  Paul Eggert  <eggert@cs.ucla.edu>
4002         Return from 'main' instead of calling 'exit'.
4003
4004 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
4005
4006         * lib/mktime.c (guess_time_tm): Fix bug where mktime
4007         returned the maximum time_t value rather than (time_t) -1.
4008         Problem originally reported by William Bardwell
4009         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
4010
4011         * lib/isapipe.h (HAVE_FIFO_PIPES) [!defined HAVE_FIFO_PIPES]:
4012         Moved to here ...
4013         * lib/isapipe.c (HAVE_FIFO_PIPES) [!defined HAVE_FIFO_PIPES]:
4014         ... from here.
4015
4016 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
4017
4018         * config/srclist.txt: Temporarily comment out mktime.c until glibc bug
4019         2821 is fixed.
4020
4021 2006-09-08  Jim Meyering  <jim@meyering.net>
4022
4023         Don't make generated files read-only.  That would bother too many
4024         people.  However, do retain the ability to work when targets are
4025         read-only: remove the destination and temporary files before writing
4026         them (when generated via sed or echo), or by using the -f option for
4027         both cp and mv commands.  Suggestion to use -f from Paul Eggert.
4028         * modules/alloca-opt, modules/argz, modules/arpa_inet:
4029         * modules/byteswap, modules/configmake, modules/fcntl:
4030         * modules/fnmatch, modules/getopt, modules/glob, modules/inttypes:
4031         * modules/localcharset, modules/netinet_in, modules/poll:
4032         * modules/stdbool, modules/stdint, modules/sys_select:
4033         * modules/sys_socket, modules/sys_stat, modules/sysexits:
4034
4035 2006-09-08  Jim Meyering  <jim@meyering.net>
4036
4037         Avoid new build failure on FreeBSD 6.0.
4038         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Include
4039         <sys/param.h> when testing whether getmntinfo uses statvfs.  Patch by
4040         Pavel Tsekov, in <http://savannah.gnu.org/bugs/?17643>.
4041
4042 2006-09-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4043
4044         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Don't use plain echo.
4045
4046 2006-09-07  Jim Meyering  <jim@meyering.net>
4047
4048         Fix global typo in last change: use chmod u-w, not chmod u-x.
4049         Spotted by Paul Eggert and Bruce Korb.
4050         * modules/alloca-opt, modules/argz, modules/arpa_inet:
4051         * modules/byteswap, modules/configmake, modules/fcntl:
4052         * modules/fnmatch, modules/getopt, modules/glob, modules/inttypes:
4053         * modules/localcharset, modules/netinet_in, modules/poll:
4054         * modules/stdbool, modules/stdint, modules/sys_select:
4055         * modules/sys_socket, modules/sys_stat, modules/sysexits:
4056
4057 2006-09-06  Jim Meyering  <jim@meyering.net>
4058
4059         Make generated files be read-only.
4060         * modules/alloca-opt (Makefile.am): Work also when $@ is read-only.
4061         Ensure that each generated file is now read-only.
4062         * modules/argz: Likewise.
4063         * modules/arpa_inet: Likewise.
4064         * modules/byteswap: Likewise.
4065         * modules/configmake: Likewise.
4066         * modules/fcntl: Likewise.
4067         * modules/fnmatch: Likewise.
4068         * modules/getopt: Likewise.
4069         * modules/glob: Likewise.
4070         * modules/inttypes: Likewise.
4071         * modules/netinet_in: Likewise.
4072         * modules/poll: Likewise.
4073         * modules/stdbool: Likewise.
4074         * modules/stdint: Likewise.
4075         * modules/sys_select: Likewise.
4076         * modules/sys_socket: Likewise.
4077         * modules/sys_stat: Likewise.
4078         * modules/sysexits: Likewise.
4079         * modules/localcharset: Same as above, but continue using temporary
4080         file named "t-$@" (why different?) rather than the "$@-t" used
4081         everywhere else.
4082
4083         * modules/sysexits (Makefile.am): Replace literal occurrences
4084         of "sysexit.h" more readable, and more consistent, "$@".
4085
4086 2006-09-06  Bruno Haible  <bruno@clisp.org>
4087
4088         * modules/striconv: New file.
4089         * modules/xstriconv: New file.
4090         * MODULES.html.sh (Internationalization functions): Add striconv,
4091         xstriconv.
4092
4093 2006-09-06  Bruno Haible  <bruno@clisp.org>
4094
4095         * modules/gc (Makefile.am): Augment lib_LDFLAGS, not lib_LIBADD.
4096         * modules/iconvme (Makefile.am): Likewise. Also handle the case of
4097         not using libtool correctly.
4098
4099 2006-09-06  Bruno Haible  <bruno@clisp.org>
4100
4101         * lib/striconv.h: New file.
4102         * lib/striconv.c: New file, merging iconvme.c with GNU gettext's
4103         iconvstring.c.
4104         * lib/xstriconv.h: New file.
4105         * lib/xstriconv.c: New file.
4106
4107 2006-09-06  Bruno Haible  <bruno@clisp.org>
4108
4109         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
4110         lib_..._LDFLAGS.
4111
4112 2006-09-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4113
4114         * lib/argz_.h: Sync from Libtool.
4115
4116         2006-09-04  George Bosilca <bosilca@cs.utk.edu>
4117                 and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4118
4119         * lib/libltdl/argz_.h: It's __cplusplus, not _cplusplus.
4120
4121 2006-09-05  Davide Angelocola  <davide.angelocola@tiscali.it>
4122
4123         * modules/trim: New file.
4124
4125 2006-09-05  Davide Angelocola  <davide.angelocola@tiscali.it>
4126
4127         * lib/trim.h: New file.
4128         * lib/trim.c: New file.
4129
4130 2006-09-05  Bruno Haible  <bruno@clisp.org>
4131
4132         * MODULES.html.sh (String handling): Add trim.
4133
4134 2006-09-04  Karl Berry  <karl@gnu.org>
4135
4136         * config/srclist.txt (signed.m4, gettext.m4): changes not propagated
4137         until next release.
4138
4139 2006-09-03  Bruno Haible  <bruno@clisp.org>
4140
4141         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Locate mingw shared libraries
4142         correctly.
4143
4144 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
4145
4146         * m4/getloadavg.m4 (gl_GETLOADAVG): Use CONFIGURING_GETLOADAVG,
4147         not gl_GETLOADAVG.  Omit unneeded semicolons.
4148         Problems reported by Ralf Wildenhues in
4149         <http://lists.gnu.org/archive/html/bug-gnulib/2006-09/msg00000.html>.
4150         (gl_PREREQ_GETLOADAVG): Use AC_DEFUN, not m4_define.  Put
4151         at the end, which is the usual gnulib style.
4152
4153         * m4/fstypename.m4 (gl_FSTYPENAME): Use AC_CHECK_MEMBERS instead
4154         of doing all the work ourselves.
4155         * m4/fsusage.m4 (gl_PREREQ_FSUSAGE_EXTRA): Don't check for
4156         sys/statvfs.h since the code doesn't use HAVE_SYS_STATVFS_H.
4157
4158 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
4159
4160         * lib/getloadavg.c: Use CONFIGURING_GETLOADAVG, not gl_GETLOADAVG.
4161         Problem reported by Ralf Wildenhues in
4162         <http://lists.gnu.org/archive/html/bug-gnulib/2006-09/msg00000.html>.
4163
4164         * lib/mountlist.c: All uses of HAVE_F_FSTYPENAME_IN_STATFS replaced by
4165         HAVE_STRUCT_STATFS_F_FSTYPENAME.
4166
4167 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
4168
4169         * gnulib-tool (func_emit_lib_Makefile_am): Fix typos in
4170         yesterday's patch by changing test -n to test -z.
4171
4172 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
4173
4174         * modules/getloadavg (Files): Add m4/getloadavg.m4.
4175         (configure.ac): AC_FUNC_GETLOADAVG -> gl_GETLOADAVG, as
4176         the former is now obsolescent.
4177
4178         * modules/chdir-long (Depends-on): Add fcntl.
4179
4180 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
4181
4182         * m4/fnmatch.m4: Add comment that Autoconf AC_FUNC_FNMATCH is
4183         obsolescent, and programs should use gnulib instead.
4184         * m4/getloadavg.m4: New file, with contents taken from Autoconf
4185         but with prefixes changed.
4186
4187 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
4188
4189         * lib/getloadavg.c [defined gl_GETLOADAVG]: Don't include config.h
4190         or stdbool.h, because they might not exist while configuring.
4191
4192         * lib/chdir-long.c: Include <fcntl.h>, for O_DIRECTORY.
4193         Don't include unistd.h or limits.h; not needed, since chdir-long.h
4194         does that for us.
4195         (O_DIRECTORY): Remove.
4196
4197 2006-08-31  Eric Blake  <ebb9@byu.net>
4198
4199         * gnulib-tool: Don't let emacs change spaces to TAB.
4200
4201 2006-08-31  Bruno Haible  <bruno@clisp.org>
4202
4203         * gnulib-tool: When calling func_import more than once, do it in a
4204         subshell.
4205         Reported by Eric Blake <ebb9@byu.net>.
4206
4207 2006-08-31  Bruno Haible  <bruno@clisp.org>
4208
4209         * gnulib-tool (nl): Remove variable.
4210         (sed_transform_lib_file): Use more robust test for config-h module.
4211         (func_import): Fix typo in 2006-08-25 patch.
4212
4213 2006-08-31  Bruno Haible  <bruno@clisp.org>
4214
4215         * gnulib-tool (func_emit_lib_Makefile_am): When --makefile-name was
4216         specified, augment Makefile.am variables instead of assigning them.
4217
4218 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
4219
4220         Work around a bug in both the Linux and SunOS 64-bit kernels:
4221         nanosleep mishandles sleeps for longer than 2**31 seconds.
4222         Problem reported by Frank v Waveren in
4223         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00298.html>.
4224         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Require gl_CLOCK_TIME.
4225         Check for nanosleep bug.
4226         (LIB_NANOSLEEP): Append clock_gettime library if needed.
4227
4228 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
4229
4230         Work around a bug in both the Linux and SunOS 64-bit kernels:
4231         nanosleep mishandles sleeps for longer than 2**31 seconds.
4232         Problem reported by Frank v Waveren in
4233         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00298.html>.
4234         * lib/nanosleep.c (BILLION): New constant.
4235         (getnow) [HAVE_BUG_BIG_NANOSLEEP]: New functions.
4236         (rpl_nanosleep) [HAVE_BUG_BIG_NANOSLEEP]: Completely new
4237         implementation.
4238
4239 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
4240
4241         * modules/nanosleep (Depends-on): Add gettime.
4242
4243 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
4244         and Simon Josefsson  <jas@extundo.com>
4245         and Oskar Liljeblad  <oskar@osk.mine.nu>
4246
4247         * MODULES.html.sh (Support for building documentation): Add gpl, lgpl.
4248         * gnulib-tool (func_import): New license type 'unmodifiable license
4249         text'.
4250         * modules/fdl: Use it.  Longer description.
4251         * module/gpl, module/lgpl: New files.
4252
4253 2006-08-30  Jim Meyering  <jim@meyering.net>
4254
4255         * lib/isapipe.c (isapipe): Rename local s/fd/fd_pair/ to avoid
4256         shadowing the parameter.
4257
4258 2006-08-29  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4259
4260         Sync from Libtool:
4261
4262         2006-08-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4263
4264         * lib/libltdl/argz.c: Use `#ifdef HAVE_CONFIG_H', to facilitate code
4265         sharing with gnulib.  Report by Eric Blake.
4266
4267 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
4268
4269         * modules/isapipe: New file.
4270         * MODULES.html.sh (File descriptor based Input/Output): Add isapipe.
4271
4272 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
4273
4274         * modules/configmake (Makefile.am): Add a comment, and omit
4275         the CONFIGMAKE_ prefix from generated macro names.  Suggested
4276         by Bruno Haible.
4277
4278 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
4279
4280         * m4/isapipe.m4: New file.
4281
4282 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
4283
4284         * lib/isapipe.c, lib/isapipe.h: New files.
4285
4286 2006-08-29  Jim Meyering  <jim@meyering.net>
4287
4288         * modules/configmake (Makefile.am): Make configmake.h depend on
4289         Makefile.  Otherwise, a stale configmake.h could hang around.
4290
4291 2006-08-29  Eric Blake  <ebb9@byu.net>
4292
4293         * lib/error.c (error_at_line, print_errno_message): Match libc, after
4294         resolution of upstream bug 3044.
4295
4296 2006-08-29  Bruno Haible  <bruno@clisp.org>
4297
4298         * modules/localcharset (Depends-on): Add configmake.
4299         (Makefile.am): Remove setting of LIBDIR through DEFS.
4300
4301 2006-08-29  Bruno Haible  <bruno@clisp.org>
4302
4303         * lib/localcharset.c: Include configmake.h in order to get LIBDIR
4304         defined.
4305
4306 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
4307
4308         * modules/fcntl: New file.
4309         * modules/chdir-safer (Depends-on): Add fcntl.
4310         * modules/fts: Likewise.
4311         * modules/mkdir-p: Likewise.
4312
4313         * modules/stdint (Makefile.am): Do not substitute ABSOLUTE_INTTYPES_H.
4314         This undoes the most recent change, since we're now addressing the
4315         problem in a different way.
4316
4317         * gnulib-tool (emit_lib_Makefile_am): Don't put $makefile_name
4318         into output, since the output might be called Makefile.am even
4319         if $makefile_name is something different.
4320         (func_import): Use $makefile_am rather than
4321         ${makefile_name-Makefile.am}, to fix a bug where makefile_name was
4322         empty.
4323
4324         * modules/inttypes (Files): Add m4/inttypes-h.m4.
4325
4326 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
4327
4328         * m4/inttypes.m4 (gl_INTTYPES_H): Move ABSOLUTE_INTTYPES_H code here...
4329         * m4/stdint.m4 (gl_STDINT_H): ... from here.  This undoes the most
4330         recent change to stdint.m4, since we're now addressing the problem in a
4331         different way.
4332
4333 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
4334
4335         * m4/fcntl_h.m4: New file.
4336
4337 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
4338
4339         * lib/fcntl_.h: New file.
4340         * lib/chdir-safer.c (O_DIRECTORY, O_NOFOLLOW): Remove, now that we have
4341         the fcntl module.
4342         * lib/dirchownmod.c: Likewise.
4343         * lib/fts.c: Likewise.
4344
4345         * lib/inttypes_.h [defined _GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H]:
4346         Include @ABSOLUTE_INTTYPES_H@ if available, but do nothing else.
4347         * lib/stdint_.h (_GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H): Define
4348         just before including <inttypes.h>, to avoid circular inclusion.
4349
4350 2006-08-28  Jim Meyering  <jim@meyering.net>
4351
4352         * doc/visibility.texi: Actually read and correct the grammar of the
4353         sentence affected by yesterday's change.
4354
4355 2006-08-28  Eric Blake  <ebb9@byu.net>
4356
4357         * modules/inttypes (Makefile.am): Fix sed error when inttypes.h
4358         needs wrapper.
4359
4360 2006-08-28  Eric Blake  <ebb9@byu.net>
4361
4362         * m4/inttypes.m4 (gl_INTTYPES_H): Fix missing #endif.
4363
4364 2006-08-28  Eric Blake  <ebb9@byu.net>
4365
4366         * m4/codeset.m4 (AM_LANGINFO_CODESET): Avoid compiler warning.
4367
4368 2006-08-28  Bruno Haible  <bruno@clisp.org>
4369
4370         * modules/c-strstr: New file, from GNU gettext.
4371         * MODULES.html.sh (String handling): Add c-strstr.
4372
4373 2006-08-28  Bruno Haible  <bruno@clisp.org>
4374
4375         * m4/inttypes.m4 (gl_INTTYPES_H): Don't test for the existence of SCNX*
4376         macros.
4377         Reported by Eric Blake.
4378
4379 2006-08-28  Bruno Haible  <bruno@clisp.org>
4380
4381         * lib/vasnprintf.c (EOVERFLOW): Remove definition.
4382         (VASNPRINTF): Return a string of length > INT_MAX without failing.
4383         * lib/vasprintf.c: Include errno.h, limits.h.
4384         (EOVERFLOW): New fallback definition.
4385         (vasprintf): Test here whether the string length is > INT_MAX.
4386         * lib/vsnprintf.c: Include errno.h, limits.h.
4387         (EOVERFLOW): New fallback definition.
4388         (vsnprintf): Fix bug when generated string was too long for the buffer.
4389         Test here whether the string length is > INT_MAX.
4390
4391 2006-08-28  Bruno Haible  <bruno@clisp.org>
4392
4393         * lib/inttypes_.h (SCNX*): Remove definitions.
4394         Reported by Eric Blake.
4395
4396 2006-08-28  Bruno Haible  <bruno@clisp.org>
4397
4398         * lib/c-strstr.h: New file, from GNU gettext.
4399         * lib/c-strstr.c: New file, from GNU gettext.
4400
4401 2006-08-28  Bruno Haible  <bruno@clisp.org>
4402
4403         * gnulib-tool: Reorder some statements.
4404
4405 2006-08-28  Bruno Haible  <bruno@clisp.org>
4406
4407         * gnulib-tool: New option --makefile-name.
4408         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am): Use
4409         $makefile_name.
4410         (func_import): Write $makefile_name to the cache file, and read it from
4411         there unless explicitly specified. Use $makefile_name as file name
4412         instead of Makefile.am. Adjust the recommendations accordingly.
4413
4414 2006-08-28  Bruno Haible  <bruno@clisp.org>
4415
4416         * gnulib-tool (func_verify_module): Check against misapplying patch.
4417
4418 2006-08-28  Bruno Haible  <bruno@clisp.org>
4419
4420         * gnulib-tool (func_relativize, func_relconcat): New functions.
4421         Give an error if --local-dir is given with --update.
4422         Remove trailing slashes from $local_gnulib_dir.
4423         (func_import): Store the relativized $local_gnulib_dir in
4424         gnulib-cache.m4, and read it from there if not specified explicitly.
4425
4426 2006-08-28  Bruno Haible  <bruno@clisp.org>
4427
4428         * gnulib-tool (func_get_tests_module): Don't assume that $gnulib_dir
4429         is the current directory. Respect also $local_gnulib_dir.
4430
4431 2006-08-28  Bruno Haible  <bruno@clisp.org>
4432             Simon Josefsson  <jas@extundo.com>
4433
4434         BeOS portability.
4435         * lib/getaddrinfo.c (PF_INET, PF_UNSPEC): New macros.
4436
4437 2006-08-27  Jim Meyering  <jim@meyering.net>
4438
4439         * doc/visibility.texi: Remove duplicate word: "pointer".
4440
4441 2006-08-26  Bruno Haible  <bruno@clisp.org>
4442
4443         * modules/inttypes (Files): Add lib/inttypes_.h, remove lib/inttypes.h.
4444         Add m4/inttypes.m4, remove m4/_inttypes_h.m4 and m4/include_next.m4.
4445         (Makefile.am): Create inttypes.h from inttypes_.h.
4446         * modules/stdint (Makefile.am): Substitute also ABSOLUTE_INTTYPES_H.
4447
4448         * modules/imaxabs: New file.
4449
4450         * modules/imaxdiv: New file.
4451
4452 2006-08-26  Bruno Haible  <bruno@clisp.org>
4453
4454         * m4/inttypes.m4: New file.
4455         * m4/_inttypes_h.m4: Remove file.
4456         * m4/inttypes-pri.m4 (gt_INTTYPES_PRI): Also AC_SUBST
4457         PRI_MACROS_BROKEN.
4458         * m4/stdint.m4 (gl_STDINT_H): Define also ABSOLUTE_INTTYPES_H.
4459
4460         * m4/imaxabs.m4: New file.
4461
4462         * m4/imaxdiv.m4: New file.
4463
4464 2006-08-26  Bruno Haible  <bruno@clisp.org>
4465
4466         * lib/inttypes_.h: New file.
4467         * lib/inttypes.h: Remove file.
4468         * lib/stdint_.h: Include <inttypes.h> through its absolute filename.
4469
4470         * lib/imaxabs.c: New file.
4471
4472         * lib/imaxdiv.c: New file.
4473
4474 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
4475
4476         New config-h module, so that "make" output needn't be cluttered
4477         by -DHAVE_CONFIG_H.
4478         * MODULES.html.sh (Support for building libraries and executables):
4479         Add config-h.
4480         * modules/config-h: New file.
4481         * gnulib-tool (nl, sed_transform_lib_file): New vars.
4482         (func_import): Turn "#ifdef HAVE_CONFIG_H" to "#if 1" if
4483         the config-h module is used.
4484
4485         New configmake module, so that "make" output needn't be cluttered
4486         by fluff like '-DLIBDIR=\"/usr/local/lib\"'.
4487         * MODULES.html.sh (Support for building libraries and executables):
4488         Add configmake.
4489         * modules/configmake: New file.
4490
4491 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
4492
4493         * m4/config-h.m4: New file.
4494
4495 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
4496
4497         * config/srclist.txt: Add elisp-comp.
4498
4499 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
4500
4501         * MODULES.html.sh (Support for building libraries and executables):
4502         Add elisp-comp.
4503         * build-aux/elisp-comp: New file.
4504         * modules/elisp-comp: New file.
4505
4506 2006-08-24  Bruno Haible  <bruno@clisp.org>
4507
4508         * gnulib-tool (func_create_testdir): Use non-default values of
4509         sourcebase and m4base.
4510
4511 2006-08-24  Bruno Haible  <bruno@clisp.org>
4512
4513         * MODULES.html.sh (Compatibility checks for POSIX:2001 functions: Fix
4514         HTML structure.
4515
4516 2006-08-23  Paul Eggert  <eggert@cs.ucla.edu>
4517
4518         * modules/openat (Depends-on): Add lchown.
4519
4520 2006-08-23  Bruno Haible  <bruno@clisp.org>
4521
4522         * gnulib-tool (func_import, func_create_testdir): Emit an invocation
4523         of gl_LOCK_EARLY instead of gl_LOCK.
4524
4525 2006-08-23  Bruno Haible  <bruno@clisp.org>
4526
4527         * m4/lock.m4 (gl_LOCK_BODY): Change the default value of gl_use_threads
4528         on OSF/1 to no.
4529         Reported by Stephen Cartwright <sgcartwr@ucalgary.ca>.
4530
4531 2006-08-23  Bruno Haible  <bruno@clisp.org>
4532
4533         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Don't consider BeOS statvfs
4534         as unusable.
4535
4536         * m4/lock.m4 (gl_LOCK_EARLY): Renamed from gl_LOCK.
4537         (gl_LOCK_BODY): Remove gl_PREREQ_LOCK invocation.
4538         (gl_LOCK): New macro.
4539
4540 2006-08-22  Simon Josefsson  <jas@extundo.com>
4541
4542         * modules/gc-md5 (Makefile.am): Need to add md5.h, after changes
4543         to md5 module.
4544
4545 2006-08-22  Simon Josefsson  <jas@extundo.com>
4546
4547         * MODULES.html.sh: Add "Support for maintaining and release
4548         projects".
4549
4550         * build-aux/gnupload: New file, from coreutils.
4551
4552 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
4553
4554         Avoid the need for AC_LIBSOURCES in m4 macros.
4555         * modules/arcfour (EXTRA_DIST): Add arcfour.h.
4556         * modules/arctwo (EXTRA_DIST): Add arctwo.h.
4557         * modules/check-version (EXTRA_DIST): Add check-version.h.
4558         * modules/crc (EXTRA_DIST): Add crc.h.
4559         * modules/des (EXTRA_DIST): Add des.h.
4560         * modules/gc (EXTRA_DIST): Add gc.h.
4561         * modules/getdelim (EXTRA_DIST): Add getdelim.h.
4562         * modules/getline (EXTRA_DIST): Add getline.h.
4563         * modules/getlogin_r (EXTRA_DIST): Add getlogin_r.h.
4564         * modules/hmac-md5 (EXTRA_DIST): Add hmac.h.
4565         * modules/hmac-sha1 (EXTRA_DIST): Add hmac.h.
4566         * modules/md2 (EXTRA_DIST): Add md2.h.
4567         * modules/md4 (EXTRA_DIST): Add md4.h.
4568         * modules/pagealign_alloc (EXTRA_DIST): Add pagealign_alloc.h.
4569         * modules/read-file (EXTRA_DIST): Add read-file.h.
4570         * modules/readline (EXTRA_DIST): Add readline.h.
4571         * modules/rijndael (EXTRA_DIST): Add rijndael-alg-fst.h,
4572         rijndael-api-fst.h.
4573
4574 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
4575
4576         * m4/rijndael.m4 (gl_ARCFOUR):
4577         * m4/arctwo.m4 (gl_ARCTWO):
4578         * m4/check-version.m4 (gl_CHECK_VERSION):
4579         * m4/crc.m4 (gl_CRC):
4580         * m4/des.m4 (gl_DES):
4581         * m4/gc-pbkdf2-sha1.m4 (gl_GC_PBKDF2_SHA1):
4582         * m4/gc.m4 (gl_GC):
4583         * m4/getdelim.m4 (gl_FUNC_GETDELIM):
4584         * m4/getline.m4 (gl_FUNC_GETLINE):
4585         * m4/getlogin_r.m4 (gl_GETLOGIN_R_SUBSTITUTE):
4586         * m4/hmac-md5.m4 (gl_HMAC_MD5):
4587         * m4/hmac-sha1.m4 (gl_HMAC_SHA1):
4588         * m4/md2.m4 (gl_MD2):
4589         * m4/md4.m4 (gl_MD4):
4590         * m4/pagealign_alloc.m4 (gl_PAGEALIGN_ALLOC):
4591         * m4/read-file.m4 (gl_FUNC_READ_FILE):
4592         * m4/readline.m4 (gl_FUNC_READLINE):
4593         * m4/rijndael.m4 (gl_RIJNDAEL):
4594         Don't use AC_LIBSOURCES; instead, rely on the files in ../modules/
4595         to get the necessary .h files and whatnot.
4596
4597 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
4598
4599         * config/srclist.txt: Remove gnupload, since coreutils now syncs from
4600         gnulib rather than the other way around.
4601         * config/srclistvars.sh (COREUTILS): Remove.
4602
4603 2006-08-22  Jim Meyering  <jim@meyering.net>
4604
4605         * modules/mkdir-p (Makefile.am): Fix typo: s/lib+SOURCES/lib_SOURCES/.
4606
4607         * modules/getpass-gnu (Makefile.am): Add getpass.h to EXTRA_DIST.
4608
4609 2006-08-22  Eric Blake  <ebb9@byu.net>
4610
4611         * modules/regexprops-generic: New file.
4612         * MODULES.html.sh (Support for building documentation): List it.
4613
4614 2006-08-22  Eric Blake  <ebb9@byu.net>
4615
4616         * m4/stdint_h.m4 (gl_AC_HEADER_STDINT_H): Avoid compiler warning.
4617         * m4/inttypes_h.m4 (gl_AC_HEADER_INTTYPES_H): Likewise.
4618         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Likewise.
4619         * m4/intmax_t.m4 (gt_AC_TYPE_INTMAX_T): Likewise.
4620
4621 2006-08-22  Bruno Haible  <bruno@clisp.org>
4622
4623         * gnulib-tool (func_emit_lib_Makefile_am): Don't treat lib_LIBRARIES
4624         and lib_LTLIBRARIES like the other lib_* variables.
4625
4626 2006-08-22  Bruno Haible  <bruno@clisp.org>
4627
4628         * build-aux/x-to-1.in: New file, from GNU gettext.
4629
4630 2006-08-22  Bruno Haible  <bruno@clisp.org>
4631
4632         * m4/readutmp.m4 (gl_READUTMP): Compile readutmp.c only if <utmp.h> or
4633         <utmpx.h> exists.
4634
4635 2006-08-22  Bruno Haible  <bruno@clisp.org>
4636
4637         * lib/readutmp.h: Skip most definitions if neither <utmp.h> nor
4638         <utmpx.h> exists.
4639
4640 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
4641
4642         BeOS portability.
4643         * lib/dirchownmod.c (dirchownmod): Don't use fchmod if it doesn't
4644         exist.
4645         Problem reported by Bruno Haible.
4646
4647 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
4648
4649         Avoid the need for AC_LIBSOURCES in m4 macros.
4650         * modules/acl (EXTRA_DIST): Add acl.h.
4651         * modules/argmatch (Files): Add m4/argmatch.m4.
4652         (configure.ac): Add gl_ARGMATCH.
4653         (EXTRA_DIST): Renamed from lib_SOURCES, for
4654         consistency with the other modules.  Remove argmatch.c.
4655         * modules/backupfile (EXTRA_DIST): Add backupfile.h.
4656         * modules/c-strtod (EXTRA_DIST): Add c-strtod.h.
4657         * modules/c-strtold (EXTRA_DIST): Add c-strtod.c, c-strtod.h.
4658         * modules/canonhost (EXTRA_DIST): Add c-canonhost.h.
4659         * modules/canonicalize (EXTRA_DIST): Add canonicalize.h.
4660         * modules/chdir-long (EXTRA_DIST): Add chdir-long.h.
4661         * modules/chdir-safer (EXTRA_DIST): Add chdir-safer.h.
4662         * modules/cloexec (EXTRA_DIST): Add cloexec.h.
4663         * modules/close-stream (EXTRA_DIST): Add close-stream.h.
4664         * modules/closeout (EXTRA_DIST): Add closeout.h.
4665         * modules/cycle-check (EXTRA_DIST): Add cycle-check.h.
4666         * modules/dev-ino (EXTRA_DIST): Add dev-ino.h.
4667         * modules/dirfd (EXTRA_DIST): Add dirfd.h.
4668         * modules/dirname (EXTRA_DIST): Renamed from lib_SOURCES.  Add
4669         dirname.h; remove basename.c and stripslash.c.
4670         * modules/exclude (EXTRA_DIST): Add exclude.h.
4671         * modules/exitfail (EXTRA_DIST): Add exitfail.h.
4672         * modules/fcntl-safer (EXTRA_DIST): Add fcntl-safer.h fcntl--.h.
4673         * modules/file-type (EXTRA_DIST): Add file-type.h.
4674         * modules/filemode (EXTRA_DIST): Add filemode.h.
4675         * modules/filenamecat (EXTRA_DIST): Add filenamecat.h.
4676         * modules/fopen-safer (EXTRA_DIST): Add stdio-safer.h stdio--.h.
4677         * modules/fpending (EXTRA_DIST): Add __fpending.h.
4678         * modules/fprintftime (EXTRA_DIST): Add fprintftime.h.
4679         * modules/fsusage (EXTRA_DIST): Add fsusage.h.
4680         * modules/fts (EXTRA_DIST): Add fts_.h fts-cycle.c.
4681         * modules/getcwd (EXTRA_DIST): Add getcwd.h.
4682         * modules/getdate (EXTRA_DIST): Add getdate.c.
4683         * modules/gethrxtime (EXTRA_DIST): Add gethrxtime.h xtime.h.
4684         * modules/getpagesize (EXTRA_DIST): Add getpagesize.h.
4685         * modules/getpass (EXTRA_DIST): Add getpass.h.
4686         * modules/glob (EXTRA_DIST): Add glob_.h glob-libc.h.
4687         * modules/group-member (EXTRA_DIST): Add group-member.h.
4688         * modules/hard-locale (EXTRA_DIST): Add hard-locale.h.
4689         * modules/hash (EXTRA_DIST): Add hash.h.
4690         * modules/human (EXTRA_DIST): Add human.h.
4691         * modules/inttypes (EXTRA_DIST): Add inttypes.h.
4692         * modules/lchmod (EXTRA_DIST): Add lchmod.h.
4693         * modules/lchown (EXTRA_DIST): Add lchown.h.
4694         * modules/long-options (EXTRA_DIST): Add long-options.h.
4695         * modules/lstat (EXTRA_DIST): Add lstat.h.
4696         * modules/md5 (EXTRA_DIST): Add memcasecmp.h.
4697         * modules/memcoll (EXTRA_DIST): Add memcoll.h.
4698         * modules/mempcpy (EXTRA_DIST): Add mempcpy.h.
4699         * modules/memrchr (EXTRA_DIST): Add memrchr.h.
4700         * modules/memxor (EXTRA_DIST): Add memxor.h.
4701         * modules/mkancesdirs (EXTRA_DIST): Add mkancesdirs.h.
4702         * modules/mkdir-p (EXTRA_DIST): Add modechange.h.
4703         * modules/mountlist (EXTRA_DIST): Add mountlist.h.
4704         * modules/openat (EXTRA_DIST): Add at-func.c openat.h openat-priv.h.
4705         * modules/pathmax (EXTRA_DIST): Add pathmax.h.
4706         * modules/physmem (EXTRA_DIST): Add physmem.h.
4707         * modules/posixtm (EXTRA_DIST): Add posixtm.h.
4708         * modules/posixver (EXTRA_DIST): Add posixver.h.
4709         * modules/quote (EXTRA_DIST): Add quote.h.
4710         * modules/quotearg (EXTRA_DIST): Add quotearg.h.
4711         * modules/readtokens (EXTRA_DIST): Add readtokens.h.
4712         * modules/readutmp (EXTRA_DIST): Add readutmp.h.
4713         * modules/regex (EXTRA_DIST): Add regcomp.c regex.h regex_internal.c
4714         regex_internal.h regexec.c.
4715         * modules/safe-read (EXTRA_DIST): Add safe-read.h.
4716         * modules/safe-write (EXTRA_DIST): Add safe-write.h.
4717         * modules/same (EXTRA_DIST): Add same.h.
4718         * modules/same-inode (EXTRA_DIST): Add same-inode.h.
4719         * modules/save-cwd (EXTRA_DIST): Add save-cwd.h.
4720         * modules/savedir (EXTRA_DIST): Add savedir.h.
4721         * modules/sha1 (EXTRA_DIST): Add sha1.h.
4722         * modules/sig2str (EXTRA_DIST): Add sig2str.h.
4723         * modules/stat-macros (EXTRA_DIST): Add stat-macros.h.
4724         * modules/stat-time (EXTRA_DIST): Add stat-time.h.
4725         * modules/stdlib-safer (EXTRA_DIST): Add stdlib-safer.h stdlib--.h.
4726         * modules/strdup (EXTRA_DIST): Add strdup.h.
4727         * modules/strftime (EXTRA_DIST): Add strftime.h.
4728         * modules/strndup (EXTRA_DIST): Add strndup.h.
4729         * modules/strnlen (EXTRA_DIST): Add strnlen.h.
4730         * modules/strverscmp (EXTRA_DIST): Add strverscmp.h.
4731         * modules/time_r (EXTRA_DIST): Add time_r.h.
4732         * modules/timespec (EXTRA_DIST): Add timespec.h.
4733         * modules/tmpfile-safer (EXTRA_DIST): Add stdio-safer.h stdio--.h.
4734         * modules/unistd-safer (EXTRA_DIST): Add unistd-safer.h unistd--.h.
4735         * modules/unlinkdir (EXTRA_DIST): Add unlinkdir.h.
4736         * modules/unlocked-io (EXTRA_DIST): Add unlocked-io.h.
4737         * modules/userspec (EXTRA_DIST): Add userspec.h.
4738         * modules/utimecmp (EXTRA_DIST): Add utimecmp.h.
4739         * modules/utimens (EXTRA_DIST): Add utimens.h.
4740         * modules/xalloc (EXTRA_DIST): Add xalloc.h.
4741         * modules/xgetcwd (EXTRA_DIST): Add xgetcwd.h.
4742         * modules/xnanosleep (EXTRA_DIST): Add xnanosleep.h.
4743         * modules/xreadlink (EXTRA_DIST): Add xreadlink.h.
4744         * modules/xstrtod (EXTRA_DIST): Add xstrtod.h.
4745         * modules/xstrtol (EXTRA_DIST): Add xstrtol.h.
4746         * modules/xstrtold (EXTRA_DIST): Add xstrtod.c xstrtod.h.
4747         * modules/yesno (EXTRA_DIST): Add yesno.h.
4748
4749 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
4750
4751         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Check for fchmod.
4752
4753         * m4/argmatch.m4: New file, from coreutils with AC_LIBSOURCES removed.
4754         * m4/dev-ino.m4, same-inode.m4: Remove.
4755
4756         * m4/_inttypes_h.m4 (gl_INTTYPES_H):
4757         * m4/acl.m4 (AC_FUNC_ACL):
4758         * m4/backupfile.m4 (gl_BACKUPFILE):
4759         * m4/c-strtod.m4 (gl_C99_STRTOLD):
4760         * m4/canon-host.m4 (gl_CANON_HOST):
4761         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME):
4762         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG):
4763         * m4/chdir-safer.m4 (gl_CHDIR_SAFER):
4764         * m4/cloexec.m4 (gl_CLOEXEC):
4765         * m4/close-stream.m4 (gl_CLOSE_STREAM):
4766         * m4/closeout.m4 (gl_CLOSEOUT):
4767         * m4/dirfd.m4 (gl_FUNC_DIRFD):
4768         * m4/dirname.m4 (gl_DIRNAME):
4769         * m4/exclude.m4 (gl_EXCLUDE):
4770         * m4/exitfail.m4 (gl_EXITFAIL):
4771         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER):
4772         * m4/file-type.m4 (gl_FILE_TYPE):
4773         * m4/filemode.m4 (gl_FILEMODE):
4774         * m4/filenamecat.m4 (gl_FILE_NAME_CONCAT):
4775         * m4/fpending.m4 (gl_FUNC_FPENDING):
4776         * m4/fprintftime.m4 (gl_FPRINTFTIME):
4777         * m4/fts.m4 (gl_FUNC_FTS):
4778         * m4/getcwd.m4 (gl_FUNC_GETCWD_NULL):
4779         * m4/getdate.m4 (gl_GETDATE):
4780         * m4/gethrxtime.m4 (gl_GETHRXTIME):
4781         * m4/getpagesize.m4 (gl_GETPAGESIZE):
4782         * m4/getpass.m4 (gl_FUNC_GETPASS):
4783         * m4/gettime.m4 (gl_GETTIME):
4784         * m4/getugroups.m4 (gl_GETUGROUPS):
4785         * m4/glob.m4 (gl_GLOB_SUBSTITUTE):
4786         * m4/group-member.m4 (gl_FUNC_GROUP_MEMBER):
4787         * m4/hard-locale.m4 (gl_HARD_LOCALE):
4788         * m4/hash.m4 (gl_HASH):
4789         * m4/idcache.m4 (gl_IDCACHE):
4790         * m4/lchmod.m4 (gl_FUNC_LCHMOD):
4791         * m4/lchown.m4 (gl_FUNC_LCHOWN):
4792         * m4/long-options.m4 (gl_LONG_OPTIONS):
4793         * m4/lstat.m4 (gl_FUNC_LSTAT):
4794         * m4/md5.m4 (gl_MD5):
4795         * m4/memcasecmp.m4 (gl_MEMCASECMP):
4796         * m4/memcoll.m4 (gl_MEMCOLL):
4797         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY):
4798         * m4/memrchr.m4 (gl_FUNC_MEMRCHR):
4799         * m4/memxor.m4 (gl_MEMXOR):
4800         * m4/mkancesdirs.m4 (gl_MKANCESDIRS):
4801         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS):
4802         * m4/modechange.m4 (gl_MODECHANGE):
4803         * m4/mountlist.m4 (gl_MOUNTLIST):
4804         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
4805         * m4/openat.m4 (gl_FUNC_OPENAT):
4806         * m4/pathmax.m4 (gl_PATHMAX):
4807         * m4/physmem.m4 (gl_PHYSMEM):
4808         * m4/posixtm.m4 (gl_POSIXTM):
4809         * m4/posixver.m4 (gl_POSIXVER):
4810         * m4/quote.m4 (gl_QUOTE):
4811         * m4/quotearg.m4 (gl_QUOTEARG):
4812         * m4/readtokens.m4 (gl_READTOKENS):
4813         * m4/readutmp.m4 (gl_READUTMP):
4814         * m4/regex.m4 (gl_REGEX):
4815         * m4/safe-read.m4 (gl_SAFE_READ):
4816         * m4/safe-write.m4 (gl_SAFE_WRITE):
4817         * m4/same.m4 (gl_SAME):
4818         * m4/save-cwd.m4 (gl_SAVE_CWD):
4819         * m4/savedir.m4 (gl_SAVEDIR):
4820         * m4/settime.m4 (gl_SETTIME):
4821         * m4/sha1.m4 (gl_SHA1):
4822         * m4/sig2str.m4 (gl_FUNC_SIG2STR):
4823         * m4/stat-macros.m4 (gl_STAT_MACROS):
4824         * m4/stat-time.m4 (gl_STAT_TIME):
4825         * m4/stdio-safer.m4 (gl_FOPEN_SAFER):
4826         * m4/stdlib-safer.m4 (gl_STDLIB_SAFER):
4827         * m4/strdup.m4 (gl_FUNC_STRDUP):
4828         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME):
4829         * m4/strndup.m4 (gl_FUNC_STRNDUP):
4830         * m4/strnlen.m4 (gl_FUNC_STRNLEN):
4831         * m4/strverscmp.m4 (gl_FUNC_STRVERSCMP):
4832         * m4/time_r.m4 (gl_TIME_R):
4833         * m4/timespec.m4 (gl_TIMESPEC):
4834         * m4/unistd-safer.m4 (gl_UNISTD_SAFER):
4835         * m4/unlinkdir.m4 (gl_UNLINKDIR):
4836         * m4/unlocked-io.m4 (gl_FUNC_GLIBC_UNLOCKED_IO):
4837         * m4/userspec.m4 (gl_USERSPEC):
4838         * m4/utimecmp.m4 (gl_UTIMECMP):
4839         * m4/utimens.m4 (gl_UTIMENS):
4840         * m4/xalloc.m4 (gl_XALLOC):
4841         * m4/xgetcwd.m4 (gl_XGETCWD):
4842         * m4/xnanosleep.m4 (gl_XNANOSLEEP):
4843         * m4/xreadlink.m4 (gl_XREADLINK):
4844         * m4/xstrtod.m4 (gl_XSTRTOD):
4845         * m4/yesno.m4 (gl_YESNO):
4846         Don't use AC_LIBSOURCES; instead, rely on the files in ../modules/
4847         to get the necessary .h files and whatnot.
4848
4849 2006-08-21  Mark D. Baushke  <mdb@gnu.org>
4850             Bruno Haible  <bruno@clisp.org>
4851
4852         * gnulib-tool (func_verify_module): Work around Sun's non-POSIX 1003.2
4853         /bin/sh understanding of '!' conditional negation.
4854
4855 2006-08-21  Jim Meyering  <jim@meyering.net>
4856
4857         * modules/openat (Depends-on): Really alphabetize.
4858
4859         * modules/acl (Depends-on): Add error and quote.
4860
4861         * check-module (find_included_lib_files): Add at-func.c to the
4862         ok-to-include-more-than-once white list.
4863
4864         * modules/openat (Depends-on): Add lstat.  Alphabetize.
4865
4866 2006-08-21  Bruno Haible  <bruno@clisp.org>
4867
4868         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
4869         Emit a pkgdata_DATA variable only if some snippets add contents to it.
4870         Reported by Martin Lambers <marlam@marlam.de>.
4871
4872 2006-08-21  Bruno Haible  <bruno@clisp.org>
4873
4874         * gnulib-tool (func_emit_lib_Makefile_am): If the snippets already
4875         specify an installation location, don't emit a noinst_LIBRARIES or
4876         noinst_LTLIBRARIES assignment.
4877
4878 2006-08-21  Bruno Haible  <bruno@clisp.org>
4879
4880         BeOS portability.
4881         * modules/mbchar (Include): Don't test HAVE_WCTYPE_H any more, since
4882         BeOS has mbrtowc() but no <wctype.h>.
4883
4884 2006-08-21  Bruno Haible  <bruno@clisp.org>
4885
4886         BeOS portability.
4887         * m4/mbchar.m4 (gl_MBCHAR): Compile mbchar.c also if <wctype.h> doesn't
4888         exist.
4889
4890 2006-08-21  Bruno Haible  <bruno@clisp.org>
4891
4892         BeOS portability.
4893         * lib/mbchar.h: Include <wctype.h> only if it exists.
4894
4895 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
4896
4897         Remove files that are no longer needed by their respective modules.
4898         * m4/obstack.m4: Remove.
4899         * m4/strerror_r.m4: Remove.
4900         * m4/uint32_t.m4: Remove.
4901         * m4/uintptr_t.m4: Remove.
4902         * m4/ullong_max.m4: Remove.
4903         * m4/xstrtoimax.m4: Remove.
4904         * m4/xstrtoumax.m4: Remove.
4905
4906         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Do not require
4907         gl_AC_TYPE_UINTMAX_T, gl_STRUCT_DEV_INO, or gl_SAME_INODE, since gnulib
4908         dependencies now capture this.
4909
4910         * m4/cycle-check.m4 (gl_CYCLE_CHECK):
4911         Do not use AC_LIBSOURCES, since gnulib modules now do this.
4912         * m4/fsusage.m4 (gl_FSUSAGE): Likewise.
4913         * m4/human.m4 (gl_HUMAN): Likewise.
4914         * m4/inttostr.m4 (gl_INTTOSTR): Likewise.
4915         * m4/xstrtol.m4 (gl_XSTRTOL): Likewise.
4916
4917         * m4/filemode.m4 (gl_FILEMODE): Require AC_STRUCT_ST_DM_MODE.
4918
4919         * m4/filemode.m4 (gl_PREREQ_FSUSAGE_EXTRA): Do not require
4920         gl_AC_TYPE_INTMAX_T or gl_AC_TYPE_UINTMAX_T, since we now require
4921         stdint.
4922         * m4/human.m4 (gl_HUMAN): Likewise.
4923         * m4/inttostr.m4 (gl_PREREQ_INTTOSTR): Likewise.
4924         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Likewise.
4925         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Likewise.
4926         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Likewise.
4927         * m4/xstrtol (gl_XSTRTOL): Likewise.
4928
4929         * m4/gethrxtime.m4 (gl_XTIME): gl_AC_TYPE_LONG_LONG ->
4930         AC_TYPE_LONG_LONG_INT.
4931         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Likewise.
4932         * m4/strtoll.m4 (gl_FUNC_STRTOLL): Likewise.
4933         * m4/strtoull.m4 (gl_FUNC_STRTOULL): Likewise, for unsigned long.
4934         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Likewise.
4935
4936         * m4/human.m4 (gl_HUMAN): Do not require AM_STDBOOL_H since we depend
4937         on stdbool.
4938
4939         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL_H, gl_PREREQ_XSTRTOL): Remove.
4940         (gl_PREREQ_XSTRTOUL): Remove.
4941
4942         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Check for hasmntopt.
4943
4944         * m4/posixver.m4: Fix comment since head -1 now works even in POSIX
4945         mode.
4946
4947 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
4948
4949         Add and change modules to make it easier for coreutils to use
4950         gnulib-tool.
4951         * modules/backupfile (Files): Remove m4/d-ino.m4.
4952         (Depends-on): Add d-ino.
4953         * modules/cycle-check (Depends-on): Add stdint.
4954         (lib_SOURCES): Add cycle-check.h.
4955         * modules/d-ino: New module.
4956         * modules/d-type: New module.
4957         * modules/error (Files): Remove m4/strerror_r.m4.
4958         * modules/filemode (Files): Add m4/st_dm_mode.m4.
4959         * modules/fsuage (Files): Remove m4/ulonglong.m4, m4/stdint_h.m4,
4960         m4/inttypes_h.m4, m4/uintmax_t.m4.
4961         (Depends-on): Add stdint.
4962         (lib_SOURCES): Add fsusage.h.
4963         * modules/getcwd (Files): Remove d-ino.m4.
4964         (Depends-on): Add d-ino.
4965         * modules/getndelim2 (Depends-on): Add stdint.
4966         * modules/glob (Files): Remove m4/d-type.m4.
4967         (Depends-on): Add d-type.
4968         * modules/host-os: New module.
4969         * modules/human (Files):  Remove m4/ulonglong.m4, m4/stdint_h.m4,
4970         m4/inttypes_h.m4, m4/uintmax_t.m4.
4971         * Depends-on: Add stdint.
4972         (lib_SOURCES): Add human.h.
4973         * modules/inttostr (Files): Remove m4/intmax_t.m4,
4974         m4/inttostr.m4, m4/inttypes_h.m4, m4/longlong.m4, m4/stdint_h.m4,
4975         m4/uintmax_t.m4, m4/ulonglong.m4.
4976         (Depends-on): Add stdint.
4977         (EXTRA_DIST): Add inttostr.h.
4978         * modules/lchmod: New module.
4979         * modules/link-follow: New module.
4980         * modules/mkdir-p (Files): Remove lib/lchmod.h, m4/lchmod.m4.
4981         (Depends-on): Add lchmod.
4982         * modules/mkstemp (Files): Remove m4/ulonglong.m4,
4983         m4/stdint_h.m4, m4/inttypes_h.m4, m4/uintmax_t.m4.
4984         (Depends-on): Add stdint.
4985         * modules/obstack (Files): Remove m4/inttypes_h.m4, m4/obstack.m4,
4986         m4/stdint_h.m4, m4/uintmax_t.m4, m4/ulonglong.m4.
4987         (Depends-on): Add stdint.
4988         (configure.ac): Change gl_OBSTACK to AC_FUNC_OBSTACK.
4989         * modules/perl: New module.
4990         * modules/regex (Depends-on): Add stdint.
4991         * modules/rmdir-errno: New module.
4992         * modules/strtoimax (Files): Remove m4/stdint_h.m4, m4/inttypes_h.m4,
4993         m4/intmax_t.m4.
4994         (Depends-on): Add stdint.
4995         * modules/strtoumax (Files): Remove m4/stdint_h.m4, m4/inttypes_h.m4,
4996         m4/uintmax_t.m4.
4997         (Depends-on): Add stdint.
4998         * modules/unlink-busy: New module.
4999         * modules/utimecmp (Depends-on): Add stdint.
5000         * modules/uptime: New module.
5001         * modules/winsz-ioctl: New module.
5002         * modules/winsz-termios: New module.
5003         * modules/xnanosleep (Depends-on): Add nanosleep.
5004         * modules/ullong_max: Remove.
5005         * modules/xstrtoimax (Files): Remove m4/xstrtoimax.m4.
5006         (configure.ac): Remove gl_XSTRTOIMAX; no action needed now.
5007         * modules/xstrtol (Files): Remove m4/ulonglong.m4, m4/longlong.m4,
5008         m4/stdint_h.m4, m4/inttypes_h.m4, m4/uintmax_t.m4, m4/intmax_t.m4.
5009         (Depends-on): Add inttypes.
5010         (lib_SOURCES): Add xstrtol.h.
5011         * modules/xstrtoumax (Files): Remove m4/xstrtoumax.m4.
5012         (configure.ac): Remove gl_XSTRTOUMAX; no action needed now.
5013         * MODULES.html.sh: Move 'assert' into the assert section.
5014         Move 'dummy' into the linking section.
5015         Remove ullong_max.
5016         Add section for compatibility checks for POSIX:2001 functions,
5017         and put d-ino, d-type, link-follow, rmdir-errno, unlink-busy,
5018         winsz-ioctl, and winsz-termios into it.
5019         Add lchmod.
5020         Add top-level Misc section and put host-os, perl, and uptime
5021         into it.
5022
5023 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
5024
5025         * lib/cycle-check.h: Include <stdint.h> unconditionally, since we
5026         now assume the stdint module.  Do not include inttypes.h.
5027         * lib/fsusage.h: Likewise.
5028         * lib/getndelim2.c: Likewise.
5029         * lib/human.h: Likewise.
5030         * lib/inttostr.h: Likewise.
5031         * lib/obstack.c: Likewise.
5032         * lib/regex_internal.h: Likewise.
5033         * lib/tempname.c: Likewise.
5034         * lib/utimecmp.c: Likewise.
5035         * lib/xstrtol.h: Likewise.
5036
5037         * lib/stat_.h: Fix typo: HAVE_FUNC_LSTAT -> HAVE_LSTAT.
5038
5039         * lib/strtoimax.c: Adjust to macro name changes in Autoconf,
5040         e.g., HAVE_LONG_LONG -> HAVE_LONG_LONG_INT.
5041         * lib/xtime.h: Likewise.
5042
5043 2006-08-19  Paul Eggert  <eggert@cs.ucla.edu>
5044
5045         * modules/openat (Files): Add lib/fchmodat.c.
5046         Fixes problem reported by Jay Youngman.
5047
5048 2006-08-19  Paul Eggert  <eggert@cs.ucla.edu>
5049
5050         * lib/fchmodat.c: New file, from coreutils.  This was inadvertently
5051         omitted in the 2006-08-17 update.  Problem reported by Jay Youngman.
5052
5053 2006-08-18  Paul Eggert  <eggert@cs.ucla.edu>
5054             Bruno Haible  <bruno@clisp.org>
5055
5056         * m4/bison-i18n.m4 (BISON_I18N): Also handle the case where yacc exists
5057         and is a script that invokes bison. Tighten the code. Add comments.
5058
5059 2006-08-18  Jim Meyering  <jim@meyering.net>
5060
5061         * m4/gethrxtime.m4 (gl_PREREQ_GETHRXTIME): Also check for
5062         CLOCK_REALTIME, since gethrxtime may revert to using clock_gettime via
5063         gettime.c.  Gabor Z. Papp reported that gethrxtime-using programs
5064         failed to link due to unresolved clock_gettime on a linux-2.4.x system.
5065
5066 2006-08-18  Bruno Haible  <bruno@clisp.org>
5067
5068         * modules/bison-i18n: New file.
5069         * MODULES.html.sh (Internationalization functions): Add it.
5070
5071 2006-08-18  Bruno Haible  <bruno@clisp.org>
5072
5073         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Also check for
5074         sys/statvfs.h. When getmntinfo was found, check its declaration and
5075         set either MOUNTED_GETMNTINFO or MOUNTED_GETMNTINFO2 depending on it.
5076
5077 2006-08-18  Bruno Haible  <bruno@clisp.org>
5078
5079         * m4/bison-i18n.m4: New file, from bison.
5080
5081 2006-08-18  Bruno Haible  <bruno@clisp.org>
5082
5083         * lib/mountlist.c [MOUNTED_GETMNTINFO2]: Include sys/statvfs.h.
5084         (ME_DUMMY): Treat "kernfs" as a dummy.
5085         (read_file_system_list) [MOUNTED_GETMNTINFO2]: Implement.
5086
5087 2006-08-17  Paul Eggert  <eggert@cs.ucla.edu>
5088
5089         Update from coreutils.
5090
5091         2006-08-15  Jim Meyering  <jim@meyering.net>
5092
5093         * m4/openat.m4 (gl_FUNC_OPENAT): Add at-func.c via AC_LIBSOURCES.
5094
5095         2006-01-17  Jim Meyering  <jim@meyering.net>
5096
5097         * m4/fts.m4 (gl_FUNC_FTS_CORE): Depend on gl_FUNC_OPENAT.
5098
5099         2006-01-11  Jim Meyering  <jim@meyering.net>
5100
5101         * m4/openat.m4 (gl_FUNC_OPENAT): Require and compile fchmodat.c.
5102         Check for the lchmod function.
5103
5104 2006-08-17  Paul Eggert  <eggert@cs.ucla.edu>
5105
5106         Update from coreutils.
5107
5108         * lib/__fpending.h: Add copyright notice.
5109         * lib/fprintftime.h: Likewise.
5110         * lib/savedir.c: Use (C) in copyright notice.
5111         * lib/savedir.h: Likewise.
5112
5113         2006-08-15  Jim Meyering  <jim@meyering.net>
5114
5115         * lib/at-func.c: New file, with the logic of all emulated at-functions.
5116         * lib/openat-priv.h: Include <errno.h> and define ENOSYS,
5117         in support of the EXPECTED_ERRNO macro.
5118         * lib/openat.c (fstatat, unlinkat, fchownat): Remove function
5119         definitions.  Instead, define the appropriate symbols and include
5120         "at-func.c".
5121         * lib/mkdirat.c (mkdirat): Likewise.
5122         * lib/fchmodat.c (fchmodat): Likewise.
5123         (ENOSYS): Remove definition.
5124         * lib/openat.c: Don't include <errno.h>, now that "openat-priv.h" does
5125         it.  Don't include "unistd--.h" -- it wasn't ever used.
5126
5127         2006-01-17  Jim Meyering  <jim@meyering.net>
5128
5129         Rewrite fts.c not to change the current working directory,
5130         by using openat, fstatat, fdopendir, etc..
5131
5132         * lib/fts.c [! _LIBC]: Include "openat.h" and "unistd--.h".
5133         (HAVE_OPENAT_SUPPORT): Define.
5134         [_LIBC] (fchdir): Don't undef or define; no longer used.
5135         (FCHDIR): Define in terms of cwd_advance_fd rather than fchdir.
5136         Now, this `function' always succeeds, and consumes its file descriptor
5137         parameter -- so callers must not close such FDs.  Update callers.
5138         (diropen_fd, opendirat, cwd_advance_fd): New functions.
5139         (diropen): Add parameter, SP.  Adjust all callers.
5140         Implement using diropen_fd, rather than open.
5141         (fts_open): Initialize new member, fts_cwd_fd.
5142         Remove fts_rft-setting code.
5143         (fts_close): Close fts_cwd_fd, if necessary.
5144         (__opendir2): Define in terms of opendir or opendirat,
5145         depending on whether the FST_NOCHDIR flag is set.
5146         (fts_build): Since fts_safe_changedir consumes its FD, and since
5147         this code must do `closedir(dirp)', dup the dirfd(dirp) argument,
5148         and close the dup'd file descriptor upon failure.
5149         (fts_stat): Use fstatat(...AT_SYMLINK_NOFOLLOW) in place of lstat.
5150         (fts_safe_changedir): Tweak semantics to reflect that this function
5151         now calls cwd_advance_fd and hence consumes its FD argument.
5152         * lib/fts_.h [struct FTS] (fts_cwd_fd): New member.
5153         [struct FTS] (fts_rft): Remove now-unused member.
5154         [struct FTS] (fts_cycle.state): Improve comment.
5155
5156         * lib/openat.c (openat_needs_fchdir): New function.
5157         * lib/openat.h (openat_needs_fchdir): Declare it.
5158
5159 2006-08-16  Paul Eggert  <eggert@cs.ucla.edu>
5160
5161         * lib/memcoll.c (memcoll): Set errno = 0 in the shortcut case, too.
5162         Problem and fix reported by Pádraig Brady in
5163         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00099.html>.
5164
5165 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
5166
5167         * modules/cycle-check (configure.ac): Add gl_CYCLE_CHECK.
5168
5169 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
5170
5171         * lib/memcoll.c (memcoll): Optimize for the common case where the
5172         arguments are bytewise equal.
5173
5174 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
5175
5176         * doc/regexprops-generic.texi: Add a copyright notice.
5177
5178 2006-08-15  Bruno Haible  <bruno@clisp.org>
5179
5180         * modules/tmpdir (License): Change to LGPL.
5181
5182 2006-08-15  Bruno Haible  <bruno@clisp.org>
5183
5184         * gnulib-tool (func_all_modules, func_verify_module): COPYING is not a
5185         module.
5186
5187 2006-08-14  Simon Josefsson  <jas@extundo.com>
5188
5189         * config/srclist.txt: Add gnupload.
5190
5191 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
5192
5193         Change copyright notice from LGPL 2 to GPL 2, since that's the
5194         standard form used in the gnulib repository.
5195         * tests/test-lock.c: Likewise.
5196         * tests/test-stdint.c: Likewise.
5197         * tests/test-tls.c: Likewise.
5198
5199         * users.txt: Add bison, diffutils, libprelude, prelude-lml,
5200         prelude-manager.  User shorter URLs for GNU projects, without '?'.
5201         Add copyright notice.
5202
5203         * check-module: Add copyright notice.  Output a copyright
5204         notice if "--version" is specified.
5205         * modules/COPYING: New file.
5206         * tests/test-getaddrinfo.c: Add copyright notice.
5207         * tests/test-verify.c: Likewise.
5208
5209 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
5210
5211         Change copyright notice from LGPL 2 to GPL 2, since that's the
5212         standard form used in the gnulib repository.
5213         * lib/lock.c: LGPL -> GPL.
5214         * lib/lock.h: Likewise.
5215         * lib/strnlen1.c: Likewise.
5216         * lib/strnlen1.h: Likewise.
5217         * lib/tls.c: Likewise.
5218         * lib/tls.h: Likewise.
5219         * lib/tmpdir.c: Likewise.
5220
5221         * lib/TODO: Remove; this belongs only in coreutils.
5222
5223 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
5224
5225         Add copyright notices to long-enough files that lack them, since
5226         otherwise the files aren't clearly free.  Use the same notice that
5227         getdate.texi already uses.
5228         * doc/alloca-opt.texi: Add copyright notice.
5229         * doc/alloca.texi: Likewise.
5230         * doc/ctime.texi: Likewise.
5231         * doc/functions.texi: Likewise.
5232         * doc/gcd.texi: Likewise.
5233         * doc/gnulib-tool.texi: Likewise.
5234         * doc/inet_ntoa.texi: Likewise.
5235         * doc/visibility.texi: Likewise.
5236
5237         * doc/getdate.texi: Update FDL version from 1.1 to 1.2.
5238         * doc/quote.texi: Add copyright notice.
5239
5240         * doc/solaris-versions: Add SunOS 5.10, SunOS 1.x, SunOS 4.0, SunOS
5241         4.0.x, SunOS 4.1.1.1, SunOS 4.1.1_U1, SunOS 4.1.3B.  SunOS 4.1.3
5242         was Solaris 1.1A.  Remove space before B in Solaris 1.1.1B.
5243         Mention SunOS 5.11.  Mention that everything before SunOS 5.7
5244         is now obsolete, and give a pointer to the Sun list.
5245         Add copyright notice.
5246
5247 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
5248
5249         * config/srclistvars.sh: Add copyright notice.
5250
5251 2006-08-14  Eric Blake  <ebb9@byu.net>
5252
5253         Import the following change from libc:
5254
5255         2006-08-12  Ulrich Drepper  <drepper@redhat.com>
5256
5257         Upstream bug 2997.
5258         * lib/misc/error.c: Add space between program name and message if file
5259         name is missing.
5260
5261 2006-08-12  Karl Berry  <karl@gnu.org>
5262
5263         * config/srclist.txt (ssize_t.m4, sig_atomic_t.m4, signalblocking.m4):
5264         remove, these originate in gnulib now.
5265
5266 2006-08-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5267
5268         * doc/Makefile (standards.info standards.html standards.dvi):
5269         Also depend on make-stds.texi.
5270
5271 2006-08-11  Paul Eggert  <eggert@cs.ucla.edu>
5272
5273         * lib/pipe-safer.c (pipe_safer): Fix misspelling: HAVE_FUNC_PIPE ->
5274         HAVE_PIPE.  Fix a file descriptor leak when fd_safer fails.
5275
5276         * lib/regex_internal.c (re_string_skip_chars): Don't assume WEOF fits
5277         in wchar_t.  Problem reported by Eric Blake.
5278
5279         * lib/snprintf.c (snprintf): memcpy LEN bytes, not SIZE - 1, when
5280         LEN is smaller than SIZE.  Suggested by Bruno Haible.
5281         Also, help the compiler to keep LEN in a register.
5282
5283 2006-08-11  Eric Blake  <ebb9@byu.net>
5284
5285         * users.txt: Sort.  Add tar.
5286
5287 2006-08-11  Bruno Haible  <bruno@clisp.org>
5288
5289         * users.txt: New file.
5290
5291 2006-08-11  Bruno Haible  <bruno@clisp.org>
5292
5293         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Include <stdio.h> and <time.h>
5294         before <wchar.h>. Needed for OSF/1 and BSD/OS.
5295
5296 2006-08-10  Paul Eggert  <eggert@cs.ucla.edu>
5297
5298         * modules/snprintf (Depends-on): Remove minmax.
5299         (Maintainer): Add self and Bruno.
5300
5301 2006-08-10  Paul Eggert  <eggert@cs.ucla.edu>
5302
5303         * lib/.cppi-disable: Add snprintf.h, socket_.h.
5304         * lib/snprintf.c: Include <errno.h> and <limits.h>.
5305         (EOVERFLOW): Define if the system does not.
5306         Do not include "minmax.h"; it wasn't used.
5307         (snprintf): Don't assume size_t promotes to an unsigned type.
5308         Fix bug when generated string was too long for the buffer: the
5309         buffer's contents are supposed to be the initial prefix of the
5310         output.  Don't assume vasnprintf returns EOVERFLOW if the size
5311         exceeds INT_MAX; do the check ourselves.
5312
5313         Import the following changes from libc:
5314
5315         2006-06-02  Jakub Jelinek  <jakub@redhat.com>
5316
5317         * lib/posix/regex_internal.c (re_string_skip_chars): If no character
5318         has been converted at all, set *last_wc to WEOF.  If mbrtowc failed,
5319         set wc to the byte which couldn't be converted.
5320         (re_string_reconstruct): Don't clear valid_raw_len before calling
5321         re_string_skip_chars.  If wc is WEOF after re_string_skip_chars, set
5322         tip_context using re_string_context_at.
5323
5324         2006-05-02  Ulrich Drepper  <drepper@redhat.com>
5325
5326         * lib/posix/regex.h: g++ still cannot handled [restrict].
5327
5328         2006-04-21  Ulrich Drepper  <drepper@redhat.com>
5329
5330         * lib/posix/regex.h: Remove special handling for VMS.
5331
5332 2006-08-10  Jim Meyering  <jim@meyering.net>
5333
5334         * modules/same-inode: New module.
5335         * modules/dev-ino: New module.
5336         * modules/cycle-check: Depend on these modules, rather than simply
5337         including their .h files.
5338         (Makefile.am): Don't list cycle-check.[ch] here, now that they're
5339         required via m4/cycle-check.m4.
5340         * modules/same: Depend on new same-inode module, rather than
5341         including same-inode.h.
5342         * modules/chdir-safer: New file.
5343
5344         * modules/chown (Depends-on): Add stat-macros.
5345
5346 2006-08-10  Jim Meyering  <jim@meyering.net>
5347
5348         * m4/cycle-check.m4: New file.
5349         Require gl_STRUCT_DEV_INO and gl_SAME_INODE.
5350         * m4/dev-ino.m4, m4/same-inode.m4: New files.
5351
5352 2006-08-10  Eric Blake  <ebb9@byu.net>
5353
5354         * modules/verror (Depends-on): Remove bogus gl_VERROR that snuck
5355         in from original proposal.
5356
5357 2006-08-10  Eric Blake  <ebb9@byu.net>
5358         and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
5359
5360         * gnulib-tool (func_import): Detect unexpanded macros in gnulib
5361         namespace.
5362
5363 2006-08-10  Bruno Haible  <bruno@clisp.org>
5364
5365         * gnulib-tool (func_create_testdir): Detect unexpanded macros here
5366         as well.
5367
5368 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
5369
5370         Sync from coreutils.
5371
5372         2006-07-19  Mike Frysinger  <vapier@gentoo.org>
5373
5374         * lib/mountlist.c [ME_REMOTE]: Filter out cifs.
5375         Reported by Toralf Förster in <http://bugs.gentoo.org/141012>.
5376
5377 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
5378
5379         * modules/restrict: Remove; no longer needed now that we assume
5380         Autoconf 2.59 or later.
5381         * MODULES.html.sh: Remove 'restrict'.
5382         * modules/argp (Depends-on): Remove 'restrict'.
5383         * modules/base64 (Depends-on): Likewise.
5384         * modules/gc (Depends-on): Likewise.
5385         * modules/getaddrinfo (Depends-on): Likewise.
5386         * modules/glob (Depends-on): Likewise.
5387         * modules/inet_ntop (Depends-on): Likewise.
5388         * modules/inet_pton (Depends-on): Likewise.
5389         * modules/memxor (Depends-on): Likewise.
5390         * modules/regex (Depends-on): Likewise.
5391         * modules/strtok_r (Depends-on): Likewise.
5392         * modules/time_r (Depends-on): Likewise.
5393
5394 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
5395
5396         * m4/argp.m4 (gl_ARGP): Require AC_C_RESTRICT.
5397         * m4/gc.m4 (gl_PREREQ_GC): Likewise.
5398         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
5399         * m4/inet_ntop.m4 (gl_PREREQ_INET_NTOP): Likewise.
5400         * m4/inet_pton.m4 (gl_PREREQ_INET_PTON): Likewise.
5401         * m4/memxor.m4 (gl_MEMXOR): Likewise.
5402         * m4/restrict.m4: Remove; no longer needed.  All remaining uses of
5403         gl_C_RESTRICT replaced by AC_C_RESTRICT.
5404
5405         Merge from coreutils.
5406         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_C_RESTRICT, not
5407         gl_C_RESTRICT, now that we assume Autoconf 2.59 or later.
5408         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
5409         * m4/time_r.m4 (gl_TIME_R): Likewise.
5410
5411 2006-08-09  Karl Berry  <karl@gnu.org>
5412
5413         * config/srclist.txt: no more gettext-tools, per Bruno.
5414
5415 2006-08-08  Eric Blake  <ebb9@byu.net>
5416
5417         * modules/verror: New module.
5418         * MODULES.html.sh: Document it.
5419
5420 2006-08-08  Eric Blake  <ebb9@byu.net>
5421
5422         * lib/verror.h, lib/verror.c: New files.
5423
5424 2006-08-08  Eric Blake  <ebb9@byu.net>
5425
5426         * lib/verror.c (verror_at_line): Work around glibc bug 2997, so that
5427         verror_at_line output complies with GNU Coding Standards even when
5428         file is NULL.
5429
5430 2006-08-07  Bruno Haible  <bruno@clisp.org>
5431
5432         * lib/allocsa.h (sa_alignof) [_AIX]: Also consider 'long long' in newer
5433         versions of AIX.
5434         Reported by Ralf Wildenhues.
5435
5436 2006-08-07  Bruno Haible  <bruno@clisp.org>
5437
5438         * gnulib-tool (func_create_testdir): Wrap the set of autoconf snippets
5439         in an AC_DEFUN. Needed so that the autoconf snippets can use
5440         AC_REQUIRE.
5441
5442 2006-08-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5443
5444         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
5445         Initialize pkgdata_DATA.
5446         * modules/javaversion (Makefile.am): Add to pkgdata_DATA, rather than
5447         overriding it.
5448
5449 2006-08-06  Eric Blake  <ebb9@byu.net>
5450
5451         * lib/error.h: Fold in some upstream changes from glibc.
5452         * lib/error.c: Likewise.
5453
5454 2006-08-04  Bruno Haible  <bruno@clisp.org>
5455
5456         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
5457         Make the mostlyclean-local rule depend on mostlyclean-generic.
5458         Reported by Jim Meyering. Solution suggested by Ralf Wildenhues.
5459
5460 2006-07-31  Bruno Haible  <bruno@clisp.org>
5461
5462         * m4/localcharset.m4 (gl_LOCALCHARSET): Remove tests for <stddef.h>,
5463         <stdlib.h>, <string.h>.
5464
5465 2006-07-30  Bruno Haible  <bruno@clisp.org>
5466
5467         * modules/readlink (License): Change to LGPL.
5468
5469 2006-07-30  Bruno Haible  <bruno@clisp.org>
5470
5471         * modules/javaversion (Makefile.am): Distribute javaversion.java and
5472         javaversion.class. Also install javaversion.class in $(pkgdatadir) and
5473         set PKGDATADIR to point to it.
5474
5475 2006-07-30  Bruno Haible  <bruno@clisp.org>
5476
5477         * modules/csharpexec (configure.ac): Comment out macro invocation.
5478         * modules/javaexec (configure.ac): Likewise.
5479         * modules/javacomp-script (configure.ac): Likewise.
5480
5481         * modules/csharpcomp-script (configure.ac): Use AC_REQUIRE.
5482
5483 2006-07-30  Bruno Haible  <bruno@clisp.org>
5484
5485         * modules/clean-temp (Depends-on): Add linkedhash-list, remove
5486         linked-list.
5487
5488 2006-07-30  Bruno Haible  <bruno@clisp.org>
5489
5490         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Assume <string.h> exists.
5491
5492 2006-07-30  Bruno Haible  <bruno@clisp.org>
5493
5494         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
5495         Initialize MOSTLYCLEANFILES to core and *.stackdump, so that core dumps
5496         get removed.
5497
5498 2006-07-29  Bruno Haible  <bruno@clisp.org>
5499
5500         Make it possible for gnulib-tool to work with locally modified or
5501         augmented gnulib repositories.
5502         * gnulib-tool (func_usage): Document --local-dir option.
5503         (local_gnulib_dir): New variable.
5504         Handle --local-dir option.
5505         (func_lookup_file): New function.
5506         (func_all_modules, func_verify_module): Look also in $local_gnulib_dir.
5507         (func_get_description, func_get_filelist, func_get_description,
5508         func_get_filelist, func_get_dependencies, func_get_autoconf_snippet,
5509         func_get_automake_snippet, func_get_include_directive,
5510         func_get_license, func_get_maintainer): Use func_lookup_file.
5511         (func_import, func_create_testdir): Use func_lookup_file.
5512
5513 2006-07-29  Bruno Haible  <bruno@clisp.org>
5514
5515         * modules/setenv (Depends-on): Add unistd.
5516
5517 2006-07-29  Bruno Haible  <bruno@clisp.org>
5518
5519         * lib/setenv.c: Undo unintended modification done on 2006-02-27.
5520
5521 2006-07-29  Bruno Haible  <bruno@clisp.org>
5522
5523         * lib/localcharset.c: Assume <stddef.h>, <stdlib.h>, <string.h> exist.
5524
5525 2006-07-29  Bruno Haible  <bruno@clisp.org>
5526
5527         * gnulib-tool (import, update): If there is no Makefile.am, look at
5528         aclocal.m4, instead of bailing out.
5529
5530 2006-07-29  Bruno Haible  <bruno@clisp.org>
5531
5532         * gnulib-tool (func_usage): Revert most of the 2006-07-15 change.
5533         Categorize the options by when they are useful.
5534
5535 2006-07-29  Bruno Haible  <bruno@clisp.org>
5536
5537         * gnulib-tool (func_usage): Document option --no-libtool.
5538         Handle option --no-libtool.
5539         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am): Update
5540         for changed semantics of $libtool variable.
5541         (func_import): Likewise. If libtool is not used, show this through
5542         an option --no-libtool.
5543         (func_create_testdir): Update.
5544
5545 2006-07-29  Bruno Haible  <bruno@clisp.org>
5546
5547         * gnulib-tool (func_import): Extend error message about missing
5548         --doc-base.
5549
5550 2006-07-29  Bruno Haible  <bruno@clisp.org>
5551
5552         * gnulib-tool (func_import): Don't create the $docbase directory if
5553         there is no file to store there.
5554
5555 2006-07-29  Bruno Haible  <bruno@clisp.org>
5556
5557         * gnulib-tool (autoconf_minversion): If a --dir option is given and
5558         relevant, look for configure.ac there, not in the current directory.
5559         Also use a simple search for AC_PREREQ, not "autoconf --trace".
5560
5561 2006-07-29  Bruno Haible  <bruno@clisp.org>
5562
5563         * gnulib-tool (SORT): New variable.
5564         (func_usage): Undocument --assume-autoconf option.
5565         Remove --assume-autoconf option handling.
5566         (autoconf_minversion): Determine from the contents of configure.ac.
5567         (func_import): Remove autoconf_minversion handling.
5568         Suggested by Eric Blake.
5569
5570 2006-07-29  Bruno Haible  <bruno@clisp.org>
5571
5572         * doc/gnulib-tool.texi (gl_LIBTOOL): Mention --no-libtool option.
5573
5574 2006-07-29  Bruno Haible  <bruno@clisp.org>
5575
5576         * config/srclist.txt (*setenv.[ch]): Remove rules.
5577
5578 2006-07-28  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
5579
5580         * m4/inet_pton.m4, inet_ntop.m4: Check for netinet/in.h too.
5581
5582 2006-07-28  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
5583
5584         * lib/inet_ntop.h, inet_pton.h: Need to include netinet/in.h before
5585         arpa/inet.h.
5586
5587 2006-07-28  Simon Josefsson  <jas@extundo.com>
5588
5589         * modules/inet_ntop (Depends-on): Depend on arpa_inet.
5590         * modules/inet_pton (Depends-on): Likewise.
5591
5592 2006-07-28  Simon Josefsson  <jas@extundo.com>
5593
5594         * m4/netinet_in_h.m4: New file.
5595
5596 2006-07-28  Simon Josefsson  <jas@extundo.com>
5597
5598         * lib/inet_ntop.h, inet_pton.h: No need to guard netinet/in.h
5599         #include's.
5600
5601 2006-07-28  Simon Josefsson  <jas@extundo.com>
5602
5603         * lib/inet_ntop.h, inet_pton.h: No need to guard arpa/inet.h
5604         #include's.
5605
5606 2006-07-28  Paul Eggert  <eggert@cs.ucla.edu>
5607
5608         * lib/modechange.c (mode_compile): Numeric modes now affect setuid and
5609         setgid on directories only if they set these bits.
5610         * lib/modechange.h: Remove obsolete comment about masks.
5611
5612 2006-07-28  Eric Blake  <ebb9@byu.net>
5613
5614         * lib/regex_internal.h (struct re_dfa_t) [!_LIBC]: Avoid invalid C89
5615         macro expansion.
5616
5617 2006-07-28  Bruno Haible  <bruno@clisp.org>
5618
5619         * lib/inet_ntop.h, inet_pton.h: Use #if HAVE* instead of #ifdef HAVE*.
5620
5621 2006-07-28  Bruno Haible  <bruno@clisp.org>
5622
5623         * m4/mbchar.m4 (gl_MBCHAR): Also test for iswcntrl.
5624
5625 2006-07-28  Bruno Haible  <bruno@clisp.org>
5626
5627         * lib/mbchar.h (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit,
5628         iswgraph, iswlower, iswprint, iswpunct, iswspace, iswupper, iswxdigit):
5629         Define fallbacks.
5630         Avoids link error on FreeBSD 4.x.
5631         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
5632
5633         * lib/wcwidth.h (iswprint): Assume an ASCII compatible wide character
5634         encoding.
5635         * lib/mbswidth.c (iswcntrl): Likewise.
5636
5637 2006-07-27  Bruno Haible  <bruno@clisp.org>
5638
5639         * m4/stdint.m4 (gl_STDINT_H): Define __STDC_CONSTANT_MACROS during the
5640         test.
5641
5642 2006-07-27  Bruno Haible  <bruno@clisp.org>
5643
5644         * lib/stdint_.h (INT*_C, UINT*_C) [C++]: Define these if
5645         __STDC_CONSTANT_MACROS is defined, not if __STDC_LIMIT_MACROS is
5646         defined.
5647
5648 2006-07-26  Eric Blake  <ebb9@byu.net>
5649
5650         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Check for missing pipe.
5651
5652 2006-07-26  Eric Blake  <ebb9@byu.net>
5653
5654         * lib/mkstemp-safer.c [! HAVE_MKSTEMP]: Add prototype for platforms
5655         like mingw that lack mkstemp.
5656         * lib/pipe-safer.c (pipe_safer) [!HAVE_FUNC_PIPE]: Provide fallback to
5657         avoid compilation warning on mingw.
5658
5659 2006-07-26  Bruno Haible  <bruno@clisp.org>
5660
5661         * m4/stdint.m4 (gl_STDINT_H): Also verify the existence of the macros
5662         INT*_MIN, INT_LEAST*_MAX, INT_LEAST*_MIN, UINT_LEAST*_MAX,
5663         INT_FAST*_MIN, INTPTR_MIN.
5664
5665 2006-07-25  Bruno Haible  <bruno@clisp.org>
5666
5667         * modules/version-etc (Depends-on): Add stdarg.
5668
5669 2006-07-25  Bruno Haible  <bruno@clisp.org>
5670
5671         * m4/stdint.m4 (gl_INTEGER_TYPE_SUFFIX): Avoid 'eval' in front of
5672         complex commands.
5673
5674 2006-07-25  Bruno Haible  <bruno@clisp.org>
5675
5676         * lib/version-etc.c (version_etc_va): Use va_copy, assumed to be
5677         defined in <stdarg.h> or config.h.
5678
5679 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
5680
5681         * m4/stdio-safer.m4 (gl_FOPEN_SAFER, gl_TMPFILE_SAFER): New macros.
5682         (gl_STDIO_SAFER): Remove.
5683
5684 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
5685
5686         * MODULES.html.sh (File stream based Input/Output):
5687         Add fopen-safer, tmpfile-safer; remove stdio-safer.
5688         * modules/getusershell (Depends-on): Change stdio-safer to fopen-safer.
5689         * modules/fopen-safer, modules/tmpfile-safer: New files.
5690         * modules/stdio-safer: Remove.
5691
5692 2006-07-24  Bruno Haible  <bruno@clisp.org>
5693
5694         * modules/tmpdir: New file.
5695         * MODULES.html.sh (File system functions): Add it.
5696
5697 2006-07-24  Bruno Haible  <bruno@clisp.org>
5698
5699         * modules/javacomp (Depends-on): Add unistd, javaversion, binary-io,
5700         getline, pathname, fwriteerror, clean-temp, xvasprintf, strstr.
5701
5702 2006-07-24  Bruno Haible  <bruno@clisp.org>
5703
5704         * modules/clean-temp: New file.
5705
5706 2006-07-24  Bruno Haible  <bruno@clisp.org>
5707
5708         * m4/tmpdir.m4: New file, from GNU gettext.
5709
5710 2006-07-24  Bruno Haible  <bruno@clisp.org>
5711
5712         * lib/tmpdir.h: New file, from GNU gettext.
5713         * lib/tmpdir.c: New file, from GNU gettext.
5714
5715 2006-07-24  Bruno Haible  <bruno@clisp.org>
5716
5717         * lib/clean-temp.h: New file, from GNU gettext.
5718         * lib/clean-temp.c: New file, from GNU gettext.
5719
5720 2006-07-23  Eric Blake  <ebb9@byu.net>
5721
5722         * modules/stdio-safer (Files): Add tmpfile-safer.c.
5723         (Depends-on): Add binary-io.
5724
5725 2006-07-23  Eric Blake  <ebb9@byu.net>
5726
5727         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Add tmpfile-safer.c.
5728
5729 2006-07-23  Eric Blake  <ebb9@byu.net>
5730
5731         * lib/tmpfile-safer.c: New file.
5732         * lib/stdio-safer.h (fopen_safer): Add prototype.
5733         * lib/stdio--.h (tmpfile): Make safer.
5734
5735 2006-07-23  Bruno Haible  <bruno@clisp.org>
5736
5737         * lib/gl_anylinked_list2.h (ASYNCSAFE): New macro.
5738         (gl_linked_add_first, gl_linked_add_last, gl_linked_add_before,
5739         gl_linked_add_after, gl_linked_add_at, gl_linked_remove_node,
5740         gl_linked_remove_at): Use it.
5741
5742 2006-07-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
5743         and Simon Josefsson <jas@extundo.com>
5744
5745         * lib/getaddrinfo.h (AI_PASSIVE): Make sure it is defined.
5746
5747         * lib/getaddrinfo.c (getaddrinfo): Support AI_PASSIVE.
5748
5749 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
5750
5751         * modules/close-stream: New file.
5752         * modules/closeout (Description): Make it clear that it exits
5753         with a diagnostic on error.
5754         (Depends-on): Add close-stream.  Remove fpending, stdbool.
5755         * MODULES.html.sh (File stream based Input/Output): Add close-stream.
5756
5757 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
5758
5759         * m4/close-stream.m4: New file.
5760
5761 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
5762
5763         * lib/close-stream.c, lib/close-stream.h: New files.
5764
5765 2006-07-22  Bruno Haible  <bruno@clisp.org>
5766
5767         Merge from GNU gettext 0.15.
5768
5769         2006-05-01  Bruno Haible  <bruno@clisp.org>
5770
5771                 * build-aux/javacomp.sh.in: Update for changed javacomp.m4.
5772
5773         2006-07-22  Bruno Haible  <bruno@clisp.org>
5774
5775                 * modules/javaversion: New file.
5776                 * MODULES.html.sh (Java): Add javaversion.
5777
5778         2006-03-12  Bruno Haible  <bruno@clisp.org>
5779
5780                 * build-aux/javaexec.sh.in: Update for changed javaexec.m4.
5781
5782         2005-12-04  Bruno Haible  <bruno@clisp.org>
5783
5784                 * build-aux/csharpexec.sh.in: Add support for 'clix' launcher
5785                 (untested).
5786
5787         2006-06-21  Bruno Haible  <bruno@clisp.org>
5788
5789                 Avoid warnings from recent versions of mcs.
5790                 * build-aux/csharpcomp.sh.in (options_mcs): Don't use options
5791                 -o, -L, -r any more. Use options documented since mcs-1.0
5792                 instead. Similarly for -g.
5793
5794         2005-12-04  Bruno Haible  <bruno@clisp.org>
5795
5796                 * build-aux/csharpcomp.sh.in: Suffix for resources is
5797                 .resources, not .resource.
5798
5799         2005-07-09  Bruno Haible  <bruno@clisp.org>
5800
5801                 * build-aux/csharpcomp.sh.in (options_csc): For -l option,
5802                 add a .dll suffix.
5803                 Reported by Mark Junker <mjscod@gmx.de>.
5804
5805         2006-07-22  Bruno Haible  <bruno@clisp.org>
5806
5807                 * modules/gettext: Upgrade to gettext-0.15.
5808                 (Files): Remove m4/isc-posix.m4. Add m4/lock.m4,
5809                 m4/visibility.m4.
5810                 Replace m4/inttypes.m4 with m4/inttypes-h.m4.
5811
5812 2006-07-22  Bruno Haible  <bruno@clisp.org>
5813
5814         Merge from GNU gettext 0.15.
5815
5816         2006-03-25  Bruno Haible  <bruno@clisp.org>
5817
5818                 * lib-link.m4 (AC_LIB_LINKFLAGS_FROM_LIBS): New macro.
5819
5820         2006-07-21  Bruno Haible  <bruno@clisp.org>
5821
5822                 * javacomp.m4 (gt_JAVACOMP): Convert target_version "null" to
5823                 "1.1".
5824
5825         2006-05-09  Bruno Haible  <bruno@clisp.org>
5826
5827                 * javacomp.m4 (gt_JAVACOMP): On Cygwin, set
5828                 CLASSPATH_SEPARATOR to a semicolon. Use CLASSPATH_SEPARATOR
5829                 for the conftestver execution.
5830
5831         2006-05-01  Bruno Haible  <bruno@clisp.org>
5832
5833                 * javacomp.m4 (gt_JAVACOMP): Accept a source-version and an
5834                 optional target-version argument. Verify that the compiler
5835                 groks source of the specified source-version, or add -source
5836                 option as necessary. Verify that the compiler produces
5837                 bytecode in the specified target-version, or add -target and
5838                 -source options as necessary. Make the result of the test
5839                 available as variable CONF_JAVAC. Also log error output in
5840                 config.log.
5841
5842         2006-03-11  Bruno Haible  <bruno@clisp.org>
5843
5844                 * javacomp.m4 (gt_JAVACOMP): Treat gcj-4.x like gcj-3.x.
5845
5846         2006-05-09  Bruno Haible  <bruno@clisp.org>
5847
5848                 * javaexec.m4 (gt_JAVAEXEC): On Cygwin, set
5849                 CLASSPATH_SEPARATOR to a semicolon.
5850
5851         2006-03-12  Bruno Haible  <bruno@clisp.org>
5852
5853                 * javaexec.m4 (gt_JAVAEXEC): Make the result of the test
5854                 available as variable CONF_JAVA, for subsequent autoconf
5855                 tests. Also log error output in config.log.
5856
5857         2006-07-19  Bruno Haible  <bruno@clisp.org>
5858
5859                 * getline.m4 (AM_FUNC_GETLINE): When cross-compiling, assume
5860                 that getline works on glibc2 systems. Needed to avoid trouble
5861                 in relocatable.c.
5862                 Reported by Nils Magnus Larsgard <nmlarsgaard@atmel.no>.
5863
5864         2005-12-04  Bruno Haible  <bruno@clisp.org>
5865
5866                 * csharpexec.m4 (gt_CSHARPEXEC): Add support for 'clix'
5867                 launcher (untested).
5868
5869         2005-12-04  Bruno Haible  <bruno@clisp.org>
5870
5871                 * csharpcomp.m4 (gt_CSHARPCOMP): Also set CSHARPCOMPFLAGS.
5872
5873         2006-07-22  Bruno Haible  <bruno@clisp.org>
5874
5875                 * gettext.m4: Update from GNU gettext-0.15.
5876                 * nls.m4: Likewise.
5877                 * po.m4: Likewise.
5878                 * inttypes-pri.m4: Likewise.
5879                 * inttypes-h.m4: Renamed from inttypes.m4.
5880                 (gl_HEADER_INTTYPES_H): Renamed from gt_HEADER_INTTYPES_H.
5881
5882 2006-07-22  Bruno Haible  <bruno@clisp.org>
5883
5884         Merge from GNU gettext 0.15.
5885
5886         2005-07-05  Bruno Haible  <bruno@clisp.org>
5887
5888                 * printf-args.c (printf_fetchargs): Work around broken
5889                 definition of wint_t on mingw.
5890
5891         2005-02-12  Bruno Haible  <bruno@clisp.org>
5892
5893                 * xallocsa.h: Add extern "C" for C++.
5894
5895         2006-05-17  Bruno Haible  <bruno@clisp.org>
5896
5897                 Cygwin portability.
5898                 * progreloc.c (WIN32_NATIVE): Renamed from WIN32.
5899
5900         2006-04-30  Bruno Haible  <bruno@clisp.org>
5901
5902                 * progreloc.c: Include <mach-o/dyld.h> if available.
5903                 (find_executable): Use _NSGetExecutablePath when possible.
5904
5905         2006-05-06  Charles Wilson  <cygwin@cwilson.fastmail.fm>
5906
5907                 * progreloc.c (maybe_executable) [CYGWIN]: Use the access()
5908                 function.
5909
5910         2005-12-29  Bruno Haible  <bruno@clisp.org>
5911
5912                 * progreloc.c (set_program_name_and_installdir): Fix
5913                 compilation error.
5914
5915         2005-12-04  Bruno Haible  <bruno@clisp.org>
5916
5917                 Cygwin portability.
5918                 * progreloc.c: Include <windows.h> also on Cygwin.
5919                 (find_executable): Add support for Cygwin.
5920                 (set_program_name_and_installdir): Handle also platforms with
5921                 nonempty EXEEXT.
5922
5923         2006-07-11  Bruno Haible  <bruno@clisp.org>
5924
5925                 * javacomp.c: Fix a comment.
5926                 Reported by Jim Meyering.
5927
5928         2006-04-30  Bruno Haible  <bruno@clisp.org>
5929
5930                 * javacomp.h (compile_java_class): Add source_version,
5931                 target_version arguments.
5932                 * javacomp.c: Rewritten to choose only a compiler that
5933                 respects the specified source_version and target_version.
5934
5935         2006-06-27  Bruno Haible  <bruno@clisp.org>
5936
5937                 Assume correct S_ISDIR macro.
5938                 * mkdtemp.c: Remove test of STAT_MACROS_BROKEN.
5939
5940         2006-07-22  Bruno Haible  <bruno@clisp.org>
5941
5942                 * javaversion.h: New file, from GNU gettext.
5943                 * javaversion.c: New file, from GNU gettext.
5944                 * javaversion.java: New file, from GNU gettext.
5945                 * javaversion.class: New file, from GNU gettext.
5946
5947         2006-05-17  Bruno Haible  <bruno@clisp.org>
5948
5949                 Cygwin portability.
5950                 * javaexec.c (execute_java_class): Test for jview program
5951                 also on Cygwin.
5952
5953         2006-04-09  Bruno Haible  <bruno@clisp.org>
5954
5955                 * fatal-signal.c: Don't include string.h.
5956                 (at_fatal_signal): Use a copying loop instead of memcpy.
5957
5958         2005-12-04  Bruno Haible  <bruno@clisp.org>
5959
5960                 * csharpexec.c: Add support for 'clix' launcher (untested).
5961                 (execute_csharp_using_sscli): New function.
5962                 (execute_csharp_program): Call it.
5963
5964         2006-06-21  Bruno Haible  <bruno@clisp.org>
5965
5966                 Avoid warnings from recent versions of mcs.
5967                 * csharpcomp.c (compile_csharp_using_mono): Don't use options
5968                 -o, -L, -r any more. Use options documented since mcs-1.0
5969                 instead. Similarly for -g.
5970
5971         2005-07-09  Bruno Haible  <bruno@clisp.org>
5972
5973                 * csharpcomp.c (compile_csharp_using_sscli): For -l option,
5974                 add a .dll suffix.
5975                 Reported by Mark Junker <mjscod@gmx.de>.
5976
5977         2006-06-17  Bruno Haible  <bruno@clisp.org>
5978
5979                 * config.charset: Update for NetBSD 3.0.
5980
5981         2006-05-17  Bruno Haible  <bruno@clisp.org>
5982
5983                 Cygwin portability.
5984                 * localcharset.c (WIN32_NATIVE): Renamed from WIN32.
5985
5986         2006-05-16  Bruno Haible  <bruno@clisp.org>
5987
5988                 * localcharset.c [CYGWIN]: Include <windows.h>.
5989                 (get_charset_aliases): For Cygwin, return the same CPxxx
5990                 aliases list as under WIN32.
5991                 (locale_charset) [CYGWIN]: Try to retrieve the encoding from
5992                 the environment variables. Fall back to GetACP().
5993
5994         2006-04-05  Bruno Haible  <bruno@clisp.org>
5995
5996                 * config.charset: Update Juan Manuel Guerrero's address.
5997
5998         2005-02-12  Bruno Haible  <bruno@clisp.org>
5999
6000                 * allocsa.h: Add extern "C" for C++.
6001
6002         2005-02-10  Bruno Haible  <bruno@clisp.org>
6003
6004                 * allocsa.h (sa_alignof): Define differently with AIX xlc, to
6005                 avoid a bug of this compiler on AIX 3.2.5 dealing with enums.
6006
6007         2006-07-22  Bruno Haible  <bruno@clisp.org>
6008
6009                 * gettext.h: Update to GNU gettext-0.15.
6010
6011 2006-07-22  Bruno Haible  <bruno@clisp.org>
6012
6013         * config/srclist.txt: Resync printf-args.c, vasnprintf.c,
6014         localcharset.c, mkdtemp.c, config.rpath, lib-ld.m4, lib-link.m4,
6015         lib-prefix.m4, longdouble.m4, ssize_t.m4.
6016
6017 2006-07-21  Eric Blake  <ebb9@byu.net>
6018
6019         * modules/stdlib-safer: New file.
6020         * MODULES.html.sh (File stream based Input/Output): Add
6021         stdlib-safer.
6022
6023 2006-07-21  Eric Blake  <ebb9@byu.net>
6024
6025         * lib/stdlib-safer.h: New file from coreutils, required by
6026         stdlib--.h.
6027
6028 2006-07-20  Paul Eggert  <eggert@cs.ucla.edu>
6029
6030         * gnulib-tool (func_usage): Document --assume-autoconf='latest-stable'.
6031
6032 2006-07-20  Bruno Haible  <bruno@clisp.org>
6033
6034         * gnulib-tool: Recognize new option --assume-autoconf.
6035         (autoconf_minversion): New variable.
6036         (func_get_filelist): Use it to decide whether to add onceonly_2_57.m4.
6037
6038 2006-07-20  Bruno Haible  <bruno@clisp.org>
6039
6040         * MODULES.html.sh (func_all_modules): Add a missing func_begin_table.
6041
6042 2006-07-19  Derek R. Price  <derek@ximbiot.com>
6043
6044         * lib/getaddrinfo.h: Don't define unimplemented AI_* flags.
6045         Reindent and repaginate.
6046
6047 2006-07-19  Derek Price  <derek@ximbiot.com>
6048
6049         * doc/gnulib.texi (Libtool and Windows):  Eliminate passive voice.
6050         Correct grammar.
6051
6052 2006-07-17  Bruno Haible  <bruno@clisp.org>
6053
6054         * modules/list: New file.
6055         * modules/array-list: New file.
6056         * modules/carray-list, modules/carray-list-tests: New files.
6057         * modules/linked-list, modules/linked-list-tests: New files.
6058         * modules/avltree-list, modules/avltree-list-tests: New files.
6059         * modules/rbtree-list, modules/rbtree-list-tests: New files.
6060         * modules/linkedhash-list, modules/linkedhash-list-tests: New files.
6061         * modules/avltreehash-list, modules/avltreehash-list-tests: New files.
6062         * modules/rbtreehash-list, modules/rbtreehash-list-tests: New files.
6063         * modules/oset: New file.
6064         * modules/array-oset: New file.
6065         * modules/avltree-oset, modules/avltree-oset-tests: New files.
6066         * modules/rbtree-oset, modules/rbtree-oset-tests: New files.
6067         * tests/test-carray_list.c: New file.
6068         * tests/test-linked_list.c: New file.
6069         * tests/test-avltree_list.c: New file.
6070         * tests/test-rbtree_list.c: New file.
6071         * tests/test-linkedhash_list.c: New file.
6072         * tests/test-avltreehash_list.c: New file.
6073         * tests/test-rbtreehash_list.c: New file.
6074         * tests/test-avltree_oset.c: New file.
6075         * tests/test-rbtree_oset.c: New file.
6076         * MODULES.html.sh (Container data structures): New section.
6077
6078 2006-07-17  Bruno Haible  <bruno@clisp.org>
6079
6080         * m4/gl_list.m4: New file.
6081
6082 2006-07-17  Bruno Haible  <bruno@clisp.org>
6083
6084         * lib/gl_list.h: New file.
6085         * lib/gl_list.c: New file.
6086         * lib/gl_array_list.h: New file.
6087         * lib/gl_array_list.c: New file.
6088         * lib/gl_carray_list.h: New file.
6089         * lib/gl_carray_list.c: New file.
6090         * lib/gl_linked_list.h: New file.
6091         * lib/gl_linked_list.c: New file.
6092         * lib/gl_anylinked_list1.h: New file.
6093         * lib/gl_anylinked_list2.h: New file.
6094         * lib/gl_avltree_list.h: New file.
6095         * lib/gl_avltree_list.c: New file.
6096         * lib/gl_anyavltree_list1.h: New file.
6097         * lib/gl_anyavltree_list2.h: New file.
6098         * lib/gl_rbtree_list.h: New file.
6099         * lib/gl_rbtree_list.c: New file.
6100         * lib/gl_anyrbtree_list1.h: New file.
6101         * lib/gl_anyrbtree_list2.h: New file.
6102         * lib/gl_anytree_list1.h: New file.
6103         * lib/gl_anytree_list2.h: New file.
6104         * lib/gl_linkedhash_list.h: New file.
6105         * lib/gl_linkedhash_list.c: New file.
6106         * lib/gl_anyhash_list1.h: New file.
6107         * lib/gl_anyhash_list2.h: New file.
6108         * lib/gl_avltreehash_list.h: New file.
6109         * lib/gl_avltreehash_list.c: New file.
6110         * lib/gl_rbtreehash_list.h: New file.
6111         * lib/gl_rbtreehash_list.c: New file.
6112         * lib/gl_anytreehash_list1.h: New file.
6113         * lib/gl_anytreehash_list2.h: New file.
6114
6115         * lib/gl_oset.h: New file.
6116         * lib/gl_oset.c: New file.
6117         * lib/gl_array_oset.h: New file.
6118         * lib/gl_array_oset.c: New file.
6119         * lib/gl_avltree_oset.h: New file.
6120         * lib/gl_avltree_oset.c: New file.
6121         * lib/gl_rbtree_oset.h: New file.
6122         * lib/gl_rbtree_oset.c: New file.
6123         * lib/gl_anytree_oset.h: New file.
6124
6125 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
6126
6127         * m4/mkancesdirs.m4: New file.
6128         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Mention dirchownmod.c,
6129         dirchownmod.h.  Don't require AC_FUNC_ALLOCA, gl_AFS, gl_CHDIR_SAFER;
6130         no longer needed.  Require gl_FUNC_LCHOWN, since dirchownmod.c needs
6131         it.
6132
6133 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
6134
6135         * lib/dirchownmod.c, lib/dirchownmod.h, lib/mkancesdirs.c:
6136         * lib/mkancesdirs.h: New files.
6137         * lib/mkdir-p.c: Don't include alloca.h, stdio.h, sys/types.h,
6138         unistd.h, string.h, chdir-safer.h, dirname.h, lchmod.h, lchown.h,
6139         save-cwd.h.  Instead, include dirchownmod.h and mkancesdirs.h.
6140         (make_dir_parents): New args MAKE_ANCESTOR, OPTIONS, ANNOUNCE,
6141         MODE_BITS.  Remove options VERBOSE_FMT_STRING, CWD_ERRNO.  All
6142         callers changed.  Revamp internals significantly, by not
6143         attempting to create directories that are temporarily more
6144         permissive than the final results.  Do not attempt to use
6145         save_cwd/restore_cwd; it isn't worth it for mkdir and install.
6146         This removes some race conditions, fixes some bugs, and simplifies
6147         things.  Use new dirchownmod function to do owner and mode changes.
6148         * lib/mkdir-p.h: Likewise.
6149         * lib/modechange.c (octal_to_mode): New function.
6150         (struct mode_change): New member mentioned.
6151         (make_node_op_equals): New arg mentioned.  All callers changed.
6152         (mode_compile): Keep track of which mode bits the user has explicitly
6153         mentioned.
6154         (mode_adjust): New arg DIR, so that we implement the X op correctly.
6155         New arg PMODE_BITS, to keep track of which mode bits the user
6156         mentioned; it treats S_ISUID and S_ISGID speciall.
6157         All callers changed.
6158         * lib/modechange.h: Likewise.
6159
6160 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
6161
6162         * MODULES.html.sh: Add mkancestors.
6163         * modules/mkancesdirs: New module.
6164         * modules/mkdir-p (Files): Remove lib/chdir-safer.c, lib/chdir-safer.h,
6165         lib/same-inode.h, m4/afs.m4, m4/chdir-safer.m4.
6166         The chdir-safer and afs files are now orphans; I'll remove them
6167         unless someone speaks up.
6168         Add lib/dirchownmod.c, lib/dirchownmod.h.
6169         (Depends-on): Remove alloca, chown, save-cwd, dirname.
6170         Add lchown, mkancesdirs.
6171         (Maintainer): Add self.
6172
6173 2006-07-15  Karl Berry  <karl@gnu.org>
6174
6175         * gnulib-tool: help message wording/arrangement.
6176
6177 2006-07-14  Simon Josefsson  <jas@extundo.com>
6178
6179         * doc/gnulib.texi (Libtool and Windows): New section.
6180
6181 2006-07-12  Simon Josefsson  <jas@extundo.com>
6182
6183         * modules/gendocs (License): Fix license, approved by Karl.
6184
6185 2006-07-12  Eric Blake  <ebb9@byu.net>
6186
6187         * MODULES.html.sh: Add gendocs.
6188
6189 2006-07-11  Eric Blake  <ebb9@byu.net>
6190
6191         * modules/fdl: New module, to install doc/fdl.texi.
6192         * MODULES.html.sh: Add new section for documentation modules.
6193         * gnulib-tool: Avoid space-tab.
6194         (--doc-base): New option, to manage files from doc.
6195
6196 2006-07-11  Eric Blake  <ebb9@byu.net>
6197
6198         * m4/absolute-header.m4: Fix comments to match recent change.
6199
6200 2006-07-11  Eric Blake  <ebb9@byu.net>
6201
6202         * gnulib-tool: List --doc-base before --tests-base.
6203
6204 2006-07-11  Derek R. Price  <derek@ximbiot.com>
6205
6206         * lib/glob.c: s/NAMLEN/_D_EXACT_NAMLEN/.
6207
6208 2006-07-11  Bruno Haible  <bruno@clisp.org>
6209
6210         * README: Mention where to put documentation.
6211
6212 2006-07-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6213
6214         * doc/functions.texi, gnulib-tool.texi, gnulib.texi: Fix some typos.
6215
6216 2006-07-10  Paul Eggert  <eggert@cs.ucla.edu>
6217
6218         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Like today's change
6219         to stdint.m4.
6220
6221 2006-07-10  Paul Eggert  <eggert@cs.ucla.edu>
6222
6223         * m4/stdint.m4 (gl_STDINT_H): Like yesterday's change to
6224         absolute-header.m4.  Also, set ABSOLUTE_STDINT_H to a string
6225         "no/such/file/stdint.h" when there is no such file, so that
6226         the resulting C code can be parsed by dodgy compilers.
6227         Problems reported by Bob Proulx.
6228
6229 2006-07-10  Derek R. Price  <derek@ximbiot.com>
6230
6231         * lib/backupfile.c, dirfd.h, fts.c, getcwd.c, glob.c, glob_.h:
6232         Ignore the obsolescent !HAVE_DIRENT_H case.  Consolidate NAMLEN
6233         macros into the GNU _D_EXACT_NAMLEN.
6234         * lib/savedir.c:  Likewise.
6235         (savedirstream): Use _D_EXACT_NAMLEN in preference to strlen.
6236
6237 2006-07-10  Derek R. Price  <derek@ximbiot.com>
6238         and Paul Eggert  <eggert@cs.ucla.edu>
6239
6240         * m4/backupfile.m4, d-ino.m4, d-type.m4, dirfd.m4, fts.m4, getcwd.m4:
6241         * m4/savedir.m4:
6242         Ignore the obsolescent !HAVE_DIRENT_H case.  Consolidate NAMLEN
6243         macros into the GNU _D_EXACT_NAMLEN.
6244
6245 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
6246
6247         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Use "" rather than <>
6248         around the absolute name, to work around a problem with the HP-UX
6249         11.23 native C compiler, reported by Bob Proulx.
6250
6251 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
6252
6253         * doc/maintain.texi, make-stds.texi: Sync from
6254         <http://savannah.gnu.org/projects/gnustandards>.
6255
6256 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
6257
6258         * build-aux/depcomp, build-aux/install-sh: Sync from Automake.
6259
6260 2006-07-09  Jim Meyering  <jim@meyering.net>
6261
6262         * m4/glob.m4: Remove a doubled word in a comment.
6263
6264 2006-07-09  Jim Meyering  <jim@meyering.net>
6265
6266         * lib/argp-pv.c: Remove a doubled word in a comment.
6267         * lib/check-version.c (check_version): Likewise.
6268         * lib/javacomp.c (compile_java_class): Likewise.
6269
6270 2006-07-08  Paul Eggert  <eggert@cs.ucla.edu>
6271
6272         * gnulib-tool (func_get_filelist): Don't echo m4/onceonly_2_57.m4,
6273         for the benefit of people using Autoconf 2.60.  If you want to
6274         support older Autoconf versions you can copy m4/onceonly_2_57.m4
6275         (or m4/onceonly.m4, if pre-2.57) manually.
6276
6277 2006-07-08  Jim Meyering  <jim@meyering.net>
6278
6279         * m4/link-follow.m4: Remove one of two adjacent "whether"s in a
6280         comment.
6281         * m4/getopt.m4: Remove one of two adjacent "your"s in a comment.
6282         * m4/regex.m4 (gl_REGEX): Remove one of two adjacent "the"s in a
6283         comment.
6284
6285 2006-07-08  Jim Meyering  <jim@meyering.net>
6286
6287         * lib/getndelim2.h (getndelim2): Remove doubled "after" in comment.
6288
6289 2006-07-07  Simon Josefsson  <jas@extundo.com>
6290
6291         * tests/test-crc.c: Change expected crc value, the test vector
6292         were probably computed using the old broken crc.c?
6293
6294 2006-07-06  Simon Josefsson  <jas@extundo.com>
6295
6296         * modules/sys_socket (Files): Add m4/sockpfaf.m4 (this module is
6297         now the canonical place for the M4 file).
6298
6299         * modules/getaddrinfo (Files): Remove m4/sockpfaf.m4, we get it
6300         from the sys_socket dependency now.
6301
6302         * modules/inet_pton (Files): Ditto.
6303
6304         * modules/inet_ntop (Files): Ditto.
6305
6306 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
6307
6308         * modules/getusershell (configure.ac): Use gl_FUNC_GETUSERSHELL,
6309         not gl_PREREQ_GETUSERSHELL.
6310
6311 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6312
6313         * m4/_inttypes_h.m4 (gl_INTTYPES_H): Use AC_CHECK_DECLS_ONCE
6314         with only one argument, for Autoconf 2.60.
6315         * m4/fileblocks.m4 (gl_PREREQ_FILEBLOCKS): AC_CHECK_DECLS_ONCE may
6316         expand to nothing, so add a shell command to avoid syntax error.
6317         * m4/getpass.m4 (gl_PREREQ_GETPASS): Likewise.
6318
6319 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6320
6321         * lib/strtod.c (strtod): cast the argument of tolower to unsigned char.
6322
6323 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
6324
6325         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Don't check for getenv decl;
6326         no longer needed.  Check for isblank decl.
6327         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Don't check for getenv decl.
6328         * m4/regex.m4 (gl_PREREQ_REGEX): Dheck for isblank decl instead
6329         of existence.
6330
6331 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
6332
6333         * lib/getloadavg.c: Use __VMS, not VMS.
6334         * lib/getopt.c: Likewise.
6335         * lib/getpagesize.h: Likewise.
6336         * lib/glob.c: Remove most VMS cruft; it hasn't been tested for a while
6337         and probably does not work.
6338
6339 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
6340
6341         * lib/.cppi-disable: Add wcwidth.
6342         * lib/fnmatch.c (ISBLANK): Remove.  All uses changed to isblank.
6343         (isblank) [! (defined isblank || HAVE_DECL_ISBLANK)]: New macro.
6344         (ISGRAPH): Remove.  All uses changed to isgraph.
6345         (FOLD) [!defined _LIBC]: Remove special case.
6346         * lib/getdate.y (lookup_word): Remove no-longer-needed call to islower.
6347         * lib/regex_internal.h (isblank): Depend on HAVE_DECL_ISBLANK, not
6348         HAVE_ISBLANK.
6349         * lib/strftime.c (TOLOWER, TOUPPER) [!defined _LIBC]: Remove special
6350         case.
6351
6352 2006-07-06  Jim Hyslop  <jhyslop@dreampossible.ca>  (tiny change)
6353
6354         * lib/getaddrinfo.c: Changes to compile under MSVC6: changed
6355         '#if WIN32_NATIVE' to '#ifdef' & moved WSAAPI macro inside
6356         brackets.  Other minor changes to suppress some compiler
6357         warnings.
6358
6359 2006-07-06  Derek R. Price  <derek@ximbiot.com>
6360         and Paul Eggert  <eggert@cs.ucla.edu>
6361
6362         * m4/backupfile.m4 (gl_BACKUPFILE): Check for dirent.h, instead
6363         of invoking obsolescent AC_HEADER_DIRENT macro.
6364         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Likewise.
6365         * m4/d-type.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Likewise.
6366         * m4/dirfd.m4 (gl_FUNC_DIRFD): Likewise.
6367         * m4/fts.m4 (gl_FUNC_FTS_CORE): Likewise.
6368         * m4/getcwd.m4 (gl_PREREQ_GETCWD): Likewise.
6369         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
6370         * m4/savedir.m4 (gl_SAVEDIR): Likewise.
6371         * m4/readdir.m4: Remove; no longer needed.
6372
6373 2006-07-06  Derek R. Price  <derek@ximbiot.com>
6374         and Paul Eggert  <eggert@cs.ucla.edu>
6375
6376         * lib/backupfile.c [HAVE_DIRENT_H && ! HAVE_NDIR_H]:
6377         Don't worry about this obsolete case any more.
6378         (HAVE_DIR): Remove.  All uses removed; we now assume you can read
6379         directories.
6380         * lib/dirfd.h [HAVE_DIRENT_H && ! HAVE_NDIR_H]: Don't
6381         worry about this obsolete case any more.
6382         * lib/fts.c: Likewise.
6383         * lib/getcwd.c: Likewise.
6384         * lib/glob.h: Likewise.
6385         * lib/savedir.c: Likewise.
6386
6387 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
6388
6389         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Use AC_CHECK_DECLS_ONCE
6390         rather than AC_CHECK_DECLS for strtoimax and strtoumax.
6391         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Remove; no longer
6392         needed.
6393         All uses removed.
6394         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
6395         * m4/strtoul.m4 (gl_PREREQ_STRTOUL): Likewise.
6396         * m4/exclude.m4 (gl_EXCLUDE): Don't check for isascii; no longer
6397         needed.
6398         * m4/getdate.m4 (gl_GETDATE): Likewise.
6399         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Likewise.
6400         * m4/memcasecmp.m4 (gl_MEMCASECMP): Likewise.
6401         * m4/strtod.m4 (gl_FUNC_STRTOD): Likewise.
6402         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
6403         * m4/strtoul.m4 (gl_PREREQ_STRTOUL): Likewise.
6404         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
6405         * m4/exclude.m4 (gl_EXCLUDE): Don't require AC_C_INLINE; no longer
6406         needed.
6407
6408 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
6409
6410         * lib/memcasecmp.c: Include <limits.h>.
6411         (memcasecmp): Don't assume UCHAR_MAX <= INT_MAX.
6412         * lib/strtod.c (strtod): Don't assume isspace works on negative chars.
6413         Don't assume isdigit succeeds only on '0' through '9'.
6414
6415 2006-07-05  Eric Blake  <ebb9@byu.net>
6416
6417         * modules/getaddrinfo (Depends-on): Add snprintf.
6418
6419 2006-07-05  Eric Blake  <ebb9@byu.net>
6420
6421         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Use gl_HEADER_SYS_SOCKET
6422         to avoid 'header present but could not be compiled' on cygwin.
6423
6424 2006-07-05  Eric Blake  <ebb9@byu.net>
6425
6426         * lib/getaddrinfo.h (NI_NUMERICHOST, NI_NUMERICSERV): Define if
6427         missing from netdb.h.
6428         * lib/getaddrinfo.c (includes): Include inet_ntop and snprintf.
6429
6430 2006-07-05  Derek R. Price  <derek@ximbiot.com>
6431
6432         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Don't require AC_HEADER_STDC;
6433         no longer needed.
6434         * m4/exclude.m4 (gl_EXCLUDE): Likewise.
6435         * m4/getdate.m4 (gl_GETDATE): Likewise.
6436         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Likewise.
6437         * m4/memcasecmp.m4 (gl_MEMCASECMP): Likewise.
6438         * m4/strtod.m4 (gl_FUNC_STRTOD): Likewise.
6439         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
6440         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
6441
6442 2006-07-05  Derek R. Price  <derek@ximbiot.com>
6443
6444         * lib/exclude.c (IN_CTYPE_DOMAIN, is_space): Remove; no longer needed.
6445         All uses of is_space replaced by isspace.
6446         * lib/exit.h: Don't talk about STDC_HEADERS.
6447         * lib/fnmatch.c (ISASCII): Remove; no longer needed.  All uses removed.
6448         (ISPRINT, ISDIGIT, ISALNUM, ISALPHA, ISCNTRL, ISLOWER, ISPUNCT):
6449         (ISSPACE, ISUPPER, ISXDIGIT): Remove; no longer needed.  All uses
6450         replaced by isprint etc.
6451         * lib/getdate.y (IN_CTYPE_DOMAIN, ISSPACE, ISALPHA, ISLOWER): Likewise.
6452         * lib/getusershell.c (IN_CTYPE_DOMAIN, ISSPACE): Likewise.
6453         * lib/memcasecmp.c (IN_CTYPE_DOMAIN, ISLOWER, TOUPPER): Likewise.
6454         * lib/strtod.c (IN_CTYPE_DOMAIN, ISSPACE, ISDIGIT, TOLOWER): Likewise.
6455         * lib/strtol.c (IN_CTYPE_DOMAIN): Likewise.
6456         * lib/xstrtol.c (IN_CTYPE_DOMAIN, ISSPACE): Likewise.
6457
6458 2006-07-05  Bruno Haible  <bruno@clisp.org>
6459
6460         * m4/strndup.m4 (gl_FUNC_STRNDUP): When cross-compiling, check whether
6461         the function exists, before testing against AIX.
6462         Reported by Martin Lambers <marlam@marlam.de>.
6463
6464 2006-07-04  Paul Eggert  <eggert@cs.ucla.edu>
6465
6466         * modules/cycle-check (lib_SOURCES): Add same-inode.h.
6467         From Mark D. Baushke.
6468
6469 2006-07-04  Paul Eggert  <eggert@cs.ucla.edu>
6470
6471         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Prepend three slashes
6472         to the absolute name, not just one, to bypass Sun C 5.8's
6473         "warning: #include of /usr/include/... may be non-portable".
6474
6475 2006-07-04  Eric Blake  <ebb9@byu.net>
6476
6477         * modules/dirname-tests: New test module.
6478         * tests/test-dirname.c: New file, replacing dirname.c
6479         TEST_DIRNAME section that was recently deleted.
6480
6481 2006-07-04  Bruno Haible  <bruno@clisp.org>
6482
6483         Assume ANSI C header files and <ctype.h> functions.
6484         * lib/mbswidth.c (IN_CTYPE_DOMAIN, ISPRINT, ISCNTRL): Remove macros.
6485         (mbsnwidth): Use isprint, iscntrl instead.
6486
6487 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
6488
6489         Merge from coreutils.
6490         * MODULES.html.sh: Add xstrtold.
6491         * modules/xstrtold: New file.
6492         * modules/cycle-check (Files): Add lib/same-inode.h.
6493         * modules/dirname (Files): Add m4/double-slash-root.m4.
6494         * modules/getcwd (Files): Add m4/getcwd-abort-bug.m4.
6495         * modules/mkdir-p (Files): Add lib/same-inode.h.
6496         * modules/same (Files): Add lib/same-inode.h.
6497
6498 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
6499
6500         * m4/absolute-header.m4: Renamed from full-header-path.m4.
6501         This is to keep the terminology clean; POSIX talks about
6502         "absolute pathnames", not "full pathnames", but the GNU
6503         Coding Standards say to use "path" for something else;
6504         so use "absolute" to keep both sides happy.
6505         (gl_ABSOLUTE_HEADER): Renamed from gl_FULL_HEADER_PATH.
6506         Set gl_absolute_header, not gl_full_header_path.
6507         Set gl_cv_absolute_<header>, not gl_full_path_<header>.
6508         Define ABSOLUTE_<HEADER>, not FULL_PATH_<HEADER>.
6509         All uses changed.
6510
6511         Merge from coreutils.
6512
6513         2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
6514
6515         * m4/c-strtod.m4 (gl_C_STRTOLD): Add c-strtod.c to LIBSOURCES.
6516         Require gl_USE_SYSTEM_EXTENSIONS, not gl_C_STRTOD, since we don't
6517         want to require the building of c-strtod.o.
6518         * m4/lib-check.m4 (cu_LIB_CHECK): Remove SEQ_LIBM, since seq no longer
6519         needs -lm directly.
6520         * m4/xstrtod.m4 (gl_XSTRTOLD): New macro.
6521
6522         2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
6523
6524         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Prefer binutils's
6525         --as-needed option if available.  Problem reported by Albert Chin in
6526         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00114.html>.
6527         However, use -Wl,--as-needed, not bare --as-needed, since HP-UX 11.11
6528         cc merely issues a bunch of annoying warnings for --as-needed
6529         (this problem was reported by Bob Proulx).  Also, try linking with
6530         -lm to detect a bug in binutils 2.16 (this problem was reported
6531         by Ralf Wildenhues).
6532
6533         2006-06-18  Jim Meyering  <jim@meyering.net>
6534
6535         Test for a bug that causes glibc's getcwd to suffer a failed assertion.
6536         * m4/getcwd-abort-bug.m4 (gl_FUNC_GETCWD_ABORT_BUG): New file and
6537         macro.
6538         * m4/getcwd.m4 (gl_FUNC_GETCWD): If we detect support for getcwd_null,
6539         also check for glibc-2.4's abort-inducing bug.
6540
6541         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Fix typo.
6542         Low-probability clean-up should be to use rmdir to get rid of
6543         the just-created directory, not unlink.
6544
6545         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): If ftruncate is missing, make
6546         configure fail, and request a bug report to inform us about it.
6547         Add a comment that, barring reports to the contrary, in 2007 we'll
6548         assume ftruncate is universally available.
6549
6550         2006-04-17  Paul Eggert  <eggert@cs.ucla.edu>
6551
6552         * m4/filemode.m4 (gl_FILEMODE): Check for strmode declaration.
6553
6554         2006-03-12  Jim Meyering  <jim@meyering.net>
6555
6556         * m4/chdir-safer.m4 (gl_CHDIR_SAFER): Add same-inode.h to the list.
6557         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Likewise.
6558         * m4/same.m4 (gl_SAME): Likewise.
6559         * m4/root-dev-ino.m4 (gl_ROOT_DEV_INO): Likewise.
6560
6561         2006-03-11  Eric Blake  <ebb9@byu.net>
6562
6563         * m4/double-slash-root.m4: New file, provides gl_DOUBLE_SLASH_ROOT.
6564         * m4/dirname.m4 (gl_DIRNAME): Use gl_DOUBLE_SLASH_ROOT.
6565         * m4/dos.m4 (FILE_SYSTEM_PREFIX_LEN): Move from here to dirname.h.
6566         (FILE_SYSTEM_DRIVE_PREFIX_CAN_BE_RELATIVE): New define.
6567
6568 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
6569
6570         * lib/stdint_.h: Include <sys/types.h> after @FULL_PATH_STDINT_H@, for
6571         MacOS X 10.4.6.  Don't mention <sys/int_types.h>.  Problems
6572         reported by Mark D. Baushke, one in
6573         <http://lists.gnu.org/archive/html/bug-gnulib/2006-07/msg00015.html>.
6574
6575         Merge from coreutils.
6576
6577         * lib/.cppi-disable: Add stdint_.h.
6578         * lib/.cvsignore: Add stdint.h.
6579
6580         2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
6581
6582         * lib/xstrtod.c (XSTRTOD, DOUBLE): New macros, so that we can support
6583         both double and long double versions.
6584         (XSTRTOD): Renamed from xstrtod.  Use DOUBLE internally.
6585         * lib/xstrtold.c: New file.
6586         * lib/xstrtod.h (xstrtold): New decl.
6587
6588         2006-05-22  Paul Eggert  <eggert@cs.ucla.edu>
6589
6590         * lib/filemode.c (setst): Remove.
6591         (strmode): Rewrite to avoid setst.  This makes the code shorter,
6592         (arguably) clearer, and the generated code is a bit smaller on my
6593         Debian GNU/Linux stable x86 host.
6594
6595         2006-04-17  Paul Eggert  <eggert@cs.ucla.edu>
6596
6597         * lib/filemode.c: Include "filemode.h" first, to test the interface.
6598         Assume that filemode.h includes sys/types.h and sys/stat.h.
6599         (HAVE_ST_DM_MODE): New macro, moved here from ls.c.
6600         (ftypelet): Reorder to put common cases first, for efficiency.
6601         Add 'P', 'w'.  Remove 'M', since it's now the caller's responsibility
6602         to do 'M'.
6603         (strmode): Renamed from mode_string, and now stores 12 bytes instead
6604         of 10, for compatibility with FreeBSD.  All callers changed.
6605         (filemodestring): Now stores 12 bytes instead of 10, and sets file
6606         types that can't be deduced solely from st_mode.  First arg is now a
6607         const pointer.
6608         * lib/filemode.h (HAVE_DECL_STRMODE): Include <string.h> for strmode.
6609         (strmode): Renamed from mode_string.
6610         (filemodestring): New decl.
6611         * lib/stat-macros.h: Don't undef S_ISDOOR, since it's never buggy.
6612         (S_ISDOOR): Don't bother with S_IFDOOR, since that code is never
6613         needed.
6614         (S_ISPORT, S_ISWHT): New macros, if not already defined.
6615
6616         2006-04-12  Paul Eggert  <eggert@cs.ucla.edu>
6617
6618         * lib/fsusage.c: Don't include <inttypes.h> or <stdint.h>, since
6619         fsusage.h now does that.  Include fsusage.h first, to test interface.
6620         Prefer statvfs if it works, since it's blessed by POSIX.  Attempt
6621         at most one method (the old code could have generated decls that
6622         didn't conform to C89, not that this was ever exercised).
6623         * lib/fsusage.h: Include <inttypes.h> and <stdint.h> if they exist.
6624
6625         2006-03-19  Jim Meyering  <jim@meyering.net>
6626
6627         Work even in a chroot where d_ino values for entries in "/"
6628         don't match the stat.st_ino values for the same names.
6629         * lib/getcwd.c (__getcwd): When no d_ino value matches the target inode
6630         number, iterate through all entries again, using lstat instead.
6631         Reported by Kenshi Muto in http://bugs.debian.org/355810, and by
6632         Zouhir Hafidi in https://bugzilla.redhat.com/bugzilla/190656.
6633
6634         * lib/getcwd.c (__getcwd): Clarify a comment.
6635         Use memcpy in place of a call to strcpy.
6636
6637         2006-03-12  Jim Meyering  <jim@meyering.net>
6638
6639         * lib/fts-cycle.c (leave_dir): If cycle-check's saved dev-ino pair
6640         matches that of the current directory (which we're about to chdir ".."
6641         out of), then save the dev-ino of the parent, instead.
6642
6643         * lib/same-inode.h (SAME_INODE): New file/macro.
6644         * lib/chdir-safer.c (SAME_INODE): Remove definition.
6645         Include "same-inode.h", instead.
6646         * lib/same.c: Likewise.
6647         * lib/cycle-check.h: Include "same-inode.h".
6648         (CYCLE_CHECK_REFLECT_CHDIR_UP): Define.
6649         * lib/cycle-check.c (SAME_INODE): Remove definition.
6650         * lib/root-dev-ino.h: Include "same-inode.h".
6651
6652         2006-03-11  Eric Blake  <ebb9@byu.net>
6653
6654         * lib/same.c (same_name): s/base_name/last_component/
6655         * lib/backupfile.c (check_extension, numbered_backup): Likewise.
6656         * lib/filenamecat.c (file_name_concat): Likewise.
6657
6658         2006-03-11  Eric Blake  <ebb9@byu.net>,
6659                     Paul Eggert  <eggert@cs.ucla.edu>
6660
6661         * lib/dirname.h (FILE_SYSTEM_PREFIX_LEN): Move here from dos.m4.
6662         [FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]: Don't treat 1: as a
6663         drive prefix.
6664         (IS_ABSOLUTE_FILE_NAME): Treat all drive letters as absolute on
6665         platforms like cygwin with FILE_SYSTEM_DRIVE_PREFIX_IS_ABSOLUTE.
6666         (last_component): New method.
6667         * lib/dirname.c (dir_len): Determine when drive letters need a
6668         subsequent slash.  Preserve // when it is special.
6669         (dir_name): Don't append dot when drive letter is absolute.
6670         [TEST_DIRNAME]: Move into a full-blown gnulib test.
6671         * lib/basename.c (base_name): New semantics - malloc the result.
6672         Preserve // when it is special.  Preserve relative files that look
6673         like drive letters.
6674         (base_len): Preserve // when it is special.
6675         (last_component): New method, similar to old base_name semantics.
6676         * lib/stripslash.c (strip_trailing_slashes): Use last_component, not
6677         base_name.  Strip redundant slashes from ///.
6678
6679 2006-07-03  Jim Meyering  <jim@meyering.net>
6680
6681         * lib/cycle-check.h (CYCLE_CHECK_REFLECT_CHDIR_UP): Abort if this
6682         macro is used before the first cycle_check call.
6683
6684 2006-07-03  Eric Blake  <ebb9@byu.net>
6685
6686         * modules/dirname (Depends-on): Add xstrndup.
6687
6688 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
6689
6690         * m4/stdint.m4 (gl_STDINT_H): Use more-mnemonic identifiers for
6691         test cases, so that config.log is a bit easier to follow.
6692
6693 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
6694
6695         * lib/stdint_.h (intmax_t, uintmax_t): Prefer long to long long if
6696         both are 64 bits, since this seems to be the tradition, and this
6697         prevents gcc -Wformat from warning about usages with PRIuMAX.  If
6698         we ever run into a host that prefers long long to long in this
6699         case, we'll need another configure-time test.  Problem reported by
6700         Jim Meyering.
6701
6702 2006-07-02  Eric Blake  <ebb9@byu.net>
6703
6704         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Simplify by using AC_CHECK_DECLS.
6705
6706 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
6707
6708         * modules/inttypes (Depends-on): No longer depends on stdint.
6709         * modules/stdint (Description): Say more about assumptions.
6710         Say that the fast types might differ.  Say macros are used.
6711         (Files): Remove m4/size_max.m4, m4/wchar_t.m4.  Add m4/longlong.m4.
6712         (Makefile.am): Revise list of substituted symbols to match
6713         new stdint.m4.
6714         * modules/stdint-tests (Files): Add m4/wchar_t.m4, m4/wint_t.m4.
6715         (configure.ac): Add gt_TYPE_WCHAR_T, gt_TYPE_WINT_T.
6716         * tests/test-stdint.c (verify_same_types)
6717         [! (__GNUC__ >= 2 && DO_PEDANTIC)]: Put in a decl, so that
6718         the code conforms to C99/C89.
6719         Test for WCHAR_MIN and WCHAR_MAX only if HAVE_WCHAR_T.
6720         Test for WINT_MIN and WINT_MAX only if HAVE_WINT_T.
6721
6722 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
6723
6724         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Backport from Autoconf 2.60,
6725         but fix a bug, by requiring at least 64 bits.
6726         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Likewise.
6727         * m4/longlong.m4 (gl_AC_TYPE_LONG_LONG): Now just call
6728         AC_TYPE_LONG_LONG_INT.  This macro is obsolete and will go soon.
6729         * m4/ulonglong.m4 (gl_AC_TYPE_UNSIGNED_LONG_LONG) Likewise.
6730
6731         * m4/stdint.m4 (gl_STDINT_H): Rewrite to accommodate stdint_.h
6732         changes.  Make 2.59 a prerequisite.  Check and substitute for
6733         HAVE_LONG_LONG_INT.  Rely on Autoconf to check for stdint.h and
6734         inttypes.h.  Do not use special include files; just use the
6735         defaults.  Check for sys/inttypes.h and sys/bitypes.h in the usual
6736         way now.  Remove no-longer-needed tests for HAVE_LONG_64BIT,
6737         HAVE_LONG_LONG_64BIT, int8_t, int16_t, int32_t, int64_t, uint8_t,
6738         uint16_t, uint32_t uint64_t, int_least8_t, int_least16_t,
6739         int_least32_t, int_least64_t, uint_least8_t, uint_least16_t,
6740         uint_least32_t, uint_least64_t, int_fast8_t, int_fast16_t,
6741         int_fast32_t, int_fast64_t, uint_fast8_t uint_fast16_t,
6742         uint_fast32_t, uint_fast64_t, intptr_t, uintptr_t, intmax_t,
6743         uintmax_t, INT8_MIN, INT8_MAX, UINT8_MAX, INT16_MIN, INT16_MAX,
6744         UINT16_MAX, INT32_MIN, INT32_MAX, UINT32_MAX, INT64_MIN,
6745         INT64_MAX, UINT64_MAX, INT_LEAST8_MIN, INT_LEAST8_MAX,
6746         UINT_LEAST8_MAX, INT_LEAST16_MIN, INT_LEAST16_MAX,
6747         UINT_LEAST16_MAX, INT_LEAST32_MIN, INT_LEAST32_MAX,
6748         UINT_LEAST32_MAX, INT_LEAST64_MIN, INT_LEAST64_MAX,
6749         UINT_LEAST64_MAX, INT_FAST8_MIN, INT_FAST8_MAX, UINT_FAST8_MAX,
6750         INT_FAST16_MIN, INT_FAST16_MAX, UINT_FAST16_MAX, INT_FAST32_MIN,
6751         INT_FAST32_MAX, UINT_FAST32_MAX, INT_FAST64_MIN, INT_FAST64_MAX,
6752         UINT_FAST64_MAX, INTPTR_MIN, INTPTR_MAX, UINTPTR_MAX, INTMAX_MIN,
6753         INTMAX_MAX, UINTMAX_MAX, PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN,
6754         SIG_ATOMIC_MAX, SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN,
6755         WINT_MAX.  Check for C99 conformance more strictly, by detecting
6756         bugs in glibc 2.4, Solaris 10, and OpenBSD 3.9.  On the other hand do
6757         not check for things that C99 does not require, e.g., int8_t.  If
6758         a test isn't needed unless <stdint.h> isn't working, and is
6759         unlikely to be needed for any other reason, then don't do it
6760         unless <stdint.h> isn't working.  Do not check for ptrdiff_t or
6761         size_t, since we assume C89 freestanding at least.  Do not check
6762         for sig_atomic_t, wchar_t, or wint_t, since the code now does
6763         the right thing even if the types are not defined.  Instead use:
6764         (gl_STDINT_TYPE_PROPERTIES): New macro.
6765         (gl_HEADER_STDINT_H, gl_HEADER_INTTYPES_H): Remove.  Don't bother
6766         testing whether <sys/types.h> clashes, as Autoconf does this for
6767         us now.  All uses removed.
6768         (gl_STDINT_CHECK_TYPES, gl_STDINT_MISSING_BOUND):
6769         (gl_STDINT_MISSING_BOUNDS, gl_STDINT_MISSING_BOUNDS2):
6770         (gl_CHECK_TYPE_SAME):
6771         Remove; no longer needed.
6772         (gl_STDINT_BITSIZEOF): Don't bother to check whether the type
6773         exists, since we'll return 0 anyway in that case.
6774         (gl_INTEGER_TYPE_SUFFIX, gl_STDINT_INCLUDES): New macros.
6775
6776 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
6777
6778         * lib/stdint_.h (_GL_STDINT_H): Renamed from _STDINT_H, to avoid
6779         possible collision with system files.
6780         (<stdio.h>, <time.h>, <wchar.h>) [defined __cplusplus && ! defined
6781         __STDC_CONSTANT_MACROS)]: Do not include, since we don't need
6782         WCHAR_MIN and WCHAR_MAX in this case.
6783         (<stddef.h>): Do not include; no longer needed.
6784         (<sys/types.h>): Include if @HAVE_SYS_TYPES_H@, not if
6785         (defined(__OpenBSD__) || defined(__bsdi__) || defined(__sgi)).
6786         (<sys/inttypes.h>): Include if @HAVE_SYS_INTTYPES_H@ &&
6787         !@HAVE_INTTYPES_H@, not if (defined(__FreeBSD__)
6788         && (__FreeBSD__ >= 3) && (__FreeBSD__ <= 4)).
6789         (__STDINT_H__) [@HAVE_STDINT_H@ && defined __sgi && ! defined
6790         __c99]: Define, to work around IRIX <stdint.h> incompatibility.
6791         (@FULL_PATH_STDINT_H@) [!(defined(__sgi) && @HAVE_INTTYPES_H@ &&
6792         !defined(__c99))]: Include in this case too, since it's harmless
6793         now.
6794         (<inttypes.h>) [@HAVE_INTTYPES_H@]: Include, since it's no longer
6795         dangerous to do so.
6796         (@FULL_PATH_INTTYPES_H@) [(defined(__hpux) || defined(_AIX)) &&
6797         @HAVE_INTTYPES_H@]: Do not include, since we now include <inttypes.h>.
6798         (_STDINT_MIN, _STDINT_MAX): New macros.
6799         (int8_t, uint8_t, int16_t, uint16_t, int32_t, uint32_t, int64_t):
6800         (uint64_t, int_least8_t, uint_least8_t, int_least16_t):
6801         (uint_least16_t, int_least32_t, uint_least32_t, int_least64_t):
6802         (uint_least64_t, int_fast8_t, uint_fast8_t, int_fast16_t):
6803         (uint_fast16_t, int_fast32_t, uint_fast32_t, int_fast64_t):
6804         (uint_fast64_t, intptr_t, uintptr_t, intmax_t, uintmax_t): Now
6805         macros, not typedefs; this simplifies things quite a bit.
6806         Use long int for all types narrower than int64_t.
6807         (intmax_t, uintmax_t, INTMAX_C, UINTMAX_C):
6808         Define in terms of long long int or int64_t or long int,
6809         not int64_t or int32_t.  This saves some compile-time testing.
6810         (INT8_MIN, INT8_MAX, UINT8_MAX, INT16_MIN, INT16_MAX, UINT16_MAX):
6811         (INT32_MIN, INT32_MAX, UINT32_MAX, INT64_MIN, INT64_MAX):
6812         (UINT64_MAX, INT_LEAST8_MIN, INT_LEAST8_MAX, UINT_LEAST8_MAX):
6813         (INT_LEAST16_MIN, INT_LEAST16_MAX, UINT_LEAST16_MAX):
6814         (INT_LEAST32_MIN, INT_LEAST32_MAX, UINT_LEAST32_MAX):
6815         (INT_LEAST64_MIN, INT_LEAST64_MAX, UINT_LEAST64_MAX, INT_FAST8_MIN):
6816         (INT_FAST8_MAX, UINT_FAST8_MAX, INT_FAST16_MIN, INT_FAST16_MAX):
6817         (UINT_FAST16_MAX, INT_FAST32_MIN, INT_FAST32_MAX, UINT_FAST32_MAX):
6818         (INT_FAST64_MIN, INT_FAST64_MAX, UINT_FAST64_MAX, INTPTR_MIN):
6819         (INTPTR_MAX, UINTPTR_MAX, INTMAX_MIN, INTMAX_MAX, UINTMAX_MAX):
6820         (PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX):
6821         (SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN, WINT_MAX):
6822         undef any previous version and define our own version, for
6823         simplicity and consistency with the new macros for types.
6824         (PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX):
6825         (SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN, WINT_MAX):
6826         Simplify definitions by using _STDINT_MIN and _STDINT_MAX
6827         where appropriate.  Rely on new symbols @PTRDIFF_T_SUFFIX@,
6828         @SIG_ATOMIC_T_SUFFIX@, @SIZE_T_SUFFIX@, @WCHAR_T_SUFFIX@,
6829         @WINT_T_SUFFIX@ to keep things simple here.
6830         (UINT8_C, UINT16_C, UINT32_C, INT64_C, UINT64_C):
6831         Simplify by assuming typical 8/16/32/64 host, since we're
6832         already doing that elsewhere anyway.
6833         Use (LONG_MAX >> 31 >> 31 == 1) rather than @HAVE_LONG_64BIT@,
6834         and assume long long int is 64 bits if available.  This
6835         speeds up 'configure'.
6836
6837 2006-07-01  Eric Blake  <ebb9@byu.net>
6838
6839         * m4/stdarg.m4 (gl_STDARG_H): Use proper AH_VERBATIM.
6840         Reported by Andreas Buening.
6841
6842 2006-07-01  Eric Blake  <ebb9@byu.net>
6843
6844         * m4/stdarg.m4 (gl_STDARG_H): Properly parenthesize gl_va_copy.
6845
6846 2006-06-30  Jim Hyslop  <jhyslop@dreampossible.ca>  (tiny change)
6847
6848         * lib/getaddrinfo.c: fixed typo
6849
6850 2006-06-29  Jim Meyering  <jim@meyering.net>
6851
6852         * modules/strftime (Maintainer): Add my name, since with the
6853         FPRINTFTIME changes strftime.c has forked from glibc.
6854
6855 2006-06-29  Eric Blake  <ebb9@byu.net>
6856
6857         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Use AC_C_INLINE.
6858
6859 2006-06-29  Eric Blake  <ebb9@byu.net>
6860
6861         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): New file.
6862
6863 2006-06-29  Eric Blake  <ebb9@byu.net>
6864
6865         * lib/stat_.h: New file.
6866
6867 2006-06-29  Eric Blake  <ebb9@byu.net>
6868
6869         * lib/stat_.h (rpl_mkdir): Declare inline, to avoid warnings about
6870         unused static function.
6871
6872 2006-06-29  Eric Blake  <ebb9@byu.net>
6873
6874         * doc/functions.texi (Function Portability): Document missing lstat
6875         on mingw.
6876
6877 2006-06-29  Eric Blake  <ebb9@byu.net>
6878
6879         * MODULES.html.sh: Add sys_stat.
6880         * modules/sys_stat: New module.
6881         * modules/mkstemp (Depends-on): Add sys_stat.
6882
6883 2006-06-29  Derek R. Price  <derek@ximbiot.com>
6884
6885         * m4/strftime.m4: Don't call AC_FUNC_STRFTIME.
6886
6887 2006-06-29  Derek R. Price  <derek@ximbiot.com>
6888
6889         * m4/c-bs-a.m4: Removed.
6890
6891 2006-06-29  Derek R. Price  <derek@ximbiot.com>
6892
6893         * lib/strftime.c: Assume strftime() exists.
6894
6895 2006-06-29  Derek Price  <derek@ximbiot.com>
6896
6897         * modules/c-bs-a: Removed - \a is C89.
6898         * MODULES.html.sh: Remove c-bs-a.
6899
6900 2006-06-29  Bruno Haible  <bruno@clisp.org>
6901
6902         * modules/wcwidth (License): Change to LGPL.
6903
6904 2006-06-28  Simon Josefsson  <jas@extundo.com>
6905
6906         * tests/test-getaddrinfo.c: Test getnameinfo too.  Call WSAStartup
6907         on _WIN32.
6908
6909         * modules/getaddrinfo (Depends-on): Add inet_ntop, needed by
6910         getnameinfo.
6911
6912 2006-06-28  Simon Josefsson  <jas@extundo.com>
6913
6914         * m4/getaddrinfo.m4: Look for getnameinfo prototypes too.
6915
6916 2006-06-28  Simon Josefsson  <jas@extundo.com>
6917
6918         * lib/getaddrinfo.c: Try to load ws2_32.dll on Windows, to find the
6919         functions there.  It will succeed on Windows XP, but on Windows
6920         2000 and (presumably) earlier, it will fail, and use the internal
6921         re-implementation.
6922         (use_win32_p): New function.
6923         (getaddrinfo): Use strtoul on servname, to support numeric ports.
6924         Support AI_NUMERICSERV to disable getservbyname.
6925         (getnameinfo): New function, only supports
6926         NI_NUMERICHOST|NI_NUMERICSERV for now.
6927
6928         * lib/getaddrinfo.h: Test and check for AI_* flags separately, MinGW
6929         only have some of them.  Add AI_NUMERICSERV.  Add prototype for
6930         getnameinfo.
6931
6932 2006-06-28  Eric Blake  <ebb9@byu.net>
6933
6934         * modules/wcwidth: New file.
6935         * modules/mbchar (Depends-on): Add wcwidth.
6936         * modules/mbswidth (Depends-on): Add wcwidth.
6937         * MODULES.html.sh: Add wcwidth.
6938
6939 2006-06-28  Eric Blake  <ebb9@byu.net>
6940
6941         * m4/mbswidth.m4 (gl_MBSDWIDTH): Move wcwidth from here...
6942         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): ...to this new file.
6943
6944 2006-06-28  Eric Blake  <ebb9@byu.net>
6945
6946         * lib/xvasprintf.h: Fix comments.
6947
6948 2006-06-28  Eric Blake  <ebb9@byu.net>
6949
6950         * lib/mbchar.h (wcwidth): Include wcwidth.h.
6951         * lib/mbswidth.c (wcwidth): Move from here...
6952         * lib/wcwidth.h: ...to this new file.
6953
6954 2006-06-28  Derek R. Price  <derek@ximbiot.com>
6955
6956         * m4/savedir.m4: Remove AC_FUNC_CLOSEDIR_VOID requirement.
6957
6958         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Don't require AC_C_CONST, since
6959         it's obsolete.
6960         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME): Likewise.
6961
6962 2006-06-28  Derek R. Price  <derek@ximbiot.com>
6963
6964         * lib/savedir.c (CLOSEDIR): Remove.  All uses changed to closedir.
6965         Autoconf 2.60 says this stuff was obsolete.
6966
6967 2006-06-28  Bruno Haible  <bruno@clisp.org>
6968
6969         * modules/wcwidth (Files): Add m4/wchar_t.m4.
6970
6971 2006-06-28  Bruno Haible  <bruno@clisp.org>
6972
6973         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Also require AC_C_INLINE and
6974         gt_TYPE_WCHAR_T.
6975
6976 2006-06-28  Bruno Haible  <bruno@clisp.org>
6977
6978         * lib/wcwidth.h: Declare nothing if !HAVE_WCHAR_T. Provide a fallback
6979         declaration for wcwidth.
6980         * lib/mbswidth.c: Restore the includes of <wchar.h> and <wctypes.h>.
6981
6982 2006-06-28  Bruno Haible  <bruno@clisp.org>
6983
6984         * lib/mkdtemp.c [MINGW]: Include <io.h>.
6985         (mkdir): Define using _mkdir.
6986
6987 2006-06-28  Bruno Haible  <bruno@clisp.org>
6988
6989         * lib/getaddrinfo.h: Fix POSIX URL.
6990         * lib/getaddrinfo.c (WIN32_NATIVE): New macro. Use it instead of
6991         _WIN32.
6992         (use_win32_p): Make static.
6993         (getaddrinfo): Reject service name if it is empty or does not consist
6994         solely of decimal digits, or if its value is > 65535.
6995         (getnameinfo): Remove useless casts.
6996
6997 2006-06-27  Simon Josefsson  <jas@extundo.com>
6998
6999         * modules/sys_select: New file, suggested by Bruno Haible, Paul
7000         Eggert and Martin Lambers.
7001
7002 2006-06-27  Simon Josefsson  <jas@extundo.com>
7003
7004         * m4/sys_select_h.m4: New file, suggested by Bruno Haible, Paul
7005         Eggert and Martin Lambers.
7006
7007 2006-06-27  Bruno Haible  <bruno@clisp.org>
7008
7009         * m4/stdint.m4 (gl_STDINT_BITSIZEOF): For nonexistent types, set the
7010         result to 0, not to empty.
7011         Reported by Martin Neitzel <neitzel@sco.gaertner.de>.
7012
7013 2006-06-27  Bruno Haible  <bruno@clisp.org>
7014
7015         * lib/stdint_.h (intmax_t, uintmax_t): Undefine before typedef.
7016
7017 2006-06-26  Simon Josefsson  <jas@extundo.com>
7018
7019         * m4/inet_ntop.m4: Don't check for sys/types.h, we assume it is
7020         present.
7021
7022 2006-06-26  Paul Eggert  <eggert@cs.ucla.edu>
7023
7024         * lib/base64.c (B64): Use _ as the formal parameter, not x, to avoid
7025         bug in IBM C V6 for AIX.  Problem reported by Larry Jones in
7026         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00181.html>.
7027
7028 2006-06-26  Mark D. Baushke  <mdb@gnu.org>
7029
7030         * m4/stdint.m4 (gl_STDINT_H): Treat BSD/OS like OpenBSD.
7031
7032 2006-06-26  Bruno Haible  <bruno@clisp.org>
7033
7034         * modules/stdint (Makefile.am): Also substitute HAVE_WCHAR_H.
7035
7036 2006-06-26  Bruno Haible  <bruno@clisp.org>
7037
7038         * m4/stdint.m4 (gl_STDINT_H): Test also for <wchar.h>.
7039
7040 2006-06-26  Bruno Haible  <bruno@clisp.org>
7041
7042         * m4/stdint.m4 (gl_STDINT_H): Don't include <stdint.h> when using the
7043         SGI C compiler in pre-C99 mode.
7044         Suggested by Mark D. Baushke and Larry Jones.
7045
7046 2006-06-26  Bruno Haible  <bruno@clisp.org>
7047
7048         * lib/stdint_.h: Include <wchar.h> if necessary for WCHAR_MIN or
7049         WCHAR_MAX.
7050         Reported by Mark D. Baushke and Larry Jones.
7051
7052 2006-06-26  Bruno Haible  <bruno@clisp.org>
7053
7054         * lib/stdint_.h: Don't include <stdint.h> when using the SGI C compiler
7055         in pre-C99 mode.
7056         Suggested by Mark D. Baushke and Larry Jones.
7057
7058 2006-06-23  Simon Josefsson  <jas@extundo.com>
7059             Bruno Haible  <bruno@clisp.org>
7060
7061         * gnulib-tool (func_emit_lib_Makefile_am): Define MOSTLYCLEANDIRS.
7062         Emit mostlyclean-local rule.
7063         (func_emit_tests_Makefile_am): Likewise.
7064         * modules/sys_socket (Makefile.am): Use MOSTLYCLEANDIRS.
7065
7066 2006-06-23  Mark D. Baushke  <mdb@gnu.org>
7067
7068         * lib/stdint_.h: Treat BSD/OS like OpenBSD.
7069
7070 2006-06-23  Bruno Haible  <bruno@clisp.org>
7071
7072         * tests/test-stdint.c: Update to match ISO C 99 Technical
7073         Corrigendum 1.
7074
7075 2006-06-23  Bruno Haible  <bruno@clisp.org>
7076
7077         * m4/stdint.m4 (gl_STDINT_H): Treat IRIX like OpenBSD.
7078
7079 2006-06-23  Bruno Haible  <bruno@clisp.org>
7080
7081         * lib/stdint_.h: Treat IRIX like OpenBSD.
7082
7083 2006-06-23  Bruno Haible  <bruno@clisp.org>
7084
7085         * lib/stdint_.h (UINT8_C, UINT16_C, UINT32_C): Define according to
7086         ISO C 99 Technical Corrigendum 1.
7087
7088 2006-06-22  Simon Josefsson  <jas@extundo.com>
7089
7090         * m4/sockpfaf.m4: Include winsock2.h too, to make it work under
7091         MinGW.
7092
7093 2006-06-22  Paul Eggert  <eggert@cs.ucla.edu>
7094
7095         * lib/glob.c (collated_compare): Remove 'const' uses that weren't
7096         needed.  Some compiler complained about some of them.  Problem reported
7097         by Larry Jones in
7098         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00172.html>.
7099
7100 2006-06-21  Simon Josefsson  <jas@extundo.com>
7101
7102         * tests/test-getaddrinfo.c: New file.
7103
7104         * modules/getaddrinfo-tests: New file.
7105
7106         * MODULES.html.sh: Add inet_pton.
7107
7108         * modules/inet_pton: New file.
7109
7110 2006-06-21  Simon Josefsson  <jas@extundo.com>
7111
7112         * m4/getaddrinfo.m4: Don't define WINVER.  Look for gethostbyname in
7113         -lws2_32 too.  Fixes getaddrinfo on Windows 2000, with the price
7114         of using the (limited) gnulib implementation on Windows XP.
7115
7116         * m4/inet_pton.m4: New file.
7117
7118 2006-06-21  Simon Josefsson  <jas@extundo.com>
7119
7120         * lib/getaddrinfo.c (getaddrinfo): Set ai_family in the return
7121         variable.
7122
7123         * lib/socket_.h: Don't define WINVER.
7124
7125         * lib/inet_pton.h, inet_pton.c: New file, taken from glibc but
7126         slightly modified to work in gnulib.
7127
7128 2006-06-21  Simon Josefsson  <jas@extundo.com>
7129
7130         * doc/gnulib.texi (Windows sockets): Add.
7131
7132 2006-06-21  Paul Eggert  <eggert@cs.ucla.edu>
7133
7134         * lib/read-file.c (fread_file): Start with buffer allocation of
7135         0 bytes rather than 1 byte; this simplifies the code.
7136         Don't invoke feof; it's not needed.  Refactor to avoid duplicate
7137         code to free buffer and save/restore errno.
7138         (internal_read_file): Remove unused local.
7139
7140 2006-06-20  Paul Eggert  <eggert@cs.ucla.edu>
7141
7142         * lib/openat.c (openat): Use ?:, not if, to work around GCC bug 4210
7143         <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=4210>.
7144         Problem reported by Denis Excoffier in
7145         <http://lists.gnu.org/archive/html/bug-tar/2006-06/msg00023.html>.
7146
7147 2006-06-19  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
7148
7149         * modules/sys_socket, modules/socklen: Include sys/types since
7150         FreeBSD 4.x's sys/socket.h needs it.
7151
7152 2006-06-19  Simon Josefsson  <jas@extundo.com>
7153
7154         * lib/inet_ntop.c: Always build inet_ntop4, since inet_ntop6 calls it.
7155
7156 2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
7157
7158         * lib/alloca_.h (alloca) [defined alloca]: Don't define or declare.
7159
7160 2006-06-19  Bruno Haible  <bruno@clisp.org>
7161
7162         * m4/stdint.m4 (gl_STDINT_H): Enclose the values of FULL_PATH_STDINT_H
7163         and FULL_PATH_INTTYPES_H in angle brackets.
7164         Reported by Mark D. Baushke <mdb@gnu.org>.
7165
7166 2006-06-17  Eric Blake  <ebb9@byu.net>
7167
7168         * m4/rmdir-errno.m4 (gl_FUNC_FMDIR_NOTEMPTY): Assume errno.h declares
7169         errno.
7170
7171 2006-06-17  Bruno Haible  <bruno@clisp.org>
7172
7173         * m4/stdint.m4 (gl_STDINT_H) [FreeBSD >= 5]: Don't include
7174         <sys/inttypes.h>.
7175
7176 2006-06-17  Bruno Haible  <bruno@clisp.org>
7177
7178         * m4/setenv.m4 (gl_PREREQ_SETENV, gl_PREREQ_UNSETENV): Remove test
7179         whether errno is declared. Assume <errno.h> declares errno.
7180
7181 2006-06-17  Bruno Haible  <bruno@clisp.org>
7182
7183         * lib/stdint_.h [FreeBSD >= 5]: Don't include <sys/inttypes.h>.
7184
7185 2006-06-17  Bruno Haible  <bruno@clisp.org>
7186
7187         * lib/stdint_.h (_UINT8_T, _UINT32_T, _UINT64_T): New macros. Fixes a
7188         problem on Solaris 2.5.1.
7189
7190 2006-06-16  Eric Blake  <ebb9@byu.net>
7191
7192         * lib/unsetenv.c [!defined errno]: Assume errno.h declares errno.
7193         * lib/unicodeio.c [!defined errno]: Likewise.
7194         * lib/strtol.c [!defined errno]: Likewise.
7195         * lib/strtod.c [!defined errno]: Likewise.
7196
7197 2006-06-15  Eric Blake  <ebb9@byu.net>
7198
7199         * m4/ssize_t.m4 (gt_TYPE_SSIZE_T): Work in spite of -Werror.
7200
7201 2006-06-15  Eric Blake  <ebb9@byu.net>
7202
7203         * config/srclist.txt (ssize_t.m4): Lose sync.
7204
7205 2006-06-15  Bruno Haible  <bruno@clisp.org>
7206
7207         * modules/stdint (Files): Include m4/full-header-path.m4,
7208         m4/size_max.m4, m4/wchar_t.m4.
7209         (Makefile.am): Many more substitutions.
7210         * modules/stdint-tests: New file.
7211         * tests/test-stdint.c: New file.
7212
7213 2006-06-15  Bruno Haible  <bruno@clisp.org>
7214
7215         * m4/stdint.m4 (gl_STDINT_H): Rewritten to produce a complete stdint.h.
7216         (gl_HEADER_STDINT_H, gl_HEADER_INTTYPES_H, gl_STDINT_CHECK_TYPES,
7217         gl_STDINT_MISSING_BOUND, gl_STDINT_MISSING_BOUNDS,
7218         gl_STDINT_MISSING_BOUNDS2, gl_STDINT_BITSIZEOF, gl_CHECK_TYPES_SIGNED,
7219         gl_CHECK_TYPE_SAME): New macros.
7220
7221 2006-06-15  Bruno Haible  <bruno@clisp.org>
7222
7223         * m4/size_max.m4 (gl_SIZE_MAX): Make it work also when cross-compiling.
7224
7225 2006-06-15  Bruno Haible  <bruno@clisp.org>
7226
7227         * lib/stdint_.h: Rewritten to be fully auto-configured.
7228         Fixes bug on HP-UX/IA64.
7229
7230 2006-06-11  Paul Eggert  <eggert@cs.ucla.edu>
7231
7232         * lib/getdate.y (__attribute__): Don't define if already defined.
7233         Problem reported by Larry Jones.
7234         * lib/utimens.c (__attribute__): Likewise.
7235
7236 2006-06-04  Paul Eggert  <eggert@cs.ucla.edu>
7237
7238         * lib/regexec.c (group_nodes_into_DFAstates): Fix a buffer overrun
7239         reported by Andreas Schwab.
7240
7241 2006-05-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7242             Bruno Haible  <bruno@clisp.org>
7243
7244         * m4/strndup.m4 (gl_FUNC_STRNDUP): Replace the AC_REPLACE_FUNCS with a
7245         check for the declaration of strnlen and a run test that exposes the
7246         AIX 5.1 strnlen bug.  In the failure case, #define strndup to
7247         rpl_strndup.
7248
7249 2006-05-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7250             Bruno Haible  <bruno@clisp.org>
7251
7252         * lib/strndup.c (strndup) [!_LIBC]: Don't undefine macro definition.
7253
7254 2006-05-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7255
7256         * m4/c-strtod.m4 (gl_C99_STRTOLD): Use a link test rather than a
7257         compile test, for Tru64 4.0D.
7258
7259 2006-05-28  Karl Berry  <karl@gnu.org>
7260
7261         * config/srclist.txt (printf-args.c): lose sync.
7262
7263 2006-05-26  Martin Lambers  <marlam@marlam.de>
7264
7265         * lib/getpass.c: Updates the test for the native W32 API, and adds
7266         missing includes, thus fixing compilation warnings.
7267
7268 2006-05-25  Sergey Poznyakoff  <gray@gnu.org.ua>
7269
7270         * lib/exclude.c (exclude_fnmatch): New function.
7271         (excluded_file_name): Call exclude_fnmatch.
7272         * lib/exclude.h (excluded_file_name): New prototype
7273
7274 2006-05-25  Paul Eggert  <eggert@cs.ucla.edu>
7275
7276         * lib/tempname.c (small_open, large_open): New macros.
7277         (__open, __open64) [!_LIBC]: Remove.
7278         (__gen_tempname): Use small_open and large_open instead of __open
7279         and __open64.  This fixes a portability bug on HP-UX 11.11i
7280         reported by Simon Wing-Tang in
7281         <http://lists.gnu.org/archive/html/bug-coreutils/2006-05/msg00114.html>.
7282
7283 2006-05-24  Bruno Haible  <bruno@clisp.org>
7284
7285         * lib/printf-args.c (printf_fetchargs): Turn NULL pointers for
7286         TYPE_STRING and TYPE_WIDE_STRING into a non-NULL replacement.
7287         Reported by Thorsten Maerz <torte@netztorte.de> via
7288         Aaron Stone <aaron@serendipity.cx>.
7289
7290 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
7291
7292         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Rename cache variables to use
7293         gl_ rather than jm_.  Link, don't run, so that cross-compiles are
7294         allowed.  Check that resulting type is arithmetic.  Move AC_REQUIRE
7295         and AC_CHECK_HEADERS_ONCE outside of AC_CACHE_CHECK, since they're
7296         not really conditional on the cache.
7297         (gl_PREREQ_NANOSLEEP): Check for sys/select.h.
7298
7299 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
7300
7301         * lib/nanosleep.c [HAVE_SYS_SELECT_H]: Include <sys/select.h>.
7302         Use the usual Autoconf way to include <time.h> and/or sys/time.h.
7303         (my_usleep): Don't mishandle maximum value.
7304
7305 2006-05-19  Jim Meyering  <jim@meyering.net>
7306
7307         * lib/getugroups.c: Correct an outdated comment.  From Bruno Haible.
7308
7309 2006-05-17  Bruno Haible  <bruno@clisp.org>
7310
7311         Cygwin portability.
7312         * lib/classpath.c (PATH_SEPARATOR) [CYGWIN]: Define as ':'.
7313
7314 2006-05-17  Bruno Haible  <bruno@clisp.org>
7315
7316         * lib/stdint_.h: Fix recognition of Cygwin.
7317
7318 2006-05-15  Bruno Haible  <bruno@clisp.org>
7319
7320         * build-aux/config.rpath: Improve support for Sun C 5.9 on Linux, based
7321         on libtool patch by Ralf Wildenhues.
7322
7323 2006-05-14  Paul Eggert  <eggert@cs.ucla.edu>
7324
7325         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Fix overly-picky
7326         test for C99 conformance; (bool) 0.5 is an integer constant
7327         expression, but (bool) -0.5 is not.  Problem reported by Fedor
7328         Sergeev in <http://forum.sun.com/jive/thread.jspa?threadID=96202>.
7329
7330 2006-05-11  Simon Josefsson  <jas@extundo.com>
7331
7332         * m4/xvasprintf.m4: Fix obvious typo.
7333
7334 2006-05-11  Jim Meyering  <jim@meyering.net>
7335
7336         * lib/sha1.c (sha1_buffer): Correct comment: s/MD5/SHA1/.  From
7337         James Lemley.
7338
7339 2006-05-10  Simon Josefsson  <jas@extundo.com>
7340
7341         * lib/md4.c: Typo fix, update copyright years.
7342         (K1, K2): Don't use L because it turn computations into 64-bit on
7343         64-bit platforms.
7344
7345 2006-05-10  Paul Eggert  <eggert@cs.ucla.edu>
7346
7347         * lib/crc.c (crc32_update): Remove unnecessary L suffix.
7348         * lib/md4.c (rol): Cast right-shift arg to uint32_t to prevent
7349         unwanted sign propagation, e.g., on hosts with 64-bit int.
7350         There still are some problems with reeelly weird theoretical hosts
7351         (e.g., 33-bit int) but it's not worth worrying about now.
7352         * lib/sha1.c (rol): Likewise.
7353         (K1, K2, K3, K4): Remove unnecessary L suffix.
7354
7355 2006-05-10  Bruno Haible  <bruno@clisp.org>
7356
7357         * lib/des.c: Cast to avoid warnings.
7358
7359 2006-05-09  Bruno Haible  <bruno@clisp.org>
7360
7361         * modules/xvasprintf (Files): Add m4/xvasprintf.m4.
7362         (Depends-on): Depend also on xsize, stdarg.
7363         (configure.ac): Add gl_XVASPRINTF.
7364
7365 2006-05-09  Bruno Haible  <bruno@clisp.org>
7366
7367         * m4/xvasprintf.m4: New file.
7368
7369 2006-05-09  Bruno Haible  <bruno@clisp.org>
7370
7371         * lib/xvasprintf.c: Include limits.h, string.h, xsize.h.
7372         (EOVERFLOW): Define fallback value.
7373         (xstrcat): New function.
7374         (xvasprintf): Recognize the special case of a string concatenation.
7375
7376 2006-05-08  Eric Blake  <ebb9@byu.net>
7377
7378         * gnulib-tool (func_version): Base copyright year on CVS date.
7379         (func_emit_copyright_notice): New function.
7380         (func_emit_lib_Makefile_am): Use it.
7381         (func_emit_tests_Makefile_am): Likewise.
7382         (func_import): Likewise.
7383
7384 2006-05-08  Bruno Haible  <bruno@clisp.org>
7385
7386         * modules/stdarg: New file.
7387         * MODULES.html.sh (func_all_modules): Add section for <stdarg.h>.
7388
7389 2006-05-08  Bruno Haible  <bruno@clisp.org>
7390
7391         * m4/stdarg.m4: New file, from GNU gettext.
7392
7393 2006-05-08  Bruno Haible  <bruno@clisp.org>
7394
7395         * config/srclist.txt (build-aux/config.rpath): different from latest
7396         release.
7397
7398 2006-05-08  Bruno Haible  <bruno@clisp.org>
7399
7400         * build-aux/config.rpath: Add support for Sun C 5.9 on Linux.
7401
7402 2006-05-05  Jim Meyering  <jim@meyering.net>
7403
7404         * m4/warning.m4: New file, derived from bison's file by the same name.
7405
7406 2006-05-03  Bruno Haible  <bruno@clisp.org>
7407
7408         * lib/stdint_.h: Shorter URL.
7409         * lib/inttypes.h: Likewise.
7410
7411 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
7412
7413         * modules/inttypes (Maintainer): Change from Derek Price to 'all'.
7414
7415 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
7416
7417         * lib/verify.h: Document the internals better.  Most of this change
7418         was written by Bruno Haible.
7419
7420 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
7421
7422         * doc/verify.texi: New file, partly based on a proposal by
7423         Bruno Haible.
7424
7425 2006-05-02  Bruno Haible  <bruno@clisp.org>
7426
7427         * m4/full-header-path.m4 (gl_FULL_HEADER_PATH): Move the include_next
7428         test from here...
7429         * m4/_inttypes_h.m4 (gl_INTTYPES_H): ... to here.
7430
7431 2006-04-29  Bruno Haible  <bruno@clisp.org>
7432
7433         * lib/gcd.c: Use WORD_T and GCD instead of unsigned long and gcd.
7434         Suggested by Oskar Liljeblad <oskar@osk.mine.nu>.
7435
7436 2006-04-29  Bruno Haible  <bruno@clisp.org>
7437
7438         * gnulib-tool: Make --update option actually work.
7439
7440 2006-04-29  Bruno Haible  <bruno@clisp.org>
7441
7442         * doc/gcd.texi: New file.
7443         * doc/gnulib.texi: Include it.
7444
7445 2006-04-25  Paul Eggert  <eggert@cs.ucla.edu>
7446
7447         * lib/getdate.y (get_date): When adding relative date, start with the
7448         initial time, not with the result of the first mktime call.
7449
7450 2006-04-25  Bruno Haible  <bruno@clisp.org>
7451
7452         * gnulib-tool (func_import): Output the include directives in three
7453         blocks, sorted separately.
7454         Reported by Ben Pfaff <blp@cs.stanford.edu>.
7455
7456 2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
7457
7458         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Use prototype
7459         to define main with arguments, for C++.  Reported by Eric Blake.
7460         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC):
7461         Prefer 'int main ()' to 'int main (void)', for C++.
7462         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Likewise.
7463         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Specify a return type
7464         for 'main', for C99 and C++.
7465
7466 2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
7467
7468         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Use return, not exit.
7469         Don't assume that exit status -1 is valid.
7470         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
7471         * m4/putenv.m4 (gl_FUNC_PUTENV): Likewise.
7472         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Likewise.
7473         * m4/readdir.m4 (GL_FUNC_READDIR): Include <stdlib.h>.
7474         * m4/rename.m4 (vb_FUNC_RENAME): Likewise.
7475         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Use AC_RUN_IFELSE,
7476         not AC_TRY_RUN.  Use return, not exit.  Don't assume that
7477         functions can be used without declaring them, or that you can
7478         exit with status -1.
7479         * m4/utimes-null.m4 (gl_FUNC_UTIMES_NULL): Likewise.
7480
7481 2006-04-24  Karl Berry  <karl@gnu.org>
7482
7483         * config/srclist.txt (longdouble.m4): sync lost.
7484
7485 2006-04-24  Eric Blake  <ebb9@byu.net>
7486
7487         * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Avoid unused variable warning.
7488
7489 2006-04-24  Bruno Haible  <bruno@clisp.org>
7490
7491         * m4/poll.m4 (gl_FUNC_POLL): When cross-compiling, reject also the
7492         poll() implementation in AIX.
7493         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
7494
7495 2006-04-24  Bruno Haible  <bruno@clisp.org>
7496
7497         * m4/poll.m4 (gl_FUNC_POLL): Rearrange code, so that POLL_H gets
7498         assigned exactly once.
7499
7500 2006-04-23  Claudio Fontana  <claudio@gnu.org>
7501             Bruno Haible  <bruno@clisp.org>
7502
7503         * modules/gettext (Makefile.am): Add a -I flag for <libintl.h>.
7504         * gnulib-tool (func_emit_lib_Makefile_am): Emit empty default value
7505         for AM_CPPFLAGS.
7506
7507 2006-04-23  Bruno Haible  <bruno@clisp.org>
7508
7509         * modules/copy-file: Depend on unistd.
7510         * modules/execute: Likewise.
7511         * modules/fatal-signal: Likewise.
7512         * modules/findprog: Likewise.
7513         * modules/mkdtemp : Likewise.
7514         * modules/pipe: Likewise.
7515         * modules/wait-process: Likewise.
7516
7517 2006-04-23  Bruno Haible  <bruno@clisp.org>
7518
7519         * lib/fwriteerror.c (fwriteerror): Call fclose also when an error
7520         condition was already detected.
7521         Reported by Ben Pfaff <blp@cs.stanford.edu>.
7522
7523 2006-04-23  Bruno Haible  <bruno@clisp.org>
7524
7525         * lib/copy-file.c: Include <unistd.h> unconditionally.
7526         * lib/execute.c: Likewise.
7527         * lib/fatal-signal.c: Likewise.
7528         * lib/findprog.c: Likewise.
7529         * lib/mkdtemp.c: Likewise.
7530         * lib/pipe.h: Likewise.
7531         * lib/pipe.c: Likewise.
7532         * lib/wait-process.h: Likewise.
7533
7534 2006-04-23  Bruno Haible  <bruno@clisp.org>
7535
7536         * gnulib-tool (func_usage): Fix --import description. Document
7537         --update.
7538         (func_import): Create temporary file in a temporary directory, if
7539         --dry-run is specified. Silence errors from 'grep' when there are no
7540         m4 files in $m4dir.
7541         (func_create_testdir): Silence errors from 'grep' when there are no
7542         m4 files in $m4dir.
7543         Reported by Karl Berry <karl@freefriends.org>.
7544
7545 2006-04-20  Bruno Haible  <bruno@clisp.org>
7546
7547         * m4/argp.m4 (gl_ARGP): Don't call AC_CHECK_DECLS_ONCE with more than
7548         one argument, so that the code will be portable to Autoconf 2.60.
7549         * m4/getlogin_r.m4 (gl_PREREQ_GETLOGIN_R): Likewise.
7550         * m4/getpass.m4 (gl_PREREQ_GETPASS): Likewise.
7551         * m4/unlocked-io.m4 (gl_FUNC_GLIBC_UNLOCKED_IO): Likewise.
7552
7553 2006-04-19  Derek Price  <derek@ximbiot.com>
7554             Eric Blake  <ebb9@byu.net>
7555
7556         * m4/full-header-path.m4 (gl_FULL_HEADER_PATH): Use </full/path.h>
7557         rather than "/full/path.h".  Update comment to match.  Shorten &
7558         generalize m4_translit call via AS_TR_CPP.
7559
7560 2006-04-19  Derek Price  <derek@ximbiot.com>
7561             Eric Blake  <ebb9@byu.net>
7562
7563         * lib/inttypes.h: Correct grammar in comment.
7564
7565 2006-04-18  Derek Price  <derek@ximbiot.com>
7566             Paul Eggert  <eggert@cs.ucla.edu>
7567
7568         * modules/inttypes: New file.
7569         * modules/strtoimax, modules/strtoumax: Depend on inttypes.
7570
7571 2006-04-18  Derek Price  <derek@ximbiot.com>
7572             Paul Eggert  <eggert@cs.ucla.edu>
7573
7574         * m4/_inttypes_h.m4, m4/full-header-path.m4, m4/include_next.m4:
7575         New files.
7576
7577 2006-04-18  Derek Price  <derek@ximbiot.com>
7578             Paul Eggert  <eggert@cs.ucla.edu>
7579
7580         * lib/inttypes.h: New file.
7581         * lib/strtoimax.c: Assume <inttypes.h>.
7582
7583 2006-04-15  Paul Eggert  <eggert@cs.ucla.edu>
7584
7585         * lib/utimens.c (futimens): glibc futimesat messes up if /proc
7586         isn't mounted.  Problem reported by Kir Kolyshkin.
7587
7588 2006-04-13  Paul Eggert  <eggert@cs.ucla.edu>
7589
7590         * lib/regcomp.c (init_dfa): Don't use wchar_t or wctype_t if
7591         RE_ENABLE_I18N is not defined.  Problem reported by Mark D. Baushke via
7592         Derek R. Price.
7593         * lib/regex.h (RE_DUP_MAX): Update comment to match current
7594         implementation.
7595
7596 2006-04-12  Eric Blake  <ebb9@byu.net>
7597
7598         * modules/time_r (Makefile.am): Remove lib_SOURCES line, as this
7599         is now done automatically by the corresponding Autoconf macro.
7600
7601 2006-04-11  Paul Eggert  <eggert@cs.ucla.edu>
7602
7603         * m4/time_r.m4 (gl_TIME_R): Add AC_LIBSOURCES for time_r.c and
7604         time_r.h.
7605
7606 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
7607
7608         Merge regex changes from libc, removing some of our
7609         POSIX-conformance changes that were rejected and redoing them in a
7610         less-intrusive way.
7611
7612         * lib/regcomp.c (re_compile_internal, init_dfa):
7613         Length arg is now size_t, not Idx.  All uses changed.
7614         (peek_token): Forward decl now says internal_function.
7615         (__re_error_msgid, __re_error_msgid_idx):
7616         Now static rather than extern with attribute_hidden.
7617         (re_compile_pattern) [!defined _LIBC]: Use K&R-style defn.
7618         For some reason libc prefers K&R style defns for external functions.
7619         (regerror) [!defined _LIBC]: Likewise.
7620         (re_set_syntax, re_compile_fastmap, regcomp, regfree, re_comp):
7621         (seek_collating_symbol_entry, lookup_collation_sequence_value):
7622         (build_range_exp, build_collating_symbol):
7623         Use K&R-style defn.
7624         (re_compile_fastmap): Use '\0' to memset, not 0.
7625         (utf8_sb_map): Make the calculations more obvious.
7626         (init_dfa, parse_bracket_exp, build_charclass_op):
7627         Call calloc and cast result, as glibc does.
7628         (init_word_char, fetch_token, peek_token, peek_token_bracket):
7629         (build_range_exp, build_collating_symbol):
7630         Now internal functions.
7631
7632         * lib/regex.c [!defined _LIBC]: Allow compiling with C++ compilers.
7633
7634         * lib/regex.h (__USE_GNU_REGEX): New macro.  Don't depend on
7635         _REGEX_SOURCE any more; depend on _GNU_SOURCE instead.
7636         Don't depend on VMS; depend on __VMS instead, for POSIX
7637         namespace cleanness.
7638         (regoff_t): Define to ssize_t, not long int.
7639
7640         Remove the REG_ macros named below.  Instead, make the old names
7641         (e.g., RE_BACKSLASH_ESCAPE_IN_LISTS) visible only if
7642         __USE_GNU_REGEX.
7643         (REG_BACKSLASH_ESCAPE_IN_LISTS):
7644         (REG_BK_PLUS_QM, REG_CHAR_CLASSES, REG_CONTEXT_INDEP_ANCHORS):
7645         (REG_CONTEXT_INDEP_OPS, REG_CONTEXT_INVALID_OPS):
7646         (REG_DOT_NEWLINE, REG_DOT_NOT_NULL, REG_HAT_LISTS_NOT_NEWLINE):
7647         (REG_INTERVALS, REG_LIMITED_OPS, REG_NEWLINE_ALT):
7648         (REG_NO_BK_BRACES, REG_NO_BK_PARENS, REG_NO_BK_REFS):
7649         (REG_NO_BK_VBAR, REG_NO_EMPTY_RANGES):
7650         (REG_UNMATCHED_RIGHT_PAREN_ORD, REG_NO_POSIX_BACKTRACKING):
7651         (REG_NO_GNU_OPS, REG_DEBUG, REG_INVALID_INTERVAL_ORD):
7652         (REG_IGNORE_CASE, REG_CARET_ANCHORS_HERE):
7653         (REG_CONTEXT_INVALID_DUP, REG_NO_SUB, REG_SYNTAX_EMACS):
7654         (REG_SYNTAX_AWK, REG_SYNTAX_GNU_AWK, REG_SYNTAX_POSIX_AWK):
7655         (REG_SYNTAX_GREP, REG_SYNTAX_EGREP, REG_SYNTAX_POSIX_EGREP):
7656         (REG_SYNTAX_ED, REG_SYNTAX_SED, _REG_SYNTAX_POSIX_COMMON):
7657         (REG_SYNTAX_POSIX_BASIC, REG_SYNTAX_POSIX_MINIMAL_BASIC):
7658         (REG_SYNTAX_POSIX_EXTENDED, REG_SYNTAX_POSIX_MINIMAL_EXTENDED):
7659         (REG_DUP_MAX, REG_UNALLOCATED, REG_REALLOCATE, REG_FIXED):
7660         (REG_NREGS):
7661         Remove.  All uses replaced by the old RE_* names.
7662         (RE_BACKSLASH_ESCAPE_IN_LISTS):
7663         (RE_BK_PLUS_QM, RE_CHAR_CLASSES, RE_CONTEXT_INDEP_ANCHORS):
7664         (RE_CONTEXT_INDEP_OPS, RE_CONTEXT_INVALID_OPS):
7665         (RE_DOT_NEWLINE, RE_DOT_NOT_NULL, RE_HAT_LISTS_NOT_NEWLINE):
7666         (RE_INTERVALS, RE_LIMITED_OPS, RE_NEWLINE_ALT):
7667         (RE_NO_BK_BRACES, RE_NO_BK_PARENS, RE_NO_BK_REFS):
7668         (RE_NO_BK_VBAR, RE_NO_EMPTY_RANGES):
7669         (RE_UNMATCHED_RIGHT_PAREN_ORD, RE_NO_POSIX_BACKTRACKING):
7670         (RE_NO_GNU_OPS, RE_DEBUG, RE_INVALID_INTERVAL_ORD):
7671         (RE_IGNORE_CASE, RE_CARET_ANCHORS_HERE):
7672         (RE_CONTEXT_INVALID_DUP, RE_NO_SUB):
7673         Don't bother having these macros be independent of each others'
7674         values, since they no longer exist in the POSIX name space.
7675
7676         Rename the following member names back to their old names,
7677         unless !__USE_GNU_REGEX.  All uses changed back.
7678         (buffer): Renamed from re_buffer.
7679         (allocated): Renamed from re_allocated.
7680         (used): Renamed from re_used.
7681         (syntax): Renamed from re_syntax.
7682         (fastmap): Renamed from re_fastmap.
7683         (translate): Renamed from re_translate.
7684         (can_be_null): Renamed from re_can_be_null.
7685         (regs_allocated): Renamed from re_regs_allocated.
7686         (fastmap_accurate): Renamed from re_fastmap_accurate.
7687         (no_sub): Renamed from re_no_sub.
7688         (not_bol): Renamed from re_not_bol.
7689         (not_eol): Renamed from re_not_eol.
7690         (newline_anchor): Renamed from re_newline_anchor.
7691         (num_regs): Renamed from rm_num_regs.
7692         (start): Renamed from rm_start.
7693         (end): Renamed from rm_end.
7694
7695         (free_state): Move up a bit.
7696
7697         * lib/regex_internal.h (inline) [__GNUC__ < 3 && defined _LIBC]:
7698         #define to be empty.
7699         (ASCII_CHARS): New macro, replacing all uses of 0x80 and/or SBC_MAX / 2
7700         when that is what is intended.
7701         (SBC_MAX): Define to UCHAR_MAX + 1, not 256.
7702         (__re_error_msgid, __re_error_msgid_idx): Remove decls; not needed.
7703         (MAX): New macro.
7704         (re_xmalloc, re_calloc, re_xrealloc, re_x2realloc): Remove.
7705         All uses changed back to re_malloc, etc.  It's now the caller's
7706         responsibility to check for overflow; all callers changed.
7707         (re_alloc_oversized, re_x2alloc_oversized, re_xnmalloc, re_xnrealloc):
7708         (re_x2nrealloc): Remove.
7709         (free_state): Remove decl.
7710
7711         * lib/regexc.c (regexec, re_match, re_search, re_match_2, re_search_2):
7712         (re_set_registers, re_exec):
7713         Use K&R-style defn.
7714
7715         2006-01-31  Roland McGrath  <roland@redhat.com>
7716
7717         * lib/regcomp.c (calc_eclosure_iter): Remove dead variables.
7718         Reported by Mike Frysinger <vapier@gentoo.org>.
7719
7720         2006-01-15  Andreas Jaeger  <aj@suse.de>
7721
7722         [BZ #1950]
7723         * lib/regex_internal.c (re_string_reconstruct): Adjust for
7724         build_wcs_upper_buffer change.
7725         (build_wcs_upper_buffer): Change return type.
7726
7727         2005-12-10  Ulrich Drepper  <drepper@redhat.com>
7728
7729         * lib/regex_internal.h: Include <stdint.h> if available.
7730
7731         2005-12-06  Paolo Bonzini  <bonzini@gnu.org>
7732
7733         * lib/regex_internal.h (SIZE_MAX): Provide a default definition.
7734
7735         2005-10-14  Ulrich Drepper  <drepper@redhat.com>
7736
7737         * lib/regcomp.c: Adjust for changed secondary hash function.
7738
7739         2005-09-30  Ulrich Drepper  <drepper@redhat.com>
7740
7741         * lib/regex.h: Pretty printing.
7742         Clean up namespace a bit.
7743
7744         2005-09-30  Jakub Jelinek  <jakub@redhat.com>
7745
7746         * lib/regexec.c (update_cur_sifted_state, check_arrival,
7747         check_arrival_add_next_nodes): Avoid using uninitialized variable.
7748
7749         2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
7750                     Ulrich Drepper  <drepper@redhat.com>
7751
7752         [BZ #1302]
7753         * lib/regex_internal.h (bitset_t): Renamed from bitset.  All uses
7754         changed.
7755         (bitset_word_t): Renamed from bitset_word.  All uses changed.
7756
7757         2005-09-22  Ulrich Drepper  <drepper@redhat.com>
7758
7759         [BZ #281]
7760         * lib/regex.h: Define RE_TRANSLATE_TYPE as unsigned char *.
7761         * lib/regcomp.c: Remove unnecessary uses of
7762         unsigned RE_TRANSLATE_TYPE.
7763         * lib/regex_internal.h: Likewise.
7764         * lib/regex_internal.c: Likewise.
7765         * lib/regexec.c: Likewise.
7766         Based on a patch by Stepan Kasal <kasal@ucw.cz>.
7767
7768         2005-09-07  Ulrich Drepper  <drepper@redhat.com>
7769
7770         * lib/regexec.c (find_recover_state): Remove unnecessary
7771         initialization.
7772         (transit_state_bkref): Make DFA a const pointer.
7773         (get_subexp): Likewise.
7774         (check_arrival): Likewise.
7775         (update_cur_sifted_state): Likewise.
7776         (re_search_internal): Likewise.
7777         (prune_impossible_nodes): Likewise.
7778         (acquire_init_state_context): Likewise.
7779         (proceed_next_node): Likewise.
7780         (set_regs): Likewise.
7781         (free_fail_stack_return): Likewise.
7782         (check_arrival_expand_ecl): Mark DFA parameter as const.
7783         (check_arrival_expand_ecl_sub): Likewise.
7784         (check_subexp_limits): Likewise.
7785         (sub_epsilon_src_nodes):  Likewise.
7786         (add_epsilon_src_nodes):  Likewise.
7787         (merge_state_array): Likewise.
7788         (update_regs): Likewise.
7789         (build_trtable): Likewise.
7790         (sift_states_backward): Mark MCTX parameter as const.
7791         (build_sifted_states): Likewise.
7792         (update_cur_sifted_state): Likewise.
7793         (sift_states_mkref): Likewise.
7794         (check_arrival_expand_ecl): Mark eclosure as const.
7795         (check_dst_limits_calc_pos_1): Likewise.
7796         * lib/regex_internal.h (re_match_context_t): Make dfa a const
7797         pointer.
7798
7799         2005-09-06  Ulrich Drepper  <drepper@redhat.com>
7800
7801         * lib/regexec.c (merge_state_with_log): Define dfa as const pointer.
7802         (transit_state_sb): Likewise.
7803         (transit_state_mb): Likewise.
7804         (sift_states_iter_mb): Likewise.
7805         (check_arrival_add_next_nodes): Likewise.
7806         (check_node_accept_bytes): Change first parameter to pointer-to-const.
7807         [_LIBC] (re_search_2_stub): Use mempcpy.
7808
7809         * lib/regex_internal.c (re_string_reconstruct): Avoid calling
7810         mbrtowc for very simple UTF-8 case.
7811
7812         * lib/regex_internal.c (re_acquire_state): Make DFA pointer arg
7813         a pointer-to-const.
7814         (re_acquire_state_context): Likewise.
7815         * lib/regex_internal.h: Adjust prototypes.
7816
7817         * lib/regex.c: Prevent using C++ compilers.
7818
7819         * lib/regex_internal.c (re_acquire_state): Minor code rearrangement.
7820         (re_acquire_state_context): Likewise.
7821
7822 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
7823
7824         * modules/regex (Depends-on): Add ssize_t.
7825
7826 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
7827
7828         * m4/regex.m4 (gl_REGEX): Check for new glibc interface to
7829         translation table.
7830
7831 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
7832
7833         * doc/gnulib-tool.texi (Modified imports): pathname -> file name.
7834
7835 2006-03-29  Mark D. Baushke  <mdb@gnu.org>
7836             Bruno Haible  <bruno@clisp.org>
7837
7838         * lib/stdint_.h: On OpenBSD, don't redefine types already included in
7839         <sys/types.h> and <inttypes.h>.
7840
7841 2006-03-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7842
7843         * m4/argz.m4 (gl_FUNC_ARGZ): If we define `error_t', also define
7844         `__error_t_defined', so argp.h will not typedef the former.
7845
7846 2006-03-25  Paul Eggert  <eggert@cs.ucla.edu>
7847
7848         * m4/regex.m4 (gl_REGEX): Don't insist on REG_SYNTAX_POSIX_EGREP,
7849         REG_SYNTAX_EMACS, and REG_IGNORE_CASE.  Settle for the traditional
7850         glibc names.  Even if glibc is changed to conform to POSIX, the
7851         traditional names will be available anyway, since regex depends on
7852         the extensions module.  Also, fix a longstanding typo in the
7853         implementation of Spencer ERE test #75 from grep 2.3.  Problems
7854         reported by Emanuele Giaquinta.  Also, change sense of cached
7855         variable, so that the message makes sense.
7856
7857 2006-03-24  Simon Josefsson  <jas@extundo.com>
7858
7859         * lib/base64.c: Fix problems reported by Eric Blake <ebb9@byu.net>,
7860         including some doc fixes.
7861         (base64_encode_alloc): Fix +1 bug on allocation failures.
7862
7863 2006-03-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7864
7865         * lib/base64.c (base64_encode): Do not read past end of array with
7866         unsanitized input on systems with CHAR_BIT > 8.
7867
7868 2006-03-24  Eric Blake  <ebb9@byu.net>
7869
7870         * lib/time_r.c (copy_string_result): Remove, as it is no longer used.
7871
7872 2006-03-22  Karl Berry  <karl@gnu.org>
7873
7874         * config/srclist.txt (*setenv.[ch]): get from coreutils.
7875         * config/srclistvars.sh (COREUTILS): new var.
7876
7877 2006-03-17  Jim Meyering  <jim@meyering.net>
7878
7879         * m4/regex.m4 (gl_REGEX): Fix typo in last change:
7880         s/_REGEX_WIDE_OFFSETS/_REGEX_LARGE_OFFSETS/.
7881
7882 2006-03-16  Paul Eggert  <eggert@cs.ucla.edu>
7883
7884         * m4/regex.m4 (gl_REGEX): Don't check for off_t, since the code
7885         no longer needs it.  Instead, check that regoff_t is as least
7886         as wide as ptrdiff_t.
7887
7888         Don't define _REGEX_WIDE_OFFSETS unless using the included regex,
7889         so that our regex.h stays compatible with the installed regex.
7890         This is helpful for installers who configure --without-included-regex.
7891         Problem reported by Emanuele Giaquinta.
7892
7893 2006-03-16  Paul Eggert  <eggert@cs.ucla.edu>
7894
7895         * lib/regex.h (regoff_t) [defined _REGEX_LARGE_OFFSETS]:
7896         Typedef to long int, not to off_, as POSIX will likely change
7897         in that direction.
7898
7899 2006-03-15  Eric Blake  <ebb9@byu.net>
7900
7901         * m4/dirfd.m4 (gl_FUNC_DIRFD): Use AC_REQUIRE for AC_HEADER_DIRENT.
7902
7903 2006-03-13  Sergey Poznyakoff  <gray@gnu.org.ua>
7904
7905         * lib/argp-help.c (validate_uparams): Fix typo
7906         * lib/argp-parse.c (argp_default_options): Consistently begin help
7907         messages with a lowercase letter.
7908
7909 2006-03-11  Paul Eggert  <eggert@cs.ucla.edu>
7910
7911         * lib/time_r.h (asctime_r, ctime_r): Remove.  These functions can
7912         overrun buffers and shouldn't be used (much as gets shouldn't be
7913         used).
7914         * lib/time_r.c (asctime_r, ctime_r): Likewise.
7915
7916 2006-03-08  Simon Josefsson  <jas@extundo.com>
7917
7918         * m4/gc-random.m4: Permit 'no' as variable values and fix warnings,
7919         suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
7920
7921 2006-03-08  Simon Josefsson  <jas@extundo.com>
7922
7923         * m4/gc-random.m4: Call AC_CANONICAL_HOST and use $host_os instead of
7924         $target, suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
7925
7926 2006-03-08  Simon Josefsson  <jas@extundo.com>
7927
7928         * lib/gc-gnulib.c (randomize): Don't open files called 'no', they
7929         signal that configure disabled the device.
7930
7931 2006-03-08  Simon Josefsson  <jas@extundo.com>
7932
7933         * build-aux/maint.mk: Fix refresh-po, to handle no translated
7934         languages.
7935
7936 2006-03-07  Simon Josefsson  <jas@extundo.com>
7937
7938         * modules/getopt (Depends-on): Add unistd.
7939
7940         * modules/unistd: New file.
7941
7942 2006-03-07  Simon Josefsson  <jas@extundo.com>
7943
7944         * modules/gc-random: New file.
7945
7946 2006-03-07  Simon Josefsson  <jas@extundo.com>
7947
7948         * m4/unistd_h.m4: New file.
7949
7950 2006-03-07  Simon Josefsson  <jas@extundo.com>
7951
7952         * m4/readline.m4 (gl_FUNC_READLINE): Rewrite the cached part of the
7953         test to be side-effect free by storing the result in the cache
7954         variable gl_cv_lib_readline, and moving the assignment of
7955         LIBREADLINE and LTLIBREADLINE outside the COMMANDS-TO-SET-IT.
7956         From Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
7957
7958 2006-03-07  Simon Josefsson  <jas@extundo.com>
7959
7960         * m4/gc-random.m4: New file, mostly from gc.m4.  Warn instead of
7961         error on missing devices (the functions will return an error).
7962
7963         * m4/gc.m4: Move random stuff to gc-random.m4
7964
7965 2006-03-07  Simon Josefsson  <jas@extundo.com>
7966
7967         * lib/unistd_.h: New file.
7968
7969 2006-03-07  Simon Josefsson  <jas@extundo.com>
7970
7971         * lib/gc-libgcrypt.c, gc-gnulib.c: Use GC_USE_RANDOM.
7972
7973 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
7974
7975         * m4/unistd_h.m4 (gl_HEADER_UNISTD): Rename, to match modules file.
7976         Problem reported by Juan Manuel Guerrero.
7977
7978 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
7979
7980         * lib/c-stack.c: Include unistd.h unconditionally, since we now assume
7981         the unistd module.
7982         * lib/getlogin_r.c: Likewise.
7983         * lib/getlogin_r.h: Likewise.
7984         * lib/glob.c: Likewise.
7985         * lib/pagealign_alloc.c: Likewise.
7986         * lib/unistd_.h: Remove; no longer needed.
7987
7988 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
7989
7990         * MODULES.html.sh (Support for systems lacking POSIX:2001):
7991         Add unistd.
7992         * modules/c-stack (Depends-on): Add unistd.
7993         * modules/getlogin_r: Likewise.
7994         * modules/glob: Likewise.
7995         * modules/pagealign_alloc: Likewise.
7996         * modules/unistd (Files): Remove lib/unistd_.h.
7997         (EXTRA_DIST): Remove.
7998         (unistd.h): Create using 'echo' rather than 'cp', so that we don't
7999         need unistd_.h.
8000         (MOSTLYCLEANFILES): Remove unistd.h-t.
8001
8002 2006-03-03  Simon Josefsson  <jas@extundo.com>
8003
8004         * build-aux/maint.mk: Add several syntax checks from CoreUtils.
8005
8006 2006-03-03  Simon Josefsson  <jas@extundo.com>
8007
8008         * build-aux/maint.mk: Add refresh-po rule, based on ideas from
8009         libidn and bison.
8010
8011 2006-03-03  Simon Josefsson  <jas@extundo.com>
8012
8013         * build-aux/maint.mk: Add indent target.
8014
8015 2006-03-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de> (tiny change)
8016
8017         * m4/poll.m4 (gl_FUNC_POLL): If we deem poll(2) unacceptable, use
8018         our replacement poll.h in any case, to avoid a differing
8019         declaration from a system header.  Seen on AIX.
8020
8021 2006-03-01  Simon Josefsson  <jas@extundo.com>
8022
8023         * lib/readline.c: Fix typo, tiny patch from Stepan Kasal
8024         <kasal@ucw.cz>.
8025
8026 2006-03-01  Paul Eggert  <eggert@cs.ucla.edu>
8027
8028         * modules/gettime (Depends-on): Add extensions module.
8029         * modules/nanosleep (Depends-on): Likewise.
8030         * modules/settime (Depends-on): Likewise.
8031
8032 2006-03-01  Paul Eggert  <eggert@cs.ucla.edu>
8033
8034         * m4/clock_time.m4 (gl_CLOCK_TIME): Require gl_USE_SYSTEM_EXTENSIONS,
8035         not merely AC_GNU_SOURCE, for the benefit of Solaris 10 when compiled
8036         pedantically.
8037         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
8038         * m4/timespec.m4 (gl_TIMESPEC): Likewise.
8039
8040         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Use "=" with "test",
8041         not "==".  Reported by Ralf Wildenhues.
8042
8043 2006-03-01  Karl Berry  <karl@gnu.org>
8044
8045         * doc/Copyright/request-*: new files, synced from gnuorg.
8046
8047 2006-03-01  Karl Berry  <karl@gnu.org>
8048
8049         * config/srclist.txt (Copyright/*): new entries.
8050
8051 2006-02-28  Simon Josefsson  <jas@extundo.com>
8052
8053         * lib/getopt.c: Protect #include of unistd.h, for MSVS.
8054
8055 2006-02-27  Simon Josefsson  <jas@extundo.com>
8056
8057         * lib/base64.h: Indent #define's.  From Jim Meyering
8058         <jim@meyering.net>.
8059
8060 2006-02-27  Jim Meyering  <jim@meyering.net>
8061
8062         Revert the change of 2006-02-24, so these files can continue
8063         to be sync'd from gettext.
8064         * lib/mkdtemp.c, setenv.c, unsetenv.c: *Un*-normalize inclusion
8065         of `config.h'.
8066
8067 2006-02-26  Paul Eggert  <eggert@cs.ucla.edu>
8068
8069         * modules/intprops: New file.
8070         * MODULES.html.sh (Numeric conversion functions <stdlib.h>):
8071         Add intprops.
8072         * modules/getloadavg (Files): Remove lib/intprops.h.
8073         (Depends-on): Add intprops.
8074         * modules/human: Likewise.
8075         * modules/inttostr: Likewise.
8076         * modules/openat: Likewise.
8077         * modules/sig2str: Likewise.
8078         * modules/userspec: Likewise.
8079         * modules/utimecmp: Likewise.
8080         * modules/xnanosleep: Likewise.
8081         * modules/xstrtol: Likewise.
8082
8083 2006-02-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny changes)
8084
8085         * modules/xstrtod: Omit xstrtod.h, xstrtod.c; they're in LIB_SOURCES.
8086         * modules/lock-tests (TESTS): Use $(EXEEXT).
8087         * modules/tls-tests: Likewise.
8088         * modules/argp-tests: Likewise.
8089         (check_PROGRAMS): New var, replacing...
8090         (noinst_PROGRAMS, test_argp_SOURCES): Remove.
8091
8092 2006-02-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8093
8094         * lib/mkdtemp.c, lib/setenv.c, lib/unsetenv.c: Normalize inclusion of
8095         `config.h'.
8096
8097 2006-02-24  Paul Eggert  <eggert@cs.ucla.edu>
8098
8099         * lib/glob.c: Say "invalid" rather than "illegal" in comments.
8100
8101 2006-02-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8102
8103         Sync from coreutils.
8104         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Require gl_FUNC_LCHMOD and
8105         gl_CHDIR_SAFER.
8106
8107 2006-02-22  Jim Meyering  <jim@meyering.net>
8108
8109         Sync from coreutils.
8110         * m4/chdir-safer.m4: New file.
8111
8112 2006-02-20  Paul Eggert  <eggert@cs.ucla.edu>
8113
8114         * lib/getcwd.c (AT_FDCWD): Work around a bug in Solaris 9 and 10, where
8115         AT_FDCWD exceeds INT_MAX.
8116         * lib/openat.h (AT_FDCWD): Likewise.
8117
8118 2006-02-17  Eric Blake  <address@hidden>
8119
8120         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Fix caching error.
8121
8122 2006-02-16  Simon Josefsson  <jas@extundo.com>
8123
8124         * modules/getaddrinfo (Depends-on): Add sys_socket.
8125
8126 2006-02-15  Simon Josefsson  <jas@extundo.com>
8127
8128         * build-aux/maint.mk: Add dsyntax-check rule.
8129
8130 2006-02-15  Eric Blake  <ebb9@byu.net>
8131
8132         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Don't attempt using
8133         winsock2.h or ws2tcpip.h when sys/socket.h is present. Fixes
8134         'present but cannot compile' warnings on cygwin.
8135         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Use gl_HEADER_SYS_SOCKET.  Don't
8136         use ws2tcpip.h if sys/socket.h works.
8137         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Use gl_HEADER_SYS_SOCKET.
8138         (gl_GETADDRINFO): Don't use ws2tcpip.h when sys/socket.h is present.
8139
8140 2006-02-14  Simon Josefsson  <jas@extundo.com>
8141
8142         * modules/maintainer-makefile (Files): Rename.
8143
8144         * build-aux/GNUmakefile: Rename Makefile.maint to maint.mk
8145         and (the local) Makefile.cfg to maint-cfg.mk.
8146
8147         * build-aux/Makefile.maint, build-aux/maint.mk: Renamed the former
8148         to the latter.
8149
8150         * modules/maintainer-makefile: New module.
8151
8152         * build-aux/Makefile.maint: New file, from GNU CoreUtils, although
8153         severaly stripped to make it possible to build it up from scratch
8154         with reliable tests.
8155
8156         * build-aux/GNUmakefile: New file, from GNU CoreUtils with some
8157         fixes to permit overriding the default actions when configure and
8158         makefile are not available.
8159
8160 2006-02-14  Paul Eggert  <eggert@cs.ucla.edu>
8161
8162         Sync from coreutils.
8163         * modules/lstat (Depends-on): Don't depend on xalloc.
8164         (License): Change from GPL to LGPL, since this is now simply a
8165         replacement for a libc function.
8166
8167 2006-02-14  Jim Meyering  <jim@meyering.net>
8168
8169         Sync from coreutils.
8170
8171         Eliminate the unwelcome (albeit unlikely) possibility of xmalloc
8172         failure on deficient systems, and simplify gnulib lgpl dependencies.
8173         * lib/lstat.c (rpl_lstat): Rewrite to use stat() in place of the
8174         xmalloc/lstat combination.  Based on a patch from Bruno Haible.
8175
8176         * lib/xalloc-die.c: Remove unused definition of N_.
8177
8178 2006-02-14  Jim Meyering  <jim@meyering.net>
8179
8180         Sync from coreutils.
8181         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Invoke
8182         AC_CHECK_FUNCS(getmntent) unconditionally so that tests of
8183         $ac_cv_func_getmntent (e.g., in gl_LIST_MOUNTED_FILE_SYSTEMS) need not
8184         double-quote uses of that variable, to accommodate the rare case in
8185         which getmntent is available in none of the libraries checked.  This
8186         happens at least on FreeBSD 5.0.
8187
8188 2006-02-13  Simon Josefsson  <jas@extundo.com>
8189
8190         * gnulib-tool (Usage): Fix --import, from
8191         karl@freefriends.org (Karl Berry).
8192
8193 2006-02-13  Sergey Poznyakoff  <gray@gnu.org.ua>
8194
8195         * lib/argp-fmtstream.c: Restore another bugfix lost on 2005-12-12
8196
8197 2006-02-07  Sergey Poznyakoff  <gray@gnu.org.ua>
8198
8199         * lib/argp-namefrob.h: Restore changes accidentally lost during the
8200         "autoupdate" on 2005-12-12.
8201
8202 2006-02-07  Paul Eggert  <eggert@cs.ucla.edu>
8203
8204         * modules/closeout (Depends-on): Remove atexit.
8205
8206 2006-02-07  Paul Eggert  <eggert@cs.ucla.edu>
8207
8208         * lib/closeout.c (close_stdout): Don't assume 'bool' converts nonzero
8209         ints to 0 or 1, as this isn't true for the stdbool.h substitute.
8210
8211 2006-02-05  Paul Eggert  <eggert@cs.ucla.edu>
8212
8213         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Don't #define
8214         __EXTENSIONS__ if this causes compilation to fail.  Problem
8215         reported by Nelson H. F. Beebe with Solaris 10 and Sun C 5.7
8216         c89 -D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED.
8217
8218 2006-01-27  Paul Eggert  <eggert@cs.ucla.edu>
8219
8220         * lib/fnmatch.c (L_): Renamed from L, to work around a bug in
8221         Mac OS X 10.3.9 with GCC 3 reported by Claudio Fontana in
8222         <http://lists.gnu.org/archive/html/bug-gnulib/2006-01/msg00074.html>.
8223         All uses changed.
8224
8225 2006-01-26  Simon Josefsson  <jas@extundo.com>
8226
8227         * lib/socket_.h: Set WINVER to 0x0501, to make sure getaddrinfo
8228         prototype is visible on mingw32.
8229
8230         * lib/getaddrinfo.h: Define EAI_ADDRFAMILY and EAI_SYSTEM if not set,
8231         for mingw32.
8232
8233         * lib/gai_strerror.c, getaddrinfo.h: Protect netdb.h #include (for
8234         mingw32).
8235
8236 2006-01-26  Paul Eggert  <eggert@cs.ucla.edu>
8237
8238         * lib/fts.c (diropen): Open with O_NOCTTY | O_NONBLOCK too.  Don't
8239         attempt to open for write; this always fails, at least on POSIX
8240         hosts.  This reinstates the 2006-01-09 change, which was
8241         inadvertently removed.
8242
8243 2006-01-26  Bruno Haible  <bruno@clisp.org>
8244
8245         * gnulib-tool (func_import): Use "trap 'exit $?' instead of "trap :".
8246         Reported by Paul Eggert.
8247
8248 2006-01-26  Bruno Haible  <bruno@clisp.org>
8249             Paul Eggert  <eggert@cs.ucla.edu>
8250
8251         * lib/stdbool_.h (_Bool)
8252         [(! (defined __cplusplus || defined __BEOS__)
8253           && !defined __GNUC__
8254           && !(defined __HP_cc || defined __xlc__
8255                || (defined __SUNPRO_C && (__SUNPRO_C < 0x550 || __STDC__ == 1))
8256                || defined __sgi))]:
8257         #define to signed char in these cases too; this simplifies
8258         the code (so that we don't have to worry about HP-UX, AIX, SunPRO,
8259         etc., separately) and makes it more conservative.
8260
8261 2006-01-25  Simon Josefsson  <jas@extundo.com>
8262
8263         * m4/getaddrinfo.m4: Look for getaddrinfo inside ws2tcip.h and
8264         -lws2_32.  Protect sys/socket.h and netdb.h #include's.  Include
8265         ws2tcpip.h with WINVER=0x0501.  All for mingw32.
8266
8267 2006-01-25  Sergey Poznyakoff  <gray@gnu.org.ua>
8268
8269         * lib/argp-namefrob.h: Bugfix. Remove stray #
8270
8271 2006-01-25  Paul Eggert  <eggert@cs.ucla.edu>
8272
8273         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check for xlc bug if __GCC__ too,
8274         so that we test the test.
8275         Check for yet another HP-UX cc bug involving *bool |= bool.
8276
8277 2006-01-25  Karl Berry  <karl@gnu.org>
8278
8279         * config/srclist.txt (vasnprintf.c): sync lost.
8280
8281 2006-01-25  Jim Meyering  <jim@meyering.net>
8282
8283         Sync from the stable (b5) branch of coreutils:
8284
8285         * lib/fts.c (fts_children): Don't let close() clobber errno from
8286         failed fchdir().
8287
8288         * lib/fts.c (fts_stat): When following a symlink-to-directory,
8289         don't necessarily interpret stat-fails+lstat-succeeds as indicating
8290         a dangling symlink.  That can also happen at least for ELOOP.
8291         The fix: return FTS_SLNONE only when the stat errno is ENOENT.
8292         FYI, this bug predates the inclusion of fts.c in coreutils.
8293
8294         * lib/fts.c (fts_open): Put new maxarglen declaration and uses
8295         in their own block, so pre-c99 compilers don't object.
8296
8297         Avoid the double-free (first in fts_read, second in fts_close) that
8298         would occur when an `active' directory is made inaccessible (e.g.,
8299         via chmod a-x) during a traversal.
8300         * lib/fts.c (fts_read): After a failed fchdir, update sp->fts_cur
8301         before returning.  Reproduce this failure by
8302         mkdir -p a/b; cd a; chmod a-x . b
8303         Reported by Stavros Passas.
8304
8305 2006-01-25  Jim Meyering  <jim@meyering.net>
8306
8307         * lib/fileblocks.c: Remove more useless parentheses.
8308         * lib/readutmp.h: Likewise.
8309
8310 2006-01-25  Bruno Haible  <bruno@clisp.org>
8311
8312         * lib/stdbool_.h (_Bool) [IRIX cc]: Define as 'signed char', to avoid
8313         warnings.
8314         Reported by Paul Eggert.
8315
8316 2006-01-25  Bruno Haible  <bruno@clisp.org>
8317
8318         * gnulib-tool (func_import): Use "trap :" instead of "trap -" to get
8319         rid of a trap command. For Solaris sh.
8320         Reported by Mark D. Baushke <mdb@gnu.org>.
8321
8322 2006-01-24  Simon Josefsson  <jas@extundo.com>
8323
8324         * lib/socket_.h (SHUT_WR, SHUT_RDWR): Don't hardcode, suggested by
8325         Bruno.
8326
8327 2006-01-24  Karl Berry  <karl@gnu.org>
8328
8329         * config/srclist.txt (argp-namefrob.h): sync lost.
8330
8331 2006-01-24  Jim Meyering  <jim@meyering.net>
8332
8333         * modules/openat (Files): Add lib/intprops.h.
8334         From Mark D. Baushke.
8335
8336 2006-01-24  Jim Meyering  <jim@meyering.net>
8337
8338         * m4/openat.m4 (gl_FUNC_OPENAT): Add AC_LIBSOURCES([intprops.h]).
8339         Reported by Mark D. Baushke.
8340
8341 2006-01-24  Jim Meyering  <jim@meyering.net>
8342
8343         * lib/socket_.h: Remove useless parentheses in uses of cpp `defined'.
8344
8345 2006-01-24  Bruno Haible  <bruno@clisp.org>
8346
8347         * modules/strnlen (Maintainer): Change from glibc to all.
8348
8349 2006-01-24  Bruno Haible  <bruno@clisp.org>
8350
8351         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check for IBM and HP-UX bugs.
8352         Patch by Paul Eggert.
8353
8354 2006-01-24  Bruno Haible  <bruno@clisp.org>
8355
8356         * lib/stdbool_.h (_Bool) [__cplusplus]: Don't define if the compiler
8357         already has it.
8358         Report and patch by Albert Chin-A-Young  <china@thewrittenword.com> on
8359         2005-11-26.
8360
8361         * lib/stdbool_.h (_Bool) [HP-UX cc, AIX cc,xlc]: Define as
8362         'signed char' to avoid problems with the built-in _Bool type.
8363         Reported by Paul Eggert on 2005-11-26.
8364
8365 2006-01-24  Bruno Haible  <bruno@clisp.org>
8366
8367         * gnulib-tool (func_import): Avoid constructing complicated sed
8368         expressions inside backquote.
8369         Report and solution by Mark D. Baushke <mdb@gnu.org>.
8370
8371 2006-01-23  Ulrich Drepper  <drepper@redhat.com>
8372
8373         These changes imported from libc.
8374         * lib/getopt.c: Use __fxprintf instead of inline stream orientation
8375         test and two separate function calls.
8376         * lib/strndup.c (__strndup): Add libc_hidden_def.
8377
8378 2006-01-23  Simon Josefsson  <jas@extundo.com>
8379
8380         * modules/lock-tests: Use check_PROGRAMS instead of noinst_PROGRAMS.
8381         Remove the test_*_SOURCES variable: automake infers it by default.
8382         * modules/tls-tests: Likewise.
8383
8384 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
8385
8386         Work around porting bugs reported by Dieter in
8387         <http://lists.gnu.org/archive/html/bug-bison/2006-01/msg00049.html>.
8388         * lib/getopt.c (_NOPROTO): Remove; no longer needed.
8389         Include <stdlib.h> and <unistd.h> in all environments; it's safe now.
8390         Include "getopt.h" first, to check interface.
8391         (getenv): Declare only if defined HAVE_DECL_GETENV &&
8392         !HAVE_DECL_GETENV.
8393         * lib/strndup.c [!_LIBC]: Include "strndup.h" to get prototype.
8394         (__strndup): Revert to K&R-style function dfns, the glibc style.
8395         * lib/strnlen.c: Don't claim it's taken from glibc; it's not.
8396         (strnlen, __strnlen): Remove #defines and #undefs; not needed.
8397         Include strnlen.h first, to get prototype properly.
8398         (strnlen): Renamed from __strnlen.
8399         Remove weak alias.
8400
8401 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
8402
8403         * m4/getopt.m4 (gl_PREREQ_GETOPT): Check for getenv decl.
8404
8405 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
8406
8407         * config/srclist.txt: Adjust to reflect glibc reorganization.
8408         This affects only comments.
8409
8410 2006-01-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
8411
8412          * gnulib-tool, build-aux/csharpcomp.sh.in: Do not pass `-q' to mktemp.
8413          Reported by Bruce Korb <bkorb@gnu.org>.
8414
8415 2006-01-22  Paul Eggert  <eggert@cs.ucla.edu>
8416
8417         * lib/quotearg.c (quotearg_buffer_restyled): Add "default: break;"
8418         to pacify gcc -Wswitch-default.
8419
8420 2006-01-22  Bruno Haible  <bruno@clisp.org>
8421
8422         * lib/vasnprintf.c (VASNPRINTF): In the computation of the size of the
8423         temporary buffer for sprintf, take into account the precision also
8424         for 'd', 'i', 'u', 'o', 'x', 'X'.
8425
8426 2006-01-21  Sergey Poznyakoff  <gray@gnu.org.ua>
8427
8428         * modules/argp-tests: New module
8429         * tests/test-argp.c: New file
8430         * tests/test-argp-2.sh: New file
8431
8432 2006-01-21  Sergey Poznyakoff  <gray@gnu.org.ua>
8433
8434         * lib/argp-help.c (usage_long_opt): Do not print DOC options.
8435         (__argp_base_name): Removed
8436         * lib/argp-namefrob.h (__argp_basename): Removed definition. Was a
8437         typo.
8438         (__argp_base_name): Provide macro definition or extern declaration
8439         depending on the configuration
8440
8441 2006-01-20  Simon Josefsson  <jas@extundo.com>
8442
8443         * modules/inet_ntop (Depends-on): Depend on sys_socket.
8444
8445 2006-01-20  Simon Josefsson  <jas@extundo.com>
8446
8447         * lib/inet_ntop.h: Unconditionally include sys/socket.h.
8448
8449 2006-01-20  Paul Eggert  <eggert@cs.ucla.edu>
8450
8451         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Use -Wl,-z,ignore
8452         rather than -Xlinker -z -Xlinker ignore, as it's more portable.
8453         Suggested by Bruno Haible.
8454
8455 2006-01-20  Karl Berry  <karl@gnu.org>
8456
8457         * config/srclist.txt (argp-fmtstream.h, localcharset.c): comment out
8458         until changes propagate, I guess.
8459
8460 2006-01-19  Simon Josefsson  <jas@extundo.com>
8461
8462         * m4/socklen.m4: Look in ws2tcpip.h too, for mingw32.
8463
8464 2006-01-19  Simon Josefsson  <jas@extundo.com>
8465
8466         * lib/socket_.h: Map SHUT_RD, SHUT_WR, SHUT_RDWR correctly.
8467
8468 2006-01-19  Simon Josefsson  <jas@extundo.com>
8469
8470         * gnulib-tool: Set check_PROGRAMS.
8471
8472         * modules/arcfour-tests, modules/arctwo-tests, modules/crc-tests,
8473         modules/des-tests, modules/gc-arcfour-tests,
8474         modules/gc-arctwo-tests, modules/gc-des-tests,
8475         modules/gc-hmac-md5-tests, modules/gc-hmac-sha1-tests,
8476         modules/gc-md2-tests, modules/gc-md4-tests, modules/gc-md5-tests,
8477         modules/gc-pbkdf2-sha1-tests, modules/gc-rijndael-tests,
8478         modules/gc-sha1-tests, modules/gc-tests, modules/hmac-md5-tests,
8479         modules/hmac-sha1-tests, modules/md2-tests, modules/md4-tests,
8480         modules/md5-tests, modules/readline, modules/rijndael-tests: Use
8481         check_PROGRAMS instead of noinst_PROGRAMS to be able to remove
8482         test_*_SOURCES.
8483
8484 2006-01-18  Simon Josefsson  <jas@extundo.com>
8485
8486         * modules/socklen (Depends-on): Depend on sys_socket.
8487
8488 2006-01-18  Simon Josefsson  <jas@extundo.com>
8489
8490         * modules/arcfour-tests, modules/arctwo-tests, modules/crc-tests,
8491         modules/des-tests, modules/gc-arcfour-tests,
8492         modules/gc-arctwo-tests, modules/gc-des-tests,
8493         modules/gc-hmac-md5-tests, modules/gc-hmac-sha1-tests,
8494         modules/gc-md2-tests, modules/gc-md4-tests, modules/gc-md5-tests,
8495         modules/gc-pbkdf2-sha1-tests, modules/gc-rijndael-tests,
8496         modules/gc-sha1-tests, modules/gc-tests, modules/hmac-md5-tests,
8497         modules/hmac-sha1-tests, modules/md2-tests, modules/md4-tests,
8498         modules/md5-tests, modules/readline, modules/rijndael-tests: Add
8499         $(EXEEXT) to automake TESTS variable, for mingw32.
8500
8501 2006-01-17  Simon Josefsson  <jas@extundo.com>
8502
8503         * modules/socklen (Include): Need sys/socket.h.
8504
8505 2006-01-17  Bruno Haible  <bruno@clisp.org>
8506
8507         * modules/ssize_t (Include): Add <sys/types.h>.
8508
8509 2006-01-16  Paul Eggert  <eggert@cs.ucla.edu>
8510
8511         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Don't use ldd, as
8512         it's not portable and it doesn't work with cross-compiles.
8513         Problem reported by Bruno Haible.  Fix missing-$ typo in
8514         'test "gl_cv_ignore_unused_libraries" ...' that prevented
8515         -zignore from being used with Sun's C compiler.
8516
8517 2006-01-12  Simon Josefsson  <jas@extundo.com>
8518
8519         * lib/base64.c: Fix warning, reported by Bruno Haible
8520         <bruno@clisp.org> and patch by Paul Eggert <eggert@CS.UCLA.EDU>.
8521
8522 2006-01-12  Bruno Haible  <bruno@clisp.org>
8523
8524         * modules/ldd: New file.
8525         * build-aux/ldd.sh.in: New file.
8526         * MODULES.html.sh (Support for building libraries and executables): Add
8527         ldd.
8528
8529 2006-01-12  Bruno Haible  <bruno@clisp.org>
8530
8531         * m4/ldd.m4: New file.
8532
8533 2006-01-12  Bruno Haible  <bruno@clisp.org>
8534
8535         * gnulib-tool (func_import, func_create_testdir): Don't go into an
8536         endless loop while replacing $auxdir with build-aux.
8537
8538 2006-01-11  Simon Josefsson  <jas@extundo.com>
8539
8540         * lib/stdint_.h (SIZE_MAX): Add missing (.
8541
8542 2006-01-11  Paul Eggert  <eggert@cs.ucla.edu>
8543
8544         Sync from coreutils.
8545         * lib/md5.c: Fix commentary typos.
8546         (alignof, UNALIGNED_P): No need for a GCC-specific version.
8547         * lib/md5.h (__attribute__): Remove; unused.
8548         * lib/sha1.c: Fix commentary to match md5 better.
8549         * lib/sha1.h (struct sha1_ctx): Use a word buffer, not a byte buffer,
8550         so that we don't need to worry about alignment.  All uses changed.
8551         This merges the 2005-10-28 md5 change into sha1.
8552
8553 2006-01-11  Jim Meyering  <jim@meyering.net>
8554
8555         Sync from coreutils.
8556         * lib/md5.c (OP): Fix spacing.
8557
8558 2006-01-11  Bruno Haible  <bruno@clisp.org>
8559
8560         Ensure automatic ordering between gl_LOCK and gl_ARGP.
8561         * m4/lock.m4 (gl_LOCK_BODY): Renamed from gl_LOCK.
8562         (gl_LOCK): New macro, requiring gl_LOCK_BODY.
8563
8564 2006-01-11  Bruno Haible  <bruno@clisp.org>
8565
8566         Ensure automatic ordering between gl_LOCK and gl_ARGP.
8567         * gnulib-tool (func_import, func_create_testdir): Put gl_LOCK into
8568         the "early" section as well.
8569
8570 2006-01-11  Bruno Haible  <bruno@clisp.org>
8571
8572         Avoid "ar: no archive members specified" error on MacOS X.
8573         * gnulib-tool (func_modules_add_dummy): New function.
8574         (func_import, func_create_testdir): Invoke it.
8575
8576 2006-01-11  Bruno Haible  <bruno@clisp.org>
8577
8578         * gnulib-tool (func_import, func_create_testdir): Replace build-aux
8579         with $auxdir in AC_CONFIG_FILES statements.
8580
8581 2006-01-11  Bruno Haible  <bruno@clisp.org>
8582
8583         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
8584         Initialize also noinst_HEADERS to empty.
8585
8586 2006-01-11  Bruno Haible  <bruno@clisp.org>
8587
8588         * gnulib-tool (AUTOMAKEPATH, AUTOCONF, ACLOCAL, AUTOMAKE): New
8589         variables.
8590         (func_create_megatestdir): Call aclocal, autoconf, automake here, not
8591         autoreconf.
8592
8593 2006-01-11  Bruno Haible  <bruno@clisp.org>
8594
8595         * gnulib-tool (AUTOCONF, ACLOCAL, AUTOMAKE, AUTORECONF): Make
8596         overridable by the user.
8597         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
8598
8599 2006-01-10  Simon Josefsson  <jas@extundo.com>
8600
8601         * modules/sys_socket: New file.
8602
8603 2006-01-10  Simon Josefsson  <jas@extundo.com>
8604
8605         * m4/sys_socket_h.m4: New file.
8606
8607 2006-01-10  Simon Josefsson  <jas@extundo.com>
8608
8609         * lib/socket_.h: New file.
8610
8611 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
8612
8613         * modules/readutmp (Maintainer): Add myself.
8614
8615 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
8616
8617         * m4/memcoll.m4 (gl_MEMCOLL): Don't require AC_FUNC_MEMCMP, undoing
8618         the 2002-12-31 change.  Problem and fix reported by Bruno Haible.
8619         People who are still concerned with buggy memcmp implementations
8620         can invoke gl_FUNC_MEMCMP themselves.
8621
8622 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
8623
8624         * lib/regex_internal.h (BITSET_WORD_BITS):
8625         Work around a bug in 64-bit PGC (before version 6.1-2), where the
8626         preprocessor mishandles large unsigned values as if they were signed.
8627         Problem reported by Claudio Fontana in
8628         <http://lists.gnu.org/archive/html/bug-gnulib/2005-12/msg00061.html>.
8629
8630 2006-01-10  Jim Meyering  <jim@meyering.net>
8631
8632         Avoid the double-free (first in fts_read, second in fts_close) that
8633         would occur when an `active' directory is made inaccessible (e.g.,
8634         via chmod a-x) during a traversal.
8635         * lib/fts.c (fts_read): After a failed fchdir, update sp->fts_cur
8636         before returning.  Reproduce this failure by
8637         mkdir -p a/b; cd a; chmod a-x . b
8638         Reported by Stavros Passas.
8639
8640         Sync from coreutils.
8641         * lib/sha1.c: Tweak grammar in a comment.
8642
8643 2006-01-10  Jim Meyering  <jim@meyering.net>
8644
8645         * m4/fpending.m4: Also include <stdio.h>, for Dragonfly.
8646         Patch by Joerg Sonnenberger.
8647
8648 2006-01-10  Bruno Haible  <bruno@clisp.org>
8649
8650         * modules/readutmp: Depend on module free.
8651         * modules/strtok_r: Depend on module restrict.
8652
8653 2006-01-10  Bruno Haible  <bruno@clisp.org>
8654
8655         * modules/gettext (configure.ac): Add an invocation of
8656         AM_GNU_GETTEXT_VERSION. Needed since autoreconf is used by gnulib-tool.
8657
8658 2006-01-10  Bruno Haible  <bruno@clisp.org>
8659
8660         * m4/localcharset.m4 (gl_LOCALCHARSET): Also test for getc_unlocked.
8661         Reported by Werner Lemberg <wl@gnu.org>.
8662
8663 2006-01-10  Bruno Haible  <bruno@clisp.org>
8664
8665         * lib/localcharset.c: Update from GNU gettext.
8666
8667 2006-01-10  Bruno Haible  <bruno@clisp.org>
8668
8669         * lib/argp.h (__const): Remove macro. Use const instead.
8670         * lib/argp-fmtstream.h (__const): Likewise.
8671         * lib/glob_.h (__const): Remove macro.
8672         * lib/glob-libc.h: Use const instead of __const.
8673
8674 2006-01-10  Bruno Haible  <bruno@clisp.org>
8675
8676         * gnulib-tool (func_emit_tests_Makefile_am): Emit an empty SUBDIR
8677         variable.
8678         Needed to avoid an automake error regarding the 'gettext' module.
8679
8680 2006-01-09  Simon Josefsson  <jas@extundo.com>
8681
8682         * modules/inet_ntop (Depends-on): Add restrict.
8683
8684 2006-01-09  Simon Josefsson  <jas@extundo.com>
8685
8686         * modules/gc-rijndael-tests (License): Put under LGPL.
8687
8688         * modules/gc-des-tests (License): Likewise.
8689
8690         * modules/gc-arcfour-tests (License): Likewise.
8691
8692         * modules/gc-arctwo-tests (License): Likewise.
8693
8694         * modules/gc-pbkdf2-sha1-tests (License): Likewise.
8695
8696         * modules/gc-hmac-sha1-tests (Files): Likewise.
8697
8698         * modules/gc-hmac-md5-tests (License): Likewise.
8699
8700         * modules/gc-sha1-tests (License): Likewise.
8701
8702         * modules/gc-md5-tests (License): Likewise.
8703
8704         * modules/gc-md4-tests (License): Likewise.
8705
8706         * modules/gc-md2-tests (License): Likewise.
8707
8708         * modules/gc-tests (License): Likewise.
8709
8710         * modules/des-tests (License): Likewise.
8711
8712         * modules/md4-tests (License): Likewise.
8713
8714         * modules/md2-tests (License): Likewise.
8715
8716 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
8717
8718         Sync from coreutils:
8719
8720         * MODULES.html.sh (build_lib): New section, with new lib-ignore module.
8721         * modules/lib-ignore: New file.
8722         * modules/mkdir-p (Files): Add chdir-safer.c, chdir-safer.h, lchmod.h,
8723         chdir-safer.m4, lchmod.m4.
8724         * modules/openat: Add mkdirat.c, openat-priv.h.
8725
8726 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
8727
8728         Sync from coreutils.
8729         * m4/lib-ignore.m4: New file.
8730         * m4/lchmod.m4: New file.
8731
8732 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
8733
8734         Sync from coreutils.
8735         * lib/chdir-long.c (cdb_free): Don't bother trying to open directory
8736         for write access: POSIX says that must fail.
8737         * lib/fts.c (diropen): Likewise.
8738         * lib/save-cwd.c (save_cwd): Likewise.
8739         * lib/chdir-long.c (cdb_free): Open with O_NOCTTY | O_NONBLOCK as
8740         well, for minor improvements on hosts that lack O_DIRECTORY.
8741         * lib/chown.c (rpl_chown) [CHOWN_MODIFIES_SYMLINK]:
8742         Don't try O_WRONLY unless O_RDONLY failed wth EACCES.
8743         Fall back on chown if open failed with EACCES.
8744
8745         * lib/gettime.c (gettime) [!defined OK_TO_USE_1S_CLOCK]:
8746         Report an error at compile-time if only a 1-second nominal clock
8747         resolution is found.
8748
8749         * lib/lchmod.h: New file.
8750         * lib/mkdir-p.c: Include lchmod.h, lchown.h.
8751         (make_dir_parents): Use lchown rather than chown, and
8752         lchmod rather than chmod.
8753
8754         * lib/mountlist.c (ME_DUMMY): "none" and "proc" file systems are
8755         dummies too.  Problem with "none" reported by Bob Proulx.  Problem with
8756         "proc" reported by n0dalus.
8757
8758         * lib/mountlist.c: Include <limits.h>.
8759         (dev_from_mount_options)
8760         [defined MOUNTED_GETMNTENT1 || defined MOUNTED_GETMNTENT2]:
8761         New function.  It no longer assumes "dev=" has the System V meaning
8762         on Linux (since it doesn't).  It also parses "dev=" more carefully.
8763         (read_file_system_list)
8764         [defined MOUNTED_GETMNTENT1 || defined MOUNTED_GETMNTENT2]: Use it.
8765         MOUNTED_GETMNTENT2 is new here; the code didn't used to look for
8766         dev= in that case.
8767
8768         * lib/posixtm.h (PDS_PRE_2000): New macro.
8769         * lib/posixtm.c (year): Arg is now syntax_bits rather than
8770         allow_century.  All usages changed.  Reject dates outside the range
8771         1969-1999 if PDS_PRE_2000 is used.
8772
8773 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
8774
8775         Sync from coreutils.
8776         * doc/getdate.texi (General date syntax): Invalid dates are rejected.
8777         (Time of day items): Mention the possibility of leap seconds.
8778         Problem reported by Dr. David Alan Gilbert.
8779
8780 2006-01-09  Jim Meyering  <jim@meyering.net>
8781
8782         Sync from coreutils.
8783
8784         * lib/version-etc.c (COPYRIGHT_YEAR): Update to 2006.
8785
8786         * lib/chdir-safer.h, lib/chdir-safer.c: New files.
8787
8788         * lib/modechange.c (mode_compile): Reject an invalid mode string
8789         that starts with an octal digit.  From Andreas Gruenbacher.
8790
8791         * lib/openat.c: Include "fcntl--.h" and "unistd--.h", to map open
8792         and dup to open_safer and dup_safer, respectively.
8793         (openat_permissive): Fix typo in comment.
8794
8795         * lib/openat.c: Don't include <stdlib.h>, <unistd.h>, <fcntl.h>,
8796         "gettext.h"; either no longer needed or are guaranteed by openat.h.
8797         (_): Remove; no longer needed.
8798         (openat): Renamed from rpl_openat; no need for rpl_openat
8799         since openat.h renames openat for us.
8800         Replace most of the body with a call to openat_permissive,
8801         to avoid duplicate code.
8802         Port to (probably hypothetical) environments were mode_t is
8803         wider than int.
8804         (openat_permissive): Require mode arg, so that we can check
8805         types better.  Put it just after flags.  Change cwd failure
8806         indicator from pointer-to-bool to pointer-to-errno-value.
8807         All callers changed.
8808         Invoke openat_save_fail and/or openat_restore_fail if
8809         cwd_errno is null, so that openat can call us.
8810         (openat_permissive, fdopendir, fstatat, unlinkat):
8811         Simplify errno handling to avoid some duplicate code,
8812         as it's OK to set errno on success.
8813         * lib/openat.h: Revamp code so that function macros depend on
8814         __OPENAT_PREFIX only, not also on AT_FDCWD.
8815         (openat_ro): Remove.  Caller changed to use openat_permissive.
8816         (openat_permissive): Now a macro, if not a function.
8817         (openat_restore_fail, openat_save_fail): Now always functions,
8818         since mkdirat needs them even if __OPENAT_PREFIX is defined.
8819
8820         * lib/openat-priv.h: New file, defining macros used by mkdirat.c
8821         and openat.c.
8822         * lib/mkdirat.c: Include openat-priv.h.
8823         Remove definitions of macros defined therein.
8824         * lib/openat.c: Likewise.
8825
8826         * lib/mkdirat.c (mkdirat): New file and function.
8827         * lib/openat.h (mkdirat): Declare.
8828
8829         * lib/openat.c (fdopendir): Don't change errno when returning non-NULL.
8830
8831         * lib/openat.h (openat_permissive): Declare.
8832         (openat_ro): Define.
8833
8834         * lib/openat.c (EXPECTED_ERRNO): New macro.
8835         (openat_permissive): New function -- used in remove.c rewrite.
8836         (all functions): Set errno just before returning, only if there
8837         was an actual failure.
8838         Use EXPECTED_ERRNO rather than comparing against only ENOTDIR.
8839
8840         Emulate openat-family functions using Linux's procfs, if possible.
8841         Idea and some code based on Ulrich Drepper's glibc changes.
8842
8843         * lib/openat.c: (BUILD_PROC_NAME): New macro.
8844         Include <stdio.h>, <string.h>, "alloca.h" and "intprops.h".
8845         (rpl_openat): Emulate by trying to open /proc/self/fd/%d/%s,
8846         before falling back on save_cwd and restore_cwd.
8847         (fdopendir, fstatat, unlinkat): Likewise.
8848
8849         * lib/openat.c (fstatat, unlinkat): Perform the syscall directly,
8850         skipping the save_cwd...restore_cwd overhead, if FILE is absolute.
8851
8852         * lib/openat.c (rpl_openat): Use the promoted type (int), not mode_t,
8853         as second argument to va_arg.  Otherwise, some versions of gcc
8854         warn that `if this code is reached, the program will abort'.
8855
8856 2006-01-09  Jim Meyering  <jim@meyering.net>
8857
8858         Sync from coreutils.
8859         * m4/openat.m4 (gl_FUNC_OPENAT): Require and compile mkdirat.c.
8860         Require openat-priv.h.
8861
8862 2006-01-09  Bruno Haible  <bruno@clisp.org>
8863
8864         * modules/strnlen (Include): Use strnlen.h.
8865
8866 2006-01-09  Bruno Haible  <bruno@clisp.org>
8867
8868         * m4/stdint.m4 (gl_STDINT_H): Also test for <sys/bitypes.h>.
8869
8870 2006-01-09  Bruno Haible  <bruno@clisp.org>
8871
8872         * lib/sysexit_.h (EX_OK): New macro.
8873         Suggested by Martin Lambers <marlam@marlam.de>.
8874
8875 2006-01-09  Bruno Haible  <bruno@clisp.org>
8876
8877         * lib/stdint_.h: On Linux libc4 and libc5, include <sys/bitypes.h> and
8878         don't define _STDINT_H_NEED_SIGNED_INT_TYPES.
8879
8880 2006-01-09  Bruno Haible  <bruno@clisp.org>
8881
8882         * lib/stdint_.h (SIZE_MAX): Write the value without involving negative
8883         numbers.
8884
8885 2006-01-09  Bruno Haible  <bruno@clisp.org>
8886
8887         * lib/javacomp.sh.in: Move to ../build-aux/javacomp.sh.in.
8888         * lib/javaexec.sh.in: Move to ../build-aux/javaexec.sh.in.
8889         * lib/csharpcomp.sh.in: Move to ../build-aux/csharpcomp.sh.in.
8890         * lib/csharpexec.sh.in: Move to ../build-aux/csharpexec.sh.in.
8891
8892 2006-01-09  Bruno Haible  <bruno@clisp.org>
8893
8894         * build-aux/javacomp.sh.in: New file, moved from lib/.
8895         * modules/javacomp-script (Files): Update.
8896         (configure.ac): Add AC_CONFIG_FILES invocation.
8897         (EXTRA_DIST): Remove variable.
8898
8899         * build-aux/javaexec.sh.in: New file, moved from lib/.
8900         * modules/javaexec (Files): Update.
8901         (configure.ac): Add AC_CONFIG_FILES invocation.
8902         (EXTRA_DIST): Remove javaexec.sh.in.
8903
8904         * build-aux/csharpcomp.sh.in: New file, moved from lib/.
8905         * modules/csharpcomp-script (Files): Update.
8906         (configure.ac): Add AC_CONFIG_FILES invocation.
8907         (EXTRA_DIST): Remove variable.
8908
8909         * build-aux/csharpexec.sh.in: New file, moved from lib/.
8910         * modules/csharpexec (Files): Update.
8911         (configure.ac): Add AC_CONFIG_FILES invocation.
8912         (EXTRA_DIST): Remove csharpexec.sh.in.
8913
8914 2006-01-09  Andreas Gruenbacher  <agruen@suse.de>
8915
8916         Sync from coreutils.
8917
8918         Add POSIX ACL support
8919         * lib/acl.h (copy_acl, set_acl): Add declarations.
8920         * lib/acl.c (acl_entries): Add fallback implementation for POSIX ACL
8921         systems other than Linux.
8922         (chmod_or_fchmod): New function: use fchmod when possible,
8923         and chmod otherwise.
8924         (file_has_acl): Add a POSIX ACL implementation, with a
8925         Linux-specific subcase.
8926         (copy_acl): Add: copy an acl and S_ISUID, S_ISGID, and
8927         S_ISVTX from one file to another.  Fall back to fchmod/chmod when
8928         acls are unsupported.
8929         (set_acl): Add: set a file's acl and S_ISUID, S_ISGID, and
8930         S_ISVTX to a defined value.  Fall back to fchmod/chmod when acls
8931         are unsupported.
8932
8933 2006-01-09  Andreas Gruenbacher  <agruen@suse.de>
8934
8935         Sync from coreutils.
8936         * m4/acl.m4 (AC_FUNC_ACL): Add POSIX ACL and Linux-specific acl tests.
8937
8938 2006-01-07  Bruno Haible  <bruno@clisp.org>
8939
8940         * gnulib-tool (func_import): Add an AC_PROG_RANLIB dependency to
8941         gl_EARLY.
8942
8943 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
8944
8945         * lib/strftime.c (tzname): Don't declare if it is already #defined.
8946         Problem reported for Mingw by Mark Junker.
8947
8948 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
8949
8950         * README: Gnulib normally doesn't generate a tarball.
8951
8952 2006-01-03  Paul Eggert  <eggert@cs.ucla.edu>
8953
8954         * lib/xtime.h (xtime_make, xtime_nonnegative_nsec, xtime_nsec): Use
8955         long int, not int, for nanosecond counts, so that people who are
8956         used to POSIX struct timespec won't be surprised.  Reported by Jim
8957         Meyering.
8958
8959 2005-12-28  Bruno Haible  <bruno@clisp.org>
8960
8961         * build-aux/config.rpath: Update from GNU gettext.
8962
8963 2005-12-16  Jim Meyering  <jim@meyering.net>
8964
8965         * modules/fprintftime: New module.
8966         * MODULES.html.sh (Date and time <time.h>): Add fprintftime.
8967
8968 2005-12-16  Jim Meyering  <jim@meyering.net>
8969
8970         * m4/fprintftime.m4: New file.
8971
8972 2005-12-16  Jim Meyering  <jim@meyering.net>
8973
8974         * lib/fprintftime.c, lib/fprintftime.h: New files.
8975
8976 2005-12-15  Simon Josefsson  <jas@extundo.com>
8977
8978         * modules/socklen (configure.ac): Fix M4 macro name, to align with
8979         new m4/socklen.m4.
8980
8981 2005-12-10  Sergey Poznyakoff  <gray@gnu.org.ua>
8982
8983         * m4/argp.m4: Define HAVE_DECL_PROGRAM_INVOCATION_NAME and
8984         HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME
8985
8986 2005-12-10  Sergey Poznyakoff  <gray@gnu.org.ua>
8987
8988         * lib/argp-fmtstream.c (__argp_fmtstream_update): Fix coredump
8989         * lib/argp-help.c (fill_in_uparams): Check if the constructed
8990         struct uparams is valid. Fall back to the default values if it is
8991         not.
8992
8993 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
8994
8995         * modules/argp (Files): Add argp-pin.c
8996         (Depends-on): dirname
8997         (lib_SOURCES): Add argp-pin.c
8998
8999 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
9000
9001         * m4/argp.m4:  Check if program_invocation_name and
9002         program_invocation_short_name are declared and define appropriate
9003         macros if they are not.
9004
9005 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
9006
9007         * lib/argp-help.c (__argp_base_name): New function
9008         (__argp_short_program_name): Rewrite using __argp_base_name
9009         * lib/argp-namefrob.h: Define program_invocation_name and
9010         program_invocation_short_name if requested
9011         (__argp_base_name): Add prototype
9012         * lib/argp-parse.c (argp_def): Use gettext wrappers
9013         (argp_default_parser): Use __argp_base_name
9014         * lib/argp-pin.c: New file. Defines program_invocation_name and
9015         program_invocation_short_name on systems that lack them.
9016
9017 2005-12-07  Paul Eggert  <eggert@cs.ucla.edu>
9018
9019         * m4/stat-time.m4 (gl_STAT_TIME): Add check for
9020         TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC, to fix IRIX 5.3
9021         porting problem reported by Georg Schwarz in
9022         <http://lists.gnu.org/archive/html/bug-coreutils/2005-12/msg00083.html>.
9023
9024 2005-12-07  Paul Eggert  <eggert@cs.ucla.edu>
9025
9026         * lib/stat-time.h (STATE_TIMESPEC, STAT_TIMESPEC_NS): Add check for
9027         TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC, to fix IRIX 5.3
9028         porting problem reported by Georg Schwarz in
9029         <http://lists.gnu.org/archive/html/bug-coreutils/2005-12/msg00083.html>.
9030
9031 2005-12-05  Bruno Haible  <bruno@clisp.org>
9032
9033         * lib/csharpcomp.sh.in (options_csc): For -l option, add a .dll suffix.
9034         * lib/csharpcomp.c (compile_csharp_using_sscli): Likewise.
9035         Reported by Mark Junker <mjscod@gmx.de>.
9036
9037 2005-12-02  Paul Eggert  <eggert@cs.ucla.edu>
9038
9039         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Renamed from gl_SOCKLEN_T.
9040         Use implementation from Albert Chin, with some
9041         comments/corrections by Stepan Kasal and myself.
9042
9043 2005-12-02  Bruno Haible  <bruno@clisp.org>
9044
9045         * gnulib-tool (func_import): Accept GPLed build tool modules when
9046         --lgpl is given.
9047         * modules/csharpcomp-script: New file.
9048         * modules/csharpcomp: Depend on it.
9049         * modules/javacomp-script: New file.
9050         * modules/javacomp: Depend on it.
9051         Suggested by Simon Josefsson.
9052
9053 2005-12-01  Paul Eggert  <eggert@cs.ucla.edu>
9054
9055         * m4/regex.m4 (gl_REGEX): Check whether off_t can be used in a switch
9056         statement, to work around an HP-UX 10.20 compiler bug reported by
9057         Peter O'Gorman.
9058
9059 2005-11-29  Paul Eggert  <eggert@cs.ucla.edu>
9060
9061         * modules/savedir (Depends-on): Add openat.
9062
9063 2005-11-29  Paul Eggert  <eggert@cs.ucla.edu>
9064
9065         * lib/stdint_.h (intmax_t) [defined intmax_t]: Do not declare.
9066         (uintmax_t) [defined uintmax_t]: Do not declare.
9067         (SIZE_MAX) [defined SIZE_MAX]: Do not define.
9068         This works around a problem if intmax_t.m4 and/or uintmax_t.m4
9069         and/or size_max.m4 are also used.  Problem reported by Mark D. Baushke.
9070         (SIZE_MAX): Define to ((size_t) -1), not (~(size_t)0), for the
9071         sake of portability to weird hosts that C allows (though we don't
9072         know of any practical examples).
9073
9074         * lib/savedir.h (fdsavedir): New decl.
9075         * lib/savedir.c (fdsavedir, savedirstream): New functions; the latter
9076         contains most of the former guts of savedir.
9077         (savedir): Use savedirstream.
9078         Include "openat.h".
9079
9080 2005-11-25  Paul Eggert  <eggert@cs.ucla.edu>
9081
9082         * modules/obstack (Files): Add m4/ulonglong.m4.
9083         Problem reported by Davide Angelocola.
9084
9085 2005-11-15  Paul Eggert  <eggert@cs.ucla.edu>
9086
9087         * lib/xstrtod.c: Don't bother with #pragma STDC FENV_ACCESS ON, as
9088         coreutils no longer futzes with rounding modes.
9089
9090 2005-11-14  Jim Meyering  <jim@meyering.net>
9091
9092         * lib/mkstemp-safer.c: Include <config.h>, required for possible
9093         replacement of mkstemp.
9094
9095 2005-11-10  Simon Josefsson  <jas@extundo.com>
9096
9097         * lib/readline.c: Remove EOL.
9098
9099 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
9100
9101         * modules/gethrxtime (Depends-on): Add gettime.
9102
9103 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
9104
9105         * m4/gethrxtime.m4 (gl_PREREQ_GETHRXTIME): Don't require AC_HEADER_TIME
9106         or gettimeofday; no longer needed.
9107
9108 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
9109
9110         * lib/gethrxtime.c: Include "timespec.h" rather than the sys/time /
9111         time business.
9112         (gethrxtime) [! (HAVE_NANOUPTIME
9113         || (defined CLOCK_MONOTONIC && HAVE_CLOCK_GETTIME)
9114         || HAVE_MICROUPTIME)]: Fall back on gettime rather than rolling
9115         our own approximation.
9116
9117 2005-11-08  Eric Blake  <ebb9@byu.net>
9118
9119         * lib/inet_ntop.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
9120
9121 2005-11-08  Eric Blake  <ebb9@byu.net>
9122
9123         * lib/getaddrinfo.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
9124
9125 2005-11-04  Bruno Haible  <bruno@clisp.org>
9126
9127         * gnulib-tool: Implement --update mode.
9128
9129 2005-10-30  Paul Eggert  <eggert@cs.ucla.edu>
9130
9131         Fix porting problem reported by Theodoros V. Kalamatianos.
9132         * lib/utimens.c (futimens) [HAVE_WORKING_UTIMES && HAVE_FUTIMES]:
9133         Don't assume that futimes failing means we must fail.
9134
9135 2005-10-30  Paul Eggert  <eggert@cs.ucla.edu>
9136
9137         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Revamp wording and local
9138         variables to suggest the intended function of the PATH_MAX check.
9139
9140 2005-10-30  Kean Johnston  <jkj@sco.com>
9141
9142         Trivial changes to support SCO systems.
9143         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Check for MAXPATHLEN as well
9144         as PATH_MAX.
9145         * m4/fpending.m4 (gl_FUNC_FPENDING): Correct check for SCO systems,
9146         where __ptr is null when no I/O is pending.
9147
9148 2005-10-29  Paul Eggert  <eggert@cs.ucla.edu>
9149
9150         * lib/getcwd.c (__getcwd): Don't assume that system calls after readdir
9151         leave errno alone.  Problem reported by Dmitry V. Levin.
9152
9153 2005-10-28  Simon Josefsson  <jas@extundo.com>
9154
9155         * tests/test-gc-md4.c, tests/test-gc-md5.c, tests/test-gc-sha1.c:
9156         Test more.
9157
9158         * tests/test-gc-md2.c, tests/test-md2.c: New files.
9159
9160         * modules/md2, modules/md2-tests: New files.
9161
9162 2005-10-28  Simon Josefsson  <jas@extundo.com>
9163
9164         * m4/inet_ntop.m4: More tests.
9165
9166         * m4/gc-md2.m4, md2.m4: New file.
9167
9168 2005-10-28  Simon Josefsson  <jas@extundo.com>
9169
9170         * lib/inet_ntop.h, inet_ntop.c: Make it work under mingw32: Add
9171         "restrict" keywords, as per POSIX.  Protect the function
9172         declaration around HAVE_DECL_INET_NTOP rather than HAVE_INET_NTOP.
9173         Don't use K&R prototypes.  Check the sprintf return values.
9174         Re-define EAFNOSUPPORT if not present.  Indent.
9175
9176         * lib/md5.h, md5.c: Simplify buffer handling visavi alignment,
9177         suggested by Bruno Haible <bruno@clisp.org>.
9178
9179         * lib/gc-gnulib.c, gc-libgcrypt.c: Check calloc return value.
9180
9181         * lib/gc.h: Add MD2 and RMD160 length defines.  Add prototypes.
9182
9183         * lib/gc-libgcrypt.c: Add MD2 (which is not available through
9184         libgcrypt).
9185
9186         * lib/gc-gnulib.c: Add MD2.  Implement gc_hash_* API.
9187
9188         * lib/md2.h, lib/md2.c: New files.
9189
9190 2005-10-28  Paul Eggert  <eggert@cs.ucla.edu>
9191
9192         * lib/savedir.c (savedir): Don't assume that xrealloc etc. leave
9193         errno alone.  Problem reported by Frederic Jolliton.
9194
9195 2005-10-27  Paul Eggert  <eggert@cs.ucla.edu>
9196
9197         * modules/verify (License): Change from GPL to LGPL.  This is a
9198         tiny module and there are apparently near-equivalents that are
9199         under the BSD license.
9200
9201 2005-10-24  Simon Josefsson  <jas@extundo.com>
9202
9203         * modules/sha1: Relicense to LGPL.
9204
9205 2005-10-24  Simon Josefsson  <jas@extundo.com>
9206
9207         * lib/md4.h: Shrink buffer size, now that we changed the type.
9208
9209 2005-10-23  Simon Josefsson  <jas@extundo.com>
9210
9211         * gnulib-tool (func_import): Fix --tests-base.
9212
9213 2005-10-22  Simon Josefsson  <jas@extundo.com>
9214
9215         * modules/arcfour (Depends-on): Need stdint.
9216
9217 2005-10-22  Simon Josefsson  <jas@extundo.com>
9218
9219         * m4/gc.m4: Don't be fooled by --disable-*random-device parameters,
9220         suggested by Bruno Haible <bruno@clisp.org>.  Fix error messages.
9221
9222 2005-10-22  Simon Josefsson  <jas@extundo.com>
9223
9224         * lib/md4.h, md4.c: Simplify buffer handling visavi alignment,
9225         suggested by Bruno Haible <bruno@clisp.org>.
9226
9227 2005-10-22  Simon Josefsson  <jas@extundo.com>
9228
9229         * lib/crc.h: Include stddef.h, for size_t.
9230
9231 2005-10-22  Simon Josefsson  <jas@extundo.com>
9232
9233         * lib/arcfour.h, arcfour.c: Use fixed size indices in the
9234         arcfour_context struct (simplify test vector testing in GNU
9235         Shishi).
9236
9237 2005-10-21  Simon Josefsson  <jas@extundo.com>
9238
9239         * modules/des, modules/des-tests: New files.
9240
9241         * modules/gc-des, modules/gc-des-tests: New files.
9242
9243         * tests/test-des.c, tests/test-gc-des.c: New file.
9244
9245 2005-10-21  Simon Josefsson  <jas@extundo.com>
9246
9247         * modules/arctwo, modules/arctwo-tests: New files.
9248
9249         * tests/test-arctwo.c: New file.
9250
9251         * modules/gc-arctwo, modules/gc-arctwo-tests: New files.
9252
9253         * tests/test-gc-arctwo.c: New file.
9254
9255 2005-10-21  Simon Josefsson  <jas@extundo.com>
9256
9257         * m4/gc.m4: Don't use libgcrypt if gcrypt.h isn't found, suggested by
9258         Bruno Haible <bruno@clisp.org>.
9259
9260         * m4/gc-des.m4: New file.
9261
9262 2005-10-21  Simon Josefsson  <jas@extundo.com>
9263
9264         * m4/arctwo.m4: New file.
9265
9266         * m4/gc-arctwo.m4: New file.
9267
9268 2005-10-21  Simon Josefsson  <jas@extundo.com>
9269
9270         * lib/rijndael-api-fst.c: Fix bugs in CBC mode for more than one
9271         block.
9272
9273 2005-10-21  Simon Josefsson  <jas@extundo.com>
9274
9275         * lib/hmac-md5.c (hmac_md5): Add comments, suggested by Bruno Haible
9276         <bruno@clisp.org>.
9277
9278         * lib/hmac-sha1.c (hmac_sha1): Likewise.
9279
9280         * lib/crc.c (crc32_update): Actually use crc parameter, suggested by
9281         Bruno Haible <bruno@clisp.org>.
9282
9283         * lib/crc.h: Include stdint.h directly, suggested by Bruno Haible
9284         <bruno@clisp.org>.
9285
9286 2005-10-21  Simon Josefsson  <jas@extundo.com>
9287
9288         * lib/gc-libgcrypt.c (gc_cipher_open): Handle ECB.
9289
9290 2005-10-21  Simon Josefsson  <jas@extundo.com>
9291
9292         * lib/gc-gnulib.c: Support ARCTWO in CBC mode.
9293
9294 2005-10-21  Simon Josefsson  <jas@extundo.com>
9295
9296         * lib/des.h, lib/des.c: New files.
9297
9298         * lib/gc-gnulib.c: Support DES.c
9299
9300 2005-10-21  Simon Josefsson  <jas@extundo.com>
9301
9302         * lib/arctwo.h, lib/arctwo.c: New files.
9303
9304         * lib/gc-gnulib.c: Support ARCTWO.
9305
9306 2005-10-21  Simon Josefsson  <jas@extundo.com>
9307
9308         * lib/arctwo.h (arctwo_setkey): Protect variable in CPP macro,
9309         suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
9310
9311 2005-10-21  Simon Josefsson  <jas@extundo.com>
9312
9313         * gnulib-tool (func_import, func_create_testdir): Define automake
9314         conditional GL_COND_LIBTOOL if libtool is used (to be used by modules
9315         Makefile.am snippet),
9316         suggested by Bruno Haible <bruno@clisp.org>.
9317
9318         * modules/gc (Makefile.am): Use it.
9319
9320 2005-10-21  Bruno Haible  <bruno@clisp.org>
9321
9322         * gnulib-tool (func_import, func_create_testdir): Add quoting to last
9323         patch.
9324
9325 2005-10-19  Simon Josefsson  <jas@extundo.com>
9326
9327         * tests/test-gc-rijndael.c: New file.
9328
9329         * modules/gc-rijndael, modules/gc-rijndael-test: New files.
9330
9331 2005-10-19  Simon Josefsson  <jas@extundo.com>
9332
9333         * tests/test-gc-md4.c, tests/test-gc-md5.c: Test gc_hash_buffer
9334         interface too.
9335
9336 2005-10-19  Simon Josefsson  <jas@extundo.com>
9337
9338         * tests/test-gc-arcfour.c: New file.
9339
9340         * modules/gc-arcfour, modules/gc-arcfour-tests: New files.
9341
9342 2005-10-19  Simon Josefsson  <jas@extundo.com>
9343
9344         * modules/gc-md4, modules/gc-md4-tests: New file.
9345
9346         * tests/test-gc-md4.c: New file.
9347
9348 2005-10-19  Simon Josefsson  <jas@extundo.com>
9349
9350         * m4/gc-md4.m4: New file.
9351
9352 2005-10-19  Simon Josefsson  <jas@extundo.com>
9353
9354         * m4/gc-hmac-md5.m4, gc-hmac-sha1.m4, gc-md4.m4,
9355         gc-md5.m4, gc-sha1.m4: Fix typo, suggested by Stepan Kasal
9356         <kasal@ucw.cz>.
9357
9358 2005-10-19  Simon Josefsson  <jas@extundo.com>
9359
9360         * m4/gc-arcfour.m4: New file.
9361
9362         * m4/gc-rijndael.m4: New file.
9363
9364 2005-10-19  Simon Josefsson  <jas@extundo.com>
9365
9366         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Support MD4.
9367
9368 2005-10-19  Simon Josefsson  <jas@extundo.com>
9369
9370         * lib/gc-gnulib.c: Support ARCFOUR.
9371
9372 2005-10-19  Simon Josefsson  <jas@extundo.com>
9373
9374         * lib/gc-gnulib.c: Implement gc_cipher_* API, currently only with AES
9375         support.
9376
9377         * lib/gc.h: Add ECB enum type.
9378
9379         * lib/hmac-md5.c, hmac-sha1.c: Include memxor.h.
9380
9381 2005-10-18  Simon Josefsson  <jas@extundo.com>
9382
9383         * tests/test-md5.c: New file.
9384
9385         * modules/md5-tests: New file.
9386
9387 2005-10-18  Simon Josefsson  <jas@extundo.com>
9388
9389         * tests/test-md4.c: New file.
9390
9391         * modules/md4, modules/md4-tests: New files.
9392
9393 2005-10-18  Simon Josefsson  <jas@extundo.com>
9394
9395         * m4/md4.m4: New file.
9396
9397 2005-10-18  Simon Josefsson  <jas@extundo.com>
9398
9399         * lib/md4.h, lib/md4.c: New files, based on md5.?.
9400
9401 2005-10-17  Stepan Kasal  <kasal@ucw.cz>
9402
9403         * gnulib-tool (func_create_testdir): Omit the second check whether
9404         BUILT_SOURCES in nonempty.
9405
9406 2005-10-17  Simon Josefsson  <jas@extundo.com>
9407
9408         * tests/test-rijndael.c: New file.
9409
9410 2005-10-17  Simon Josefsson  <jas@extundo.com>
9411
9412         * modules/sha1: Depend on stdint instead of md5.
9413
9414         * modules/md5: Depend on stdint, remove uint32_t.
9415
9416 2005-10-17  Simon Josefsson  <jas@extundo.com>
9417
9418         * modules/gc-sha1-tests: New file.
9419
9420         * tests/test-gc-sha1.c: New file.
9421
9422 2005-10-17  Simon Josefsson  <jas@extundo.com>
9423
9424         * m4/md5.m4: Remove call to uint32_t.m4.
9425
9426 2005-10-17  Simon Josefsson  <jas@extundo.com>
9427
9428         * lib/sha1.c: Use uint32_t instead of md5_uint32.t
9429
9430         * lib/sha1.h: Use stdint.h and uint32_t instead of md5_uint32 from
9431         md5.h.
9432
9433         * lib/md5.c: Use uin32_t.  Fix non-gcc UNALIGNED_P macro.
9434
9435         * lib/md5.h: Use stdint.h and uint32_t.  Doc fix.
9436
9437 2005-10-17  Simon Josefsson  <jas@extundo.com>
9438
9439         * lib/gc.h, gc-libgcrypt.c: Add more hash types/functions.
9440
9441 2005-10-17  Simon Josefsson  <jas@extundo.com>
9442
9443         * lib/gc.h, gc-libgcrypt.c: Add ciphers.
9444
9445 2005-10-17  Simon Josefsson  <jas@extundo.com>
9446
9447         * lib/gc-libgcrypt.c (gc_hmac_sha1): Fix assert.
9448
9449         * lib/gc.h (gc_nonce, gc_pseudo_random, gc_random): Add prototypes.
9450
9451 2005-10-17  Bruno Haible  <bruno@clisp.org>
9452
9453         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Change the return statement so
9454         that it can also be used in a test.
9455
9456 2005-10-16  Bruno Haible  <bruno@clisp.org>
9457
9458         * gnulib-tool (func_emit_tests_Makefile_am): Also define
9459         TESTS_ENVIRONMENT, so that individual tests can augment it.
9460
9461         * gnulib-tool (func_create_testdir): Use an intermediate target for
9462         building $(BUILT_SOURCES). Needed because BUILT_SOURCES can contain
9463         macros, like $(ALLOCA_H), which cannot be passed through the command
9464         line.
9465
9466 2005-10-15  Simon Josefsson  <jas@extundo.com>
9467
9468         * modules/rijndael-tests: New file.
9469
9470         * modules/rijndael: New file.
9471
9472 2005-10-15  Simon Josefsson  <jas@extundo.com>
9473
9474         * m4/rijndael.m4: New file.
9475
9476 2005-10-15  Simon Josefsson  <jas@extundo.com>
9477
9478         * lib/rijndael-api-fst.h, lib/rijndael-api-fst.c: New files.
9479
9480         * lib/rijndael-alg-fst.h, lib/rijndael-alg-fst.c: New files.
9481
9482 2005-10-14  Simon Josefsson  <jas@extundo.com>
9483
9484         * tests/test-arcfour.c: New file.
9485
9486         * modules/arcfour, modules/arcfour-tests: New files.
9487
9488 2005-10-14  Simon Josefsson  <jas@extundo.com>
9489
9490         * m4/arcfour.m4: New file.
9491
9492 2005-10-14  Simon Josefsson  <jas@extundo.com>
9493
9494         * lib/arcfour.h, lib/arcfour.c: New files.
9495
9496 2005-10-14  Roland McGrath  <roland@redhat.com>
9497
9498         Import from libc.  [BZ #1331]
9499         * lib/obstack.h [!__STDC__] (obstack_int_grow_fast): Fix misnamed
9500         macro argument.
9501         Reported by Matej Vela <vela@debian.org>.
9502
9503 2005-10-14  Paul Eggert  <eggert@cs.ucla.edu>
9504
9505         * lib/obstack.c [defined _LIBC && defined USE_IN_LIBIO]: Don't
9506         include <wchar.h>; no longer needed.
9507
9508 2005-10-14  Paul Eggert  <eggert@cs.ucla.edu>
9509
9510         * config/srclist.txt: Add glibc bug 321 for obstack.c, obstack.h.
9511
9512 2005-10-14  Jakub Jelinek  <jakub@redhat.com>
9513         and  Ulrich Drepper  <drepper@redhat.com>
9514
9515         Import from libc.
9516         * lib/obstack.c (print_and_abort) [defined _LIBC]: Use __fxprintf
9517         instead of inline stream orientation test and two separate
9518         function calls.  Pay no attention to USE_IN_LIBIO.
9519
9520 2005-10-13  Simon Josefsson  <jas@extundo.com>
9521
9522         * modules/gc-hmac-md5-tests: New file.
9523
9524         * tests/test-gc-hmac-sha1.c: New file.
9525
9526         * tests/test-gc.c (main): Remove MD5 and HMAC-MD5 tests.
9527
9528         * modules/gc-hmac-md5-tests: New file.
9529
9530         * tests/test-gc-md5.c: New file.
9531
9532         * modules/gc-md5-tests: New file.
9533
9534 2005-10-13  Simon Josefsson  <jas@extundo.com>
9535
9536         * lib/gc-pbkdf2-sha1.c (gc_pbkdf2_sha1): Optimize CEIL computation.
9537         Move memory allocation outside of loop.
9538
9539 2005-10-13  Paul Eggert  <eggert@cs.ucla.edu>
9540
9541         * lib/mkdir-p.c (make_dir_parents): Don't report an error if an
9542         intermediate directory is in a read-only file system.  Problem
9543         reported by Eric Blake.
9544
9545 2005-10-13  Oskar Liljeblad  <oskar@osk.mine.nu>
9546
9547         * modules/human (Depends-on): Depend on xstrtoumax, not xstrtol.
9548
9549 2005-10-12  Simon Josefsson  <jas@extundo.com>
9550
9551         * tests/test-hmac-sha1.c: New file.
9552
9553         * modules/hmac-sha1-tests: New file.
9554
9555         * modules/hmac-sha1: New file.
9556
9557 2005-10-12  Simon Josefsson  <jas@extundo.com>
9558
9559         * modules/gc-sha1: New file.
9560
9561 2005-10-12  Simon Josefsson  <jas@extundo.com>
9562
9563         * modules/gc-pbkdf2-sha1, modules/gc-pbkdf2-sha1-tests: New files.
9564
9565         * tests/test-gc-pbkdf2-sha1.c: New file.
9566
9567 2005-10-12  Simon Josefsson  <jas@extundo.com>
9568
9569         * modules/gc-md5, modules/gc-hmac-md5: New files.
9570
9571         * modules/gc (Files): Remove md5, memxor and hmac files.
9572
9573 2005-10-12  Simon Josefsson  <jas@extundo.com>
9574
9575         * m4/gc-pbkdf2-sha1.m4: New file.
9576
9577         * m4/gc-hmac-sha1.m4: New file.
9578
9579         * m4/gc-sha1: New file.
9580
9581         * m4/hmac-sha1.m4: New file.
9582
9583 2005-10-12  Simon Josefsson  <jas@extundo.com>
9584
9585         * m4/gc-md5.m4, m4/gc-hmac-md5.m4: New files.
9586
9587         * m4/gc.m4: Don't call gl_MD5, gl_MEMXOR or gl_HMAC_MD5.
9588
9589 2005-10-12  Simon Josefsson  <jas@extundo.com>
9590
9591         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Use Gc_rc for return types,
9592         suggested by Bruno Haible <bruno@clisp.org>.
9593
9594 2005-10-12  Simon Josefsson  <jas@extundo.com>
9595
9596         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Support SHA-1.
9597
9598 2005-10-12  Simon Josefsson  <jas@extundo.com>
9599
9600         * lib/gc-pbkdf2-sha1.c: New file.
9601
9602         * lib/gc.h: Add gc_pbkdf2_sha1 prototype.
9603
9604 2005-10-12  Simon Josefsson  <jas@extundo.com>
9605
9606         * lib/gc-libgcrypt.c (gc_hmac_sha1): New function.
9607
9608         * lib/gc-gnulib.c (gc_hmac_sha1): New function.
9609
9610 2005-10-12  Simon Josefsson  <jas@extundo.com>
9611
9612         * lib/gc-gnulib.c: Condition MD5 and HMAC-MD5 use on GC_USE_MD5 and
9613         GC_USE_HMAC_MD5, respectively.
9614
9615         * lib/gc-libgcrypt.c (gc_md5): Fix assert call.
9616         (gc_md5): Fix typo.
9617
9618         * lib/gc.h (gc_hash_buffer): Use gc_hash in prototype.
9619
9620         * lib/gc-libgcrypt.c (gc_hash_buffer): Ditto.
9621
9622         * lib/gc-gnulib.c (gc_hash_buffer): Ditto.
9623
9624 2005-10-12  Bruno Haible  <bruno@clisp.org>
9625
9626         * m4/stdbool.m4 (gl_STDBOOL_H): Define as an alias of AM_STDBOOL_H.
9627         Reported by Stepan Kasal <kasal@ucw.cz>.
9628
9629 2005-10-11  Simon Josefsson  <jas@extundo.com>
9630
9631         * tests/test-crc.c: New file.
9632
9633         * modules/crc, modules/crc-tests: New files.
9634
9635 2005-10-11  Simon Josefsson  <jas@extundo.com>
9636
9637         * m4/crc.m4: New file.
9638
9639 2005-10-11  Simon Josefsson  <jas@extundo.com>
9640
9641         * lib/gc.h: Add gc_hash and gc_hash_buffer.
9642
9643         * lib/gc-gnulib.c (gc_hash_buffer): Add.  Reorder #include's.
9644
9645         * lib/gc-libgcrypt.c (gc_hash_buffer): Add.
9646
9647 2005-10-11  Simon Josefsson  <jas@extundo.com>
9648
9649         * lib/crc.h, lib/crc.c: New files.
9650
9651         * lib/gc.h (gc_hash_buffer): Add doc.
9652
9653 2005-10-11  Bruno Haible  <bruno@clisp.org>
9654
9655         * modules/c-strcasestr: New file.
9656         * MODULES.html.sh (String handling <string.h>): Add c-strcasestr.
9657
9658 2005-10-11  Bruno Haible  <bruno@clisp.org>
9659
9660         * modules/c-strcase: New file.
9661         * MODULES.html.sh (String handling <string.h>): Add c-strcase.
9662
9663 2005-10-11  Bruno Haible  <bruno@clisp.org>
9664
9665         * lib/strcasecmp.c: Include limits.h.
9666         (strcasecmp): Avoid integer overflow on exotic platforms.
9667         * lib/strncasecmp.c: Include limits.h.
9668         (strncasecmp): Avoid integer overflow on exotic platforms.
9669         Reported by Paul Eggert.
9670
9671 2005-10-11  Bruno Haible  <bruno@clisp.org>
9672
9673         * lib/c-strcasestr.h: New file, from GNU gettext.
9674         * lib/c-strcasestr.c: New file, from GNU gettext.
9675
9676 2005-10-11  Bruno Haible  <bruno@clisp.org>
9677
9678         * lib/c-strcase.h: New file, from GNU gettext.
9679         * lib/c-strcasecmp.c: New file, from GNU gettext.
9680         * lib/c-strncasecmp.c: New file, from GNU gettext.
9681
9682 2005-10-10  Paul Eggert  <eggert@cs.ucla.edu>
9683
9684         * modules/mempcpy (License): GPL -> LGPL.
9685         * modules/strchrnul (License): Likewise.
9686         * modules/sysexits (License): Likewise.
9687
9688 2005-10-08  Simon Josefsson  <jas@extundo.com>
9689
9690         * config/srclist.txt: Bug 1423 is closed, but 1439 remains.
9691
9692 2005-10-07  Simon Josefsson  <jas@extundo.com>
9693
9694         * m4/memxor.m4: Remove gl_C_RESTRICT call.
9695
9696 2005-10-06  Simon Josefsson  <jas@extundo.com>
9697
9698         * tests/test-hmac-md5.c: New file.
9699
9700         * modules/hmac-md5-tests: New file.
9701
9702         * modules/hmac-md5: New file.
9703
9704 2005-10-06  Simon Josefsson  <jas@extundo.com>
9705
9706         * m4/hmac-md5.m4: New file.
9707
9708         * m4/memxor.m4: Require gl_C_RESTRICT.
9709
9710 2005-10-06  Simon Josefsson  <jas@extundo.com>
9711
9712         * lib/memxor.c (memxor): Avoid casts and warnings.
9713
9714 2005-10-06  Simon Josefsson  <jas@extundo.com>
9715
9716         * lib/hmac-md5.c: New file.
9717
9718         * lib/hmac.h: New file.
9719
9720 2005-10-06  Paul Eggert  <eggert@cs.ucla.edu>
9721
9722         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check that bool
9723         promotes to int, not unsigned int, to catch the AIX 5.3
9724         compiler bug.
9725
9726 2005-10-05  Simon Josefsson  <jas@extundo.com>
9727
9728         * modules/memxor: New file.
9729
9730         * modules/iconv (Files): Move config.rpath to havelib, it is used
9731         there.
9732
9733         * modules/havelib (Files): Add config.rpath.
9734
9735 2005-10-05  Simon Josefsson  <jas@extundo.com>
9736
9737         * m4/memxor.m4: New file.
9738
9739 2005-10-05  Simon Josefsson  <jas@extundo.com>
9740
9741         * lib/memxor.c (memxor): Fix compiler error.
9742
9743         * lib/md5.h (MD5_DIGEST_SIZE, MD5_BLOCK_SIZE): Add, see also
9744         <http://sourceware.org/bugzilla/show_bug.cgi?id=1423>.
9745
9746         * lib/memxor.h, lib/memxor.c: New files.
9747
9748         * lib/getaddrinfo.h: Don't protect sys/types.h with HAVE_SYS_TYPES_H,
9749         we assume all systems have it, suggested by Jim Meyering
9750         <jim@meyering.net>.  Remove HAVE_SYS_SOCKET_H test too, to see if
9751         any systems lack sys/socket.h; mingw32 is known to lack it, but we
9752         don't support it yet anyway.  Also remove HAVE_NETDB_H test, for
9753         same reasons.
9754
9755 2005-10-05  Simon Josefsson  <jas@extundo.com>
9756
9757         * config/srclist.txt: Add glibc bug 1423 for md5.h.
9758
9759 2005-10-05  Paul Eggert  <eggert@cs.ucla.edu>
9760
9761         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Don't check for
9762         sys/socket.h, netdb.h, sys/types.h; the checks areno longer
9763         needed, since the source code now assumes these .h files.
9764
9765 2005-10-05  Derek Price  <derek@ximbiot.com>
9766
9767         * lib/getdelim.c (SIZE_MAX): New macro, if not already defined.
9768
9769 2005-10-05  Bruno Haible  <bruno@clisp.org>
9770
9771         * modules/stdint (License): Change to LGPL.
9772
9773 2005-10-04  Simon Josefsson  <jas@extundo.com>
9774
9775         * lib/getaddrinfo.h: Move sys/types.h include first, reported by "Mark
9776         D. Baushke" <mdb@gnu.org>.
9777
9778 2005-10-04  Bruno Haible  <bruno@clisp.org>
9779
9780         * lib/verify.h (verify_true): Provide alternative definition for C++.
9781
9782 2005-10-03  Paul Eggert  <eggert@cs.ucla.edu>
9783
9784         * lib/getdelim.c: Include getdelim.h first.  Include <limits.h>.
9785         (SSIZE_MAX): New macro, if not already defined.
9786         (getdelim): Fix buffer overrun on 64-bit hosts with lines longer
9787         than 2 GiB.
9788
9789 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
9790
9791         Sync from coreutils.
9792         * m4/openat.m4 (gl_FUNC_OPENAT): Check for fdopendir.
9793         * m4/ullong_max.m4 (gl_ULLONG_MAX): Simplify so that it merely
9794         defines ULONG_MAX_LT_ULLONG_MAX.  Thomas M.Ott reports that
9795         ULLONG_MAX doesn't work with 2.7.2.1.
9796
9797 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
9798
9799         * modules/xreadlink (Makefile.am): Remove lib_SOURCES.
9800         From Ben Pfaff.
9801
9802         * modules/exclude (Depends-on): Depend on verify.
9803         * modules/strtoimax (Depends-on): Likewise.
9804         * modules/utimecmp (Depends-on): Likewise.
9805
9806 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
9807
9808         * lib/exclude.c: Include verify.h.
9809         (verify): Remove.  All callers changed to use verify.h's version.
9810         * lib/strtoimax.c: Likewise.
9811         * lib/utimecmp.c: Likewis.e
9812
9813         Sync from coreutils.
9814         * lib/.cppi-disable: Add getaddrinfo.h, getdelim.h, getline.h,
9815         getpass.c, mbchar.h, mbuiter.h, strcase.h, strnlen.h, strnlen1.h.
9816         * lib/.cvsignore: Add fts.h, search.h, t-fpending.
9817         * lib/settime.c (settime): Fix { typo in previous patch.  Also, don't
9818         bother returning ENOSYS if settimeofday or stime fails; just let
9819         them return whatever errno they want to return.
9820         * lib/utimens.c: Include unistd.h, for dup2.
9821         (futimens): Fix typo: HAVE_FUTIMESAT was misspelled in an #if.
9822         (futimens) [! HAVE_FUTIMESAT]: If !file, set errno before returning -1.
9823
9824 2005-10-02  Jim Meyering  <jim@meyering.net>
9825
9826         Sync from coreutils.
9827         * m4/utimes.m4 (gl_FUNC_UTIMES): Detect the version of utimes
9828         from glibc-2.2.5 that fails for read-only files.
9829
9830 2005-10-02  Jim Meyering  <jim@meyering.net>
9831
9832         Sync from coreutils.
9833         * lib/fts-cycle.c [HAVE_CONFIG_H]: Include <config.h>.
9834         * lib/openat-die.c: Use `#ifdef HAVE_CONFIG_H', not
9835         `#if HAVE_CONFIG_H'.
9836         * lib/openat.c (fdopendir): Do not define if HAVE_FDOPENDIR.
9837         Remove AT_FDCWD test.
9838         Do not consume the fd unless successful.
9839         * lib/openat.h (fdopendir): Do not define if HAVE_FDOPENDIR.
9840         * lib/settime.c (settime): Move the HAVE_STIME block `up' into an #elif
9841         block, so that we don't even try to compile it if settimeofday is
9842         available.  This works around a compilation failure on OSF1 V5.1,
9843         due to stime requiring a `long int*' while tv_sec is `int'.
9844
9845 2005-10-02  Alfred M. Szmidt  <ams@gnu.org>
9846
9847         Sync from coreutils.
9848         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Compare $gl_have_path...
9849         against `yes', rather than just testing for nonempty.
9850
9851 2005-10-01  Simon Josefsson  <jas@extundo.com>
9852
9853         * m4/getaddrinfo.m4: Include sys/types.h for sys/socket.h, on FreeBSD
9854         and Darwin.
9855
9856         * m4/getaddrinfo.m4: Use AC_GNU_SOURCE, GNU only declare getaddrinfo
9857         as an (POSIX) extension.  Check for sys/types.h, sys/socket.h, and
9858         netdb.h too, needed by getaddrinfo.h.  Check if getaddrinfo,
9859         freeaddrinfo and gai_strerror are declared by the POSIX headers.
9860         Check if struct addrinfo is declared.
9861
9862 2005-10-01  Simon Josefsson  <jas@extundo.com>
9863
9864         * lib/getaddrinfo.h: Protect #include's of sys/socket.h and netdb.h.
9865         Only define struct addrinfo if !HAVE_STRUCT_ADDRINFO.  Protect
9866         AI_* and EAI_* definitions.  Protect function declarations.
9867
9868 2005-10-01  Jim Meyering  <jim@meyering.net>
9869
9870         Sync from coreutils.
9871
9872         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Look for getservbyname in these
9873         libraries [inet nsl socket xnet].  Nelson Beebe reported that with
9874         native cc on Solaris 7, getaddrinfo.c requires -lsocket.
9875         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Check for gethostbyname
9876         in the inet and nsl libraries.  Required on Solaris 5.7.
9877
9878 2005-10-01  Jim Meyering  <jim@meyering.net>
9879
9880         Sync from coreutils.
9881         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Check for gethostbyname
9882         in the inet and nsl libraries.  Required on Solaris 5.7.
9883
9884 2005-10-01  Eric Blake  <ebb9@byu.net>  (tiny change)
9885
9886         * lib/getdelim.c (getdelim): Remove unused variables.
9887
9888 2005-09-29  Paul Eggert  <eggert@cs.ucla.edu>
9889
9890         * lib/xtime.h (XTIME_PRECISION): Now of type int, not long long int,
9891         so that the code works even with ancient cpp.  Portability problem
9892         with GCC 2.7.2.1 reported by Thomas M.Ott.
9893
9894 2005-09-27  Paul Eggert  <eggert@cs.ucla.edu>
9895
9896         * modules/regex (Depends-on): Add strcase.
9897
9898         * modules/gethostname (Licence): Change from GPL to LGPL, since
9899         gethostname.c is a trivial implementation of a standard library
9900         function.
9901         * modules/poll (License): Change from GPL to LGPL, since it's
9902         derived from LGPL code.
9903
9904 2005-09-27  Jim Meyering  <jim@meyering.net>
9905
9906         * lib/getcwd.c: Change #ifdef<TAB>HAVE_CONFIG_H to #ifdef
9907         HAVE_CONFIG_H.
9908
9909         * lib/intprops.h (signed_type_or_expr__): Define.
9910         (INT_STRLEN_BOUND) [__GNUC__]: Use a slightly tighter bound
9911         for unsigned types.
9912
9913 2005-09-26  Paul Eggert  <eggert@cs.ucla.edu>
9914
9915         * lib/verify.h (verify_expr): Remove, replacing with:
9916         (verify_true): New macro that returns true instead of void.
9917         (verify_type__): Remove.
9918         (verify): Use verify_true rather than verify_type__.
9919
9920 2005-09-26  Bruno Haible  <bruno@clisp.org>
9921
9922         * modules/mbchar (Include): Mention that HAVE_WCHAR_H && HAVE_WCTYPE_H
9923         is necessary.
9924         (lib_SOURCES): Remove mbchar.c.
9925         * modules/mbfile (Include): Mention that HAVE_MBRTOWC is necessary.
9926         (Files): Add m4/mbrtowc.m4.
9927         * modules/mbiter: Likewise.
9928         * modules/mbuiter: Likewise.
9929
9930 2005-09-26  Bruno Haible  <bruno@clisp.org>
9931
9932         * m4/mbchar.m4 (gl_MBCHAR): Check for wchar.h and wctype.h. Don't
9933         compile mbchar.c if they are not both present.
9934         * m4/mbfile.m4 (gl_MBFILE): Require gl_FUNC_MBRTOWC.
9935         * m4/mbiter.m4 (gl_MBITER): Likewise.
9936         * m4/strstr.m4 (gl_PREREQ_STRSTR): Use AC_REQUIRE.
9937         * m4/strcasestr.m4 (gl_PREREQ_STRCASESTR): Likewise.
9938         * m4/strcase.m4 (gl_PREREQ_STRCASECMP): Likewise.
9939
9940 2005-09-25  Jim Meyering  <jim@meyering.net>
9941
9942         * modules/inet_ntop (Depends-on): Add socklen, since inet_ntop.c
9943         also uses socklen_t.
9944
9945 2005-09-24  Paul Eggert  <eggert@cs.ucla.edu>
9946
9947         * lib/utimens.c (ENOSYS): Define if not already defined.
9948         (futimens): Support having a null PATH if the file descriptor
9949         is nonnegative.
9950
9951         * lib/regex_internal.h (__GNUC_PREREQ, always_inline, inline, pure):
9952         Remove.
9953         (__attribute): Define to empty unless GCC 3.1 or later.
9954         This works around a core dump on OpenBSD 3.4, which has GCC
9955         2.95.3, which dumps core when given __attribute__(()).  It also
9956         simplifies other tests, since we really don't want to bother with
9957         worrying about which ancient version of GCC supported what.
9958         Original problem reported by Yoann Vandoorselaere, with part of
9959         the fix suggested by Derek Price.
9960
9961 2005-09-24  Jim Meyering  <jim@meyering.net>
9962
9963         * lib/verify.h (verify_type__): Use `unsigned int' as the bitfield type
9964         so we can once again use a positive bitfield width of 1 -- now we
9965         don't have to explain why we were using a bitfield width of 2.
9966
9967 2005-09-23  Paul Eggert  <eggert@cs.ucla.edu>
9968
9969         * m4/regex.m4 (gl_REGEX): If replacing, define regcomp to rpl_regcomp,
9970         and similarly for the other external symbols.  Problem reported
9971         by James Gallager.
9972
9973         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Catch Sun Studio 10u1 on Linux
9974         bug reported by Jim Meyering.
9975
9976         * m4/utimens.m4 (gl_UTIMENS): Check for futimesat.
9977         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Undo previous change;
9978         not needed, since socklen is a prerequisite module.
9979
9980 2005-09-23  Paul Eggert  <eggert@cs.ucla.edu>
9981
9982         * lib/getaddrinfo.c [HAVE_NETINET_IN_H]: Include <netinet/in.h>.
9983         Problem reported by Eric Blake.
9984         (getaddrinfo): Initialize se so that it's not garbage.
9985         Redo internal storage allocation so that it doesn't make unportable
9986         assumptions about alignment.
9987         Fix a memory leak.
9988
9989         * lib/utimens.c (futimens): Use futimesat if available.
9990         Prefer it to futimes since it doesn't have the futimes bug.
9991
9992         * lib/verify.h (GL_CONCAT0, GL_CONCAT): Remove.
9993         (verify): Don't use the __LINE__ trick, as it doesn't work in general.
9994         Instead, declare a function that returns a pointer to an array,
9995         and use verify_type__ to declare the size of the array.
9996         Problem and germ of a solution reported by Bruno Haible.
9997         (verify_type__): Use 2, not 1, for bitfield size, to avoid
9998         a warning with Irix 6.5 cc.  Problem reported by Bruno Haible.
9999
10000 2005-09-23  Jim Meyering  <jim@meyering.net>
10001
10002         Sync from coreutils.
10003         Correct build failure (socklen_t not defined) on at least
10004         mips-sgi-irix6.5 and alphaev67-dec-osf5.1.
10005         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Require gl_SOCKLEN_T.
10006
10007 2005-09-23  Jim Meyering  <jim@meyering.net>
10008
10009         * modules/getaddrinfo (Depends-on): Add socklen.
10010
10011 2005-09-23  Bruno Haible  <bruno@clisp.org>
10012
10013         * tests/test-verify.c: New file.
10014
10015 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
10016
10017         Sync from coreutils.
10018
10019         * modules/argmatch (Depends-on): Add verify.
10020         * modules/getloadavg (Depends-on): Depend on fcntl-safer, not
10021         unistd-safer.
10022         * modules/save-cwd (Depends-on): Likewise.
10023
10024         * modules/openat (Files): Add lib/openat-die.c.
10025         (Depends-on): Remove error, exitfail.
10026         Add dirname.
10027
10028         * modules/verify: New file.
10029         * MODULES.html.sh (Diagnostics <assert.h>): New section,
10030         with "verify" module.
10031
10032 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
10033
10034         Sync from coreutils.
10035
10036         * m4/backupfile.m4, calloc.m4, chown.m4, cloexec.m4, dup2.m4:
10037         * m4/fileblocks.m4, free.m4, ftruncate.m4, getcwd.m4, getpagesize.m4:
10038         * m4/getugroups.m4, group-member.m4, idcache.m4, link-follow.m4:
10039         * m4/mkstemp.m4, mktime.m4, mountlist.m4, nanosleep.m4, pathmax.m4:
10040         * m4/physmem.m4, posixver.m4, putenv.m4, safe-read.m4, same.m4:
10041         * m4/save-cwd.m4, stdio-safer.m4, unistd-safer.m4, unlinkdir.m4:
10042         * m4/userspec.m4, xgetcwd.m4, xreadlink.m4:
10043         Don't bother checking for string.h, stdlib.h, unistd.h.
10044         * m4/fts.m4 (gl_FUNC_FTS_CORE): Don't require
10045         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK; that's now the lstat
10046         module's job.
10047         * m4/jm-macros.m4 (gl_MACROS): Likewise.
10048         * m4/prereq.m4 (gl_PREREQ): Add gl_FUNC_LSTAT.
10049
10050         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): New macro.
10051         (gl_GETDATE): Use it.
10052
10053         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Don't bother checking for unistd.h.
10054
10055 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
10056
10057         Sync from coreutils.
10058
10059         * lib/.cppi-disable: Add regcomp.c, regex_internal.c, regex_internal.h,
10060         stat-time.h.
10061         * lib/argmatch.h: Include verify.h
10062         (ARGMATCH_VERIFY): Use verify rather than rolling our own.
10063         (ARGMATCH_ASSERT): Remove; unused.
10064         * lib/canonicalize.c: Assume STDC_HEADERS.
10065         * lib/exclude.c: Include "strcase.h".
10066         * lib/regex_internal.h [!defined _LIBC]: Likewise.
10067         * lib/getusershell.c: Include stdio--.h rather than stdio.h
10068         and stdio-safer.h.
10069         (getusershell): Call fopen, not fopen_safer.
10070         * lib/save-cwd.c: Include fcntl--.h rather than fcntl.h.
10071         Do not include unistd-safer.h.
10072         (save_cwd): Don't call fd_safer; no longer needed
10073         now that we include fcntl--.h.
10074
10075         * lib/getdate.y (relative_time): New type.
10076         (RELATIVE_TIME_0): New constant.
10077         (parser_control): Use relative_time instead of doing it ourselves.
10078         (%union): Add new relative_time rel member.
10079         (tYEAR_UNIT, tMONTH_UNIT, tHOUR_UNIT, tMINUTE_UNIT, tSEC_UNIT):
10080         Now typeless.
10081         (relunit, relunit_snumber): Now of type rel.
10082         (zone, rel, relunit, get_date): Adjust to above changes.
10083
10084         * lib/getloadavg.c: Include fcntl--.h rather than fcntl.h.
10085         Do not include unistd-safer.h.
10086         (getloadavg): Don't call fd_safer; no longer needed
10087         now that we include fcntl--.h.
10088
10089         * lib/mkdir-p.c (ENOSYS): Define to EEXIST if not defined.
10090         (make_dir_parents): Treat ENOSYS like EEXIST.
10091
10092         Improve quality of diagnostics on restore_cwd failure.
10093         * lib/mkdir-p.h (make_dir): Remove.  All uses replaced by mkdir.
10094         (make_dir_parents): Last arg is now int * (for errno), not bool *.
10095         * lib/mkdir-p.c (make_dir, make_dir_parents): Likewise.
10096         Rewrite "mkdir -p" algorithm to avoid the need for "stat"
10097         each time through the loop.  Do not diagnose restore_cwd failure;
10098         that is the caller's job (and perhaps the caller does not care).
10099
10100         * lib/mkdir-p.c (CLEANUP_CWD, CLEANUP): Remove.
10101         (make_dir_parents): Revamp to avoid need for CLEANUP_CWD, CLEANUP.
10102         If the file already exists but is not a directory, don't bother
10103         to try to make its parents.
10104         Close potential file descriptor leak if we can't chdir("/") (!).
10105         Don't always return true if chdir($PWD) fails; return true only
10106         if the requested action was done successfully (except for the
10107         chdir($PWD)).
10108         Don't log final directory unless we actually made it.
10109         Refactor to avoid duplicate code to fix up permissions.
10110         Don't attempt to fix up parent permissions if chdir($PWD) fails.
10111
10112         * lib/strftime.c (my_strftime): Rewrite the previous change slightly,
10113         to make it a bit faster and (I hope) clearer.
10114         * lib/strftime.c (my_strftime): Add support for %:z, %::z, %:::z.
10115         Fix bug in formats like %2N.
10116
10117         * lib/verify.h: New file.
10118
10119 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
10120
10121         Sync from coreutils.
10122         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Check for netinet/in.h.
10123
10124 2005-09-22  Jim Meyering  <jim@meyering.net>
10125
10126         Sync from coreutils.
10127
10128         * m4/lstat.m4 (gl_FUNC_LSTAT):
10129         Use AC_LIBSOURCES to require lstat.c and lstat.h.
10130         Remove obsolete comment.
10131         * m4/xreadlink.m4: Use AC_LIBSOURCES and AC_LIBOBJ.
10132         * m4/xstrtod.m4: Likewise.
10133
10134         * m4/openat.m4 (gl_FUNC_OPENAT): Add openat-die.c.
10135
10136 2005-09-22  Jim Meyering  <jim@meyering.net>
10137
10138         Sync from coreutils.
10139
10140         * lib/backupfile.c: Use ARGMATCH_VERIFY, just in case.
10141
10142         * lib/posixtm.c (posixtime) [lint]: Initialize *all* of tm0, not just
10143         the .tm_year member, since otherwise gcc-4.0 would now warn about
10144         tm_zone, tm_gmtoff, tm_isdst, tm_yday, tm_wday.
10145
10146         * lib/quotearg.c (quotearg_n_options): Change code to be suboptimal, in
10147         order to avoid an unsuppressible warning from gcc on 64-bit systems.
10148
10149         * lib/getdate.y (get_date): Undo part of the 2005-04-04 change, so that
10150         the command "date -d'2005-03-27 +1 day'" succeeds once again, even
10151         when run in a time zone for which daylight savings time is in effect
10152         for the starting date.
10153
10154         * lib/mkdir-p.c (make_dir_parents): Don't let a failed chdir($PWD)
10155         stop us from restricting permissions of just-created absolute-named
10156         directories.
10157         * lib/mkdir-p.c (CLEANUP_CWD): Return *true*, not false when failing
10158         to restore initial working directory.
10159         * lib/mkdir-p.c (make_dir_parents): New parameter:
10160         different_working_dir, to tell caller if/when we change the working
10161         directory and are unable to return to the initial one.
10162         * lib/mkdir-p.h (make_dir_parents): Update prototype.
10163         * lib/mkdir-p.c (CLEANUP_CWD): Change one more `return 1' to
10164         `return false'.  This fixes a bug introduced on 2004-07-30.
10165
10166         * lib/openat.c (fdopendir): Be sure to close the supplied
10167         file descriptor before returning.  This makes our replacement
10168         implementation a little closer to Solaris's, where fdopendir
10169         ties the file descriptor to the returned DIR* pointer.
10170         * lib/openat.c (unlinkat): New function.
10171         * lib/openat.h (unlinkat): Add prototype.
10172         * lib/openat-die.c (openat_save_fail): Rename from openat_save_die.
10173         (openat_restore_fail): Rename from openat_restore_die.
10174         * lib/openat.c, openat.h: Reflect s/_die/_fail/ renaming.
10175
10176         Provide an alternative to exiting immediately upon save_cwd or
10177         restore_cwd failure.  Now, an application can arrange e.g.,
10178         to perform a longjump in that case.
10179         * lib/openat.c: Include dirname.h.
10180         Use IS_ABSOLUTE_FILE_NAME rather than testing for leading slash.
10181         (rpl_openat, fdopendir, fstatat): Call openat_save_die
10182         and openat_restore_die rather than calling error directly.
10183         Don't include "error.h" or "exitfail.h"; they're no longer needed.
10184
10185         * lib/openat-die.c (openat_save_die, openat_restore_die): New file.
10186         * lib/openat.h (openat_save_die, openat_restore_die): Declare and
10187         define.
10188
10189         * lib/strftime.c [FPRINTFTIME] (fprintftime): Provide a new interface:
10190         size_t fprintftime (FILE *fp, char const *fmt, struct tm const *tm,
10191                             int utc, int nanoseconds);
10192         Background:
10193         date should not have to allocate a megabyte of virtual memory to
10194         handle a format argument like +%1048575T.  When implemented with
10195         strftime, it must allocate such a buffer, use strftime to fill it
10196         in, print it, then free it.
10197         With fprintftime, it simply prints everything and exits.
10198         With no need for memory allocation, that's one fewer way to fail.
10199         * lib/strftime.c (my_strftime): Parse the colons of %:::z *after* the
10200         optional field width, not before, so we accept %9:z, not %:9z.
10201         (my_strftime): Be sure to use L_('x') for literals.
10202
10203         * lib/backupfile.c, lib/canon-host.c, lib/canonicalize.c, lib/chown.c:
10204         * lib/cloexec.c, lib/dup-safer.c, lib/dup2.c, lib/euidaccess.c:
10205         * lib/fd-safer.c, lib/fileblocks.c, lib/fopen-safer.c, lib/fsusage.c:
10206         * lib/ftruncate.c, lib/getcwd.c, lib/getcwd.h, lib/getloadavg.c:
10207         * lib/getopt_.h, lib/getpagesize.h, lib/getugroups.c:
10208         * lib/group-member.c, lib/human.h, lib/idcache.c, lib/mkdir-p.c:
10209         * lib/mountlist.c, lib/nanosleep.c, lib/pathmax.h, lib/physmem.c:
10210         * lib/posixver.c, lib/putenv.c, lib/raise.c, lib/safe-read.c:
10211         * lib/same.c, lib/save-cwd.c, lib/setenv.c, lib/settime.c:
10212         * lib/tempname.c, lib/unlinkdir.c, lib/unsetenv.c, lib/userspec.c:
10213         * lib/xgethostname.c, lib/xreadlink.c:
10214         Assume HAVE_UNISTD_H, i.e., include <unistd.h> unconditionally.
10215
10216         * lib/chown.c, lib/cloexec.c, lib/dup-safer.c, lib/dup2.c:
10217         * lib/fsusage.c, lib/getcwd.c, lib/getloadavg.c, lib/mountlist.c:
10218         * lib/openat.h, lib/save-cwd.c, lib/tempname.c:
10219         Assume HAVE_FCNTL_H (i.e., include <fcntl.h> unconditionally,
10220         and don't include <sys/file.h>).
10221
10222 2005-09-22  Eric Blake  <ebb9@byu.net>  (tiny change)
10223
10224         Sync from coreutils.
10225
10226         * lib/getloadavg.c (getloadavg) [__CYGWIN__]: Port to cygwin.
10227         [__linux__]: Allocate a big enough buffer for /proc/loadavg.
10228         [!LDAV_DONE]: Avoid unused variable warning.
10229
10230 2005-09-21  Bruno Haible  <bruno@clisp.org>
10231
10232         * lib/unicodeio.h (unicode_to_mb): New declaration.
10233
10234 2005-09-20  Derek Price  <derek@ximbiot.com>
10235
10236         * lib/getaddrinfo.c: Don't include <netdb.h> included from
10237         getaddrinfo.h.
10238
10239 2005-09-20  Bruno Haible  <bruno@clisp.org>
10240
10241         * gnulib-tool: Remove trailing slashes from the values specified for
10242         --source-base, --m4-base, --tests-base, --aux-dir.
10243         Suggested by Simon Josefsson <jas@extundo.com>.
10244
10245 2005-09-20  Bruno Haible  <bruno@clisp.org>
10246
10247         * gnulib-tool (func_all_modules, func_modules_transitive_closure,
10248         func_modules_to_filelist, func_import, func_create_testdir): Make all
10249         sorting results locale-independent, so that gnulib-cache.m4 doesn't
10250         change when gnulib-tool is invoked in a different locale.
10251
10252 2005-09-19  Simon Josefsson  <jas@extundo.com>
10253
10254         * m4/socklen.m4: Fix typo.
10255
10256 2005-09-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
10257
10258         Use a consistent style for including <config.h>.
10259         * lib/__fpending.c, lib/acl.c, lib/argmatch.c, lib/argp-help.c,
10260         lib/argp-parse.c, lib/argp-pvh.c, lib/backupfile.c, lib/basename.c,
10261         lib/c-stack.c, lib/calloc.c, lib/check-version.c, lib/cloexec.c,
10262         lib/closeout.c, lib/copy-file.c, lib/creat-safer.c, lib/cycle-check.c,
10263         lib/dirfd.c, lib/dirname.c, lib/dup-safer.c, lib/dup2.c,
10264         lib/euidaccess.c, lib/exclude.c, lib/exitfail.c, lib/fatal-signal.c,
10265         lib/fd-safer.c, lib/file-type.c, lib/fileblocks.c, lib/filemode.c,
10266         lib/filenamecat.c, lib/findprog.c, lib/fnmatch.c, lib/fopen-safer.c,
10267         lib/free.c, lib/fsusage.c, lib/ftruncate.c, lib/full-write.c,
10268         lib/fwriteerror.c, lib/getaddrinfo.c, lib/getcwd.c, lib/getdelim.c,
10269         lib/getline.c, lib/getlogin_r.c, lib/getndelim2.c, lib/getnline.c,
10270         lib/getopt1.c, lib/getpass.c, lib/group-member.c, lib/hard-locale.c,
10271         lib/hash-pjw.c, lib/hash.c, lib/human.c, lib/idcache.c,
10272         lib/inet_ntop.c, lib/isdir.c, lib/long-options.c, lib/malloc.c,
10273         lib/memcasecmp.c, lib/memcmp.c, lib/memcoll.c, lib/memcpy.c,
10274         lib/memmove.c, lib/mkdir-p.c, lib/modechange.c, lib/mountlist.c,
10275         lib/open-safer.c, lib/physmem.c, lib/pipe-safer.c, lib/pipe.c,
10276         lib/poll.c, lib/posixver.c, lib/progname.c, lib/progreloc.c,
10277         lib/putenv.c, lib/quote.c, lib/quotearg.c, lib/readline.c,
10278         lib/readlink.c, lib/realloc.c, lib/regex.c, lib/rename.c, lib/rmdir.c,
10279         lib/rpmatch.c, lib/safe-read.c, lib/same.c, lib/save-cwd.c,
10280         lib/savedir.c, lib/sig2str.c, lib/strcspn.c, lib/strerror.c,
10281         lib/stripslash.c, lib/strncasecmp.c, lib/strndup.c, lib/strnlen.c,
10282         lib/strnlen1.c, lib/strsep.c, lib/strstr.c, lib/strtod.c,
10283         lib/strtoimax.c, lib/strtol.c, lib/strverscmp.c, lib/tempname.c,
10284         lib/time_r.c, lib/userspec.c, lib/utimecmp.c, lib/version-etc-fsf.c,
10285         lib/version-etc.c, lib/wait-process.c, lib/xalloc-die.c, lib/xgetcwd.c,
10286         lib/xmalloc.c, lib/xmemcoll.c, lib/xnanosleep.c, lib/xreadlink.c,
10287         lib/xsetenv.c, lib/xstrndup.c, lib/xstrtoimax.c, lib/xstrtol.c,
10288         lib/xstrtoumax.c, lib/yesno.c:
10289         Standardize inclusion of config.h.
10290         * lib/__fpending.h, lib/dirfd.h, lib/getdate.h, lib/human.h,
10291         lib/inttostr.h:  Removed inclusion of config.h from header files.
10292         * lib/inttostr.c:  Adjusted in-tree users.
10293         * lib/timespec.h: Remove superfluous warning to include config.h.
10294         * lib/atexit.c, lib/chdir-long.c, lib/chown.c, lib/fchown-stub.c,
10295         lib/getgroups.c, lib/gettimeofday.c, lib/lchown.c, lib/lstat.c,
10296         lib/mkdir.c, lib/mkstemp.c, lib/nanosleep.c, lib/openat.c, lib/raise.c,
10297         lib/readtokens0.c, lib/readutmp.c, lib/unlinkdir.c: Guard inclusion of
10298         config.h with HAVE_CONFIG_H.
10299
10300 2005-09-19  Jim Meyering  <jim@meyering.net>
10301
10302         * modules/pathmax (License): Change to LGPL.
10303
10304 2005-09-19  Derek Price  <derek@ximbiot.com>
10305
10306         * config/srclist.txt: glibc's glob.h is now in lib/glob-libc.h.
10307
10308 2005-09-19  Bruno Haible  <bruno@clisp.org>
10309
10310         * gnulib-tool (import): Provide default for --tests-base.
10311
10312 2005-09-19  Bruno Haible  <bruno@clisp.org>
10313
10314         * doc/quote.texi: New file, extracted from gnulib.texi.
10315         * doc/ctime.texi: New file, extracted from gnulib.texi.
10316         * doc/inet_ntoa.texi: New file, extracted from gnulib.texi.
10317         * doc/gnulib-tool.texi: New file, extracted from gnulib.texi.
10318         * doc/gnulib.texi: Include them.
10319
10320 2005-09-18  Bruno Haible  <bruno@clisp.org>
10321
10322         Portability fix.
10323         * gnulib-tool (func_readlink): New function.
10324         (func_ln_if_changed): Use it.
10325
10326 2005-09-18  Bruno Haible  <bruno@clisp.org>
10327
10328         * gnulib-tool: Support --with-tests also with --import.
10329         (func_emit_tests_Makefile_am): Use variables $m4base and $testsbase.
10330         (func_import): Use variables $testsbase and $inctests. Emit a
10331         gl_TESTS_BASE form into gnulib-cache.m4. Create $testsbase/Makefile.am.
10332         Remind the user to add AC_CONFIG_FILES($testsdir/Makefile) and
10333         SUBDIRS += $testsdir.
10334         (func_create_testdir): Update.
10335
10336 2005-09-18  Bruno Haible  <bruno@clisp.org>
10337
10338         * gnulib-tool: Revise --dry-run implementation. Use variable $doit
10339         instead of $dry_run.
10340         (func_cp_if_changed, func_mv_if_changed): Remove functions.
10341         (func_ln_if_changed): Don't handle dry-run here.
10342         (func_import): In dry-run mode, detect more precisely which actions
10343         would be performed, and don't use "...ing" verbs.
10344
10345 2005-09-18  Bruno Haible  <bruno@clisp.org>
10346
10347         * gnulib-tool (func_tmpdir): New function, taken from GNU gettextize.
10348         (func_import): Use join on two temporary files instead of three nested
10349         loops, in order to determine which files are new or old.
10350
10351 2005-09-18  Bruno Haible  <bruno@clisp.org>
10352
10353         * gnulib-tool (func_import): Comment out code that spits out the
10354         new files with --dry-run.
10355
10356 2005-09-18  Bruno Haible  <bruno@clisp.org>
10357
10358         * doc/gnulib.texi (Invoking gnulib-tool): 50% rewritten.
10359
10360 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
10361
10362         * lib/stat-time.h: New file.
10363         * lib/timespec.h (ST_TIME_CMP_NS, ST_TIME_CMP, ATIME_CMP, CTIME_CMP):
10364         (MTIME_CMP, TIMESPEC_NS): Remove.  Now done by stat-time.h,
10365         in a different way.
10366         (timespec_cmp): New function.
10367         * lib/utimecmp.c: Include stat-time.h.
10368         (SYSCALL_RESOLUTION): Depend on whether various struct stat
10369         members exist, not on the obsolescent ST_MTIM_NSEC.
10370         (utimecmp): Use the new stat-time functions rater than TIMESPEC_NS.
10371
10372 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
10373
10374         * config/srclist.txt: Remove glibc bug 1033 and uncomment mktime.c.
10375
10376 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
10377
10378         * MODULES.html.sh (File system functions): Add stat-time.
10379         * modules/stat-time: New file.
10380         * modules/timespec (Files): Remove m4/st_mtim.m4; this
10381         is now done in a different way, by the stat-time module.
10382         * modules/utimecmp (Depends-on): Add stat-time.
10383
10384 2005-09-15  Paul Eggert  <eggert@cs.ucla.edu>
10385
10386         * m4/st_mtim.m4: Remove.  Superseded by...
10387         * m4/stat-time.m4: New file.
10388         * m4/timespec.m4 (gl_TIMESPEC): Require AC_C_INLINE.
10389         Do not invoke AC_STRUCT_ST_MTIM_NSEC; no longer needed.
10390
10391 2005-09-15  Derek Price  <derek@ximbiot.com>
10392
10393         * m4/strstr.m4 (gl_FUNC_STRSTR): Don't define strstr here.
10394
10395 2005-09-15  Derek Price  <derek@ximbiot.com>
10396
10397         * lib/regex_internal.h: Blank `pure' for GNUC < 3.
10398         * lib/regex_internal.c: Ditto, using this...
10399         (__GNUC_PREREQ): ...new macro.
10400         * lib/regcomp.c, regexec.c: Blank `always_inline' for GNUC < 3.1
10401         using...
10402         (__GNUC_PREREQ): ...this new macro.
10403
10404         * lib/strstr.h: Include string.h. Define strstr as a macro here.
10405
10406 2005-09-15  Derek Price  <derek@ximbiot.com>
10407             Paul Eggert  <eggert@cs.ucla.edu>
10408
10409         * lib/regcomp.c, regexec.c, regex_internal.c: Back out previous
10410         changes, consolidating in...
10411         * lib/regex_internal.h: ...this file.
10412
10413 2005-09-13  Jim Meyering  <jim@meyering.net>
10414
10415         * lib/canon-host.c: Filter through gnu indent and reword comments
10416         slightly.
10417         * lib/canon-host.h (ch_strerror_r): Tweak cpp indentation and spacing.
10418
10419 2005-09-13  Derek Price  <derek@ximbiot.com>
10420
10421         * lib/canon-host.c (canon_host_r): Set *cherror on memory allocation
10422         failure.
10423         Reported by Jim Meyering  <jim@meyering.net>.
10424
10425 2005-09-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
10426
10427         * lib/base64.c: Typo.
10428         (base64_encode): Put b64str in initialized data section.
10429
10430 2005-09-12  Paul Eggert  <eggert@cs.ucla.edu>
10431
10432         Merge glibc and coreutils changes into gnulib, plus a few
10433         extra fixes.
10434         * lib/md5.c: Use #error rather than a string.
10435         (CYCLIC): New macro, from glibc source.  Use it instead of rol.
10436         * lib/md5.h (__GNUC_PREREQ, __THROW): Define if not defined already.
10437         (__attribute__): Define to empty for non recent-GCC.
10438         (__md5_buffer, __md5_finish_ctx, __md5_init_ctx, __md5_process_block):
10439         (__md5_process_bytes, __md5_read_ctx, __md5_stream):
10440         Renamed from their non-__ counterparts, with new macros replacing
10441         them if not _LIBC.  Add __THROW attribute.
10442         (rol): Remove.
10443         (struct md5_ctx): Align buffer if using GCC.
10444         * lib/sha1.h (struct sha1_ctx): Likewise.
10445         * lib/sha1.c (SWAP): Renamed from the NOTSWAP.  All uses changed.
10446         The old name was backwards.
10447         (NOTSWAP): Remove; not used.
10448         (rol): New macro, moved here from md5.h.
10449         (sha1_process_block): Remove a FIXME that doesn't make sense.
10450
10451 2005-09-12  Derek Price  <derek@ximbiot.com>
10452
10453         Return usable errors from canon-host.
10454         * lib/canon-host.h: New file.
10455         * lib/canon-host.c (canon_host): Wrap...
10456         (canon_host_r): ...this new function, which now relies exclusively on
10457         getaddrinfo.
10458         (ch_strerror): New function.
10459         (last_cherror): New global.
10460         * lib/getaddrinfo.c: Move include of getaddrinfo.h first to test
10461         interface.
10462         (getaddrinfo): Add AI_CANONNAME functionality.  Don't do arithmetic on
10463         void *.
10464         (freeaddrinfo): Free ai->ai_canonname when set.
10465
10466 2005-09-12  Derek Price  <derek@ximbiot.com>
10467
10468         Make canon-host require getaddrinfo.
10469         * m4/canon-host.m4 (gl_CANON_HOST): Remove most dependencies.
10470         AC_LIBSOURCE canon-host.h.  Call...
10471         (gl_PREREQ_CANON_HOST): ...this new function, which requires
10472         gl_GETADDRINFO.
10473         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Compile gai_strerror when needed.
10474
10475 2005-09-12  Derek Price  <derek@ximbiot.com>
10476
10477         * modules/canon-host: Add canon-host.h.  Depend on getaddrinfo.  Make
10478         LGPL.
10479         * modules/getaddrinfo: Add link to opengroup spec.  Depend on strdup.
10480
10481 2005-09-12  Derek Price  <derek@ximbiot.com>
10482
10483         * lib/gai_strerror.c: Include config.h when available.  Include
10484         getaddrinfo.h before other headers to test interface.
10485         Reported by Larry Jones <lawrence.jones@ugs.com>.
10486
10487 2005-09-12  Derek Price  <derek@ximbiot.com>
10488             Paul Eggert  <eggert@cs.ucla.edu>
10489
10490         * modules/glob (Files): Add glob-libc.h.
10491
10492 2005-09-12  Derek Price  <derek@ximbiot.com>
10493             Paul Eggert  <eggert@cs.ucla.edu>
10494
10495         * m4/glob.m4 (gl_GLOB_SUBSTITUTE): AC_LIBSOURCES for glob.c,
10496         glob_.h, glob-libc.h.
10497         (gl_PREREQ_GLOB): Remove _SYS_CDEFS_H hack; no longer needed.
10498
10499 2005-09-12  Derek Price  <derek@ximbiot.com>
10500             Paul Eggert  <eggert@cs.ucla.edu>
10501
10502         * lib/glob-libc.h: Renamed from glob_.h.  The new version is
10503         taken from libc's glob.h, except with '#ifdef __GLOB_GNULIB'
10504         protecting things that should be done only in gnulib contexts.
10505         * lib/glob_.h: New file, containing only the glob things needed for
10506         gnulib.
10507         (GLOB_PREFIX): Remove.  All uses changed to look for __GLOB_GNULIB.
10508         (__GLOB_CONCAT, __GLOB_XCONCAT, __GLOB_ID): Remove; no longer needed.
10509         (glob, globfree, glob_pattern_p): Now defined simply in terms of
10510         rpl_glob, rpl_globfree, rpl_glob_pattern_p.
10511         (__GLOB_GNULIB): New macro, to keep the glob.h changes clearer
10512         and to respect the namespace rules better.
10513
10514 2005-09-08  Simon Josefsson  <jas@extundo.com>
10515
10516         * modules/socklen: New file.
10517
10518 2005-09-08  Simon Josefsson  <jas@extundo.com>
10519
10520         * m4/socklen.m4: New file.
10521
10522 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
10523
10524         * modules/utimens (Files): Add m4/utimbuf.m4, since
10525         m4/utimens.m4 requires gl_CHECK_TYPE_STRUCT_UTIMBUF.
10526         Reported by Sergey Poznyakoff.
10527
10528 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
10529
10530         * lib/glob.c (glob, globfree, __glob_pattern_p): Use old-style function
10531         definitions, since that's the preferred style in glibc.
10532         Fix a minor spacing issue, and update copyright notice to match
10533         glibc's.
10534
10535 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
10536
10537         * config/srclist.txt: Remove glibc bug 1061; it's been fixed.
10538
10539 2005-09-06  Simon Josefsson  <jas@extundo.com>
10540
10541         * lib/getpass.c (getpass): Fix typo, test for HAVE_TCSETATTR and not
10542         TCSETATTR.  Reported by Derek Price <derek@ximbiot.com>.
10543
10544 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
10545
10546         * lib/regex_internal.h (bitset_not): Add parens to avoid gcc -Wall
10547         warning.
10548
10549 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
10550
10551         * config/srclist.txt: Add glibc bug 1302.
10552
10553 2005-09-05  Paul Eggert  <eggert@cs.ucla.edu>
10554
10555         Change bitset word type from unsigned int to unsigned long int,
10556         as this has better performance on typical 64-bit hosts.
10557         Port bitset code to hosts with unusual word sizes.
10558         * lib/regcomp.c (build_equiv_class, build_charclass, build_range_exp):
10559         (build_collating_symbol):
10560         Prefer bitset to re_bitset_ptr_t in prototypes, when the actual
10561         argument is a bitset.  This is merely a style issue, but it makes
10562         it clearer that an entire array is expected.
10563         (re_compile_fastmap_iter, init_dfa, init_word_char, optimize_subexps):
10564         * lib/regcomp.c (lower_subexp, parse_bracket_exp, built_charclass_op):
10565         Port to the case where bitset_word is not the same as unsigned int.
10566         * lib/regex_internal.h (bitset_set, bitset_clear, bitset_contain):
10567         (bitset_not, bitset_merge, bitset_set_all, bitset_mask):
10568         Likewise.
10569         * lib/regexec.c (check_dst_limits_calc_pos_1,
10570         check_subexp_matching_top):
10571         (build_trtable, group_nodes_into_DFAstates):
10572         Likewise.
10573         * lib/regcomp.c (re_compile_fastmap_iter, utf8_sb_map, optimize_utf8):
10574         Don't assume that SBC_MAX is a multiple of BITSET_WORD_BITS.
10575         * lib/regex_internal.h (bitset_set_all, bitset_not): Likewise.
10576         * lib/regexec.c (group_nodes_into_DFAstates): Likewise.
10577         * lib/regcomp.c (utf8_sb_map): Don't assume UINT_MAX == 0xffffffff.
10578         * lib/regcomp.c (optimize_subexps, lower_subexp):
10579         Work even if bitset_word has holes in its bitwise representation.
10580         * lib/regex_internal.h (BITSET_WORD_BITS): Likewise.
10581         * lib/regexec.c (check_dst_limits_calc_pos_1,
10582         check_subexp_matching_top):
10583         Likewise.
10584         * lib/regex_internal.c (re_string_reconstruct):
10585         Don't assume UCHAR_MAX == 255.
10586         * lib/regex_internal.h (bitset_set_all): Likewise.
10587         * lib/regex_internal.h (BITSET_WORD_BITS): Renamed from UINT_BITS.
10588         All uses changed.
10589         (BITSET_WORDS): Renamed from BITSET_UINTS.  All uses changed.
10590         (bitset_word): New type, replacing 'unsigned int' for bitset uses.
10591         All uses changed.
10592         (BITSET_WORD_MAX): New macro.
10593         (bitset_set, bitset_clear, bitset_contain, bitset_empty):
10594         (bitset_set_all, bitset_copy):  Now inline functions, not macros.
10595         (bitset_empty, bitset_copy):
10596         Prefer sizeof (bitset) to multiplying it out ourselves.
10597         (bitset_not_merge): Remove; unused.
10598         (bitset_contain): Return bool, not unsigned int with one bit on.
10599         All callers changed.
10600         * lib/regexec.c (build_trtable): Don't assume bitset has no stricter
10601         alignment than re_node_set; do this by defining a new internal
10602         type struct dests_alloc and using it to allocate memory.
10603
10604 2005-09-05  Bruno Haible  <bruno@clisp.org>
10605
10606         * gnulib-tool (func_import): Fix comparison in handling of symbolic
10607         links.
10608
10609 2005-09-04  Martin Lambers  <marlam@marlam.de>  (tiny change)
10610
10611         * modules/size_max (Makefile.am): Add size_max.h
10612
10613 2005-09-04  Derek Price  <derek@ximbiot.com>
10614
10615         * gnulib-tool (func_import): Fix reversed $symbolic logic.
10616
10617 2005-09-03  Simon Josefsson  <jas@extundo.com>
10618
10619         * gnulib-tool: Fix typo.
10620
10621 2005-09-03  Simon Josefsson  <jas@extundo.com>
10622
10623         * config/srclist.txt: Add glibc bug 1293.
10624
10625 2005-09-03  Derek Price  <derek@ximbiot.com>
10626
10627         * m4/getlogin_r (gl_GETLOGIN_R): Fix cut & paste error.
10628         From Larry Jones <lawrence.jones@ugs.com>.
10629
10630 2005-09-02  Simon Josefsson  <jas@extundo.com>
10631
10632         * modules/socklen: New file.
10633
10634 2005-09-02  Simon Josefsson  <jas@extundo.com>
10635
10636         * modules/havelib: New module.
10637
10638         * modules/gettext, modules/iconv, modules/lock, modules/readline:
10639         Use havelib.
10640
10641 2005-09-02  Paul Eggert  <eggert@cs.ucla.edu>
10642
10643         Check for arithmetic overflow when calculating sizes, to prevent
10644         some buffer-overflow issues.  These patches are conservative, in the
10645         sense that when I couldn't determine whether an overflow was possible,
10646         I inserted a run-time check.
10647         * lib/regex_internal.h (re_xmalloc, re_xrealloc, re_x2realloc): New
10648         macros.
10649         (SIZE_MAX) [!defined SIZE_MAX]: New macro.
10650         (re_alloc_oversized, re_x2alloc_oversized, re_xnmalloc):
10651         (re_xnrealloc, re_x2nrealloc): New inline functions.
10652         * lib/regcomp.c (init_dfa, analyze, build_range_exp,
10653         parse_bracket_exp):
10654         (build_equiv_class, build_charclass): Check for arithmetic overflow
10655         in size expression calculations.
10656         * lib/regex_internal.c (re_string_realloc_buffers):
10657         (build_wcs_upper_buffer, re_node_set_add_intersect):
10658         (re_node_set_init_union, re_node_set_insert, re_node_set_insert_last):
10659         (re_dfa_add_node, register_state): Likewise.
10660         * lib/regexec.c (re_search_stub, re_copy_regs, re_search_internal):
10661         (prune_impossible_nodes, push_fail_stack, set_regs, check_arrival):
10662         (build_trtable, extend_buffers, match_ctx_init, match_ctx_add_entry):
10663         (match_ctx_add_subtop, match_ctx_add_sublast): Likewise.
10664
10665 2005-09-02  Paul Eggert  <eggert@cs.ucla.edu>
10666
10667         * modules/inttostr (Files): Add m4/inttypes_h.m4, m4/stdint_h.m4,
10668         m4/ulonglong.m4.  Problem reported by Martin Lambers.
10669
10670 2005-09-02  Bruno Haible  <bruno@clisp.org>
10671
10672         Support for lib vs. lib64 distinction on biarch platforms.
10673         * m4/lib-prefix.m4 (AC_LIB_PREPARE_MULTILIB): New macro.
10674         (AC_LIB_PREFIX): Require it. Use $acl_libdirstem instead of 'lib'.
10675         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Likewise.
10676
10677 2005-09-02  Bruno Haible  <bruno@clisp.org>
10678
10679         * gnulib-tool (import): In the other first-use case, provide defaults
10680         as well.
10681
10682 2005-09-02  Bruno Haible  <bruno@clisp.org>
10683
10684         * config/srclist.txt: lib-link.m4 and lib-prefix.m4 currently have
10685         patches not yet found in the latest gettext release.
10686
10687 2005-09-01  Paul Eggert  <eggert@cs.ucla.edu>
10688
10689         * lib/glob.c (GET_LOGIN_NAME_MAX): Renamed from LOGIN_NAME_MAX,
10690         to avoid a collision with bits/local_lim.h in glibc.
10691         All uses changed.  Problem reported by Dmitry V. Levin in
10692         <http://sources.redhat.com/bugzilla/show_bug.cgi?id=1060>.
10693
10694         * lib/regex_internal.c (build_wcs_upper_buffer): Fix portability
10695         bugs in int versus size_t comparisons.
10696         (re_string_context_at): Fix bug where the code assumed that
10697         Idx is signed.
10698
10699         Use bool where appropriate.
10700         * lib/regcomp.c (re_set_fastmap): ICASE arg is bool, not int.
10701         All callers changed.
10702         (calc_eclosure_iter): Likewise, for ROOT arg.
10703         (parse_bracket_element): Likewise, for ACCEPT_HYPHEN arg.
10704         (build_charclass_op): Likewise, for NON_MATCH arg.
10705         * lib/regex_internal.c (re_string_allocate, re_string_construct):
10706         (re_string_construct_common): Likewise, for ICASE arg.
10707         * lib/regexec.c (re_search_2_stub, re_search_stub):
10708         Likewise, for RET_LEN arg.
10709         (check_matching): Likewise, for FL_LONGEST_MATCH arg.
10710         (set_regs): Likewise, for FL_BACKTRACK arg.
10711         * lib/regcomp.c (re_compile_fastmap_iter, optimize_utf8):
10712         (duplicate_node_closure, calc_inveclosure, calc_eclosure):
10713         (calc_eclosure_iter, parse_bracket_exp):
10714         Use bool for internal variables that are booleans.
10715         * lib/regexec.c (re_search_internal, check_matching,
10716         proceed_next_node):
10717         (set_regs, build_sifted_states, sift_states_bkref):
10718         (check_arrival_add_next_nodes, check_arrival_expand_ecl_sub):
10719         (expand_bkref_cache, build_trtable, group_nodes_into_DFAstates):
10720         (find_collation_sequence_value):
10721         Likewise.
10722         * lib/regex_internal.c (re_node_set_insert, re_node_set_insert_last):
10723         (re_node_set_compare):
10724         Return bool, not int. All callers changed.
10725         * lib/regexec.c (check_halt_node_context, check_dst_limits):
10726         (build_trtable, check_node_accept): Likewise.
10727         * lib/regex_internal.h: Include stdbool.h.
10728
10729         Fix bugs uncovered when converting to bool.
10730         * lib/regcomp.c (calc_eclosure_iter): Check for storage allocation
10731         failure instead of charging ahead blindly.
10732         * lib/regex_internal.c (register_state): Likewise.
10733         * lib/regexec.c (re_search_2_stub): Use simpler method than boolean
10734         for freeing internal storage.
10735         (group_nodes_into_DFA_states): Use unsigned int, not int, for
10736         bitset pieces used as boolean, to avoid undefined behavior
10737         on hosts that do int overflow checking.
10738
10739 2005-09-01  Paul Eggert  <eggert@cs.ucla.edu>
10740
10741         * config/srclist.txt: Add glibc bugs 1285-1287.
10742
10743 2005-09-01  Jim Meyering  <jim@meyering.net>
10744
10745         * m4/lchown.m4: Require gl_FUNC_CHOWN, for the definition of
10746         CHOWN_MODIFIES_SYMLINK, which is used by lchown.c.
10747         Require gl_STAT_MACROS, too.
10748
10749 2005-09-01  Bruno Haible  <bruno@clisp.org>
10750
10751         * gnulib-tool (import): In the first-use case, provide defaults.
10752
10753 2005-09-01  Bruno Haible  <bruno@clisp.org>
10754
10755         * gnulib-tool (func_import): Remove the .tmp files.
10756
10757 2005-09-01  Bruno Haible  <bruno@clisp.org>
10758
10759         * gnulib-tool (func_import): Fix handling of symbolic links.
10760
10761 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
10762
10763         On 64-bit hosts (where size_t is 64 bits and int is 32 bits), the
10764         old glibc regex code mishandles strings longer than 2**31 bytes.
10765         This patch fixes this when the regex code is used in gnulib
10766         (i.e., outside glibc).
10767
10768         This patch should not affect the use of the regex code inside
10769         glibc.  No doubt this problem also needs to be handled for glibc
10770         as well, but the result will be an incompatible change to the
10771         glibc ABI, and the old ABI will have to be supported too.  That
10772         can be the the subject for another patch.
10773
10774         * lib/regex.h (_REGEX_LARGE_OFFSETS): New feature-test macro,
10775         governing whether the rest of this patch is active.  By default,
10776         the macro is disabled and the patch has no effect.
10777         (regoff_t) [defined _REGEX_LARGE_OFFSETS]: Define to off_t, not int.
10778         (__re_idx_t, __re_size_t, __re_long_size_t): New types.
10779         (struct re_pattern_buffer, re_search, re_search_2, re_match):
10780         (re_match_2, re_set_registers): Use the new types.
10781         * lib/regex_internal.h (Idx, re_hashval_t): New types.
10782         (REG_MISSING, REG_ERROR, REG_VALID_INDEX, REG_VALID_NONZERO_INDEX):
10783         New macros.
10784         (re_node_set, re_charset_t, re_token_t, re_string_realloc_buffers):
10785         (re_string_context_at, bin_tree_t, re_dfastate_t):
10786         (struct re_state_table_entry, state_array_t, re_sub_match_last_t):
10787         (re_sub_match_top_t, re_match_context_t, re_sift_context_t):
10788         (struct re_fail_stack_ent_t, struct re_fail_stack_t, struct re_dfa_t):
10789         (re_string_char_size_at, re_string_wchar_at):
10790         (re_string_elem_size_at):
10791         Use the new types and macros to port to 64-bit hosts.
10792         Use unsigned types for internal values, so that the code
10793         mostly works even for arrays larger than SSIZE_MAX.
10794         * lib/regcomp.c (re_compile_internal, init_dfa, duplicate_node):
10795         (search_duplicated_node, calc_eclosure_iter, fetch_number):
10796         (parse_reg_exp, parse_branch, parse_expression, parse_sub_exp):
10797         (build_equiv_class, build_charclass, re_compile_fastmap_iter):
10798         (free_dfa_content, create_initial_state, optimize_utf8, analyze):
10799         (optimize_subexps, calc_first, link_nfa_nodes, duplicate_node_closure):
10800         (calc_inveclosure, parse_dup_op, build_range_exp):
10801         (build_collating_symbol, parse_bracket_exp, build_charclass_op):
10802         (fetch_number, create_token_tree, mark_opt_subexp):
10803         Likewise.
10804         * lib/regex_internal.c (re_string_construct_common,
10805         create_ci_newstate):
10806         (create_cd_newstate, re_string_allocate, re_string_construct):
10807         (re_string_realloc_buffers, build_wcs_upper_buffer):
10808         (re_string_skip_chars, build_upper_buffer, re_string_translate_buffer):
10809         (re_string_reconstruct, re_string_peek_byte_case):
10810         (re_string_fetch_byte_case, re_string_context_at):
10811         (re_node_set_alloc, re_node_set_init_1, re_node_set_init_2):
10812         (re_node_set_init_copy, re_node_set_add_intersect):
10813         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
10814         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
10815         (re_node_set_remove_at, re_dfa_add_node, calc_state_hash):
10816         (re_acquire_state, re_acquire_state_context, register_state):
10817         Likewise.
10818         * lib/regex.c (match_ctx_init, match_ctx_add_entry,
10819         search_cur_bkref_entry):
10820         (match_ctx_add_subtop, match_ctx_add_sublast, sift_ctx_init):
10821         (re_search_internal, re_search_2_stub, re_search_stub)
10822         (re_copy_regs, check_matching, check_halt_state_context, update_regs):
10823         (push_fail_stack, sift_states_iter_mb, build_sifted_states):
10824         (update_cur_sifted_state, check_dst_limits):
10825         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
10826         (check_subexp_limits, sift_states_bkref, merge_state_array):
10827         (check_subexp_matching_top, get_subexp, get_subexp_sub):
10828         (find_subexp_node, check_arrival, check_arrival_add_next_nodes):
10829         (check_arrival_expand_ecl, check_arrival_expand_ecl_sub):
10830         (expand_bkref_cache, check_node_accept_bytes):
10831         (group_nodes_into_DFAstates, check_node_accept, regexec, re_match):
10832         (re_search, re_match_2, re_search_2, prune_impossible_nodes):
10833         (acquire_init_state_context, check_halt_node_context):
10834         (proceed_next_node, pop_fail_stack, set_regs, free_fail_stack_return):
10835         (sift_states_backward, clean_state_log_if_needed):
10836         (sub_epsilon_src_nodes, add_epsilone_src_nodes, merge_state_with_log):
10837         (find_recover_state, transit_state_sb, transit_state_mb):
10838         (transit_state_bkref, build_trtable, match_ctx_clean):
10839         Likewise.
10840         * lib/regcomp.c (parse_dup_op): Add an extra test if Idx is unsigned,
10841         to work around an assumption that REG_MISSING is negative.
10842
10843         * lib/regcomp.c (re_comp) [defined _REGEX_RE_COMP || defined _LIBC]:
10844         (seek_collating_symbol_entry) [defined _LIBC]:
10845         (lookup_collation_sequence_value) [defined _LIBC]:
10846         (build_range_exp, build_collating_symbol) [defined _LIBC]:
10847         Use prototypes rather than old-style function definitions.
10848         * lib/regexec.c (re_exec) [defined _REGEX_RE_COMP || defined _LIBC]:
10849         (transit_state_sb) [0]:
10850         (find_collation_sequence_value) [defined _LIBC]: Likewise.
10851
10852         * lib/regexec.c (re_search_internal): Simplify update of rm_so and
10853         rm_eo.
10854
10855         * lib/regcomp.c (re_compile_fastmap_iter, init_dfa, init_word_char):
10856         (optimize_subexps, lower_subexp):
10857         Don't assume 1<<31 has defined behavior on hosts with 32-bit int,
10858         since the signed shift might overflow.  Use 1u<<31 instead.
10859         * lib/regex_internal.h (bitset_set, bitset_clear, bitset_contain):
10860         Likewise.
10861         * lib/regexec.c (check_dst_limits_calc_pos_1,
10862         check_subexp_matching_top): Likewise.
10863
10864         * lib/regcomp.c (optimize_subexps, lower_subexp):
10865         Use CHAR_BIT rather than 8, for clarity.
10866         * lib/regexec.c (check_dst_limits_calc_pos_1):
10867         (check_subexp_matching_top): Likewise.
10868         * lib/regcomp.c (init_dfa): Make table_size unsigned, so that we don't
10869         have to worry about portability issues when shifting it left.
10870         Remove no-longer-needed test for table_size > 0.
10871         * lib/regcomp.c (parse_sub_exp): Do not shift more bits than there are
10872         in a word, as the resulting behavior is undefined.
10873         * lib/regexec.c (check_dst_limits_calc_pos_1): Likewise;
10874         in one case, a <= should have been an <, and in another case the
10875         whole test was missing.
10876         * lib/regex_internal.h (BYTE_BITS): Remove.  All uses changed to
10877         the standard name CHAR_BIT.
10878         * lib/regexec.c (match_ctx_add_entry): Don't assume that ~0 == -1;
10879         this is not true on one's complement and signed-magnitude hosts.
10880
10881         * lib/regex_internal.h (re_sub_match_top_t): Remove unused member
10882         next_last_offset.
10883         (struct re_dfa_t): Remove unused member states_alloc.
10884         * lib/regcomp.c (init_dfa): Don't initialize unused members.
10885
10886 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
10887
10888         * m4/regex.m4 (gl_REGEX): Require AC_SYS_LARGEFILE, Define
10889         _REGEX_LARGE_OFFSETS).  Test for regoff_t/off_t bug in 64-bit
10890         and large-file glibc and in 32-bit large-file Solaris.
10891
10892 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
10893
10894         * lib/regex_internal.c (re_string_reconstruct): Don't assume buffer
10895         lengths fit in regoff_t; this isn't true if regoff_t is the same
10896         width as size_t.
10897         * lib/regex.c (re_search_internal): 5th arg is LAST_START
10898         (= START + RANGE) instead of RANGE.  This avoids overflow
10899         problems when regoff_t is the same width as size_t.
10900         All callers changed.
10901         (re_search_2_stub): Check for overflow when adding the
10902         sizes of the two strings.
10903         (re_search_stub): Check for overflow when adding START
10904         to RANGE; if it occurs, substitute the extreme value.
10905
10906 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
10907
10908         * config/srclist.txt: Add glibc bugs 1273, 1278-1282, 1284.
10909
10910 2005-08-31  Jim Meyering  <jim@meyering.net>
10911
10912         * lib/regcomp.c (search_duplicated_node): Make first pointer arg
10913         a pointer-to-const.
10914         * lib/regex_internal.c (create_ci_newstate, create_cd_newstate):
10915         (register_state): Likewise.
10916         * lib/regexec.c (search_cur_bkref_entry, check_dst_limits):
10917         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
10918         (group_nodes_into_DFAstates): Likewise.
10919
10920 2005-08-31  Jim Meyering  <jim@meyering.net>
10921
10922         * check-module: Add a FIXME comment.
10923
10924 2005-08-31  Eric Blake  <ebb9@byu.net>
10925
10926         * modules/unistd-safer (Files): Add unistd--.h.
10927         * modules/stdio-safer (Files): Add stdio--.h.
10928
10929 2005-08-31  Derek Price  <derek@ximbiot.com>
10930
10931         * lib/getdelim.c (getdelim): Return EOF on EOF.
10932         Reported by Larry Jones <lawrence.jones@ugs.com>.
10933
10934 2005-08-31  Bruno Haible  <bruno@clisp.org>
10935
10936         Avoid unnecessary diffs in the generated lib/Makefile.am.
10937         * gnulib-tool (func_emit_lib_Makefile_am): Don't write the cmd into
10938         the generated files.
10939         (func_import): Don't set cmd.
10940
10941 2005-08-31  Bruno Haible  <bruno@clisp.org>
10942
10943         * lib/strstr.c: Include <stddef.h>, for NULL.
10944         * lib/strcasestr.c: Likewise.
10945         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
10946
10947 2005-08-31  Bruno Haible  <bruno@clisp.org>
10948
10949         * gnulib-tool: New option --macro-prefix.
10950         (func_import): Use macro_prefix.
10951         (import): Handle option --macro-prefix.
10952
10953 2005-08-31  Bruno Haible  <bruno@clisp.org>
10954
10955         * gnulib-tool (import): Rename most ac_* variables to cached_*.
10956         Also use new variables cached_lgpl, cached_libtool.
10957
10958 2005-08-31  Bruno Haible  <bruno@clisp.org>
10959
10960         * gnulib-tool (func_import): Require AC_GNU_SOURCE etc. instead of
10961         always instantiating them.
10962
10963 2005-08-31  Bruno Haible  <bruno@clisp.org>
10964
10965         * gnulib-tool (func_import): Read the previous cached settings
10966         from gnulib-cache.m4 and gnulib-comp.m4. Remove files that were
10967         earlier added by gnulib but are now dropped. Warn when a gnulib file
10968         overwrites a non-gnulib file.
10969
10970 2005-08-31  Bruno Haible  <bruno@clisp.org>
10971
10972         * gnulib-tool (func_import): Generate two files gnulib-cache.m4 and
10973         gnulib-comp.m4 instead of a single gnulib.m4, to make it easy for
10974         projects that don't keep autogenerated files in CVS. Put into
10975         actioncmd only the specified modules, not the transitive closure.
10976
10977 2005-08-31  Bruno Haible  <bruno@clisp.org>
10978
10979         * gnulib-tool (func_import): Fix defaulting of $libname and $libtool.
10980         Create directories that shall be filled.
10981         (import): Don't look for gl_* macros in configure.ac. Recurse across
10982         all directories containing a gnulib-cache.m4 files, if meaningful.
10983
10984 2005-08-31  Bruno Haible  <bruno@clisp.org>
10985
10986         * gnulib-tool (func_import): Emit also a stub for gl_LIBTOOL.
10987         (import): Set seen_libtool when we see gl_LIBTOOL.
10988
10989 2005-08-31  Bruno Haible  <bruno@clisp.org>
10990
10991         * gnulib-tool (func_import): Also copy m4/gnulib-tool.m4. Omit
10992         declaration macro definitions from generated gnulib.m4.
10993
10994 2005-08-30  Oskar Liljeblad  <oskar@osk.mine.nu>
10995
10996         * lib/iconvme.h: Add prototype for iconv_alloc.
10997
10998 2005-08-29  Simon Josefsson  <jas@extundo.com>
10999
11000         * lib/iconvme.c: Fix errno.
11001
11002 2005-08-29  Bruno Haible  <bruno@clisp.org>
11003
11004         * gnulib-tool: Enclose all occurrences of $destdir in "...", so
11005         that it works when the directory contains spaces.
11006
11007 2005-08-29  Bruno Haible  <bruno@clisp.org>
11008
11009         * gnulib-tool (import): Avoid unnecessary spaces in $avoidlist.
11010
11011 2005-08-29  Bruno Haible  <bruno@clisp.org>
11012
11013         * gnulib-tool (func_import): Emit more comments into gnulib.m4.
11014         Emit more advice.
11015
11016 2005-08-29  Bruno Haible  <bruno@clisp.org>
11017         and Stepan Kasal  <kasal@ucw.cz>
11018
11019         * check-module: If more parameters are given, check each of them
11020         separately; add more exceptions, as noted by Jim Meyering.
11021         (check_module): New procedure.
11022         (%exempt_header): Now contains all exceptions.
11023
11024 2005-08-29  Ben Pfaff  <blp@cs.stanford.edu>
11025
11026         * modules/byteswap (Makefile.am): Fix rule to not assume GNU make.
11027
11028 2005-08-29  Oskar Liljeblad  <oskar@osk.mine.nu>
11029
11030         * lib/iconvme.c: Split iconv_string into iconv_alloc.
11031
11032 2005-08-28  Bruno Haible  <bruno@clisp.org>
11033
11034         * m4/gnulib-tool.m4: New file.
11035
11036 2005-08-27  Jim Meyering  <jim@meyering.net>
11037
11038         * modules/unistd-safer (Files): Add pipe-safer.c.
11039         * modules/fcntl-safer (Files): Add creat-safer.c.
11040
11041 2005-08-27  Jim Meyering  <jim@meyering.net>
11042
11043         * m4/stdlib-safer.m4: New file.  From coreutils.
11044         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Add stdio--.h.
11045         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Add creat-safer.c to the
11046         AC_LIBSOURCES list and arrange to compile it via AC_LIBOBJ.
11047         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Likewise, add pipe-safer.c.
11048         Add pipe-safer.c and unistd--.h to the AC_LIBSOURCES list.
11049
11050 2005-08-27  Jim Meyering  <jim@meyering.net>
11051
11052         * lib/fopen-safer.c: Merge minor changes from coreutils.
11053         * lib/dup-safer.c: Likewise.
11054         * lib/fd-safer.c: Likewise.
11055
11056         Merge from coreutils.
11057         * lib/stdio--.h: New file.
11058         * lib/stdlib--.h: New file.
11059         * lib/mkstemp-safer.c: New file.
11060
11061         GNU tar needs these.
11062         * lib/pipe-safer.c: New file.
11063         * lib/creat-safer.c: New file.
11064         * lib/fcntl--.h (creat): Define to creat_safer.
11065         * lib/fcntl-safer.h: Include <sys/types.h> and declare creat_safer.
11066         * lib/unistd--.h (pipe): Define to pipe_safer.
11067         * lib/unistd-safer.h: Declare pipe_safer.
11068
11069 2005-08-26  Simon Josefsson  <jas@extundo.com>
11070
11071         * lib/getpass.c: Use _WIN32 instead of WIN32, suggested by Bruno
11072         Haible <bruno@clisp.org>.
11073
11074 2005-08-26  Paul Eggert  <eggert@cs.ucla.edu>
11075
11076         * lib/regex_internal.h: Remove all references to
11077         RE_NO_INTERNAL_PROTOTYPES; no longer neeeded now that we assume C89
11078         or better.
11079         (bitset_not, bitset_merge, bitset_not_merge):
11080         (bitset_mask, re_string_allocate, re_string_construct):
11081         (re_string_reconstruct, re_string_destruct, re_string_elem_size_at):
11082         (re_string_char_size_at, re_string_wchar_at, re_string_peek_byte_case):
11083         (re_string_fetch_byte_case, re_node_set_alloc, re_node_set_init_1):
11084         (re_node_set_init_2, re_node_set_init_copy, re_node_set_add_intersect):
11085         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
11086         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
11087         (re_node_set_remove_at, re_dfa_add_node, re_acquire_state):
11088         (re_acquire_state_context):
11089         Remove unnecessary forward decls.
11090         (re_string_char_size_at, re_string_wchar_at, re_string_elem_size_at):
11091         Put __attribute at function definition,
11092         now that the function decl has been removed.
11093         * lib/regex_internal.c (re_string_peek_byte_case):
11094         (re_string_fetch_byte_case, re_node_set_compare, re_node_set_contains):
11095         Likewise.
11096
11097 2005-08-25  Stepan Kasal  <kasal@ucw.cz>
11098
11099         * m4/regex.m4: Add AC_PREREQ(2.50).
11100         (gl_REGEX): If --with-included-regex was given, skip the autodetection.
11101
11102 2005-08-25  Simon Josefsson  <jas@extundo.com>
11103
11104         * m4/getpass.m4: Check for termios.h, tcgetattr, tcsetattr, and
11105         __fsetlocking.
11106
11107 2005-08-25  Simon Josefsson  <jas@extundo.com>
11108
11109         * lib/getpass.c: Add WIN32 implementation.  Conditionalize use of
11110         termios.h, tcgetattr, tcsetattr and __fsetlocking.  Remove some
11111         GLIBC specific code.
11112
11113 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
11114
11115         Make regex safe for g++.  This fixes one real bug (an "err"
11116         that should have been "*err").  g++ problem reported by
11117         Sam Steingold.
11118         * lib/regex_internal.h (re_calloc): New macro, consistent with
11119         re_malloc etc.  All callers of calloc changed to use re_calloc.
11120         * lib/regex_internal.c (build_wcs_upper_buffer): Return reg_errcode_t,
11121         not int.  All callers changed.
11122         * lib/regcomp.c (re_compile_fastmap_iter): Don't use
11123         alloca (mb_cur_max); just use an array of size MB_LEN_MAX.
11124         * lib/regexec.c (push_fail_stack): Use re_realloc, not realloc.
11125         (find_recover_state): Change "err" to "*err"; this fixes what
11126         appears to be a real bug.
11127         (check_arrival_expand_ecl_sub): Be consistent about reg_errcode_t
11128         versus int.
11129
11130 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
11131
11132         * modules/regex (Depends-on): Add malloc, since the code
11133         assumes that !malloc(0) means failure.
11134
11135 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
11136
11137         * lib/regexec.c (set_regs): Don't alloca with an unbounded size.
11138
11139         alloca modernization/simplification for regex.
11140         * lib/regex.c: Remove portability cruft for alloca.  This no longer
11141         needs to be at the start of the file, and can be moved into
11142         regex_internal.h and simplified.
11143         * lib/regex_internal.h: Include <alloca.h>.
11144         (__libc_use_alloca) [!defined _LIBC]: New macro.
11145         * lib/regexec.c (build_trtable): Remove "#ifdef _LIBC", since the code
11146         now works outside glibc.
11147
11148 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
11149
11150         * config/srclist.txt: Add glibc bugs 1241, 1245.
11151
11152 2005-08-25  Jim Meyering  <jim@meyering.net>
11153
11154         * lib/open-safer.c: Include <config.h>.
11155         Otherwise, we'd lose LARGEFILE support in any file using
11156         e.g. "fcntl--.h"
11157
11158 2005-08-25  Bruno Haible  <bruno@clisp.org>
11159
11160         * m4/minmax.m4: Require autoconf 2.52.
11161         (gl_MINMAX_IN_HEADER): Add comments. Use m4_pushdef/m4_popdef instead
11162         of define/undefine. Use AS_TR_SH and AS_TR_CPP as more robust
11163         alternatives of translit over the alphabet.
11164         Based on a patch from Stepan Kasal <kasal@ucw.cz>.
11165
11166 2005-08-24  Simon Josefsson  <jas@extundo.com>
11167
11168         * tests/test-getpass.c: New file.
11169
11170 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
11171
11172         * m4/regex.m4 (gl_REGEX): Use POSIX-compliant spellings when testing
11173         for GNU regex features.
11174
11175 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
11176
11177         * lib/regcomp.c (regerror): 2nd arg is 'restrict', as per POSIX.
11178         * lib/regex.h (regerror): Likewise.
11179
11180         * lib/regex.c: Do not include <sys/types.h>, as POSIX no longer
11181         requires this.  (The code never needed it.)
11182
11183         * lib/regcomp.c, regex_internal.c, regex_internal.h, regexec.c:
11184         All uses of recently-renamed identifiers changed to use the new,
11185         POSIX-compliant names.  The code will build and run just fine
11186         without these changes, but it's better to eat our own dog food
11187         and use the standard-conforming names.
11188
11189         * lib/regex.h: Fix a multitude of POSIX name space violations.
11190         These changes have an effect only for programs that define
11191         _POSIX_C_SOURCE, _POSIX_SOURCE, or _XOPEN_SOURCE; they
11192         do not change anything for programs compiled in the normal way.
11193         Also, there is no effect on the ABI.
11194
11195         (_REGEX_SOURCE): New macro.
11196         Do not include <stddef.h> if _XOPEN_SOURCE and VMS are both
11197         defined and _GNU_SOURCE is not; this fixes a name space violation.
11198
11199         Rename the following macros to obey POSIX requirements.
11200         The old names are still visible as macros if _REGEX_SOURCE is defined.
11201         (REG_BACKSLASH_ESCAPE_IN_LISTS): renamed from
11202         RE_BACKSLASH_ESCAPE_IN_LISTS.
11203         (REG_BK_PLUS_QM): renamed from RE_BK_PLUS_QM.
11204         (REG_CHAR_CLASSES): renamed from RE_CHAR_CLASSES.
11205         (REG_CONTEXT_INDEP_ANCHORS): renamed from RE_CONTEXT_INDEP_ANCHORS.
11206         (REG_CONTEXT_INDEP_OPS): renamed from RE_CONTEXT_INDEP_OPS.
11207         (REG_CONTEXT_INVALID_OPS): renamed from RE_CONTEXT_INVALID_OPS.
11208         (REG_DOT_NEWLINE): renamed from RE_DOT_NEWLINE.
11209         (REG_DOT_NOT_NULL): renamed from RE_DOT_NOT_NULL.
11210         (REG_HAT_LISTS_NOT_NEWLINE): renamed from RE_HAT_LISTS_NOT_NEWLINE.
11211         (REG_INTERVALS): renamed from RE_INTERVALS.
11212         (REG_LIMITED_OPS): renamed from RE_LIMITED_OPS.
11213         (REG_NEWLINE_ALT): renamed from RE_NEWLINE_ALT.
11214         (REG_NO_BK_BRACES): renamed from RE_NO_BK_BRACES.
11215         (REG_NO_BK_PARENS): renamed from RE_NO_BK_PARENS.
11216         (REG_NO_BK_REFS): renamed from RE_NO_BK_REFS.
11217         (REG_NO_BK_VBAR): renamed from RE_NO_BK_VBAR.
11218         (REG_NO_EMPTY_RANGES): renamed from RE_NO_EMPTY_RANGES.
11219         (REG_UNMATCHED_RIGHT_PAREN_ORD): renamed from
11220         RE_UNMATCHED_RIGHT_PAREN_ORD.
11221         (REG_NO_POSIX_BACKTRACKING): renamed from RE_NO_POSIX_BACKTRACKING.
11222         (REG_NO_GNU_OPS): renamed from RE_NO_GNU_OPS.
11223         (REG_DEBUG): renamed from RE_DEBUG.
11224         (REG_INVALID_INTERVAL_ORD): renamed from RE_INVALID_INTERVAL_ORD.
11225         (REG_IGNORE_CASE): renamed from RE_ICASE.  This renaming is a bit
11226         unusual, since we can't clash with the POSIX REG_ICASE.
11227         (REG_CARET_ANCHORS_HERE): renamed from RE_CARET_ANCHORS_HERE.
11228         (REG_CONTEXT_INVALID_DUP): renamed from RE_CONTEXT_INVALID_DUP.
11229         (REG_NO_SUB): renamed from RE_NO_SUB.
11230         (REG_SYNTAX_EMACS): renamed from RE_SYNTAX_EMACS.
11231         (REG_SYNTAX_AWK): renamed from RE_SYNTAX_AWK.
11232         (REG_SYNTAX_GNU_AWK): renamed from RE_SYNTAX_GNU_AWK.
11233         (REG_SYNTAX_POSIX_AWK): renamed from RE_SYNTAX_POSIX_AWK.
11234         (REG_SYNTAX_GREP): renamed from RE_SYNTAX_GREP.
11235         (REG_SYNTAX_EGREP): renamed from RE_SYNTAX_EGREP.
11236         (REG_SYNTAX_POSIX_EGREP): renamed from RE_SYNTAX_POSIX_EGREP.
11237         (REG_SYNTAX_ED): renamed from RE_SYNTAX_ED.
11238         (REG_SYNTAX_SED): renamed from RE_SYNTAX_SED.
11239         (_REG_SYNTAX_POSIX_COMMON): renamed from _RE_SYNTAX_POSIX_COMMON.
11240         (REG_SYNTAX_POSIX_BASIC): renamed from RE_SYNTAX_POSIX_BASIC.
11241         (REG_SYNTAX_POSIX_MINIMAL_BASIC): renamed from
11242         RE_SYNTAX_POSIX_MINIMAL_BASIC.
11243         (REG_SYNTAX_POSIX_EXTENDED): renamed from RE_SYNTAX_POSIX_EXTENDED.
11244         (REG_SYNTAX_POSIX_MINIMAL_EXTENDED): renamed from
11245         RE_SYNTAX_POSIX_MINIMAL_EXTENDED.
11246         (REG_DUP_MAX): renamed from RE_DUP_MAX.  No need to undef it.
11247         (REG_UNALLOCATED): Renamed from REGS_UNALLOCATED.
11248         (REG_REALLOCATE): Renamed from REGS_REALLOCATE.
11249         (REG_FIXED): Renamed from REGS_FIXED.
11250         (REG_NREGS): Renamed from RE_NREGS.
11251
11252         (REG_ICASE, REG_NEWLINE, REG_NOSUB): Do not depend on the values
11253         of other REG_* macros, since POSIX says the user is allowed to
11254         #undef these macros selectively.
11255
11256         (reg_errcode_t): Update comment stating what other tables need
11257         to be consistent.
11258
11259         Rename the following enum values to obey POSIX requirements.
11260         The old names are still visible as macros.
11261         (_REG_ENOSYS): Renamed from REG_ENOSYS.  Define even if _XOPEN_SOURCE
11262         is not defined, since GNU is supposed to be a superset of POSIX as
11263         much as possible, and since we want reg_errcode_t to be a signed
11264         type for implementation consistency.
11265         (_REG_NOERROR): Renamed from REG_NOERROR.
11266         (_REG_NOMATCH): Renamed from REG_NOMATCH.
11267         (_REG_BADPAT): Renamed from REG_BADPAT.
11268         (_REG_ECOLLATE): Renamed from REG_ECOLLATE.
11269         (_REG_ECTYPE): Renamed from REG_ECTYPE.
11270         (_REG_EESCAPE): Renamed from REG_EESCAPE.
11271         (_REG_ESUBREG): Renamed from REG_ESUBREG.
11272         (_REG_EBRACK): Renamed from REG_EBRACK.
11273         (_REG_EPAREN): Renamed from REG_EPAREN.
11274         (_REG_EBRACE): Renamed from REG_EBRACE.
11275         (_REG_BADBR): Renamed from REG_BADBR.
11276         (_REG_ERANGE): Renamed from REG_ERANGE.
11277         (_REG_ESPACE): Renamed from REG_ESPACE.
11278         (_REG_BADRPT): Renamed from REG_BADRPT.
11279         (_REG_EEND): Renamed from REG_EEND.
11280         (_REG_ESIZE): Renamed from REG_ESIZE.
11281         (_REG_ERPAREN): Renamed from REG_ERPAREN.
11282         (REG_ENOSYS, REG_NOERROR, REG_NOMATCH, REG_BADPAT, REG_ECOLLATE):
11283         (REG_ECTYPE, REG_EESCAPE, REG_ESUBREG, REG_EBRACK, REG_EPAREN):
11284         (REG_EBRACE, REG_BADBR, REG_ERANGE, REG_ESPACE, REG_BADRPT, REG_EEND):
11285         (REG_ESIZE, REG_ERPAREN): Now macros, not enum constants.
11286
11287         (_REG_RE_NAME, _REG_RM_NAME): New macros.
11288         (REG_TRANSLATE_TYPE): Renamed from RE_TRANSLATE_TYPE.  All uses
11289         changed.  But support the old name if the new one is not defined
11290         and if _REGEX_SOURCE.
11291
11292         Change the following member names in struct re_pattern_buffer.
11293         The old names are still supported if !_REGEX_SOURCE.
11294         The new names are always supported, regardless of _REGEX_SOURCE.
11295         (re_buffer): Renamed from buffer.
11296         (re_allocated): Renamed from allocated.
11297         (re_used): Renamed from used.
11298         (re_syntax): Renamed from syntax.
11299         (re_fastmap): Renamed from fastmap.
11300         (re_translate): Renamed from translate.
11301         (re_can_be_null): Renamed from can_be_null.
11302         (re_regs_allocated): Renamed from regs_allocated.
11303         (re_fastmap_accurate): Renamed from fastmap_accurate.
11304         (re_no_sub): Renamed from no_sub.
11305         (re_not_bol): Renamed from not_bol.
11306         (re_not_eol): Renamed from not_eol.
11307         (re_newline_anchor): Renamed from newline_anchor.
11308
11309         Change the following member names in struct re_registers.
11310         The old names are still supported if !_REGEX_SOURCE.
11311         The new names are always supported, regardless of _REGEX_SOURCE.
11312         (rm_num_regs): Renamed from num_regs.
11313         (rm_start): Renamed from start.
11314         (rm_end): Renamed from end.
11315
11316         (re_set_syntax, re_compile_pattern, re_compile_fastmap):
11317         (re_search, re_search_2, re_match, re_match_2, re_set_registers):
11318         Prepend __ to parameter names.
11319
11320         Undo yesterday's changes.
11321
11322 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
11323
11324         * config/srclist.txt: Remove glibc bug 1233 and add 1236, which
11325         supersedes it. Add glibc bugs 1237, 1238, 1240.  Comment out
11326         lib/regex.c.
11327
11328 2005-08-24  Jim Meyering  <jim@meyering.net>
11329
11330         Sync from coreutils.
11331         * m4/fcntl-safer.m4: New file.
11332
11333         * m4/xgetcwd.m4: Use AC_LIBSOURCES and AC_LIBOBJ to indicate source
11334         and object files for this module.
11335
11336 2005-08-24  Jim Meyering  <jim@meyering.net>
11337
11338         Sync from coreutils.
11339         * lib/fcntl--.h, lib/fcntl-safer.h, lib/open-safer.c: New files.
11340
11341 2005-08-24  Jim Meyering  <jim@meyering.net>
11342
11343         * modules/xgetcwd (Makefile.am): Remove `lib_SOURCES += ...' line,
11344         now that xgetcwd.m4 requires xgetcwd.c and xgetcwd.h.
11345
11346 2005-08-24  Jim Meyering  <jim@meyering.net>
11347
11348         * modules/fcntl-safer: New module.
11349         * modules/fts (Depends-on): Add fcntl-safer.
11350         * MODULES.html.sh (File descriptor based Input/Output):
11351         Add fcntl-safer.
11352
11353 2005-08-24  Bruno Haible  <bruno@clisp.org>
11354
11355         Support for unit test modules.
11356         * modules/README: Mention tests modules.
11357         * modules/TEMPLATE-TESTS: New file.
11358         * gnulib-tool: New options --extract-tests-module, --with-tests and
11359         --tests-base (unused for the moment).
11360         (testsbase, inctests): New variables.
11361         (func_all_modules): Exclude TEMPLATE-TESTS and *-tests.
11362         (func_verify_module): Exclude TEMPLATE-TESTS.
11363         (func_verify_nontests_module, func_verify_tests_module): New functions.
11364         (func_get_dependencies): Add implicit dependency for tests modules.
11365         (func_get_tests_module): New function.
11366         (func_modules_transitive_closure): When --with-tests was specified,
11367         include the unit tests as well, unless explicitly avoided.
11368         (func_emit_lib_Makefile_am): Ignore the tests modules here.
11369         (func_emit_tests_Makefile_am): New function.
11370         (func_create_testdir): When --with-tests was specified, emit a
11371         tests/ directory.
11372         * MODULES.html.sh (Future developments): Update.
11373
11374 2005-08-24  Bruno Haible  <bruno@clisp.org>
11375
11376         * modules/tls-tests: New file.
11377         * tests/test-tls.c: New file, from GNU gettext.
11378
11379 2005-08-24  Bruno Haible  <bruno@clisp.org>
11380
11381         * modules/lock-tests: New file.
11382         * tests/test-lock.c: New file, from GNU gettext.
11383
11384 2005-08-24  Bruno Haible  <bruno@clisp.org>
11385
11386         * lib/lock.h: Add multiple inclusion guard.
11387         * lib/tls.h: Add multiple inclusion guard.
11388
11389 2005-08-24  Bruno Haible  <bruno@clisp.org>
11390
11391         * gnulib-tool: Add support for the --aux-dir option to
11392         --create-testdir, --create-megatestdir, --test, --megatest.
11393         (func_create_testdir, func_create_megatestdir): Optionally emit a
11394         AC_CONFIG_AUX_DIR directive.
11395         (create-testdir, create-megatestdir, test, megatest): Provide a
11396         default value for $auxdir.
11397
11398 2005-08-24  Bruno Haible  <bruno@clisp.org>
11399
11400         * gnulib-tool (import): Use compound statement instead of subshell
11401         where possible.
11402
11403 2005-08-24  Bruno Haible  <bruno@clisp.org>
11404
11405         * gnulib-tool (import): Change --aux-dir default to "build-aux".
11406
11407 2005-08-24  Bruno Haible  <bruno@clisp.org>
11408
11409         * gnulib-tool (func_version): Update.
11410
11411 2005-08-24  Bruno Haible  <bruno@clisp.org>
11412
11413         * gnulib-tool (func_import, func_create_testdir,
11414         func_create_megatestdir): Quote all autoconf macro arguments.
11415
11416 2005-08-24  Bruno Haible  <bruno@clisp.org>
11417
11418         * gnulib-tool (func_create_megatestdir): Call autoreconf without the
11419         option --force, because --force causes the aclocal.m4 of each
11420         subdirectory to be newer than the corresponding config.h.in.
11421
11422 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
11423
11424         * m4/regex.m4 (gl_INCLUDED_REGEX): Remove; no longer used.
11425         All contents moved to gl_REGEX.
11426         (gl_REGEX): Don't bother checking whether lib/regex.c exists;
11427         assume that it does.
11428
11429 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
11430
11431         * lib/regex.h (REG_NOSYS)
11432         [!defined _XOPEN_SOURCE && 200112L <= _POSIX_C_SOURCE]:
11433         Define, since POSIX requires it as of 2001.
11434         (_REG_ENOSYS)
11435         [! (defined _XOPEN_SOURCE || 200112L <= _POSIX_C_SOURCE)]:
11436         New private symbol, used to keep the enum signed in all cases.
11437         * lib/regex.h (RE_NO_EMPTY_RANGES): Fix doc bug reported by James
11438         Youngman in
11439         <http://lists.gnu.org/archive/html/bug-gnulib/2005-07/msg00132.html>.
11440
11441         * lib/regex_internal.c (re_string_skip_chars, register_state):
11442         (calc_state_hash):
11443         Remove forward decls; no longer needed now that we use prototypes.
11444         * lib/regexec.c (acquire_init_state_context, check_halt_node_context):
11445         (proceed_next_node, pop_fail_stack, sub_epsilon_src_nodes):
11446         (clean_state_log_if_needed): Likewise.
11447
11448 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
11449
11450         * config/srclist.txt: Add glibc bugs 1231-1233.
11451
11452 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
11453
11454         Fix problems reported by Sam Steingold in
11455         <http://lists.gnu.org/archive/html/bug-gnulib/2005-08/msg00007.html>.
11456         * lib/regexec.c (sift_states_bkref): Fix portability bug: the code
11457         assumed that reg_errcode_t is a signed type, which is not
11458         necessarily true if _XOPEN_SOURCE is not defined.
11459         * lib/regex_internal.c (calc_state_hash): Put 'inline' before type,
11460         since some compilers warn about it otherwise.
11461
11462 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
11463
11464         * lib/regcomp.c (create_initial_state): Remove duplicate decl.
11465         (init_word_char, create_initial_state, duplicate_node_closure):
11466         (fetch_token, peek_token_bracket, build_range_exp):
11467         (build_collating_symbol): Remove forward decls; no longer needed
11468         now that we use prototypes.
11469
11470         * lib/regcomp.c:
11471         (re_compile_pattern, re_set_syntax, re_compile_fastmap):
11472         (re_compile_fastmap_iter, regcomp, regerror, regfree):
11473         (re_compile_internal, init_dfa, init_word_char, free_workarea_compile):
11474         (create_initial_state, optimize_utf8, analyze, postorder, preorder):
11475         (optimize_subexps, lower_subexps, lower_subexp, calc_first, calc_next):
11476         (link_nfa_nodes, duplicate_node_closure, search_duplicated_node):
11477         (duplicate_node, calc_inveclosure, calc_eclosure, calc_eclosure_iter):
11478         (fetch_token, peek_token, peek_token_bracket, parse, parse_reg_exp):
11479         (parse_branch, parse_expression, parse_sub_exp, parse_dup_op):
11480         (build_range_exp, build_collating_symbol, parse_bracket_exp):
11481         (parse_bracket_element, parse_bracket_symbol, build_equiv_class):
11482         (build_charclass, build_charclass_op, fetch_number, create_tree):
11483         (create_token_tree, mark_opt_subexp, duplicate_tree):
11484         Use prototypes rather than old-style definitions.
11485
11486         * lib/regex_internal.c:
11487         (re_string_allocate, re_string_construct, re_string_realloc_buffers):
11488         (re_string_construct_common, build_wcs_buffer, build_wcs_upper_buffer):
11489         (re_string_skip_chars, build_upper_buffer, re_string_translate_buffer):
11490         (re_string_reconstruct, re_string_peek_byte_case):
11491         (re_string_fetch_byte_case, re_string_destruct, re_string_context_at):
11492         (re_node_set_alloc, re_node_set_init_1, re_node_set_init_2):
11493         (re_node_set_init_copy, re_node_set_add_intersect):
11494         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
11495         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
11496         (re_node_set_remove_at, re_dfa_add_node, calc_state_hash):
11497         (re_acquire_state, re_acquire_state_context, register_state):
11498         (create_ci_newstate, create_cd_newstate, free_state):
11499         Likewise.
11500         * lib/regexec.c (regexec, re_match, re_search, re_match_2,
11501         re_search_2):
11502         (re_search_2_stub, re_search_stub, re_copy_regs, re_set_registers):
11503         (re_search_internal, prune_impossible_nodes):
11504         (acquire_init_state_context, check_matching, static):
11505         (check_halt_node_context, check_halt_state_context, proceed_next_node):
11506         (push_fail_stack, pop_fail_stack, set_regs, free_fail_stack_return):
11507         (update_regs, sift_states_backward, build_sifted_states):
11508         (clean_state_log_if_needed, merge_state_array):
11509         (update_cur_sifted_state, add_epsilon_src_nodes):
11510         (sub_epsilon_src_nodes, check_dst_limits, check_dst_limits_calc_pos_1):
11511         (check_dst_limits_calc_pos, check_subexp_limits, sift_states_bkref):
11512         (sift_states_iter_mb, transit_state, merge_state_with_log, static):
11513         (find_recover_state, check_subexp_matching_top, transit_state_mb):
11514         (transit_state_bkref, get_subexp, get_subexp_sub, find_subexp_node):
11515         (check_arrival, check_arrival_add_next_nodes):
11516         (check_arrival_expand_ecl, check_arrival_expand_ecl_sub):
11517         (expand_bkref_cache, build_trtable, group_nodes_into_DFAstates):
11518         (check_node_accept_bytes, check_node_accept, extend_buffers):
11519         (match_ctx_init, match_ctx_clean, match_ctx_free, match_ctx_add_entry):
11520         (search_cur_bkref_entry, match_ctx_add_subtop, match_ctx_add_sublast):
11521         (sift_ctx_init):
11522         Likewise.
11523
11524         * lib/regex_internal.h:
11525         (re_string_allocate, re_string_construct, re_string_reconstruct):
11526         (re_string_realloc_buffers, build_wcs_buffer, build_wcs_upper_buffer):
11527         (build_upper_buffer, re_string_translate_buffer, re_string_destruct):
11528         (re_string_elem_size_at, re_string_char_size_at, re_string_wchar_at):
11529         (re_string_context_at, re_string_peek_byte_case):
11530         (re_string_fetch_byte_case): Declare even if RE_NO_INTERNAL_PROTOTYPES
11531         is defined, since we now use prototypes always.
11532
11533         * lib/regex.h (_RE_ARGS): Remove.  No longer needed, since we assume
11534         C89 or better.  All uses removed.
11535
11536 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
11537
11538         * config/srclist.txt: Add glibc bugs 1220-1227.
11539
11540 2005-08-20  Jim Meyering  <jim@meyering.net>
11541
11542         * lib/regexec.c (regexec, re_search_stub) [!_LIBC]: Omit declaration
11543         of unused local, dfa.
11544
11545 2005-08-20  Bruno Haible  <bruno@clisp.org>
11546
11547         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_GNU_SOURCE.
11548
11549 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
11550
11551         * lib/regex_internal.c (re_string_realloc_buffers, re_node_set_insert):
11552         (re_node_set_insert_last, re_dfa_add_node):
11553         Rename local variables to avoid GCC shadowing warnings.
11554
11555 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
11556
11557         * lib/regex_internal.c (re_acquire_state, re_acquire_state_context)
11558         [defined lint]: Suppress bogus uninitialized-variable warnings.
11559
11560         * lib/regcomp.c (duplicate_node): Return new index, not an error code,
11561         and let the caller return REG_ESPACE if out of space.  This
11562         removes an uninitialied-variable warning with GCC 4.0.1, and also
11563         avoids taking the address of a local variable.  All callers
11564         changed.
11565
11566 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
11567
11568         * config/srclist.txt: Comment out $LIBCSRC/posix/regex_internal.c,
11569         $LIBCSRC/posix/regexec.c.
11570         Add glibc bug 1217 for regcomp.c.
11571
11572 2005-08-19  Jim Meyering  <jim@meyering.net>
11573
11574         * lib/regexec.c (proceed_next_node): Redo local variables to
11575         avoid GCC shadowing warnings.
11576
11577 2005-08-18  Bruno Haible  <bruno@clisp.org>
11578
11579         * lib/strstr.c (strstr): Fix return value in multibyte case.
11580         * lib/strcasestr.c (strcasestr): Likewise.
11581
11582 2005-08-17  Paul Eggert  <eggert@cs.ucla.edu>
11583
11584         * lib/regex.h: Remove useless space-before-tab.  From coreutils.
11585
11586 2005-08-17  Jim Meyering  <jim@meyering.net>
11587
11588         Make the %s format (seconds since the epoch) work for a negative
11589         number and when used with a zero-padded field width, e.g. %015s.
11590
11591         * lib/strftime.c (my_strftime): Move the `do_number_sign_and_padding'
11592         label so that it precedes the code to set `digits'.  Otherwise,
11593         %0Ns wouldn't work.  Before this change, `date -d @-22 +%05s' would
11594         print `00-22'.  Now, it prints `-0022', as it should.
11595
11596 2005-08-17  Bruno Haible  <bruno@clisp.org>
11597
11598         * modules/strstr (Files): Add m4/mbrtowc.m4.
11599         (Depends-on): Add mbuiter.
11600
11601 2005-08-17  Bruno Haible  <bruno@clisp.org>
11602
11603         * modules/strcasestr: New file.
11604         * MODULES.html.sh (String handling, based on ANSI C 89): Add
11605         strcasestr.
11606
11607 2005-08-17  Bruno Haible  <bruno@clisp.org>
11608
11609         * modules/strcase (Depends-on): Add mbuiter. Remove strnlen1, mbchar.
11610
11611 2005-08-17  Bruno Haible  <bruno@clisp.org>
11612
11613         * modules/mbuiter: New file.
11614         * MODULES.html.sh (Extended multibyte and wide character utilities):
11615         Add mbuiter.
11616
11617 2005-08-17  Bruno Haible  <bruno@clisp.org>
11618
11619         * m4/strstr.m4 (gl_FUNC_STRSTR): Use the replacement function always.
11620         (gl_PREREQ_STRSTR): Use gl_FUNC_MBRTOWC.
11621
11622 2005-08-17  Bruno Haible  <bruno@clisp.org>
11623
11624         * m4/strcasestr.m4: New file.
11625
11626 2005-08-17  Bruno Haible  <bruno@clisp.org>
11627
11628         * lib/strstr.h: Ignore HAVE_STRSTR, always declare the gnulib function.
11629         * lib/strstr.c: Completely rewritten, with multibyte locale support.
11630
11631 2005-08-17  Bruno Haible  <bruno@clisp.org>
11632
11633         * lib/strcasestr.h: New file.
11634         * lib/strcasestr.c: New file.
11635
11636 2005-08-17  Bruno Haible  <bruno@clisp.org>
11637
11638         * lib/strcasecmp.c: Use mbuiter.h.
11639
11640 2005-08-17  Bruno Haible  <bruno@clisp.org>
11641
11642         * lib/mbuiter.h: New file.
11643
11644 2005-08-16  Paul Eggert  <eggert@cs.ucla.edu>
11645
11646         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Do not override the results
11647         of gl_GETOPT_SUBSTITUTE.  That way, if both gl_GETOPT_SUBSTITUTE
11648         and gl_GETOPT are both invoked via different paths (as happens
11649         with GNU tar CVS because it uses both argp and getopt), the former
11650         wins.
11651
11652 2005-08-16  Bruno Haible  <bruno@clisp.org>
11653
11654         * modules/tls: New file.
11655         * MODULES.html.sh (Multithreading): Add tls.
11656
11657 2005-08-16  Bruno Haible  <bruno@clisp.org>
11658
11659         * modules/strnlen1: New file.
11660         * MODULES.html.sh (String handling): Add strnlen1.
11661
11662 2005-08-16  Bruno Haible  <bruno@clisp.org>
11663
11664         * modules/strcase (Files): Add m4/mbrtowc.m4.
11665         (Depends-on): Add strnlen1, mbchar.
11666
11667 2005-08-16  Bruno Haible  <bruno@clisp.org>
11668
11669         * modules/mbiter: New file.
11670         * MODULES.html.sh (Extended multibyte and wide character utilities):
11671         Add mbiter.
11672
11673 2005-08-16  Bruno Haible  <bruno@clisp.org>
11674
11675         * modules/mbfile: New file.
11676         * MODULES.html.sh (Extended multibyte and wide character utilities):
11677         Add mbfile.
11678
11679 2005-08-16  Bruno Haible  <bruno@clisp.org>
11680
11681         * modules/mbchar: New file.
11682         * MODULES.html.sh (Extended multibyte and wide character utilities):
11683         New section.
11684
11685 2005-08-16  Bruno Haible  <bruno@clisp.org>
11686
11687         * m4/tls.m4: New file, from GNU gettext.
11688
11689 2005-08-16  Bruno Haible  <bruno@clisp.org>
11690
11691         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Use the replacement function
11692         always.
11693         (gl_PREREQ_STRCASECMP): Use gl_FUNC_MBRTOWC.
11694
11695 2005-08-16  Bruno Haible  <bruno@clisp.org>
11696
11697         * m4/mbiter.m4: New file.
11698
11699 2005-08-16  Bruno Haible  <bruno@clisp.org>
11700
11701         * m4/mbfile.m4: New file.
11702
11703 2005-08-16  Bruno Haible  <bruno@clisp.org>
11704
11705         * m4/mbchar.m4: New file.
11706
11707 2005-08-16  Bruno Haible  <bruno@clisp.org>
11708
11709         * lib/tls.h: New file, from GNU gettext.
11710         * lib/tls.c: New file, from GNU gettext.
11711
11712 2005-08-16  Bruno Haible  <bruno@clisp.org>
11713
11714         * lib/strnlen1.h: New file.
11715         * lib/strnlen1.c: New file.
11716
11717 2005-08-16  Bruno Haible  <bruno@clisp.org>
11718
11719         * lib/strcasecmp.c (struct mbiter_multi): Remove at_end field.
11720         (mbi_init): Update.
11721         (mbi_avail, mbi_advance): Let the iteration end before the terminating
11722         NUL byte, not after it.
11723
11724 2005-08-16  Bruno Haible  <bruno@clisp.org>
11725
11726         * lib/strcase.h (strcasecmp): Add note in comments.
11727         * lib/strncasecmp.c: Use code from strcasecmp.c.
11728         * lib/strcasecmp.c: Use mbchar module. Define private mbiter variant.
11729         (strcasecmp): Work correctly in multibyte locales.
11730
11731 2005-08-16  Bruno Haible  <bruno@clisp.org>
11732
11733         * lib/mbiter.h: New file.
11734
11735 2005-08-16  Bruno Haible  <bruno@clisp.org>
11736
11737         * lib/mbfile.h: New file.
11738
11739 2005-08-16  Bruno Haible  <bruno@clisp.org>
11740
11741         * lib/mbchar.h: New file.
11742         * lib/mbchar.c: New file.
11743
11744 2005-08-16  Bruno Haible  <bruno@clisp.org>
11745
11746         * lib/mbchar.h (mb_cmp, mb_casecmp): Order the invalid characters after
11747         the valid ones. Makes the comparison operations transitive:
11748         cmp (a, b) < 0 && cmp (b, c) < 0 ==> cmp (a, c) < 0.
11749         * lib/strcasecmp.c (strcasecmp): Use mb_casecmp.
11750
11751 2005-08-15  Simon Josefsson  <jas@extundo.com>
11752
11753         * modules/ssize_t (License): Change to 'unlimited'.
11754
11755         * gnulib-tool (sed_extract_prog): Recognize 'unlimited' license.
11756
11757 2005-08-15  Paul Eggert  <eggert@cs.ucla.edu>
11758
11759         * config/srclist.txt: Comment out $LIBCSRC/posix/regex.h.
11760         Add comments for each pending glibc patch.
11761
11762 2005-08-15  Bruno Haible  <bruno@clisp.org>
11763
11764         * lib/regex.h (__restrict_arr): Don't define to __restrict if
11765         __cplusplus is defined.
11766
11767 2005-08-14  Jim Meyering  <jim@meyering.net>
11768
11769         Sync from coreutils.
11770
11771         * lib/fts-cycle.c (setup_dir, enter_dir, leave_dir, free_dir):
11772         Use the hash-table-based cycle-detection code not just when
11773         FTS_TIGHT_CYCLE_CHECK if specified, but also with FTS_LOGICAL.
11774         Reported by James Youngman in
11775         <http://lists.gnu.org/archive/html/bug-gnulib/2005-08/msg00011.html>.
11776         * lib/fts_.h: Mention that with FTS_LOGICAL, we use
11777         FTS_TIGHT_CYCLE_CHECK.
11778         * lib/fts.c (fts_cross_check) [FTS_DEBUG]:
11779         s/active_dir_ht/fts_cycle.ht/. This lets us compile with -DFTS_DEBUG,
11780         once again.
11781         * lib/fts.c [! _LIBC]: Include "lstat.h" rather than rolling our own.
11782         * lib/fts.c (fd_safer): Remove decl.
11783         Include fcntl--.h rather than unistd-safer.h
11784         (fts_safe_changedir): Don't call fd_safer; no longer needed
11785         now that we include fcntl--.h.
11786
11787 2005-08-12  Simon Josefsson  <jas@extundo.com>
11788
11789         * modules/getndelim2: Use ssize_t module.
11790         * modules/getnline: Likewise.
11791         * modules/safe-read: Likewise.
11792         * modules/xreadlink: Likewise.
11793
11794         * modules/ssize_t: New file.
11795
11796 2005-08-12  Simon Josefsson  <jas@extundo.com>
11797
11798         * m4/readline.m4: Look for termcap, curses or ncurses if required.
11799
11800 2005-08-12  Simon Josefsson  <jas@extundo.com>
11801
11802         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
11803         ssize_t.
11804
11805 2005-08-12  Simon Josefsson  <jas@extundo.com>
11806
11807         * MODULES.html.sh (Extra functions based on ANSI C 89: Misc): Add
11808         readline, getdelim and check_version.
11809         (Support for systems lacking ISO C 99: Sizes of integer types):
11810         Add size_max.
11811
11812 2005-08-12  Bruno Haible  <bruno@clisp.org>
11813
11814         * m4/readline.m4 (gl_FUNC_READLINE): Look for ncurses first.
11815
11816 2005-08-11  Simon Josefsson  <jas@extundo.com>
11817
11818         * modules/readline: New file.
11819
11820         * modules/strnlen (Files): Add strnlen.h.
11821
11822 2005-08-11  Simon Josefsson  <jas@extundo.com>
11823
11824         * m4/readline.m4: New file.
11825
11826 2005-08-11  Simon Josefsson  <jas@extundo.com>
11827
11828         * lib/readline.h, readline.c: New file.
11829
11830 2005-08-11  Simon Josefsson  <jas@extundo.com>
11831
11832         * doc/gnulib.texi (Initial import, Finishing touches): Mention
11833         gl_AVOID.
11834
11835 2005-08-11  Bruno Haible  <bruno@clisp.org>
11836
11837         * lib/strnlen.h (strnlen): Change parameter name to match comment.
11838
11839 2005-08-10  Stepan Kasal  <kasal@ucw.cz>
11840
11841         * m4/onceonly_2_57.m4: Really require Autoconf 2.57.
11842
11843 2005-08-10  Simon Josefsson  <jas@extundo.com>
11844
11845         * tests/test-iconvme.c: New file.
11846
11847 2005-08-10  Simon Josefsson  <jas@extundo.com>
11848
11849         * m4/strnlen.m4: New file.
11850
11851         * m4/strndup.m4: Don't check for strnlen declaration, done in
11852         strnlen.m4.
11853
11854 2005-08-10  Simon Josefsson  <jas@extundo.com>
11855
11856         * lib/strndup.c: Use strnlen.h.
11857
11858         * lib/strnlen.h: New file.
11859
11860 2005-08-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
11861
11862         * README: Typos.
11863
11864 2005-08-02  Simon Josefsson  <jas@extundo.com>
11865
11866         * modules/readline: New file.
11867
11868 2005-08-02  Simon Josefsson  <jas@extundo.com>
11869
11870         * modules/getdelim: New file.
11871
11872         * modules/getline: Rewrite, don't use getndelim2.
11873
11874 2005-08-02  Simon Josefsson  <jas@extundo.com>
11875
11876         * m4/getline.m4: Separate out getdelim stuff into separate module.
11877
11878         * m4/getdelim.m4: New file.
11879
11880 2005-08-02  Simon Josefsson  <jas@extundo.com>
11881
11882         * lib/getline.h, getline.c: Rewrite.
11883
11884         * lib/getdelim.h, lib/getdelim.c: New files, ported from glibc.
11885
11886 2005-07-31  Bruno Haible  <bruno@clisp.org>
11887
11888         * lib/lock.h (gl_lock_initializer): New macro.
11889         (gl_lock_define_initialized): Use it.
11890         (gl_rwlock_initializer): New macro.
11891         (gl_rwlock_define_initialized): Use it.
11892         (gl_recursive_lock_initializer): New macro.
11893         (gl_recursive_lock_define_initialized): Use it.
11894
11895 2005-07-30  Karl Berry  <karl@gnu.org>
11896
11897         * doc/gnulib.texi (Initial import): mention -I$(top_builddir)/lib.
11898         Report from Ben Pfaff, regarding getopt.
11899
11900 2005-07-26  Paul Eggert  <eggert@cs.ucla.edu>
11901
11902         Add support to getopt for Emacs, which doesn't use LIBOBJS in the
11903         normal way.
11904         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE_HEADER): New macro.
11905         (gl_GETOPT_SUBSTITUTE): Use it.  Invoke gl_PREREQ_GETOPT.
11906         (gl_GETOPT_IFELSE, gl_GETOPT_CHECK_HEADERS): New macros.
11907         (gl_GETOPT): Use the new macros.  Most of the implementation
11908         is moved to the new macros.  This is for programs like Emacs
11909         that don't want all the functionality of gl_GETOPT.
11910
11911 2005-07-26  Bruno Haible  <bruno@clisp.org>
11912
11913         * m4/lock.m4: Update from GNU gettext.
11914
11915 2005-07-26  Bruno Haible  <bruno@clisp.org>
11916
11917         * lib/lock.h: Update from GNU gettext.
11918         * lib/lock.c: Update from GNU gettext.
11919
11920 2005-07-25  Paul Eggert  <eggert@cs.ucla.edu>
11921
11922         * m4/regex.m4 (gl_INCLUDED_REGEX): Use AC_RUN_IFELSE instead of the
11923         obsolescent AC_TRY_RUN.  Include the default includes files, for
11924         'exit'.
11925
11926 2005-07-24  Bruno Haible  <bruno@clisp.org>
11927
11928         * modules/visibility: New file.
11929         * MODULES.html.sh (Misc): Add visibility.
11930
11931 2005-07-24  Bruno Haible  <bruno@clisp.org>
11932
11933         * m4/visibility.m4: New file.
11934
11935 2005-07-24  Bruno Haible  <bruno@clisp.org>
11936
11937         * doc/visibility.texi: New file.
11938
11939 2005-07-22  Bruno Haible  <bruno@clisp.org>
11940
11941         * modules/alloca-opt (Makefile.am): Remove explicit dependency on
11942         $(ALLOCA_H), redundant through BUILT_SOURCES.
11943         * modules/argz (Makefile.am): Remove explicit dependency on $(ARGZ_H),
11944         redundant through BUILT_SOURCES.
11945         * modules/byteswap (Makefile.am): Remove explicit dependency on
11946         $(BYTESWAP_H), redundant through BUILT_SOURCES.
11947         * modules/fnmatch (Makefile.am): Remove explicit dependency on
11948         $(FNMATCH_H), redundant through BUILT_SOURCES.
11949         * modules/getopt (Makefile.am): Remove explicit dependency on
11950         $(GETOPT_H), redundant through BUILT_SOURCES.
11951         * modules/glob (Makefile.am): Remove explicit dependency on $(GLOB_H),
11952         redundant through BUILT_SOURCES.
11953         * modules/poll (Makefile.am): Remove explicit dependency on $(POLL_H),
11954         redundant through BUILT_SOURCES.
11955         * modules/stdbool (Makefile.am): Remove explicit dependency on
11956         $(STDBOOL_H), redundant through BUILT_SOURCES.
11957         * modules/stdint (Makefile.am): Remove explicit dependency on
11958         $(STDINT_H), redundant through BUILT_SOURCES.
11959         * modules/sysexits (Makefile.am): Add $(SYSEXITS_H) to BUILT_SOURCES.
11960         Remove explicit dependency on $(SYSEXITS_H).
11961         Reported by Alexandre Duret-Lutz <adl@src.lip6.fr>.
11962
11963 2005-07-18  Simon Josefsson  <jas@extundo.com>
11964
11965         * lib/check-version.c (check_version): Accept identical versions too.
11966
11967 2005-07-18  Bruno Haible  <bruno@clisp.org>
11968
11969         * modules/lock: New file.
11970         * MODULES.html.sh (Multithreading): New section.
11971
11972 2005-07-18  Bruno Haible  <bruno@clisp.org>
11973
11974         * m4/lock.m4: New file, from GNU gettext.
11975
11976 2005-07-18  Bruno Haible  <bruno@clisp.org>
11977
11978         * lib/lock.h: New file, from GNU gettext.
11979         * lib/lock.c: New file, from GNU gettext.
11980
11981 2005-07-18  Bruno Haible  <bruno@clisp.org>
11982
11983         * lib/lock.h (gl_once_t): New type.
11984         (gl_once_define, gl_once): New macros.
11985         * lib/lock.c (fresh_once): New variable.
11986         (glthread_once, glthread_once_call, glthread_once_singlethreaded): New
11987         functions.
11988
11989 2005-07-16  Simon Josefsson  <jas@extundo.com>
11990
11991         * doc/gnulib.texi (Library version handling): Add ELF symbol collision
11992         workaround, suggested by Bruno.
11993
11994 2005-07-15  Paul Eggert  <eggert@cs.ucla.edu>
11995
11996         * modules/xalloc (Depends-on): Add xalloc-die.
11997         * modules/xvasprintf (Depends-on): Add xalloc-die.
11998
11999 2005-07-15  Paul Eggert  <eggert@cs.ucla.edu>
12000
12001         * lib/quotearg.c: Add translator comment suggested by Bruno Haible,
12002         with a minor change.
12003
12004 2005-07-15  Bruno Haible  <bruno@clisp.org>
12005
12006         * m4/poll.m4 (gl_FUNC_POLL): Check against MacOS X 10.4 poll() bug.
12007         When using lib/poll.c, define poll as rpl_poll.
12008
12009 2005-07-14  Paul Eggert  <eggert@cs.ucla.edu>
12010
12011         * modules/argp (Depends-on): Remove unlocked-io.
12012
12013 2005-07-14  Derek Price  <derek@ximbiot.com>
12014
12015         * m4/glob.m4 (gl_GLOB): Cache glob interface check result.  Add check
12016         for glob symlink bug.
12017
12018 2005-07-14  Bruno Haible  <bruno@clisp.org>
12019
12020         * m4/argp.m4 (gl_ARGP): Remove invocation of gl_FUNC_GLIBC_UNLOCKED_IO.
12021         Instead, test for *_unlocked function declarations directly.
12022
12023 2005-07-11  Simon Josefsson  <jas@extundo.com>
12024
12025         * modules/size_max: New file.
12026
12027         * modules/xsize: Depend on size_max module for size_max.m4.
12028
12029 2005-07-11  Simon Josefsson  <jas@extundo.com>
12030
12031         * lib/size_max.h: New file.
12032
12033 2005-07-11  Paul Eggert  <eggert@cs.ucla.edu>
12034
12035         * lib/version-etc-fsf.c (version_etc_copyright): Parameterize the
12036         copyright symbol and the year.
12037         * lib/version-etc.c (COPYRIGHT_YEAR): New constant.
12038         (version_etc_va): Use parameterized copyright notice.
12039         Reword to conform to the current GNU coding standards.
12040
12041 2005-07-11  Karl Berry  <karl@gnu.org>
12042
12043         * doc/gnulib.texi (Quoting): new node.
12044         (Initial import): more info, from Patrice.
12045
12046 2005-07-11  Bruno Haible  <bruno@clisp.org>
12047
12048         * gnulib-tool (func_usage): Document option --avoid.
12049         (Command line options): Handle --avoid.
12050         (func_acceptable): New function.
12051         (func_modules_transitive_closure): Use it.
12052
12053 2005-07-11  Bruno Haible  <bruno@clisp.org>
12054
12055         * MODULES.html.sh: Use shortcut URLs to the www.opengroup.org site.
12056         Reported by Jim Meyering.
12057
12058 2005-07-10  Bruno Haible  <bruno@clisp.org>
12059
12060         * m4/size_max.m4 (gl_SIZE_MAX): Cast ~(size_t)0 back to size_t.
12061         Needed when size_t is smaller than 'unsigned int'.
12062         Reported by Paul Eggert.
12063
12064 2005-07-09  Sergey Poznyakoff  <gray@gnu.org.ua>
12065
12066         * modules/argp (Depends-on): Add unlocked-io
12067
12068 2005-07-09  Sergey Poznyakoff  <gray@gnu.org.ua>
12069
12070         * lib/argp-namefrob.h: Include unlocked-io.h. Removed unnecessary
12071         block of defines.
12072
12073 2005-07-08  Paul Eggert  <eggert@cs.ucla.edu>
12074
12075         * config/srclist.txt: Comment out regcomp.c, since we have a porting
12076         fix now.
12077
12078 2005-07-08  Eric Blake  <ebb9@byu.net>  (tiny change)
12079         and Paul Eggert  <eggert@cs.ucla.edu>
12080
12081         * lib/regcomp.c (init_dfa, build_range_exp): Store __btowc value
12082         in wint_t, not wchar_t.  Remove now-unnecessary cast.
12083
12084 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
12085
12086         * modules/regex (Files): Add lib/regex_internal.c,
12087         lib/regex_internal.h, lib/regexec.c, lib/regcomp.c, m4/codeset.m4.
12088         (Depends-on): Add extensions.
12089         (Makefile.am): Remove lib_SOURCES; now done by m4 code.
12090
12091 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
12092
12093         * m4/backupfile.m4 (gl_BACKUPFILE): Use AC_CHECK_FUNCS_ONCE on
12094         pathconf.
12095         * m4/same.m4 (gl_SAME): Likewise.
12096         Require AC_SYS_LONG_FILE_NAMES; bug reported by Gerrit P. Haase.
12097
12098         * m4/regex.m4: Adjust to new libc regex implementation.
12099         (gl_INCLUDED_REGEX): Add AC_LIBSOURCES for
12100         all the .c and .h parts of (the new) regex.
12101         Quote the m4 stuff better.
12102         Check for RE_ICASE bug of old gnulib.
12103         Check for REG_STARTEND of recent libc.
12104         Rename local variables from jm_* to gl_*.
12105         Quote operand of "test -f".
12106         Say "recent enough" version of libc, not "version 2".
12107         (gl_PREREQ_REGEX): Remove AC_FUNC_ALLOCA, since alloca is a
12108         prerequisite module.  Remove AC_HEADER_STDC; no longer needed.
12109         Check for locale.h, isblank, mbrtowc, wcrtomb, wcscoll.
12110         Remove check for btowc, isascii.
12111         Require AM_LANGINFO_CODESET.
12112
12113 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
12114
12115         * lib/regex.c, regex.h: Sync from libc.
12116         * lib/regcomp.c, lib/regexec_internal.c, lib/regex_internal.h:
12117         * lib/regexec.c:
12118         New files, synced from libc, except that regex_internal.h
12119         currently has a small porting fix.
12120
12121 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
12122
12123         * config/srclist.txt: Add regcomp.c, regex.c, regex.h,
12124         regex_internal.c, regexec.c.
12125         Add regex_internal.h too, but as a comment, since the libc version
12126         is currently broken in gnulib mode.
12127
12128 2005-07-06  Paul Eggert  <eggert@cs.ucla.edu>
12129
12130         Support programs like Emacs that use gnulib but not gettext.
12131         * MODULES.html.sh (Internationalization functions): Add gettext-h.
12132         * modules/gettext-h: New file.
12133         * modules/gettext (Files): Remove lib/gettext.h.
12134         (Depends-on): Add gettext-h.
12135         (Makefile.am): Remove lib_SOURCES.
12136         * modules/argmatch, modules/c-stack, modules/closeout:
12137         * modules/copy-file, modules/csharpcomp, modules/csharpexec:
12138         * modules/execute, modules/file-type, modules/getaddrinfo:
12139         * modules/getopt, modules/human, modules/javacomp:
12140         * modules/javaexec, modules/mkdir-p, modules/obstack:
12141         * modules/openat, modules/pagealign_alloc, modules/pipe:
12142         * modules/quotearg, modules/regex, modules/rpmatch:
12143         * modules/unicodeio, modules/userspec, modules/version-etc:
12144         * modules/wait-process, modules/xalloc-die, modules/xmemcoll:
12145         * modules/xsetenv:
12146         Depend on gettext-h, not gettext.
12147
12148 2005-07-05  Paul Eggert  <eggert@cs.ucla.edu>
12149
12150         * gnulib-tool (func_import): Add support for 'public domain' license.
12151         * modules/alloca, modules/atexit, modules/memmove:
12152         Now public domain, not GPL.
12153         * modules/dup2, modules/getpagesize, modules/malloc, modules/memset:
12154         * modules/realloc, modules/strerror, modules/strtod:
12155         Now LGPL, not GPL.
12156
12157 2005-07-05  Bruno Haible  <bruno@clisp.org>
12158
12159         * m4/mbrtowc.m4 (gl_FUNC_MBRTOWC): Upgrade to version from current
12160         autoconf CVS. Needed for mingw.
12161
12162 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
12163
12164         Remove the dependency of the strftime module on the tzset module.
12165         * modules/strftime (Depends-on): Remove dependency on tzset.
12166
12167 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
12168
12169         Remove the dependency of the strftime module on the tzset module.
12170         * m4/strftime.m4 (gl_FUNC_STRFTIME): Don't require
12171         gl_FUNC_TZSET_CLOBBER.
12172
12173 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
12174
12175         Remove the dependency of the strftime module on the tzset module.
12176         * lib/strftime.c (my_strftime)
12177         [! defined _LIBC && ! HAVE_RUN_TZSET_TEST]:
12178         Copy the input structure, to work around some of the bug with
12179         Solaris 2.5.1 and Solaris 2.6.  If you still care about these old
12180         Solaris releases, you should also use the tzset module, but we won't
12181         require it as a dependency any more since we don't want LGPLed code
12182         to depend on GPLed code.
12183
12184 2005-07-02  Jim Meyering  <jim@meyering.net>
12185
12186         * m4/chown.m4, cloexec.m4, dup2.m4, fsusage.m4:
12187         * m4/getcwd-path-max.m4, getcwd.m4, mkstemp.m4, mountlist.m4:
12188         * m4/pagealign_alloc.m4, save-cwd.m4, unistd-safer.m4:
12189         Don't check for fcntl.h, and don't test for HAVE_FCNTL_H.
12190
12191 2005-07-02  Jim Meyering  <jim@meyering.net>
12192
12193         * lib/backupfile.c (backup_args): Change a `0' to NULL.
12194
12195 2005-07-01  Paul Eggert  <eggert@cs.ucla.edu>
12196
12197         * lib/xnanosleep.c: Include timespec.h, since OpenBSD 3.4 <time.h>
12198         declares only 'struct timespec;' (!).
12199
12200 2005-07-01  Jim Meyering  <jim@meyering.net>
12201
12202         * lib/chown.c, cloexec.c, dup-safer.c, dup2.c, fsusage.c, getcwd.c:
12203         * lib/getloadavg.c, mountlist.c, openat.h, pagealign_alloc.c:
12204         * lib/save-cwd.c, tempname.c:
12205         Assume HAVE_FCNTL_H (i.e., include <fcntl.h> unconditionally,
12206         and don't include <sys/file.h>).
12207
12208 2005-06-29  Jim Meyering  <jim@meyering.net>
12209
12210         * lib/mkdir-p.c (make_dir_parents): Don't apply sizeof to a hard-coded
12211         type name.  Use the variable name instead.
12212         * lib/idcache.c (getuser, getuidbyname, getgroup, getgidbyname):
12213         Likewise.
12214
12215 2005-06-28  Simon Josefsson  <jas@extundo.com>
12216
12217         * modules/check-version (Files): Add check-version.m4.
12218
12219 2005-06-28  Simon Josefsson  <jas@extundo.com>
12220
12221         * m4/check-version.m4: New file, suggested by Jim Meyering
12222         <jim@meyering.net>.
12223
12224 2005-06-28  Simon Josefsson  <jas@extundo.com>
12225
12226         * lib/check-version.h, lib/check-version.c: New files.
12227
12228 2005-06-28  Simon Josefsson  <jas@extundo.com>
12229
12230         * lib/base64.c (base64_encode): Indent.  Rename 'b64' to avoid
12231         collision with global variable.  Better indentation.  Don't
12232         increment buffer pointer beyond buffer end.  Based on comments
12233         from Paul Eggert <eggert@cs.ucla.edu>.
12234
12235         * lib/base64.h: Indent.
12236
12237 2005-06-28  Simon Josefsson  <jas@extundo.com>
12238
12239         * doc/gnulib.texi (Library version handling): New section.
12240
12241 2005-06-28  Jim Meyering  <jim@meyering.net>
12242
12243         * check-module (find_included_lib_files): Hard-code another
12244         pair of exceptions: fts.c includes fts-cycle.c and unistd-safer.h
12245         but modules/fts-lgpl (correctly) does not list those files.
12246
12247         * modules/canonicalize (Files): Add lib/pathmax.h.
12248
12249 2005-06-25  Simon Josefsson  <jas@extundo.com>
12250
12251         * modules/check-version: New file.
12252
12253 2005-06-24  Paul Eggert  <eggert@cs.ucla.edu>
12254
12255         * lib/canon-host.c (canon-host): Append trailing "," to 0 in
12256         initializer of struct addrinfo, as an indication that we don't
12257         care how many members the structure has.
12258
12259 2005-06-24  Derek Price  <derek@ximbiot.com>
12260         and Bruno Haible  <bruno@clisp.org>
12261
12262         Remove stat module & update lstat.
12263         * m4/lstat.m4 (gl_FUNC_LSTAT): Drop AC_FUNC_LSTAT in favor of
12264         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
12265         * m4/stat.m4: Remove this file.
12266
12267 2005-06-24  Derek Price  <derek@ximbiot.com>
12268         and Bruno Haible  <bruno@clisp.org>
12269
12270         Remove stat module & update lstat.
12271         * lib/stat.c: Remove this file...
12272         (slash_aware_lstat): ...moving this content and its support...
12273         * lib/lstat.c (rpl_lstat): ...into here.
12274         * lib/lstat.h: New file.
12275
12276 2005-06-24  Derek Price  <derek@ximbiot.com>
12277         and Bruno Haible  <bruno@clisp.org>
12278
12279         Remove stat module & update lstat.
12280         * config/srclist.txt (libc sources): Remove stat.
12281
12282 2005-06-24  Derek Price  <derek@ximbiot.com>
12283         and Bruno Haible  <bruno@clisp.org>
12284
12285         Remove stat module & update lstat.
12286         * MODULES.html.sh (stat): Remove.
12287         * MODULES.html: Regenerated.
12288         * modules/lstat (Description): Correct function name.
12289         (Files): Add "lstat.h".
12290         (Depends-on): Remove stat, add xalloc, stat-macros.
12291         * modules/stat: Remove this file.
12292         (Include): Add "lstat.h", remove <sys/stat.h>.
12293
12294 2005-06-23  Paul Eggert  <eggert@cs.ucla.edu>
12295
12296         * lib/mktime.c: Include <string.h> even if !DEBUG.  (From glibc.)
12297         (ranged_convert): Don't save conversion in a temporary struct.
12298         This causes a warning with GCC 4.0.0, and anyway in the typical
12299         case it's not worth the extra 100 bytes or so of code.
12300         (ranged_convert, __mktime_internal): When calling a function via a
12301         pointer P, use P () rather than (*P) (), as we now assume C89 or
12302         better.
12303
12304 2005-06-22  Paul Eggert  <eggert@cs.ucla.edu>
12305
12306         * lib/readutmp.c (desirable_utmp_entry): Fix bug where "who -b" and
12307         "who -r" failed to give output.  Problem reported by Tim Waugh.
12308
12309         * lib/xmalloc.c (HAVE_GNU_CALLOC): New constant.
12310         (xcalloc): Use it to avoid needless tests.
12311         Problem reported by Jim Meyering.
12312
12313 2005-06-20  Derek Price  <derek@ximbiot.com>
12314
12315         * m4/bison.m4: Note that precious decls of YACC & YFLAGS will be
12316         unnecessary for Autoconfs > 2.59c.
12317
12318 2005-06-16  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
12319
12320         * lib/argp.h (__option_is_short): Check upper limit of
12321         __key. Isprint() requires its argument to have the value
12322         of an unsigned char or EOF.
12323
12324 2005-06-16  Jim Meyering  <jim@meyering.net>
12325
12326         * lib/calloc.c (rpl_calloc): Allocate a 1-byte buffer (not 1xS or Nx1)
12327         when either N or S is zero.
12328
12329 2005-06-16  Derek Price  <derek@ximbiot.com>
12330
12331         * m4/bison.m4: Declare YACC & YFLAGS precious.
12332
12333 2005-06-10  Paul Eggert  <eggert@cs.ucla.edu>
12334
12335         * lib/fnmatch.c (fnmatch): If there is an encoding error in a
12336         multibyte string or pattern, fall back on unibyte matching.
12337         Problem reported by James Youngman.
12338
12339 2005-06-08  Bruno Haible  <bruno@clisp.org>
12340
12341         * modules/csharpcomp: New file.
12342         * MODULES.html.sh (C#): Add csharpcomp.
12343
12344 2005-06-08  Bruno Haible  <bruno@clisp.org>
12345
12346         * m4/csharpcomp.m4: New file, from GNU gettext.
12347
12348 2005-06-08  Bruno Haible  <bruno@clisp.org>
12349
12350         * lib/csharpcomp.h: New file, from GNU gettext.
12351         * lib/csharpcomp.c: New file, from GNU gettext.
12352         * lib/csharpcomp.sh.in: New file, from GNU gettext.
12353
12354 2005-06-08  Bruno Haible  <bruno@clisp.org>
12355
12356         * lib/binary-io.h (fileno): Undefine before defining it. Avoids a gcc
12357         warning on mingw.
12358
12359 2005-06-07  Derek Price  <derek@ximbiot.com>
12360
12361         Sync from CVS.
12362         * lib/glob_.h: Indent nested #ifdef.
12363
12364 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
12365
12366         Sync from coreutils.
12367         Use "file name" when talking about file names, instead of "filename"
12368         or "path", as per the GNU coding standards.
12369         * lib/mkdir-p.c: Renamed from makepath.c.
12370         (make_dir_parents): Renamed from make_path.  All callers changed.
12371         * lib/mkdir-p.h: Likewise.  All includers changed.
12372         * lib/filenamecat.c: Renamed from path-concat.c.
12373         (file_name_concat): Renamed from path_concat.  All callers changed.
12374         [TEST_FILE_NAME_CONCAT]: Renamed from TEST_PATH_CONCAT.
12375         * lib/filenamecat.h: Likewise.  All includers changed.
12376         * lib/acl.c: Don't use "path" or "filename" to mean "file name"
12377         in comments or local variable names.
12378         * lib/basename.c: Likewise.
12379         * lib/canonicalize.c, canonicalize.h: Likewise.
12380         * lib/dirname.c, dirname.h: Likewise.
12381         * lib/euidaccess.c: Likewise.
12382         * lib/exclude.c: Likewise
12383         * lib/fnmatch_.h, fnmatch_loop.c: Likewise.
12384         * lib/fsusage.c, fsuage.h: Likewise.
12385         * lib/fts.c, fts_.h: Likewise.
12386         * lib/getcwd.c: Likewise.
12387         * lib/getloadavg.c: Likewise.
12388         * lib/mkstemp.c: Likewise.
12389         * lib/mountlist.c, mountlist.h: Likewise.
12390         * lib/openat.c, openat.h: Likewise.
12391         * lib/readlink-stub.c: Likewise.
12392         * lib/readutmp.c, readutmp.h: Likewise.
12393         * lib/rename.c: Likewise.
12394         * lib/rmdir.c: Likewise.
12395         * lib/same.c: Likewise.
12396         * lib/savedir.c: Likewise.
12397         * lib/stripslash.c: Likewise.
12398         * lib/tempname.c: Likewise.
12399         * lib/xreadlink.c: Likewise.
12400         * lib/exclude.c (excluded_file_name): Renamed from excluded_filename.
12401         All uses changed.
12402         * lib/exclude.h: Likewise.
12403
12404         * lib/euidaccess.c (getuid, getgid, getuid, getegid)
12405         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
12406         * lib/idcache.c (getpwuid, getpwnam, getgrgid, getgrnam)
12407         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
12408         * lib/pathmax.h: Include <limits.h> unconditionally, since other
12409         files have been getting away with it for years (MORE/BSD 4.3
12410         is extinct now).
12411         * lib/userspec.c (getpwnam, getgrnam, getgrgid)
12412         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
12413
12414         * lib/pathmax.h (_POSIX_PATH_MAX) [!defined _POSIX_PATH_MAX]:
12415         Define to 256, not 255, as per modern POSIX.
12416
12417 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
12418
12419         Sync from coreutils.
12420         Use "file name" when talking about file names, instead of "filename"
12421         or "path", as per the GNU coding standards.
12422         * MODULES.html.sh: mkdir-p renamed from makepath.
12423         filenamecat renamed from path-concat.
12424         * modules/filenamecat: Renamed from modules/path-concat.
12425         (Files): filenamecat.h and filenamecat.c renamed from
12426         path-concat.h and path-concat.c.
12427         (configure.ac): gl_FILE_NAME_CONCAT, not gl_PATH_CONCAT.
12428         (Include): filenamecat.h, not path-concat.h.
12429         * modules/mkdir-p: Renamed from modules/makepath.
12430         (Files): mkdir-p.h and mkdir-p.c renamed from makepath.h and
12431         makepath.c.
12432         (configure.ac): gl_MKDIR_PARENTS, not gl_MAKEPATH.
12433         (Include): mkdir-p.h, not makepath.h.
12434
12435 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
12436
12437         Sync from coreutils.
12438         * m4/mkdir-p.m4: Renamed from makepath.m4.
12439         (gl_MKDIR_PARENTS): Renamed from gl_MAKEPATH.  All uses changed.
12440         Rename files from makepath.c to mkdir-p.c, and from
12441         makepath.h to mkdir-p.h.
12442         * m4/filenamecat.m4: Renamed from path-concat.m4.
12443         (gl_FILE_NAME_CONCAT): Renamed from gl_PATH_CONCAT.  All uses changed.
12444         Rename files from path-concat.c to filenamecat.c,
12445         and from path-concat.h to filenamecat.h.
12446         * m4/getcwd-path-max.m4: Don't use "path" or "filename" to mean
12447         "file name" in local variables or comments.
12448         * m4/rename.m4: Likewise.
12449
12450 2005-06-01  Bruno Haible  <bruno@clisp.org>
12451
12452         * modules/csharpexec: New file.
12453         * MODULES.html.sh (C#): New section.
12454
12455 2005-06-01  Bruno Haible  <bruno@clisp.org>
12456
12457         * m4/csharp.m4: New file, from GNU gettext.
12458         * m4/csharpexec.m4: New file, from GNU gettext.
12459
12460 2005-06-01  Bruno Haible  <bruno@clisp.org>
12461
12462         * lib/csharpexec.h: New file, from GNU gettext.
12463         * lib/csharpexec.c: New file, from GNU gettext.
12464         * lib/csharpexec.sh.in: New file, from GNU gettext.
12465
12466 2005-05-31  Derek Price  <derek@ximbiot.com>
12467             Paul Eggert  <eggert@cs.ucla.edu>
12468
12469         Sync from cvs.
12470         * m4/glob.m4: s/MISSING_SYS_CDEFS_H/_SYS_CDEFS_H/ and comment.
12471
12472 2005-05-31  Derek Price  <derek@ximbiot.com>
12473             Paul Eggert  <eggert@cs.ucla.edu>
12474
12475         Sync from cvs.
12476         * lib/glob_.h: s/MISSING_SYS_CDEFS_H/_SYS_CDEFS_H/ and comment.
12477
12478 2005-05-29  Derek Price  <derek@ximbiot.com>
12479
12480         * config/srclist.txt (glob_.h, glob.c): Add these files.
12481
12482 2005-05-29  Derek Price  <derek@ximbiot.com>
12483
12484         * MODULES.html.sh: Add glob to Enhanced POSIX.2001 section.
12485         * modules/glob: New file.
12486         * modules/getlogin_r: Add link to POSIX spec in description.
12487
12488 2005-05-29  Derek Price  <derek@ximbiot.com>
12489             Paul Eggert  <eggert@cs.ucla.edu>
12490
12491         * m4/glob.m4: New file.
12492
12493 2005-05-29  Derek Price  <derek@ximbiot.com>
12494             Paul Eggert  <eggert@cs.ucla.edu>
12495
12496         * lib/glob_.h, lib/glob.c: New files.
12497
12498 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
12499
12500         * modules/fts (Files): Remove m4/inttypes-pri.m4.
12501         * modules/fts-lgpl (Depends-on): Remove gettext.
12502
12503 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
12504
12505         * m4/fts.m4 (gl_FUNC_FTS_CORE): Don't check for inttypes.h or stdint.h,
12506         and don't require gt_INTTYPES_PRI.
12507
12508 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
12509
12510         * lib/getlogin_r.c (getlogin_r): Don't set errno to 0 on return.
12511
12512         * lib/fts.c: Don't worry about debugging on pre-C99-compatible hosts;
12513         the configuration hassle isn't worth it.
12514         Include inttypes.h and stdint.h unconditionally if FTS_DEBUG.
12515         (LONGEST_MODIFIER, PRIuMAX): Remove.
12516
12517 2005-05-27  Bruno Haible  <bruno@clisp.org>
12518
12519         * lib/getlogin_r.h: Remove second include of <stddef.h>.
12520
12521 2005-05-26  Paul Eggert  <eggert@cs.ucla.edu>
12522
12523         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Define
12524         _POSIX_PTHREAD_SEMANTICS for Solaris.
12525
12526 2005-05-25  Derek Price  <derek@ximbiot.com>
12527
12528         * MODULES.html.sh: Add getlogin_r to POSIX.2001 support section.
12529
12530 2005-05-25  Derek Price  <derek@ximbiot.com>
12531             Paul Eggert  <eggert@cs.ucla.edu>
12532
12533         * modules/getlogin_r, m4/getlogin_r.m4: New files.
12534         * lib/getlogin_r.c, getlogin_r.h: New files.
12535
12536 2005-05-25  Bruno Haible  <bruno@clisp.org>
12537             Derek Price  <derek@ximbiot.com>
12538
12539         * lib/getlogin_r.h: Simplify API documentation.
12540
12541 2005-05-23  Derek Price  <derek@ximbiot.com>
12542
12543         * modules/minmax (Files): Add m4/minmax.m4.
12544         (configure.ac): Add gl_MINMAX.
12545
12546 2005-05-22  Paul Eggert  <eggert@cs.ucla.edu>
12547
12548         * lib/fts.c (fd_safer) [_LGPL_PACKAGE]: New static function,
12549         so that unistd-safer.h (GPL'ed code) need not be included.
12550
12551 2005-05-22  Bruno Haible  <bruno@clisp.org>
12552
12553         * m4/minmax.m4: New file.
12554         Based on a patch by Derek Price <derek@ximbiot.com>.
12555
12556 2005-05-22  Bruno Haible  <bruno@clisp.org>
12557
12558         * lib/stdint_.h (_STDINT_H_HAVE_INT64): New macro. Use it in #ifdefs.
12559         (INT64_MIN): Fix definition.
12560         Suggested by Paul Eggert <eggert@cs.ucla.edu>.
12561
12562         * lib/stdint_.h (_STDINT_H_NEED_SIGNED_INT_TYPES): Renamed from
12563         NEED_SIGNED_INT_TYPES.
12564
12565         * lib/stdint_.h (_STDINT_H_HAVE_SYSTEM_INTTYPES): Renamed from
12566         HAVE_SYSTEM_INTTYPES.
12567
12568 2005-05-22  Bruno Haible  <bruno@clisp.org>
12569
12570         * lib/minmax.h: Include <limits.h> only when it defines MIN, MAX.
12571         Also include <sys/param.h> if it defines MIN, MAX.
12572         Based on a patch by Derek Price <derek@ximbiot.com>.
12573
12574 2005-05-21  Jim Meyering  <jim@meyering.net>
12575
12576         * modules/fts (Files): Add m4/inttypes-pri.m4.
12577         (Depends-on): Add lstat and remove gettext.  Alphabetize.
12578
12579 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
12580
12581         New fts module.
12582         * lib/fts.c: Don't include "cycle-check.h" or "hash.h".
12583         (setup_dir, free_dir): New functions.
12584         (enter_dir, leave_dir): Define trivial
12585         alternatives of _LGPL_PACKAGE.  Move to fts-cycle.c if !_LGPL_PACKAGE.
12586         (HT_INITIAL_SIZE, ENTER_DIR): Remove.  All uses removed.
12587         (LEAVE_DIR): Fix typo: pass Fts and Ent to leave_dir.
12588         (struct Active_dir, AD_compare, AD_hash, enter_dir, leave_dir):
12589         Move to fts-cycle.c.
12590         (fts_open): Use setup_dir.
12591         (fts_close): Use free_dir.
12592         (fts_read): Have just one copy of the ENTER_DIR code rather than three.
12593         This adds a label and some gotos, but the alternatives were messier.
12594         Check for memory allocation failure when entering a dir.
12595         (fts_stat) [_LGPL_PACKAGE]: Bring back glibc cycle detection code.
12596         * lib/fts_.h (_LGPL_PACKAGE) [defined _LIBC]: New macro.
12597         (FTS): New member fts_cycle, that is a union that contains the
12598         old active_dir_ht and cycle_state.  All uses changed to mention
12599         fts_cycle.ht and fts_cycle.state.
12600         * lib/fts-cycle.c: New file, containing GPL'ed code migrated out of
12601         fts.c, with the following changes:
12602         (setup_dir, free_dir): New functions.
12603         (enter_dir): Now returns bool.  Return true if successful, false
12604         if memory exhausted.  All callers changed.
12605         Do not bother partly cleaning up on
12606         memory allocation failure; that is free_dir's job.
12607         However, free ad if hash_insert fails, to avoid memory leak.
12608         (enter_dir, leave_dir): Accommodate change to FTS by inspecting
12609         fts->fts_options to see which union member to use.
12610
12611 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
12612
12613         * m4/fts.m4 (gl_FUNC_FTS_CORE): Renamed from gl_FUNC_FTS.
12614         (gl_FUNC_FTS, gl_FUNC_FTS_LGPL): New macros.
12615
12616 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
12617
12618         * MODULES.html.sh (File system functions): Add fts, fts-lgpl.
12619
12620 2005-05-20  Jim Meyering  <jim@meyering.net>
12621
12622         * lib/unlinkdir.h (cannot_unlink_dir) [UNLINK_CANNOT_UNLINK_DIR]:
12623         Now a macro, to pacify GCC.
12624
12625 2005-05-20  Eric Blake  <ebb9@byu.net>  (tiny change)
12626
12627         * m4/chown.m4 (gl_FUNC_CHOWN): Correct sense of test for honoring IDs
12628         of -1.
12629
12630 2005-05-20  Eric Blake  <ebb9@byu.net>  (tiny change)
12631
12632         * lib/chown.c (rpl_chown): Return -1 on failure.
12633
12634 2005-05-18  Paul Eggert  <eggert@cs.ucla.edu>
12635
12636         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME]):
12637         Don't check for stddef.h.
12638         * m4/fts.m4 (gl_FUNC_FTS): Don't require AC_HEADER_STDC, as we
12639         don't use its results.
12640         Don't check for fcntl.h, stddef.h, stdlib.h, string.h, unistd.h,
12641         since we include them unconditionally.  Don't require
12642         AM_STDBOOL_H, since stdbool is a prerequisite.
12643         Don't require AC_C_CONST, AC_TYPE_SIZE_T or check for ptrdiff_t
12644         since we assume C89 or better.
12645         Don't require AC_FUNC_CLOSEDIR_VOID, AC_FUNC_LSTAT, or AC_FUNC_STAT,
12646         as we don't use their results.
12647         Don't check for fchdir, memmove, memset, strrchr, as we use
12648         them unconditionally.
12649         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Don't define
12650         GETTIMEOFDAY_CLOBBERS_LOCALTIME_BUFFER, since nobody uses it.
12651
12652 2005-05-18  Paul Eggert  <eggert@cs.ucla.edu>
12653
12654         * lib/canonicalize.c: Include canonicalize.h first, to test interface.
12655         Include <stddef.h> unconditionally, since we assume C89 now.
12656         All uses of PTR_INT_TYPE replaced by ptrdiff_t.
12657         * lib/fts.c: Include fts_.h first, to check interface.
12658         Do not include intprops.h; no longer needed.
12659         Include cycle-check.h and hash.h, since fts_.h no longer does.
12660         Remove unnecessary casts of closedir to void.
12661         (fts_build): Use a simpler method (not involving TYPE_SIGNED) to
12662         decide whether to decrement nlinks.
12663         * lib/fts_.h: Do not include hash.h or cycle-check.h; no longer needed.
12664         (FTS): Use struct hash_table * instead of Hash_table, so that
12665         we no longer need to include hash.h here.
12666
12667 2005-05-18  Jim Meyering  <jim@meyering.net>
12668
12669         * modules/dirfd (License): Change to LGPL.  Most of the code
12670         is already in the public domain.
12671
12672 2005-05-18  Jim Meyering  <jim@meyering.net>
12673
12674         * m4/fts.m4 (AC_LIBSOURCES): Add intprops.h to the list.
12675         Reported by Yoann Vandoorselaere.
12676
12677 2005-05-17  Jim Meyering  <jim@meyering.net>
12678
12679         * m4/fts.m4: New file, from coreutils.
12680
12681 2005-05-17  Jim Meyering  <jim@meyering.net>
12682
12683         * lib/fts.c, lib/fts_.h: New files, from coreutils.
12684
12685 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
12686
12687         Sync from coreutils.
12688         * m4/unlinkdir.m4: New file.
12689
12690 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
12691
12692         Sync from coreutils.
12693         * lib/unlinkdir.c, lib/unlinkdir.h: New files.
12694         * lib/gethrxtime.c, lib/gethrxtime.h, lib/getpass.h, lib/mountlist.h,
12695         lib/path-concat.c, lib/regex.h, lib/unlocked-io.h, lib/xtime.h:
12696         White space changes only.
12697         * lib/makepath.c (make_path): Port to hosts where leading "//" is
12698         special.
12699         * lib/yesno.c: Include getline.h, not ctype.h.
12700         (yesno): Don't remove leading white space; POSIX doesn't allow it.
12701         Use getline to remove arbitrary restriction on response length.
12702
12703 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
12704
12705         * config/srclist-update: Spell out "Street" in FSF postal
12706         mail address; this is the style the FSF seems to prefer.
12707
12708         * build-aux/depcomp, build-aux/install-sh, build-aux/mdate-sh,
12709         build-aux/missing, build-aux/mkinstalldirs: Sync from Automake;
12710         this updates FSF postal mail address.
12711
12712         Sync from coreutils.
12713         * modules/unlinkdir: New file.
12714         * modules/yesno (Depends-on): Add getline.
12715         * MODULES.html.sh (File system functions): Add unlinkdir.
12716
12717 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
12718
12719         * lib/byteswap_.h, lib/getsubopt.h, lib/iconvme.h, lib/strsep.c,
12720         lib/strsep.h:
12721         Change the initial comment to refer to GPL, not LGPL.
12722         gnulib-tool will change it to LGPL as needed.
12723
12724         * lib/__fpending.c, lib/acl.c, lib/acl.h, lib/alloca_.h, lib/allocsa.c,
12725         lib/allocsa.h, lib/argmatch.c, lib/argmatch.h, lib/argp-ba.c,
12726         lib/argp-eexst.c, lib/argp-fmtstream.c, lib/argp-fmtstream.h,
12727         lib/argp-fs-xinl.c, lib/argp-help.c, lib/argp-namefrob.h,
12728         lib/argp-parse.c, lib/argp-pv.c, lib/argp-pvh.c, lib/argp-xinl.c,
12729         lib/argp.h, lib/argz.c, lib/argz_.h, lib/asnprintf.c, lib/asprintf.c,
12730         lib/atanl.c, lib/backupfile.c, lib/backupfile.h, lib/base64.c,
12731         lib/base64.h, lib/basename.c, lib/binary-io.h, lib/byteswap_.h,
12732         lib/c-ctype.c, lib/c-ctype.h, lib/c-stack.c, lib/c-stack.h,
12733         lib/c-strtod.c, lib/calloc.c, lib/canon-host.c, lib/canonicalize.c,
12734         lib/canonicalize.h, lib/ceill.c, lib/chdir-long.c, lib/chdir-long.h,
12735         lib/chown.c, lib/classpath.c, lib/classpath.h, lib/cloexec.c,
12736         lib/closeout.c, lib/closeout.h, lib/concatpath.c, lib/config.charset,
12737         lib/copy-file.c, lib/copy-file.h, lib/cycle-check.c, lib/cycle-check.h,
12738         lib/diacrit.c, lib/diacrit.h, lib/dirfd.c, lib/dirfd.h, lib/dirname.c,
12739         lib/dirname.h, lib/dummy.c, lib/dup-safer.c, lib/dup2.c, lib/eealloc.h,
12740         lib/error.c, lib/error.h, lib/euidaccess.c, lib/exclude.c,
12741         lib/exclude.h, lib/execute.c, lib/execute.h, lib/exit.h,
12742         lib/exitfail.c, lib/exitfail.h, lib/expl.c, lib/fatal-signal.c,
12743         lib/fatal-signal.h, lib/fd-safer.c, lib/file-type.c, lib/file-type.h,
12744         lib/fileblocks.c, lib/filemode.c, lib/filemode.h, lib/findprog.c,
12745         lib/findprog.h, lib/floorl.c, lib/fnmatch.c, lib/fnmatch_.h,
12746         lib/fnmatch_loop.c, lib/fopen-safer.c, lib/free.c, lib/frexpl.c,
12747         lib/fsusage.c, lib/fsusage.h, lib/full-read.c, lib/full-read.h,
12748         lib/full-write.c, lib/full-write.h, lib/fwriteerror.c,
12749         lib/fwriteerror.h, lib/gai_strerror.c, lib/gcd.c, lib/gcd.h,
12750         lib/getaddrinfo.c, lib/getaddrinfo.h, lib/getcwd.c, lib/getcwd.h,
12751         lib/getdate.h, lib/getdate.y, lib/getdomainname.c, lib/getdomainname.h,
12752         lib/getgroups.c, lib/gethostname.c, lib/gethrxtime.c, lib/gethrxtime.h,
12753         lib/getline.c, lib/getline.h, lib/getloadavg.c, lib/getndelim2.c,
12754         lib/getndelim2.h, lib/getnline.c, lib/getnline.h, lib/getopt.c,
12755         lib/getopt1.c, lib/getopt_.h, lib/getopt_int.h, lib/getpagesize.h,
12756         lib/getpass.c, lib/getpass.h, lib/getsubopt.c, lib/getsubopt.h,
12757         lib/gettext.h, lib/gettime.c, lib/gettimeofday.c, lib/getugroups.c,
12758         lib/getusershell.c, lib/group-member.c, lib/group-member.h,
12759         lib/hard-locale.c, lib/hard-locale.h, lib/hash-pjw.c, lib/hash-pjw.h,
12760         lib/hash.c, lib/hash.h, lib/human.c, lib/human.h, lib/iconvme.c,
12761         lib/iconvme.h, lib/idcache.c, lib/inet_ntop.h, lib/intprops.h,
12762         lib/inttostr.c, lib/inttostr.h, lib/isdir.c, lib/javacomp.c,
12763         lib/javacomp.h, lib/javacomp.sh.in, lib/javaexec.c, lib/javaexec.h,
12764         lib/javaexec.sh.in, lib/lbrkprop.h, lib/lchown.c, lib/ldexpl.c,
12765         lib/linebreak.c, lib/linebreak.h, lib/linebuffer.c, lib/linebuffer.h,
12766         lib/localcharset.c, lib/localcharset.h, lib/logl.c, lib/long-options.c,
12767         lib/long-options.h, lib/lstat.c, lib/makepath.c, lib/makepath.h,
12768         lib/malloc.c, lib/mathl.h, lib/mbswidth.c, lib/mbswidth.h, lib/md5.c,
12769         lib/md5.h, lib/memcasecmp.c, lib/memcasecmp.h, lib/memchr.c,
12770         lib/memcmp.c, lib/memcoll.c, lib/memcoll.h, lib/memcpy.c, lib/memmem.c,
12771         lib/memmem.h, lib/mempcpy.c, lib/mempcpy.h, lib/memrchr.c,
12772         lib/memrchr.h, lib/memset.c, lib/minmax.h, lib/mkdir.c, lib/mkdtemp.c,
12773         lib/mkdtemp.h, lib/mkstemp.c, lib/mktime.c, lib/modechange.c,
12774         lib/modechange.h, lib/mountlist.c, lib/mountlist.h, lib/nanosleep.c,
12775         lib/obstack.c, lib/obstack.h, lib/openat.c, lib/openat.h,
12776         lib/pagealign_alloc.c, lib/pagealign_alloc.h, lib/path-concat.c,
12777         lib/path-concat.h, lib/pathmax.h, lib/pathname.h, lib/physmem.c,
12778         lib/physmem.h, lib/pipe.c, lib/pipe.h, lib/poll.c, lib/poll_.h,
12779         lib/posixtm.c, lib/posixtm.h, lib/posixver.c, lib/printf-args.c,
12780         lib/printf-args.h, lib/printf-parse.c, lib/printf-parse.h,
12781         lib/progname.c, lib/progname.h, lib/progreloc.c, lib/putenv.c,
12782         lib/quote.c, lib/quote.h, lib/quotearg.c, lib/quotearg.h, lib/raise.c,
12783         lib/readlink.c, lib/readtokens.c, lib/readtokens.h, lib/readtokens0.c,
12784         lib/readtokens0.h, lib/readutmp.c, lib/readutmp.h, lib/realloc.c,
12785         lib/ref-add.sin, lib/ref-del.sin, lib/regex.c, lib/regex.h,
12786         lib/rename.c, lib/rmdir.c, lib/rpmatch.c, lib/safe-read.c,
12787         lib/safe-read.h, lib/safe-write.c, lib/safe-write.h, lib/same.c,
12788         lib/same.h, lib/save-cwd.c, lib/save-cwd.h, lib/savedir.c,
12789         lib/savedir.h, lib/setenv.c, lib/setenv.h, lib/settime.c,
12790         lib/sh-quote.c, lib/sh-quote.h, lib/sha1.c, lib/sha1.h, lib/sig2str.c,
12791         lib/sig2str.h, lib/sincosl.c, lib/snprintf.c, lib/snprintf.h,
12792         lib/sqrtl.c, lib/stat-macros.h, lib/stat.c, lib/stdbool_.h,
12793         lib/stdint_.h, lib/stdio-safer.h, lib/stpcpy.c, lib/stpcpy.h,
12794         lib/stpncpy.c, lib/stpncpy.h, lib/strcase.h, lib/strcasecmp.c,
12795         lib/strchrnul.c, lib/strchrnul.h, lib/strcspn.c, lib/strdup.c,
12796         lib/strdup.h, lib/strerror.c, lib/strftime.c, lib/strftime.h,
12797         lib/stripslash.c, lib/strndup.c, lib/strndup.h, lib/strnlen.c,
12798         lib/strpbrk.c, lib/strpbrk.h, lib/strsep.c, lib/strsep.h, lib/strstr.c,
12799         lib/strstr.h, lib/strtod.c, lib/strtoimax.c, lib/strtok_r.c,
12800         lib/strtok_r.h, lib/strtol.c, lib/strtoll.c, lib/strtoul.c,
12801         lib/strtoull.c, lib/strverscmp.c, lib/strverscmp.h, lib/sysexit_.h,
12802         lib/tempname.c, lib/time_r.c, lib/time_r.h, lib/timegm.c, lib/timegm.h,
12803         lib/timespec.h, lib/trigl.c, lib/trigl.h, lib/ucs4-utf16.h,
12804         lib/ucs4-utf8.h, lib/unicodeio.c, lib/unicodeio.h, lib/unistd-safer.h,
12805         lib/unlocked-io.h, lib/unsetenv.c, lib/userspec.c, lib/utf16-ucs4.h,
12806         lib/utf8-ucs4.h, lib/utime.c, lib/utimecmp.c, lib/utimecmp.h,
12807         lib/utimens.c, lib/vasnprintf.c, lib/vasnprintf.h, lib/vasprintf.c,
12808         lib/vasprintf.h, lib/version-etc-fsf.c, lib/version-etc.c,
12809         lib/version-etc.h, lib/vsnprintf.c, lib/vsnprintf.h, lib/w32spawn.h,
12810         lib/wait-process.c, lib/wait-process.h, lib/xalloc-die.c, lib/xalloc.h,
12811         lib/xallocsa.c, lib/xallocsa.h, lib/xasprintf.c, lib/xgetcwd.c,
12812         lib/xgetcwd.h, lib/xgetdomainname.c, lib/xgetdomainname.h,
12813         lib/xgethostname.c, lib/xmalloc.c, lib/xmemcoll.c, lib/xnanosleep.c,
12814         lib/xreadlink.c, lib/xreadlink.h, lib/xsetenv.c, lib/xsetenv.h,
12815         lib/xsize.h, lib/xstrndup.c, lib/xstrndup.h, lib/xstrtod.c,
12816         lib/xstrtod.h, lib/xstrtoimax.c, lib/xstrtol.c, lib/xstrtol.h,
12817         lib/xstrtoumax.c, lib/xtime.h, lib/xvasprintf.c, lib/xvasprintf.h,
12818         lib/yesno.c, lib/yesno.h:
12819         Update FSF postal mail address.
12820
12821 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
12822
12823         * MODULES.html.sh, README, gnulib-tool, tests/test-base64.c,
12824         tests/test-memmem.c, tests/test-stpncpy.c:
12825         Update FSF postal mail address.
12826
12827 2005-05-13  Bruno Haible  <bruno@clisp.org>
12828
12829         * lib/stdint_.h (int64_t, uint64_t, int_least64_t, uint_least64_t,
12830         int_fast64_t, uint_fast64_t, intmax_t, uintmax_t, INT64_MIN, INT64_MAX,
12831         UINT64_MAX, INT_LEAST64_MIN, INT_LEAST64_MAX, UINT_LEAST64_MAX,
12832         INT_FAST64_MIN, INT_FAST64_MAX, UINT_FAST64_MAX, INTMAX_MIN,
12833         INTMAX_MAX, UINTMAX_MAX, INT64_C, UINT64_C, INTMAX_C, UINTMAX_C):
12834         Add support for 64-bit integers in the MSVC compiler.
12835
12836 2005-05-12  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
12837
12838         * modules/getdate (Makefile.am): Add getdate.c to EXTRA_DIST
12839
12840 2005-05-12  Eric Blake  <ebb9@byu.net>  (tiny change)
12841
12842         * gnulib-tool (func_import): Sort and uniquify recommended includes.
12843
12844 2005-05-11  Paul Eggert  <eggert@cs.ucla.edu>
12845
12846         * doc/getdate.texi (General date syntax): Don't say that date
12847         date --iso-8601=ns generates acceptable dates; it doesn't yet.
12848         Problem reported by Nic Ferrier.
12849
12850 2005-05-10  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
12851
12852         * lib/getaddrinfo.c: Don't fail when SOCK_STREAM or SOCK_DGRAM are
12853         specified in ai_socktype. Fix invalid ai_protocol
12854         check. ai_protocol is usually set to 0 or depending on
12855         ai_family/ai_socktype to IPPROTO_TCP / IPPROTO_UDP.  Checking for
12856         SOCK_STREAM / SOCK_DGRAM in ai_protocol was invalid.  Set
12857         ai_socktype / ai_protocol in the returned addrinfo structure.
12858
12859 2005-05-10  Simon Josefsson  <jas@extundo.com>
12860
12861         * m4/getaddrinfo.m4: Look in libnsl/libsocket for getaddrinfo, from
12862         Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
12863
12864 2005-05-10  Karl Berry  <karl@gnu.org>
12865
12866         * doc/fdl.texi, gpl.texi, lgpl.texi, COPYING: update FSF address
12867         (from http://www.gnu.org/licenses).
12868         * doc/COPYING.LIB: also rename to COPYING.LESSER.
12869         * doc/COPYING.DOC: remove; per rms, only needed in doc files, so
12870         fdl.texi suffices.
12871
12872 2005-05-10  Karl Berry  <karl@gnu.org>
12873
12874         * config/srclist.txt (COPYING.LESSER): rename from COPYING.LIB.
12875         (COPYING.DOC): remove.
12876
12877         * config/srclist-update: new FSF address.
12878
12879 2005-05-10  Derek Price  <derek@ximbiot.com>
12880
12881         * m4/getopt.m4 (gl_GETOPT): Check for Solaris 10 bug, not decl, when
12882         possible.
12883
12884 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
12885             Bruno Haible  <bruno@clisp.org>
12886
12887         * modules/inet_ntop: New file.
12888         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
12889         inet_ntop.
12890
12891 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
12892             Bruno Haible  <bruno@clisp.org>
12893
12894         * m4/inet_ntop.m4: New file.
12895
12896 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
12897             Bruno Haible  <bruno@clisp.org>
12898
12899         * lib/inet_ntop.h: New file.
12900         * lib/inet_ntop.c: New file, from glibc with modifications.
12901
12902 2005-05-09  Paul Eggert  <eggert@cs.ucla.edu>
12903
12904         * modules/time_r (License): Change to LGPL.
12905         * modules/extensions (License): Change to LGPL.  Actually,
12906         the license is more permissive than that, but currently gnulib-tool
12907         doesn't know how to handle more-permissive licenses.
12908
12909         * modules/stat-macros (Depends-on): Don't depend on stat-macros (!).
12910         Problem reported by Dave Love.
12911
12912 2005-05-08  Jim Meyering  <jim@meyering.net>
12913
12914         * lib/classpath.c (PATH_SEPARATOR): Remove insignificant trailing
12915         blank.
12916
12917 2005-05-06  Paul Eggert  <eggert@cs.ucla.edu>
12918
12919         * modules/argmatch (Depends-on): Add stdbool.
12920         * modules/backupfile (Depends-on): Likewise.
12921         * modules/chdir-long (Depends-on): Likewise.
12922         * modules/closeout (Depends-on): Likewise.
12923         * modules/cycle-check (Depends-on): Likewise.
12924         * modules/dirname (Depends-on): Likewise.
12925         * modules/fnmatch (Depends-on): Likewise.
12926         * modules/fsusage (Depends-on): Likewise.
12927         * modules/fwriteerror (Depends-on): Likewise.
12928         * modules/getcwd (Depends-on): Likewise.
12929         * modules/getloadavg (Depends-on): Likewise.
12930         * modules/hard-locale (Depends-on): Likewise.
12931         * modules/makepath (Depends-on): Likewise.
12932         * modules/mountlist (Depends-on): Likewise.
12933         * modules/nanosleep (Depends-on): Likewise.
12934         * modules/posixtm (Depends-on): Likewise.
12935         * modules/quotearg (Depends-on): Likewise.
12936         * modules/readtokens (Depends-on): Likewise.
12937         * modules/readtokens0 (Depends-on): Likewise.
12938         * modules/readutmp (Depends-on): Likewise.
12939         * modules/save-cwd (Depends-on): Likewise.
12940         * modules/strftime (Depends-on): Likewise.
12941         * modules/userspec (Depends-on): Likewise.
12942         * modules/utimecmp (Depends-on): Likewise.
12943         * modules/xgetcwd (Depends-on): Likewise.
12944         * modules/xnanosleep (Depends-on): Likewise.
12945         * modules/xstrtod (Depends-on): Likewise.
12946         * modules/yesno (Depends-on): Likewise.
12947
12948 2005-05-05  Paul Eggert  <eggert@cs.ucla.edu>
12949
12950         * m4/getopt.m4 (gl_GETOPT): Check for Solaris 10 getopt, and avoid
12951         needless checks.
12952
12953 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
12954
12955         Merge from coreutils.  Among other things,
12956         add bulletproofing for cases where stdin, stdout, or stderr are closed.
12957         * lib/fd-safer.c: New file.
12958         * lib/fcntl-safer.h, open-safer.c: Remove.
12959         * lib/chdir-long.c: Fix comment "fetish" -> "coreutils".
12960         * lib/dup-safer.c: Include unistd-safer.h first.
12961         Don't include errno.h.
12962         (dup_safer) [!defined F_DUPFD]: Let fd_safer do the real work.
12963         * lib/file-type.h: Don't assume invoker included sys/stat.h first.
12964         * lib/file-type.c: Rely on file-type.h change.
12965         * lib/getloadavg.c: Include unistd-safer.h.
12966         (getloadavg): Use safer open.
12967         * lib/getusershell.c: Include "stdio-safer.h".
12968         (getusershell): Use safer fopen.
12969         * lib/long-options.c (long_options): Use NULL rather than 0.
12970         * lib/modechange.h (mode_free): Remove; all callers changed to invoke
12971         'free'.
12972         * lib/modechange.c: Likewise.
12973         xstrtol.h, stdbool.h, stddef.h: Don't include; no longer needed.
12974         (MODE_DONE): New constant.
12975         (struct mode_change): Remove 'next' member.
12976         (make_node_op_equals): New function; like the old one of the
12977         same name, except it allocates an array.
12978         (mode_compile, mode_create_from_ref): Use it.
12979         (mode_compile): Allocate result as an array, not a linked list.
12980         Parse octal string ourself, so that we catch mistakes like "+0".
12981         (mode_adjust): Arg is an array, not a linked list.
12982         * lib/modechange.c: Include stat-macros.h, xalloc.h.
12983         (S_ISDIR, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR):
12984         (S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH, S_IRXWU):
12985         (S_IRWXG, S_IRWXO, CHMOD_MODE_BITS):
12986         Remove.  This is now stat-macros.h's job.
12987         (talloc): Remove.  All callers replaced by xalloc, so that
12988         our invokers don't have to worry about reporting memory failures.
12989         (make_node_op_equals): Remove.
12990         (MODE_ORDINARY_CHAGE, MODE_X_IF_ANY_X, MODE_COPY_EXISTING):
12991         New constants.
12992         (struct mode_change): Moved here from modechange.h.
12993         (mode_append_entry): Remove.
12994         (mode_compile): Remove MASKED_OPS arg, since it encouraged
12995         apps to have incorrect behavior.  Use simpler algorithm for head
12996         and tail.  Don't futz with umask; that's now the job of mode_adjust.
12997         Detect more invalid usages rather than having somewhat-random behavior.
12998         Don't insert an "a=" action, as that leads to incorrect behavior.
12999         (mode_compile, mode_create_from_ref): Return NULL on error instead
13000         of an enum, since now there's only one way to have an error.  All
13001         callers changed.
13002         (mode_adjust): Accept new arg UMASK_VALUE, and interpret it
13003         at the correct time.  Simplify calculation of "+u" and its ilk.
13004         Don't mishandle "+X".
13005         (mode_free): Remove "register" and localize decls.
13006         * lib/modechange.h (MODE_X_IF_ANY_X, MODE_COPY_EXISTING):
13007         (struct mode_change): Move to modechange.c; callers don't
13008         need to see this stuff.
13009         (MODE_MASK_EQUALS, MODE_MASK_PLUS, MODE_MASK_MINUS, MODE_MASK_ALL):
13010         (MODE_INVALID, MODE_MEMORY_EXHAUSTED, MODE_BAD_REFERENCE): Remove.
13011         (mode_change, mode_adjust): Reflect the new signatures noted above.
13012         * lib/nanosleep.c (rpl_nanosleep): Include "timespec.h" before macros
13013         that might redefine system include files.
13014         (siginterrupt) [!HAVE_SIGINTERRUPT]: New macro.
13015         (my_usleep): Use NULL rather than (void *) 0.
13016         (rpl_nanosleep) [!defined SA_NOCLDSTOP]:
13017         Use siginterrupt to specify that system calls should be interrupted.
13018         (rpl_nanosleep): Move initialization of suspended closer to call of
13019         my_usleep.
13020         * lib/readutmp.h (read_utmp): New arg OPTIONS.  All uses changed.
13021         * lib/readutmp.c: Likewise.  Include signal.h, stdbool.h.
13022         (desirable_utmp_entry): New function.
13023         (read_utmp) [defined UTMP_NAME_FUNCTION]: Redo memory allocation
13024         using x2nrealloc, to simplify logic.
13025         (read_utmp) [!defined UTMP_NAME_FUNCTION]: Check for overflow in
13026         size calculation.  Do not assume utmp file is a regular file.
13027         * lib/readutmp.h (UT_PID): Moved here from ../src/who.c.
13028         (READ_UTMP_CHECK_PIDS): New constant.
13029         * lib/save-cwd.c: Include unistd-safer.h.
13030         (save_cwd): Use fd_safer.
13031         * lib/tempname.c (S_ISDIR, S_IRUSR, S_IRUSR, S_IWUSR, S_IXUSR): Remove.
13032         [!_LIBC] Include "stat-macros.h" instead.
13033         * lib/unistd-safer.h (fd_safer): New decl.
13034
13035 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
13036
13037         * modules/getloadavg (Depends-on): Add unistd-safer.
13038         * modules/getusershell (Depends-on): Add stdio-safer.
13039         * modules/lstat (Depends-on): Remove xalloc.
13040         * modules/mkstemp (Depends-on): Add stat-macros.
13041         * modules/modechange (Depends-on): Remove xstrtol.
13042         Add stat-macros, xalloc.
13043         * modules/save-cwd (Depends-on): Add unistd-safer.
13044         * modules/stdio-safer (Makefile.am): Remove lib_SOURCES.
13045         * modules/unistd-safer (Files): Add lib/fd-safer.c
13046         (Makefile.am): Remove lib_SOURCES.
13047
13048         * MODULES.html.sh (Enhancements for POSIX:2001 functions):
13049         Remove fcntl-safer; unistd-safer supersedes it.
13050
13051 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
13052
13053         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Don't require
13054         AC_HEADER_STAT.
13055         * m4/lchown.m4 (gl_FUNC_CHOWN): Likewise.
13056         (gl_PREREQ_CHOWN): Remove.
13057         * m4/lstat.m4 (gl_FUNC_LSTAT): Require AC_FUNC_LSTAT instead of calling
13058         it.  Don't require AC_HEADER_STAT.
13059         (gl_PREREQ_LSTAT): Remove.
13060         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Check stdint.h only once.
13061         Don't require AC_HEADER_STAT.
13062         * m4/rmdir.m4 (gl_FUNC_RMDIR): Don't require AC_HEADER_STAT.
13063         (gl_PREREQ_RMDIR): Remove.
13064         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Don't
13065         mention stat-macros.h or AC_HEADER_STAT, since we'll make
13066         the stat-macros module a prerequisite.
13067         * m4/file-type.m4 (gl_FILE_TYPE): Likewise.
13068         * m4/filemode.m4 (gl_FILEMODE): Likewise.
13069         * m4/makepath.m4 (gl_MAKEPATH): Likewise.
13070         * m4/modechange.m4 (gl_MODECHANGE): Likewise.
13071         * m4/clock_time.m4 (gl_CLOCK_TIME): Use gl_ rather than fetish_ for
13072         variable names.
13073         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Renamed from
13074         fetish_FUNC_RMDIR_NOTEMPTY.  All uses changed.  Use gl_ for
13075         variable prefixes.
13076         * m4/fcntl-safer.m4: Remove.
13077         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Use AC_LIBSOURCES and AC_LIBOBJ.
13078         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Likewise.
13079         Invoke gl_PREREQ_FD_SAFER.
13080         (gl_PREREQ_FD_SAFER): New macro.
13081         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): Check for siginterrupt.
13082         * m4/readutmp.m4 (gl_READUTMP): Require AC_C_INLINE.
13083         Use AC_CHECK_HEADERS_ONCE and AC_CHECK_FUNCS_ONCE when possible.
13084         Remove duplicate call to AC_LIBOBJ(readutmp).
13085         (gl_PREREQ_READUTMP): Remove.  All uses inlined.
13086
13087         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Check for message, not for
13088         MAP_ANON.  Problem reported by Moriyoshi Koizumi to bug-cvs.
13089
13090 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
13091
13092         * MODULES.html.sh (Misc): Add byteswap.
13093
13094 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
13095
13096         * modules/getcwd (Depends-on): Add extensions.
13097         * modules/openat (Depends-on): Likewise.
13098
13099 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
13100
13101         * modules/byteswap: New file.
13102
13103 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
13104
13105         * m4/byteswap.m4: New file.
13106
13107 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
13108
13109         * lib/byteswap_.h: New file.
13110
13111 2005-04-25  Karl Berry  <karl@gnu.org>
13112
13113         * m4/gettext.m4: Update from GNU gettext 0.14.4.
13114
13115 2005-04-25  Albert Chin  <china@thewrittenword.com>
13116
13117         * lib/regex.c: Include <stdio.h>, as a workaround to a Compaq Desktop
13118         Toolkit C bug.
13119
13120 2005-04-21  Oskar Liljeblad  <oskar@osk.mine.nu>
13121
13122         * gnulib-tool (Options): Add -s for --symlink/--symbolic.
13123         (func_ln_if_changed) Remove forcibly for no error message
13124         in case file does not exist.
13125
13126 2005-04-19  Simon Josefsson  <jas@extundo.com>
13127
13128         * gnulib-tool (Options): Make --symlink mean --symbolic.
13129
13130 2005-04-18  Oskar Liljeblad  <oskar@osk.mine.nu>
13131
13132         * doc/gnulib.texi (Initial import): Fix.  Mention --aux-dir.
13133
13134 2005-04-16  Simon Josefsson  <jas@extundo.com>
13135
13136         * modules/getpass-gnu (Makefile.am): Don't mention getpass.h.
13137
13138 2005-04-15  Simon Josefsson  <jas@extundo.com>
13139
13140         * m4/getpass.m4 (gl_FUNC_GETPASS): Use AC_LIBSOURCES.
13141
13142 2005-04-15  Simon Josefsson  <jas@extundo.com>
13143
13144         * gnulib-tool: Rename --symlink to --symbolic.
13145
13146 2005-04-15  Oskar Liljeblad  <oskar@osk.mine.nu>
13147
13148         * gnulib-tool: Add -s, --symlink option to gnulib-tool to make
13149         symbolic links to files instead of copying/moving.  Add --aux-dir,
13150         specifying directory relative --dir where auxiliary build tools
13151         are placed.
13152
13153 2005-04-14  Bruno Haible  <bruno@clisp.org>
13154
13155         * modules/allocsa (License): Change to LGPL.
13156         Requested by Yoann Vandoorselaere <yoann@prelude-ids.org>.
13157
13158 2005-04-13  Paul Eggert  <eggert@cs.ucla.edu>
13159
13160         * lib/getdate.y (zone): Allow relunit_snumber after tZONE, so
13161         that "UTC +1 second" continues to work.  Problem reported
13162         by Dmitry V. Levin.
13163         (relunit_snumber): New rule.
13164         (relunit): Use it.
13165
13166 2005-04-12  Paul Eggert  <eggert@cs.ucla.edu>
13167
13168         * lib/getdate.y (universal_time_zone_table): New constant.
13169         (time_zone_table): Remove GMT, UT, UTC entries; they're now in
13170         universal_time_zone_table.
13171         (lookup_zone): Prefer universal_time_zone_table to
13172         local_time_zone_table, so that "GMT" time stamps are allowed in
13173         London during the summer.  Problem reported by Ian Abbott.
13174
13175 2005-04-12  Jim Meyering  <jim@meyering.net>
13176
13177         * lib/human.c (humblock): Set *options even when returning due to
13178         xstrtoumax conversion failure.  Thanks to a used-uninitialized
13179         warning from gcc-4.
13180
13181 2005-04-09  Jim Meyering  <jim@meyering.net>
13182
13183         * lib/posixtm.c (posixtime) [lint]: Avoid spurious warning from gcc-4's
13184         -Wuninitialized: initialize tm0.tm_year.
13185
13186 2005-04-04  Paul Eggert  <eggert@cs.ucla.edu>
13187
13188         * lib/getdate.y (parser_control): rels_seen is now a boolean, not a
13189         count, since there's no maximum.  All uses changed.
13190         Add member dsts_seen.
13191         (local_zone): Accumulate dsts_seen rather than relying on tm_isdst
13192         not being INT_MAX.
13193         (get_date): Initialize dsts_seen, and check that it doesn't go over 1.
13194         Use pc_rels_seen to decide whther a date is absolute.
13195
13196         * lib/getdate.y (number): Don't overwrite year.
13197         (get_date): Initialize pc.year.digits to 0, not 4, to enable above
13198         check.
13199
13200 2005-04-02  Simon Josefsson  <jas@extundo.com>
13201
13202         * lib/getaddrinfo.h: Fix OpenBSD compilation failure, inspired by tiny
13203         patch from Yoann Vandoorselaere <yoann@prelude-ids.org>.
13204
13205 2005-03-28  Eric Blake  <ebb9@byu.net>  (tiny change)
13206
13207         * m4/getcwd-path-max.m4: Return success on systems such as Cygwin
13208         where no absolute path name can be longer than PATH_MAX.
13209
13210 2005-03-27  Jim Meyering  <jim@meyering.net>
13211
13212         * lib/argmatch.c: Clarify comment: null-terminated -> NULL-terminated.
13213
13214 2005-03-26  Paul Eggert  <eggert@cs.ucla.edu>
13215
13216         * lib/intprops.h (INT_STRLEN_BOUND, INT_BUFSIZE_BOUND):
13217         "one's complement" -> "ones' complement" in comment, as per Knuth.
13218         "value of type" -> "type or expression" in comment.
13219         * lib/mktime.c, strftime.c: Propagate intprops.h comment nits.
13220
13221 2005-03-26  Jim Meyering  <jim@meyering.net>
13222
13223         Comment nits.
13224         * lib/intprops.h: Add the apostrophe in `(one|two)'s complement'.
13225         Correct typos: s/or/of/.
13226
13227 2005-03-26  Jim Meyering  <jim@meyering.net>
13228
13229         * modules/check-include-files: Move to ../ and rename to...
13230         * check-module: ...this.
13231
13232 2005-03-25  Jim Meyering  <jim@meyering.net>
13233
13234         * modules/xvasprintf (Files): Add xalloc.h.
13235
13236 2005-03-23  Paul Eggert  <eggert@cs.ucla.edu>
13237
13238         * modules/gettext (Files): config/config.rpath ->
13239         build-aux/config.rpath
13240         * modules/iconv (Files): Likewise.
13241         Problem reported by Oskar Liljeblad.
13242
13243 2005-03-23  Jim Meyering  <jim@meyering.net>
13244
13245         * modules/check-include-files: New script to check for
13246         missing dependencies, multiple includes, etc.
13247
13248         * modules/c-strtold (Depends-on): Add xalloc.
13249         * modules/c-strtod (Depends-on): Add xalloc.
13250         * modules/hash (Depends-on): Add xalloc.
13251         (Files): Remove lib/xalloc.h.
13252
13253         * modules/gethrxtime (Files): Add lib/gethrxtime.h.
13254         * modules/userspec (Files): Add lib/inttostr.h.
13255
13256 2005-03-23  Jim Meyering  <jim@meyering.net>
13257
13258         * lib/canonicalize.c: Remove duplicate `#include "stat-macros.h"'.
13259
13260 2005-03-22  Jim Meyering  <jim@meyering.net>
13261
13262         * modules/stat-macros: New module.
13263         * modules/canonicalize, modules/euidaccess, modules/file-type,
13264         * modules/filemode, modules/lchown, modules/makepath,
13265         * modules/rmdir, modules/stat: Depend on new stat-macros module
13266         rather than listing lib/stat-macros.h manually.
13267         Don't add stat-macros.h to lib_SOURCES or list it in Files: section.
13268
13269 2005-03-22  Jim Meyering  <jim@meyering.net>
13270
13271         * m4/stat-macros.m4 (gl_STAT_MACROS): New file/macro.
13272
13273 2005-03-22  Bruno Haible  <bruno@clisp.org>
13274
13275         * config/srclist.txt: Replace target directory 'config' with
13276         'build-aux'.
13277         * config/config.guess, config.sub, config.rpath, depcomp, install-sh:
13278         * config/mdate-sh, missing, mkinstalldirs, texinfo.tex: Move to
13279         ../build-aux/.
13280
13281 2005-03-21  Paul Eggert  <eggert@cs.ucla.edu>
13282
13283         * modules/chdir-long (Depends-on): Add mempcpy.
13284
13285         * modules/acl, modules/backupfile, modules/c-strtod,
13286         modules/c-strtold, modules/canon-host, modules/canonicalize,
13287         modules/cloexec, modules/closeout, modules/dirfd, modules/dirname,
13288         modules/exclude, modules/exitfail, modules/file-type,
13289         modules/filemode, modules/fpending, modules/fsusage, modules/getcwd,
13290         modules/getdate, modules/getline, modules/getpagesize,
13291         modules/getpass, modules/getugroups, modules/group-member,
13292         modules/hard-locale, modules/hash, modules/human, modules/idcache,
13293         modules/inttostr, modules/long-options, modules/makepath,
13294         modules/md5, modules/memcasecmp, modules/memcoll,
13295         modules/modechange, modules/mountlist, modules/path-concat,
13296         modules/pathmax, modules/physmem, modules/posixtm, modules/posixver,
13297         modules/quote, modules/quotearg, modules/readtokens, modules/readutmp,
13298         modules/safe-read, modules/safe-write, modules/same, modules/savedir,
13299         modules/settime, modules/sha1, modules/sig2str, modules/strdup,
13300         modules/strftime, modules/strndup, modules/strverscmp,
13301         modules/timespec, modules/unlocked-io, modules/userspec,
13302         modules/utimecmp, modules/utimens, modules/xalloc, modules/xstrtol,
13303         modules/yesno:
13304         Remove lib_SOURCES line from Makefile.am section, as this is now
13305         done automatically by the corresponding Autoconf macro.
13306
13307 2005-03-21  Jim Meyering  <jim@meyering.net>
13308
13309         Changes imported from coreutils.
13310
13311         * lib/cycle-check.c: Don't include xalloc.h.
13312
13313         * lib/path-concat.c: Don't include assert.h.
13314         (path_concat): Remove assertion that would have triggered
13315         for ABASE starting with more than one slash.
13316         Reported by Andreas Schwab.
13317
13318         * lib/path-concat.c (path_concat): Set *BASE_IN_RESULT
13319         properly when ABASE is an absolute file name.
13320         Correct the description of this function.
13321         Include <assert.h>.
13322         Add an assertion and a test driver.
13323         This fixes a bug introduced on 2004-07-02.
13324         Andreas Schwab reported the resulting failure of cp --parents:
13325         http://lists.gnu.org/archive/html/bug-coreutils/2005-01/msg00130.html
13326
13327 2005-03-21  Jim Meyering  <jim@meyering.net>
13328
13329         * m4/chdir-long.m4 (gl_PREREQ_CHDIR_LONG): Invoke gl_FUNC_MEMRCHR.
13330         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Check for memrchr decl.
13331
13332 2005-03-21  Jim Meyering  <jim@meyering.net>
13333         and  Paul Eggert  <eggert@cs.ucla.edu>
13334
13335         * m4/acl.m4, m4/backupfile.m4, m4/c-strtod.m4, m4/canon-host.m4,
13336         m4/canonicalize.m4, m4/cloexec.m4, m4/closeout.m4, m4/dirfd.m4,
13337         m4/dirname.m4, m4/exclude.m4, m4/exitfail.m4, m4/file-type.m4,
13338         m4/filemode.m4, m4/fpending.m4, m4/fsusage.m4, m4/getcwd.m4,
13339         m4/getdate.m4, m4/getline.m4, m4/getpagesize.m4, m4/getpass.m4,
13340         m4/getugroups.m4, m4/group-member.m4, m4/hard-locale.m4, m4/hash.m4,
13341         m4/human.m4, m4/idcache.m4, m4/inttostr.m4, m4/long-options.m4,
13342         m4/makepath.m4, m4/md5.m4, m4/memcasecmp.m4, m4/memcoll.m4,
13343         m4/modechange.m4, m4/mountlist.m4, m4/nanosleep.m4, m4/path-concat.m4,
13344         m4/pathmax.m4, m4/physmem.m4, m4/posixtm.m4, m4/posixver.m4,
13345         m4/quote.m4, m4/quotearg.m4, m4/readtokens.m4, m4/readutmp.m4,
13346         m4/safe-read.m4, m4/safe-write.m4, m4/same.m4, m4/savedir.m4,
13347         m4/settime.m4, m4/sha1.m4, m4/sig2str.m4, m4/strdup.m4, m4/strftime.m4,
13348         m4/strndup.m4, m4/strverscmp.m4, m4/timespec.m4, m4/unlocked-io.m4,
13349         m4/userspec.m4, m4/utimecmp.m4, m4/utimens.m4, m4/xalloc.m4,
13350         m4/xnanosleep.m4, m4/xstrtol.m4, m4/yesno.m4:
13351         Use AC_LIBSOURCES and AC_LIBOBJ to indicate source and object files
13352         for these modules.
13353
13354 2005-03-18  Paul Eggert  <eggert@cs.ucla.edu>
13355
13356         * lib/strftime.c (my_strftime): If the underlying strftime returns 0
13357         (which shouldn't happen), generate nothing instead of returning 0
13358         immediately, so that nstrftime (NULL, ...) doesn't return 0.
13359
13360 2005-03-16  Bruno Haible  <bruno@clisp.org>
13361
13362         * modules/stdint (Makefile.am): Use HAVE_LONG_LONG_64BIT instead of
13363         HAVE_LONGLONG_64BIT.
13364
13365 2005-03-16  Bruno Haible  <bruno@clisp.org>
13366
13367         * m4/stdint.m4 (gl_STDINT_H): Define HAVE_LONG_LONG_64BIT instead of
13368         HAVE_LONGLONG_64BIT.
13369
13370 2005-03-16  Bruno Haible  <bruno@clisp.org>
13371
13372         * lib/stdint_.h: Use HAVE_LONG_LONG_64BIT instead of
13373         HAVE_LONGLONG_64BIT.
13374
13375 2005-03-15  Paul Eggert  <eggert@cs.ucla.edu>
13376
13377         * lib/strftime.c (my_strftime): Prepend space to format so that we can
13378         reliably distinguish strftime failure from empty output on POSIX
13379         hosts.
13380
13381 2005-03-15  Paul Eggert  <eggert@cs.ucla.edu>
13382
13383         * lib/iconvme.c (SIZE_MAX): New macro, if not already defined.
13384         (iconv_string): Don't guess a size-zero buffer, as that might cause
13385         buffer overrun.  Instead, avoid multiplying by MB_LEN_MAX if the
13386         result would be 'too large', where 'too large' is (heuristically)
13387         the square root of SIZE_MAX, divided by MB_LEN_MAX to allay
13388         overflow concerns.  This will prevent some unwanted malloc failures
13389         when the inputs are very large.
13390
13391 2005-03-15  Karl Berry  <karl@gnu.org>
13392
13393         * config/srclist.txt (config.rpath): from gettext.
13394         * config/config.rpath: update.
13395
13396 2005-03-15  Bruno Haible  <bruno@clisp.org>
13397
13398         * lib/regex.c (byte_re_match_2_internal): Rename local variable 'not'
13399         to 'negate'.
13400
13401         * lib/regex.c (byte_re_match_2_internal): Reduce scope of same_str_p
13402         variable.
13403
13404         * lib/regex.c (EXTEND_BUFFER, regcomp): Cast the realloc/malloc
13405         results.
13406
13407 2005-03-14  Simon Josefsson  <jas@extundo.com>
13408
13409         * lib/timegm.h: Use proper prototype CPP guards, reported by Dave Love
13410         <fx@gnu.org>.
13411
13412 2005-03-14  Paul Eggert  <eggert@cs.ucla.edu>
13413
13414         * lib/mktime.c (TYPE_TWOS_COMPLEMENT, TYPE_ONES_COMPLEMENT,
13415         TYPE_SIGNED_MAGNITUDE, TYPE_MINIMUM, TYPE_MAXIMUM): Sync from
13416         intprops.h.
13417         * lib/strtol.c: Likewise.
13418
13419 2005-03-14  Jim Meyering  <jim@meyering.net>
13420
13421         * lib/strftime.c (my_strftime) [HAVE_STRFTIME && ! (_NL_CURRENT
13422         && HAVE_STRUCT_ERA_ENTRY)]: Initialize the first byte of ubuf[]
13423         to be nonzero so that we (and caller) can detect the difference
13424         between a valid zero-length expansion and an error return, even
13425         when the underlying strftime fails before writing anything into
13426         that location.
13427
13428 2005-03-14  Bruno Haible  <bruno@clisp.org>
13429
13430         * m4/lib-link.m4, gettext.m4, nls.m4, po.m4:
13431         Update from GNU gettext 0.14.3.
13432
13433 2005-03-10  Jim Meyering  <jim@meyering.net>
13434
13435         * m4/save-cwd.m4 (gl_SAVE_CWD): Check for fchdir.
13436
13437 2005-03-10  Jim Meyering  <jim@meyering.net>
13438
13439         * lib/save-cwd.c [!HAVE_FCHDIR]: Define open, fchdir, and chdir_long
13440         so that this module works on systems without fchdir.
13441
13442 2005-03-09  Paul Eggert  <eggert@cs.ucla.edu>
13443
13444         Factor int-properties macros into a single file, except for
13445         glibc-related files.
13446         * lib/intprops.h: New file.
13447         * lib/getloadavg.c: Include it instead of limits.h.
13448         (INT_STRLEN_BOUND): Remove.
13449         * lib/human.c: Include intprops.h.
13450         (group_number): Use INT_STRLEN_BOUND instead of rolling it ourself.
13451         * lib/human.h (LONGEST_HUMAN_READABLE): Use 146/485 rather than
13452         302/1000.
13453         * lib/inttostr.h: Include intprops.h instead of limits.h.
13454         (INT_STRLEN_BOUND, INT_BUFSIZE_BOUND): Remove.
13455         * lib/mktime.c (TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT): New macros,
13456         for consistency with intprops.h.
13457         (time_t_is_integer, twos_complement_arithmetic): Use them.
13458         * lib/sig2str.h: Include <signal.h>, intprops.h.
13459         (INT_STRLEN_BOUND): Remove.
13460         * lib/strftime.c (TYPE_SIGNED): Remove.
13461         (INT_STRLEN_BOUND): Switch to same implementation as intprops.h.
13462         * lib/strtol.c: Adjust comments to match intprops.h.
13463         * lib/userspec.c: Include intprops.h.
13464         (TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Remove.
13465         * lib/utimecmp.c, xnanosleep.c, xstrtol.c: Likewise.
13466         * lib/utimecmp.c (utimecmp): Use TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT
13467         instead of rolling our own expressions.
13468         * lib/xstrtol.c: Include xstrtol.h first, to test interface.
13469
13470         * lib/strftime.c: Include <stdbool.h>.  Use bool where appropriate,
13471         instead of int.
13472         (my_strftime): Do not mishandle years close to INT_MAX, by doing
13473         the right thing even if adding 1900 would overflow.  Similarly
13474         for tm_mon + 1 and tm_yday + 1.
13475         Make %Y always equivalent to %C%y, and similarly for %G and %g.
13476         (DO_NUMBER, DO_NUMBER_SPACEPAD): Set digits to d, not a conditional.
13477         (DO_SIGNED_NUMBER): New macro.
13478         (my_strftime) [HAVE_TZNAME]: Don't dump core if tp->tm_dst > 1.
13479
13480 2005-03-07  Bruno Haible  <bruno@clisp.org>
13481
13482         * m4/mmap-anon.m4 (MAP_FILE, MAP_FAILED): Remove definitions.
13483
13484 2005-03-07  Bruno Haible  <bruno@clisp.org>
13485
13486         * lib/pagealign_alloc.c (MAP_FILE, MAP_FAILED): Define fallbacks.
13487
13488 2005-03-04  Derek R. Price  <derek@ximbiot.com>
13489
13490         * gnulib-tool (func_cp_if_changed, func_mv_if_changed): New functions.
13491         (func_import): Only replace files via --import when they have actually
13492         changed.
13493
13494 2005-03-03  Derek R. Price  <derek@ximbiot.com>
13495
13496         * m4/mmap-anon.m4: New file.
13497         * m4/pagealign_alloc.m4: New file.
13498
13499 2005-03-03  Derek R. Price  <derek@ximbiot.com>
13500             Bruno Haible  <bruno@clisp.org>
13501
13502         * modules/pagealign_alloc: New file.
13503         * MODULES.html.sh (Memory management functions): Add pagealign_alloc.
13504
13505 2005-03-03  Derek R. Price  <derek@ximbiot.com>
13506             Bruno Haible  <bruno@clisp.org>
13507
13508         * lib/pagealign_alloc.h: New file.
13509         * lib/pagealign_alloc.c: New file.
13510
13511 2005-03-03  Bruno Haible  <bruno@clisp.org>
13512
13513         * m4/inttypes.m4, isc-posix.m4, once-only.m4:
13514         Use an all-permissive copyright notice, recommended by RMS.
13515
13516 2005-03-02  Bruno Haible  <bruno@clisp.org>
13517
13518         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Undo the replacement here. Because
13519         of AIX, the replacement has to be done only after <string.h> is
13520         included, therefore not in config.h. stpncpy.h does the replacement,
13521         and stpncpy.c uses it.
13522
13523 2005-03-02  Bruno Haible  <bruno@clisp.org>
13524
13525         * lib/stpncpy.h (stpncpy): Define as a macro without arguments, so that
13526         stpncpy.c uses it.
13527
13528 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
13529
13530         Remove workaround for bug in Linux kernel 2.6.8 or thereabouts.
13531         The workaround isn't strictly needed for POSIX conformance, and
13532         it's too much of a pain to configure and maintain.  We'll ask
13533         people to fix their kernels instead.
13534         * lib/xnanosleep.c: Don't include gethrxtime.h or xtime.h.
13535         (NANOSLEEP_BUG_WORKAROUND): Remove.
13536         (xnanosleep): Remove the workaround.
13537
13538 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
13539
13540         * modules/gettime (Makefile.am): Remove lib_SOURCES line.
13541         Reported by Derek Price.
13542         (Include): Add "timespec.h".
13543
13544         * modules/xnanosleep (Depends-on): Remove gethrxtime.
13545
13546 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
13547
13548         * m4/xnanosleep.m4 (gl_XNANOSLEEP): Remove configuration attempting
13549         to detect nanosleep bug.
13550
13551 2005-03-01  Bruno Haible  <bruno@clisp.org>
13552
13553         * lib/vasnprintf.c (EOVERFLOW): Define to a fallback if needed.
13554
13555 2005-02-26  Paul Eggert  <eggert@cs.ucla.edu>
13556
13557         * modules/gethrxtime: New file.
13558         * modules/xnanosleep (Files): Add m4/xnanosleep.m4.
13559         (Depends-on): Add gethrxtime.
13560         (configure.ac): Add gl_XNANOSLEEP.
13561         (Makefile.am): Remove lib_SOURCES line.
13562
13563 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
13564
13565         * m4/gethrxtime.m4, m4/xnanosleep.m4: New files.
13566         * m4/gettime.m4 (gl_GETTIME): Check for nanotime.
13567
13568 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
13569
13570         * lib/gethrxtime.h, lib/gethrxtime.c, lib/xtime.h: New files.
13571         * lib/timespec.h (gettime): Return void, since it always
13572         succeeds now.  All uses changed.
13573         * lib/gettime.c (gettime) Likewise.
13574         [HAVE_NANOTIME]: Prefer nanotime.
13575         Assume gettimeofday succeeds, as POSIX requires.
13576         Assime time () succeeds, since other code already does.
13577         * lib/xnanosleep.c: Include xtime.h and gethrxtime.h, not xalloc.h.
13578         (timespec_subtract): Remove.
13579         (NANOSLEEP_BUG_WORKAROUND): New constant.
13580         (xnanosleep): Use gethrxtime rather than gettime; this simplifies
13581         things considerably.  Use it only on GNU/Linux hosts, since the
13582         workaround shouldn't be needed elsewhere.
13583
13584 2005-02-24  Bruno Haible  <bruno@clisp.org>
13585
13586         * modules/gettext (Files): Add m4/glibc2.m4.
13587
13588 2005-02-24  Bruno Haible  <bruno@clisp.org>
13589
13590         * m4/gettext.m4, intdiv0.m4, intmax.m4, inttypes-pri.m4, lcmessage.m4:
13591         * m4/lib-link.m4, lib-prefix.m4, nls.m4, po.m4, printf-posix.m4:
13592         * m4/progtest.m4:
13593         Update from GNU gettext 0.14.2.
13594         * m4/glibc2.m4: New file, from GNU gettext 0.14.2.
13595
13596 2005-02-24  Bruno Haible  <bruno@clisp.org>
13597
13598         * lib/localcharset.c: Update from GNU gettext 0.14.2.
13599         * lib/config.charset: Update from GNU gettext 0.14.2.
13600
13601 2005-02-24  Bruno Haible  <bruno@clisp.org>
13602
13603         * lib/gettext.h: Update from GNU gettext 0.14.2.
13604
13605 2005-02-23  Simon Josefsson  <jas@extundo.com>
13606
13607         * m4/iconvme.m4: New file.
13608
13609 2005-02-23  Jim Meyering  <jim@meyering.net>
13610
13611         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Revert yesteday's
13612         change.
13613         Thanks to Bruno Haible for catching it.
13614
13615 2005-02-22  Simon Josefsson  <jas@extundo.com>
13616
13617         * modules/iconvme: New file.
13618
13619         * MODULES.html.sh: Add iconvme.
13620
13621 2005-02-22  Simon Josefsson  <jas@extundo.com>
13622
13623         * lib/iconvme.h, lib/iconvme.c: New files, from libc.
13624
13625 2005-02-22  Simon Josefsson  <jas@extundo.com>
13626
13627         * config/srclist.txt: Sync iconvme.h, iconvme.c from libc.
13628
13629 2005-02-22  Jim Meyering  <jim@meyering.net>
13630
13631         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Fix typo:
13632         s/ifndef/ifdef/.
13633
13634 2005-02-20  Neil Conway  <neilc@samurai.com>
13635
13636         * lib/xgethostname.c (xgethostname): Check for ENOMEM, which is
13637         returned by OSX/Darwin if the specified buffer is not large
13638         enough for the hostname.
13639
13640 2005-02-03  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
13641
13642         * lib/argp-help.c (__argp_help): Create a fake struct argp_state and
13643         pass it to _help, otherwise the latter coredumps trying to
13644         dereference state.root_argp.
13645
13646 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
13647
13648         * modules/chdir-long (Depends-on): Add memrchr.
13649         * modules/memrchr (Files): Add lib/memrchr.h.
13650         (Include): "memrchr.h".
13651
13652 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
13653
13654         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Add AC_LIBSOURCES, for memrchr.h.
13655
13656 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
13657
13658         * lib/memrchr.h: New file.
13659         * lib/chdir-long.c: Include it.
13660         * lib/memrchr.c [!defined _LIBC]: Include it rather than <string.h>
13661         Don't bother including stddef.h.
13662
13663 2005-02-01  Paul Eggert  <eggert@cs.ucla.edu>
13664
13665         * lib/mountlist.h (MOUNTLIST_H_): New macro, to protect against double
13666         inclusion.
13667         Include <sys/types.h>, for dev_t.
13668         (ME_DUMMY, ME_REMOTE): Move from here....
13669         * lib/mountlist.c (ME_DUMMY, ME_REMOTE): To here.
13670         (ME_DUMMY): Count "subfs" as a dummy.  Problem reported by
13671         Dmitry V. Levin.
13672         Include mountlist.h first, to test the interface.
13673
13674 2005-01-29  Bruno Haible  <bruno@clisp.org>
13675
13676         * lib/progname.c (program_name): Initialize.
13677         Needed when linking statically on MacOS X.
13678
13679 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
13680
13681         Sync from coreutils.
13682         * modules/getloadavg (Files): Remove m4/getloadavg.m4.
13683         (Depends-on): Add c-strtod.
13684         (configure.ac): Replace gl_FUNC_GETLOADAVG with AC_FUNC_GETLOADAVG.
13685
13686 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
13687
13688         Sync from coreutils.
13689         * m4/getloadavg.m4, glibc.m4, search-libs.m4: Remove.
13690
13691         Remove files that are specific to coreutils.
13692         * m4/check-decl.m4, jm-macros.m4, lib-check.m4, prereq.m4: Remove.
13693
13694 2005-01-28  Bruno Haible  <bruno@clisp.org>
13695
13696         * modules/javacomp: New file.
13697         * MODULES.html.sh (Java): Add javacomp.
13698
13699 2005-01-28  Bruno Haible  <bruno@clisp.org>
13700
13701         * m4/javacomp.m4: New file, from GNU gettext.
13702
13703 2005-01-28  Bruno Haible  <bruno@clisp.org>
13704
13705         * lib/javacomp.sh.in: New file, from GNU gettext.
13706         * lib/javacomp.h: New file, from GNU gettext.
13707         * lib/javacomp.c: New file, from GNU gettext.
13708
13709 2005-01-26  Simon Josefsson  <jas@extundo.com>
13710
13711         * lib/gai_strerror.c: Use GPL in header.
13712
13713 2005-01-26  Bruno Haible  <bruno@clisp.org>
13714
13715         * modules/javaexec: New file.
13716         * MODULES.html.sh (Java): Add javaexec.
13717
13718 2005-01-26  Bruno Haible  <bruno@clisp.org>
13719
13720         * m4/javaexec.m4: New file, from GNU gettext.
13721
13722 2005-01-26  Bruno Haible  <bruno@clisp.org>
13723
13724         * lib/javaexec.sh.in: New file, from GNU gettext.
13725         * lib/javaexec.h: New file, from GNU gettext.
13726         * lib/javaexec.c: New file, from GNU gettext.
13727
13728 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
13729
13730         * modules/lchown (Depends-on): Remove lchown.h
13731
13732 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
13733
13734         * m4/sysexits.m4 (gl_SYSEXITS): Reverted logic. SYSEXITS_H
13735         must be defined if the header file was not found, in order
13736         to provide a replacement. Reported by Todd Vierling <tv@duh.org>
13737
13738 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
13739
13740         * lib/argp-help.c (hol_entry_help): Avoid using non-constant
13741         initializers for struct pentry_state.
13742         (__argp_error): Check return value of __asprintf
13743         (__argp_failure): Translate error message
13744
13745         * lib/argp-parse.c: Removed braces around the expansion of N_()
13746
13747 2005-01-23  Paul Eggert  <eggert@cs.ucla.edu>
13748
13749         * m4/acl.m4, afs.m4, alloca.m4, argp.m4, assert.m4, atexit.m4,
13750         backupfile.m4, base64.m4, bison.m4, c-bs-a.m4, c-stack.m4,
13751         c-strtod.m4, calloc.m4, canon-host.m4, canonicalize.m4,
13752         clock_time.m4, cloexec.m4, closeout.m4, d-ino.m4, d-type.m4,
13753         dirfd.m4, dirname.m4, dos.m4, dup2.m4, error.m4, euidaccess.m4,
13754         exclude.m4, exitfail.m4, extensions.m4, fcntl-safer.m4,
13755         file-type.m4, fileblocks.m4, filemode.m4, fnmatch.m4, fpending.m4,
13756         free.m4, fstypename.m4, fsusage.m4, ftruncate.m4, getaddrinfo.m4,
13757         getcwd-path-max.m4, getcwd.m4, getdate.m4, getdomainname.m4,
13758         getgroups.m4, gethostname.m4, getline.m4, getndelim2.m4,
13759         getnline.m4, getopt.m4, getpagesize.m4, getpass.m4, getsubopt.m4,
13760         gettime.m4, gettimeofday.m4, getugroups.m4, getusershell.m4,
13761         group-member.m4, hard-locale.m4, hash.m4, host-os.m4, human.m4,
13762         idcache.m4, inttostr.m4, isdir.m4, jm-winsz1.m4, jm-winsz2.m4,
13763         link-follow.m4, long-options.m4, ls-mntd-fs.m4, lstat.m4,
13764         makepath.m4, mathl.m4, md5.m4, memcasecmp.m4, memchr.m4,
13765         memcmp.m4, memcoll.m4, memcpy.m4, memmem.m4, memmove.m4,
13766         memrchr.m4, memset.m4, mkdir-slash.m4, mkstemp.m4, mktime.m4,
13767         modechange.m4, mountlist.m4, nanosleep.m4, obstack.m4,
13768         path-concat.m4, pathmax.m4, perl.m4, physmem.m4, poll.m4,
13769         posixtm.m4, posixver.m4, putenv.m4, quote.m4, quotearg.m4,
13770         readdir.m4, readtokens.m4, readutmp.m4, regex.m4, rename.m4,
13771         restrict.m4, rmdir-errno.m4, rmdir.m4, rpmatch.m4, same.m4,
13772         savedir.m4, settime.m4, sha1.m4, sig2str.m4, snprintf.m4,
13773         sockpfaf.m4, st_dm_mode.m4, st_mtim.m4, stat.m4, stdint.m4,
13774         stdio-safer.m4, strchrnul.m4, strdup.m4, strerror.m4,
13775         strerror_r.m4, strftime.m4, strndup.m4, strnlen.m4, strsep.m4,
13776         strtod.m4, strtoimax.m4, strtok_r.m4, strtol.m4, strtoll.m4,
13777         strtoul.m4, strtoull.m4, strtoumax.m4, strverscmp.m4, sysexits.m4,
13778         time_r.m4, timegm.m4, timespec.m4, tm_gmtoff.m4, tzset.m4,
13779         uint32_t.m4, uintptr_t.m4, unistd-safer.m4, unlink-busy.m4,
13780         unlocked-io.m4, uptime.m4, userspec.m4, utimbuf.m4, utime.m4,
13781         utimecmp.m4, utimens.m4, utimes-null.m4, vsnprintf.m4, xalloc.m4,
13782         xgetcwd.m4, xreadlink.m4, xstrndup.m4, xstrtod.m4, xstrtoimax.m4,
13783         xstrtol.m4, xstrtoumax.m4, yesno.m4:
13784         Use an all-permissive copyright notice, recommended by RMS.
13785
13786 2005-01-21  Paul Eggert  <eggert@cs.ucla.edu>
13787
13788         * modules/chdir-long (Depends-on): Remove mempcpy.
13789
13790 2005-01-21  Jim Meyering  <jim@meyering.net>
13791
13792         * lib/openat.h (AT_SYMLINK_NOFOLLOW): Define to 4096, so it's the
13793         same value as for Solaris 9.
13794
13795         * lib/chdir-long.c (chdir_long): Rewrite to remove limitation on
13796         component length.  This included changing the parameter to be
13797         of type `char *' rather than `char const *'.
13798         * lib/chdir-long.h (chdir_long): Update prototype.
13799
13800         * lib/openat.c (fdopendir, fstatat): New functions.
13801         * lib/openat.h: Include headers required for use of DIR and struct
13802         stat.
13803         [AT_SYMLINK_NOFOLLOW]: Define.
13804         (fdopendir, fstatat): Add prototypes.
13805
13806 2005-01-21  Bruno Haible  <bruno@clisp.org>
13807
13808         * modules/classpath: New file.
13809         * MODULES.html.sh (Java): Add classpath.
13810
13811 2005-01-21  Bruno Haible  <bruno@clisp.org>
13812
13813         * lib/classpath.h: New file, from GNU gettext.
13814         * lib/classpath.c: New file, from GNU gettext.
13815
13816 2005-01-20  Simon Josefsson  <jas@extundo.com>
13817
13818         * modules/version-etc-fsf: New file.
13819
13820 2005-01-20  Simon Josefsson  <jas@extundo.com>
13821
13822         * lib/version-etc-fsf.c: New file, with version_etc_copyright.
13823         * lib/version-etc.c: Remove version_etc_copyright.
13824         * lib/version-etc.h (version_etc_copyright): Use [] instead of * in
13825         prototype, suggested by Paul Eggert <eggert@CS.UCLA.EDU>.
13826
13827 2005-01-20  Simon Josefsson  <jas@extundo.com>
13828
13829         * lib/base64.h (isbase64): Add.
13830
13831         * lib/base64.c (isb64): Rename to isbase64, use to_uchar instead of
13832         using a unsigned prototype, don't inline.
13833         (base64_decode): Use it.
13834
13835 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
13836
13837         * m4/save-cwd.m4 (gl_SAVE_CWD): Remove check for fcntl; we now assume
13838         it.
13839
13840 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
13841
13842         * lib/save-cwd.c (save_cwd): Remove code to support the case
13843         where fchdir is missing or flaky.
13844
13845 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
13846
13847         * MODULES.html.sh (Command-line arguments): Add version-etc-fsf.
13848
13849 2005-01-19  Paul Eggert  <eggert@cs.ucla.edu>
13850
13851         * modules/mempcpy (Makefile.am): Remove mention of mempcpy.h;
13852         AC_LIBSOURCES now does this.
13853         * MODULES.html.sh (Sizes of integer types <limits.h>): New element,
13854         with new ullong_max module.
13855
13856 2005-01-19  Bruno Haible  <bruno@clisp.org>
13857
13858         * modules/sh-quote: New file.
13859         * MODULES.html.sh (Executing programs): Add sh-quote.
13860
13861 2005-01-19  Bruno Haible  <bruno@clisp.org>
13862
13863         * lib/sh-quote.h: New file, from GNU gettext.
13864         * lib/sh-quote.c: New file, from GNU gettext.
13865
13866 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
13867
13868         Merge from coreutils.
13869         * m4/ullong_max.m4: New file.
13870         * m4/jm-macros.m4 (gl_MACROS): Require gl_ULLONG_MAX.
13871         (gl_MACROS): Assume localeconv exists.
13872
13873 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
13874
13875         Merge changes from coreutils, as described below in several
13876         changelogs dated today.
13877
13878         * lib/save-cwd.c: Include "save-cwd.h" before other include files.
13879         (O_DIRECTORY): Remove; not needed here, since "." must be
13880         a directory.  All uses removed.
13881         (save_cwd): Use __sgi || __sun, not sun || __sun.  __sun is
13882         universal on Suns, and we also need to test for IRIX.
13883         Revamp code to use 'if' rather than '#if'.
13884         Avoid unnecessary comparison of cwd->desc to 0.
13885
13886         * lib/utimens.c (futimens): Robustify the previous patch, by checking
13887         for known valid error numbers rather than observed invalid ones.
13888
13889 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
13890
13891         * modules/ullong_max: New file.
13892
13893         * modules/chdir-long, modules/openat: New files.
13894         * modules/save-cwd (Depends-on): Depend on chdir-long.
13895         (Makefile.am): Remove lib_SOURCES; now handled by AC_LIBSOURCES.
13896
13897 2005-01-18  Jim Meyering  <jim@meyering.net>
13898
13899         Merge from coreutils.
13900         * m4/chdir-long.m4, m4/openat.m4: New files.
13901         * m4/save-cwd.m4 (gl_SAVE_CWD): Add AC_LIBSOURCES for save-cwd.c,
13902         save-cwd.h.  Add AC_LIBOBJ for save-cwd.
13903         * m4/chown.m4 (gl_FUNC_CHOWN): When cross-compiling, assume that chown
13904         is sane and DOES follow symlinks.  Besides, testing 20 different
13905         systems found no broken chown implementations.
13906         Prompted by a change in rsync's copy of this macro.
13907         * m4/jm-macros.m4 (gl_MACROS): Require gl_FUNC_CHDIR_LONG.
13908
13909         * m4/lchown.m4 (gl_FUNC_LCHOWN): Use AC_LIBSOURCES.
13910
13911         * m4/utimes.m4: Work around tests/touch/empty-file failure on a system
13912         (sparc64, Linux-2.4.28, glibc-2.3.3) that didn't honor utimes'
13913         NULL-means-set-to-current-time semantics.
13914         Remove temporary file immediately, rather than waiting
13915         for configure's at-exit trap code to do it.
13916
13917 2005-01-18  Jim Meyering  <jim@meyering.net>
13918
13919         * lib/version-etc.c (version_etc_copyright): Update copyright date.
13920
13921         * lib/utimens.c (futimens): Account for the fact that futimes
13922         can also fail with errno == ENOSYS or errno == ENOENT.
13923         Patch from Dmitry V. Levin.
13924
13925         Change the name of the robust chdir function from chdir to chdir_long.
13926         * lib/save-cwd.c: Include chdir-long.h rather than chdir.h.
13927         (restore_cwd): Use chdir_long, not chdir.
13928         * lib/chdir-long.c: Renamed from chdir.c.
13929         * lib/chdir-long.h: Renamed from chdir.h.
13930         [!defined PATH_MAX]: Define chdir_long to chdir on systems like the
13931         Hurd.
13932
13933 2005-01-18  Bruno Haible  <bruno@clisp.org>
13934
13935         * m4/allocsa.m4, m4/codeset.m4, m4/copy-file.m4, m4/eaccess.m4:
13936         * m4/eealloc.m4, m4/eoverflow.m4, m4/execute.m4, m4/fatal-signal.m4:
13937         * m4/findprog.m4, m4/glibc21.m4, m4/iconv.m4, m4/intmax_t.m4:
13938         * m4/inttypes_h.m4, m4/lib-ld.m4, m4/lib-link.m4, m4/lib-prefix.m4:
13939         * m4/linebreak.m4, m4/localcharset.m4, m4/longdouble.m4:
13940         * m4/longlong.m4, m4/mbrtowc.m4, m4/mbstate_t.m4, m4/mbswidth.m4:
13941         * m4/mkdtemp.m4, m4/pipe.m4, m4/readlink.m4, m4/safe-read.m4:
13942         * m4/safe-write.m4, m4/setenv.m4, m4/sig_atomic_t.m4:
13943         * m4/signalblocking.m4, m4/signed.m4, m4/size_max.m4, m4/ssize_t.m4:
13944         * m4/stdbool.m4, m4/stdint_h.m4, m4/stpcpy.m4, m4/stpncpy.m4:
13945         * m4/strcase.m4, m4/strcspn.m4, m4/strpbrk.m4, m4/strstr.m4:
13946         * m4/ucs4-utf.m4, m4/uintmax_t.m4, m4/ulonglong.m4, m4/unicodeio.m4:
13947         * m4/utf-ucs4.m4, m4/vasnprintf.m4, m4/vasprintf.m4:
13948         * m4/wait-process.m4, m4/wchar_t.m4, m4/wint_t.m4, m4/xsize.m4:
13949         Use an all-permissive copyright notice, recommended by RMS.
13950
13951 2005-01-18  Bob Proulx  <bob@proulx.com>
13952
13953         * lib/obstack.c [DEFAULT_ALIGNMENT]: Use an intermediate type to
13954         simplify offsetof() macro construct to avoid compile failure with
13955         native HP-UX 11.0 ANSI C compiler.
13956
13957 2005-01-17  Bruno Haible  <bruno@clisp.org>
13958
13959         * lib/stpncpy.c: Remove HAVE_STPNCPY and gnu_stpncpy renaming,
13960         redundant because stpncpy.m4 takes care of it.
13961
13962 2005-01-17  Bruno Haible  <bruno@clisp.org>
13963
13964         * lib/progreloc.c: Include xalloc.h instead of xmalloc.h.
13965
13966 2005-01-17  Bruno Haible  <bruno@clisp.org>
13967
13968         * lib/progreloc.c (xstrdup): Define as strdup if no xmalloc should be
13969         used.
13970
13971 2005-01-17  Bruno Haible  <bruno@clisp.org>
13972
13973         * lib/fwriteerror.h (fwriteerror): Change specification to include
13974         fclose.
13975         * lib/fwriteerror.c: Include <stdbool.h>.
13976         (fwriteerror): At the end, close the file stream. Record whether
13977         stdout was already closed.
13978
13979 2005-01-17  Bruno Haible  <bruno@clisp.org>
13980
13981         * lib/execute.c (environ): Declare if needed.
13982         * lib/pipe.c (environ): Likewise.
13983         Reported by Michael Schloh von Bennewitz <michael.schloh@cw.com>.
13984
13985 2005-01-11  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
13986
13987         * modules/argp: Depend on vsnprintf
13988
13989 2005-01-10  Jim Meyering  <jim@meyering.net>
13990
13991         * modules/closeout (Depends-on): Add atexit.
13992
13993 2005-01-06  Bruno Haible  <bruno@clisp.org>
13994
13995         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Rename stpncpy to gnu_stpncpy here.
13996
13997 2005-01-04  Paul Eggert  <eggert@cs.ucla.edu>
13998
13999         * lib/human.c (SIZE_MAX, UINTMAX_MAX): Move these conditional
14000         definitions to be after all include files, to avoid collisions.
14001         Problem reported by Bob Proulx.
14002
14003 2005-01-04  Jim Meyering  <jim@meyering.net>
14004
14005         Changes imported from coreutils.
14006         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Rather than using "conftestXXXXXX"
14007         as the mkstemp template, use a temporary directory and an
14008         8.3-friendly template to avoid trouble on systems like DJGPP.
14009         Reported by Juan M. Guerrero via Stepan Kasal.
14010         * m4/(gl_FUNC_MKSTEMP): Include <unistd.h> for the declaration of
14011         close. Remove the temporary directory right away, rather than waiting
14012         for configure's at-exit trap code to do it.
14013         Suggestion from Stepan Kasal.
14014
14015 2005-01-01  Simon Josefsson  <jas@extundo.com>
14016
14017         * gnulib-tool: Print #include directives when --import'ing.
14018
14019 2004-12-28  Simon Josefsson  <jas@extundo.com>
14020
14021         * tests/test-base64.c: Include required header files.  Remove
14022         unused variables.
14023
14024 2004-12-28  Paul Eggert  <eggert@cs.ucla.edu>
14025
14026         * modules/error (Depends-on): Remove gettext.
14027
14028 2004-12-28  Paul Eggert  <eggert@cs.ucla.edu>
14029
14030         * lib/error.c [!_LIBC && !ENABLE_NLS]: Do not include "gettext.h";
14031         not needed.  This removes a dependency on the gettext module.
14032         [defined _LIBC]: Do not include <libintl.h>; not needed.
14033
14034 2004-12-24  Paul Eggert  <eggert@cs.ucla.edu>
14035
14036         * m4/c-strtod.m4 (gl_C99_STRTOLD): New macro.
14037         (gl_C_STRTOD): Use it instead of AC_CHECK_DECLS_ONCE(strtold).
14038
14039 2004-12-24  Paul Eggert  <eggert@cs.ucla.edu>
14040
14041         * lib/c-strtod.c (STRTOD): Depend on HAVE_C99_STRTOLD, not
14042         HAVE_DECL_STRTOLD.
14043
14044 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
14045
14046         * modules/getdate (Depends-on): Remove alloca-opt.
14047
14048 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
14049
14050         * m4/getdate.m4 (gl_GETDATE): Remove AC_FUNC_ALLOCA.
14051
14052 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
14053
14054         * lib/argp-parse.c: Include <stddef.h>.
14055         (alignof, alignto): New macros.
14056         (parser_init): Don't assume that void * is aligned sufficiently
14057         for struct option.
14058
14059         * lib/getdate.y (YYSTACK_USE_ALLOCA): Define to 0, since there's no
14060         need to extend the stack.
14061         (YYINITDEPTH): New macro, so that the initial stack isn't overly
14062         large.
14063
14064 2004-12-22  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
14065
14066         * lib/argp-parse.c (parser_init): Avoid arithmetics on void pointers.
14067
14068 2004-12-19  Paul Eggert  <eggert@cs.ucla.edu>
14069
14070         * modules/regex (lib_SOURCES): Remove regex.c, undoing previous
14071         (2004-10-24) change.  Apparently this was a false alarm.
14072
14073         * modules/getdate: Depend on alloca-opt, not alloca.
14074
14075 2004-12-19  Paul Eggert  <eggert@cs.ucla.edu>
14076
14077         * lib/alloca_.h: Conditionalize on _GNULIB_ALLOCA_H, not _ALLOCA_H.
14078         Remove now-obsolete comment about AIX.
14079         * lib/getdate.y: Include <alloca.h> only if HAVE_ALLOCA.
14080         (YYSTACK_USE_ALLOCA): Define to 0 if !HAVE_ALLOCA.
14081         (YYMAXDEPTH): New macro.
14082
14083 2004-12-18  Simon Josefsson  <jas@extundo.com>
14084
14085         * modules/alloca: Depend on alloca-opt, instead of duplicating it.
14086
14087 2004-12-18  Bruno Haible  <bruno@clisp.org>
14088
14089         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Also test for sigaction.
14090
14091 2004-12-18  Bruno Haible  <bruno@clisp.org>
14092
14093         * lib/fatal-signal.c (fatal_signals): Make non-const.
14094         (init_fatal_signals): New function.
14095         (uninstall_handlers, install_handlers): Ignore signals that were set to
14096         SIG_IGN.
14097         (at_fatal_signal): Call init_fatal_signals.
14098         (init_fatal_signal_set): Likewise. Ignore signals that were set to
14099         SIG_IGN.
14100         Reported by Paul Eggert.
14101
14102 2004-12-18  Bruno Haible  <bruno@clisp.org>
14103
14104         * doc/alloca.texi: New file.
14105         * doc/alloca-opt.texi: New file.
14106
14107 2004-12-17  Jim Meyering  <jim@meyering.net>
14108
14109         * config/install-sh: Use `(exit N); exit N', not `(exit N); exit'.
14110         Otherwise, install-sh could exit with improper exit status when
14111         exiting via a trapped interrupt.  Thanks to a report from Bob Proulx.
14112
14113 2004-12-16  Simon Josefsson  <jas@extundo.com>
14114
14115         * tests/test-base64.c: Add license.
14116
14117 2004-12-15  Stepan Kasal  <address@hidden>
14118
14119         * gnulib-tool (func_emit_lib_Makefile_am): Shorten a long sed command.
14120
14121 2004-12-12  Paul Eggert  <eggert@cs.ucla.edu>
14122
14123         * modules/getcwd (Files): Add m4/d-ino.m4.
14124         Suggested by Mark D. Baushke.
14125
14126 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
14127
14128         * lib/getdate.y (textint): New member "negative".
14129         (time_zone_hhmm): New function.
14130         Expect 14 shift-reduce conflicts, not 13.
14131         (o_colon_minutes): New rule.
14132         (time, zone): Use it to add support for +HH:MM, UTC+HH:MM.
14133         (yylex): Set the "negative" member of signed numbers.
14134
14135 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
14136
14137         * doc/getdate.texi (Time of day items, Time zone items):
14138         Describe new formats +00:00, UTC+00:00.
14139
14140 2004-12-07  Paul Eggert  <eggert@cs.ucla.edu>
14141
14142         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Fix typo in previous change:
14143         spurious "-l"s.  Problem reported by Stepan Kasal.
14144
14145 2004-12-06  Paul Eggert  <eggert@cs.ucla.edu>
14146
14147         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): New macro, to work around bug
14148         in Autoconf 2.59.  Problem reported by Mark D. Baushke.
14149
14150 2004-12-04  Simon Josefsson  <jas@extundo.com>
14151
14152         * modules/getaddrinfo (License): Add LGPL, reported by Yoann
14153         Vandoorselaere <yoann@prelude-ids.org>.
14154
14155 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
14156
14157         Changes imported from coreutils.
14158         * m4/hard-locale.m4 (gl_HARD_LOCALE): Assume locale.h and setlocale
14159         exist.
14160         * m4/human.m4 (gl_HUMAN): Assume locale.h and localeconv exist.
14161
14162 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
14163
14164         Changes imported from coreutils.
14165         * lib/hard-locale.c: Assume <locale.h> exists.
14166         Include "strdup.h".
14167         (GLIBC_VERSION): New macro.
14168         (hard_locale): Assume setlocale exists.
14169         Rewrite to avoid #ifdef.
14170         Use strdup rather than malloc + strcpy.
14171         * lib/human.c: Assume <locale.h> exists.
14172         (human_readable): Assume localeconv exists.
14173
14174 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
14175
14176         * modules/hard-locale (Depends-on): Add strdup.
14177
14178 2004-12-01  Jakub Jelinek  <jakub@redhat.com>
14179
14180         * lib/mktime.c (__mktime_internal): If SEC_REQUESTED != SEC,
14181         convert T2, not T.  (Imported from libc.)
14182
14183 2004-11-30  Simon Josefsson  <jas@extundo.com>
14184
14185         * modules/restrict (License): Change to LGPL.
14186
14187 2004-11-30  Simon Josefsson  <jas@extundo.com>
14188
14189         * m4/restrict.m4: Add copyright and copying conditions.
14190
14191 2004-11-30  Simon Josefsson  <jas@extundo.com>
14192
14193         * m4/base64.m4: New file.
14194
14195 2004-11-30  Simon Josefsson  <jas@extundo.com>
14196
14197         * MODULES.html.sh (Extra functions based on ANSI C 89): Add
14198         base64.
14199
14200         * tests/test-base64.c: New file.
14201
14202         * modules/base64: New file.
14203
14204 2004-11-30  Paul Eggert  <eggert@cs.ucla.edu>
14205
14206         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX):
14207         Define HAVE_PARTLY_WORKING_GETCWD if getcwd is partly working.
14208
14209         * m4/readutmp.m4 (gl_READUTMP): Don't check for sys/param.h.
14210
14211 2004-11-30  Paul Eggert  <eggert@cs.ucla.edu>
14212
14213         * lib/getcwd.c (is_ENAMETOOLONG): New macro.
14214         (__getcwd.c): Don't restore errno; glibc doesn't.
14215         [HAVE_PARTLY_WORKING_GETCWD && !defined AT_FDCWD]: Try system getcwd
14216         first, falling back to our code only if its results look suspicious.
14217         Ensure that the resulting buffer is only as large as necessary.
14218
14219         * lib/readutmp.c: Include readutmp.h first.
14220         Include <errno.h>, since readutmp.h no longer does that.
14221         * lib/readutmp.h: Don't include <errno.h>,
14222         <sys/param.h>, <time.h>; not needed to establish interface.
14223         (errno): Remove decl.
14224         (HAVE_STRUCT_XTMP_UT_TYPE): Remove; no longer needed.
14225         (UT_TYPE_EQ, UT_TYPE_NOT_DEFINED, UT_TYPE_BOOT_TIME,
14226         UT_TYPE_USER_PROCESS, IS_USER_PROCESS): New macros.
14227
14228 2004-11-28  Simon Josefsson  <jas@extundo.com>
14229
14230         * lib/base64.h, base64.c: New file.
14231
14232 2004-11-27  Paul Eggert  <eggert@cs.ucla.edu>
14233
14234         * lib/getcwd.h: New file, which I forgot to check in on 2004-11-25.
14235
14236 2004-11-26  Paul Eggert  <eggert@cs.ucla.edu>
14237
14238         * modules/getcwd (Files): Add lib/getcwd.h, m4/getcwd.m4.
14239         (Depends-on): Remove pathmax, same.  Add mempcpy.
14240         (configure.ac): GL_FUNC_GETCWD_PATH_MAX -> gl_FUNC_GETCWD.
14241         (Makefile.am): Append getcwd.h to lib_SOURCES.
14242         (Include): Add getcwd.h.
14243         (Maintainer): Change from Jim Meyering to "all, glibc",
14244         since getdate now uses intended-for-glibc code.
14245         * modules/xgetcwd (Files): Remove m4/getcwd.m4.
14246         (Depends-on): Depend on getcwd.  Do not depend on pathmax.
14247
14248 2004-11-25  Paul Eggert  <eggert@cs.ucla.edu>
14249
14250         Fix problems reported by Scott S. Tinsley for HP-UX 11.11 using
14251         HP's ANSI C compiler.
14252         * lib/fsusage.c (statvfs) [HAVE_SYS_STATVFS_H]: Remove decl.
14253         Declaring int functions causes warnings on some modern systems and
14254         shouldn't be needed to compile on ancient ones.
14255         * lib/same.c (MIN) [defined MIN]: Don't define, since it's already
14256         defined.
14257
14258         * lib/getcwd.c: Replace by a copy of glibc/sysdeps/posix/getcwd.c, but
14259         with the following changes.
14260         (__set_errno): Parenthesize properly.
14261         Include <stdbool.h>.
14262         (MIN, MAX, MATCHING_INO): New macros.
14263         (__getcwd): Define with prototype, not K&R form.
14264         Use heuristics to allocate default buffer on stack if possible.
14265         If AT_FDCWD is defined, use openat and fstatat to avoid O(N**2)
14266         behavior, and to avoid the PATH_MAX limit when computing
14267         ../../../../...
14268         Use MATCHING_INO to compare inode number to file.
14269         Check for arithmetic overflow in size calculations.
14270         Fix bug in reallocation of dot array that caused getcwd to fail
14271         on directories nested deeper than 75.
14272         Be more careful about saving errno on error.
14273         Do not use realloc; use only free+malloc, as this is a bit
14274         more flexible and avoids a needless copy operation.
14275         Do not inspect st_dev and st_ino for symbolic links; POSIX
14276         doesn't specify the latter.
14277         Check for closedir errors.
14278         Avoid needless casts.
14279         Use "#ifdef weak_alias" around weak_alias, to be like other
14280         glibc code.
14281         The following changes to getcwd.c have effect only when used in
14282         gnulib; they have no effect inside glibc proper.
14283         (#pragma alloca) [defined _AIX && !defined __GNUC__]: Remove,
14284         as alloca isn't used.
14285         (alloca, __alloca): Likewise.
14286         [!_LIBC]: Include "getcwd.h", "mempcpy.h".
14287         Include <stddef.h>, <stdlib.h>, <string.h>, <limits.h>
14288         unconditionally, as gnulib assumes C89 or better.
14289         Do not include <sys/param.h>.
14290         (errno) [!defined __GNU_LIBRARY__ && !defined STDC_HEADERS]: Remove
14291         no-longer-necessary 'extern int errno' decl; gnulib assumes C89 or
14292         better.
14293         (NULL) [!defined NULL]: Remove; we assume C89 or better.
14294         Include <dirent.h> in a way that is compatible with modern Autoconf.
14295         (_D_ALLOC_NAMELEN, _D_EXACT_NAMLEN):
14296         New macros, if not already defined.
14297         Include <unistd.h> if _LIBC, not if __GNU_LIBRARY__.
14298         Use "_LIBC", not "defined _LIBC", for consistency.
14299         (HAVE_MEMPCPY): Remove; no longer needed now that gnulib has
14300         a mempcpy module.
14301         (__lstat, __closedir, __opendir, __readdir) [!_LIBC]: New macros.
14302         (GETCWD_RETURN_TYPE): Remove.  All uses replaced by char *.
14303         * lib/xgetcwd.c: David MacKenzie's old code was removed, so give
14304         credit only to Jim Meyering and adjust the copyright dates.
14305         Do not include <limits.h>, <stdio.h>, <sys/types.h>,
14306         <stdlib.h>, <unistd.h>, "pathmax.h".
14307         Instead, include "xgetcwd.h" (first) and "getcwd.h".
14308         (INITIAL_BUFFER_SIZE): Remove.
14309         (xgetcwd): Rely on getcwd, since we now depend on a reliable one.
14310
14311 2004-11-25  Paul Eggert  <eggert@cs.ucla.edu>
14312
14313         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Renamed from
14314         GL_FUNC_GETCWD_PATH_MAX for consistency.  All uses changed.
14315         Use the _ONCE methods, for efficiency.
14316         Check for fcntl.h.  In test program, include <errno.h>
14317         and <fcntl.h> if available.  Remove old K&R cruft from
14318         test program.  Check for common errors in GNU/Linux,
14319         OpenBSD, and Solaris.  Just set gl_cv_func_getcwd_path_max;
14320         don't do AC_LIBOBJ, as that's getcwd.m4's job.
14321         * m4/getcwd.m4 (gl_FUNC_GETCWD_NULL): Renamed from
14322         AC_FUNC_GETCWD_NULL.  All used changed.  Change cache variable
14323         name accordingly.
14324         (gl_FUNC_GETCWD, gl_PREREQ_GETCWD): New macros.  Revamp to
14325         accommodate new getcwd.c.
14326         * m4/jm-macros.m4 (gl_MACROS): Don't require GL_FUNC_GETCWD_PATH_MAX.
14327         * m4/prereq.m4 (gl_PREREQ): Add gl_FUNC_MEMPCPY.
14328         * m4/xgetcwd.m4 (gl_XGETCWD): Replace with gl_FUNC_GETCWD, since
14329         that's all we need now.
14330
14331 2004-11-23  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
14332
14333         * m4/argp.m4 (gl_ARGP): Require gl_GETOPT_SUBSTITUTE unconditionally:
14334         argp-parse.c depends on getopt internals, that means we should
14335         always use our getopt, to be on the safe side.
14336         * m4/getopt.m4 (gl_GETOPT): Check if GETOPT_H is already set, in
14337         order not to spoil the result of an eventual previous invocation
14338         of gl_GETOPT_SUBSTITUTE.
14339
14340 2004-11-23  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
14341
14342         * lib/getopt_.h: Re-addition of __getopt_argv_const caused
14343         redefinition warnings. To avoid them, include the defines
14344         in `#if !defined __need_getopt ... #endif'. The only place
14345         where __getopt_argv_const is used is in definitions
14346         of getopt_long and getopt_long_only below, which are as well
14347         protected by `#ifndef __need_getopt'.
14348         [defined __GETOPT_PREFIX && !defined __need_getopt]: Undef
14349         __need_getopt after including <stdio.h> and <unistd.h> These
14350         headers might have defined it.
14351
14352 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
14353
14354         * m4/utimens.m4 (gl_UTIMENS): Check for futimes function.
14355
14356 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
14357
14358         * lib/utimens.c (__attribute__, ATTRIBUTE_UNUSED): New macros.
14359         (futimens): New function, which uses futimes if available.
14360         (futimens, utimens): Support timespec==NULL, with same semantics
14361         as utime and utimens.
14362         * lib/utimens.h (futimens): New decl.
14363
14364 2004-11-23  Jim Meyering  <jim@meyering.net>
14365
14366         * lib/getopt_.h: Remove trailing blanks.
14367
14368 2004-11-23  Jim Meyering  <jim@meyering.net>
14369
14370         * lib/__fpending.c: Add comment.
14371
14372 2004-11-22  Paul Eggert  <eggert@cs.ucla.edu>
14373
14374         * modules/canonicalize (Depends-on): Add xreadlink.
14375         Problem reported by James Youngman.
14376
14377 2004-11-20  Paul Eggert  <eggert@cs.ucla.edu>
14378
14379         * lib/getopt_.h (__GETOPT_CONCAT, __GETOPT_XCONCAT, __GETOPT_ID):
14380         New macros.
14381         (getopt, getopt_long, getopt_long_only, optarg, opterr, optind,
14382         optopt): Use them instead of invoking ## directly; otherwise, the
14383         symbols will be __GETOPT_PREFIXgetopt rather than rpl_getopt.
14384
14385 2004-11-19  Bruno Haible  <bruno@clisp.org>
14386
14387         * lib/strtok_r.c: Move comments from here...
14388         * lib/strtok_r.h: ... to here.
14389
14390 2004-11-17  Paul Eggert  <eggert@cs.ucla.edu>
14391
14392         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Check for buggy calloc
14393         implementations that mishandle size_t overflow.
14394
14395 2004-11-17  Paul Eggert  <eggert@cs.ucla.edu>
14396
14397         * lib/realloc.c (rpl_realloc): Call 'free' if n==0, since realloc
14398         might fail.  Problem reported by Yoann Vandoorselaere.
14399         * lib/calloc.c (rpl_calloc): Defend against buggy calloc
14400         implementations that mishandle size_t overflow.
14401
14402 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
14403
14404         * modules/canon-host (Depends-on): Add strdup.
14405
14406 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
14407
14408         * m4/canon-host.m4 (gl_CANON_HOST): Check for getaddrinfo.
14409
14410 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
14411
14412         * lib/canon-host.c: Include "strdup.h".
14413         (canon_host): Use getaddrinfo if available, so that IPv6 works.
14414         Use strdup instead of malloc/strcpy to duplicate strings.
14415
14416         * lib/human.h (LONGEST_HUMAN_READABLE): Add 1 for space before unit.
14417         (human_space_before_unit): New constant.
14418         * lib/human.c (human_readable): Support it.
14419
14420         * lib/xgetcwd.c: Include <limits.h>, for PATH_MAX.
14421         (xgetcwd): Set errno correctly when failing.
14422         Work around Solaris 9 bug: getcwd sets errno==ERANGE even though
14423         the failure is actually due to a PATH_MAX problem.
14424
14425         Further getopt changes to make it more likely that glibc will
14426         buy the changes back.
14427         * lib/getopt.c (POSIXLY_CORRECT): New constant.
14428         (getopt): Use it, so to preserve glibc semantic
14429         * lib/getopt1.c (getopt_long, getopt_long_only): Arg is char * const *
14430         when compiling for libc.
14431         * lib/getopt_.h (__getopt_argv_const): Bring it back.
14432         (getopt_long, getopt_long_only): Use it.
14433
14434         * lib/getopt.c (_getopt_initialize, _getopt_internal_r,
14435         _getopt_internal): New arg POSIXLY_CORRECT.  All callers changed.
14436         (getopt): Argv is now char * const *, as per standard.
14437         (_getopt_internal_r, _getopt_internal): Argv is now char **,
14438         not char *__getopt_argv_const *.
14439         * lib/getopt1.c (getopt_long, _getopt_long_r, getopt_long_only,
14440         _getopt_long_only_r): Likewise.
14441         * lib/getopt_.h (getopt, getopt_long, geopt_long_only): Likewise.
14442         * lib/getopt_int.h (_getopt_internal, _getopt_internal_r,
14443         _getopt_long_r, _getopt_long_only_r): Likewise.
14444         * lib/getopt_.h (__getopt_argv_const): Remove.
14445         (getopt): Argv is now char * const *, as per standard.
14446
14447         * lib/getdate.y (tORDINAL): New token.
14448         (day, relunit): Allow it for relative times.
14449         (relative_time_table): Use tORDINAL for ordinals.
14450
14451 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
14452
14453         * doc/getdate.texi (General date syntax): "next" is 1, not 2.
14454         Document that "second" isn't allowed as an ordinal number.
14455
14456 2004-11-16  Jim Meyering  <jim@meyering.net>
14457
14458         * modules/closeout (Depends-on): Add fpending.
14459
14460 2004-11-15  Jim Meyering  <jim@meyering.net>
14461
14462         * lib/closeout.c: Include "__fpending.h" once again.
14463         Include <stdbool.h>.
14464         (close_stdout): Don't fail just because stdout was closed initially,
14465         since some programs don't write to stdout in the normal course of
14466         operation (other than --version and --help), and we don't want this
14467         function to make e.g. `touch file >&-' fail.
14468         But do fail if it was closed and someone has tried to write to it.
14469         E.g., `printf foo >&-' must fail.
14470
14471 2004-11-13  Jim Meyering  <jim@meyering.net>
14472
14473         * m4/jm-macros.m4: Do require gl_FUNC_FPENDING.
14474
14475 2004-11-12  Simon Josefsson  <jas@extundo.com>
14476
14477         * config/srclist.txt: Add strtok_r.c, glibc bought our changes, but a
14478         small doc fix is still pending.
14479
14480 2004-11-11  Simon Josefsson  <jas@extundo.com>
14481
14482         * modules/strtok_r: New file.
14483
14484         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
14485         strtok_r.
14486
14487 2004-11-11  Simon Josefsson  <jas@extundo.com>
14488
14489         * m4/strtok_r.m4: New file.
14490
14491         * m4/getopt.m4: Replace opterr.
14492
14493 2004-11-11  Simon Josefsson  <jas@extundo.com>
14494
14495         * lib/strtok_r.h, strtok_r.c: New file.
14496
14497 2004-11-11  Paul Eggert  <eggert@cs.ucla.edu>
14498
14499         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): Define __GETOPT_PREFIX instead
14500         of replacing opterr, getopt, etc.  This should handle the
14501         powerpc-apple-darwin5.5 problem recently noted by Simon Josefsson.
14502
14503 2004-11-11  Paul Eggert  <eggert@cs.ucla.edu>
14504
14505         * lib/getopt_.h (__getopt_argv_const): New macro, to be used so that
14506         we can stop lying to compilers about the constness of argv when we
14507         are compiled outside glibc.
14508         (getopt, getopt_long, getopt_long_only): Use it.
14509         * lib/getopt.c (_getopt_initialize, _getopt_internal_r,
14510         _getopt_internal, getopt): Likewise.
14511         * lib/getopt1.c (getopt_long, _getopt_long_r, getopt_long_only,
14512         _getopt_long_only_r): Likewise.
14513         * lib/getopt_int.h (_getopt_internal, _getopt_internal_r,
14514         _getopt_long_r, _getopt_long_only_r): Likewise.
14515
14516         * lib/getopt_.h [defined __GETOPT_PREFIX && !defined __need_getopt]:
14517         Include <stdlib.h> and <stdio.h>, and <unistd.h> if available.
14518         Then rename getopt to __GETOPT_PREFIX##getopt, and so forth for
14519         the other external symbols.
14520         (getopt) [!defined __GNU_LIBRARY]: Use prototype, not old-style
14521         declaration, since the above renaming now works around collisions.
14522
14523 2004-11-11  Jim Meyering  <jim@meyering.net>
14524
14525         * lib/linebreak.c: Remove trailing blanks.
14526         * lib/alloca_.h: Likewise.
14527         * lib/acosl.c: Likewise.
14528         * lib/euidaccess.c: Likewise.
14529         * lib/allocsa.h: Likewise.
14530
14531 2004-11-10  Simon Josefsson  <jas@extundo.com>
14532
14533         * m4/getaddrinfo.m4: New file.
14534
14535 2004-11-10  Simon Josefsson  <jas@extundo.com>
14536
14537         * lib/getaddrinfo.h, lib/getaddrinfo.c: New files.
14538
14539 2004-11-10  Simon Josefsson  <jas@extundo.com>
14540
14541         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
14542         getaddrinfo.
14543
14544         * modules/getaddrinfo: New file.
14545
14546 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
14547
14548         * m4/prereq.m4 (gl_PREREQ): Require gt_FUNC_SETENV.
14549
14550 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
14551
14552         * lib/mktime.c (SHR): New macro, which is a portable
14553         substitute for >> that should work even on Crays.
14554         (TIME_T_MIDPOINT, ydhms_diff, __mktime_internal): Use it.
14555         Problem reported by Mark D. Baushke in
14556         <http://lists.gnu.org/archive/html/bug-gnulib/2004-11/msg00071.html>.
14557         * lib/getdate.y (SHR): Likewise.
14558         (tm_diff): Use it.
14559         * lib/strftime.c (SHR): Likewise.
14560         (tm_diff): Use it.
14561         * lib/quotearg.c (struct quoting_options): Use unsigned int for
14562         quote_these_too, so that right shifts are well defined.  All uses
14563         changed.
14564
14565 2004-11-10  Jim Meyering  <jim@meyering.net>
14566
14567         Ensure that no close failure goes unreported.
14568         * lib/closeout.c (close_stdout): Always close stdout.  I.e., don't
14569         return early when it seems there's nothing to flush.
14570         Don't include __fpending.h.
14571
14572 2004-11-10  Jim Meyering  <jim@meyering.net>
14573
14574         * modules/closeout (Depends-on): Remove fpending.
14575
14576 2004-11-10  Jim Meyering  <jim@meyering.net>
14577
14578         * m4/jm-macros.m4 (gl_MACROS): Don't require gl_FUNC_FPENDING.
14579
14580 2004-11-09  Paul Eggert  <eggert@cs.ucla.edu>
14581
14582         * m4/strftime.m4 (_gl_STRFTIME_PREREQS): Remove.  Move its body to
14583         gl_FUNC_STRFTIME.
14584         (gl_FUNC_STRFTIME): Use AC_CHECK_FUNCS_ONCE and AC_CHECK_HEADERS_ONCE
14585         and AC_REQUIRE when possible, to avoid duplicate checks.
14586         Check for <wchar.h>.
14587
14588 2004-11-09  Paul Eggert  <eggert@cs.ucla.edu>
14589
14590         * lib/strftime.c (DO_MULTIBYTE): Check for wchar.h, too.
14591
14592 2004-11-09  Bruno Haible  <bruno@clisp.org>
14593
14594         * m4/sockpfaf.m4: New file.
14595
14596 2004-11-05  Bruno Haible  <bruno@clisp.org>
14597
14598         * lib/readlink.c: Include stddef.h, needed for size_t on Woe32.
14599         Reported by Mark D. Baushke <mdb@cvshome.org>.
14600
14601 2004-11-04  Bruno Haible  <bruno@clisp.org>
14602
14603         2004-09-11  Bruno Haible  <bruno@clisp.org>
14604                 * allocsa.valgrind: New file.
14605         2004-02-06  Bruno Haible  <bruno@clisp.org>
14606                 * allocsa.h (sa_alignof): Define differently with HP-UX cc, to
14607                 avoid a bug of this cc on HP-UX 10.20 dealing with enums.
14608                 Reported by Christopher Seip <chris.seip@hp.com>.
14609
14610 2004-11-04  Bruno Haible  <bruno@clisp.org>
14611
14612         * modules/allocsa (Files): Add lib/allocsa.valgrind.
14613         (Makefile.am): Distribute it.
14614
14615 2004-11-03  Paul Eggert  <eggert@cs.ucla.edu>
14616
14617         * lib/xreadlink.c (xreadlink): AIX and HP-UX readlink return -1
14618         with errno == ERANGE if the buffer is too small.
14619         Problem reported by Mark D. Baushke.
14620
14621 2004-11-03  Albert Chin  <china@thewrittenword.com>
14622             Paul Eggert  <eggert@cs.ucla.edu>
14623
14624         * m4/uint32_t.m4 (gl_AC_TYPE_UINT32_T): When determining uint32_t
14625         equivalent, substitute $ac_type for equivalent type rather than
14626         blindly using uint32_t *always* which won't work if uint32_t is not
14627         available.  Define _UINT32_T to work around typedef of uint32_t if
14628         <sys/sched.h>, <pthread.h>, or <semaphore.h> used on Solaris
14629         2.5.1.
14630
14631 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
14632
14633         * m4/jm-macros.m4: Sync from coreutils.
14634         (gl_MACROS): Check for mbrlen, for pathchk.
14635         (gl_CHECK_ALL_TYPES): Require AC_TYPE_MBSTATE_T, for pathchk.
14636
14637 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
14638
14639         * lib/xreadlink.c (MAXSIZE): New macro.
14640         (xreadlink): Use it instead of SSIZE_MAX.  Ensure initial buffer
14641         size does not exceed MAXSIZE.  Avoid cast.
14642         As suggested by Mark D. Baushke in
14643         <http://lists.gnu.org/archive/html/bug-gnulib/2004-11/msg00009.html>,
14644         if readlink fails with buffer size just under MAXSIZE, try again
14645         with MAXSIZE.
14646
14647 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
14648
14649         * config/srclist.txt: Add mktime.c; glibc bought all our changes.
14650
14651 2004-11-02  Derek R. Price  <derek@ximbiot.com>
14652         and  Paul Eggert  <eggert@cs.ucla.edu>
14653
14654         * lib/getdate.y [!TEST]: Include <stdio.h>, since we use sprintf now.
14655         (get_date): Overparenthesize to avoid GCC warning.
14656
14657 2004-11-02  Bruno Haible  <bruno@clisp.org>
14658
14659         * m4/setenv.m4 (gt_FUNC_SETENV): Define VOID_UNSETENV if unsetenv()
14660         returns void.
14661
14662 2004-11-02  Bruno Haible  <bruno@clisp.org>
14663
14664         * lib/setenv.h (unsetenv): Define as a macro if the system's unsetenv()
14665         function returns void.
14666
14667 2004-11-01  Paul Eggert  <eggert@cs.ucla.edu>
14668
14669         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for declarations of
14670         fflush_unlocked, flockfile, funlockfile, funlockfile,
14671         fputs_unlocked, putc_unlocked.
14672
14673 2004-11-01  Paul Eggert  <eggert@cs.ucla.edu>
14674
14675         * lib/getpass.c (fflush_unlocked, flockfile, funlockfile)
14676         (funlockfile, fputs_unlocked, putc_unlocked): Don't define if
14677         already declared.
14678
14679 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
14680
14681         * modules/getdate (Files): Add doc/getdate.texi.
14682         (Depends-on): Add setenv, xalloc.
14683
14684 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
14685
14686         * lib/getdate.y: Add support for TZ="foo" within a date string.
14687         Fix some bugs near time_t boundaries.  Reject dates with
14688         out-of-range components, e.g., "Sept 31".
14689         Include <stdlib.h>, "setenv.h", "xalloc.h".
14690         (ISDIGIT_LOCALE): Remove; unused.
14691         Note that the TZ and time functions used here are not reentrant.
14692         (mktime_ok, get_tz): New functions.
14693         (TZBUFSIZE): New constant.
14694         (get_date): Parse leading TZ="foo".  Reject out-of-range components;.
14695         This requires that we sometimes generate our own TZ="XXX..." setting.
14696
14697 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
14698
14699         * doc/getdate.texi: New file, from coreutils with modifications for
14700         the new TZ parsing.
14701
14702 2004-10-27  Derek R. Price  <derek@ximbiot.com>
14703
14704         * lib/mktime.c (not_equal_tm): Remove redundant check.
14705
14706 2004-10-24  Paul Eggert  <eggert@cs.ucla.edu>
14707
14708         * modules/regex (lib_SOURCES): Add regex.c.
14709         Reported by James Youngman in
14710         <http://lists.gnu.org/archive/html/bug-gnulib/2004-10/msg00199.html>.
14711
14712 2004-10-24  Paul Eggert  <eggert@cs.ucla.edu>
14713
14714         * lib/getdate.y: Use Bison 1.875 features, and some minor
14715         code cleanups.  This change does not affect semantics.
14716         Don't include <stdlib.h>; no longer needed.
14717         Don't include unlocked-io.h; only the "#if TEST" code uses
14718         stdio, and performance isn't crucial there.
14719         (PC, YYLEX_PARAM, YYPARSE_PARAM): Remove; replaced by
14720         Bison 1.875 features as described below.
14721         All uses of "PC." replaced by "pc->".
14722         (YYSTYPE): Add a forward declaration.
14723         (yylex, yyerror): Use full prototypes in forward decls.
14724         Use "%pure-parser" rather than obsolescent "%pure_parser".
14725         Use %parse-param and %lex-param instead of obsolescent
14726         YYPARSE_PARAM and YYLEX_PARAM.
14727         (meridian_table, month_and_day_table, time_units_table,
14728         relative_time_table, time_zone_table, military_table,
14729         lookup_zone, lookup_word, get_date):
14730         Use NULL instead of 0 where appropriate.
14731         (to_hour): Avoid abort (), to avoid a dependency on
14732         stdlib.h.
14733         (yyerror, yylex): Now accepts parser_control * arg.
14734         (main) [TEST]: Use '\0' rather than 0 for char.
14735
14736 2004-10-22  Paul Eggert  <eggert@cs.ucla.edu>
14737
14738         * m4/getpagesize.m4 (gl_GETPAGESIZE): Check for <sys/param.h>.
14739
14740 2004-10-22  Paul Eggert  <eggert@cs.ucla.edu>
14741
14742         * lib/getpagesize.c (getpagesize): Don't assume <sys/param.h> exists.
14743         It's now the caller's responsibility to handle the case where
14744         !HAVE_GETPAGESIZE && !defined getpagesize.
14745
14746         * lib/mktime.c (leapyear): Arg is long int, not int.
14747
14748 2004-10-18  Paul Eggert  <eggert@cs.ucla.edu>
14749
14750         * lib/argp-fs-xinl.c, argp-xinl.c: Update from glibc.
14751
14752 2004-10-17  Paul Eggert  <eggert@cs.ucla.edu>
14753
14754         * gnulib-tool (func_emit_lib_Makefile_am): Fix typo: a $ was
14755         missing.  Problem reported by James Youngman.
14756
14757 2004-10-16  Simon Josefsson  <jas@extundo.com>
14758
14759         * gnulib-tool: Fix comments.  Fix parse problem.
14760         (func_emit_lib_Makefile_am): Don't hard code a in libgl_a_SOURCES.
14761
14762 2004-10-15  Paul Eggert  <eggert@cs.ucla.edu>
14763
14764         * m4/getopt.m4 (gl_GETOPT): Detect and reject the incompatible BSD
14765         implementation of getopt_long.  Problem reported by Alexander Taler in:
14766         http://lists.gnu.org/archive/html/bug-gnulib/2004-10/msg00103.html
14767
14768 2004-10-15  Bruno Haible  <bruno@clisp.org>
14769
14770         * gnulib-tool: Untabify. Initialize supplied_libname.
14771         (func_usage): More homogenous output.
14772         (func_modules_transitive_closure, func_modules_to_filelist,
14773         func_emit_lib_Makefile_am): New functions.
14774         (func_import): New function, extracted from big case statement. Use
14775         func_get_license, func_modules_transitive_closure,
14776         func_modules_to_filelist, func_emit_lib_Makefile_am. Initialize
14777         opt_lgpl. Don't use test -a, as it's not portable.
14778         (func_create_testdir): Use func_modules_transitive_closure,
14779         func_modules_to_filelist, func_emit_lib_Makefile_am.
14780
14781 2004-10-15  Bruno Haible  <bruno@clisp.org>
14782
14783         * gnulib-tool (func_import): Let gl_INIT define LTALLOCA when needed.
14784
14785 2004-10-15  Bruno Haible  <bruno@clisp.org>
14786
14787         * gnulib-tool (func_emit_lib_Makefile_am): Add markers to separate
14788         the portions belonging to each module.
14789         Suggested by Derek Robert Price <derek@ximbiot.com>.
14790
14791 2004-10-12  Simon Josefsson  <jas@extundo.com>
14792
14793         * lib/getpass.c (fflush_unlocked, flockfile, funlockfile)
14794         (fputs_unlocked, putc_unlocked) [!_LIBCS && !USE_UNLOCKED_IO]: Map
14795         to real functions.
14796
14797 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
14798
14799         * modules/vsnprintf: New file.
14800
14801 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
14802
14803         * m4/vsnprintf.m4: New file.
14804
14805 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
14806
14807         * lib/vsnprintf.h: New file.
14808         * lib/vsnprintf.c: New file.
14809
14810 2004-10-11  Bruno Haible  <bruno@clisp.org>
14811
14812         * MODULES.html.sh (Support for systems lacking ISO C 99): Add
14813         vsnprintf.
14814
14815 2004-10-10  Paul Eggert  <eggert@cs.ucla.edu>
14816
14817         * config/srclistvars.sh: Add GNUSTANDARDS (for eggert only).
14818
14819 2004-10-07  Bruno Haible  <bruno@clisp.org>
14820
14821         * lib/snprintf.c (snprintf): Avoid a memory allocation if the result
14822         fits into the provided buffer.
14823
14824 2004-10-06  Paul Eggert  <eggert@cs.ucla.edu>
14825
14826         * lib/diacrit.c, diacrit.h: Add GPL notice.
14827
14828         * lib/atanl.c, logl.c: Add GPL notice, to match glibc's added LGPL
14829         notice.
14830         * lib/atanl.c (atanl): Keep the code as similar to glibc as possible.
14831         * lib/logl.c (logl): Keep the code as similar to glibc as possible.
14832         This avoids a potential constant-folding bug.
14833
14834 2004-10-05  Bruno Haible  <bruno@clisp.org>
14835
14836         * m4/strsep.m4 (gl_FUNC_STRSEP): Require AC_GNU_SOURCE. Don't check
14837         for the declaration of strsep.
14838
14839 2004-10-05  Bruno Haible  <bruno@clisp.org>
14840
14841         * lib/strsep.h: Don't declare strsep() if HAVE_STRSEP.
14842
14843 2004-10-04  Simon Josefsson  <jas@extundo.com>
14844
14845         * modules/memmem: New file.
14846         * tests/test-memmem.c: New file.
14847         * MODULES.html.sh (Extra functions based on ANSI C 89): Add memmem.
14848
14849 2004-10-04  Simon Josefsson  <jas@extundo.com>
14850
14851         * m4/memmem.m4: New file.
14852
14853 2004-10-04  Simon Josefsson  <jas@extundo.com>
14854
14855         * lib/memmem.h: New file.
14856         * lib/memmem.c: New file, taken from glibc.
14857
14858 2004-10-04  Simon Josefsson  <jas@extundo.com>
14859
14860         * lib/error.c, md5.c, regex.c: Use '#if USE_UNLOCKED_IO' instead of
14861         '#ifdef USE_UNLOCKED_IO'.
14862
14863 2004-10-04  Simon Josefsson  <jas@extundo.com>
14864
14865         * config/srclist.txt: Add memmem from glibc.
14866
14867 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
14868
14869         * modules/xalloc (Files, Makefile.am): Remove xstrdup.c.
14870
14871         * modules/argmatch, modules/argp, modules/closeout, modules/error,
14872         modules/exclude, modules/getdate, modules/getline,
14873         modules/getndelim2, modules/getpass, modules/getpass-gnu,
14874         modules/getusershell, modules/linebuffer, modules/md5,
14875         modules/mountlist, modules/posixtm, modules/readtokens,
14876         modules/readutmp, modules/regex, modules/sha1,
14877         modules/version-etc, modules/yesno:
14878         Remove dependency on unlocked-io.
14879
14880 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
14881
14882         * m4/xalloc.m4 (gl_PREREQ_XSTRDUP): Remove.  All uses removed.
14883
14884         * m4/unlocked-io.m4: Add copyright notice.
14885         (gl_FUNC_GLIBC_UNLOCKED_IO): Define USE_UNLOCKED_IO.
14886
14887 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
14888
14889         * lib/xalloc.h (xmemdup): Renamed from xclone.  All uses changed.
14890         * lib/xmalloc.c (xmemdup): Likewise.
14891         * lib/xalloc.h (CCLONE, CLONE, NEW, XCALLOC, XMALLOC, XREALLOC,
14892         XFREE): Remove these long-obsolescent macros.
14893         * lib/xmalloc.c (xstrdup): Implementation moved here from xstrdup.c
14894         * lib/xstrdup.c: Remove.
14895
14896         * lib/regex.c (re_comp): Cast gettext return value to char *,
14897         Problem reported by Martin Neitzel via Mark D. Baushke.
14898
14899 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
14900
14901         * lib/argmatch.c, closeout.c, error.c, exclude.c, getdate.y,
14902         getndelim2.c, getpass.c, getusershell.c, linebuffer.c,
14903         md5.c, mountlist.c, posixtm.c, readtokens.c, readutmp.c,
14904         regex.c, sha1.c, version-etc.c, yesno.c:
14905         Include "unlocked-io.h" only if USE_UNLOCKED_IO.
14906         * lib/unlocked-io.h: Don't worry about USE_UNLOCKED_IO; that's now
14907         the includer's responsibility.
14908
14909         Sync from coreutils.
14910
14911         * lib/modechange.c (mode_compile): Don't decrement a pointer that
14912         points to the start of a string, as the C Standard says the
14913         resulting behavior is undefined.
14914
14915         * lib/backupfile.h (enum backuptype): Rename none -> no_backups,
14916         simple -> simple_backups, numbered_existing ->
14917         numbered_existing_backups, numbered -> numbered_backups
14918         to avoid shadowing problems.  All uses changed.
14919         * lib/argmatch.c (enum backuptype) [defined TEST]: Likewise.
14920         * lib/backupfile.c (check_extension, numbered_backup):
14921         Rename locals to avoid shadowing 'basename'.
14922         * lib/backupfile.h (VALID_BACKUP_TYPE): Don't evaluate arg more than
14923         once.
14924
14925         * lib/.cppi-disable: Add getopt_.h, getopt_int.h.
14926         * lib/.cvsignore: Add getopt.h.
14927
14928 2004-10-04  Bruno Haible  <bruno@clisp.org>
14929
14930         * modules/README: New file.
14931         * gnulib-tool (func_all_modules, func_verify_module): modules/README is
14932         not a module.
14933
14934 2004-10-02  Jim Meyering  <jim@meyering.net>
14935
14936         * lib/dirfd.h, getpagesize.h: Add copyright notice.
14937
14938 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
14939
14940         * modules/strsep: New file.
14941
14942 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
14943
14944         * m4/strsep.m4: New file.
14945
14946 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
14947
14948         * lib/strsep.h: New file.
14949         * lib/strsep.c: New file.
14950
14951 2004-10-01  Simon Josefsson  <jas@extundo.com>
14952
14953         * lib/snprintf.c (snprintf): Handle size==0.
14954
14955 2004-10-01  Simon Josefsson  <jas@extundo.com>
14956             Bruno Haible  <bruno@clisp.org>
14957
14958         * lib/snprintf.c: Include <stdarg.h>, <stdlib.h>, <string.h>.
14959         (snprintf): Declare 'args'.
14960
14961 2004-10-01  Paul Eggert  <eggert@cs.ucla.edu>
14962
14963         * lib/snprintf.c: Remove comments as to why each header is needed.
14964
14965 2004-10-01  Bruno Haible  <bruno@clisp.org>
14966
14967         * MODULES.html.sh: Add strsep.
14968
14969 2004-09-30  Simon Josefsson  <jas@extundo.com>
14970
14971         * modules/snprintf: New file.
14972
14973 2004-09-30  Simon Josefsson  <jas@extundo.com>
14974
14975         * m4/snprintf.m4: New file.
14976
14977 2004-09-30  Simon Josefsson  <jas@extundo.com>
14978
14979         * lib/snprintf.h, lib/snprintf.c: New files.
14980
14981 2004-09-30  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
14982
14983         * lib/argp-help.c (canon_doc_option): Fixed coredump if *name==NULL
14984         (hol_entry_help): Never translate an empty string.
14985         Do not translate option tag (opt->name) if OPTION_NO_TRANS is set
14986         * lib/argp.h (OPTION_NO_TRANS): New option.
14987
14988 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
14989
14990         * modules/argp (Maintainer): Replace Simon Josefsson
14991         by Sergey Poznyakoff.
14992
14993 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
14994
14995         * config/srclist.txt: Comment-out argp/argp.h, until we get the argp
14996         changes merged back into glibc.
14997
14998 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
14999
15000         * MODULES.html.sh (Support for systems lacking ISO C 99): Add snprintf.
15001
15002 2004-09-29  Oskar Liljeblad  <oskar@osk.mine.nu>
15003
15004         * lib/xvasprintf.c: Include xalloc.h.
15005         (xvasprintf): Use xalloc_die, not xmalloc_die.
15006
15007 2004-09-29  Bruno Haible  <bruno@clisp.org>
15008
15009         * modules/alloca-opt: New file, derived from modules/alloca.
15010         * modules/allocsa: Depend on alloca-opt instead of alloca.
15011         * modules/setenv: Likewise.
15012         * modules/vasnprintf: Likewise.
15013         * MODULES.html.sh: Add alloca-opt.
15014
15015 2004-09-28  Simon Josefsson  <jas@extundo.com>
15016
15017         * gnulib-tool: New parameter --lgpl, to asseert that modules are
15018         LGPL, and to replace license template from GPL to LGPL.
15019
15020 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
15021
15022         * modules/dummy: Change license to LGPL.
15023
15024 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
15025
15026         * lib/dummy.c: Change copyright notice to FSF, and license to GPL.
15027
15028 2004-09-24  Simon Josefsson  <jas@extundo.com>
15029
15030         * modules/minmax (License): Change from GPL to LGPL.
15031
15032 2004-09-23  Simon Josefsson  <jas@extundo.com>
15033
15034         * gnulib-tool (--import): Typo.
15035
15036 2004-09-23  Simon Josefsson  <jas@extundo.com>
15037
15038         * gnulib-tool (--import): Make sure *.m4 end up in m4/ by default.
15039
15040 2004-09-22  Bruno Haible  <bruno@clisp.org>
15041
15042         * modules/*: Add 'License' field.
15043         * gnulib-tool: Accept --extract-license option.
15044         (func_get_license): New function.
15045
15046 2004-09-21  Bruno Haible  <bruno@clisp.org>
15047
15048         * modules/vasnprintf (Files): Add m4/stdint_h.m4, m4/inttypes_h.m4.
15049         Reported by Simon Josefsson.
15050
15051 2004-09-20  Paul Eggert  <eggert@cs.ucla.edu>
15052
15053         * modules/inttostr (Files): Add m4/longlong.m4, since it uses
15054         gl_AC_TYPE_LONG_LONG.
15055
15056 2004-09-20  Paul Eggert  <eggert@cs.ucla.edu>
15057
15058         * config/srclist.txt: Add getsubopt.c, since libc bought our changes.
15059
15060 2004-09-18  Simon Josefsson  <jas@extundo.com>
15061         and  Paul Eggert  <eggert@cs.ucla.edu>
15062
15063         * gnulib-tool: Replace various ad-hoc automake/autoconf/aclocal
15064         calls with autoreconf.  Define GL_LIB.
15065
15066 2004-09-14  Karl Berry  <karl@gnu.org>
15067
15068         * config/srclist.txt: unsync setenv.c, sigh.
15069
15070 2004-09-13  Paul Eggert  <eggert@cs.ucla.edu>
15071
15072         * lib/argp-pvh.c (argp_program_version_hook): Provide initial value.
15073         Problem reported by Bruno Haible in:
15074         http://lists.gnu.org/archive/html/bug-tar/2004-09/msg00023.html
15075
15076 2004-09-13  Paul Eggert  <eggert@cs.ucla.edu>
15077
15078         * config/srclist.txt: Comment out argp-pvh.c.
15079
15080 2004-09-11  Paul Eggert  <eggert@cs.ucla.edu>
15081
15082         * lib/mempcpy.h: Wrap the entire include file inside #ifndef mempcpy,
15083         in case some system header has #define'd it.  Problem reported by
15084         Soeren D. Schulze in
15085         <http://lists.gnu.org/archive/html/bug-gnulib/2004-09/msg00017.html>.
15086
15087 2004-09-09  Karl Berry  <karl@gnu.org>
15088
15089         * regex.[ch]: delete from the root.  These were supposed to be
15090                 synced with emacs cvs, but this has not happened for about
15091                 a year, and anyway nothing else uses emacs regex.[ch].
15092                 bug-gnulib mail from Jeff Bailey, 9 Sep 2004 15:49:24 -0700.
15093                 lib/regex[.ch] is untouched.
15094
15095 2004-09-09  Bruno Haible  <bruno@clisp.org>
15096
15097         * modules/vasnprintf (Files): Add m4/eoverflow.m4.
15098
15099 2004-09-09  Bruno Haible  <bruno@clisp.org>
15100
15101         * m4/eoverflow.m4: New file, taken from GNU libiconv eilseq.m4 with
15102         modifications.
15103         * m4/vasnprintf.m4 (gl_FUNC_VASNPRINTF): Require gl_EOVERFLOW.
15104
15105 2004-09-08  Oskar Liljeblad  <oskar@osk.mine.nu>
15106
15107         * modules/xvasprintf: New file.
15108         * MODULES.html.sh (Extra functions based on ANSI C 89): Add vasprintf.
15109
15110 2004-09-08  Oskar Liljeblad  <oskar@osk.mine.nu>
15111
15112         * lib/xvasprintf.h: New file.
15113         * lib/xvasprintf.c: New file.
15114         * lib/xasprintf.c: New file.
15115
15116 2004-09-08  Bruno Haible  <bruno@clisp.org>
15117
15118         * m4/stdint.m4: New file, taken from GNU clisp with modifications.
15119
15120 2004-09-08  Bruno Haible  <bruno@clisp.org>
15121
15122         * lib/vasnprintf.c (VASNPRINTF): Signal EOVERFLOW if the resulting
15123         length is > INT_MAX.
15124         * lib/vasprintf.c (vasprintf): Don't test for length > INT_MAX any
15125         more.
15126
15127 2004-09-08  Bruno Haible  <bruno@clisp.org>
15128
15129         * lib/stdint_.h: New file, taken from GNU clisp.
15130
15131 2004-09-08  Bruno Haible  <bruno@clisp.org>
15132             Oskar Liljeblad  <oskar@osk.mine.nu>
15133
15134         * modules/stdint: New file.
15135         * MODULES.html.sh (Support for systems lacking ISO C 99): Add stdint.
15136
15137 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
15138
15139         Import from coreutils.
15140         * lib/userspec.c: Don't use <alloca.h>, so that we don't use alloca on
15141         strings on unbounded length.  alloca's performance benefits aren't
15142         that important here.
15143         (V_STRDUP): Remove.
15144         (parse_with_separator): New function, with most of the internals
15145         of the old parse_user_spec.  Allow user to omit both user and group,
15146         for compatibility with FreeBSD.
15147         Clone only the user name, not the entire spec.
15148         Do not set *uid, *gid unless entirely successful.
15149         Avoid memory leak in some failing cases.
15150         Fix regression for USER.GROUP reported by Dmitry V. Levin in
15151         <http://lists.gnu.org/archive/html/bug-coreutils/2004-08/msg00102.html>
15152         (parse_user_spec): Rewrite to use parse_with_separator.
15153
15154 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
15155
15156         * modules/userspec: Don't depend on alloca.
15157
15158 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
15159
15160         * m4/userspec.m4 (gl_USERSPEC): Don't require AC_FUNC_ALLOCA.
15161
15162 2004-08-17  Paul Eggert  <eggert@cs.ucla.edu>
15163
15164         * MODULES.html.sh: Add xalloc-die, c-strtod, c-strtold, raise,
15165         readtokens0, getcwd, fcntl-safer, canonicalize, cycle-check,
15166         utimecmp, utimens, xnanosleep.  Rename sha to sha1.
15167
15168 2004-08-16  Simon Josefsson  <jas@extundo.com>
15169
15170         * gnulib-tool: Use sed instead of autoconf --trace, inspired by
15171         libtoolize behaviour by "Gary V. Vaughan" <gary@gnu.org>.
15172         Add --dry-run for --import.
15173         Let user provided command line parameters override configure.ac
15174         settings.
15175
15176 2004-08-12  Simon Josefsson  <jas@extundo.com>
15177
15178         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): New macro,
15179         as discussed with Paul Eggert in threads rooted at
15180         <http://lists.gnu.org/archive/html/bug-gnulib/2004-06/msg00039.html>
15181         and
15182         <http://lists.gnu.org/archive/html/bug-gnulib/2004-07/msg00001.html>.
15183         Before, the test was empty, and relied on ELIDE_CODE in source
15184         code.)
15185         (gl_PREREQ_GETOPT): New macro.
15186         (gl_GETOPT): Use them.
15187
15188 2004-08-12  Simon Josefsson  <jas@extundo.com>
15189
15190         * lib/getopt.c, getopt1.c: Remove ELIDE_CODE hack.
15191         * lib/getopt_.h: Renamed from getopt.h.
15192
15193 2004-08-12  Simon Josefsson  <jas@extundo.com>
15194
15195         * gnulib-tool: Add --source-base, --m4-base, --libtool options.
15196         Change default library name from libfoo to libgnu.
15197         Now, if you have a configure.ac that says:
15198                 gl_SOURCE_BASE(gl)
15199                 gl_M4_BASE(gl/m4)
15200                 gl_MODULES(error getopt etcetera)
15201                 gl_INIT
15202         you can import all you need by running:
15203                 ../gnulib/gnulib-tool --import
15204
15205         * modules/getopt (Files): Rename getopt.h to getopt_.h.
15206         (Makefile.am): Rewrite, use logic from argz.
15207         (Include): Use <getopt.h> instead of "getopt.h".
15208
15209 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
15210
15211         * modules/argp (Files): Add m4/unlocked-io.m4.
15212         (Depends-on): Add extensions.
15213
15214 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
15215
15216         * m4/argp.m4 (gl_ARGP): Do not check for argp.h or argp_parse; nobody
15217         uses HAVE_ARGP_H or HAVE_ARGP_PARSE.
15218         Require gl_FUNC_GLIBC_UNLOCKED_IO, gl_USE_SYSTEM_EXTENSIONS.
15219         Check for program_invocation_name, program_invocation_short_name,
15220         flockfile, funlockfile, features.h, _getopt_long_only_r.
15221
15222 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
15223
15224         * lib/argp-help.c, argp-parse.c: Use "gettext.h" instead of
15225         its complicated substitute.
15226         * lib/argp-help.c: Include <errno.h>, for program_invocation_short_name
15227         and program_invocation_name.
15228         (__argp_basename) [!_LIBC]: Remove; the only use was
15229         replaced by its body.
15230         (__argp_short_program_name): Change condition from
15231         !defined __argp_short_program_name to
15232         ! (defined _LIBC || HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME),
15233         to match argp-namefrob.h.
15234         (__argp_failure): Don't assume strerror_r returns char *.
15235         * lib/argp-parse.c (N_): Define unconditionally.
15236         (argp_default_options): Fill out initializers with 0 to avoid
15237         gcc warnings.
15238
15239 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
15240
15241         * config/srclist.txt: Remove getopt.c, getopt.h (renamed to getopt_.h),
15242         getopt1.c.
15243
15244 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
15245
15246         Merge from coreutils.
15247
15248         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for wmemchr and wmemcpy.
15249
15250         * m4/obstack.m4 (gl_PREREQ_OBSTACK): Require
15251         gl_AC_HEADER_INTTYPES_H, gl_AC_HEADER_STDINT_H, gl_AC_TYPE_UINTMAX_T.
15252
15253 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
15254
15255         Merge from coreutils.
15256
15257         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Don't set to 1 if missing
15258         wmemchr or wmemcpy.  Problem reported by Robert Dahlem
15259         for Reliant Unix 5.43.
15260
15261         * lib/obstack.c: Include <inttypes.h> and <stdint.h> if available.
15262         (union fooround): Use uintmax_t, not long int.
15263         The rest is a merge from libc:
15264         [defined _LIBC]: Include <shlib-compat.h>.
15265         (_obstack) [defined _LIBC]: Remove after 2.3.4.
15266
15267         * lib/settime.c (settime): Recode to avoid warning with
15268         Sun Forte C 6U2.
15269
15270         * lib/strverscmp.c: Convert to UTF-8.
15271
15272 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
15273
15274         * modules/obstack (Files): Add m4/inttypes_h.m4, m4/stdint_h.m4,
15275         m4/uintmax_t.m4.
15276
15277 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
15278
15279         * modules/xalloc-die: New file.
15280         * modules/xalloc: Remove dependencies on error, gettext, exitfail.
15281
15282         * modules/md5 (Files): Add m4/uint32_t.m4.
15283         * modules/sha1: Renamed from modules/sha.
15284         (Files):
15285         Rename lib/sha.h to lib/sha1.h.
15286         Rename lib/sha.c to lib/sha1.c.
15287         Rename m4/sha.m4 to m4/sha1.m4.
15288         (lib_SOURCES): Likewise.
15289         (configure.ac): Rename gl_SHA to gl_SHA1.
15290         (Include): sha.h -> sha1.h.
15291
15292 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
15293
15294         * m4/uint32_t.m4, m4/uintptr_t.m4: New files.
15295         * m4/sha1.m4: Renamed from sha.m4.
15296         (gl_SHA1): Renamed from gl_SHA.  All uses changed.
15297
15298 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
15299
15300         * lib/obstack.h (obstack_empty_p):
15301         Don't assume that chunk->contents is suitably aligned.
15302         * lib/obstack.c (_obstack_begin, _obstack_begin_1, _obstack_newchunk):
15303         Likewise. Problem reported by Benno in
15304         <http://sources.redhat.com/ml/libc-alpha/2004-08/msg00055.html>.
15305
15306         * lib/chown.c (rpl_chown): Work even if the file is writeable but not
15307         readable.  This could be improved further but it'd take some work.
15308
15309 2004-08-08  Simon Josefsson  <jas@extundo.com>
15310
15311         * modules/xgethostname (Depends-on): Remove exit and error (not
15312         used).
15313
15314         * modules/getpass-gnu: Add getpass.h.
15315         (Depends-on): Add stdbool.
15316         * modules/getpass: Add getpass.h.
15317
15318 2004-08-08  Simon Josefsson  <jas@extundo.com>
15319
15320         * m4/getpass.m4 (gl_FUNC_GETPASS, gl_FUNC_GETPASS_GNU):
15321         Check getpass declaration.
15322
15323 2004-08-08  Simon Josefsson  <jas@extundo.com>
15324
15325         * lib/xgethostname.c: Don't include error.h (not used).
15326
15327         * lib/getpass.h: Add.
15328         * lib/getpass.c: Include getpass.h first.
15329
15330 2004-08-08  Paul Eggert  <eggert@cs.ucla.edu>
15331
15332         * lib/xalloc-die.c: New file.
15333         * lib/xalloc.h (xalloc_fail_func, xalloc_msg_memory_exhausted): Remove.
15334         All uses removed.
15335         * lib/xmalloc.c (xalloc_fail_func, xalloc_msg_memory_exhausted):
15336         Likewise. Move inclusions of gettext.h, error.h, exitfail.h to
15337         xalloc-die.c.
15338         (_, N_, xalloc_die): Move to xalloc-die.c.
15339         * lib/userspec.c (parse_user_spaec): Use xstrdup rather than strdup,
15340         so that we needn't mess with xalloc_msg_memory_exhausted.
15341
15342         * lib/sha1.h: Renamed from sha.h.
15343         (SHA1_H): Renamed from _SHA_H.
15344         (sha1_ctx): Renamed from sha_ctx.
15345         (sha1_init_ctx): Renamed from sha_init_ctx.
15346         (sha1_process_block): Renamed from sha_process_block.
15347         (sha1_process_bytes): Renamed from sha_process_bytes.
15348         (sha1_finish_ctx): Renamed from sha_finish_ctx.
15349         (sha1_read_ctx): Renamed from sha_read_ctx.
15350         (sha1_stream): Renamed from sha_stream.
15351         (sha1_buffer): Renamed from sha_buffer.
15352         * lib/sha1.c: Likewise; renamed from sha.c.
15353         Do not include <sys/types.h>.
15354         Include <stddef.h> rather than <stdlib.h>.
15355
15356 2004-08-08  Bruno Haible  <bruno@clisp.org>
15357
15358         * lib/pathname.h (FILE_SYSTEM_PREFIX_LEN): Renamed from
15359         FILESYSTEM_PREFIX_LEN.
15360         * lib/progreloc.c: Likewise.
15361         * lib/concatpath.c (concatenated_pathname): Use FILE_SYSTEM_PREFIX_LEN.
15362
15363 2004-08-06  Simon Josefsson  <jas@extundo.com>
15364
15365         * modules/progname (Depends-on): Don't depend on stdbool.
15366
15367 2004-08-06  Simon Josefsson  <jas@extundo.com>
15368
15369         * modules/getsubopt: New file.
15370         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
15371         getsubopt.
15372
15373 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
15374
15375         More merge from coreutils.
15376
15377         * m4/utimens.m4, m4/utimecmp.m4: New files.
15378         * m4/backupfile.m4, euidacces.m4, acl.m4, afs.m4, calloc.m4, dirfd.m4,
15379         fsusage.m4, jm-macros.m4, ls-mntd-fs.m4, md5.m4, mountlist.m4,
15380         prereq.m4, sha.m4: Import changes from coreutils.
15381
15382 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
15383
15384         More merge from coreutils.
15385         * modules/raise, modules/readtokens0, modules/utimens:
15386         * modules/utimecmp, module/xnanosleep: New files.
15387         * modules/strftime: Add lib/strftime.h.
15388         Change include from <time.h> to "strftime.h".
15389         * modules/yesno: Add lib/yesno.h.
15390         * modules/backupfile: Remove lib/addext.c.
15391         * modules/euidaccess: Add stat-macros.h.
15392         * modules/canonicalize, modules/euidaccess,
15393         modules/filemode, modules/lchown, modules/makepath,
15394         modules/rmdir, modules/stat: Likewise.
15395
15396 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
15397
15398         Merge from tar.
15399         * lib/argp-help.c (make_hol, hol_append): Don't assume that
15400         SIZE_MAX is a valid preprocessor constant.
15401         (__argp_basename): Change from "#ifndef _LIBC"
15402         to "#ifndef __argp_short_program_name", so that
15403         we don't compile these functions for tar.
15404
15405         More merges from coreutils.
15406         * lib/raise.c, lib/readtokens0.h, lib/readtokens0.c, lib/strftime.h:
15407         * lib/utimens.h, lib/utimens.c, lib/utimecmp.h, lib/utimecmp.c:
15408         * lib/xnanosleep.h, lib/xnanosleep.c, lib/yesno.h: New files.
15409         * lib/addext.c: Remove; no longer needed.
15410         * lib/yesno.c, lib/argmatch.h, lib/argmatch.c, lib/backupfile.h,
15411         lib/backupfile.c, lib/euidaccess.c, lib/filemode.c, lib/closeout.c,
15412         lib/dup2.c, lib/exclude.c, lib/fileblocks.c, lib/filemode.c,
15413         lib/fnmatch.c, lib/fnmtahc_loop.c, lib/fopen-safer.c, lib/fsusage.c,
15414         lib/fsusage.h, lib/ftruncate.c, lib/full-write.c, lib/getdate.y,
15415         lib/getloadavg.c, lib/getugroups.c, lib/hard-locale.c,
15416         lib/hard-locale.h, lib/hash.c, lib/human.c, lib/human.h, lib/lchown.c,
15417         lib/lchown.h, lib/makepath.c, lib/makepath.h, lib/md5.c, lib/md5.h,
15418         lib/memchr.c, lib/memcoll.c, lib/memrchr.c, lib/modechange.c,
15419         lib/modechange.h, lib/mountlist.c, lib/mountlist.h, lib/nanosleep.c,
15420         lib/posixtm.c, lib/putenv.c, quotearg.c, lib/quotearg.h,
15421         lib/readtokens.c, lib/readutmp.c, lib/readutmp.h, lib/rmdir.c,
15422         lib/safe-read.c, lib/save-cwd.c, lib/savedir.c, lib/setenv.c,
15423         lib/sig2str.c, lib/stat.c, lib/strtoimax.c, lib/strverscmp.c,
15424         lib/userspec.c, lib/utime.c, lib/version-etc.c., lib/xgethostname.c,
15425         lib/xmemcoll.c, lib/xreadlink.c, lib/xstrtod.c, lib/xstrtod.h,
15426         lib/xstrtoimax.c, lib/xstrtol.c, lib/xstrtol.h, lib/xstrtoumax.c:
15427         Import changes from coreutils.
15428
15429 2004-08-05  Simon Josefsson  <jas@extundo.com>
15430
15431         * m4/strdup.m4: Always run gl_PREREQ_STRDUP, since strdup.h need it.
15432
15433 2004-08-05  Simon Josefsson  <jas@extundo.com>
15434
15435         * m4/getsubopt.m4: New file.
15436
15437 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
15438
15439         Merge from coreutils.
15440
15441         * m4/c-strtod.m4, m4/canonicalize.m4, m4/fcntl-safer.m4:
15442         * m4/getcwd-path-max.m4: New files.
15443
15444         * m4/dos.m4 (gl_AC_DOS): filesystem -> file system renaming.
15445         FILESYSTEM_PREFIX_LEN ->
15446         FILE_SYSTEM_PREFIX_LEN.
15447         FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX ->
15448         FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX.
15449         FILESYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR ->
15450         FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR.
15451
15452         * m4/path-concat.m4 (gl_PATH_CONCAT): Don't require gl_AC_DOS, the
15453         prerequisite modules now handle the DOS stuff.
15454         Don't check for unistd.h.
15455
15456 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
15457
15458         Merge from coreutils.
15459
15460         * lib/.gdb-history: Remove; this doesn't belong here.
15461
15462         * lib/c-strtod.c, lib/c-strtod.h, lib/c-strtold.c, lib/cycle-check.c:
15463         * lib/cycle-check.h, lib/dev-ino.h, lib/canonicalize.h:
15464         * lib/canonicalize.c, lib/fcntl-safer.h, lib/fcntl-safer.c:
15465         * lib/getcwd.c: New files.
15466
15467         * lib/dirname.h: Include <stdbool.h>.
15468         (FILE_SYSTEM_PREFIX_LEN): Renamed from FILESYSTEM_PREFIX_LEN,
15469         for consistency with POSIX terminology.  All uses changed.
15470         (IS_ABSOLUTE_FILE_NAME, IS_RELATIVE_FILE_NAME): New macros.
15471         (strip_trailing_slashes): Use bool for booleans.
15472         * lib/stripslash.c (strip_trailing_slashes): Likewise.
15473
15474         * lib/error.c: Work around bug in OpenBSD 3.4 sterror_r: it
15475         sometimes returns a positive errno value even when it succeeds.
15476         (print_errno_message) [!LIBC]: Fall back on strerror if
15477         __strerror_r fails.
15478
15479         * lib/path-concat.c (mempcpy): Don't define if a system header defines
15480         it. Don't include stdio.h, stdlib.h, unistd.h, strdup.h.
15481         (longest_relative_suffix): New function.
15482         (path_concat): Use it.  Assume first argument is not NULL.
15483         Port to DOS.  Omit redundant separators.
15484         Report an error instead of returning NULL.
15485         Use mempcpy instead of memcpy.
15486         (xpath_concat): Remove: not declared or used.
15487
15488         * lib/same.h: Include <stdbool.h>
15489         (same_name): Return bool, not int.
15490         * lib/same.c (same_name): Likewise.
15491         (errno): Don't declare; we assume C89 or better now.
15492
15493         * lib/stat-macros (S_ISCTG, S_ISOFD, S_ISOFL): New macros,
15494         if not already defined.
15495
15496         * lib/xgetcwd.c (errno): Don't declare; we assume C89 or better now.
15497         * lib/dup-safer.c (errno): Likewise.
15498
15499 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
15500
15501         Merge from coreutils.
15502         * modules/c-strtod, modules/c-strtold, modules/canonicalize:
15503         * modules/cycle-check, modules/fcntl-safer, modules/getcwd: New files.
15504         * modules/path-concat: Don't depend on strdup.
15505
15506 2004-08-03  Simon Josefsson  <jas@extundo.com>
15507
15508         * lib/strdup.h: Only use HAVE_DECL_STRDUP if defined.
15509         * lib/progname.h: Don't include stdbool.h.
15510
15511 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
15512
15513         * modules/fatal: Remove, as the "fatal" module wasn't used or working.
15514         * MODULES.html.sh (func_all_modules): Remove fatal.
15515
15516 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
15517
15518         * m4/fatal.m4: Remove, as the "fatal" module wasn't used or working.
15519
15520 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
15521
15522         * lib/fatal.c, fatal.h: Remove as the "fatal" module wasn't used or
15523         working.
15524
15525 2004-08-02  Simon Josefsson  <jas@extundo.com>
15526
15527         * lib/getsubopt.h: New file, with comments from Bruno Haible.
15528         * lib/getsubopt.c: New file, from glibc, but slightly modified based on
15529         suggestions from Paul Eggert <eggert@cs.ucla.edu>.
15530
15531 2004-08-01  Simon Josefsson  <jas@extundo.com>
15532
15533         * lib/xgetdomainname.c: Include stdlib.h, for free().
15534
15535 2004-07-19  Bruno Haible  <bruno@clisp.org>
15536
15537         * MODULES.html.sh (func_all_modules): Add dummy.
15538
15539 2004-07-16  Simon Josefsson  <jas@extundo.com>
15540
15541         * modules/dummy: New file.
15542
15543 2004-07-16  Simon Josefsson  <jas@extundo.com>
15544
15545         * lib/dummy.c: New file.
15546
15547 2004-07-16  Bruno Haible  <bruno@clisp.org>
15548
15549         * lib/backupfile.h: Add extern "C" for C++.
15550         * lib/closeout.h: Likewise.
15551         * lib/copy-file.h: Likewise.
15552         * lib/findprog.h: Likewise.
15553         * lib/full-write.h: Likewise.
15554         * lib/pathname.h: Likewise.
15555         * lib/progname.h: Likewise.
15556         * lib/stpcpy.h: Likewise.
15557         * lib/stpncpy.h: Likewise.
15558         * lib/strcase.h: Likewise.
15559         * lib/strstr.h: Likewise.
15560         * lib/xalloc.h: Likewise.
15561
15562         * lib/mbswidth.h: Add extern "C" for C++.
15563         Reported by Albert Chin-A-Young <china@thewrittenword.com>.
15564
15565 2004-07-13  Robert Millan  <robertmh@gnu.org>
15566
15567         * m4/host-os.m4: s/KNetBSD/kNetBSD/g and s/KFreeBSD/kFreeBSD/g.
15568
15569 2004-07-09  Simon Josefsson  <jas@extundo.com>
15570
15571         * lib/getndelim2.c: Include stddef.h, for ptrdiff_t.  (FreeBSD 4.9
15572         failed without this.)
15573
15574 2004-07-09  Paul Eggert  <eggert@cs.ucla.edu>
15575
15576         * modules/chown (Files): Add lib/fchown-stub.c, since
15577         gl_PREREQ_CHOWN invokes AC_LIBOBJ(fchown-stub).
15578
15579 2004-07-09  Paul Eggert  <eggert@cs.ucla.edu>
15580
15581         * lib/fchown-stub.c: New file.
15582
15583 2004-06-24  Jim Meyering  <jim@meyering.net>
15584
15585         * lib/obstack.h (obstack_base): Cast to (void *), per documentation.
15586
15587 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
15588
15589         * modules/argz: Omit "#include".
15590
15591         * MODULES.html.sh (func_all_modules): Add calloc, to match
15592         2004-06-01 addition of calloc module.
15593
15594 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
15595
15596         * m4/argz.m4: New file, which is autoupdated from libtool.
15597
15598 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
15599
15600         * lib/argz.c, lib/argz_.h: New files, which are autoupdated from
15601         libtool.
15602
15603 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
15604
15605         * config/srclist-update: Don't insist on "USA." before the
15606         close-comment, as libtool omits the period and puts the */ on a
15607         separate line.
15608         * config/srclist.txt: Add argz.c, argz_.h, argz.m4.
15609         * config/srclistvars.sh: Add LIBTOOL (for eggert only).
15610
15611 2004-06-22  Gary V. Vaughan  <gary@gnu.org>
15612
15613         * modules/argz: New file.
15614         * MODULES.html.sh (func_all_modules): Add argz.
15615
15616 2004-06-12  Jim Meyering  <jim@meyering.net>
15617         and  Paul Eggert  <eggert@cs.ucla.edu>
15618
15619         * modules/hash (Files): Add lib/xalloc.h.
15620         * modules/pipe (Depends-on): Add wait-process.
15621         * modules/stat (Depends-on): Add xalloc.
15622         * modules/userspec (Files): Add lib/userspec.h.
15623         * modules/xstrto
15624
15625         Upgrade from gettext-0.13.
15626         * modules/gettext (Files): Add m4/intmax.m4, m4/longdouble.m4,
15627         m4/longlong.m4, m4/printf-posix.m4, m4/signed.m4, m4/size_max.m4,
15628         m4/wchar_t.m4, m4/wint_t.m4, m4/xsize.m4.
15629
15630 2004-06-10  Jim Meyering  <jim@meyering.net>
15631
15632         * lib/calloc.c: New file.
15633
15634 2004-06-06  Paul Eggert  <eggert@cs.ucla.edu>
15635
15636         * lib/getdate.y (yylex): Allow space between sign and number.
15637         Problem reported by Dan Jacobson.
15638
15639 2004-06-01  Paul Eggert  <eggert@cs.ucla.edu>
15640
15641         Merge from coreutils CVS.
15642
15643         * m4/backupfile.m4, dirname.m4, human.m4, inttypes.m4, longlong.m4,
15644         makepath.m4, memchr.m4, memcmp.m4, mountlist.m4, path-concat.m4,
15645         putenv.m4, quotearg.m4, readutmp.m4, strtoimax.m4, strtoll.m4,
15646         strtoull.m4, strtoumax.m4, ulonglong.m4, vasnprintf.m4,
15647         xstrtol.m4: Fix copyright date and/or serial number.
15648
15649         * m4/chown.m4 (gl_PREREQ_CHOWN): Check for fcntl.h.
15650         See if we need an fchown replacement.
15651         (gl_FUNC_CHOWN_FOLLOWS_SYMLINK): New macro.
15652         (gl_FUNC_CHOWN): Require gl_FUNC_CHOWN_FOLLOWS_SYMLINK,
15653         and use the replacement function if we detect either defect.
15654
15655         * m4/prereq.m4 (gl_PREREQ): Add gl_ALLOCSA, gl_CLOEXEC, gl_INTTOSTR,
15656         gl_UTIMECMP.
15657
15658 2004-06-01  Paul Eggert  <eggert@cs.ucla.edu>
15659         and  Jim Meyering  <jim@meyering.net>
15660
15661         Merge from coreutils CVS.
15662
15663         * lib/stat-macros.h: New file, with contents from file-type.h
15664         and coreutils' system.h.
15665         * lib/file-type.c: Include "stat-macros.h".
15666         * lib/file-type.h (file_type): Move all macro definitions to new file,
15667         stat-macros.h.
15668
15669         * lib/chown.c (rpl_chown) [CHOWN_FAILS_TO_HONOR_ID_OF_NEGATIVE_ONE]:
15670         Wrap old code with this conditional.
15671         [CHOWN_MODIFIES_SYMLINK]: Try to work around a chown
15672         function that does not dereference symlinks.
15673         * lib/lchown.c (lchown) [CHOWN_MODIFIES_SYMLINK]: Just call chown.
15674
15675         * lib/xreadlink.c: Include xreadlink.h first, to catch .h file
15676         dependency problems.
15677         (xreadlink): Accept new arg SIZE, for efficiency.
15678         All decls and uses changed.
15679         * lib/xreadlink.h: Include <stddef.h>, for size_t.
15680
15681         * lib/.cppi-disable: Add alloca_.h, allocsa.h, exit.h, getndelim2.h,
15682         gettext.h, localcharset.h, strdup.h, strndup.h, strtoul.c, time_r.h.
15683
15684         * lib/.cvsignore: Add alloca.h, fnmatch.h, poll.h, stdbool.h,
15685         sysexits.h.
15686
15687 2004-06-01  Jim Meyering  <jim@meyering.net>
15688
15689         * m4/calloc.m4: New file.
15690
15691 2004-05-31  Paul Eggert  <eggert@cs.ucla.edu>
15692
15693         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Detect _Bool bug in HP aC++/ANSI
15694         C B3910B A.05.55 [Dec 04 2003].  Problem reported by Jim Meyering.
15695         Also, fix a typo in a diagnostic.
15696
15697 2004-05-30  Paul Eggert  <eggert@cs.ucla.edu>
15698
15699         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Do not require AC_FUNC_MALLOC
15700         or AC_FUNC_REALLOC.
15701
15702 2004-05-30  Paul Eggert  <eggert@cs.ucla.edu>
15703
15704         * lib/xmalloc.c (HAVE_MALLOC, HAVE_REALLOC): Do not require these
15705         macros to be defined.
15706         (xnmalloc_inline, xnrealloc_inline, xcalloc): Do not die if
15707         the allocator returns NULL because the requested size is zero.
15708
15709 2004-05-20  Paul Eggert  <eggert@cs.ucla.edu>
15710
15711         * lib/malloc/obstack.c (_obstack) [defined _LIBC]: Bring back this
15712         var.  Add comment explaining why libc still defines it.  This
15713         merges the following patch from glibc:
15714         http://sources.redhat.com/ml/libc-alpha/2004-05/msg00157.html
15715
15716 2004-05-20  Andreas Schwab  <schwab@suse.de>
15717
15718         * m4/free.m4: Replace free if it not known to work, not the other
15719         way round.
15720
15721 2004-05-19  Paul Eggert  <eggert@cs.ucla.edu>
15722
15723         * lib/obstack.c (_obstack): Remove unused variable.  It hasn't been
15724         present in glibc since revision 1.1 of this file.
15725         * lib/obstack.h (_obstack_free, obstack_1grow, obstack_1grow_fast,
15726         obstack_alignment_mask, obstack_alloc, obstack_base,
15727         obstack_blank, obstack_blank_fast, obstack_chunk_size,
15728         obstack_copy, obstack_copy0, obstack_finish, obstack_grow,
15729         obstack_grow0, obstack_init, obstack_int_grow,
15730         obstack_int_grow_fast, obstack_make_room, obstack_memory_used,
15731         obstack_next_free, obstack_object_size, obstack_ptr_grow,
15732         obstack_ptr_grow_fast, obstack_room): Remove declarations of
15733         nonexistent functions.
15734
15735 2004-05-18  Karl Berry  <karl@gnu.org>
15736
15737         * config/srclist.txt: break link for vasnprintf.c.
15738
15739 2004-05-17  Paul Eggert  <eggert@cs.ucla.edu>
15740
15741         Port obstack to the AS/400, where pointers are 16 bytes wide and
15742         you cannot cast an integer to a valid pointer.  This patch is
15743         currently waiting to be integrated into glibc; see
15744         <http://sources.redhat.com/ml/libc-alpha/2004-05/msg00073.html>.
15745
15746         * lib/obstack.h (__PTR_TO_INT, __INT_TO_PTR): Remove.
15747         All uses of __INT_TO_PTR (PTR_TO_INT ...) replaced by __PTR_ALIGN.
15748         (__BPTR_ALIGN, __PTR_ALIGN): New macros.
15749         (struct obstack): temp member is now a union of a pointer and
15750         an integer, instead of an integer.  All integer uses changed.
15751         This does not affect the physical layout of struct obstack,
15752         except on hosts (like the AS/400) where the size or alignment of
15753         void * is greater than that of ptrdiff_t.
15754         (obstack_finish) [! (defined __GNUC__ && defined __STDC__ &&
15755         __STDC__)]: Store temporary in pointer member of union, not
15756         integer member.
15757         * lib/obstack.c: Include <stddef.h>, for offsetof.
15758         (struct fooalign): Remove; it doesn't need a name.
15759         (union fooround): Change double to long double, and add void *.
15760         (DEFAULT_ALIGNMENT): Use offsetof to compute.
15761         (DEFAULT_ALIGNMENT, DEFAULT_ROUNDING): Now an enum constant,
15762         not a macro.  Hence the values are always int; so remove all
15763         casts-to-int in uses.
15764
15765 2004-05-17  Paul Eggert  <eggert@cs.ucla.edu>
15766
15767         * config/srclist.txt: Break link for argp-help.c and argp-parse.c until
15768         we can get this patch merged into glibc.
15769
15770 2004-05-17  Derek R. Price  <derek@ximbiot.com>
15771             Paul Eggert  <eggert@cs.ucla.edu>
15772
15773         * m4/argp: Depend on alloca.
15774
15775 2004-05-17  Derek R. Price  <derek@ximbiot.com>
15776             Paul Eggert  <eggert@cs.ucla.edu>
15777
15778         * lib/argp-help.c, argp-parse.c: Assume <alloca.h> rather than
15779         freecoding.
15780
15781 2004-05-17  Bruno Haible  <bruno@clisp.org>
15782
15783         * lib/vasnprintf.c (VASNPRINTF): Correctly handle the case of a
15784         precision that consists of a '.' followed by an empty digit string.
15785         Patch by Tor Lillqvist <tml@iki.fi>.
15786
15787 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
15788
15789         * m4/alloca.m4 (gl_FUNC_ALLOCA): Define HAVE_ALLOCA_H always,
15790         for backward compatibility with older code.  We need our own
15791         alloca.h if _AIX is defined.  Define HAVE_ALLOCA if we discover
15792         it under some other name, and our alloca.h will define it.
15793
15794 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
15795             Derek Price  <derek@ximbiot.com>
15796
15797         * lib/alloca.c: Include <alloca.h>, to get our interface.
15798         * lib/alloca_.h: Use __alloca on AIX, so that we don't have to
15799         include <alloca.h> first.  Use C89 prototype for alloca; this
15800         requires including <stddef.h> for size_t.  Use extern "C" if C++.
15801         Use #elif for simplicity, since we can assume C89 now.
15802         Don't try to source the system alloca.h since it will not be found
15803         and to prevent recursively including its replacement.
15804         * lib/fnmatch.c: Include <alloca.h> instead of opencoding.
15805         * lib/regex.c: Likewise.
15806
15807 2004-05-16  Derek Price  <derek@ximbiot.com>
15808             Paul Eggert  <eggert@cs.ucla.edu>
15809
15810         getline cleanup.  This changes the getndelim2 API: both order of
15811         arguments, and meaning of delim2 (now uses EOF, not 0, to indicate
15812         no delimiter).
15813
15814         * lib/getline.c: Don't include stddef.h or stdio.h, since our
15815         interface does that.
15816         (getline): Always use getdelim, so that we don't have two
15817         copies of this code.
15818         * lib/getndelim2.c: Include <limits.h>, <inttypes.h>, <stdint.h>
15819         if available.
15820         (PTRDIFF_MAX, SIZE_MAX, SSIZE_MAX): Define if not defined.
15821         (GETNDELIM2_MAXIMUM): New macro.
15822         (getndelim2): Reorder arguments.  delim==EOF now means no delimiter,
15823         instead of the old practice of delim2==0.  All callers changed.
15824         Return -1 on overflow, instead of returning junk.
15825         Do not set *linesize unless allocation succeeds.
15826         * lib/getndelim2.h: Do not include stddef.h; no longer needed, now
15827         that we include sys/types.h.
15828         * lib/getnline.h: Likewise.
15829         * lib/getndelim2.h (GETNLINE_NO_LIMIT): New macro.
15830         (getndelim2): Reorder arguments.
15831         * lib/getnline.c (getnline, getndelim):
15832         Don't discard the NMAX argument.
15833         (getnline): Invoke getndelim, to avoid code duplication.
15834         * lib/getnline.h (GETNLINE_NO_LIMIT): New macro, used instead
15835         of (size_t) -1 by callers of the getnline family.
15836
15837 2004-05-13  Paul Eggert  <eggert@cs.ucla.edu>
15838
15839         * m4/gettime.m4 (gl_GETTIME): Require gl_TIMESPEC.
15840         Check for gettimeofday.
15841         * m4/settime.m4 (gl_SETTIME): Require gl_TIMESPEC.
15842         Check for settimeofday, stime.
15843
15844 2004-05-13  Paul Eggert  <eggert@cs.ucla.edu>
15845
15846         * lib/nanosleep.c (suspended): Change its type from int to
15847         sig_atomic_t volatile.
15848         (first_call): Make it private to rpl_nanosleep, and have it
15849         be zero initially as that's a bit faster.
15850         (my_usleep): Round up fractional times instead of truncating them,
15851         as this is the usual meaning for 'sleep'.
15852
15853         * lib/gettime.c (gettime): Fall back on `time' if `gettimeofday'
15854         doesn't work.
15855         * lib/settime.c: Include <unistd.h>, for stime (on Solaris 8, anyway).
15856         (ENOSYS): Define if not defined.
15857         (settime): Fall back on stime if it exists and settimeofday fails.
15858         But don't bother with fallbacks if a method fails with errno == EPERM.
15859
15860 2004-05-11  Jim Meyering  <jim@meyering.net>
15861
15862         Prior to this change, the save_cwd caller required read access to the
15863         current directory on most systems (ones with the fchdir function).
15864
15865         * lib/save-cwd.c (save_cwd) [HAVE_FCHDIR]: If opening `.' read-only
15866         fails, try write-only, and finally, resort to using xgetcwd.
15867
15868 2004-05-06  Paul Eggert  <eggert@cs.ucla.edu>
15869
15870         * lib/obstack.c, obstack.h: Import changes from libc.
15871
15872 2004-04-28  Bruno Haible  <bruno@clisp.org>
15873
15874         * lib/findprog.c (find_in_path): Treat Cygwin like Windows, since it
15875         also implicitly appends .exe to executables.
15876         * lib/localcharset.c (ISSLASH): Treat Cygwin like Windows, since it now
15877         accepts Windows pathnames.
15878         * lib/pathname.h (ISSLASH, IS_PATH_WITH_DIR, FILESYSTEM_PREFIX_LEN):
15879         Treat Cygwin like Windows, since it now accepts Windows pathnames.
15880         * lib/progreloc.c (ISSLASH, IS_PATH_WITH_DIR, FILESYSTEM_PREFIX_LEN):
15881         Treat Cygwin like Windows, since it now accepts Windows pathnames.
15882         Reported by Derek Robert Price <derek@ximbiot.com>.
15883
15884 2004-04-21  Karl Berry  <karl@gnu.org>
15885
15886         * config/srclist.txt (localcharset.c): break sync.
15887
15888 2004-04-20  Paul Eggert  <eggert@twinsun.com>
15889
15890         * m4/host-os.m4: Add a copyright notice.
15891
15892 2004-04-20  Jim Meyering  <jim@meyering.net>
15893
15894         Change UTILS_ to gl_ in AC_DEFINE'd names.
15895         Change utils_- and jm_-prefixed variables, too.
15896         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Renamed from
15897         UTILS_FUNC_MKDIR_TRAILING_SLASH.
15898         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Renamed from UTILS_FUNC_MKSTEP.
15899
15900         * m4/dirfd.m4 (gl_FUNC_DIRFD): Rename from UTILS_FUNC_DIRFD.
15901         Don't emit trailing blanks.
15902         Also rename jm_-prefixed variables to have gl_ prefix.
15903
15904         * m4/host-os.m4 (gl_HOST_OS): Rename from UTILS_HOST_OS.
15905         Also rename jm_-prefixed variables to have gl_ prefix.
15906
15907         * m4/jm-macros.m4: Reflect the renamings.
15908         * m4/prereq.m4: Likewise.
15909
15910 2004-04-20  Jim Meyering  <jim@meyering.net>
15911
15912         * lib/getndelim2.c (getndelim2): Upon realloc failure, don't leak
15913         memory.
15914
15915 2004-04-20  Jim Meyering  <jim@meyering.net>
15916             Bruno Haible  <bruno@clisp.org>
15917
15918         * lib/localcharset.c (get_charset_aliases) [!VMS && !WIN32]: Don't leak
15919         memory when realloc fails.
15920
15921 2004-04-19  Jim Meyering  <jim@meyering.net>
15922
15923         * m4/readutmp.m4 (gl_PREREQ_READUTMP): Require gl_FUNC_FREE,
15924         now that readutmp.c may call `free (0)'.
15925
15926 2004-04-19  Bruno Haible  <bruno@clisp.org>
15927
15928         * m4/mbrtowc.m4: Change jm_ to gl_ in cache variables as well.
15929         * m4/inttypes_h.m4: Likewise.
15930         * m4/stdint_h.m4: Likewise.
15931         * m4/intmax_t.m4: Likewise.
15932         * m4/uintmax_t.m4: Likewise.
15933
15934 2004-04-18  Jim Meyering  <jim@meyering.net>
15935
15936         * m4/prereq.m4: Don't forbid jm_ prefix.
15937
15938         * m4/afs.m4, m4/allocsa.m4, m4/assert.m4, m4/backupfile.m4:
15939         * m4/bison.m4, m4/check-decl.m4, m4/chown.m4, m4/d-ino.m4:
15940         * m4/d-type.m4, m4/dirname.m4, m4/dos.m4, m4/error.m4, m4/fpending.m4:
15941         * m4/fstypename.m4, m4/fsusage.m4, m4/ftruncate.m4, m4/getdate.m4:
15942         * m4/getgroups.m4, m4/gettext.m4, m4/glibc21.m4, m4/group-member.m4:
15943         * m4/human.m4, m4/intmax.m4, m4/intmax_t.m4, m4/inttostr.m4:
15944         * m4/inttypes.m4, m4/inttypes_h.m4, m4/jm-macros.m4, m4/jm-winsz1.m4:
15945         * m4/jm-winsz2.m4, m4/lchown.m4, m4/lib-check.m4, m4/link-follow.m4:
15946         * m4/localcharset.m4, m4/longlong.m4, m4/ls-mntd-fs.m4, m4/lstat.m4:
15947         * m4/makepath.m4, m4/mbrtowc.m4, m4/mbswidth.m4, m4/memchr.m4:
15948         * m4/memcmp.m4, m4/mkdtemp.m4, m4/mkstemp.m4, m4/mountlist.m4:
15949         * m4/nanosleep.m4, m4/path-concat.m4, m4/perl.m4, m4/prereq.m4:
15950         * m4/putenv.m4, m4/quotearg.m4, m4/regex.m4, m4/stat.m4:
15951         * m4/stdint_h.m4, m4/strftime.m4, m4/strtoimax.m4, m4/strtoll.m4:
15952         * m4/strtoull.m4, m4/strtoumax.m4, m4/timespec.m4, m4/uintmax_t.m4:
15953         * m4/ulonglong.m4, m4/unlink-busy.m4, m4/unlocked-io.m4, m4/uptime.m4,
15954         * m4/utimbuf.m4, m4/utime.m4, m4/utimes-null.m4, m4/vasnprintf.m4:
15955         * m4/xstrtoimax.m4, m4/xstrtol.m4, m4/xstrtoumax.m4:
15956         Change jm_ to gl_ in AC_DEFINE'd names. Update all uses.
15957
15958 2004-04-18  Jim Meyering  <jim@meyering.net>
15959
15960         * lib/readutmp.c (read_utmp) [UTMP_NAME_FUNCTION]: Upon realloc
15961         failure, don't leak memory and do call END_UTMP_ENT.
15962
15963 2004-04-16  Jim Meyering  <jim@meyering.net>
15964
15965         * m4/prereq.m4 (jm_PREREQ_STAT): Remove macro.  It is specific to
15966         coreutils' stat program.
15967         (gl_PREREQ): Don't require jm_PREREQ_STAT.
15968
15969 2004-04-11  Paul Eggert  <eggert@twinsun.com>
15970
15971         * lib/inttostr.h: Include <limits.h> unconditionally, since we assume
15972         C89.
15973         (CHAR_BIT): Remove, since we assume C89.
15974         Include <stdint.h> if available, as per current Autoconf CVS advice.
15975
15976 2004-03-31  Jim Meyering  <jim@meyering.net>
15977
15978         * m4/prereq.m4: Require AC_FUNC_MALLOC, not jm_FUNC_MALLOC.
15979         Require AC_FUNC_REALLOC, not jm_FUNC_REALLOC.
15980         * m4/xalloc.m4: Likewise.
15981
15982 2004-03-30  Paul Eggert  <eggert@twinsun.com>
15983
15984         Merge from coreutils.
15985
15986         * m4/inttostr.m4: New file.
15987         * m4/getdate.m4 (gl_GETDATE): Remove time-related stuff.
15988         Require AM_STDBOOL_H and gl_TIMESPEC instead.
15989         Require gl_CLOCK_TIME.
15990         * m4/clock_time.m4 (gl_CLOCK_TIME): Require AC_GNU_SOURCE.
15991
15992 2004-03-30  Paul Eggert  <eggert@twinsun.com>
15993
15994         * lib/cloexec.h, cloexec.c (set_cloexec_flag): Return int
15995         not bool, to be more consistent with Unix conventions.
15996         Suggested by Bruno Haible.
15997
15998         Merge from coreutils.
15999
16000         * lib/imaxtostr.c, lib/inttostr.c, lib/inttostr.h, lib/offtostr.c:
16001         * lib/umaxtostr.c: New files.
16002
16003         * lib/getdate.h: Include stdbool.h, and timespec.h instead of
16004         the usual <time.h> dance.
16005         (get_date): Change signature to support fractional time stamps.
16006         All callers changed.
16007         * lib/getdate.y: Include "getdate.h" first, as we can now
16008         assume C89 and don't need to worry about 'const'.
16009         Similarly, include "unlocked-io.h" near start, not in middle.
16010         Include <limits.h>.
16011         (textint.value): Use long int rather than int.
16012         (textint.digits): Use size_t rather than int.
16013         (BILLION, LOG10_BILLION): New constants.
16014         (parser_control): New member rel_ns.  Members day_ordinal,
16015         time_zone, month, day, hour, minutes, rel_year, rel_month,
16016         rel_day, rel_hour, rel_minutes, rel_seconds
16017         are now long int, not int.  Member seconds is now struct timespec,
16018         not int.  New member timespec_seen.  Members dates_seen, days_seen,
16019         local_zones_seen, rels_seen, times_seen, zones_seen are now size_t,
16020         not int.
16021         (%union.intval): Now long int, not int.
16022         New member timespec.
16023         (tSDECIMAL_NUMBER, tUDECIMAL_NUMBER): New tokens.
16024         (seconds, signed_seconds, unsigned_seconds): New nonterminals.
16025         (spec): Now is a timespec or an item list.
16026         (timespec, items): New nonterminals.
16027         (time, rel, relunit, number, get_date):
16028         Add support for fractional seconds.
16029         (time): Fix bug: seconds weren't cleared in "00:00 +0000" syntax.
16030         (gmtime, localtime, mktime): Remove decls; not needed with C89.
16031         (to_hour): First arg is now long int, not int.
16032         (to_year): Returns long int, not int.
16033         Don't treat year -70 like 70.
16034         (tm_diff): Returns long int, not int.
16035         (lookup_word): Use bool instead of int when appropriate.
16036         (yylex): Use size_t for count, not int.
16037         Detect overflow when parsing large integer constants.
16038         Add support for fractions.
16039         (get_date): Make pointers 'const' if possible.
16040         Use more-portable code to detect integer overflow.
16041         (main) [TEST]: Adjust to above changes.  Test for localtime failure.
16042         Don't use ctime; it's not reliable if the year has >4 digits.
16043
16044         * lib/human.c (humblock): Inspect BLOCKSIZE if BLOCK_SIZE isn't set.
16045         This is for compatibility with BSD.
16046
16047         * lib/timespec.h (ST_TIME_CMP_NS, ST_TIME_CMP): Define.
16048         (ATIME_CMP, CTIME_CMP, MTIME_CMP, TIMESPEC_NS): Likewise.
16049         From coreutils' system.h.
16050
16051         * lib/userspec.c: Don't include "posixver.h".
16052         (parse_user_spec): Fall back on USER.GROUP parsing, regardless
16053         of POSIX version, as POSIX 1003.1-2001 allows that behavior as a
16054         compatible extension.  Simplify code by removing a boolean int
16055         that was always nonzero if a string was nonnull.
16056
16057 2004-03-30  Jim Meyering  <jim@meyering.net>
16058
16059         Merge from coreutils.
16060
16061         Avoid a configure-time warning about sys/ucred.h on OSF V4.0.
16062         * m4/ls-mntd-fs.m4: Test for sys/ucred.h separately, since
16063         on some systems one must include <grp.h> before it.
16064         Reported by Christian Krackowizer.
16065
16066 2004-03-30  Jim Meyering  <jim@meyering.net>
16067
16068         Merge from coreutils.
16069
16070         * lib/mountlist.c [HAVE_SYS_UCRED_H]: Include grp.h before sys/ucred.h.
16071
16072         * lib/readtokens.c (readtoken): Don't leak 64 bytes when reading
16073         an empty input stream.
16074
16075         * lib/readtokens.c: Include <stdbool.h>.
16076         (readtoken): Use `size_t' rather than int/long.
16077         All callers adjusted.
16078         Use `bool' rather than `int' where appropriate.
16079         Use memset rather than an explicit loop.
16080         Use x2nrealloc rather than xrealloc.
16081         Allow the use of `\0' as a delimiter.
16082         (readtokens): Likewise.
16083         * lib/readtokens.h (readtoken, readtokens): Update prototypes.
16084
16085 2004-03-30  Jim Meyering  <jim@meyering.net>
16086
16087         * m4/realloc.m4: Remove file, since now it does no more than
16088         AC_REQUIRE([AC_FUNC_REALLOC]), and that can be done via
16089         the `configure.ac' section of module/realloc.
16090         * m4/malloc.m4: Likewise, but for AC_FUNC_MALLOC.
16091
16092 2004-03-30  Bruno Haible  <bruno@clisp.org>
16093
16094         * lib/getloadavg.c (getloadavg): Don't assume setlocale returns
16095         nonnull.
16096
16097 2004-03-29  Paul Eggert  <eggert@twinsun.com>
16098
16099         Merge changes to getloadavg.c from coreutils and Emacs.
16100
16101         * lib/getloadavg.c [!defined HAVE_SETLOCALE] (setlocale):
16102         Define to an expression, not to the empty string.
16103         Include cloexec.h and xalloc.h.
16104         (getloadavg): Restore LC_NUMERIC locale after setting it temporarily.
16105         Use set_cloexec_flag rather than rolling our own.
16106         * lib/cloexec.c, lib/cloexec.h: New files.
16107
16108 2004-03-29  Paul Eggert  <eggert@twinsun.com>
16109
16110         * m4/cloexec.m4: New file.
16111
16112 2004-03-18  Paul Eggert  <eggert@twinsun.com>
16113
16114         * lib/getopt.h: Sync with libc CVS.
16115
16116 2004-03-18  Paul Eggert  <eggert@twinsun.com>
16117             Bruno Haible  <bruno@clisp.org>
16118
16119         * m4/mbswidth.m4 (gl_MBSWIDTH): Also test whether <wchar.h> declares
16120         mbswidth.
16121
16122 2004-03-18  Paul Eggert  <eggert@twinsun.com>
16123             Bruno Haible  <bruno@clisp.org>
16124
16125         * lib/mbswidth.h: Include <wchar.h> only if
16126         HAVE_DECL_MBSWIDTH_IN_WCHAR_H, not on all platforms that have
16127         <wchar.h>.
16128         * lib/mbswidth.c: Include <stdio.h> and <time.h> before <wchar.h>.
16129
16130 2004-03-09  Paul Eggert  <eggert@twinsun.com>
16131
16132         * lib/argp-parse.c, getopt.c, getopt.h, getopt1.c:
16133         Sync with libc CVS.
16134         * lib/getopt_int.h: New file, also synced from libc.
16135
16136 2004-03-09  Paul Eggert  <eggert@twinsun.com>
16137
16138         * config/srclistvars.sh: Add GNUWWWLICENSES for eggert.
16139         * config/srclist.txt: Sync getopt with libc.  Add getopt_int.h.
16140         Bring back getopt.c, getopt.h, getopt1.c.
16141
16142 2004-03-07  Paul Eggert  <eggert@twinsun.com>
16143
16144         * m4/c-stack.m4 (gl_PREREQ_C_STACK): Renamed from jm_PREREQ_C_STACK.
16145         All uses changed.  Check for sa_sigaction member; this fixes
16146         a bug first reported by Jason Andrade in
16147         <http://mail.gnu.org/archive/html/bug-textutils/2003-03/msg00027.html>.
16148
16149 2004-03-07  Paul Eggert  <eggert@twinsun.com>
16150
16151         * lib/c-stack.c (SIGACTION_WORKS): New macro.  Use it instead of long
16152         '#if' expressions.  Unlike the code it replaces, it does not
16153         depend on (defined _SC_PAGESIZE).  However, it does depend on
16154         HAVE_STRUCT_SIGACTION_SA_SIGACTION; this last change fixes a bug
16155         first reported by Jason Andrade in
16156         <http://mail.gnu.org/archive/html/bug-textutils/2003-03/msg00027.html>.
16157
16158 2004-02-25  Simon Josefsson  <jas@extundo.com>
16159
16160         * m4/strdup.m4 (gl_PREREQ_STRDUP): Check whether strdup is declared.
16161
16162 2004-02-25  Simon Josefsson  <jas@extundo.com>
16163
16164         * lib/strdup.h: New file.
16165         * lib/strdup.c: Include it.
16166         * lib/path-concat.c: Include strdup.h. Drop strdup declaration.
16167         * lib/userspec.c: Include strdup.h. Drop strdup declaration.
16168
16169 2004-02-23  Karl Berry  <karl@gnu.org>
16170
16171         * doc/maintain.texi, doc/standards.texi, doc/make-stds.texi: new files
16172         (from fencepost.gnu.org:/gd/gnuorg).
16173
16174 2004-02-23  Karl Berry  <karl@gnu.org>
16175
16176         * config/srclistvars.sh (GNUORG) [karl]: redefine.
16177         * config/srclist.txt: add maintain/standards documents.
16178
16179 2004-02-18  Bruno Haible  <bruno@clisp.org>
16180
16181         * m4/xsize.m4 (gl_XSIZE): Require AC_C_INLINE.
16182         Reported by Derek Robert Price <derek@ximbiot.com>.
16183
16184 2004-02-16  Karl Berry  <karl@gnu.org>
16185
16186         * config/mkinstalldirs, install-sh: update from automake.
16187
16188 2004-02-06  Karl Berry  <karl@gnu.org>
16189
16190         * m4/po.m4: update from gettext 0.14.1.
16191
16192 2004-02-06  Karl Berry  <karl@gnu.org>
16193
16194         * lib/config.charset: update from gettext 0.14.1.
16195
16196 2004-02-05  Paul Eggert  <eggert@twinsun.com>
16197
16198         Add comments and code, prompted by suggestions from Bruno Haible
16199         for sh-quote.
16200         * lib/quotearg.h (quotearg_alloc): New decl.  Improve the comments
16201         describing the enum quoting_style values.
16202         * lib/quotearg.c (quotearg_alloc): New function.
16203         (quotearg_buffer_restyled): Treat lone { and } as special.
16204         Treat = as special.  Work around bug with older shells
16205         that "see" a '\' that is really the 2nd byte of a multibyte char.
16206         Quote empty string with shell_quoting_style.
16207
16208 2004-02-03  Bruno Haible  <bruno@clisp.org>
16209
16210         * m4/pipe.m4: New file, from GNU gettext.
16211
16212 2004-02-03  Bruno Haible  <bruno@clisp.org>
16213
16214         * lib/pipe.h: New file, from GNU gettext.
16215         * lib/pipe.c: New file, from GNU gettext.
16216
16217 2004-01-27  Bruno Haible  <bruno@clisp.org>
16218
16219         * m4/execute.m4: New file, from GNU gettext.
16220
16221 2004-01-27  Bruno Haible  <bruno@clisp.org>
16222
16223         * lib/execute.h: New file, from GNU gettext.
16224         * lib/execute.c: New file, from GNU gettext.
16225         * lib/w32spawn.h: New file, from GNU gettext.
16226
16227 2004-01-24  Paul Eggert  <eggert@twinsun.com>
16228
16229         Merge from diffutils.
16230
16231         * lib/file-type.c (file_type): Add typed memory objects.
16232         * lib/file-type.h (S_TYPEISTMO): New macro.
16233
16234         * lib/c-stack.h (c_stack_action): Remove argv argument.
16235         * lib/c-stack.c (c_stack_action): Likewise.  All uses changed.
16236         (die): Don't calculate message unless segv_action returns.
16237         (get_stack_location, min_address_from_argv, max_address_from_argv,
16238         volatile stack_base, volatile_stack_size): Remove.
16239         (segv_handler): If ! HAVE_XSI_STACK_OVERFLOW_HEURISTIC, assume
16240         that every segmentation violation is a stack overflow.  (Ouch!)
16241         See Debian bug 136249 (still outstanding) for more info about why
16242         HAVE_XSI_STACK_OVERFLOW_HEURISTIC fails on Linux kernels.
16243
16244 2004-01-24  Paul Eggert  <eggert@twinsun.com>
16245
16246         Exit-status fix from coreutils.
16247
16248         Use exit_failure consistently in place of EXIT_FAILURE,
16249         so that program exit statuses are consistent on failure.
16250
16251         * lib/argmatch.c (ARGMATCH_DIE) [! defined ARGMATCH_DIE]:
16252         Include "exitfail.h", and use exit_failure rather than EXIT_FAILURE.
16253         * lib/argmatch.h: Comment fix to match the above.
16254         * lib/obstack.c (obstack_exit_failure) [!defined _LIBC]:
16255         Now a macro referring to exit_failure, instead of a separate
16256         variable.  Include "exitfail.h" to get it.
16257         * lib/xstrtol.h: Include "exitfail.h".
16258         (STRTOL_FATAL_ERROR): Exit with status exit_failure, not 2.
16259
16260         * lib/long-options.c (parse_long_options): Use prototype
16261         for usage function arg.  Pass it EXIT_SUCCESS rather than 0,
16262         for clarity.
16263
16264 2004-01-21  Jim Meyering  <jim@meyering.net>
16265
16266         * lib/mktime.c (__mktime_internal) [!_LIBC]: Define to mktime_internal
16267         so as not to conflict with a different-sized __mktime_internal
16268         function in GNU libc.
16269         * lib/timegm.c (__mktime_internal) [!_LIBC]: Likewise.
16270         Problem building statically-linked `ls' reported by Michael Brunnbauer.
16271
16272 2004-01-20  Karl Berry  <karl@gnu.org>
16273
16274         * config/config.guess: update from config.
16275
16276         * config/srclistvars.sh: GNUWWWLICENSES for karl.
16277
16278 2004-01-20  Bruno Haible  <bruno@clisp.org>
16279
16280         Safer stack allocation.
16281         * lib/setenv.c: Include allocsa.h.
16282         (alloca): Remove fallback definition.
16283         (freea): Remove macro.
16284         (__add_to_environ) [!_LIBC]: Use allocsa instead of alloca. Use freesa
16285         instead of freea.
16286
16287 2004-01-20  Bruno Haible  <bruno@clisp.org>
16288
16289         * m4/eealloc.m4: New file, from GNU gettext.
16290
16291 2004-01-20  Bruno Haible  <bruno@clisp.org>
16292
16293         * m4/allocsa.m4: New file, from GNU gettext.
16294
16295 2004-01-20  Bruno Haible  <bruno@clisp.org>
16296
16297         * lib/xallocsa.h: New file, from GNU gettext.
16298         * lib/xallocsa.c: New file, from GNU gettext.
16299
16300 2004-01-20  Bruno Haible  <bruno@clisp.org>
16301
16302         * lib/wait-process.c: On Windows, include windows.h. Needed on mingw.
16303
16304 2004-01-20  Bruno Haible  <bruno@clisp.org>
16305
16306         * lib/wait-process.c (wait_subprocess): Add ignore_sigpipe argument.
16307         * lib/wait-process.c (wait_subprocess): Likewise. Handle SIGPIPE
16308         specially.
16309
16310 2004-01-20  Bruno Haible  <bruno@clisp.org>
16311
16312         * lib/wait-process.c (wait_process): Disable the 2003-10-31 waitid()
16313         patch.
16314
16315 2004-01-20  Bruno Haible  <bruno@clisp.org>
16316
16317         * lib/wait-process.c (cleanup_slaves): Use ANSI C declaration.
16318
16319 2004-01-20  Bruno Haible  <bruno@clisp.org>
16320
16321         * lib/eealloc.h: New file.
16322
16323 2004-01-20  Bruno Haible  <bruno@clisp.org>
16324
16325         * lib/binary-io.h: Avoid warnings on Cygwin.
16326
16327 2004-01-20  Bruno Haible  <bruno@clisp.org>
16328
16329         * lib/allocsa.h: New file, from GNU gettext.
16330         * lib/allocsa.c: New file, from GNU gettext.
16331
16332 2004-01-18  Karl Berry  <karl@gnu.org>
16333
16334         * doc/gpl.texi, doc/lgpl.texi: new files.
16335
16336 2004-01-18  Karl Berry  <karl@gnu.org>
16337
16338         * config/srclistvars.sh (GNUWWWLICENSES): new variable.
16339         * config/srclist.txt ({fdl,gpl,lgpl}.text): get from there.
16340
16341 2004-01-15  Paul Eggert  <eggert@twinsun.com>
16342
16343         Merge from coreutils.
16344
16345         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for uintptr_t.
16346         * m4/posixver.m4 (gl_POSIXVER): Require gl_DEFAULT_POSIX2_VERSION.
16347         (gl_DEFAULT_POSIX2_VERSION): Move
16348         the documentation from 'configure' into 'config.hin',
16349         so that 'configure --help' isn't burdened by it and
16350         we don't have to worry about its formatting there.
16351         Reword the documentation so that it's more succinct
16352         and can be run together into a single paragraph.
16353         * m4/same.m4 (gl_SAME): Check for pathconf.
16354
16355 2004-01-15  Paul Eggert  <eggert@twinsun.com>
16356
16357         Merge from coreutils.
16358
16359         * lib/posixver.c: Include posixver.h.
16360
16361         * lib/same.c: Include <stdbool.h>, <limits.h>.
16362         (_POSIX_NAME_MAX): Define if not defined.
16363         (MIN): New macro.
16364         (same_name): If file names are silently truncated, report
16365         that the file names are the same if they are the same after
16366         the silent truncation.
16367
16368         * lib/xstrtod.h (xstrtod): Accept an extra arg, specifying the
16369         conversion function.
16370         * lib/xstrtod.c (xstrtod): Likewise.  All callers changed to
16371         include c-strtod.h and use c_strtod.  Don't include stdlib.h; no
16372         longer needed.
16373
16374 2004-01-15  Jim Meyering  <jim@meyering.net>
16375
16376         Merge from coreutils.
16377
16378         * m4/clock_time.m4 (gl_CLOCK_TIME): Don't set LIB_CLOCK_GETTIME
16379         if no library is required.
16380         * m4/jm-macros.m4: Don't require UTILS_SYS_OPEN_MAX.
16381         * m4/jm-macros.m4 (jm_MACROS): Require gl_FUNC_FREE.
16382         * m4/jm-macros.m4 (jm_MACROS): Require autoconf-2.58.
16383         (AC_LANG_SOURCE): Remove definition, now that we require autoconf-2.58.
16384         * m4/jm-macros.m4 (jm_MACROS): Don't require AC_FUNC_FTW.
16385         * m4/lib-check.m4 (jm_LIB_CHECK): Do not set LIB_CRYPT to the
16386         value, $ac_cv_search_crypt, if it's "none required".
16387         * m4/posixver.m4 (gl_DEFAULT_POSIX2_VERSION): New macro.
16388         * m4/prereq.m4 (jm_PREREQ): Require AC_FUNC_GETLOADAVG,
16389         not gl_FUNC_GETLOADAVG.
16390         * m4/prereq.m4 (jm_PREREQ): Require gl_READTOKENS, gl_MD5, gl_MAKEPATH,
16391         gl_LONG_OPTIONS, and gl_IDCACHE, gl_GETUGROUPS.
16392
16393 2004-01-15  Jim Meyering  <jim@meyering.net>
16394
16395         Merge from coreutils.
16396
16397         * lib/md5.h (rol) [__GNUC__ && __i386__]: Don't use `asm' code.  These
16398         days, gcc-3.x does better all by itself.  Patch from Dean Gaudet:
16399         http://mail.gnu.org/archive/html/bug-coreutils/2003-11/msg00144.html
16400
16401         * lib/posixver.c (DEFAULT_POSIX2_VERSION): Use definition of new,
16402         optional configure-time default.
16403
16404         * lib/version-etc.c (version_etc_copyright): Update copyright date.
16405
16406         * lib/xreadlink.c (xreadlink): Correct outdated comment.
16407
16408 2004-01-15  Alexandre Duret-Lutz  <adl@gnu.org>
16409
16410         Merge from coreutils.
16411
16412         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Do not set LIB_NANOSLEEP to the
16413         value, $ac_cv_search_nanosleep, if it's "none required".
16414
16415 2004-01-14  Paul Eggert  <eggert@twinsun.com>
16416
16417         * lib/fnmatch_loop.c (ALLOCA_LIMIT): Remove macro, which collided
16418         with like-named macro in fnmatch.c.
16419         (EXT): Use an internal constant instead.
16420
16421         Merge fnmatch patches from glibc.
16422         * lib/fnmatch.c (mbsinit): Remove define.
16423         Add libc_hidden_ver (__fnmatch, fnmatch).
16424         * lib/fnmatch_loop.c (FCT): Cast to int32_t and UCHAR when appropriate.
16425         Adjust to renaming of collseq_table_lookup to __collseq_table_lookup.
16426
16427 2004-01-14  Karl Berry  <karl@gnu.org>
16428
16429         * config/install-sh: update from automake.
16430
16431 2004-01-13  Karl Berry  <karl@gnu.org>
16432
16433         * config/install-sh: update from automake.
16434
16435 2004-01-09  Karl Berry  <karl@gnu.org>
16436
16437         * config/install-sh: update from automake.
16438
16439 2004-01-05  Karl Berry  <karl@gnu.org>
16440
16441         * config/config.{sub,guess}: update from config.
16442
16443 2003-12-31  Karl Berry  <karl@gnu.org>
16444
16445         * config/depcomp: update from automake.
16446
16447 2003-12-14  Karl Berry  <karl@gnu.org>
16448
16449         * lib/config.charset: update from gettext-runtime.
16450
16451 2003-12-03  Paul Eggert  <eggert@twinsun.com>
16452
16453         * lib/getgroups.c (getgroups): xmalloc takes one argument, not two.
16454         Bug reported by Alfred M. Szmidt.
16455
16456 2003-12-03  Bruno Haible  <bruno@clisp.org>
16457
16458         * m4/gettext.m4: Upgrade from gettext-0.13.
16459         * m4/po.m4: Upgrade from gettext-0.13.
16460         * m4/size_max.m4 (gl_SIZE_MAX): Don't use the _ONCE macros here.
16461         * m4/intmax.m4: New file, from gettext-0.13.
16462         * m4/printf-posix.m4: New file, from gettext-0.13.
16463
16464 2003-11-29  Karl Berry  <karl@gnu.org>
16465
16466         * lib/argp-{help.c,parse.c,namefrob.h}, argp.h: update from libc.
16467
16468 2003-11-25  Paul Eggert  <eggert@twinsun.com>
16469             Bruno Haible  <bruno@clisp.org>
16470
16471         * lib/printf-parse.h: Don't include sys/types.h.
16472         (ARG_NONE): New macro.
16473         (char_directive): Change type of *arg_index fields to size_t.
16474         * lib/printf-parse.c: Don't include sys/types.h.
16475         (SSIZE_MAX): Remove macro.
16476         (PRINTF_PARSE): Change the type of the arg_index variables to size_t.
16477         Remove unnecessary overflow check.
16478         * lib/vasnprintf.c (VASNPRINTF): Update for type change of *arg_index
16479         fields.
16480
16481 2003-11-25  Bruno Haible  <bruno@clisp.org>
16482
16483         * modules/vasnprintf (Files): Remove m4/ssize_t.m4.
16484
16485 2003-11-25  Bruno Haible  <bruno@clisp.org>
16486
16487         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Don't require
16488         gt_TYPE_SSIZE_T.
16489
16490 2003-11-24  Paul Eggert  <eggert@twinsun.com>
16491
16492         * modules/alloca: Remove dependency on xalloc.
16493
16494 2003-11-24  Paul Eggert  <eggert@twinsun.com>
16495
16496         * lib/alloca.c: Remove dependency on xalloc module.
16497         (xalloc_die): Remove.
16498         (memory_full) [!defined emacs]: New macro.
16499         [!defined emacs]: Don't include xalloc.h.
16500         (alloca): Invoke memory_full, not xalloc_die, if malloc fails or
16501         address arithmetic overflows.  Change datatypes a bit to avoid
16502         unnecessary casts.
16503
16504 2003-11-22  Jim Meyering  <jim@meyering.net>
16505
16506         * lib/xmalloc.c (x2nrealloc_inline): Fix typos in comments:
16507         s/size/size_t/.
16508
16509 2003-11-21  Karl Berry  <karl@gnu.org>
16510
16511         * config/config.{sub,guess}: update from config.
16512
16513 2003-11-18  Karl Berry  <karl@gnu.org>
16514
16515         * config/config.{sub,guess}: update from config.
16516
16517         * config/(printf-{parse,args}.[ch]): sync broken, sigh.
16518
16519 2003-11-17  Paul Eggert  <eggert@twinsun.com>
16520
16521         * README: Mention that S+T cannot overflow if S is the size of
16522         an existing object and T is sufficiently small.
16523
16524 2003-11-17  Jim Meyering  <jim@meyering.net>
16525
16526         On systems without utime and without a utimes function capable of
16527         dealing with a NULL struct utimbuf* argument, this utime replacement
16528         could -- in unusual circumstances -- leak a file descriptor.
16529         * lib/utime.c: Include <unistd.h> and <errno.h>.
16530         (utime_null): Be sure to close `fd' and to preserve errno.
16531         Reported by Geoff Collyer via Arnold Robbins.
16532
16533 2003-11-17  Bruno Haible  <bruno@clisp.org>
16534
16535         * modules/vasnprintf (Files): Add m4/ssize_t.m4.
16536         (Depends-on): Add xsize.
16537
16538 2003-11-17  Bruno Haible  <bruno@clisp.org>
16539
16540         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Require gt_TYPE_SSIZE_T.
16541
16542 2003-11-17  Bruno Haible  <bruno@clisp.org>
16543
16544         * lib/vasnprintf.c (alloca): Remove fallback definition.
16545         (freea): Remove definition.
16546         (VASNPRINTF): Use alloca only for small sizes, say <= 4000 bytes.
16547         Reported by Paul Eggert.
16548
16549 2003-11-16  Paul Eggert  <eggert@twinsun.com>
16550             Bruno Haible  <bruno@clisp.org>
16551
16552         Protect against address arithmetic overflow.
16553         * lib/printf-args.h: Include stddef.h.
16554         (arguments): Change type of field 'count' to size_t.
16555         * lib/printf-args.c (printf_fetchargs): Use size_t instead of
16556         'unsigned int' where appropriate.
16557         * lib/printf-parse.h: Include sys/types.h.
16558         (char_directive): Change type of *arg_index fields to ssize_t.
16559         (char_directives): Change type of fields 'count', max_*_length to
16560         size_t.
16561         * lib/printf-parse.c: Include sys/types.h and xsize.h.
16562         (SSIZE_MAX): Define fallback value.
16563         (PRINTF_PARSE): Use size_t instead of 'unsigned int' and ssize_t
16564         instead of 'int' where appropriate. Check a_allocated, d_allocated
16565         against overflow. Reject %m$ argument numbers > SSIZE_MAX + 1.
16566         * lib/vasnprintf.c: Include xsize.h.
16567         (VASNPRINTF): Use size_t instead of 'unsigned int' where appropriate.
16568         Check alloca, malloc, realloc, ENSURE_ALLOCATION arguments against
16569         overflow. Avoid wraparound when converting a width or precision from
16570         decimal to binary.
16571
16572 2003-11-16  Bruno Haible  <bruno@clisp.org>
16573
16574         Update from GNU gettext.
16575         * lib/printf-parse.c: Generalize to it can be compiled for wide
16576         strings.
16577         (PRINTF_PARSE, CHAR_T, DIRECTIVE, DIRECTIVES): New macros.
16578         * lib/vasnprintf.c: Generalize to it can be compiled for wide strings.
16579         (VASNPRINTF, CHAR_T, DIRECTIVE, DIRECTIVES, PRINTF_PARSE, USE_SNPRINTF,
16580         SNPRINTF): New macros.
16581         Don't include <alloca.h> if the file is used inside libintl.
16582         (local_wcslen): New function, for Solaris 2.5.1.
16583         (VASNPRINTF): Use it instead of wcslen.
16584
16585 2003-11-16  Bruno Haible  <bruno@clisp.org>
16586
16587         * lib/xsize.h (xmax): New function.
16588         (xsum, xsum3, xsum4): Declare as "pure" functions.
16589
16590 2003-11-12  Paul Eggert  <eggert@twinsun.com>
16591
16592         * modules/xalloc (Files): Undo latest change, since xalloc.h
16593         no longer needs SIZE_MAX or PTRDIFF_MAX.
16594
16595 2003-11-12  Paul Eggert  <eggert@twinsun.com>
16596
16597         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Do not require gl_SIZE_MAX or
16598         gl_PTRDIFF_MAX.
16599
16600 2003-11-12  Paul Eggert  <eggert@twinsun.com>
16601
16602         * lib/xstrtol.c (__xstrtol): Remove "break" immediately after
16603         "return", to pacify some unknown compiler.  Problem reported
16604         by Joerg Schilling.
16605
16606 2003-11-12  Paul Eggert  <eggert@twinsun.com>
16607
16608         * lib/xalloc.h: Do not include <limits.h> or <stdint.h>.
16609         (xalloc_oversized): Use sizeof (ptrdiff_t) and sizeof (size_t) for
16610         the heuristic, rather than PTRDIFF_MAX and SIZE_MAX.  This
16611         heuristic is just as accurate as far as we know, and it removes a
16612         dependency on size_max.m4 and ptrdiff_max.m4.
16613
16614 2003-11-11  Bruno Haible  <bruno@clisp.org>
16615
16616         * modules/xsize (Files): Add m4/size_max.m4.
16617         * modules/xalloc (Files): Add m4/size_max.m4, m4/ptrdiff_max.m4.
16618
16619 2003-11-11  Bruno Haible  <bruno@clisp.org>
16620
16621         * m4/size_max.m4: New file.
16622         * m4/ptrdiff_max.m4: New file.
16623         * m4/xsize,m4 (gl_XSIZE): Require gl_SIZE_MAX.
16624         * m4/xalloc.m4 (gl_PREREQ_XALLOC): New macro.
16625         (gl_XALLOC): Invoke it.
16626
16627 2003-11-11  Bruno Haible  <bruno@clisp.org>
16628
16629         * lib/xsize.h (SIZE_MAX): Remove fallback definition.
16630         * lib/xalloc.h: Include limits.h. Assume SIZE_MAX and PTRDIFF_MAX are
16631         defined.
16632
16633 2003-11-10  Paul Eggert  <eggert@twinsun.com>
16634
16635         * lib/xalloc.h (xalloc_oversized): [! (defined PTRDIFF_MAX &&
16636         PTRDIFF_MAX < SIZE_MAX)]: Fix off-by-one error that would have
16637         rejected some allocations of exactly SIZE_MAX - 2 bytes.
16638         From Bruno Haible.
16639         [defined PTRDIFF_MAX && PTRDIFF_MAX < SIZE_MAX]: Use SIZE_MAX,
16640         not (size_t) -1, since it's defined here.
16641
16642 2003-11-09  Karl Berry  <karl@gnu.org>
16643
16644         * config/mkinstalldirs, depcomp, mdate-sh: update from automake.
16645
16646 2003-11-06  Paul Eggert  <eggert@twinsun.com>
16647
16648         * lib/xalloc.h [HAVE_STDINT_H]: Include <stdint.h>.
16649         (xalloc_oversized) [! (PTRDIFF_MAX < SIZE_MAX)]:
16650         Reject sizes of exactly SIZE_MAX bytes.
16651         * lib/xreadlink.c: Include "xalloc.h" before checking whether SIZE_MAX
16652         is defined, since "xalloc.h" now defines SIZE_MAX on modern hosts.
16653
16654 2003-11-05  Bruno Haible  <bruno@clisp.org>
16655
16656         * lib/xsize.h: Include limits.h, to avoid a possible collision with
16657         SIZE_MAX defined in <limits.h> on Solaris.
16658
16659 2003-11-04  Jim Meyering  <jim@meyering.net>
16660
16661         * modules/sysexits: Use the `$(VAR)' notation for AC_SUBST'd
16662         variable names, rather than @VAR@.
16663         * modules/poll: Likewise.
16664
16665 2003-11-04  Bruno Haible  <bruno@clisp.org>
16666
16667         * modules/xsize: New file.
16668         * modules/linebreak: Depend on xsize.
16669         * MODULES.html.sh (func_all_modules): Add xsize.
16670
16671 2003-11-04  Bruno Haible  <bruno@clisp.org>
16672
16673         * m4/xsize.m4: New file.
16674
16675 2003-11-04  Bruno Haible  <bruno@clisp.org>
16676
16677         * lib/xsize.h: New file.
16678         * lib/linebreak.c: Include xsize.h.
16679         (mbs_possible_linebreaks, mbs_width_linebreaks): Check malloc()
16680         argument for overflow.
16681         Suggested by Paul Eggert.
16682
16683 2003-11-03  Karl Berry  <karl@gnu.org>
16684
16685         * config/config.{guess,sub}: update from config.
16686
16687 2003-11-03  Jim Meyering  <jim@meyering.net>
16688
16689         * modules/userspec (lib_SOURCES): Add userspec.h.
16690         (Include): Add "userspec.h".
16691         Improve description.
16692
16693 2003-11-03  Jim Meyering  <jim@meyering.net>
16694
16695         * lib/userspec.c: Include "userspec.h".
16696         * lib/userspec.h: New file.
16697
16698 2003-11-03  Bruno Haible  <bruno@clisp.org>
16699
16700         * m4/wait-process.m4 (gl_WAIT_PROCESS): Also check for waitid.
16701
16702 2003-11-03  Bruno Haible  <bruno@clisp.org>
16703
16704         * lib/wait-process.c (wait_process): Use waitid with WNOWAIT if
16705         available, to avoid (extremely rare) race condition.
16706         Suggested by Paul Eggert.
16707
16708 2003-11-02  Karl Berry  <karl@gnu.org>
16709
16710         * config/srclist.txt (vasprintf.c): sync broken, sigh.
16711
16712 2003-10-31  Paul Eggert  <eggert@twinsun.com>
16713
16714         * lib/mountlist.h (struct mount_entry.me_type_malloced): New member.
16715         * lib/mountlist.c (SIZE_MAX): Define if not defined already.
16716         (read_filesystem_list): Set and use me_type_malloced.
16717         Use "sizeof *me" rather than "sizeof (struct mount_entry)" (or
16718         whatever the type happens to be), for brevity and consistency.
16719         Check for size calculation overflow on Alphas running OSF/1.
16720
16721 2003-10-31  Jim Meyering  <jim@meyering.net>
16722
16723         * lib/hash.c: Include "xalloc.h" for use of xalloc_oversized.
16724
16725         * lib/linebuffer.c: Include <string.h> for declaration of memset.
16726
16727 2003-10-30  Paul Eggert  <eggert@twinsun.com>
16728             Bruno Haible  <bruno@clisp.org>
16729
16730         * lib/vasprintf.c: Include <limits.h>, <stdlib.h>.
16731         (vasprintf): Fail if the resulting length doesn't fit in an 'int'.
16732
16733 2003-10-30  Paul Eggert  <eggert@cs.ucla.edu>
16734
16735         * m4/host-os.m4 (UTILS_HOST_OS): Change netbsd*-gnu pattern back to
16736         netbsd*-gnu*.  Suggested by Robert Millan.
16737
16738 2003-10-29  Paul Eggert  <eggert@twinsun.com>
16739
16740         * modules/group-member: Depend on stdbool.
16741
16742 2003-10-29  Paul Eggert  <eggert@twinsun.com>
16743
16744         * m4/xalloc.m4 (gl_XALLOC): Undo previous change.
16745
16746 2003-10-29  Paul Eggert  <eggert@twinsun.com>
16747
16748         * m4/host-os.m4 (UTILS_HOST_OS): Resurrect netbsd*-gnu.  Add comments
16749         to it, and to knetbsd*-gnu and kfreebsd*-gnu.  Remove the '*' from
16750         after the 'gnu' in these cases.  This fixes some bugs in the
16751         previous change, and is based on suggestions by Robert Millan.
16752
16753 2003-10-29  Paul Eggert  <eggert@twinsun.com>
16754
16755         * lib/xalloc.h (xalloc_oversized): Now a macro, not a function,
16756         so that it works even if SIZE_MAX < N.  Do not include <stdbool.h>;
16757         no longer needed.
16758         * lib/quotearg.c (quotearg_n_options): Use it.
16759         * lib/group-member.c: Include <stdbool.h>.
16760         (free_group_info): Arg is now const *; don't free arg.
16761         (get_group_info): Now returns bool and accepts struct group_info *,
16762         rather than returning a malloc'ed struct group_info *.
16763         All uses changed.  Check for overflow in internal size calculation.
16764
16765         * lib/getusershell.c (readname): Simplify the code by using x2nrealloc
16766         rather than xmalloc/xrealloc.
16767         * lib/linebuffer.c (initbuffer, readlinebuffer): Simplify the code by
16768         using x2realloc rather than xmalloc/xrealloc.  Also, fix a C
16769         conformance bug: the old code used a pointer after freeing the
16770         storage that it addressed.
16771         * lib/hash.c (hash_initialize): Simplify the code by using
16772         xalloc_oversized rather than doing it by hand.
16773         * lib/getgroups.c (getgroups): Don't use xrealloc, since we don't need
16774         the buffer preserved.  Use free and xmalloc instead.
16775         * lib/quotearg.c (quotearg_n_options): Likewise.
16776         Use a simpler test for size overflow.  Don't use xalloc_oversized
16777         because unsigned int might be wider than size_t (!); this suggests
16778         that we should switch from unsigned int to size_t for slot numbers.
16779
16780 2003-10-28  Paul Eggert  <eggert@twinsun.com>
16781
16782         * m4/host-os.m4 (UTILS_HOST_OS): Identify GNU/KFreeBSD and
16783         GNU/KNetBSD.  These implementations use glibc atop the FreeBSD and
16784         NetBSD kernels.  Requested by Richard Stallman.
16785
16786 2003-10-27  Paul Eggert  <eggert@twinsun.com>
16787
16788         * lib/exclude.c (new_exclude): Use xzalloc rather than xmalloc
16789         to allocate the returned structure.  Do not allocate a subarray,
16790         as x2nrealloc will do that.
16791         (add_exclude): Use x2nrealloc to reallocate ex->exclude,
16792         instead of xnrealloc.
16793         (add_exclude_file): Use x2realloc instead of malloc + xnrealloc.
16794
16795 2003-10-27  Bruno Haible  <bruno@clisp.org>
16796
16797         * lib/stdbool_.h: Better support for BeOS.
16798
16799 2003-10-26  Paul Eggert  <eggert@twinsun.com>
16800
16801         * m4/xalloc.m4 (gl_XALLOC): Requore AC_C_INLINE, since xalloc.h
16802         now uses inline.
16803
16804 2003-10-26  Paul Eggert  <eggert@twinsun.com>
16805
16806         * lib/xalloc.h (xalloc_oversized): New static inline function, for
16807         callers that want to do their own size-overflow checking.  Include
16808         <stdbool.h>, since xalloc_oversized returns bool.
16809         * lib/xalloc.c (array_size_overflow): Remove.  All callers changed
16810         to use xalloc_oversized.
16811
16812         Add two functions x2realloc, x2nrealloc, for programs that grow
16813         arrays dynamically by doubling their sizes.
16814         * lib/xalloc.h (x2realloc, x2nrealloc): New decls.
16815         * lib/xmalloc.c (x2nrealloc_inline, x2nrealloc, x2realloc):
16816         New functions.
16817
16818         Port to C99 semantics for 'inline' of external functions.
16819         Bug reported by Bruno Haible.
16820         * lib/xmalloc.c (xnmalloc_inline): New static inline function,
16821         with the old contents of xnmalloc.
16822         (xnmalloc, xmalloc): Use it.
16823         (xnrealloc_inline): New static inline function,
16824         with the old contents of xnrealloc.
16825         (xnrealloc, xrealloc): Use it.
16826
16827         * lib/alloc.c (alloca): xmalloc cannot return NULL, so don't test for
16828         that.
16829
16830 2003-10-26  Karl Berry  <karl@gnu.org>
16831
16832         * config/srclist.txt (COPYING.DOC): no longer available from
16833         /gd/gnuorg; don't know where the ultimate source is.
16834
16835 2003-10-25  Paul Eggert  <eggert@twinsun.com>
16836
16837         Fix several address-calculation bugs in the hash modules,
16838         plus some minor code cleanup.
16839
16840         * lib/hash.h: Include <stdbool.h>, for bool.
16841         * lib/hash.c: Don't include <stdbool.h>, since hash.h does it now.
16842         * lib/hash.h (Hash_hasher, hash_get_n_buckets, hash_get_n_buckets_used,
16843         hash_get_n_entries, hash_get_max_bucket_length,
16844         hash_get_entries, hash_do_for_each, hash_string, hash_initialize,
16845         hash_rehash): Use size_t rather than unsigned.
16846         * lib/hash.c (struct hash_table, hash_get_n_buckets,
16847         hash_get_n_buckets_used, hash_get_n_entries,
16848         hash_get_max_bucket_length, hash_table_ok, hash_print_statistics,
16849         hash_get_entries, hash_do_for_each, hash_string, is_prime,
16850         next_prime, hash_initialize, hash_rehash, hash_delete, hash_print):
16851         Likewise.
16852         (SIZE_MAX): Define if not defined.
16853         (hash_get_max_bucket_length, hash_table_ok, hash_lookup,
16854         hash_get_first, hash_get_next, hash_get_entries, hash_do_for_each,
16855         hash_print):
16856         Use const * when possible.
16857         (hash_string): Use (unsigned char) *P rather than *(unsigned char *) P.
16858         (check_tuning): Fix bug: if tuning parameters were very close to
16859         0 or 1, rounding errors could have caused subscript violations.
16860         (hash_initialize, allocate_entry, hash_print): Remove unnecessary cast.
16861         (hash_initialize): Add 'fail:' label
16862         to free table and return NULL, and use it to simplify code.
16863         Use calloc rather than clearing the storage ourself.
16864         (hash_initialize, hash_rehash): Check for arithmetic overflow in
16865         buffer size calculations.
16866         * lib/hash-pjw.h (hash_pjw): Use size_t, not unsigned.
16867         Include <stddef.h>, for size_t.
16868         * lib/hash-pjw.c (hash_pjw): Likewise.
16869         Switch to method described by Bruno Haible.
16870         Include <limits.h>, for CHAR_BIT.
16871         (SIZE_BITS): New macro.
16872
16873 2003-10-23  Paul Eggert  <eggert@twinsun.com>
16874
16875         * m4/getline.m4 (AM_FUNC_GETLINE):
16876         Don't include getndelim2.o twice into LIBOBJS; this breaks on some
16877         hosts.  Problem reported by Derek Robert Price in
16878         <http://mail.gnu.org/archive/html/bug-gnulib/2003-10/msg00092.html>.
16879         This patch can be withdrawn after Autoconf 2.58 is required for gnulib.
16880         * m4/getndelim2.m4 (gl_GETNDELIM2): Likewise.
16881
16882 2003-10-21  Paul Eggert  <eggert@twinsun.com>
16883
16884         * lib/getndelim2.c (getndelim2): When size calculation overflows,
16885         ceiling the allocation at NMAX bytes rather than silently
16886         discarding input bytes before NMAX is reached.  This makes
16887         a difference only if NMAX exceeds SIZE_MAX / 2.
16888
16889         * lib/obstack.c: Merge from glibc.
16890         [defined _LIBC]: Include <obstack.h>, not "obstack.h".
16891         Add libc_hidden_def (_obstack_newchunk).
16892         (_obstack_free) [! defined _LIBC]: Remove.
16893         [defined _LIBC]: Make a strong alias from obstack_free, rather than
16894         a clone of the function body.
16895         (fputs) [defined _LIBC && defined USE_IN_LIBIO]: Remove.
16896         [defined _LIBC && !defined USE_IN_LIBIO]: Include <libio/iolibio.h>.
16897
16898         * lib/obstack.h: Indenting cleanup, to make it easier to merge with
16899         glibc.
16900         (obstack_grow, obstack_grow0): Remove unnecessary parentheses around
16901         arg to memcpy.
16902
16903         * lib/obstack.h (obstack_1grow_fast): Properly parenthesize arg.
16904         (obstack_ptr_grow_fast, obstack_int_grow_fast):
16905         Don't use lvalue casts, as GCC plans to remove support for them
16906         in GCC 3.5.  Reported by Joseph S. Myers.  This bug
16907         was also present in the non-GCC version, indicating that this
16908         code had always been buggy and had never been widely used.
16909         (obstack_1grow, obstack_ptr_grow, obstack_int_grow, obstack_blank):
16910         Use the fast variant of each macro, rather than copying the
16911         definiens of the fast variant; that way, we'll be more likely to
16912         catch future bugs in the fast variants.
16913
16914 2003-10-20  Bruno Haible  <bruno@clisp.org>
16915
16916         * modules/wait-process: New file.
16917         * MODULES.html.sh (func_all_modules): Add wait-process.
16918
16919 2003-10-20  Bruno Haible  <bruno@clisp.org>
16920
16921         * m4/wait-process.m4: New file.
16922
16923 2003-10-20  Bruno Haible  <bruno@clisp.org>
16924
16925         * lib/wait-process.h: New file, from GNU gettext.
16926         * lib/wait-process.c: New file, from GNU gettext.
16927
16928 2003-10-19  Jim Meyering  <jim@meyering.net>
16929
16930         * lib/vasnprintf.c (vasnprintf): Work around losing snprintf on
16931         HPUX 10.20.
16932
16933 2003-10-18  Karl Berry  <karl@gnu.org>
16934
16935         * config/config.guess: update from config.
16936
16937 2003-10-16  Paul Eggert  <eggert@twinsun.com>
16938
16939         * lib/getgroups.c: Include <errno.h>, <stdlib.h>.
16940         (getgroups): First arg is int, not size_t.
16941         Don't let 'free' mangle errno.
16942
16943 2003-10-16  Paul Eggert  <eggert@twinsun.com>
16944
16945         * README: Mention that gnulib assumes that (foo *) NULL + 0 == NULL.
16946
16947 2003-10-16  Karl Berry  <karl@gnu.org>
16948
16949         * config/config.{guess,sub}: update from config.
16950
16951 2003-10-16  Jim Meyering  <jim@meyering.net>
16952
16953         * lib/xmalloc.c: Include <string.h>, for declarations of memset and
16954         memcpy.
16955
16956 2003-10-15  Paul Eggert  <eggert@twinsun.com>
16957
16958         * lib/exclude.c: Do not include <inttypes.h> or <stdint.h>.
16959         (SIZE_MAX): Remove.
16960         (new_exclude, add_exclude_file): Initial size no longer needs to
16961         be a power of 2.
16962         (add_exclude, add_exclude_file): Use xnrealloc instead of rolling
16963         our own address arithmetic overflow checking.
16964
16965         * lib/fnmatch.c (SIZE_MAX): Define if standard headers don't.
16966         (fnmatch): Do not alloca more than 2000 wide characters;
16967         instead, use malloc for large buffers.
16968         Check for address arithmetic overflow, and return -1
16969         with errno set to ENOMEM in that case.
16970         * lib/fnmatch_loop.c (ALLOCA_LIMIT): New macro.
16971         (NEW_PATTERN): Do not alloca more than 8000 bytes;
16972         instead, return -1.  Check for address arithmetic overflow.
16973
16974 2003-10-14  Paul Eggert  <eggert@twinsun.com>
16975
16976         Handle invalid suffixes and overflow independently, so that
16977         callers can treat them independently as needed.  Fix some bugs in
16978         suffix handling, e.g., "100k@" was not diagnosed as an invalid
16979         suffix for a human-readable blocksize.  The major caller-visible
16980         change is the addition of a new
16981         LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW enum value, indicating
16982         that both overflow and suffix chars were found.
16983
16984         * lib/human.c (humblock): Don't check separately for invalid suffix
16985         char; that is xstrtoumax's job (now that its bug is fixed).
16986         * lib/xstrtoimax.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM) [defined
16987         INTMAX_MAX]: New macros.
16988         * lib/xstrtol.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM, TYPE_MINIMUM,
16989         TYPE_MAXIMUM): New macros.
16990         (bkm_scale, bkm_scale_by_power): Return strtol_error, not int.
16991         (bkm_scale, bkm_scale_by_power, __xstrtol): Return maximal values
16992         if overflow occurs, as it's what __strtol does and it's more useful
16993         in practice.
16994         (__xstrtol): If __strtol reports some error other than ERANGE,
16995         reflect it to the caller as LONGINT_INVALID.  If it reports
16996         ERANGE, continue the rest of parsing, and report LONGINT_OVERFLOW
16997         | LONGINT_INVALID_SUFFIX_CHAR if both errors occur.
16998         * lib/xstrtol.h (LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW): New enum
16999         value.
17000         (_STRTOL_ERROR): Handle it.  Abort when given unknown error codes.
17001         * lib/xstrtoul.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM): New macros.
17002         * lib/xstrtoumax.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM)
17003         [defined UINTMAX_MAX]: New macros.
17004
17005 2003-10-14  Bruno Haible  <bruno@clisp.org>
17006
17007         * modules/fatal-signal: Add m4/sig_atomic_t.m4 to file list.
17008
17009 2003-10-14  Bruno Haible  <bruno@clisp.org>
17010
17011         * m4/sig_atomic_t: New file, from GNU gettext.
17012         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Require gt_TYPE_SIG_ATOMIC_T.
17013
17014 2003-10-14  Bruno Haible  <bruno@clisp.org>
17015
17016         * lib/fatal-signal.h: Improved comments. Suggested by Paul Eggert.
17017         * lib/fatal-signal.c: Use sig_atomic_t. Suggested by Paul Eggert.
17018         Also use volatile where needed.
17019
17020 2003-10-12  Paul Eggert  <eggert@twinsun.com>
17021
17022         * modules/xalloc: Do not depend on 'exit'.  Depend on 'stdbool'.
17023         Change maintainer from Bruno Haible to 'all'.
17024
17025 2003-10-12  Paul Eggert  <eggert@twinsun.com>
17026
17027         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Require AC_C_INLINE.
17028
17029 2003-10-12  Paul Eggert  <eggert@twinsun.com>
17030
17031         * lib/xalloc.h (xnmalloc, xzalloc, xnrealloc, xclone): New decls.
17032         (XMALLOC, XCALLOC, XREALLOC, XFREE, CCLONE, CLONE): Deprecate,
17033         and define in terms of the other primitives.
17034         * lib/xmalloc.c: Include stdbool.h; do not include exit.h.
17035         (SIZE_MAX): Define if not already defined.
17036         (array_size_overflow): New function.
17037         (xalloc_die): Abort instead of exiting if 'error' returns.
17038         (xnmalloc, xnrealloc, xzalloc, xclone): New functions.
17039         (xmalloc, xrealloc): Use them.
17040         (xcalloc): Check for address arithmetic overflow.
17041         * lib/xstrdup.c (xstrdup): Use xclone, since memcpy should be
17042         a bit faster than strcpy.
17043
17044 2003-10-10  Simon Josefsson  <jas@extundo.com>
17045
17046         * modules/argp (Depends-on): Add restrict and strcase.
17047
17048 2003-10-10  Simon Josefsson  <jas@extundo.com>
17049
17050         * m4/argp.m4: Add AC_C_INLINE.
17051
17052 2003-10-08  Paul Eggert  <eggert@twinsun.com>
17053
17054         Merge getpass from libc, plus a few fixes.
17055
17056         * lib/getpass.c (HAVE_STDIO_EXT) [_LIBC]: Define to 1.
17057         Include <stdbool.h>.
17058         Include <stdio_ext.h> if HAVE_STDIO_H, otherwise define
17059         __fsetlocking to empty.
17060         [_LIBC]: Do not include "getline.h" or "unlocked-io.h", but
17061         do include <bits/libc-lock.h>.
17062         Do not include <fcntl.h>; not needed.
17063         [_LIBC]: Include <wchar.h>.
17064         (NOTCANCEL_MODE): New macro.
17065         (flockfile, funlockfile) [_LIBC]: New macros.
17066         (__libc_cleanup_push, __libc_cleanup_pop, __getline, __tcgetattr)
17067         [!_LIBC]: New macros.
17068         (call_fclose): New function.
17069         (getpass): Use it.  Save tty stream separately; this simplifies the
17070         code and makes it more reliable if stdin happens to equal stdout.
17071         Invoke __fsetlocking on tty.
17072         Handle thread cancellation if needed.
17073         Namespace cleanup (use __tcgetattr, __getline).
17074         Use bool for Booleans.
17075         [USE_IN_LIBIO]: Handle wide streams.
17076         [!_LIBC]: Unconditionally do the fseek, since we don't know what
17077         stream might go where.
17078
17079         * lib/unlocked-io.h: Include <stdio.h>, so that the caller
17080         doesn't have to include <stdio.h> before us.
17081         (clearerr_unlocked, feof_unlocked, ferror_unlocked,
17082         fflush_unlocked, fgets_unlocked, fputc_unlocked, fputs_unlocked,
17083         fread_unlocked, fwrite_unlocked, getc_unlocked, getchar_unlocked,
17084         putc_unlocked, putchar_unlocked): Define to the unlocked counterpart
17085         if not declared, so that we can use getpass.c code from libc without
17086         rewriting it.
17087         (flockfile, ftrylockfile, funlockfile): New macros.
17088
17089 2003-10-08  Paul Eggert  <eggert@twinsun.com>
17090
17091         * modules/getpass: Depend on stdbool.
17092
17093 2003-10-08  Paul Eggert  <eggert@twinsun.com>
17094
17095         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for stdio_ext.h.
17096
17097 2003-10-07  Karl Berry  <karl@gnu.org>
17098
17099         * config/config.{guess,sub}: update from config.
17100
17101 2003-10-06  Jim Meyering  <jim@meyering.net>
17102             Bruno Haible  <bruno@clisp.org>
17103
17104         This lets translators provide better translations for the
17105         "Written by ..." part of --version output.
17106         * lib/version-etc.h: Include stdarg.h.
17107         (version_etc_copyright): Declare as readonly.
17108         (version_etc): Make this function variadic with a NULL-terminated list
17109         of author name strings.
17110         (version_etc_va): New declaration.
17111         * lib/version-etc.c: Include stdarg.h, stdlib.h.
17112         (version_etc_copyright): Declare as readonly.
17113         (version_etc_va): New function. Provide a different translatable string
17114         for each possible number of authors < 10. Abbreviate when there are 10
17115         authors or more.
17116         (version_etc): Make this function variadic. Call version_etc_va.
17117         Suggestion from Gary V. Vaughan.
17118
17119         * lib/long-options.h (parse_long_options): Change prototype: the
17120         authors string is moved to the end and becomes variadic.
17121         * lib/long-options.c: Include stdarg.h.
17122         (parse_long_options): Make this function variadic, too.
17123         Call version_etc_va, not version_etc.
17124
17125 2003-10-06  Bruno Haible  <bruno@clisp.org>
17126
17127         * modules/version-etc-2: Remove file.
17128         * MODULES.html.sh (func_all_modules): Remove version-etc-2.
17129
17130 2003-10-06  Bruno Haible  <bruno@clisp.org>
17131
17132         * modules/fatal-signal: New file.
17133         * MODULES.html.sh (func_all_modules): Add fatal-signal.
17134
17135 2003-10-06  Bruno Haible  <bruno@clisp.org>
17136
17137         * m4/fatal-signal.m4: New file.
17138         * m4/signalblocking.m4: New file, from GNU gettext.
17139
17140 2003-10-06  Bruno Haible  <bruno@clisp.org>
17141
17142         * lib/version-etc-2.h: Remove file.
17143         * lib/version-etc-2.c: Remove file.
17144
17145 2003-10-06  Bruno Haible  <bruno@clisp.org>
17146
17147         * lib/fatal-signal.h: New file, from GNU gettext.
17148         * lib/fatal-signal.c: New file, from GNU gettext.
17149
17150 2003-10-05  Paul Eggert  <eggert@twinsun.com>
17151
17152         * README: Rework advice for preventing empty .o files.
17153         Don't recommend ELIDE constructs.  Recommend <stddef.h>,
17154         not <sys/types.h>.
17155
17156 2003-10-04  Karl Berry  <karl@gnu.org>
17157
17158         * lib/argp*: update from libc.
17159
17160 2003-10-04  Karl Berry  <karl@gnu.org>
17161
17162         * config/config.{guess,sub}: update from config.
17163
17164 2003-10-02  Bruno Haible  <bruno@clisp.org>
17165
17166         * modules/lchown (Include): Add lchown.h.
17167         * modules/time_r (Include): Use "..." syntax.
17168         * modules/xgetdomainname (Include): Add xgetdomainname.h.
17169
17170 2003-10-01  Simon Josefsson  <jas@extundo.com>
17171
17172         * MODULES.html.sh (func_all_modules): Move gethostname from section
17173         'based on' to section 'lacking' POSIX:2001.
17174
17175 2003-10-01  Larry Jones  <lawrence.jones@eds.com>
17176
17177         * lib/getpass.c (getpass): Use a no-op fseek when switching from input
17178         to output mode on the same stream.
17179
17180 2003-09-29  Paul Eggert  <eggert@twinsun.com>
17181
17182         * lib/strftime.c (tm_diff) [! HAVE_TM_GMTOFF]:
17183         Fix arg typo in previous patch.
17184
17185 2003-09-28  Jim Meyering  <jim@meyering.net>
17186
17187         * lib/error.c: Correct cpp indentation.
17188
17189 2003-09-27  Paul Eggert  <eggert@twinsun.com>
17190
17191         * modules/free: New file.
17192
17193 2003-09-27  Paul Eggert  <eggert@twinsun.com>
17194
17195         * m4/free.m4: New file.
17196
17197 2003-09-27  Paul Eggert  <eggert@twinsun.com>
17198
17199         * lib/minmax.h (MIN, MAX)
17200         [__STDC__ && defined __GNUC__ && __GNUC__ >= 2]:
17201         Omit the special code that used __typeof__, since we worry that
17202         it could be more trouble than it's worth.  See:
17203         http://mail.gnu.org/archive/html/bug-gnulib/2003-01/msg00090.html
17204         http://mail.gnu.org/archive/html/bug-gnulib/2003-01/msg00095.html
17205
17206         * lib/free.c: New file.
17207
17208 2003-09-27  Oskar Liljeblad  <oskar@osk.mine.nu>
17209
17210         Trivial fixes to Makefile.am parts of module listings.
17211         * modules/strstr: Append strstr.h to lib_SOURCES.
17212         * modules/strcase: Likewise, for strcase.h.
17213
17214 2003-09-27  Karl Berry  <karl@gnu.org>
17215
17216         * config/mkinstalldirs: update from automake.
17217
17218 2003-09-26  Paul Eggert  <eggert@twinsun.com>
17219
17220         * lib/error.c (SIZE_MAX) [!defined SIZE_MAX]: Define.
17221         (error_tail): Do not loop, reallocating temporary buffer, since
17222         the output cannot contain more wide characters than the input
17223         contains bytes, the size must be big enough already.  This avoids
17224         one potential size overflow calculation.  Check for size overflow
17225         when calculating temporary buffer size.  Free temporary buffer
17226         when done, if it was allocated with malloc; this plugs a memory
17227         leak.  Remove casts from void * to pointers, that are no longer
17228         needed now that we're assuming C89 or better.
17229
17230         Merge error changes from glibc.
17231
17232         * lib/error.c, error.h: Update copyright notice header to match glibc.
17233         * lib/error.c [defined _LIBC]: Include <errno.h>, <bits/libc-lock.h>.
17234         (error, error_at_line) [defined _LIBC && defined __libc_ptf_call]:
17235         Disable cancellation while printing error.
17236         * lib/error.h: Prepend __ to parameter names.
17237
17238 2003-09-26  Jim Meyering  <jim@meyering.net>
17239
17240         * lib/error.c (error_tail): Move some declarations
17241         into inner scope where the local variables are used.
17242
17243 2003-09-26  Bruno Haible  <bruno@clisp.org>
17244
17245         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Add comments about the AIX
17246         stpncpy().
17247         Don't define stpncpy through config.h; it's now done through stpncpy.h.
17248
17249 2003-09-26  Bruno Haible  <bruno@clisp.org>
17250
17251         * lib/stpncpy.h (gnu_stpncpy): New declaration.
17252         (stpncpy): Define as alias for gnu_stpncpy.
17253         * lib/stpncpy.c [!_LIBC]: Define gnu_stpncpy, not stpncpy.
17254
17255 2003-09-25  Simon Josefsson  <jas@extundo.com>
17256
17257         * lib/xgetdomainname.h: New file.
17258         * lib/xgetdomainname.c: New file.
17259
17260 2003-09-25  Simon Josefsson  <jas@extundo.com>
17261             Bruno Haible  <bruno@clisp.org>
17262
17263         * modules/getdomainname: New file.
17264         * modules/xgetdomainname: New file.
17265         * MODULES.html.sh (func_all_modules): Add getdomainname,
17266         xgetdomainname.
17267
17268 2003-09-25  Simon Josefsson  <jas@extundo.com>
17269             Bruno Haible  <bruno@clisp.org>
17270
17271         * m4/getdomainname.m4: New file.
17272
17273 2003-09-25  Simon Josefsson  <jas@extundo.com>
17274             Bruno Haible  <bruno@clisp.org>
17275
17276         * lib/getdomainname.h: New file.
17277         * lib/getdomainname.c: New file.
17278
17279 2003-09-25  Karl Berry  <karl@gnu.org>
17280
17281         * lib/argp-fmtstream.c, argp-help.c: update from libc.
17282
17283 2003-09-25  Karl Berry  <karl@gnu.org>
17284
17285         * config/install-sh: update from automake.
17286
17287 2003-09-25  Bruno Haible  <bruno@clisp.org>
17288
17289         * modules/version-etc-2: New file, from modules/version-etc with
17290         modifications.
17291         * MODULES.html.sh (func_all_modules): Add version-etc-2.
17292
17293 2003-09-25  Bruno Haible  <bruno@clisp.org>
17294
17295         * lib/version-etc-2.h: New file, from version-etc.h with modifications.
17296         * lib/version-etc-2.c: New file, from version-etc.c with modifications.
17297
17298 2003-09-24  Simon Josefsson  <jas@extundo.com>
17299
17300         * modules/xgethostname: Add xgethostname.h.
17301
17302 2003-09-24  Paul Eggert  <eggert@twinsun.com>
17303
17304         * lib/linebuffer.c (freebuffer): Don't free the argument, just
17305         the buffer associated with the argument.  Bug reported by
17306         Simon Josefsson.
17307
17308 2003-09-24  Paul Eggert  <eggert@twinsun.com>
17309
17310         * README: Document assumptions that 'int' is at least 32 bits
17311         wide, that integer arithmetic is 2's complement without overflow,
17312         that there are no holes in integer values, that adding sizes of
17313         two nonoverlapping objects can't overflow, and that all-bits-zero
17314         yields scalar zero.  Fix spelling and capitalization typos.
17315
17316 2003-09-19  Karl Berry  <karl@gnu.org>
17317
17318         * lib/argp.h: update from libc.
17319
17320 2003-09-17  Paul Eggert  <eggert@twinsun.com>
17321
17322         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Call AC_BEFORE first,
17323         to avoid spurious warnings like "AC_RUN_IFELSE was called before
17324         gl_USE_SYSTEM_EXTENSIONS" from autoreconf.
17325
17326 2003-09-17  Paul Eggert  <eggert@twinsun.com>
17327
17328         * gnulib-tool: Use "test -h", not "test -L", for portability
17329         to Solaris 8 /bin/sh.  (This bug is fixed in Solaris 9.)
17330         (tags_regexp): Remove, since \| doesn't conform to POSIX.
17331         (sed_extract_prog): Issue s commands one-by-one, rather than
17332         using \| in one s command.
17333
17334 2003-09-16  Paul Eggert  <eggert@twinsun.com>
17335
17336         * lib/linebuffer.c (readlinebuffer): Return NULL immediately upon
17337         input error, instead of returning NULL the next time we are called
17338         (and therefore losing track of errno).
17339
17340 2003-09-16  Bruno Haible  <bruno@clisp.org>
17341
17342         * gnulib-tool (func_create_testdir): Warn about duplicated
17343         dependencies.
17344
17345 2003-09-15  Paul Eggert  <eggert@twinsun.com>
17346
17347         * modules/argmatch, modules/fatal, modules/obstack,
17348         modules/xalloc, modules/xgethostname: Sort dependencies by
17349         importance, not alphabetically.
17350
17351 2003-09-15  Paul Eggert  <eggert@twinsun.com>
17352
17353         * lib/getndelim2.c (getndelim2): Don't trash errno when a read
17354         fails, so that the caller gets the proper errno.
17355
17356         * lib/readutmp.c (read_utmp): Likewise.
17357         Check for fstat error.  Close stream and free storage
17358         when failing.
17359
17360 2003-09-14  Karl Berry  <karl@gnu.org>
17361
17362         * config/srclist.txt (strdup.c): disable for c89 changes.
17363
17364 2003-09-14  Jim Meyering  <jim@meyering.net>
17365
17366         * lib/getloadavg.c: Correct cpp indentation.
17367         * lib/strdup.c: Likewise.
17368         * lib/vasnprintf.c: Likewise.
17369
17370 2003-09-14  Bruno Haible  <bruno@clisp.org>
17371
17372         * modules/fwriteerror: New file.
17373         * MODULES.html.sh (func_all_modules): Add fwriteerror.
17374
17375 2003-09-14  Bruno Haible  <bruno@clisp.org>
17376
17377         * lib/fwriteerror.h: New file.
17378         * lib/fwriteerror.c: New file.
17379
17380 2003-09-12  Paul Eggert  <eggert@twinsun.com>
17381
17382         * modules/argmatch, modules/exitfail, modules/fatal, modules/obstack,
17383         modules/xgethostname, modules/xalloc: Depend on exit.
17384
17385 2003-09-12  Paul Eggert  <eggert@twinsun.com>
17386
17387         * m4/error.m4: Require AC_FUNC_STRERROR_R rather than invoking it.
17388
17389         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Require AC_AIX
17390         and AC_MINIX, too, so that their extensions are available.
17391
17392         * m4/prereq.m4 (jm_PREREQ_ADDEXT): Remove.  All uses removed.
17393         This macro has been superseded by gl_BACKUPFILE.
17394
17395         More patches to assume C89 or better.
17396
17397         * m4/error.m4 (gl_ERROR): Don't check for vprintf.
17398
17399         * m4/check-decl.m4 (jm_CHECK_DECLS): Include <string.h>, <stdlib.h>
17400         unconditionally.
17401         * m4/closeout.m4 (gl_CLOSEOUT): Don't check for stdlib.h.
17402         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER):
17403         Include <string.h>, <stdlib.h> unconditionally.
17404         * m4/lstat.m4 (gl_PREREQ_LSTAT): Don't check for stdlib.h, free.
17405         * m4/readdir.m4 (GL_FUNC_READDIR): Don't check for string.h.
17406         * m4/readutmp.m4 (gl_PREREQ_READUTMP): Don't check for standard C
17407         headers or for string.h.
17408         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Don't check for stdlib.h
17409         or strtoul.
17410
17411         * m4/mkstemp.m4 (jm_PREREQ_TEMPNAME): Do not require standard C
17412         headers.
17413         * m4/strdup.m4 (gl_PREREQ_STRDUP): Likewise.
17414         * m4/userspec.m4 (gl_USERSPEC): Likewise.
17415         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Likewise.
17416         * m4/xstrtod.m4 (gl_XSTRTOD): Likewise.
17417         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
17418         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't check for limits.h,
17419         memcpy, memset.
17420         (jm_FUNC_GNU_STRFTIME): Don't require standard C headers.
17421         * m4/strtod.m4 (gl_FUNC_STRTOD): Do not check for float.h.
17422         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Do not check for stdlib.h,
17423         strtol.
17424         * m4/strtol.m4 (gl_FUNC_STRTOL): Do not check for limits.h.
17425         * m4/userspec.m4 (gl_USERSPEC): Do not check for string.h.
17426         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Do not check for string.h, strtol,
17427         strtoul.
17428
17429 2003-09-12  Paul Eggert  <eggert@twinsun.com>
17430
17431         * lib/argmatch.c, fatal.c, xgethostname.c, xmalloc.c: Include exit.h.
17432         * lib/obstack.c [!defined _LIBC]: Likewise.
17433         * lib/argmatch.c (EXIT_FAILURE): Remove; now done by exit.h
17434         * lib/exitfail.c, fatal.c, xgethostname.c, xmalloc.c: Likewise.
17435         * lib/exitfail.c: Don't include stdlib.h; no longer needed.
17436
17437         More changes to assume C89 or better.
17438
17439         * lib/error.c (error_tail): Assume vprintf.
17440
17441         * lib/argmatch.c (getenv): Remove decl.
17442         * lib/progreloc.c (get_full_program_name): Define via prototype.
17443         * lib/setenv.c (clearenv): Likewise.
17444         * lib/stpncpy.c: Do not include <string.h> or <sys/types.h>; not
17445         needed.
17446         * lib/strdup.c: Include <stdlib.h>, <string.h> unconditionally.
17447         (malloc, memcpy): Remove decls.
17448         * lib/strftime.c (HAVE_LIMITS_H, STDC_HEADERS) [defined _LIBC]: Remove.
17449         (HAVE_MEMCPY) [defined emacs && !defined HAVE_BCOPY]: Remove.
17450         Include <limits.h>, <stddef.h>, <stdlib.h>, <string.h> unconditionally.
17451         (memcpy): Remove macro.
17452         (MEMCPY) [!defined COMPILE_WIDE]: Define to memcpy unconditionally.
17453         (__P): Remove.  All uses removed.
17454         (PTR): Remove.  All uses changed to void *.
17455         (CHAR_BIT, NULL): Remove.
17456         (spaces, zeros, memset_space, memset_zero)
17457         [!defined memset && !defined HAVE_MEMSET && !defined _LIBC]:
17458         Remove.
17459         (LOCALE_PARAM, LOCALE_PARAM_DECL): Remove.
17460         (memcpy_lowcase, memcpy_uppcase, tm_diff, iso_week_days):
17461         Define with prototype.
17462         Remove now-unnecessary prototype decl.
17463         (extra_args_spec): Assume ANSI C.  All uses changed.
17464         (extra_args_spec_iso): Remove.
17465         (my_strftime, emacs_strftimeu): Define via prototype.
17466         * lib/strtod.c: Include <float.h>, <stdlib.h>, <string.h>
17467         unconditionally.
17468         (DBL_MAX, DBL_MIN, HUGE_VAL, NULL): Remove decls.
17469         * lib/strtoimax.c: Include <stdlib.h> unconditionally.
17470         (strtoul, strtol): Remove decls.
17471         * lib/strtol.c (STDC_HEADERS, HAVE_LIMITS_H, NULL, ULONG_MAX,
17472         LONG_MAX): Remove.
17473         Include <limits.h>, <stddef.h>, <stdlib.h>, <string.h> unconditionally.
17474         (LOCALE_PARAM_DECL): Remove.  All uses changed to LOCALE_PARAM_PROTO.
17475         (LOCALE_PARAM_PROTO): New macro.
17476         (INTERNAL, INTERNAL1, WEAKNAME): Assume ANSI C, not K&R.
17477         (INTERNAL (strtol), strtol): Define with a prototype.
17478         (PARAMS): Remove.  All uses removed.
17479         * lib/tempname.c: Include <string.h> unconditionally.
17480         * lib/userspec.c: Include <stdlib.h>, <string.h> unconditionally.
17481         * lib/xgethostname.c (main): Define with a prototype.
17482         * lib/xmalloc.c: Include "xalloc.h" first, to check interface.
17483         Include <stdlib.h> unconditionally.
17484         (calloc, malloc, realloc, free): Remove decls.
17485         * lib/xstrtod.c: Include "xstrtod.h" first, to check interface.
17486         Include <stdlib.h> unconditionally.  Sort include file names.
17487         (strtod): Remove.
17488         (xstrtod): Define with a prototype.
17489         * lib/xstrtol.c: Include <stdlib.h>, <string.h> unconditionally.
17490         (strtol, strtoul): Remove decls.
17491
17492 2003-09-11  Paul Eggert  <eggert@twinsun.com>
17493
17494         More patches to assume C89 or better.
17495         * m4/strndup.m4 (gl_PREREQ_STRNDUP): Remove STDC_HEADERS check.
17496         * m4/strnlen.m4 (gl_PREREQ_STRNLEN): Don't check for memory.h,
17497         string.h, memchr, STDC_HEADERS.
17498
17499 2003-09-11  Paul Eggert  <eggert@twinsun.com>
17500
17501         * lib/strndup.c: Don't include <stdio.h>, <sys/types.h>.
17502         Include <stdlib.h>, <string.h> unconditionally.
17503         Remove now-unnecessary cast to char *.
17504         * lib/strnlen.c: Include <string.h> unconditionally.
17505         * lib/yesno.c (yesno): Define with a prototype.
17506
17507 2003-09-11  Bruno Haible  <bruno@clisp.org>
17508
17509         * config/srclist.txt (setenv.c, unsetenv.c): Disable for the moment.
17510
17511 2003-09-10  Jim Meyering  <jim@meyering.net>
17512
17513         * lib/error.c: Correct indentation of cpp directives.
17514
17515 2003-09-10  Bruno Haible  <bruno@clisp.org>
17516
17517         * m4/strcspn.m4 (gl_PREREQ_STRCSPN): Remove <string.h> check.
17518         * m4/strpbrk.m4 (gl_PREREQ_STRPBRK): Remove <string.h> check.
17519         * m4/strstr.m4 (gl_PREREQ_STRSTR): Remove <string.h> check.
17520         * m4/unicodeio.m4 (gl_UNICODEIO): Remove <string.h> check.
17521         * m4/setenv.m4 (gl_PREREQ_SETENV, gl_PREREQ_UNSETENV): Remove
17522         <stdlib.h> and <string.h> checks.
17523         * m4/xreadlink.m4 (gl_XREADLINK): Remove <stdlib.h> check.
17524         * m4/yesno.m4 (gl_YESNO): Remove <stdlib.h> check.
17525
17526 2003-09-10  Bruno Haible  <bruno@clisp.org>
17527
17528         * lib/strcspn.c: Include <string.h> unconditionally.
17529         * lib/strpbrk.c: Include <string.h> unconditionally.
17530         * lib/strstr.c: Include <string.h> unconditionally.
17531         * lib/unicodeio.c: Include <string.h> unconditionally.
17532         * lib/setenv.c: Include <stdlib.h> and <string.h> unconditionally.
17533         * lib/unsetenv.c: Likewise.
17534         * lib/xreadlink.c: Include <stdlib.h> unconditionally.
17535         * lib/yesno.c: Include <stdlib.h> unconditionally.
17536         (rpmatch): Add prototype.
17537
17538 2003-09-09  Paul Eggert  <eggert@twinsun.com>
17539
17540         More patches to assume C89 or better.
17541         * m4/getcwd.m4 (AC_FUNC_GETCWD_NULL): Don't check for stdlib.h.
17542         * m4/getopt.m4 (gl_GETOPT): Don't check for string.h.
17543         * m4/getugroups.m4 (gl_GETUGROUPS): Do not check for standard C headers
17544         or for string.h.
17545         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Do not check for
17546         stdlib.h.
17547         * m4/group-member.m4 (gl_PREREQ_GROUP_MEMBER): Do not require standard
17548         C headers.
17549         * m4/hard-locale.m4 (gl_HARD_LOCALE): Do not check for stdlib.h,
17550         string.h.
17551         * m4/hash.m4 (gl_HASH): Do not check for stdlib.h, malloc, free.
17552         * m4/human.m4 (gl_HUMAN): Do not check for stdlib.h, string.h, getenv.
17553         * m4/idcache.m4 (gl_IDCACHE): Do not check for standard C headers,
17554         or for string.h.
17555         * m4/long-options.m4 (gl_LONG_OPTIONS): Do not check for stdlib.h.
17556         * m4/makepath.m4 (gl_MAKEPATH): Do not check for string.h or standard
17557         C headers.
17558         * m4/md5.m4 (gl_MD5): Don't check for limits.h, standard C headers,
17559         memcpy.
17560         * m4/sha.m4 (gl_SHA): Don't check for standard Cheaders, memcpy.
17561         * m4/memchr.m4 (jm_PREREQ_MEMCHR): Don't check for limits.h, stdlib.h.
17562         * m4/memcmp.m4 (gl_PREREQ_MEMCMP): Don't check for string.h.
17563         * m4/memcoll.m4 (gl_MEMCOLL): Likewise.
17564         * m4/memrchr.c (gl_PREREQ_MEMRCHR): Don't check for limits.h.
17565         * m4/mkdir-slash.m4 (gl_PREREQ_MKDIR): Don't check for stdlib.h,
17566         string.h, free.
17567         * m4/mktime.m4 (gl_PREREQ_MKTIME): Don't check for standard C headers.
17568         * m4/modechange.m4 (gl_MODECHANGE): Don't check for standard C headers.
17569         * m4/mountlist.m4 (gl_PREREQ_MOUNTLIST_EXTRA): Don't check for standard
17570         C headers, or for string.h.
17571         * m4/obstack.m4 (gl_OBSTACK): Don't check for stddefe.h, string.h.
17572         (gl_PREREQ_OBSTACK): Don't check for stdlib.h.
17573         * m4/path-concat.m4 (gl_PATH_CONCAT): Don't check for standard C
17574         headers, memory.h, stdlib.h, string.h, strings.h.
17575         * m4/posixtm.m4 (gl_POSIXTM): Don't check for stdlib.h, string.h.
17576         * m4/posixver.m4 (gl_POSIXVER): Don't check for getenv.
17577         * m4/putenv.m4 (gl_PREREQ_PUTENV): Don't check for string.h, memcpy,
17578         strchr.
17579         * m4/readtokens.m4 (gl_READTOKENS): Don't check for standard C
17580         headers, memory.h, string.h.
17581         * m4/regex.m4 (jm_PREREQ_REGEX): Do not check for limits.h, string.h.
17582         * m4/rename.m4 (gl_PREREQ_RENAME): Do not check for stdlib.h, string.h,
17583         free.
17584         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Don't check for standard C
17585         headers.
17586         * m4/same.m4 (gl_SAME): Don't check for stdlib.h, string.h, free.
17587         * m4/save-cwd.m4 (gl_SAVE_CWD): Don't check for standard C headers.
17588         * m4/savedir.m4 (gl_SAVEDIR): Don't check for standard C headers.
17589         * m4/strchrnul.m4 (gl_PREREQ_STRCHRNUL): Don't check for string.h.
17590         * m4/xgetcwd.m4 (gl_XGETCWD): Don't check for stdlib.h.
17591
17592 2003-09-09  Paul Eggert  <eggert@twinsun.com>
17593
17594         More K&R removal.
17595
17596         * lib/acosl.c (main): Use a prototype.
17597         * lib/asinl.c, cosl.c, expl.c, frexpl.c, ldexpl.c, sinl.c,
17598         tanl.c: Likewise.
17599
17600         * lib/getloadavg.c (getloadavg, main): Define via prototypes.
17601
17602         * lib/getopt.h (struct option.name): Assume C89, and use 'const'.
17603         (getopt, etopt_long, getopt_long_only, _getopt_internal)
17604         [defined __GNU_LIBRARY__]: Assume C89, so we can always declare
17605         with a prototype.
17606         * lib/getopt.c (const): Remove macro.
17607         Include <string.h> unconditionally.
17608         (my_index): Remove; all uses changed to strchr.
17609         (strlen): Remove decl.
17610         (exchange): Remove forward decl; no longer needed.
17611         (exchange, _getopt_initialize, _getopt_internal, getopt, main):
17612         Define with prototype.
17613         * lib/getopt1.c (const): Remove macro.
17614         (getopt_long, getopt_long_only, main): Define with prototype.
17615
17616         * lib/getugroups.c: Include <string.h> unconditionally.
17617
17618         * lib/getusershell.c: Include <stdlib.h> unconditionally.
17619         (getusershell, setusershell, endusershell, readname, main):
17620         Define with prototypes.
17621
17622         * lib/group-member.c: Include group-member.h first.
17623         Include <stdlib.h> unconditionally.
17624
17625         * lib/hard-locale.c: Include hard-locale.h first.
17626         Include <stdlib.h>, <string.h> unconditionally.
17627
17628         * lib/hash.c (free, malloc): Remove decls.
17629         Include <stdlib.h> unconditionally.
17630
17631         * lib/human.c: Include <stdlib.h>, <string.h> unconditionally.
17632         (getenv): Do not declare.
17633
17634         * lib/idcache.c: Include <string.h> unconditionally.
17635
17636         * lib/long-options.c: Include long-options.h first, to test interface.
17637         Include <stdlib.h> unconditionally.
17638
17639         * lib/makepath.c: Include makepath.h first, to test interface.
17640         Include <stdlib.h> and <string.h> unconditionally.
17641
17642         * lib/linebuffer.c: Include <stdlib.h>.
17643         (free): Remove decl.
17644
17645         * lib/malloc.c: Include <stdlib.h>, for malloc; don't bother with
17646         stddef.h. rpl_malloc returns void *, not char *.
17647         * lib/realloc.c (rpl_realloc): Likewise.  Also, define with a
17648         prototype.
17649
17650         * lib/md5.h: Include <limits.h> unconditionally.
17651         (UINT_MAX_32_BITS): Don't worry about non-__STDC__ case.
17652         (__P): Remove; all uses removed.
17653         * lib/md5.c: Include "md5.h" first.
17654         (md5_init_ctx, md5_read_ctx, md5_finish_ctx, md5_stream,
17655         md5_buffer, md5_process_bytes, md5_process_block):
17656         Define with prototypes.
17657         * lib/sha.h (__P): Remove all uses.  (It wasn't defined??)
17658         * lib/sha.c: Include "sha.h" first.
17659         Include <stdlib.h>, <string.h> unconditionally.
17660
17661         * lib/memchr.c (__ptr_t): Remove; all uses changed to void *.
17662         * lib/memcmp.c (__ptr_t): Likewise.
17663         * lib/memrchr.c (__ptr_t): Likewise.
17664         * lib/memchr.c, memcmp.c, memcoll.c, memrchr.c:
17665         Include <string.h> unconditionally.
17666         * lib/memchr.c, memrchr.c: Include <limits.h> unconditionally.
17667         * lib/memchr.c: Include <stdlib.h> unconditionally.
17668         * lib/memchr.c (LONG_MAX): Remove.
17669         * lib/memrchr.c (LONG_MAX): Likewise.
17670         * lib/memchr.c (__memchr): Define via a prototype.
17671         * lib/memrchr.c (__memrchr): Likewise.
17672         * lib/memcmp.c (__P): Remove, and remove all uses.
17673         (memcmp_bytes, memcmp_common_alignment, memcmp_not_common_alignment):
17674         Remove forward decls; no longer needed.
17675         * lib/memcpy.c, memmove.c, memset.c: Include <stddef.h>.
17676         Use types required by C89 in prototype.
17677
17678         * lib/mkdir.c: Include <stdlib.h>, <string.h> unconditionally.
17679         * lib/savedir.c: Likewise.
17680         * lib/mkdir.c (free): Remove decl.
17681         * lib/rmdir.c (rmdir): Define with a prototype.
17682         * lib/savedir.c: Include savedir.h first, to test interface.
17683
17684         * lib/mktime.c (STDC_HEADERS): Remove.
17685         Include <stdlib.h>, <string.h> unconditionally.
17686
17687         * lib/modechange.c: Include <stdlib.h> unconditionally.
17688         (malloc): Remove decl.
17689
17690         * lib/mountlist.c: Include <stdlib.h>, <string.h> unconditionally.
17691         (free): Remove decl.
17692
17693         * lib/obstack.h (PTR_INT_TYPE) [!defined __PTRDIFF_TYPE__]:
17694         Define to ptrdiff_t, without bothering to check HAVE_STDDEF_H.
17695         (This type really should be intptr_t, but that's a C99ism.)
17696         (_obstack_memcpy): Remove: all uses changed to memcpy.
17697         Include <string.h> unconditionally.
17698         (struct obstack): Assume __STDC__ for types of members
17699         chunkfun, freefun, extra_arg.
17700         (_obstack_newchunk, _obstack_free, _obstack_begin, _obstack_begin_1,
17701         _obstack_memory_used, obstack_alloc_failed_handler, obstack_init,
17702         obstack_begin, obstack_specify_allocation,
17703         obstack_specify_allocation_with_arg, obstack_chunkfun,
17704         obstack_freefun, obstack_free) [! (defined __STDC__ && __STDC__)]:
17705         Remove unprototyped decls and the macros that use them.
17706         * lib/obstack.c (POINTER): Remove.  All uses changed to void *.
17707         (obstack_alloc_failed_handler, CALL_CHUNKFUN, CALL_FREEFUN,
17708         _obstack_begin, _obstack_begin_1, _obstack_allocated_p)
17709         (defined __STDC__ && __STDC__)]:
17710         Remove nonprototyped code.
17711         Include <stdlib.h> unconditionally.
17712         (_obstack_begin, _obstack_begin_1, _obstack_newchunk,
17713         _obstack_allocated_p, _obstack_free, obstack_free,
17714         _obstack_memory_used, print_and_abort):
17715         Define using prototypes.
17716         (obstack_1grow, obstack_1grow_fast, obstack_alloc, obstack_base,
17717         obstack_blank, obstack_blank_fast, obstack_copy, obstack_copy0,
17718         obstack_finish, obstack_grow, obstack_grow0, obstack_make_room,
17719         obstack_next_free, obstack_object_size, obstack_room) [0]:
17720         Remove unused, unprototyped code.
17721
17722         * lib/path-concat.c: Include <stdlib.h>, <string.h> unconditionally.
17723
17724         * lib/physmem.c (physmem_total, physmem_available, main): Define
17725         with prototypes.
17726
17727         * lib/posixtm.c: Include <stdlib.h>, <string.h> unconditionally.
17728         (main): Define with a prototype.
17729
17730         * lib/posixver.c (getenv): Remove decl.
17731
17732         * lib/putenv.c (malloc): Returns void *, not char *.
17733         Include <string.h> unconditionally.
17734         (strchr, memcpy, NULL): Do not define.
17735
17736         * lib/readtokens.c: Include readtokens.h first, to test interface.
17737         Include <stdlib.h>, <string.h> unconditionally.
17738         (init_tokenbuffer): Define with a prototype.
17739
17740         * lib/regex.c (PARAMS): Remove.  All uses removed.
17741         All uses of _RE_ARGS removed, too.
17742         Include <stddef.h>, <stdlib.h>, <string.h>, <limits.h>
17743         unconditionally.
17744         (bzero): Assume memset exists.
17745         (memcmp, memcpy, NULL): Remove.
17746         (SIGN_EXTEND_CHAR): Remove; all uses replaced by casts to signed
17747         char, or assignments to local vars of type signed char.
17748         (init_syntax_once, PREFIX(extract_number_and_incr),
17749         PREFIX(print_partial_compiled_pattern),
17750         PREFIX(print_compiled_pattern), PREFIX(print_double_string),
17751         convert_mbs_to_wcs, print_fastmap, re_set_syntax,
17752         PREFIX(regex_grow_registers), PREFIX(regex_compile),
17753         PREFIX(store_op1), PREFIX(store_op2), PREFIX(insert_op1),
17754         PREFIX(insert_op2), PREFIX(at_begline_loc_p),
17755         PREFIX(at_endline_loc_p), group_in_compile_stack, insert_space,
17756         wcs_compile_range, byte_compile_range, truncate_wchar,
17757         PREFIX(re_compile_fastmap), re_compile_fastmap, re_set_registers,
17758         re_search, re_search_2, PREFIX(re_search_2), re_match, re_match_2,
17759         count_mbs_length, wcs_re_match_2_internal,
17760         byte_re_match_2_internal, PREFIX(group_match_null_string_p),
17761         PREFIX(alt_match_null_string_p),
17762         PREFIX(common_op_match_null_string_p), PREFIX(bcmp_translate),
17763         re_compile_pattern, re_comp, re_exec, regcomp, regexec, regerror,
17764         regfree, PREFIX(extract_number)): Define with prototype.  Remove
17765         now-unnecessary declaration, if any.
17766         (byte_compile_range, PREFIX(regex_compile), re_comp, re_exec,
17767         regcomp, regexec):
17768         Remove now-unnecessary casts among pointer types.
17769         * lib/regex.h (_RE_ARGS): Remove.  All uses removed.
17770
17771         * lib/rename.c: Include <stdlib.h>, <string.h> unconditionally.
17772         (free): Remove decl.
17773
17774         * lib/rpmatch.c: Include <stdlib.h> unconditionally.
17775
17776         * lib/same.c: Include <stdlib.h>, <string.h> unconditionally.
17777         (free): Remove decl.
17778
17779         * lib/save-cwd.c: Include <stdlib.h> unconditionally.
17780         * lib/xgetcwd.c: Likewise.
17781
17782         * lib/stat.c: Include <stdlib.h>, <string.h> unconditionally.
17783         (free): Remove decl.
17784
17785         * lib/strchrnul.c (strchrnul): Define with a prototype.
17786         Fix bug: c_in was not converted to char before searching.
17787
17788         The following changes are not K&R related:
17789
17790         * lib/group-member.h: Include <sys/types.h>, so that this file is
17791         self-contained.
17792         * lib/makepath.h: Likewise.
17793
17794         * lib/getusershell.c (readname, default_index, line_size, readname):
17795         Use size_t, not int, for sizes.
17796         (readname): If the size overflows, report an error instead of
17797         looping forever.
17798
17799 2003-09-09  Paul Eggert  <eggert@twinsun.com>
17800
17801         * config/srclist.txt: Do not get getopt.h, getopt1.c, or regex.h from
17802         libc.
17803
17804 2003-09-09  Paul Eggert  <eggert@twinsun.com>
17805
17806         * README: New section: portability guidelines.
17807
17808 2003-09-09  Derek Robert Price  <derek@ximbiot.com>
17809
17810         * m4/getndelim2.m4 (gl_PREREQ_GETNDELIM2): Assume stdlib.h per the
17811         C89 spec.
17812
17813 2003-09-09  Derek Robert Price  <derek@ximbiot.com>
17814
17815         * lib/getndelim2.c: Assume stdlib.h per the C89 spec.
17816
17817 2003-09-08  Paul Eggert  <eggert@twinsun.com>
17818
17819         Assume C89 or better; remove K&R cruft.
17820         A few of these changes were first proposed by Derek Robert Price
17821         in <http://mail.gnu.org/archive/html/bug-gnulib/2003-07/msg00105.html>.
17822
17823         * lib/addext.c: Include <string.h> unconditionally.
17824         * lib/backupfile.c: Include <string.h>, <stdlib.h> unconditionally.
17825         Don't declare getenv or malloc.
17826
17827         * lib/alloca.c: Include <string.h>, <stdlib.h> unconditionally.
17828         (POINTER_TYPE, pointer): Remove; all uses changed to void *.
17829         (NULL): Remove.
17830         (find_stack_direction, alloca): Use prototypes.
17831
17832         * lib/atexit.c (atexit): Define using a prototype.
17833
17834         * lib/basename.c, dirname.c, stripslash.c:
17835         Include <string.h> unconditionally.
17836
17837         * lib/bcopy.c: Include <stddef.h>.
17838         (bcopy): Define with prototype, using 'const' and 'void' and 'size_t'.
17839
17840         * lib/canon-host.c: Include <stdlib.h>, <string.h> unconditionally.
17841
17842         * lib/error.h (error, error_at_line, error_print_progname)
17843         [! (defined (__STDC__) && __STDC__)]: Remove decls.
17844         * lib/error.c: Include error.h first, to check interface.
17845         Include <stdarg.h>, <stdlib.h>, <string.h> unconditionally.
17846         (VA_START): Remove; all uses changeed to va_start.
17847         (exit, strerror): Remove decls.
17848         (error_print_progname): Prototype uncondionally.
17849         Don't include <errno.h>; no longer needed.
17850         (private_strerror): Remove.
17851         (error_tail): Always define.
17852         (error, error_at_line): Assume C89 or better; always use prototypes.
17853         * lib/fatal.c: Include "fatal.h" first, to test interface.
17854         Include <stdarg.h>, <stdlib.h>, <string.h> unconditionally.
17855         (VA_START): Remove; all uses changed to va_start.
17856         [! (HAVE_VPRINTF || HAVE_DOPRNT || _LIBC)]: Remove support for
17857         this case.
17858         (exit): Remove decl.
17859         (fatal): Prototype unconditionally.  Assume va_start works.
17860         Abort at end, to pacify gcc.
17861
17862         * lib/euidaccess.c (main): Define with a prototype.
17863
17864         * lib/exclude.c: Include <stdlib.h>, <string.h> unconditionally.
17865
17866         * lib/exitfail.c: Include <stdlib.h> unconditionally.
17867
17868         * lib/fnmatch_.h (__P): Remove.  All uses changed to assume
17869         prototypes.
17870         * lib/fnmatch.c: Include fnmatch.h first, to test interface.
17871         Include <string.h>, <stddef.h>, <stdlib.h> unconditionally.
17872         (getenv): Remove decl.
17873         (fnmatch): Define using a prototype.
17874         * lib/fnmatch_loop.c (FCT): Remove forward decl; no longer needed.
17875         (FCT): Define using a prototype.
17876
17877         * lib/getdate.y: Include <stdlib.h>, <string.h> unconditionally.
17878
17879         * lib/gethostname.c: Include <stddef.h>.
17880         (gethostname): Define with prototype.  Length is size_t, not int.
17881
17882 2003-09-08  Paul Eggert  <eggert@twinsun.com>
17883
17884         Assume C89 or better; remove K&R cruft.
17885         * m4/alloca.m4 (gl_PREREQ_ALLOCA): Don't check for stdlib.h, string.h.
17886         * m4/backupfile.m4 (gl_BACKUPFILE): Don't check for stdlib.h,
17887         string.h, getenv, malloc.
17888         * m4/dirname.m4 (gl_DIRNAME): Don't check for string.h or C standard
17889         headers.
17890         * m4/canon-host.m4 (gl_CANON_HOST): Don't check for string.h, stdlib.h.
17891         * m4/error.m4 (jm_PREREQ_ERROR): Do not require STDC headers, and
17892         do not check for strerror.
17893         * m4/exclude.m4: Do not check for stdlib.h, string.h, strings.h.
17894         * m4/exitfail.m4 (gl_EXITFAIL): Do not check for stdlib.h.
17895         * m4/fatal.m4 (gl_FATAL): Do not require STDC headers, and
17896         do not check for doprnt or vprintf.
17897         * m4/fnmatch.m4 (gl_PREREQ_FNMATCH_EXTRA): Remove.  All uses removed.
17898         * m4/getdate.m4 (gl_GETDATE): Don't check for stdlib.h or string.h.
17899
17900 2003-09-08  Paul Eggert  <eggert@twinsun.com>
17901
17902         * lib/getversion.c: Remove; was migrated to backupfile.c in 1997.
17903         getversion.c should have been removed then, but was accidentally
17904         preserved.
17905
17906         * lib/utime.c [!HAVE_UTIMES_NULL]: Include <sys/stat.h>, <fcntl.h>.
17907         (utime_null): Fix typo: 'st' was sometimes called 'sb'.
17908
17909 2003-09-08  Karl Berry  <karl@gnu.org>
17910
17911         * config/config.sub, config.guess, srclistvars.sh: update from savannah
17912                 config, forget about prep.
17913
17914         * config/depcomp, missing: update from automake.
17915
17916 2003-09-07  Paul Eggert  <eggert@twinsun.com>
17917
17918         * modules/time_r: Depend on 'restrict'.  Fix from Simon Josefsson in
17919         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00028.html>.
17920
17921 2003-09-07  Paul Eggert  <eggert@twinsun.com>
17922
17923         * lib/time_r.c (gmtime_r, localtime_r): Fix silly typo: missing arg to
17924         copy_tm_result.  Bug reported by Simon Josefsson in
17925         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00028.html>.
17926
17927 2003-09-06  Paul Eggert  <eggert@twinsun.com>
17928
17929         * m4/time_r.m4: New file.
17930         * m4/mktime.m4 (gl_PREREQ_MKTIME): Remove check for limits.h.
17931         * m4/timegm.m4 (gl_FUNC_TIMEGM): Assume that timegm is buggy if mktime
17932         is. Check for timegm declaration.
17933         (gl_PREREQ_TIMEGM): Require gl_FUNC_MKTIME.
17934         Do not check for gmtime_r.
17935         Replace mktime if __mktime_internal does not exist and if mktime
17936         hasn't been replaced already.
17937
17938 2003-09-06  Paul Eggert  <eggert@twinsun.com>
17939
17940         * lib/time_r.c, lib/time_r.h: New files.
17941
17942         * lib/mktime.c (my_mktime_localtime_r): Remove; all uses changed to
17943         __localtime_r.
17944         (__localtime_r) [!defined _LIBC]: New macro.  Include <time_r.h>.
17945         (__mktime_internal) [!defined _LIBC]: Now extern, not static.
17946
17947         * lib/strftime.c (my_strftime_gmtime_r): Remove; all uses changed to
17948         __gmtime_r.
17949         (my_strftime_localtime_r): Remove; all uses changed to __localtime_r.
17950         (__gtime_r, __localtime_r) [!HAVE_TM_GMTOFF]: New macros.
17951         Include <time_r.h>.
17952
17953         * lib/timegm.c: Switch to glibc implementation, with the following
17954         changes:
17955         [defined HAVE_CONFIG_H]: Include <config.h>.
17956         [!defined _LIBC]: Include "timegm.h" rather than <time.h>.
17957         (__mktime_internal) [!defined _LIBC]: New decl.
17958         (__gmtime_r) [!defined _LIBC]: New macro and function.
17959         (timegm): Use a prototype, since gnulib assumes C89.
17960         Do not bother declaring tmp to be const, as it's not really usefu.
17961         * lib/timegm.h: Hoist "#include <time.h>" out of #ifdef.
17962         (timegm): Declare only if HAVE_DECL_TIMEGM.
17963
17964 2003-09-06  Paul Eggert  <eggert@twinsun.com>
17965
17966         * MODULES.html.sh (func_all_modules): Add time_r.
17967         * modules/time_r: New file.
17968         * modules/mktime, modules/strftime, modules/timegm: Depend on time_r.
17969         * modules/timegm: Depend on mktime.  Change maintainer to "all, glibc".
17970
17971 2003-09-03  Paul Eggert  <eggert@twinsun.com>
17972
17973         * lib/human.c (human_readable): Fix bug that rounded 10501 to 10k.
17974         Bug reported by Lute Kamstra in
17975         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00003.html>.
17976
17977         * lib/getdate.y (relative_time_table): Use tDAY_UNIT for "tomorrow",
17978         "yesterday", "today", and "now" rather than tMINUTE_UNIT.  Of
17979         course with correspondingly smaller numbers for tomorrow and
17980         yesterday.  From Tadayoshi Funaba.  Originally installed into
17981         sh-utils on 1999-08-07, but the patch got lost (I guess during the
17982         coreutils merge?).
17983
17984 2003-08-31  Simon Josefsson  <jas@extundo.com>
17985
17986         * modules/timegm: New file.
17987         * MODULES.html.sh (func_all_modules): Add timegm.
17988
17989 2003-08-31  Simon Josefsson  <jas@extundo.com>
17990
17991         * m4/timegm.m4: New file.
17992
17993 2003-08-31  Simon Josefsson  <jas@extundo.com>
17994
17995         * lib/timegm.h: New file.
17996         * lib/timegm.c: New file.  Based on
17997         wget-1.8.2/src/http.c:mktime_from_utc.
17998
17999 2003-08-31  Karl Berry  <karl@gnu.org>
18000
18001         * lib/argp.h: update from libc.
18002
18003 2003-08-28  Bruno Haible  <bruno@clisp.org>
18004
18005         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Remove AC_DEFINE of fnmatch here.
18006         This avoids havoc on compilers for which '#define fnmatch rpl_fnmatch'
18007         followed by '#define fnmatch fnmatch_posix' gives an error.
18008
18009 2003-08-28  Bruno Haible  <bruno@clisp.org>
18010
18011         * lib/binary-io.h: Undefine O_BINARY before defining it. This avoids a
18012         warning on QNX, which defines O_BINARY to 000000.
18013
18014 2003-08-27  Jim Meyering  <jim@meyering.net>
18015
18016         * m4/mkstemp.m4: Require that the system mkstemp be able to create
18017         70 temporary files, not just 30.  Tru64 V4.0F's mkstemp function
18018         would fail after 32.  Reported by Danny Levinson.  Details here:
18019         http://mail.gnu.org/archive/html/bug-coreutils/2003-08/msg00124.html
18020
18021 2003-08-24  Bruno Haible  <bruno@clisp.org>
18022
18023         * lib/binary-io.h: Include <stdio.h>, to avoid a compilation error when
18024         MSVC7 <stdio.h> is included later.
18025
18026 2003-08-22  Simon Josefsson  <jas@extundo.com>
18027
18028         * modules/strndup (Makefile.am): Add strndup.h to lib_SOURCES.
18029
18030 2003-08-20  Karl Berry  <karl@gnu.org>
18031
18032         * m4/lib-ld.m4: serial 1003 from gettext, no changes besides serial.
18033
18034 2003-08-20  Bruno Haible  <bruno@clisp.org>
18035
18036         * modules/progname: New file.
18037         * MODULES.html.sh (func_all_modules): Add progname.
18038
18039 2003-08-20  Bruno Haible  <bruno@clisp.org>
18040
18041         * lib/progname.h: New file, from GNU gettext.
18042         * lib/progname.c: New file, from GNU gettext.
18043         * lib/progreloc.c: New file, from GNU gettext.
18044
18045 2003-08-19  Jim Meyering  <jim@meyering.net>
18046
18047         * m4/lib-ld.m4: Revert yesterday's change, per Bruno's request here:
18048         http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00155.html
18049
18050 2003-08-19  Bruno Haible  <bruno@clisp.org>
18051
18052         * m4/xalloc.m4 (gl_PREREQ_XSTRDUP): Don't check for <string.h> any
18053         more.
18054
18055 2003-08-19  Bruno Haible  <bruno@clisp.org>
18056
18057         * lib/xstrdup.c: Assume <string.h> exists.
18058
18059 2003-08-18  Paul Eggert  <eggert@twinsun.com>
18060
18061         * modules/stdbool: Add BUILT_SOURCES.  Prefer $@ to target name
18062         in makefile rules.
18063
18064 2003-08-18  Jim Meyering  <jim@meyering.net>
18065
18066         * m4/getloadavg.m4: Use [\t ], not [ \t] (where \t is a literal TAB).
18067         * m4/lib-ld.m4: Likewise.
18068
18069 2003-08-18  Jim Meyering  <jim@meyering.net>
18070
18071         * lib/setenv.h: Indent nested cpp directive.
18072         * lib/vasnprintf.c: Remove trailing blanks.
18073
18074 2003-08-17  Simon Josefsson  <jas@extundo.com>
18075
18076         * modules/xstrndup: New file.
18077         * MODULES.html.sh (func_all_modules): Add xstrndup.
18078
18079 2003-08-17  Simon Josefsson  <jas@extundo.com>
18080
18081         * modules/argp: Fix autoconf macro name. Add more dependencies.
18082
18083 2003-08-17  Simon Josefsson  <jas@extundo.com>
18084
18085         * m4/xstrndup.m4: New file.
18086
18087 2003-08-17  Simon Josefsson  <jas@extundo.com>
18088
18089         * m4/argp.m4: New file.
18090
18091 2003-08-17  Simon Josefsson  <jas@extundo.com>
18092             Bruno Haible  <bruno@clisp.org>
18093
18094         * lib/xstrndup.h: New file.
18095         * lib/xstrndup.c: New file.
18096
18097 2003-08-17  Bruno Haible  <bruno@clisp.org>
18098
18099         * modules/strndup (Files, Include): Add lib/strndup.h.
18100
18101 2003-08-17  Bruno Haible  <bruno@clisp.org>
18102
18103         * modules/euidaccess (Files): Add lib/euidaccess.h.
18104
18105 2003-08-17  Bruno Haible  <bruno@clisp.org>
18106
18107         * lib/strndup.h: New file.
18108
18109 2003-08-17  Bruno Haible  <bruno@clisp.org>
18110
18111         * gnulib-tool (func_create_testdir): Handle gl_USE_SYSTEM_EXTENSIONS
18112         like AC_GNU_SOURCE.
18113         * modules/extensions (configure.ac): Comment out the invocation of
18114         gl_USE_SYSTEM_EXTENSIONS.
18115
18116 2003-08-16  Paul Eggert  <eggert@twinsun.com>
18117
18118         Merges from coreutils, etc.
18119         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Insert ':' to prevent a syntax
18120         error in gl_FUNC_MATCH.  This fixes a bug I introduced on 2003-05-28.
18121         * m4/readlink.m4 (gl_PREREQ_READLINK): Renamed from gl_PREREQ_READLINE,
18122         fixing a typo.
18123         * m4/host-os.m4 (UTILS_HOST_OS): Add GNU/NetBSD, GNU/FreeBSD.
18124         * m4/hash.m4 (gl_HASH): Use AM_STDBOOL_H, not AC_HEADER_STDBOOL.
18125
18126 2003-08-16  Paul Eggert  <eggert@twinsun.com>
18127
18128         Document merge from coreutils.
18129         * modules/alloca: Append $(ALLOCA_H) to BUILT_SOURCES.
18130         * modules/fnmatch: Append $(FNMATCH_H) to BUILT_SOURCES.
18131         * modules/utime: Add m4/utimes-null.m4.
18132
18133 2003-08-16  Paul Eggert  <eggert@twinsun.com>
18134
18135         * lib/regex.h, strdup.c, strtoll.c, strtoul.c: Do not normalize white
18136         space, undoing this 2003-08-12 change:
18137         <http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00080.html>
18138
18139 2003-08-16  Paul Eggert  <eggert@twinsun.com>
18140
18141         * config/srclist.txt: Get regex.h, strdup.c, strtoll.c,
18142         strtoul.c from libc, undoing this 2003-08-12 change:
18143         <http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00080.html>
18144
18145 2003-08-16  Jim Meyering  <jim@meyering.net>
18146
18147         Merges from coreutils.
18148         * m4/readdir.m4 (GL_FUNC_READDIR): Change name to have GL_ (not jm_)
18149         prefix.  Adjust cache variables similarly.  Create 500 rather than
18150         just 300 files, to exercise bug on Darwin6.5, too.
18151         * m4/perl.m4 (jm_PERL): Use $am_missing_run, not undefined
18152         $missing_dir.
18153         * m4/jm-winsz1.m4: Require AC_SYS_POSIX_TERMIOS, not
18154         AM_SYS_POSIX_TERMIOS.
18155         Reported by mkc@mathdogs.com.
18156         Also change use of $am_cv_sys_posix_termios
18157         to $ac_cv_sys_posix_termios.  Reported by Andreas Schwab.
18158         * m4/getgroups.m4 (jm_FUNC_GETGROUPS): Rewrite to use AC_FUNC_GETGROUPS
18159         and (if needed) to call AC_LIBOBJ and to set GETGROUPS_LIB.
18160         * m4/fsusage.m4 [__GLIBC__]: GNU libc's statvfs stats each mount point
18161         in /proc/mounts until it finds one with matching device number.  This
18162         is unnecessary when the FILE argument *is* a mount point.  No stat call
18163         is necessary in that case.  So, disable the statvfs-testing code on
18164         systems with GNU libc.  Reported by Andrei Gaponenko via Tim Waugh
18165         as RedHat bug# 84846.
18166         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size
18167         to 1MB, so as not to render systems with no stack size limit (e.g.,
18168         linux-2.2.x) unusable.  Suggestion and code from Bruno Haible.
18169         Include <unistd.h>.  On some systems,
18170         it is required for the definition of _SC_PAGESIZE.
18171
18172 2003-08-16  Jim Meyering  <jim@meyering.net>
18173
18174         Merge from coreutils.
18175         * lib/xstrtoimax.c: #else #if -> #elif.
18176         * lib/xstrtoumax.c: Likewise.
18177
18178 2003-08-16  Jim Meyering  <jim@meyering.net>
18179
18180         * m4/utimes.m4 (gl_FUNC_UTIMES): New file.
18181         * m4/utimes.m4: Removed.
18182         * m4/utimes-null.m4: Renamed from utimes.m4.
18183
18184         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size
18185         to 1MB, so as not to render systems with no stack size limit (e.g.,
18186         linux-2.2.x) unusable.  Suggestion and code from Bruno Haible.
18187         Include <unistd.h>.  On some systems,
18188         it is required for the definition of _SC_PAGESIZE.
18189
18190 2003-08-16  Jim Meyering  <jim@meyering.net>
18191         and Paul Eggert  <eggert@cs.ucla.edu>
18192
18193         Merges from coreutils, etc.
18194
18195         * m4/jm-macros.m4 (AC_LANG_SOURCE(C)): New macro, undefine, then define
18196         using the latest version from cvs.  This avoids problems with #line
18197         directives using a vendor (Sun) compiler.
18198         (jm_MACROS): Bump prerequisite from 2.52g to 2.57.
18199         Don't set GETGROUPS_LIB here; now it's
18200         done via getgroups.m4's wrapper function.
18201         AC_SUBST OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, and MAN here,
18202         rather than just in sh-util/configure.in, so that the
18203         now-shared-by-fileutils-and-textutils lib/Makefile.am are all the
18204         same.
18205         Use AC_CONFIG_LIBOBJ_DIR(lib) to tell the new
18206         AC_FUNC_GETLOADAVG where to find getloadavg.c.
18207         Require AC_FUNC_FTW, gt_INTTYPES_PRI, gl_CLOCK_TIME,
18208         UTILS_SYS_OPEN_MAX, GL_FUNC_GETCWD_PATH_MAX, GL_FUNC_READDIR,
18209         gl_FSUSAGE, gl_MOUNTLIST, AC_FUNC_CANONICALIZE_FILE_NAME.
18210         Remove code that is now done by the newly-required macros.
18211         Append $(EXEEXT) to DF_PROG.
18212         AC_LIBOBJ fchdir-stub if fchdir doesn't exist; similarly for fchown.
18213         Do not invoke or require the following here,
18214         since prereq.m4 or some gnulib .m4 now does this for us:
18215         gl_REGEX, UTILS_FUNC_MKDIR_TRAILING_SLASH, jm_BISON, gl_FUNC_MKTIME,
18216         jm_FUNC_LSTAT, jm_FUNC_STAT, jm_FUNC_REALLOC, jm_FUNC_MALLOC,
18217         jm_FUNC_NANOSLEEP, jm_FUNC_READDIR, jm_FUNC_MEMCMP,
18218         jm_FUNC_GLIBC_UNLOCKED_IO, AC_FUNC_FNMATCH_GNU, jm_FUNC_PUTENV,
18219         jm_AC_PREREQ_XSTRTOUMAX, jm_AC_PREREQ_XSTRTOIMAX,
18220         AC_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, AC_FUNC_VPRINTF,
18221         vb_FUNC_RENAME, UTILS_FUNC_MKSTEP, jm_FUNC_UTIME, AM_FUNC_GETLINE,
18222         AC_FUNC_OBSTACK.
18223         Do not replace the following functions, as this is now the job
18224         of some gnulib .m4: strcasecmp, strncasecmp, dup2, gethostname,
18225         getusershell, sig2str, strcspn, stpcpy, strstr, strtol, strtoul
18226         strpbrk, euidaccess, memcmp, rmdir, rpmatch, strndup, strverscmp,
18227         atexit getpass, strdup, getpagesize.
18228         Replace 'raise'.
18229         Do not check for the following functions, as this is now the job
18230         of some gnulib .m4: bcopy, canonicalize_file_name, fchdir, ftime,
18231         getcwd, getmntinfo, resolvepath.  But check for sysctl, setreuid,
18232         setregid.
18233         (jm_CHECK_ALL_HEADERS): Do not check for fenv.h.
18234         Check for sys/sysctl.h.
18235         (jm_CHECK_ALL_TYPES): Do not require AC_STRUCT_TM, AC_STRUCT_TIMEZONE,
18236         jm_CHECK_TYPE_STRUCT_TIMESPEC.  Invoke gt_TYPE_SSIZE_T instead
18237         of checking for ssize_t ourselves.
18238
18239         * m4/prereq.m4 (jm_PREREQ): Don't invoke macros; AC_REQUIRE them.
18240         Require every macro that gnulib/modules/* suggests for us.
18241         (jm_PREREQ_ADDEXT): New macro.
18242         (jm_PREREQ_STAT): Check for 'struct statfs' on Ultrix 4.4.
18243         Require jm_AC_TYPE_LONG_LONG instead of invoking it.
18244
18245         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): New macro.
18246         (gl_PHYSMEM): Use it.
18247         Also check for `table' function.
18248         Check for new headers and functions.
18249         Add check for sys/sysmp.h.
18250         With suggestions from Kaveh Ghazi.
18251         Ignore headers that are present but cannot be compiled.  This
18252         avoids spurious warnings on Solaris 9 sparc with Forte Developer 7
18253         C 5.4.
18254
18255 2003-08-15  Paul Eggert  <eggert@twinsun.com>
18256
18257         Document merge from coreutils.
18258         * modules/userspec: Depend on posixver.
18259         * modules/strftime: Depend on tzset.
18260
18261 2003-08-15  Paul Eggert  <eggert@twinsun.com>
18262
18263         * lib/config.charset, ref-add.sin, ref-del.sin: Use three spaces,
18264         rather than tab, after '#' in shell-script copyright notices.
18265         Suggested by Bruno Haible.
18266
18267 2003-08-15  Paul Eggert  <eggert@twinsun.com>
18268
18269         * config/srclist-update: Use three spaces, rather than tab, after '#'
18270         in shell-script copyright notices.  Suggested by Bruno Haible.
18271         Remove unnecessary parenthesization in regular expression.
18272
18273 2003-08-15  Jim Meyering  <jim@meyering.net>
18274
18275         Merge from coreutils.
18276         * lib/xgethostname.c: Include <stdlib.h>.
18277         (xghostname): Don't exit for anything other than memory-related
18278         failure; just return NULL.
18279         * lib/userspec.c: Include "posixver.h".
18280         (parse_user_spec): Accept `.' as a separator only
18281         in pre-POSIX-200112 mode.
18282         * lib/strtoimax.c: Use #elif rather than #else #if.
18283         * lib/strftime.c (my_strftime) [!_LIBC && HAVE_TZNAME && HAVE_TZSET]:
18284         Remove function, now that we can rely on a working tzset function.
18285         [!_LIBC]: Ensure that the required autoconf test has been run.
18286         [!defined _NL_CURRENT && HAVE_STRFTIME]:
18287         Use underlying_strftime for %r.
18288         * lib/sha.c: Merge in some clean-up and optimization changes from
18289         glibc.
18290         * lib/sha.c (sha_stream) [BLOCKSIZE]: Move definition to top of file.
18291         Ensure that it is a multiple of 64.
18292         Rearrange loop exit tests so as to avoid performing an
18293         additional fread after encountering an error or EOF.
18294         * lib/realloc.c: Update copyright date.
18295
18296 2003-08-15  Jim Meyering  <jim@meyering.net>
18297         and Paul Eggert  <eggert@twinsun.com>
18298
18299         Merge from coreutils.
18300         * lib/readutmp.h (HAVE_UTMPX_H): Undef if struct utmp has the ut_exit
18301         member but strut utmpx does not.  Needed for AIX 4.3.3.
18302         (UT_EXIT_E_TERMINATION, UT_EXIT_E_EXIT): Define.
18303
18304 2003-08-15  Jim Meyering  <jim@meyering.net>
18305         and Paul Eggert  <eggert@cs.ucla.edu>
18306
18307         Merges from coreutils, etc.
18308         * m4/strftime.m4 (_jm_STRFTIME_PREREQS):
18309         Require gl_FUNC_TZSET_CLOBBER.
18310         * m4/readutmp.m4 (gl_READUTMP): Check for ut_exit.ut_exit,
18311         ut_exit.e_exit, ut_exit.ut_termination, and ut_exit.e_termination
18312         members.
18313
18314 2003-08-14  Paul Eggert  <eggert@twinsun.com>
18315
18316         Help the merge from coreutils.
18317         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): New macro.
18318         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Use it.
18319         * m4/tzset.m4: Use it too.
18320
18321 2003-08-14  Paul Eggert  <eggert@twinsun.com>
18322
18323         * modules/tzset: New file.
18324
18325 2003-08-14  Jim Meyering  <jim@meyering.net>
18326
18327         Merges from coreutils.
18328         * modules/fnmatch: Use the `$(FNMATCH_H)' notation for AC_REPLACED
18329         variable names, rather than @FNMATCH_H@.
18330         * modules/alloca: Likewise for $(ALLOCA_H).
18331
18332         * modules/fnmatch (fnmatch.h): Use `$@' in the commands, in place of
18333         the three copies of the literal target, `fnmatch.h'.
18334         * modules/alloca (alloca.h): Likewise.
18335
18336 2003-08-14  Jim Meyering  <jim@meyering.net>
18337
18338         Merge from coreutils.
18339         * m4/tzset.m4: New file.
18340         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Move the
18341         MOUNTED_VMOUNT test to precede the MOUNTED_GETMNTENT1 tests, since
18342         otherwise, AIX 5.1 systems would end up using the latter.
18343         MOUNTED_GETMNTENT1 support is inadequate on such systems: 1) detecting
18344         whether a file system is remote doesn't work  2) the MOUNTED_VMOUNT
18345         code reports the HOSTNAME:/MOUNT_POINT, while the MOUNTED_GETMNTENT1
18346         code reports merely /MOUNT_POINT.  Reported by Mike Jetzer.
18347
18348 2003-08-14  Jim Meyering  <jim@meyering.net>
18349
18350         Merge from coreutils.
18351         * lib/obstack.h: Whitespace changes.
18352         * lib/mountlist.c: Remove anachronistic casts of xmalloc, xrealloc,
18353         and xcalloc return values.
18354         (read_filesystem_list) [MOUNTED_GETFSSTAT]:
18355         Use MNT_NOWAIT, rather than MNT_WAIT.  Otherwise, `df DIR' could
18356         hang on OSF/1 5.1 for DIR on both local and remote file systems.
18357         Reported by (and fix confirmed by) Nelson H. F. Beebe.
18358         (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
18359         error from mntctl.
18360         Use mntctl's return value to drive the entry-processing loop, since
18361         we can't rely on the value of the vmt_length member in the last
18362         entry.  On some systems doing so could result in exhausting
18363         virtual memory.  Based in part on a patch from Mike Jetzer.
18364
18365 2003-08-14  Jim Meyering  <jim@meyering.net>
18366         and Paul Eggert  <eggert@twinsun.com>
18367
18368         Merges from coreutils, plus other fixes.
18369         * lib/physmem.c: Merge in portability changes from gcc/libiberty
18370         to support AIX, IRIX, Tru64, and Windows.  See the ChangeLog there
18371         for credits and details.  Thanks to Kaveh Ghazi for helping
18372         to keep these files in sync.
18373         (ARRAY_SIZE): Define it.
18374         (physmem_total, physmem_available): Add comments. From Kaveh Ghazi.
18375         * lib/memcasecmp.c: Remove unnecessary parentheses after 'defined'.
18376         (memcasecmp): Don't assume size_t fits in unsigned int.
18377         Remove casts and duplicate code.
18378         * lib/md5.c: Include <string.h> and <stdlib.h> unconditionally.
18379         (memcpy): Remove definition.
18380         Merge in some clean-up and optimization changes from glibc.
18381         [BLOCKSIZE]: Move definition to top of file.
18382         Ensure that it is a multiple of 64.
18383         Rearrange loop exit tests so as to avoid performing an
18384         additional fread after encountering an error or EOF.
18385         * lib/md5.h (md5_uintptr): Define.
18386         * lib/makepath.c (CLEANUP_CWD): Report an error if we failed to
18387         return to the initial working directory.  Preserve errno
18388         for caller.
18389         * lib/idcache.c: Include "xalloc.h".
18390         (xmalloc, xrealloc): Remove decls.
18391         (getuser): Remove casts no longer required in C89.
18392         * lib/human.c: Include stdio.h, for sprintf.
18393         * lib/group-member.c: Include "xalloc.h".
18394         (xmalloc, xrealloc): Remove decls.
18395         (get_group_info): Remove casts no longer required in C89.
18396         * lib/getusershell.c (readname): Remove casts no longer required in
18397         C89.
18398         * lib/gettimeofday.c (rpl_gmtime, rpl_tzset): New functions.
18399         * lib/getline.c: Whitespace fix, from coreutils.
18400
18401 2003-08-13  Paul Eggert  <eggert@twinsun.com>
18402
18403         * m4/exclude.m4 (gl_EXCLUDE): Require AC_C_INLINE, AC_HEADER_STDC.
18404         Check for isascii.
18405
18406         * m4/gettext.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, lib-link.m4,
18407         lib-prefix.m4, longdouble.m4, po.m4, progtest.m4, signed.m4:
18408         Undo previous (whitespace-only) change.
18409
18410 2003-08-13  Paul Eggert  <eggert@twinsun.com>
18411
18412         * lib/exclude.c: Include <ctype.h>
18413         (IN_CTYPE_DOMAIN): New macro.
18414         (is_space): New fn.
18415         (add_exclude_file): If LINE_END is a space, ignore trailing spaces
18416         and empty lines.
18417
18418         * lib/argp-help.c, argp-parse.c, config.charset, getopt.h:
18419         Undo previous (whitespace-only) change.
18420
18421 2003-08-13  Paul Eggert  <eggert@twinsun.com>
18422
18423         * config/srclist-update: Change update back to the old behavior,
18424         leaving whitespace alone.  Use one 'sed' command rather than a
18425         pipeline.
18426         (fixlicense): Now a variable, not a function.
18427         (remove_trailing_blanks): Remove.
18428         (fixfile): Don't invoke unexpand or cat, or remove trailing blanks.
18429         * config/config.guess, config.sub, install-sh, missing, texinfo.tex:
18430         Undo previous (whitespace-only) change.
18431
18432 2003-08-12  Paul Eggert  <eggert@twinsun.com>
18433
18434         Merge from coreutils.
18435         * modules/euidaccess: Add lib_SOURCES, include for new
18436         file euidaccess.h
18437
18438 2003-08-12  Paul Eggert  <eggert@twinsun.com>
18439
18440         * m4/gettext.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, lib-link.m4,
18441         lib-prefix.m4, longdouble.m4, po.m4, progtest.m4, signed.m4:
18442         Normalize leading white space and remove trailing white space.
18443
18444         Merge from coreutils
18445         * m4/euidaccess.m4 (gl_FUNC_EUIDACCESS): Check for euidaccess decl.
18446
18447         * m4/lib-ld.m4, lib-link.m4, lib-prefix.m4: Regenerate from gettext
18448         0.12.1.  These files are now being upgraded automatically by
18449         ../config/srclist-update.
18450
18451 2003-08-12  Paul Eggert  <eggert@twinsun.com>
18452
18453         * lib/argp-help.c, argp-parse.c, config.charset, getopt.h:
18454         Normalize leading white space and remove trailing white space.
18455         * lib/ref-add.sin, ref-del.sin: Use '#' before empty line in copyright
18456         notice, as per ../config/srclist-update.
18457
18458         Merge from coreutils.
18459         * lib/euidaccess.h: New file.
18460         * lib/euidaccess.c: Include it.
18461         * lib/.cppi-disable: Add printf-args.h, printf-parse.h, stdbool_.h,
18462         vasnprintf.h, vasprintf.h.  Remove strdup.c, gettext.h.
18463         * lib/regex.h, strdup.c, strtoll.c, strtoul.c: Normalize white space.
18464
18465 2003-08-12  Paul Eggert  <eggert@twinsun.com>
18466
18467         * config/srclist-update: Add copyright notice.
18468         (remove_id_lines, remove_trailing_blanks): New constants.
18469         (fixfile): Use them to normalize spacing a bit in copied files.
18470         * config/config.guess, config.sub, install-sh, missing, texinfo.tex:
18471         Normalize leading white space and remove trailing white space.
18472
18473         * config/texinfo.tex: Sync with texinfo.
18474
18475         * config/srclist.txt: Don't get regex.h, strdup.c, strtoll.c,
18476         strtoul.c from libc, to merge coreutils whitespace changes.
18477
18478         * config/srclist.txt: Get the following m4 files from gettext:
18479         codeset.m4, gettext.m4, glibc21.m4, iconv.m4, intdiv0.m4,
18480         inttypes-pri.m4, lcmessage.m4, lib-ld.m4, lib-link.m4, lib-prefix.m4,
18481         longdouble.m4, nls.m4, po.m4, progtest.m4, signed.m4, wchar_t.m4,
18482         wint_t.m4.
18483
18484 2003-08-12  Karl Berry  <karl@gnu.org>
18485
18486         * config/srclist.txt: can't sync vasnprintf.c any more, changes have
18487         been made.
18488
18489 2003-08-11  Paul Eggert  <eggert@twinsun.com>
18490
18491         * modules/gnu-source, m4/gnu-source.m4:
18492         Remove; we're assuming Autoconf 2.54 or later now.
18493         Suggested by Bruno Haible.
18494         * MODULES.html.sh (func_all_modules): Remove gnu-source.
18495
18496 2003-08-11  Bruno Haible  <bruno@clisp.org>
18497
18498         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Also check for wcslen.
18499
18500 2003-08-11  Bruno Haible  <bruno@clisp.org>
18501
18502         * lib/vasnprintf.c (local_wcslen): New function, for Solaris 2.5.1.
18503         (vasnprintf): Use it instead of wcslen.
18504
18505 2003-08-11  Bruno Haible  <bruno@clisp.org>
18506
18507         * lib/stdbool_.h (_Bool): Undo last change; instead use a negative enum
18508         value to ensure that _Bool promotes to int. Use #define for _Bool when
18509         using the Solaris C compiler. Adds comments suggested by Paul Eggert.
18510
18511 2003-08-10  Karl Berry  <karl@gnu.org>
18512
18513         * lib/regex.h: update from libc (whitespace fix).
18514
18515 2003-08-09  Paul Eggert  <eggert@twinsun.com>
18516
18517         Merge some files from coreutils.  These changes were
18518         originally made by Jim Meyering.
18519         * lib/acl.c: Include <sys/types.h> before <sys/stat.h>;
18520         many older Unixes require this.
18521         * lib/alloca.c (alloca): Remove cast to argument of free;
18522         no longer needed in C89.
18523         * lib/alloca_.h, regex.h: Fix white space to match
18524         what GNU indent does.
18525
18526 2003-08-09  Paul Eggert  <eggert@twinsun.com>
18527
18528         * m4/regex.m4 (jm_INCLUDED_REGEX): Change "\201" to "\371";
18529         apparently Emacs's Unicode mode got confused before my 2003-08-05
18530         checkin.
18531
18532 2003-08-08  Paul Eggert  <eggert@twinsun.com>
18533
18534         * m4/extensions.m4: New file.
18535         * m4/timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC):
18536         Require gl_USE_SYSTEM_EXTENSIONS.
18537         * m4/unlocked-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO):
18538         Require gl_USE_SYSTEM_EXTENSIONS rather than AC_GNU_SOURCE.
18539
18540 2003-08-08  Paul Eggert  <eggert@twinsun.com>
18541
18542         * MODULES.html.sh (func_all_modules): Add extensions, gnu-source.
18543         * modules/extensions, modules/gnu-source: New files.
18544         * modules/timespec, modules/unlocked-io: Depend on extensions.
18545
18546 2003-08-07  Paul Eggert  <eggert@twinsun.com>
18547
18548         * modules/restrict: New file.
18549         * MODULES.html.sh (func_all_modules): Add restrict.
18550         * modules/regex: Depend on restrict.
18551
18552 2003-08-07  Paul Eggert  <eggert@twinsun.com>
18553
18554         * m4/restrict.m4: New file.
18555         * m4/regex.m4 (jm_PREREQ_REGEX): Add gl_C_RESTRICT.
18556
18557 2003-08-07  Bruno Haible  <bruno@clisp.org>
18558
18559         * modules/getndelim2 (Makefile.am): Add the files to EXTRA_DIST, not
18560         lib_SOURCES, because getndelim2.m4 now uses AC_LIBOBJ(getndelim2).
18561
18562 2003-08-07  Bruno Haible  <bruno@clisp.org>
18563
18564         * m4/getndelim2.m4 (gl_GETNDELIM2): Use AC_LIBOBJ(getndelim2). This
18565         makes the module 'getndelim2' compatible with the module 'getline'.
18566
18567 2003-08-05  Paul Eggert  <eggert@twinsun.com>
18568
18569         * m4/regex.m4 (jm_INCLUDED_REGEX): Replace a single non-ASCII
18570         byte with "\201" to avoid glitches when editing that source file
18571         with multi-gnome-terminal.
18572
18573 2003-08-05  Paul Eggert  <eggert@twinsun.com>
18574
18575         * lib/bumpalloc.h: Remove.
18576
18577 2003-08-05  Paul Eggert  <eggert@twinsun.com>
18578
18579         * MODULES.html.sh (func_all_modules): Remove bumpalloc.
18580         * modules/bumpalloc: Remove.
18581
18582 2003-08-04  Paul Eggert  <eggert@twinsun.com>
18583
18584         * lib/getloadavg.c: Change copyright notice and spacing to conform to
18585         GNU coding style.
18586
18587         Merge from coreutils.
18588         * lib/error.c [!USE_IN_LIBIO]: Omit this case; assume USE_IN_LIBIO is
18589         1. From glibc.
18590         * lib/getdate.y (date): Also accept dates like May-23-2003; suggestion
18591         from Karl Berry, implemented by Jim Meyering.
18592         * lib/getgroups.c: Include "xalloc.h" instead of declaring xalloc fns;
18593         from Dmitry V. Levin.
18594         Remove anachronistic cast of xrealloc.
18595         * lib/fnmatch_.h (__const): Remove.  Use 'const'.
18596         * lib/fnmatch_loop.c (NEW_PATTERN): Cast alloca return value to proper
18597         type. Otherwise, it wouldn't compile with at least /bin/cc on
18598         ymp-cray-unicos9.0.2.X.
18599         Combine two mostly-identical uses of alloca into one.
18600         Thanks to the Cray-Cyber project for access to a Cray Y-MP.
18601
18602 2003-08-04  Dave Love  <d.love@dl.ac.uk>
18603
18604         [From Emacs.]
18605
18606         * lib/getloadavg.c: Check `__unix' as well as `unix'.  Use #ifdef, not
18607         #if.  Check HAVE_LIBKSTAT as well as LOAD_AVE_TYPE.  Check
18608         F_SETFD, not FD_SETFD.  Use HAVE_STRUCT_NLIST_N_UN_N_NAME, not
18609         obsolete NLIST_NAME_UNION.
18610         [__GNU__]: Undef BSD and FSCALE.
18611         [!NLIST_STRUCT]: Remove conditional definition of NLIST_STRUCT.
18612
18613 2003-08-03  Paul Eggert  <eggert@twinsun.com>
18614
18615         * lib/stdbool_.h (_Bool): Make it signed char, instead of
18616         an enum type, so that it's guaranteed to promote to int.  See:
18617         <http://mail.gnu.org/archive/html/bug-gnulib/2003-07/msg00124.html>
18618
18619 2003-08-03  Karl Berry  <karl@gnu.org>
18620
18621         * config/depcomp: update from automake.
18622
18623 2003-07-31  Paul Eggert  <eggert@twinsun.com>
18624
18625         * lib/strerror.c: Include config.h, limits.h.  Declare sprintf.
18626         (strerror): Don't assume that a printable int fits in 14 bytes.
18627
18628 2003-07-31  Bruno Haible  <bruno@clisp.org>
18629
18630         * modules/getpass-gnu: New file.
18631         * MODULES.html.sh (func_all_modules): Add getpass-gnu.
18632
18633 2003-07-31  Bruno Haible  <bruno@clisp.org>
18634
18635         * m4/getpass.m4 (gl_FUNC_GETPASS_GNU): New macro.
18636
18637 2003-07-24  Karl Berry  <karl@gnu.org>
18638
18639         * config/missing: update from automake.
18640
18641 2003-07-24  Derek Robert Price  <derek@ximbiot.com>
18642             Bruno Haible  <bruno@clisp.org>
18643
18644         * lib/getline.h (getline, getdelim): Change return type to ssize_t.
18645         * lib/getline.c (getline, getdelim): Likewise.
18646         Remove _GNU_SOURCE define; now it's defined in config.h through
18647         m4/getline.m4.
18648
18649 2003-07-23  Karl Berry  <karl@gnu.org>
18650
18651         * config/config.sub: update from prep.
18652
18653 2003-07-22  Paul Eggert  <eggert@twinsun.com>
18654
18655         * modules/xalloc (Depends-on): Add exitfail.
18656         * modules/xmemcoll: Likewise.
18657
18658 2003-07-22  Paul Eggert  <eggert@twinsun.com>
18659
18660         * lib/xalloc.h (XCALLOC, XREALLOC, CCLONE): Fix under- and
18661         over-parenthesization in macros.
18662
18663         Sync with coreutils.
18664
18665         * lib/xalloc.h (XMALLOC, XCALLOC, XREALLOC): Remove casts not
18666         required by C99.
18667
18668         Use `exit_failure' for xalloc and xmemcoll instead of their own
18669         private exit-failure variables.
18670         * lib/xalloc.h (xalloc_exit_failure): Remove.
18671         * lib/xmalloc.c: Likewise.  Include exitfail.h.
18672         (xalloc_die): Use exit_failure instead of xalloc_exit_failure.
18673         * lib/xmemcoll.h (xmemcoll_exit_failure): Remove.
18674         * lib/xmemcoll.c: Likewise.  Include exitfail.h.
18675         (xmemcoll): Use exit_failure instead of xalloc_exit_failure.
18676
18677 2003-07-20  Jim Meyering  <jim@meyering.net>
18678
18679         * modules/closeout (Depends-on): Add exitfail.
18680         Suggestion from Bruno Haible.
18681
18682 2003-07-19  Karl Berry  <karl@gnu.org>
18683
18684         * config/config.sub: update from prep.
18685
18686 2003-07-18  Paul Eggert  <eggert@twinsun.com>
18687
18688         * lib/closeout.h (close_stdout_set_status, close_stdout_status):
18689         Remove.
18690         * lib/closeout.c: Likewise.  Include "closeout.h" right after config.h,
18691         to test that it can stand by itself.  Include "exitfail.h".
18692         Clients should set exit_failure instead.
18693         (EXIT_FAILURE): Remove; no longer needed.  Do not include <stdlib.h>.
18694
18695 2003-07-18  Bruno Haible  <bruno@clisp.org>
18696
18697         * modules/getndelim2: New file.
18698         * modules/getline: Share files with module getndelim2.
18699         * modules/getnline: Depend on getndelim2 instead of sharing files with
18700         it. Add getnline.c to lib_SOURCES.
18701         * MODULES.html.sh (func_all_modules): Add getndelim2.
18702
18703 2003-07-18  Bruno Haible  <bruno@clisp.org>
18704
18705         * m4/getndelim2.m4: New file.
18706         * m4/getline.m4 (AM_FUNC_GETLINE): Add AC_LIBOBJ of getndelim2.c and
18707         invoke gl_PREREQ_GETNDELIM2.
18708         (gl_PREREQ_GETLINE): Drop AC_HEADER_STDC, now done by
18709         gl_PREREQ_GETNDELIM2.
18710         * m4/getnline.m4 (gl_GETNLINE): Drop AC_HEADER_STDC, now done by
18711         gl_GETNDELIM2.
18712
18713 2003-07-18  Bruno Haible  <bruno@clisp.org>
18714
18715         * lib/getndelim2.h: New file.
18716         * lib/getndelim2.c: Make into a module of its own. Include config.h,
18717         getndelim2.h.
18718         (getndelim2): Make non-static. Change return type to ssize_t.
18719         * lib/getline.h: Change argument names.
18720         * lib/getline.c: Include getndelim2.h instead of getndelim2.c.
18721         * lib/getnline.c: Include getndelim2.h.
18722
18723 2003-07-18  Andreas Schwab  <schwab@suse.de>
18724
18725         * lib/memcoll.c (memcoll) [!HAVE_STRCOLL]: Clear errno.
18726
18727 2003-07-17  Karl Berry  <karl@gnu.org>
18728
18729         * config/config.sub: update from prep.
18730
18731 2003-07-17  Bruno Haible  <bruno@clisp.org>
18732
18733         * modules/getnline: New file.
18734         * modules/getline: Add lib/getndelim2.c to source file list.
18735         * MODULES.html.sh (func_all_modules): Add getnline.
18736
18737 2003-07-17  Bruno Haible  <bruno@clisp.org>
18738
18739         * m4/getnline.m4: New file.
18740
18741 2003-07-17  Bruno Haible  <bruno@clisp.org>
18742
18743         * m4/Makefile.am.in: Remove file.
18744         * m4/Makefile.am: Remove file.
18745         * m4/Makefile.in: Remove file.
18746
18747 2003-07-17  Bruno Haible  <bruno@clisp.org>
18748
18749         * lib/getnline.h: New file.
18750         * lib/getnline.c: New file.
18751         * lib/getndelim2.c: New file, extracted from getline.c.
18752         (getndelim2): Renamed from getdelim2, with added nmax argument.
18753         * lib/getline.c: Include getndelim2.c.
18754         (getdelim2): Moved out to getndelim2.c.
18755         (getline, getdelim): Update.
18756
18757 2003-07-17  Bruno Haible  <bruno@clisp.org>
18758
18759         * lib/Makefile.am: Remove file.
18760         * lib/Makefile.in: Remove file.
18761
18762 2003-07-17  Bruno Haible  <bruno@clisp.org>
18763
18764         * configure.in: Remove file.
18765         * Makefile.in: Remove file.
18766
18767 2003-07-17  Bruno Haible  <bruno@clisp.org>
18768
18769         * MODULES.html.sh: Put the </BODY> right before </HTML>.
18770
18771 2003-07-16  Karl Berry  <karl@gnu.org>
18772
18773         * config/srclist-update: was running fixlicense twice, which caused
18774                 texinfo.tex to be nullified for some reason.  Simplify,
18775                 $gplsrc is no longer needed as far as I can see?
18776
18777 2003-07-16  Jim Meyering  <jim@meyering.net>
18778
18779         * modules/save-cwd: Depend on xgetcwd.  From Derek Price.
18780
18781 2003-07-15  Paul Eggert  <eggert@twinsun.com>
18782
18783         * config/srclist.txt: Get the following files from gettext-runtime/intl
18784         instead: config.charset, localcharset.c, localcharset.h, ref-add.sin,
18785         ref-del.sin.  From Bruno Haible.
18786         * config/srclist-update (fixfile): Change grep pattern again, since the
18787         previous fix didn't work (there was another trailing $).  Use
18788         '[$]' to escape the $s.
18789
18790 2003-07-15  Karl Berry  <karl@gnu.org>
18791
18792         * lib/vasnprintf.c: update from gettext.
18793
18794 2003-07-15  Karl Berry  <karl@gnu.org>
18795
18796         * config/srclist-update (fixfile): Change grep pattern, since 'Id'
18797         gets expanded when surrounded by '$'.
18798
18799 2003-07-15  Jim Meyering  <jim@meyering.net>
18800
18801         * modules/save-cwd: Don't depend on error.  From Derek Price.
18802
18803 2003-07-15  Jim Meyering  <jim@meyering.net>
18804
18805         * lib/makepath.c (make_path): Enclose diagnostic in _(...).
18806
18807 2003-07-14  Simon Josefsson  <jas@extundo.com>
18808
18809         * modules/mempcpy: New file.
18810         * MODULES.html.sh (func_all_modules): Add mempcpy.
18811
18812 2003-07-14  Simon Josefsson  <jas@extundo.com>
18813
18814         * m4/mempcpy.m4: New file.
18815
18816 2003-07-14  Simon Josefsson  <jas@extundo.com>
18817
18818         * lib/mempcpy.h: New file.
18819         * lib/mempcpy.c: New file.
18820
18821 2003-07-14  Paul Eggert  <eggert@twinsun.com>
18822
18823         * modules/getdate, modules/posixtm: Depend on mktime.
18824
18825 2003-07-14  Paul Eggert  <eggert@twinsun.com>
18826
18827         * lib/ceill.c, expl.c, floorl.c, frexpl.c, ldexpl.c, mathl.h,
18828         sincosl.c, sqrtl.c, trigl.c, trigl.h, poll.c, poll_.h, mkstemp.c,
18829         unicodeio.c, unicodeio.h, unlocked-io.h:
18830         Switch from LGPL to GPL.
18831
18832 2003-07-14  Paul Eggert  <eggert@twinsun.com>
18833
18834         * lib/asnprintf.c, asprintf.c, config.charset, gettext.h,
18835         localcharset.c, localcharset.h, mkdtemp.c, printf-args.c,
18836         printf-args.h, printf-parse.c, printf-parse.h, ref-add.sin,
18837         ref-del.sin, setenv.c, unsetenv.c, vasnprintf.c, vasnprintf.h,
18838         vasprintf.c, vasprintf.h: Regenerate.  These files are now being
18839         updated automatically by ../config/srclist-update.  This changes
18840         their license from LPGL to GPL.
18841
18842 2003-07-14  Paul Eggert  <eggert@twinsun.com>
18843
18844         * config/srclist.txt: Add tons more gettext files.  $GETTEXT is now
18845         assumed to refer to the root of the most recent stable gettext version.
18846         * config/srclistvars.sh: Add defaults for eggert.
18847         * config/srclist-update: Convert LGPL to GPL in shell scripts, too.
18848         Match "This program" as well as "The program".  This is needed
18849         for gettext.
18850
18851 2003-07-14  Jim Meyering  <jim@meyering.net>
18852
18853         Don't emit diagnostics.  Let callers do that.
18854         * lib/save-cwd.c: Don't include "error.h".
18855         (save_cwd): Don't call error.  Ensure that errno is valid
18856         when returning nonzero.
18857
18858         * lib/save-cwd.h (restore_cwd): Update prototype.
18859         * lib/save-cwd.c (restore_cwd): Remove two parameters.
18860         Simplify.  Don't call error upon failure.  Let callers do that.
18861         (save_cwd): Mention that Irix 5.3 has the same problem as SunOS 4
18862         when auditing is enabled.  But don't bother updating the #if.
18863
18864 2003-07-11  Alexandre Duret-Lutz  <adl@gnu.org>
18865
18866         * lib/obstack.h (__INT_TO_PTR): Revert change of 2003-03-13;
18867         it breaks C++ compilation.
18868         [!__GNUC__ || !__STDC__] (obstack_finish): Cast result to void*.
18869
18870 2003-07-10  Simon Josefsson  <jas@extundo.com>
18871
18872         * modules/strchrnul (Makefile.am): Add strchrnul.h.
18873
18874 2003-07-10  Jim Meyering  <jim@meyering.net>
18875
18876         * m4/clock_time.m4: Remove trailing blank.
18877         * m4/intmax_t.m4: Likewise.
18878
18879 2003-07-10  Jim Meyering  <jim@meyering.net>
18880
18881         * lib/vasnprintf.c: Remove trailing blanks.
18882         Make cpp indentation consistent.
18883
18884 2003-07-09  Paul Eggert  <eggert@twinsun.com>
18885
18886         * lib/alloca_.h, euidaccess.c, getpass.c, memrchr.c, obstack.h,
18887         posixver.c, strftime.c, strnlen.c, strverscmp.c:
18888         Switch from LGPL to GPL.
18889
18890 2003-07-09  Paul Eggert  <eggert@twinsun.com>
18891
18892         * config/srclist.txt: Sort sublists.  Add
18893         $LIBCSRC/sysdeps/generic/strtoul.c. In comments, add more libc files
18894         that differ from gnulib for one reason or another; we'd like this list
18895         to be smaller but for now let's document what we have.
18896
18897 2003-07-08  Paul Eggert  <eggert@twinsun.com>
18898
18899         * config/srclist-update: Port to POSIX 1003.1-2001 hosts by avoiding
18900         the use of GNU extensions.  Change "x=`eval echo $x`" to the shorter
18901         and sweeter "eval x=$x".
18902         * config/srclist.txt: Get lib/argp* from glibc.
18903
18904 2003-07-07  Paul Eggert  <eggert@twinsun.com>
18905
18906         * lib/mktime.c: Fix some boundary cases and remove need for floating
18907         point.
18908
18909         Issue a compile-time diagnostic if time_t is floating point, or if
18910         two's complement arithmetic is not in effect, or if arithmetic
18911         right shift does not propagate the sign.  These assumptions were
18912         all in the original code but they weren't checked.
18913
18914         (TIME_T_MIDPOINT, verify): New macros.
18915         (__isleap): Remove; it has integer overflow problems.
18916         (leapyear): New function, without those problems.
18917         (ydhms_tm_diff): Remove; splitting into two parts.
18918         (ydhms_diff): New function, containing the arithmetic part of
18919         the old ydhms_tm_diff function.  Issue a compile-time
18920         diagnostic if we are not using C99 integer division.
18921         Avoid casts when possible.
18922         (guess_time_tm): New function, containing the checking part of
18923         the old ydhms_tm_diff function.  Return the new value, rather than
18924         the difference between it and the old.  Accept a new argument T
18925         so that *T specifies the old value.  Check for overflow in the result.
18926
18927         (__mktime_internal): Use a time_t offset, not a long int offset.
18928         This undoes the 2003-06-04 change, which is no longer needed now
18929         that we have better overflow checking.
18930         (localtime_offset): Likewise.
18931
18932         (__mktime_internal): Avoid harmful overflow on hosts where time_t
18933         and long are 64-bit but int is only 32-bit.
18934         (ydhms_diff): Use long int to store year1 and yday1.
18935         Issue a compile-time diagnostic if long int is not wide enough.
18936
18937         (__mktime_internal): Use long int to store adjusted year and yday.
18938         Use plain C rather than preprocessor commands, if that doesn't
18939         affect efficiency.
18940         Check for overflow (and try to repair) after each probe
18941         rather than checking only at the very end.  This avoids some bugs
18942         (e.g., southern hemisphere, behind GMT, and GMT offset at minimum time
18943         does not equal GMT offset at maximum time).
18944         Use integer to check for overflow rather than floating point; this
18945         is more portable to non-IEEE hosts, and is a tad faster.
18946         When we detect that we are oscillating between two values,
18947         don't check whether tm_isdst has the requested value, since
18948         we already know the answer.  When tm_isdst has the wrong value,
18949         use a different heuristic to find the right one, based on the
18950         extreme values actually observed in practice in tz2003a,
18951         rather than the (overly optimistic) "previous 3 calendar quarters".
18952
18953         (not_equal_tm, print_tm, check_result): Use "const T" rather than
18954         "T const" to accommodate glibc style.
18955         (check_result): Use less-confusing report format.  "long" -> "long int.
18956         (main): Likewise.
18957         Don't loop if the iteration overflows time_t.
18958         Allow a negative step in the iteration.
18959
18960 2003-07-06  Karl Berry  <karl@gnu.org>
18961
18962         * config/depcomp: update from automake.
18963         * config/config.sub: update from prep.
18964
18965 2003-07-03  Karl Berry  <karl@gnu.org>
18966
18967         * config/config.guess: update from prep.
18968
18969 2003-07-01  Paul Eggert  <eggert@twinsun.com>
18970
18971         * m4/xreadlink.m4 (gl_XREADLINK): Don't check for sys/types.h, since
18972         xreadlink.c now includes it unconditionally.
18973
18974 2003-07-01  Paul Eggert  <eggert@twinsun.com>
18975
18976         * lib/xreadlink.c: Include <sys/types.h> unconditionally, instead of
18977         having it depend on HAVE_SYS_TYPES_H.
18978
18979 2003-07-01  Bruno Haible  <bruno@clisp.org>
18980
18981         * m4/ssize_t.m4 (gt_TYPE_SSIZE_T): Don't include <unistd.h>.
18982         <sys/types.h> should be sufficient.
18983         Reported by Paul Eggert.
18984
18985 2003-06-26  Karl Berry  <karl@gnu.org>
18986
18987         * config/depcomp: update from automake.
18988
18989 2003-06-26  Bruno Haible  <bruno@clisp.org>
18990
18991         * modules/human: Depend on module stdbool.
18992
18993 2003-06-25  Bruno Haible  <bruno@clisp.org>
18994
18995         * modules/readlink: New file.
18996         * modules/xreadlink: Depend on it.
18997         * MODULES.html.sh (func_all_modules): Add readlink.
18998
18999 2003-06-25  Bruno Haible  <bruno@clisp.org>
19000
19001         * m4/readlink.m4: New file.
19002
19003 2003-06-25  Bruno Haible  <bruno@clisp.org>
19004
19005         * lib/readlink.c: New file.
19006
19007 2003-06-22  Karl Berry  <karl@gnu.org>
19008
19009         * config/srclist.txt: update mkinstalldirs from automake.
19010         * config/mkinstalldirs: update.
19011
19012 2003-06-22  Bruno Haible  <bruno@clisp.org>
19013
19014         Portability to mingw32.
19015         * m4/ssize_t.m4: New file, from GNU gettext.
19016         * m4/safe-read.m4 (gl_PREREQ_SAFE_READ): Require gt_TYPE_SSIZE_T.
19017         * m4/xreadlink.m4 (gl_XREADLINK): Require gt_TYPE_SSIZE_T.
19018
19019 2003-06-22  Bruno Haible  <bruno@clisp.org>
19020
19021         * modules/safe-read: Add m4/ssize_t.m4.
19022         * modules/xreadlink: Add m4/ssize_t.m4.
19023
19024 2003-06-20  Bruno Haible  <bruno@clisp.org>
19025
19026         Assume C89, so PARAMS isn't needed.
19027         * lib/unicodeio.h (PARAMS): Remove.
19028         * lib/unicodeio.c: Don't use PARAMS.
19029
19030 2003-06-18  Karl Berry  <karl@gnu.org>
19031
19032         * config/config.{guess,sub}: update from prep.
19033
19034 2003-06-18  Jim Meyering  <jim@meyering.net>
19035
19036         Merge changes from coreutils.
19037         * lib/readutmp.c: Include <string.h> and <stdlib.h> unconditionally.
19038         Remove explicit declarations of xmalloc and realloc.
19039         Include xalloc.h.
19040         (read_utmp): Remove anachronistic cast of xmalloc.
19041
19042 2003-06-17  Paul Eggert  <eggert@twinsun.com>
19043
19044         Assume C89, so PARAMS isn't needed.
19045         * lib/backupfile.h (PARAMS): Remove.  All uses removed.
19046         * lib/closeout.h, lib/dirname.h, lib/filemode.h, lib/fsusage.h,
19047         lib/getdate.h, lib/getline.h, lib/group-member.h, lib/hard-locale.h,
19048         lib/hash.h, lib/linebuffer.h, lib/long-options.h, lib/makepath.h,
19049         lib/memcasecmp.h, lib/memcoll.h, lib/modechange.h, lib/mountlist.h,
19050         lib/path-concat.h, lib/physmem.h, lib/posixtm.h, lib/quote.h,
19051         lib/readutmp.h, lib/same.h, lib/save-cwd.h, lib/savedir.h,
19052         lib/stdio-safer.h, lib/strtoimax.c, lib/strverscmp.h,
19053         lib/unistd-safer.h, lib/version-etc.h, lib/xalloc.h, lib/xreadlink.h,
19054         lib/xstrtod.h, lib/xstrtol.h: Likewise.
19055         * lib/filemode.h, lib/hard-locale.h, lib/memcoll.h, lib/modechange.h,
19056         lib/physmem.h, lib/same.h, lib/strverscmp.h: Do not include config.h;
19057         no longer needed. Anyway, config.h should always be included before any
19058         other file.
19059
19060 2003-06-11  Simon Josefsson  <jas@extundo.com>
19061
19062         * modules/sysexits: New file.
19063         * MODULES.html.sh (func_all_modules): Add sysexits.
19064
19065 2003-06-11  Simon Josefsson  <jas@extundo.com>
19066
19067         * lib/sysexit_.h: New file.
19068
19069 2003-06-11  Derek Price  <derek@ximbiot.com>
19070
19071         * lib/stat.c [LSTAT]: Compile/use slash_aware_lstat only if it is
19072         necessary.
19073
19074 2003-06-11  Bruno Haible  <bruno@clisp.org>
19075
19076         * m4/sysexits.m4: New file.
19077
19078 2003-06-10  Simon Josefsson  <jas@extundo.com>
19079
19080         * lib/argp.h: New file, from glibc.
19081         * lib/argp-ba.c: New file, from glibc.
19082         * lib/argp-eexst.c: New file, from glibc.
19083         * lib/argp-fmtstream.c: New file, from glibc.
19084         * lib/argp-fmtstream.h: New file, from glibc.
19085         * lib/argp-fs-xinl.c: New file, from glibc.
19086         * lib/argp-help.c: New file, from glibc.
19087         * lib/argp-namefrob.h: New file, from glibc.
19088         * lib/argp-parse.c: New file, from glibc.
19089         * lib/argp-pv.c: New file, from glibc.
19090         * lib/argp-pvh.c: New file, from glibc.
19091         * lib/argp-xinl.c: New file, from glibc.
19092
19093 2003-06-10  Simon Josefsson  <jas@extundo.com>
19094
19095         * modules/strchrnul: New file.
19096
19097 2003-06-10  Simon Josefsson  <jas@extundo.com>
19098
19099         * modules/argp: New file.
19100
19101 2003-06-10  Simon Josefsson  <jas@extundo.com>
19102
19103         * m4/strchrnul.m4: New file.
19104
19105 2003-06-10  Simon Josefsson  <jas@extundo.com>
19106
19107         * lib/strchrnul.h: New file.
19108         * lib/strchrnul.c: New file.
19109
19110 2003-06-10  Bruno Haible  <bruno@clisp.org>
19111
19112         * MODULES.html.sh (func_all_modules): Add strchrnul and argp.
19113
19114 2003-06-07  Karl Berry  <karl@gnu.org>
19115
19116         * config/config.{guess,sub}: update from prep.
19117
19118 2003-06-07  Jim Meyering  <jim@meyering.net>
19119
19120         * modules/strtod: Use $(...) notation, not @...@ for
19121         AC_REPLACE'd variables.
19122         * modules/localcharset: Likewise.
19123
19124 2003-06-07  Jim Meyering  <jim@meyering.net>
19125
19126         * lib/readtokens.h: Put `Free Software Foundation, Inc.'
19127         in place of my name in the copyright comment.
19128         Remove definition and uses of __P.
19129
19130         From coreutils.
19131         * lib/stat.c: Don't declare xmalloc explicitly.
19132         Instead, include "xalloc.h".
19133         * lib/readtokens.c (readtokens): Remove anachronistic casts of xmalloc,
19134         xrealloc, and xcalloc return values.
19135         * lib/xgetcwd.c (xgetcwd): Include "xgetcwd.h".
19136         Improve comment.
19137         * lib/xgetcwd.h: Remove definition/uses of PARAMS.
19138
19139 2003-06-07  Bruno Haible  <bruno@clisp.org>
19140
19141         * modules/poll (Makefile.am): Use explicit creation rule for poll.h, to
19142         avoid AC_CONFIG_LINKS.
19143         * modules/fnmatch (Makefile.am): Use explicit creation rule for
19144         fnmatch.h, to avoid AC_CONFIG_LINKS.
19145         * modules/alloca (Makefile.am): Make creation of alloca.h Ctrl-C safe.
19146
19147 2003-06-07  Bruno Haible  <bruno@clisp.org>
19148
19149         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH, gl_FUNC_FNMATCH_POSIX,
19150         gl_FUNC_FNMATCH_GNU): Set FNMATCH_H instead of invoking
19151         AC_CONFIG_LINKS. Needed to allow for a different name of the lib
19152         directory.
19153         * m4/poll.m4 (gl_FUNC_POLL): Set POLL_H instead of invoking
19154         AC_CONFIG_LINKS. Needed to allow for a different name of the lib
19155         directory.
19156
19157 2003-06-06  Jim Meyering  <jim@meyering.net>
19158
19159         Merge from coreutils.
19160         * lib/same.c: (same_name): Declare *_basename locals to be `const'.
19161         Consolidate declarations and initializations of *_base* locals.
19162
19163         Merge from coreutils.
19164         This avoids a core dump on systems without GNU putenv,
19165         when running `env -u SOME_ALREADY_UNSET_VARIABLE'.
19166         * lib/putenv.c (__set_errno, LOCK, UNLOCK): Define.
19167         (unsetenv): New static function, from GNU libc.
19168         (rpl_putenv): Use it.
19169
19170         * lib/modechange.c: Remove trailing blanks.
19171
19172         Merge from coreutils.
19173         * lib/fsusage.c: Remove declaration of statfs.
19174         It conflicted with one from OSF/1 5.1 in <sys/mount.h>.
19175
19176         * lib/posixtm.c: Include <stdbool.h> unconditionally.
19177
19178 2003-06-06  Jim Meyering  <jim@meyering.net>
19179
19180         * lib/stdbool_.h: Renamed from stdbool.h.in.
19181
19182 2003-06-06  Jim Meyering  <jim@meyering.net>
19183             Bruno Haible  <bruno@clisp.org>
19184
19185         * modules/stdbool: Reflect renaming: stdbool.h.in -> stdbool_.h.
19186         Adjust Makefile.am snippet not to redirect directly to target.
19187         Use $(STDBOOL_H) notation, not @STDBOOL_H@ for AC_REPLACE'd variables.
19188
19189 2003-06-05  Paul Eggert  <eggert@twinsun.com>
19190
19191         * lib/mktime.c (__mktime_internal): When resolving a tm_isdst
19192         mismatch, look in future quarters as well as past.  This fixes a
19193         bug when processing fall-backwards gaps immediately after a long
19194         period of daylight-saving time.
19195
19196         * lib/mktime.c: Assume freestanding C89 or better.
19197         (HAVE_LIMITS_H): Remove.  Assume it's 1.
19198         (__P): Remove; not used.
19199         (CHAR_BIT, INT_MIN, INT_MAX): Remove; <limits.h> defines them.
19200         (mktime, not_equal_tm, print_tm, check_result,
19201         main): Use prototypes.  Use const * where appropriate.
19202         (main): Fix typo in testing code that uncovered by above changes.
19203         (Local Variables): Remove -DHAVE_LIMITS_H from compile-command.
19204
19205 2003-06-04  Paul Eggert  <eggert@twinsun.com>
19206
19207         * m4/human.m4 (gl_HUMAN): Require AM_STDBOOL_H.  Check for
19208         locale.h, localeconv.  This merges changes from coreutils.
19209
19210         * m4/mktime.m4 (AC_FUNC_MKTIME): New macro, taken from Autoconf CVS.
19211         It can be removed after the next Autoconf is released.
19212         * m4/exclude.m4 (gl_EXCLUDE): Don't check for sys/types.h; no loner
19213         needed.
19214
19215 2003-06-04  Paul Eggert  <eggert@twinsun.com>
19216
19217         * lib/mktime.c: Fix Debian bug 177940
19218         <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=177940>.
19219         (localtime_offset): Now long int, not time_t, because we want it
19220         to be guaranteed to be signed.  All uses changed.
19221         (__mktime_internal): If overflow would occur when adding offset,
19222         don't add it.
19223
19224         Merge 'human' changes from coreutils.  Rewrite to support
19225         locale-specific notations like thousands separators.
19226         * lib/human.c: Simplify authorship notice.
19227         Include human.h immediately after config.h.
19228         <sys/types.h>, <stdio.h>: Do not include; no longer needed.
19229         <limits.h>: Do not include, since human.h does.
19230         (SIZE_MAX, UINTMAX_MAX): New macros.
19231         <strings.h>: Include if HAVE_STRINGS_H, not if !HAVE_STRING_H.
19232         <locale.h>: Include if HAVE_LOCALE_H and HAVE_LOCALECONV.
19233         (HUMAN_READABLE_SUFFIX_LENGTH_MAX): New macro.
19234         (power_letter): Renamed from suffixes.
19235         (generate_suffix_backwards): Remove.
19236         (adjust_value): Now takes int style (because of human.h changes)
19237         and long double value (for greater precision on some platforms).
19238         (group_number): New function.
19239         (human_readable): Use it.  Use integer options, not enum.
19240         Put the options before the sizes in the arg list.
19241         Support all the new options.
19242         The old human_readable function has been removed;
19243         use inttostr.h instead.
19244         (human_readable, default_block_size, humblock):
19245         Use uintmax_t, not int, for block sizes.
19246         (human_readable_inexact, block_size_types): Remove.
19247         (block_size_opts): New constant.
19248         (human_options): Renamed from human_block_size, with new signature
19249         that allows block sizes up to UINTMAX_MAX.  All callers changed.
19250         * lib/human.h: Add copyright and authorship notice.
19251         Include <limits.h> and <stdbool.h> unconditionally.
19252         (PARAMS): Remove.  All uses removed.
19253         (LONGEST_HUMAN_READABLE): Add support for thousands separator.
19254         (enum human_inexact_style): Remove tag; now a nameless enum.
19255         (human_floor, human_ceiling, human_round_to_even): Now have
19256         values 2, 0, 1 rather than -1, 1, 0.
19257         (human_group_digits, human_suppress_point_zero, human_autoscale,
19258         human_base_1024, human_SI, human_B): New constants.
19259         (human_readable_inexact, human_block_size): Remove.
19260         (human_readable): Size args are now uintmax_t, not int.
19261         (human_options): New decl.
19262
19263         * lib/exclude.c: (new_exclude, add_exclude): Remove casts that are
19264         unnecessary now that we assume C89 or better.  This change
19265         imported from coreutils.
19266
19267         * lib/mktime.c (__mktime_internal): Do not reject negative timestamps
19268         arbitrarily.  This is the same patch as 2003-05-28, but it got lost
19269         in the 2003-05-30 sync from glibc.
19270
19271         .h files should stand alone, but we shouldn't include <sys/types.h>
19272         if we can get away with just <stddef.h>.
19273
19274         * lib/__fpending.h, addext.c, backupfile.c, exclude.c, getline.c,
19275         malloc.c, putenv.c, realloc.c, strcasecmp.c: Include <stddef.h>
19276         rather than <sys/types.h>, as we merely need size_t.
19277         * lib/dirname.h, memcoll.h, xalloc.h, xmemcoll.h: Include <stddef.h>,
19278         to get size_t.
19279         * lib/hash.h, linebuffer.h, readtokens.h, stdio-safer.h, version-etc.h:
19280         Include <stdio.h>, to get FILE.
19281         * lib/memcasecmp.c: Don't include <sys/types.h>, as we can assume
19282         memcasecmp.h has included <stddef.h> and all we need is size_t.
19283         * lib/memcoll.c: Include "memcoll.h", which gets us size_t and checks
19284         our interface, instead of including <sys/types.h>
19285
19286 2003-06-04  Paul Eggert  <eggert@twinsun.com>
19287
19288         * config/srclist.txt ($LIBCSRC/time/mktime.c lib gpl): Comment out for
19289         now, as glibc mktime is buggy on non-glibc systems.
19290
19291 2003-06-03  Karl Berry  <karl@gnu.org>
19292
19293         * config/config.sub: update from prep.
19294
19295 2003-06-02  Paul Eggert  <eggert@twinsun.com>
19296
19297         [from coreutils]
19298         Fix some minor time-related bugs with POSIX time arguments.
19299         Some valid time stamps were being rejected (notably -1, and
19300         time stamps before 1900 on 64-bit hosts).  And some invalid
19301         time stamps were being accepted, e.g. September 31.
19302
19303         * lib/posixtm.h (posixtime): Return bool instead of time_t, so
19304         that we can return (time_t) -1 successfully.
19305         * lib/posixtm.c: Likewise.
19306         [HAVE_STDBOOL_H]: Include <stdbool.h>.
19307         (bool, false, true) [!HAVE_STDBOOL_H]: New type.
19308         (t): Remove static var.
19309         (year, posix_time_parse): Now takes struct tm * arg to modify, instead
19310         of static var.  All uses changed.
19311         (year): Do not reject years before 1900; they can occur with
19312         64-bit time_t.
19313         (posix_time_parse): Do not check for out-of-range components;
19314         that is now the caller's responsibility, since our checks were
19315         only approximations.
19316         (posixtime): Use mktime to check for out-of-range components,
19317         since it knows them exactly.
19318         If mktime returns (time_t) -1, check whether an error actually occurred
19319         by invoking localtime on -1.
19320         (main) [TEST_POSIXTIME]: Check for input data errors, and report
19321         posixtime failures better.
19322         Improve the test data (in comments only).
19323
19324 2003-06-02  Karl Berry  <karl@gnu.org>
19325
19326         * config/mkinstalldirs (version): new variable.
19327         (--version): new option.
19328         (usage): improve message.
19329
19330 2003-05-30  Karl Berry  <karl@gnu.org>
19331
19332         * lib/mktime.c: update from libc.
19333
19334 2003-05-30  Bruno Haible  <bruno@clisp.org>
19335
19336         * modules/gettext: Add files m4/nls.m4 and m4/po.m4.
19337         * config/config.rpath: Upgrade to gettext-0.12.1.
19338
19339 2003-05-30  Bruno Haible  <bruno@clisp.org>
19340
19341         * m4/gettext.m4: Upgrade to gettext-0.12.1.
19342         * m4/nls.m4: New file, from gettext-0.12.1.
19343         * m4/po.m4: New file, from gettext-0.12.1.
19344         * m4/progtest.m4: Upgrade to gettext-0.12.1.
19345
19346 2003-05-30  Bruno Haible  <bruno@clisp.org>
19347
19348         * lib/config.charset: Upgrade to gettext-0.12.1 and libiconv-1.9.1.
19349         * lib/localcharset.h: Likewise.
19350         * lib/localcharset.c: Likewise.
19351
19352 2003-05-29  Karl Berry  <karl@gnu.org>
19353
19354         * config/config.rpath: update from gettext.
19355
19356 2003-05-28  Paul Eggert  <eggert@twinsun.com>
19357
19358         Assume the headers required for C89 freestanding compilers.
19359         * m4/backupfile.m4 (gl_BACKUPFILE): Don't check for limits.h.
19360         * m4/fsusage.m4 (gl_PREREQ_FSUSAGE_EXTRA): Likewise.
19361         * m4/human.m4 (gl_HUMAN): Likewise.
19362         * m4/pathmax.m4 (gl_PATHMAX): Likewise.
19363         * m4/rpmatch.m4 (gl_FUNC_RPMATCH): Likewise.
19364         * m4/userspec.m4 (gl_USERSPEC): Likewise.
19365         * m4/xreadlink.m4 (gl_XREADLINK): Likewise.
19366         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
19367         * m4/quote.m4 (gl_QUOTE): Don't check for stddef.h.
19368
19369 2003-05-28  Paul Eggert  <eggert@twinsun.com>
19370
19371         Assume the headers required for C89 freestanding compilers.
19372         * lib/addext.c, lib/backupfile.c, lib/fsusage.c, lib/human.c,
19373         lib/pathmax.h, lib/rpmatch.c, lib/userspec.c, lib/xreadlink.c,
19374         lib/xstrtol.c: Include <limits.h> without checking for HAVE_LIMITS_H.
19375         * lib/backupfile.c, lib/fsusage.c, lib/hash.c, lib/human.c,
19376         lib/safe-read.c, lib/userspec.c, lib/xstrtol.c (CHAR_BIT): Don't
19377         define, since <limits.h> is guaranteed to do that.
19378         * lib/fatal.c: Include <stdarg.h> without checking for __STDC__.
19379         * lib/exclude.c: Include <stdbool.h> unconditionally.
19380         * lib/tempname.c: Include <stddef.h> unconditionally.
19381         * lib/hash.c: Include <limits.h>, since we no longer define CHAR_BIT.
19382         * lib/modechange.c, rpmatch.c (NULL): Don't define, since
19383         <stddef.h> does that.
19384         * lib/quote.c: Dont include <stddef.h> or <sys/types.h>; not needed.
19385         * lib/safe-read.c (INT_MAX): Don't define, since <limits.h> does that.
19386         * lib/safe-read.c (TYPE_MINIMUM, TYPE_MAXIMUM): Remove; no longer
19387         needed.
19388         * lib/xstrtol.c: Likewise.
19389         * lib/safe-read.c: Remove TYPE_SIGNED; no longer needed.
19390         * lib/savedir.c: Include <stddef.h> instead of defining NULL.
19391
19392         * lib/addext.c (addext): Use assignment rather than cast, to avoid
19393         warnings on some platforms.
19394
19395         * lib/mktime.c (__mktime_internal): Do not reject negative timestamps
19396         arbitrarily.
19397
19398 2003-05-26  Jim Meyering  <jim@meyering.net>
19399
19400         Merge in a change from coreutils:
19401         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Test the cache variable, not one
19402         that is guaranteed to be `no'.  Use `no_such_member' to indicate
19403         that condition, rather than `-1' which is slightly misleading.
19404         Change the name of the cache variable to have the gl_ prefix.
19405         Prompted by a patch from Richard Dawe for DJGPP.
19406
19407 2003-05-24  Karl Berry  <karl@gnu.org>
19408
19409         * config/config.guess: update from prep.
19410
19411 2003-05-22  Karl Berry  <karl@gnu.org>
19412
19413         * gnulib-tool (func_usage): =LIBRARY not =libRARY in help msg.
19414
19415 2003-05-20  Karl Berry  <karl@gnu.org>
19416
19417         * config/config.guess: update from prep.
19418
19419 2003-05-18  Karl Berry  <karl@gnu.org>
19420
19421         * config/srclistvars.sh (TEXMF): use TEXMFROOT instead, since TEXMF
19422         might actually be set by the user.
19423
19424         * config/depcomp, install-sh, mdate-sh: update from automake.
19425
19426 2003-05-17  Bruno Haible  <bruno@clisp.org>
19427
19428         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Fix a quoting bug leading to an
19429         invalid expansion for AC_EGREP_CPP.
19430         * m4/strtoimax.m4 (gl_FUNC_STRTOIMAX): Likewise.
19431         * m4/strtoumax.m4 (gl_FUNC_STRTOUMAX): Likewise.
19432         Suggested by Akim Demaille <akim@epita.fr> in
19433         http://mail.gnu.org/archive/html/bug-autoconf/2003-05/threads.html
19434
19435 2003-05-12  Jim Meyering  <jim@meyering.net>
19436
19437         * lib/strftime.c (my_strftime): Let the `-' (no-pad) flag affect
19438         the space-padded-by-default conversion specifiers, %e, %k, %l.
19439
19440 2003-05-12  Bruno Haible  <bruno@clisp.org>
19441
19442         * lib/linebreak.c (iconv_string_length): Don't return -1 just because
19443         the string is longer than 4 KB.
19444
19445 2003-05-11  Karl Berry  <karl@gnu.org>
19446
19447         * config/config.{guess,sub}: update from prep.
19448
19449 2003-05-09  Bruno Haible  <bruno@clisp.org>
19450
19451         * modules/error: Add m4/strerror_r.m4 to file list.
19452
19453 2003-05-03  Bruno Haible  <bruno@clisp.org>
19454
19455         Upgrade to Unicode-4.0.
19456         * lib/linebreak.c (nonspacing_table_data): Change width of U+00AD,
19457         U+0350..U+0357, U+035D..U+035F, U+0600..U+0603, U+0610..U+0615,
19458         U+0656..U+0658, U+0A01, U+0AE2..U+0AE3, U+0CBC, U+17B4..U+17B5,
19459         U+17DD, U+1920..U+1922, U+1927..U+192B, U+1932, U+1939..U+193B
19460         from 1 to 0. Change width of U+0CBF, U+0CC6, U+180E from 0 to 1.
19461         (uc_width): Change width of U+4DC0..U+4DFF from 2 to 1. Change width
19462         of U+2A6D7..U+2F7FF, U+2FA1E..U+2FFFD, U+30000..U+3FFFD from 1 to 2.
19463         Change width of U+E0100..U+E01EF from 1 to 0.
19464
19465 2003-04-25  Jim Meyering  <jim@meyering.net>
19466
19467         * lib/copy-file.c (copy_file_preserving): Declare buf_size to be
19468         of type size_t, not int.
19469
19470 2003-04-25  Bruno Haible  <bruno@clisp.org>
19471
19472         * lib/copy-file.c: Include <stddef.h>, for size_t.
19473
19474 2003-04-21  Paul Eggert  <eggert@twinsun.com>
19475
19476         * m4/error.m4 (gl_ERROR): Do not put under dynamic conditions some
19477         code which expansion is under static control.  Patch imported from
19478         Akim Demaille's patch to Bison; see
19479         <http://mail.gnu.org/archive/html/bison-patches/2003-03/msg00057.html>.
19480
19481 2003-04-14  Bruno Haible  <bruno@clisp.org>
19482
19483         * m4/error.m4 (jm_PREREQ_ERROR): Use AC_FUNC_VPRINTF.
19484
19485 2003-04-11  Jim Meyering  <jim@meyering.net>
19486
19487         Merge changes from Coreutils.
19488
19489         2003-03-22  Jim Meyering  <jim@meyering.net>
19490
19491         * lib/strftime.c (widen): Cast alloca return value to proper type.
19492
19493         2003-01-19  Ulrich Drepper  <drepper@redhat.com>
19494
19495         From GNU libc.
19496         * lib/strftime.c (my_strftime): Handle very large width
19497         specifications for numeric values correctly.  Improve checks for
19498         overflow.
19499
19500         2003-01-19  Jim Meyering  <jim@meyering.net>
19501
19502         * lib/strftime.c (widen) [COMPILE_WIDE]: Merge nearly-identical
19503         definitions.
19504         (nl_get_alt_digit) [! defined my_strftime]: Define.
19505         (my_strftime) [_NL_CURRENT]: Merge nearly-identical uses of
19506         _nl_get_alt_digit and _nl_get_walt_digit.
19507
19508         * lib/strftime.c (my_strftime): Merge in locale-related changes from
19509         libc. These changes have no effect outside of _LIBC.
19510
19511 2003-04-10  Bruno Haible  <bruno@clisp.org>
19512
19513         * modules/findprog: New file.
19514         * MODULES.html.sh (func_all_modules): Add it.
19515
19516 2003-04-10  Bruno Haible  <bruno@clisp.org>
19517
19518         * m4/findprog.m4: New file.
19519         * m4/eaccess.m4: New file.
19520
19521 2003-04-10  Bruno Haible  <bruno@clisp.org>
19522
19523         * lib/findprog.h: New file, from GNU gettext.
19524         * lib/findprog.c: New file, from GNU gettext.
19525
19526 2003-04-05  Jim Meyering  <jim@meyering.net>
19527
19528         Merge changes from Coreutils.
19529
19530         * lib/exclude.h (PARAMS): Remove definition and uses.
19531         * lib/exclude.c: Remove uses of `PARAMS'.
19532
19533         * lib/dirname.c [TEST_DIRNAME]: Update build instructions for test.
19534         Add test-cases for DOS filenames. Declare program_name.
19535         (main): Set up program_name.  Patch by Rich Dawe.
19536
19537         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
19538         error from mntctl.
19539         Use mntctl's return value to drive the entry-processing loop, since
19540         we can't rely on the value of the vmt_length member in the last
19541         entry.  On some systems doing so could result in exhausting
19542         virtual memory.  Based in part on a patch from Mike Jetzer.
19543
19544 2003-04-04  Bruno Haible  <bruno@clisp.org>
19545
19546         * modules/linebreak: New file.
19547         * MODULES.html.sh (func_all_modules): Add it.
19548
19549 2003-04-04  Bruno Haible  <bruno@clisp.org>
19550
19551         * m4/linebreak.m4: New file.
19552
19553 2003-04-04  Bruno Haible  <bruno@clisp.org>
19554
19555         * lib/linebreak.h: New file, from GNU gettext.
19556         * lib/linebreak.c: New file, from GNU gettext with slight
19557         modifications.
19558         * lib/lbrkprop.h: New file, from GNU gettext.
19559
19560 2003-04-03  Bruno Haible  <bruno@clisp.org>
19561
19562         * modules/utf8-ucs4: New file.
19563         * modules/utf16-ucs4: New file.
19564         * modules/ucs4-utf8: New file.
19565         * modules/ucs4-utf16: New file.
19566         * MODULES.html.sh (func_all_modules): Add them.
19567
19568 2003-04-03  Bruno Haible  <bruno@clisp.org>
19569
19570         * m4/utf-ucs4.m4: New file.
19571         * m4/ucs4-utf.m4: New file.
19572
19573 2003-04-03  Bruno Haible  <bruno@clisp.org>
19574
19575         * lib/utf8-ucs4.h: New file, from GNU gettext.
19576         * lib/utf16-ucs4.h: New file, from GNU gettext.
19577         * lib/ucs4-utf8.h: New file, from GNU gettext.
19578         * lib/ucs4-utf16.h: New file, from GNU gettext.
19579
19580 2003-04-02  Bruno Haible  <bruno@clisp.org>
19581
19582         * modules/binary-io: New file.
19583         * MODULES.html.sh (func_all_modules): Add it.
19584
19585 2003-04-02  Bruno Haible  <bruno@clisp.org>
19586
19587         * lib/binary-io.h: New file, from GNU gettext.
19588
19589 2003-04-01  Bruno Haible  <bruno@clisp.org>
19590
19591         * modules/pathname: New file.
19592         * MODULES.html.sh (func_all_modules): Add it.
19593
19594 2003-04-01  Bruno Haible  <bruno@clisp.org>
19595
19596         * lib/pathname.h: New file, from GNU gettext.
19597         * lib/concatpath.c: New file, from GNU gettext.
19598
19599 2003-03-30  Bruno Haible  <bruno@clisp.org>
19600
19601         * m4/copy-file.m4 (gl_COPY_FILE): Add check for chown().
19602
19603 2003-03-30  Bruno Haible  <bruno@clisp.org>
19604
19605         * lib/copy-file.c (copy_file_preserving): Don't set owner if the
19606         function chown() doesn't exist.
19607
19608 2003-03-28  Bruno Haible  <bruno@clisp.org>
19609
19610         * modules/copy-file: New file.
19611         * MODULES.html.sh (func_all_modules): Add it.
19612
19613 2003-03-28  Bruno Haible  <bruno@clisp.org>
19614
19615         * m4/copy-file.m4: New file.
19616
19617 2003-03-28  Bruno Haible  <bruno@clisp.org>
19618
19619         * lib/copy-file.h: New file, from GNU gettext.
19620         * lib/copy-file.c: New file, from GNU gettext.
19621
19622 2003-03-18  Jim Meyering  <jim@meyering.net>
19623
19624         * lib/quote.c (quote_n): Fix typo in comment.
19625
19626 2003-03-18  Bruno Haible  <bruno@clisp.org>
19627
19628         * m4/onceonly.m4: Use m4_defn instead of defn, for better error
19629         checking.
19630         * m4/onceonly_2_57.m4: Likewise.
19631
19632 2003-03-17  Bruno Haible  <bruno@clisp.org>
19633
19634         * m4/onceonly.m4: Require autoconf 2.54 or newer.
19635         (m4_quote): Remove macro.
19636         * m4/onceonly_2_57.m4: Require autoconf 2.54 or newer.
19637
19638 2003-03-14  Jim Meyering  <jim@meyering.net>
19639
19640         Merge changes from Coreutils.
19641         * lib/obstack.h (obstack_object_size): Declare temporary, __o,
19642         to be const, in order to avoid warnings.
19643         (obstack_room): Likewise.
19644         (obstack_empty_p): Likewise.
19645
19646 2003-03-14  Bruno Haible  <bruno@clisp.org>
19647
19648         * m4/onceonly_2_57.m4 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE,
19649         AC_CHECK_DECLS_ONCE): Quote AC_FOREACH variable-expansions properly.
19650
19651 2003-03-13  Paul Eggert  <eggert@twinsun.com>
19652
19653         Merge changes from Bison.
19654         * lib/obstack.h: (__INT_TO_PTR) [__STDC__]: Cast result to
19655         (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
19656         when compiling Bison 1.875's `bitset bset = obstack_alloc
19657         (bobstack, bytes);'.  Problem reported by Nelson H. F. Beebe.
19658         * lib/hash.c: Include <stdbool.h> unconditionally.
19659
19660 2003-03-13  Paul Eggert  <eggert@twinsun.com>
19661
19662         * m4/onceonly.m4 (m4_quote): New macro.
19663         (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
19664         Quote AC_FOREACH variable-expansions properly.
19665
19666 2003-03-13  Paul Eggert  <eggert@twinsun.com>
19667
19668         * doc/COPYING.DOC, fdl.texi: Sync with latest FSF version.
19669
19670 2003-03-09  Paul Eggert  <eggert@twinsun.com>
19671
19672         * lib/argmatch.c (EXIT_FAILURE): Define if the system doesn't.
19673         Reported by Bruce Becker; see:
19674         http://mail.gnu.org/archive/html/bug-bison/2003-03/msg00017.html
19675
19676 2003-03-03  Paul Eggert  <eggert@twinsun.com>
19677             Bruno Haible  <bruno@clisp.org>
19678
19679         * lib/mbswidth.h: Include <wchar.h>. Needed for UnixWare 7.1.1.
19680         Reported by John Hughes, see
19681         http://mail.gnu.org/archive/html/bug-bison/2003-02/msg00030.html
19682
19683 2003-02-20  Bruno Haible  <bruno@clisp.org>
19684
19685         * MODULES.html.sh (func_all_modules): Add poll.
19686
19687 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
19688
19689         * modules/poll: New file.
19690
19691 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
19692
19693         * lib/poll_.h: New file.
19694         * lib/poll.c: New file.
19695
19696 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
19697
19698         * m4/poll.m4: New file.
19699
19700 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
19701
19702         * modules/mathl: New file.
19703
19704 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
19705
19706         * lib/mathl.h: New file.
19707         * lib/acosl.c: New file.
19708         * lib/asinl.c: New file.
19709         * lib/atanl.c: New file.
19710         * lib/ceill.c: New file.
19711         * lib/cosl.c: New file.
19712         * lib/expl.c: New file.
19713         * lib/floorl.c: New file.
19714         * lib/frexpl.c: New file.
19715         * lib/ldexpl.c: New file.
19716         * lib/logl.c: New file.
19717         * lib/sincosl.c: New file.
19718         * lib/sinl.c: New file.
19719         * lib/sqrtl.c: New file.
19720         * lib/tanl.c: New file.
19721         * lib/trigl.c: New file.
19722         * lib/trigl.h: New file.
19723
19724 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
19725
19726         * m4/mathl.m4: New file.
19727
19728 2003-02-18  Bruno Haible  <bruno@clisp.org>
19729
19730         * MODULES.html.sh (func_all_modules): Add mathl.
19731
19732 2003-02-17  Bruno Haible  <bruno@clisp.org>
19733
19734         * modules/mkdtemp: New module.
19735         * MODULES.html.sh (func_all_modules): Add it.
19736
19737 2003-02-17  Bruno Haible  <bruno@clisp.org>
19738
19739         * m4/mkdtemp.m4: New file, from GNU gettext with modifications.
19740
19741 2003-02-17  Bruno Haible  <bruno@clisp.org>
19742
19743         * lib/mkdtemp.h: New file, from GNU gettext.
19744         * lib/mkdtemp.c: New file, from GNU gettext.
19745
19746 2003-02-02  Jim Meyering  <jim@meyering.net>
19747
19748         * m4/regex.m4 (jm_INCLUDED_REGEX): Detect broken re_search in
19749         e.g. glibc-2.2.93.
19750
19751 2003-01-31  Bruno Haible  <bruno@clisp.org>
19752
19753         * m4/rename.m4 (vb_FUNC_RENAME): Add a redirection from 'rename' to
19754         'rpl_rename'.
19755         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Add a redirection from 'strnlen' to
19756         'rpl_strnlen'.
19757         * m4/strtod.m4 (gl_FUNC_STRTOD): Add a redirection from 'strtod' to
19758         'rpl_strtod'.
19759         * m4/utime.m4 (jm_FUNC_UTIME): Add a redirection from 'utime' to
19760         'rpl_utime'.
19761
19762 2003-01-31  Bruno Haible  <bruno@clisp.org>
19763
19764         * lib/rename.c: #undef rename before defining rpl_rename.
19765         * lib/strnlen.c: #undef strnlen, define rpl_strnlen instead of strnlen.
19766
19767 2003-01-30  Bruno Haible  <bruno@clisp.org>
19768
19769         * modules/vasnprintf, modules/vasprintf: New modules.
19770         * MODULES.html.sh (func_all_modules): Add them.
19771
19772 2003-01-30  Bruno Haible  <bruno@clisp.org>
19773
19774         * m4/signed.m4: New file, from GNU gettext.
19775         * m4/longdouble.m4: New file, from GNU gettext.
19776         * m4/wchar_t.m4: New file, from GNU gettext.
19777         * m4/wint_t.m4: New file, from GNU gettext.
19778         * m4/vasnprintf.m4: New file.
19779         * m4/vasprintf.m4: New file.
19780
19781 2003-01-30  Bruno Haible  <bruno@clisp.org>
19782
19783         * lib/printf-args.h: New file, from GNU gettext.
19784         * lib/printf-args.c: New file, from GNU gettext.
19785         * lib/printf-parse.h: New file, from GNU gettext.
19786         * lib/printf-parse.c: New file, from GNU gettext.
19787         * lib/vasnprintf.h: New file, from GNU gettext.
19788         * lib/vasnprintf.c: New file, from GNU gettext.
19789         * lib/asnprintf.c: New file, from GNU gettext.
19790         * lib/vasprintf.h: New file, from GNU gettext with modifications.
19791         * lib/vasprintf.c: New file, from GNU gettext.
19792         * lib/asprintf.c: New file, from GNU gettext.
19793
19794 2003-01-29  Bruno Haible  <bruno@clisp.org>
19795
19796         * modules/stpncpy: New module.
19797         * MODULES.html.sh (func_all_modules): Add it.
19798
19799 2003-01-29  Bruno Haible  <bruno@clisp.org>
19800
19801         * m4/stpncpy.m4: New file.
19802
19803 2003-01-29  Bruno Haible  <bruno@clisp.org>
19804
19805         * lib/stpncpy.h: New file, from GNU gettext with modifications.
19806         * lib/stpncpy.c: New file, from GNU gettext with modifications.
19807
19808 2003-01-28  Bruno Haible  <bruno@clisp.org>
19809
19810         * modules/c-ctype: New module.
19811         * MODULES.html.sh (func_all_modules): Add it.
19812
19813 2003-01-28  Bruno Haible  <bruno@clisp.org>
19814
19815         * lib/c-ctype.h: New file, from GNU gettext, with changes suggested by
19816         Paul Eggert.
19817         * lib/c-ctype.c: New file, from GNU gettext, with changes suggested by
19818         Paul Eggert.
19819
19820 2003-01-27  Bruno Haible  <bruno@clisp.org>
19821
19822         * modules/xsetenv: New module.
19823         * MODULES.html.sh (func_all_modules): Add it.
19824
19825 2003-01-27  Bruno Haible  <bruno@clisp.org>
19826
19827         * lib/xsetenv.h: New file, from GNU gettext.
19828         * lib/xsetenv.c: New file, from GNU gettext.
19829
19830 2003-01-23  Jim Meyering  <jim@meyering.net>
19831
19832         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Correct typo: s/-1/no/ that kept this
19833         from working on systems without dirfd (at least Irix and OSF1/Tru64).
19834
19835 2003-01-23  Bruno Haible  <bruno@clisp.org>
19836
19837         * modules/minmax: New module.
19838         * MODULES.html.sh (func_all_modules): Add it.
19839
19840 2003-01-23  Bruno Haible  <bruno@clisp.org>
19841
19842         * lib/minmax.h: New file, from GNU gettext, with comments from Paul
19843         Eggert.
19844
19845 2003-01-22  Bruno Haible  <bruno@clisp.org>
19846
19847         * modules/exit: New module.
19848         * MODULES.html.sh (func_all_modules): Add it.
19849
19850 2003-01-22  Bruno Haible  <bruno@clisp.org>
19851
19852         * lib/exit.h: New file, from GNU gettext.
19853
19854 2003-01-19  Bruno Haible  <bruno@clisp.org>
19855
19856         * gnulib-tool: Recognize option --extract-maintainer.
19857         (func_get_maintainer): New function.
19858         * modules/*: Add Maintainer entry.
19859
19860 2003-01-16  Jim Meyering  <jim@meyering.net>
19861
19862         * m4/regex.m4: The `regex' struct is both input and output.
19863         Initialize it before each use.  Patch by Tim Waugh.
19864
19865 2003-01-16  Bruno Haible  <bruno@clisp.org>
19866
19867         * MODULES.html.sh: Add a table of contents. Add the module name as
19868         leftmost column. Add hyperlinks.
19869
19870 2003-01-15  Bruno Haible  <bruno@clisp.org>
19871
19872         * m4/md5.m4 (gl_MD5): Require AC_C_INLINE.
19873
19874 2003-01-15  Bruno Haible  <bruno@clisp.org>
19875
19876         * m4/longlong.m4 (jm_AC_TYPE_LONG_LONG): Also test the LL suffix.
19877         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Also test the ULL
19878         suffix.
19879
19880 2003-01-15  Bruno Haible  <bruno@clisp.org>
19881
19882         * m4/alloca.m4 (gl_FUNC_ALLOCA): Invoke AC_EGREP_CPP prerequisites.
19883
19884 2003-01-15  Bruno Haible  <bruno@clisp.org>
19885
19886         * lib/stpcpy.h (stpcpy): Use ANSI C function declarations.
19887         * lib/strcase.h (strcasecmp, strncasecmp): Likewise.
19888
19889 2003-01-14  Jim Meyering  <jim@meyering.net>
19890
19891         * lib/same.c (same_name): Tweak a comment.
19892
19893 2003-01-14  Bruno Haible  <bruno@clisp.org>
19894
19895         * lib/same.c (same_name): Reorder tests so as to avoid calling stat()
19896         when a string comparison is sufficient.
19897
19898 2003-01-14  Bruno Haible  <bruno@clisp.org>
19899
19900         * lib/readtokens.c (readtoken): Cast character to 'unsigned char', not
19901         'unsigned int'.
19902
19903 2003-01-14  Bruno Haible  <bruno@clisp.org>
19904
19905         * lib/hash-pjw.c: Add comment about low quality of this function.
19906
19907 2003-01-13  Bruno Haible  <bruno@clisp.org>
19908
19909         * modules/stpcpy: Distribute lib/stpcpy.h.
19910         * modules/setenv: Depend on alloca. Distribute lib/setenv.h.
19911
19912 2003-01-13  Bruno Haible  <bruno@clisp.org>
19913
19914         * modules/*: Add a description.
19915         * modules/strpbrk: Fix Makefile.am snippet.
19916         * modules/strtoimax: Fix dependencies.
19917         * modules/strtoumax: Likewise.
19918
19919 2003-01-13  Bruno Haible  <bruno@clisp.org>
19920
19921         * gnulib-tool (func_create_testdir): Substitute lib_OBJECTS.
19922         * modules/alloca (Makefile.am): All object files depend on alloca.h.
19923         * modules/stdbool (Makefile.am): All object files depend on stdbool.h.
19924
19925 2003-01-13  Bruno Haible  <bruno@clisp.org>
19926
19927         * gnulib-tool (func_create_testdir): Store config/* files in the main
19928         directory.
19929         * config.rpath: Move to ...
19930         * config/config.rpath: ... here.
19931         * modules/gettext: Contains config/config.rpath, not config.rpath.
19932         * modules/iconv: Likewise.
19933
19934 2003-01-12  Paul Eggert  <eggert@twinsun.com>
19935
19936         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
19937         to avoid collisions with libcurses and libreadline.
19938
19939         * m4/getstr.m4: Remove.
19940         * m4/getline.m4 (gl_PREREQ_GETLINE): Require AC_HEADER_STDC.
19941
19942 2003-01-12  Paul Eggert  <eggert@twinsun.com>
19943
19944         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
19945         to avoid collisions with libcurses and libreadline.
19946
19947         * lib/Makefile.am (libfetish_a_SOURCES): Remove getstr.c, getstr.h.
19948         * lib/getstr.h, getstr.c: Remove.
19949         * lib/getline.c: Include "getline.h", to check interface.
19950         Move body of old getstr.c here: this defines MIN_CHUNK and
19951         declares getdelim2, which is renamed from getstr.
19952         (getline, getdelim): Adjust to renaming of getstr -> getdelim2.
19953
19954         * lib/linebuffer.c (readlinebuffer): Renamed from readline.
19955         All uses changed.
19956         * lib/linebuffer.h: Likewise.
19957         (readline): Remove backward-compatibility macro.
19958
19959 2003-01-12  Paul Eggert  <eggert@twinsun.com>
19960
19961         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
19962         to avoid collisions with libcurses and libreadline.
19963         * getstr: Remove.
19964         * MODULES.html.sh: Remove getstr.
19965         * modules/getline: Depend on unlocked-io, not getstr.
19966
19967 2003-01-12  Jim Meyering  <jim@meyering.net>
19968
19969         * lib/makepath.c: Don't test HAVE_ERRNO_H.  It's not necessary.
19970
19971 2003-01-10  Bruno Haible  <bruno@clisp.org>
19972
19973         * modules/alloca: Change Makefile.am requirements. Simplify Include
19974         requirements. Add lib/alloca_.h to file list.
19975
19976 2003-01-10  Bruno Haible  <bruno@clisp.org>
19977
19978         * m4/alloca.m4 (gl_FUNC_ALLOCA): Also define ALLOCA_H.
19979
19980 2003-01-10  Bruno Haible  <bruno@clisp.org>
19981
19982         * lib/alloca_.h: New file.
19983         * lib/getdate.y: Unconditionally include alloca.h.
19984         * lib/makepath.c: Likewise.
19985         * lib/setenv.c: Likewise.
19986         * lib/userspec.c: Likewise.
19987
19988 2003-01-09  Karl Berry  <karl@gnu.org>
19989
19990         * MODULES.html.sh: include `dirname $0` in PATH, to find
19991         gnulib-tool.
19992
19993 2003-01-09  Bruno Haible  <bruno@clisp.org>
19994
19995         * modules/stdbool: Change configure.ac, Makefile.am requirements.
19996         Simplify Include requirements. Add lib/stdbool.h.in to file list.
19997
19998 2003-01-09  Bruno Haible  <bruno@clisp.org>
19999
20000         * m4/stdbool.m4 (AM_STDBOOL_H): New macro.
20001
20002 2003-01-09  Bruno Haible  <bruno@clisp.org>
20003
20004         * lib/stdbool.h.in: New file.
20005
20006 2003-01-09  Bruno Haible  <bruno@clisp.org>
20007
20008         * gnulib-tool (func_all_modules): Ignore files ending in ~.
20009         * MODULES.html.sh: Likewise.
20010
20011 2003-01-08  Jim Meyering  <jim@meyering.net>
20012
20013         * lib/full-write.c: Undefine and define-away `const' after inclusion
20014         of errno.h, not before.  Suggestion from Bruno Haible.
20015
20016 2003-01-08  Bruno Haible  <bruno@clisp.org>
20017
20018         * modules/full-read: Depend on full-write.
20019
20020 2003-01-08  Bruno Haible  <bruno@clisp.org>
20021
20022         * lib/safe-read.c: Include specification header first, to ensure its
20023         selfcontainedness.
20024         * lib/full-write.c: Likewise.
20025
20026 2003-01-07  Jim Meyering  <jim@meyering.net>
20027
20028         * lib/full-write.c: Rework so that it may serve to define full_read,
20029         too.
20030         * lib/full-read.c: Simply #define FULL_READ and include full-write.c.
20031
20032 2003-01-07  Bruno Haible  <bruno@clisp.org>
20033
20034         * lib/strtoimax.c: Include <stdint.h> as an alternative to
20035         <inttypes.h>.
20036         * lib/xstrtol.h: Likewise.
20037         * lib/xstrtoimax.c: Likewise.
20038         * lib/xstrtoumax.c: Likewise.
20039         * lib/human.h: Likewise.
20040
20041         * lib/tempname.c: Include <inttypes.h> too. Avoids a compilation error
20042         on systems that have <inttypes.h> but not <stdint.h>.
20043
20044 2003-01-07  Bruno Haible  <bruno@clisp.org>
20045
20046         * MODULES.html.sh: Add copyright notice.
20047         (missed_files): Omit CVS directory entries.
20048         (func_module): Make it work with sed-3.02.
20049         * MODULES.txt: Remove file.
20050
20051 2003-01-06  Jim Meyering  <jim@meyering.net>
20052
20053         * lib/version-etc.c: Update year in translatable copyright string.
20054
20055 2003-01-03  Karl Berry  <karl@gnu.org>
20056
20057         * config/config.{guess,sub}: update from prep.
20058
20059 2003-01-02  Karl Berry  <karl@gnu.org>
20060
20061         * doc/COPYING.DOC: belatedly updated to 1.2.
20062
20063 2003-01-01  Karl Berry  <karl@gnu.org>
20064
20065         * gnulib-tool (func_verify_module): report module name $module in
20066         error message, not $1.
20067         * gnulib-tool (create-testdir): don't complain if destdir couldn't
20068         be created, only if it doesn't exist.
20069         * gnulib-tool (last_checkin_date): don't expand the $Date here.
20070
20071 2002-12-31  Paul Eggert  <eggert@twinsun.com>
20072
20073         * m4/memcoll.m4 (gl_MEMCOLL): Require AC_FUNC_MEMCMP.
20074
20075 2002-12-31  Paul Eggert  <eggert@twinsun.com>
20076
20077         * lib/memcoll.c (memcoll): Fall back on a simple algorithm using
20078         memcmp if strcoll doesn't work.
20079
20080 2002-12-31  Bruno Haible  <bruno@clisp.org>
20081
20082         * lib/utime.c (utime_null): No need to call ftruncate if the file was
20083         nonempty.
20084
20085 2002-12-31  Bruno Haible  <bruno@clisp.org>
20086
20087         * lib/memcoll.c (STRCOLL): New macro.
20088         (memcoll): Use it.
20089
20090 2002-12-31  Bruno Haible  <bruno@clisp.org>
20091
20092         * lib/localcharset.h: New file.
20093         * lib/localcharset.c: Include it.
20094         * lib/unicodeio.c: Likewise.
20095
20096 2002-12-31  Bruno Haible  <bruno@clisp.org>
20097
20098         * lib/getstr.h (getstr): Define, to avoid clash with libcurses.
20099         * lib/linebuffer.h (readline): Define, to avoid clash with libreadline.
20100
20101 2002-12-31  Bruno Haible  <bruno@clisp.org>
20102
20103         * lib/getline.h: Include <stddef.h>, for size_t.
20104
20105         * lib/unicodeio.h: Include <stddef.h>, for size_t.
20106         * lib/unicodeio.c: Don't include <stddef.h>.
20107
20108 2002-12-31  Bruno Haible  <bruno@clisp.org>
20109
20110         * lib/getdate.y (get_date): Test HAVE_STRUCT_TM_TM_ZONE, not
20111         HAVE_TM_ZONE.
20112
20113 2002-12-24  Karl Berry  <karl@gnu.org>
20114
20115         * config/config.guess: update from prep.
20116
20117 2002-12-24  Bruno Haible  <bruno@clisp.org>
20118
20119         General infrasructure.
20120         * m4/README: Rewritten.
20121         * m4/onceonly.m4: New file.
20122         * m4/onceonly_2_57.m4: New file.
20123
20124         Module atexit.
20125         * m4/atexit.m4: New file.
20126
20127         Module strtod.
20128         * m4/strtod.m4: New file.
20129
20130         Module strtol.
20131         * m4/strtol.m4: New file.
20132
20133         Module strtoul.
20134         * m4/strtoul.m4: New file.
20135
20136         Module memchr.
20137         * m4/memchr.m4: New file.
20138
20139         Module memcmp.
20140         * m4/memcmp.m4 (gl_PREREQ_MEMCMP): New macro.
20141         (jm_FUNC_MEMCMP): Invoke it.
20142
20143         Module memcpy.
20144         * m4/memcpy.m4: New file.
20145
20146         Module memmove.
20147         * m4/memmove.m4: New file.
20148
20149         Module memset.
20150         * m4/memset.m4: New file.
20151
20152         Module strcspn.
20153         * m4/strcspn.m4: New file.
20154
20155         Module strpbrk.
20156         * m4/strpbrk.m4: New file.
20157
20158         Module strstr.
20159         * m4/strstr.m4: New file.
20160
20161         Module strerror.
20162         * m4/strerror.m4: New file.
20163
20164         Module mktime.
20165         * m4/mktime.m4: Renamed from jm-mktime.m4.
20166         (gl_PREREQ_MKTIME): New macro.
20167         (gl_FUNC_MKTIME): Renamed from jm_FUNC_MKTIME. Invoke gl_PREREQ_MKTIME.
20168
20169         Module malloc.
20170         * m4/malloc.m4 (gl_PREREQ_MALLOC): New macro.
20171         (jm_FUNC_MALLOC): Use AC_FUNC_MALLOC. Invoke gl_PREREQ_MALLOC.
20172         Don't define HAVE_DONE_WORKING_MALLOC_CHECK, since nothing uses it.
20173
20174         Module realloc.
20175         * m4/realloc.m4 (gl_PREREQ_REALLOC): New macro.
20176         (jm_FUNC_REALLOC): Use AC_FUNC_REALLOC. Invoke gl_PREREQ_REALLOC.
20177         Don't define HAVE_DONE_WORKING_REALLOC_CHECK, since nothing uses it.
20178
20179         Module strftime.
20180         * m4/tm_gmtoff.m4: New file, extracted from strftime.m4.
20181         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Use AC_FUNC_STRFTIME.
20182         Don't test for bcopy (we are not emacs). Invoke AC_TYPE_MBSTATE_T and
20183         gl_TM_GMTOFF.
20184         (_jm_STRFTIME_PREREQS, jm_FUNC_GNU_STRFTIME): Use onceonly macros.
20185
20186         Module xalloc.
20187         * m4/xalloc.m4: New file.
20188
20189         Module alloca.
20190         * m4/alloca.m4: New file.
20191
20192         Module putenv.
20193         * m4/putenv.m4 (gl_PREREQ_PUTENV): New macro.
20194         (jm_FUNC_PUTENV): Invoke it.
20195
20196         Module setenv.
20197         * m4/setenv.m4 (gt_FUNC_SETENV): New macro.
20198         (gt_CHECK_VAR_DECL): Fix quoting error that led to infinite loop in m4
20199         when invoked twice.
20200         (gt_PREREQ_SETENV, gt_PREREQ_UNSETENV): New macros, replacing old
20201         gt_FUNC_SETENV.
20202
20203         Module memrchr.
20204         * m4/memrchr.m4: New file.
20205
20206         Module stpcpy.
20207         * m4/stpcpy.m4: New file.
20208
20209         Module strcase.
20210         * m4/strcase.m4: New file.
20211
20212         Module strdup.
20213         * m4/strdup.m4: New file.
20214
20215         Module strnlen.
20216         * m4/strnlen.m4: New file.
20217
20218         Module strndup.
20219         * m4/strndup.m4: New file.
20220
20221         Module xstrtod.
20222         * m4/xstrtod.m4: New file.
20223
20224         Module xstrtol.
20225         * m4/xstrtol.m4: New file.
20226
20227         Module getdate.
20228         * m4/getdate.m4: New file.
20229
20230         Module unlocked-io.
20231         * m4/unlocked-io.m4: Renamed from jm-glibc-io.m4.
20232         (jm_FUNC_GLIBC_UNLOCKED_IO): Invoke AC_GNU_SOURCE. Use onceonly macros.
20233         * m4/jm-glibc-io.m4n: Remove file.
20234
20235         Module long-options.
20236         * m4/long-options.m4: New file.
20237
20238         Module md5.
20239         * m4/md5.m4: New file.
20240
20241         Module sha.
20242         * m4/sha.m4: New file.
20243
20244         Module getstr.
20245         * m4/getstr.m4: New file.
20246
20247         Module getline.
20248         * m4/getline.m4 (gl_PREREQ_GETLINE): New macro.
20249         (AM_FUNC_GETLINE): Invoke AC_GNU_SOURCE. Use <stdlib.h>, not
20250         <sys/types.h>, for size_t. Use the function name gnu_getline, not
20251         simply getline. Infoke gl_PREREQ_GETLINE.
20252
20253         Module obstack.
20254         * m4/obstack.m4: New file.
20255
20256         Module hash.
20257         * m4/hash.m4: New file.
20258
20259         Module readtokens.
20260         * m4/readtokens.m4: New file.
20261
20262         Module strverscmp.
20263         * m4/strverscmp.m4: New file.
20264
20265         Module stdbool.
20266         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Add test for _Bool. Needed for
20267         OSF/1.
20268
20269         Module strtoll.
20270         * m4/strtoll.m4: New file.
20271
20272         Module strtoull.
20273         * m4/strtoull.m4: New file.
20274
20275         Module strtoimax.
20276         * m4/strtoimax.m4: New file.
20277
20278         Module strtoumax.
20279         * m4/strtoumax.m4: New file.
20280
20281         Module xstrtoimax.
20282         * m4/xstrtoimax.m4 (jm_XSTRTOIMAX): Renamed from
20283         jm_AC_PREREQ_XSTRTOIMAX.
20284         Moved the strtol prerequisites to strtol.m4.
20285         Moved the strtoll prerequisites to strtoll.m4.
20286         Moved the strtoimax prerequisites to strtoimax.m4.
20287
20288         Module xstrtoumax.
20289         * m4/xstrtoumax.m4 (jm_XSTRTOUMAX): Renamed from
20290         jm_AC_PREREQ_XSTRTOUMAX.
20291         Moved the strtoul prerequisites to strtoul.m4.
20292         Moved the strtoull prerequisites to strtoull.m4.
20293         Moved the strtoumax prerequisites to strtoumax.m4.
20294
20295         Module chown.
20296         * m4/chown.m4 (gl_PREREQ_CHOWN): New macro.
20297         (jm_FUNC_CHOWN): Use AC_FUNC_CHOWN. Invoke gl_PREREQ_CHOWN.
20298
20299         Module dup2.
20300         * m4/dup2.m4: New file.
20301
20302         Module ftruncate.
20303         * m4/ftruncate.m4 (gl_PREREQ_FTRUNCATE): New macro.
20304         (jm_FUNC_FTRUNCATE): Use AC_REPLACE_FUNCS. Invoke gl_PREREQ_FTRUNCATE.
20305
20306         Module getgroups.
20307         * m4/getgroups.m4 (gl_PREREQ_GETGROUPS): New macro.
20308         (jm_FUNC_GETGROUPS): Use AC_FUNC_GETGROUPS. Invoke gl_PREREQ_GETGROUPS.
20309
20310         Module gettimeofday.
20311         * m4/gettimeofday.m4 (gl_PREREQ_GETTIMEOFDAY): New macro.
20312         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Use onceonly macros. Invoke
20313         gl_PREREQ_GETTIMEOFDAY.
20314
20315         Module mkdir.
20316         * m4/mkdir-slash.m4 (gl_PREREQ_MKDIR): New macro.
20317         (UTILS_FUNC_MKDIR_TRAILING_SLASH): Invoke gl_PREREQ_MKDIR.
20318
20319         Module mkstemp.
20320         * m4/mkstemp.m4 (gl_PREREQ_MKSTEMP): New macro.
20321         (jm_PREREQ_TEMPNAME): New macro, from prereq.m4. Also invoke
20322         jm_AC_TYPE_UINTMAX_T.
20323         (UTILS_FUNC_MKSTEMP): Invoke gl_PREREQ_MKSTEMP and jm_PREREQ_TEMPNAME.
20324
20325         Module stat.
20326         * m4/stat.m4 (gl_PREREQ_STAT): New macro.
20327         (jm_FUNC_STAT): Use AC_FUNC_STAT. Invoke gl_PREREQ_STAT.
20328
20329         Module lstat.
20330         * m4/lstat.m4 (gl_PREREQ_LSTAT): New macro.
20331         (jm_FUNC_LSTAT): Use AC_FUNC_LSTAT. Invoke gl_PREREQ_LSTAT.
20332
20333         Module timespec.
20334         * m4/timespec.m4 (gl_TIMESPEC): New macro.
20335         (jm_CHECK_TYPE_STRUCT_TIMESPEC): Add check for <sys/time.h>.
20336         * m4/st_mtim.m4: Indentation.
20337
20338         Module nanosleep.
20339         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): New macro.
20340         (jm_FUNC_NANOSLEEP): Add check for <sys/time.h>. Invoke
20341         gl_PREREQ_NANOSLEEP.
20342
20343         Module regex.
20344         * m4/regex.m4 (jm_PREREQ_REGEX): New macro.
20345         (jm_INCLUDED_REGEX): Invoke jm_PREREQ_REGEX.
20346         (gl_REGEX): New macro.
20347
20348         Module rename.
20349         * m4/rename.m4 (gl_PREREQ_RENAME): New macro.
20350         (vb_FUNC_RENAME): Invoke gl_PREREQ_RENAME.
20351
20352         Module rmdir.
20353         * m4/rmdir.m4: New file.
20354
20355         Module utime.
20356         * m4/utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Use onceonly macros.
20357         * m4/utime.m4 (gl_PREREQ_UTIME): New macro.
20358         (jm_FUNC_UTIME): Invoke gl_PREREQ_UTIME.
20359
20360         Module dirname.
20361         * m4/dirname.m4: New file.
20362
20363         Module getopt.
20364         * m4/getopt.m4: New file.
20365
20366         Module unistd-safer.
20367         * m4/unistd-safer.m4: New file.
20368
20369         Module fnmatch.
20370         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Include <stdlib.h>, for exit()
20371         declaration.
20372         (gl_PREREQ_FNMATCH_EXTRA): New macro.
20373         (gl_FUNC_FNMATCH_POSIX): New macro.
20374         (gl_FUNC_FNMATCH_GNU): Renamed from AC_FUNC_FNMATCH_GNU. Invoke
20375         gl_PREREQ_FNMATCH_EXTRA. Use the function name gnu_fnmatch, not
20376         simply fnmatch.
20377
20378         Module exclude.
20379         * m4/exclude.m4: New file.
20380
20381         Module human.
20382         * m4/human.m4: New file.
20383
20384         Module acl.
20385         * m4/acl.m4: Nop.
20386
20387         Module backupfile.
20388         * m4/backupfile.m4: New file.
20389         * m4/d-ino.m4: Indentation.
20390
20391         Module fsusage.
20392         * m4/fsusage.m4 (gl_FSUSAGE): New macro.
20393         (jm_STATFS_TRUNCATES): New macro, from coreutils-4.5.4/configure.ac.
20394         (gl_PREREQ_FSUSAGE_EXTRA): New macro.
20395
20396         Module dirfd.
20397         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Invoke some AC_EGREP_CPP
20398         requirements.
20399
20400         Module euidaccess.
20401         * m4/euidaccess.m4: New file.
20402
20403         Module file-type.
20404         * m4/file-type.m4: New file.
20405
20406         Module fileblocks.
20407         * m4/fileblocks.m4: New file.
20408
20409         Module filemode.
20410         * m4/filemode.m4: New file.
20411
20412         Module isdir.
20413         * m4/isdir.m4: New file.
20414
20415         Module lchown.
20416         * m4/lchown.m4 (gl_PREREQ_LCHOWN): New macro.
20417         (jm_FUNC_LCHOWN): Invoke gl_PREREQ_LCHOWN.
20418
20419         Module makepath.
20420         * m4/makepath.m4: New file.
20421
20422         Module modechange.
20423         * m4/modechange.m4: New file.
20424
20425         Module mountlist.
20426         * m4/mountlist.m4: New file.
20427         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Use onceonly macros.
20428         Indentation.
20429
20430         Module path-concat.
20431         * m4/path-concat.m4: New file.
20432
20433         Module pathmax.
20434         * m4/pathmax.m4: New file.
20435
20436         Module same.
20437         * m4/same.m4: New file.
20438
20439         Module save-cwd.
20440         * m4/save-cwd.m4: New file.
20441
20442         Module savedir.
20443         * m4/savedir.m4: New file.
20444
20445         Module xgetcwd.
20446         * m4/xgetcwd.m4: New file.
20447         * m4/getcwd.m4 (AC_FUNC_GETCWD_NULL): Use onceonly macros.
20448
20449         Module xreadlink.
20450         * m4/xreadlink.m4: New file.
20451
20452         Module safe-read.
20453         * m4/safe-read.m4: New file.
20454
20455         Module safe-write.
20456         * m4/safe-write.m4: New file.
20457
20458         Module closeout.
20459         * m4/closeout.m4: New file.
20460
20461         Module stdio-safer.
20462         * m4/stdio-safer.m4: New file.
20463
20464         Module getpass.
20465         * m4/getpass.m4: New file.
20466
20467         Module getugroups.
20468         * m4/getugroups.m4: New file.
20469
20470         Module group-member.
20471         * m4/group-member.m4 (gl_PREREQ_GROUP_MEMBER): New macro.
20472         (jm_FUNC_GROUP_MEMBER): Invoke AC_GNU_SOURCE, gl_PREREQ_GROUP_MEMBER.
20473
20474         Module idcache.
20475         * m4/idcache.m4: New file.
20476
20477         Module userspec.
20478         * m4/userspec.m4: New file.
20479
20480         Module gettime.
20481         * m4/clock_time.m4: New file.
20482         * m4/gettime.m4: New file.
20483
20484         Module settime.
20485         * m4/settime.m4: New file.
20486
20487         Module posixtm.
20488         * m4/posixtm.m4: New file.
20489
20490         Module gethostname.
20491         * m4/gethostname.m4: New file.
20492
20493         Module canon-host.
20494         * m4/canon-host.m4: New file.
20495
20496         Module gettext.
20497         * m4/codeset.m4: New file, from gettext-0.11.5.
20498         * m4/gettext.m4: New file, from gettext-0.11.5.
20499         * m4/glibc21.m4: New file, from gettext-0.11.5.
20500         * m4/iconv.m4: New file, from gettext-0.11.5.
20501         * m4/intdiv0.m4: New file, from gettext-0.11.5.
20502         * m4/inttypes-pri.m4: New file, from gettext-0.11.5.
20503         * m4/inttypes.m4: New file, from gettext-0.11.5.
20504         * m4/inttypes_h.m4: New file, from gettext-0.11.5 with modifications.
20505         * m4/isc-posix.m4: New file, from gettext-0.11.5.
20506         * m4/lcmessage.m4: New file, from gettext-0.11.5.
20507         * m4/lib-ld.m4: New file, from gettext-0.11.5.
20508         * m4/lib-link.m4: New file, from gettext-0.11.5.
20509         * m4/lib-prefix.m4: New file, from gettext-0.11.5.
20510         * m4/progtest.m4: New file, from gettext-0.11.5.
20511         * m4/stdint_h.m4: New file, from gettext-0.11.5 with modifications.
20512         * m4/uintmax_t.m4: New file, from gettext-0.11.5 with modifications.
20513         * m4/ulonglong.m4: New file, from gettext-0.11.5 with modifications.
20514
20515         Module localcharset.
20516         * m4/localcharset.m4: New file.
20517
20518         Module hard-locale.
20519         * m4/hard-locale.m4: New file.
20520
20521         Module mbswidth.
20522         * m4/mbswidth.m4 (gl_MBSWIDTH): Renamed from jm_PREREQ_MBSWIDTH. Use
20523         onceonly macros.
20524         * m4/mbrtowc.m4: Add comment.
20525
20526         Module memcasecmp.
20527         * m4/memcasecmp.m4: New file.
20528
20529         Module memcoll.
20530         * m4/memcoll.m4: New file.
20531
20532         Module unicodeio.
20533         * m4/unicodeio.m4: New file.
20534
20535         Module rpmatch.
20536         * m4/rpmatch.m4: New file.
20537
20538         Module yesno.
20539         * m4/yesno.m4: New file.
20540
20541         Module exitfail.
20542         * m4/exitfail.m4: New file.
20543
20544         Module c-stack.
20545         * m4/c-stack.m4 (gl_C_STACK): New macro.
20546         (jm_PREREQ_C_STACK): Check for <sys/time.h>. Use onceonly macros.
20547
20548         Module error.
20549         * m4/error.m4 (gl_ERROR): New macro.
20550         (jm_PREREQ_ERROR): Use onceonly macros.
20551
20552         Module fatal.
20553         * m4/fatal.m4: New file.
20554
20555         Module getloadavg.
20556         * m4/getloadavg.m4 (AC_FUNC_GETLOADAVG): Use onceonly macros.
20557         (gl_FUNC_GETLOADAVG, gl_PREREQ_GETLOADAVG): New macros.
20558
20559         Module getpagesize.
20560         * m4/getpagesize.m4: New file.
20561
20562         Module getusershell.
20563         * m4/getusershell.m4: New file.
20564
20565         Module physmem.
20566         * m4/physmem.m4: New file.
20567
20568         Module posixver.
20569         * m4/posixver.m4: New file.
20570
20571         Module quotearg.
20572         * m4/quotearg.m4: New file.
20573
20574         Module quote.
20575         * m4/quote.m4: New file.
20576
20577         Module readutmp.
20578         * m4/readutmp.m4: New file, based on jm_PREREQ_READUTMP from prereq.m4.
20579
20580         Module sig2str.
20581         * m4/sig2str.m4: New file.
20582
20583         Other.
20584         * m4/longlong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Remove, moved to
20585         ulonglong.m4.
20586         * m4/intmax_t.m4: New file.
20587         * m4/d-type.m4: Indentation.
20588         * m4/jm-macros.m4: Update.
20589         * m4/prereq.m4 (jm_PREREQ): Update.
20590         (jm_PREREQ_ADDEXT): Remove, obsoleted by backupfile.m4.
20591         (jm_PREREQ_CANON_HOST): Remove, obsoleted by canon-host.m4.
20592         (jm_PREREQ_DIRNAME): Remove, obsoleted by dirname.m4.
20593         (jm_PREREQ_EXCLUDE): Remove, obsoleted by exclude.m4.
20594         (jm_PREREQ_GETPAGESIZE): Remove, obsoleted by getpagesize.m4.
20595         (jm_PREREQ_HARD_LOCALE): Remove, obsoleted by hard-locale.m4.
20596         (jm_PREREQ_HASH): Remove, obsoleted by hash.m4.
20597         (jm_PREREQ_HUMAN): Remove, obsoleted by human.m4.
20598         (jm_PREREQ_MEMCHR): Remove, obsoleted by memchr.m4.
20599         (jm_PREREQ_PHYSMEM): Remove, obsoleted by physmem.m4.
20600         (jm_PREREQ_POSIXVER): Remove, obsoleted by posixver.m4.
20601         (jm_PREREQ_QUOTEARG): Remove, obsoleted by quotearg.m4.
20602         (jm_PREREQ_READUTMP): Remove, obsoleted by readutmp.m4.
20603         (jm_PREREQ_REGEX): Remove, obsoleted by regex.m4.
20604         (jm_PREREQ_STRNLEN): Remove, obsoleted by strnlen.m4.
20605         (jm_PREREQ_TEMPNAME): Remove, obsoleted by mkstemp.m4.
20606         (jm_PREREQ_XGETCWD): Remove, obsoleted by xgetcwd.m4.
20607         (jm_PREREQ_XREADLINK): Remove, obsoleted by xreadlink.m4.
20608         * m4/readdir.m4 (jm_FUNC_READDIR): Use onceonly macros.
20609
20610 2002-12-24  Bruno Haible  <bruno@clisp.org>
20611
20612         * MODULES.txt: Update according to m4/ changes.
20613
20614         Module gettext.
20615         * config.rpath: New file, from gettext-0.11.5.
20616
20617         * modules/*: New module descriptions.
20618         * gnulib-tool: New file.
20619         * MODULES.html.sh: New file.
20620
20621 2002-12-21  Karl Berry  <karl@gnu.org>
20622
20623         * doc/fdl.texi: update to version 1.2.
20624
20625 2002-12-19  Karl Berry  <karl@gnu.org>
20626
20627         * config/config.guess: update from prep.
20628
20629 2002-12-18  Bruno Haible  <bruno@clisp.org>
20630
20631         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't test for localtime_r.
20632         * m4/jm-mktime.m4 (jm_FUNC_MKTIME): Likewise.
20633
20634 2002-12-17  Bruno Haible  <bruno@clisp.org>
20635
20636         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Remove checks for limits.h,
20637         stdlib.h, string.h.
20638
20639 2002-12-17  Bruno Haible  <bruno@clisp.org>
20640
20641         * lib/canon-host.c (strdup): Remove unused declaration.
20642
20643         * lib/fsusage.c: Include full_read.h.
20644         (get_fs_usage): Use full_read instead of safe_read.
20645
20646         * lib/utime.c (utime_null): Use SAFE_READ_ERROR.
20647
20648 2002-12-12  Karl Berry  <karl@gnu.org>
20649
20650         * config/config.guess: update from prep.
20651
20652 2002-12-11  Bruno Haible  <bruno@clisp.org>
20653
20654         * m4/setenv.m4: New file, from gettext-0.11.5.
20655
20656 2002-12-11  Bruno Haible  <bruno@clisp.org>
20657
20658         * lib/setenv.h: Rewritten to cope with systems that have setenv() but
20659         not unsetenv().
20660         * lib/setenv.c, unsetenv.c: Taken from glibc-2.2.4 with the following
20661         modifications:
20662
20663         2002-12-11  Bruno Haible  <bruno@clisp.org>
20664
20665                 * setenv.c (alloca): Fall back to malloc.
20666                 (freea): New macro.
20667                 (setenv): Use freea() to free memory allocated with alloca().
20668
20669         2002-11-13  Bruno Haible  <bruno@clisp.org>
20670
20671                 * setenv.c (compar_fn_t, __add_to_environ, setenv): Use ANSI C
20672                 function declarations.
20673                 * unsetenv.c (unsetenv): Likewise.
20674
20675         2002-03-04  Bruno Haible  <bruno@clisp.org>
20676
20677                 Portability to AIX 4.3.3.
20678                 * unsetenv.c: New file, extracted from setenv.c.
20679                 * setenv.c: Move the unsetenv() function to unsetenv.c.
20680
20681         2001-12-20  Bruno Haible  <bruno@clisp.org>
20682
20683                 * setenv.c (__add_to_environ): Don't call realloc(NULL,...),
20684                 use malloc instead. For SunOS 4.
20685
20686         2001-12-11  Bruno Haible  <bruno@clisp.org>
20687
20688                 * setenv.c: Declare alloca.
20689                 (compar_fn_t): New typedef.
20690                 (KNOWN_VALUE, STORE_VALUE): Use it.
20691
20692         * lib/Makefile.am (libfetish_a_SOURCES): Add setenv.c, unsetenv.c,
20693         setenv.h.
20694
20695 2002-12-10  Paul Eggert  <eggert@twinsun.com>
20696
20697         Port exclude.c and exclude.h to more non-GNU systems, e.g. Solaris 7.
20698         * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE, EXCLUDE_WILDCARDS):
20699         Choose values that are less likely to collide with system fnmatch
20700         options.
20701         * lib/exclude.c (FNM_CASEFOLD, FNM_LEADING_DIR): Define to 0 if not
20702         defined (e.g., a pure POSIX system).
20703         (EXCLUDE_macros_do_not_collide_with_FNM_macros): Use FNM_PATHNAME
20704         instead of FNM_FILE_NAME, for compatibility with pure POSIX sytems.
20705
20706 2002-12-06  Paul Eggert  <eggert@twinsun.com>
20707
20708         Undo the 2001-07-02 change for jm-glibc-io, as it was too much of
20709         a pain in practice to deal with generated m4 files.  This change
20710         goes together with the 2002-12-04 unlocked-io.h change in ../lib.
20711
20712         * m4/Makefile.am.in (Makefile.am): Don't mention jm-glibc-io.m4n
20713         and jm-glibc-io.m4, as they are no longer a special case.
20714         * m4/jm-glibc-io.m4: Rename from jm-glibc-io.m4n, and remove the
20715         kludge and the auto-generation stuff.  Check only whether the
20716         functions are declared, not whether they exist, since older hosts
20717         that don't declare the functions can't use the optimization anyway.
20718
20719 2002-12-06  Jim Meyering  <jim@meyering.net>
20720
20721         * lib/error.c: Be consistent: change `#ifndef _LIBC' to `#if !_LIBC'.
20722
20723         Merge in changes from libc's misc/error.c, in preparation
20724         for the merge of gnulib's changes back into libc.
20725
20726         * lib/error.c (_): Define only if not already defined.
20727         Move definition to follow all #include directives.
20728         Include unlocked-io.h only if !_LIBC.
20729         [_LIBC]: Include <libio/libioP.h>.
20730         [USE_IN_LIBIO]: Include <libio/iolibio.h>
20731         (fflush): Tweak definition to use INTUSE.
20732         (putc): Define.
20733
20734 2002-12-05  Paul Eggert  <eggert@twinsun.com>
20735
20736         * lib/alloca.c [defined emacs]: Include "lisp.h".
20737         (xalloc_die) [defined emacs]: New macro.
20738         (free) [defined emacs && defined EMACS_FREE]: Define to EMACS_FREE.
20739         [! defined emacs]: Include <xalloc.h>.
20740         (POINTER_TYPE) [!defined POINTER_TYPE]: New macro.
20741         (pointer): Typedef to POINTER_TYPE *.
20742         (malloc): Remove decl; we now always use xmalloc.
20743         (alloca): Use old-style definition, since Emacs needs this.
20744         Check for arithmetic overflow when computing combined size.
20745
20746 2002-12-04  Paul Eggert  <eggert@twinsun.com>
20747
20748         Do not generate unlocked-io.h automatically, since it's easier to
20749         maintain it by hand.
20750
20751         * lib/unlocked-io.h: New file, from GNU diffutils,
20752         but with proper copyright notice and attribution.
20753         * lib/gen-uio: Remove.
20754         * lib/Makefile.am: Add copyright notice.
20755         (libfetish_a_SOURCES): Add unlocked-io.h.
20756         (BUILT_SOURCES, all-local): Remove unlocked-io.h.
20757         (DISTCLEANFILES, io_functions): Remove macros.
20758         (EXTRA_DIST): Remove gen_uio.
20759         (unlocked-io.h): Remove rule.
20760
20761 2002-12-04  Jim Meyering  <jim@meyering.net>
20762
20763         Reflect the fact that stat.c and lstat.c are no longer generated.
20764         * lib/Makefile.am (BUILT_SOURCES): Remove stat.c and lstat.c.
20765         (DISTCLEANFILES): Likewise.
20766         (EXTRA_DIST): Likewise.
20767         (all_local): Don't depend on stat.c or lstat.c.
20768         (stat.c, lstat.c): Remove rules.
20769         (EXTRA_DIST): Remove xstat.in.
20770
20771         * lib/xstat.in: Remove file.  Contents moved into stat.c.
20772         * lib/stat.c: New file.  Contents mostly from xstat.in.
20773         * lib/stat.c: Rework so that it may serve to define rpl_lstat, too.
20774         * lib/lstat.c: New file. Simply #define LSTAT and include stat.c.
20775
20776         * lib/safe-read.c: Rework so that it may serve to define safe_write,
20777         too.
20778         * lib/safe-write.c: Simply #define SAFE_WRITE and include safe-read.c.
20779
20780 2002-12-03  Jim Meyering  <jim@meyering.net>
20781
20782         * lib/safe-read.c, safe-write.c: Change variable names and comments,
20783         but not semantics, to minimize the differences between these two files.
20784         (safe_read): Change comment to mention SAFE_READ_ERROR.
20785
20786         * lib/safe-read.c (IS_EINTR): Define.
20787         (safe_read): Use IS_EINTR in place of in-function cpp directives.
20788
20789 2002-12-02  Jim Meyering  <jim@meyering.net>
20790
20791         * lib/safe-read.c (EINTR): Define.
20792         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
20793         (INT_MAX): Provide fallback.
20794         (safe_read): Rewrite to iterate IFF the read fails with EINTR.
20795
20796         * lib/safe-read.h (SAFE_READ_ERROR): Define.
20797
20798 2002-12-02  Bruno Haible  <bruno@clisp.org>
20799
20800         * lib/safe-write.c (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM):
20801         Define, taken from safe-read.c.
20802         (INT_MAX): Provide fallback.
20803         (safe_write): Rewrite to iterate IFF the write fails with EINTR.
20804         * lib/safe-write.h (SAFE_WRITE_ERROR): Define.
20805
20806         * lib/safe-read.c (EINTR): Remove definition.
20807         (safe_read): Don't use EINTR if it is absent.
20808
20809 2002-12-01  Jim Meyering  <jim@meyering.net>
20810
20811         * lib/safe-read.c: (safe_read): Also exit the loop when read returns
20812         zero.
20813         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM, INT_MAX): Define.
20814
20815 2002-11-27  Paul Eggert  <eggert@twinsun.com>
20816
20817         * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
20818         hash_find_entry, hash_rehash): Replace `if (limit <= value) abort ();'
20819         with `if (! (value < limit)) abort ();', for readability.
20820
20821 2002-11-26  Karl Berry  <karl@gnu.org>
20822
20823         * lib/strdup.c: copy from libc again, with jim's ok.
20824         * lib/.cppi-disable: re-add strdup.c
20825
20826 2002-11-25  Karl Berry  <karl@gnu.org>
20827
20828         * lib/strtoll.c: copy from libc, meaning we now #include <strtol.c>
20829         instead of "strtol.c".
20830
20831 2002-11-25  Karl Berry  <karl@gnu.org>
20832
20833         * config/install-sh: update from automake for variable quoting, $0 in
20834         error msgs, etc.
20835
20836         * config/srclist.txt ($LIBCSRC/time/mktime.c lib gpl): new entry.
20837         * config/srclist.txt ($LIBCSRC/sysdeps/generic/strtoll.c lib gpl): new
20838         entry.
20839
20840 2002-11-25  Jim Meyering  <jim@meyering.net>
20841
20842         * lib/mktime.c: Sync from libc, now that it has the latest fix.
20843
20844 2002-11-24  Karl Berry  <karl@gnu.org>
20845
20846         * lib/error.c, getopt.c, getopt.h, getopt1.c, obstack.c, regex.c,
20847         regex.h, strdup.c, strtoll.c, tempname.c: change license to gpl.
20848
20849 2002-11-24  Jim Meyering  <jim@meyering.net>
20850
20851         Update from coreutils:
20852
20853         * lib/mktime.c: Merge in changes from libc.
20854
20855         Avoid a link-time failure on some Linux systems.
20856         * lib/mktime.c (STATIC): Define to be empty (_LIBC) or `static'
20857         (otherwise).
20858         (__mon_yday): Declare with the STATIC attribute.
20859         (__mktime_internal): Likewise.
20860         Based on a report from Greg Schafer.
20861
20862 2002-11-23  Jim Meyering  <jim@meyering.net>
20863
20864         * lib/sig2str.c (str2signum, sig2str): Avoid a warning from gcc:
20865         Use `unsigned', not `int', as type of index.
20866
20867         * lib/xstat.in [@BEGIN_LSTAT_ONLY@]: Include <string.h>.
20868
20869         * lib/fsusage.c: Remove unneeded parentheses around operands of
20870         `defined'.
20871
20872 2002-11-22  Paul Eggert  <eggert@twinsun.com>
20873
20874         * lib/quotearg.h: Allow multiple inclusion by surrounding with
20875         "#ifndef QUOTEARG_H_".  Include <stddef.h>, for size_t,
20876         so that we can be included first.
20877         (PARAMS): Remove; we now assume C89 or later.  All uses removed.
20878         * lib/quotearg.c: Include quotearg.h immediately after config.h.
20879         No need to include stddef.h or sys/types.h any more.
20880         Surround local include files with "", not "<>".
20881         Assume HAVE_LIMITS_H unconditionally, as we assume C89.
20882         Similarly, assume HAVE_C_BACKSLASH_A, CHAR_BIT, UCHAR_MAX, UINT_MAX,
20883         HAVE_STDLIB_H, HAVE_STRING_H, STDC_HEADERS.
20884         (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
20885         (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
20886         (ISPRINT): Remove; no longer needed now that we assume C89.
20887
20888         (clone_quoting_options, quotearg_buffer, quotearg_n_options):
20889         Preserve errno.
20890
20891         (quotearg_buffer_restyled, quotearg_n, quotearg_n_style,
20892         quotearg_char): Use SIZE_MAX rather than
20893         (size_t) -1 when we are talking about "infinity".
20894
20895         (quotearg_buffer_restyled): Fix bug when quoting trigraphs.
20896
20897 2002-11-22  Paul Eggert  <eggert@twinsun.com>
20898
20899         * lib/hash.c: Avoid use of <assert.h>, as the GNU Coding Standards
20900         hint that one should use `if (! x) abort ();' rather than `assert
20901         (x);', and anyway it's one less thing to worry about configuring.
20902         (hash_lookup, hash_get_first, hash_get_next, hash_find_entry,
20903         hash_rehash, hash_insert): Use abort rather than assert.
20904
20905 2002-11-22  Bruno Haible  <bruno@clisp.org>
20906
20907         * lib/safe-read.h: Assume C89. Add comments.
20908         (safe_read): Change return type to size_t.
20909         * lib/safe-read.c (safe_read): Change return type to size_t. Handle
20910         byte counts > SSIZE_MAX correctly.
20911         * lib/safe-write.h: New file.
20912         * lib/safe-write.c: New file.
20913         * lib/full-read.h: New file.
20914         * lib/full-read.c: New file.
20915         * lib/full-write.h: Assume C89. Add comments.
20916         * lib/full-write.c: Include safe-write.h.
20917         (full_write): Rewritten to use safe_write.
20918         Suggested by Jim Meyering and Paul Eggert.
20919
20920 2002-11-21  Jim Meyering  <jim@meyering.net>
20921
20922         * lib/strdup.c (strdup): Tweak comment and initial #if/#include.
20923
20924         Merge in changes from the coreutils.
20925
20926         2002-09-25  Paul Eggert  <eggert@twinsun.com>
20927         * lib/fsusage.c [! HAVE_INTTYPES_H && HAVE_STDINT_H] Include
20928         <stdint.h>.
20929         (UINTMAX_MAX) [!defined UINTMAX_MAX]: New macro.
20930         (PROPAGATE_ALL_ONES): Work even if X is unsigned and narrower than
20931         int.  Work more efficiently if X is the same width as uintmax_t.
20932         Do not compare X to -1, to avoid bogus compiler warning.
20933         (get_fs_usage): (uintmax_t) -1 -> UINTMAX_MAX to avoid a cast.
20934         Don't assume that f_frsize and f_bsize are the same type.
20935
20936         * lib/mountlist.c: #undef MNT_IGNORE before defining it, to avoid
20937         warning on FreeBSD.
20938
20939         * lib/makepath.c (make_path): Restore umask *before* creating the final
20940         component.
20941         (make_path): Minor reformatting.
20942
20943         * lib/xmalloc.c: Adjust to work with new autoconf macros,
20944         AC_FUNC_MALLOC and AC_FUNC_REALLOC: test #ifndef
20945         HAVE_MALLOC/HAVE_REALLOC.
20946
20947         * lib/mountlist.h (ME_DUMMY): Don't count entries of type `auto' as
20948         dummy ones.  At least on GNU/Linux systems, `auto' means something
20949         else.
20950         From Michael Stone.
20951
20952 2002-11-21  Bruno Haible  <bruno@clisp.org>
20953
20954         Remove case insensitive option matching.
20955         * lib/argmatch.h (argcasematch): Remove declaration.
20956         (ARGCASEMATCH): Remove macro.
20957         (__xargmatch_internal): Remove case_sensitive argument.
20958         (XARGMATCH): Update.
20959         (XARGCASEMATCH): Remove macro.
20960         * lib/argmatch.c (argmatch): Renamed from __argmatch_internal. Remove
20961         case_sensitive argument.
20962         (argcasematch): Remove function.
20963         (__xargmatch_internal): Remove case_sensitive argument.
20964         (main): Use XARGMATCH instead of XARGCASEMATCH.
20965
20966         * lib/xmalloc.c: Change compile-time error message. Add comment about
20967         required autoconf version.
20968
20969 2002-11-20  Paul Eggert  <eggert@twinsun.com>
20970
20971         Merge argmatch cleanups from Bison.  Assume C89.
20972
20973         * lib/argmatch.c: Include config.h here, not in argmatch.h.
20974         Include stdlib.h, for EXIT_FAILURE.
20975         Always include <string.h>, since we assume C89.
20976         (EXIT_FAILURE): Remove pre-C89 bug workaround.
20977         * lib/argmatch.h: Do not include <config.h> or <sys/types.h>.
20978         Include <stddef.h> instead, since it's all we need for size_t.
20979         (PARAMS): Remove.  All uses removed.
20980         (ARRAY_CARDINALITY): Do not bother to #undef.
20981         (ARRAY_CARDINALITY, ARGMATCH, ARGCASEMATCH, invalid_arg,
20982         ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
20983         Remove unnecessary parentheses.
20984         (ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
20985         Insert necessary parentheses.
20986         (ARGMATCH_CONSTRAINT, ARGMATCH_VERIFY): New macros.
20987         (ARGMATCH_ASSERT): Use ARGMATCH_CONSTRAINT.
20988
20989 2002-11-19  Bruno Haible  <bruno@clisp.org>
20990
20991         * lib/mbswidth.c: Include mbswidth.h right at the beginning.
20992         * lib/mbswidth.h: Include <stddef.h>, for size_t.
20993
20994         * lib/mbswidth.h (PARAMS): Remove macro.
20995         (mbswidth, mbsnwidth): Use ANSI C function declarations.
20996         * lib/mbswidth.c (mbswidth, mbsnwidth): Likewise.
20997
20998         * lib/gcd.h (PARAMS): Remove macro.
20999         (gcd): Use ANSI C function declarations.
21000         * lib/gcd.c (gcd): Likewise.
21001
21002 2002-11-15  Bruno Haible  <bruno@clisp.org>
21003
21004         * lib/strcspn.c: Include <stddef.h>.
21005         (strcspn): Use ANSI C function declaration. Change return type to
21006         size_t. Use NULL.
21007         * lib/strpbrk.c: Minimize diffs to glibc. Include <stddef.h>.
21008         (strpbrk): Use NULL.
21009         * lib/strpbrk.h (PARAMS): Remove macro.
21010         (strpbrk): Use ANSI C function declaration.
21011         * lib/strstr.c: Don't include <sys/types.h>.
21012         * lib/strstr.h (PARAMS): Remove macro.
21013         (strstr): Use ANSI C function declarations.
21014
21015 2002-11-14  Karl Berry  <karl@gnu.org>
21016
21017         * config/mkinstalldirs: `do' on separate line, instead of
21018         `for var; do'.
21019
21020 2002-11-06  Bruno Haible  <bruno@clisp.org>
21021
21022         * lib/gcd.h (gcd): Change argument type to 'unsigned long'.
21023         * lib/gcd.c (gcd): Likewise.
21024
21025 2002-11-05  Bruno Haible  <bruno@clisp.org>
21026
21027         * lib/gcd.h: New file, from gettext-0.11.5.
21028         * lib/gcd.c: New file, from gettext-0.11.5.
21029
21030 2002-11-05  Bruno Haible  <bruno@clisp.org>
21031
21032         * lib/error.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
21033         * lib/getopt.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
21034         * lib/obstack.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
21035         * lib/regex.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
21036
21037         * lib/argmatch.c: Include gettext.h instead of <locale.h> and
21038         <libintl.h>.
21039         * lib/makepath.c: Include gettext.h instead of <locale.h> and
21040         <libintl.h>.
21041
21042         * lib/closeout.c: Include gettext.h instead of <libintl.h>.
21043         * lib/human.c: Include gettext.h instead of <libintl.h>.
21044         * lib/quotearg.c: Include gettext.h instead of <libintl.h>.
21045         * lib/rpmatch.c: Include gettext.h instead of <libintl.h>.
21046         * lib/unicodeio.c: Include gettext.h instead of <libintl.h>.
21047         * lib/userspec.c: Include gettext.h instead of <libintl.h>.
21048         * lib/version-etc.c: Include gettext.h instead of <libintl.h>.
21049         * lib/xmalloc.c: Include gettext.h instead of <libintl.h>.
21050         (textdomain): Remove definition.
21051         * lib/xmemcoll.c: Include gettext.h instead of <libintl.h>.
21052
21053         * lib/long-options.c: Remove include of <libintl.h> and definition of
21054         _.
21055         * lib/same.c: Remove include of <libintl.h> and definition of _.
21056
21057 2002-11-04  Owen Taylor  <otaylor@redhat.com>
21058
21059         * lib/config.charset: A few additions for Solaris.
21060
21061 2002-11-04  Bruno Haible  <haible@clisp.cons.org>
21062
21063         Make it possible to build libcharset with CC=gcc CFLAGS="-x c++".
21064         * lib/localcharset.c (locale_charset): Declare as extern "C".
21065
21066 2002-11-04  Bruno Haible  <haible@clisp.cons.org>
21067
21068         * lib/config.charset: msdos in uk_UA uses CP1125.
21069
21070 2002-11-04  Bruno Haible  <bruno@clisp.org>
21071
21072         * lib/stpcpy.h: New file, from GNU gettext-0.11.5.
21073         * lib/strcase.h: New file, from GNU gettext-0.11.5.
21074         * lib/strpbrk.h: New file, from GNU gettext-0.11.5.
21075         * lib/strstr.h: New file, from GNU gettext-0.11.5.
21076         * lib/xgetcwd.h: New file, from GNU gettext-0.11.5.
21077
21078 2002-11-04  Bruno Haible  <bruno@clisp.org>
21079
21080         * lib/localcharset.c (locale_charset): Don't return an empty string.
21081
21082 2002-11-04  Bruno Haible  <bruno@clisp.org>
21083
21084         * lib/localcharset.c (get_charset_aliases): Add more Windows specific
21085         aliases.
21086
21087 2002-11-04  Bruno Haible  <bruno@clisp.org>
21088
21089         * lib/config.charset: Update for newest glibc. Add canonical names
21090         ISO-8859-14, KOI8-T, TCVN5712-1, GEORGIAN-PS.
21091
21092 2002-11-04  Bruno Haible  <bruno@clisp.org>
21093
21094         * lib/config.charset: Add support for NetBSD.
21095
21096 2002-11-04  Bruno Haible  <bruno@clisp.org>
21097
21098         * lib/config.charset [msdosdjgpp]: For Russian, use CP866.
21099
21100 2002-11-01  Bruno Haible  <bruno@clisp.org>
21101
21102         * configure.in: Add AC_CONFIG_AUX_DIR call.
21103         (AC_OUTPUT): Add m4/Makefile, lib/Makefile. Remove doc/Makefile,
21104         test/Makefile.
21105         * Makefile.in (subdirs): Add m4, lib. Remove doc, test.
21106
21107 2002-09-28  Karl Berry  <karl@gnu.org>
21108
21109         * config/srclist.txt: can't copy install-sh/mkinstalldirs from
21110         installed automake until the next release, since changes have been
21111         made.
21112
21113 2002-09-25  Karl Berry  <karl@gnu.org>
21114
21115         * lib/strdup.c: copy from libc/string (via ../config/srclist*).
21116         * lib/getopt*: copy from libc/posix.
21117         * lib/gettext.h: copy from gettext.
21118         * lib/.cppi-disable: add strdup.c, gettext.h.
21119
21120 2002-09-25  Karl Berry  <karl@gnu.org>
21121
21122         * config/srclist.txt: enable gettext.h check.
21123         * config/config.{guess,sub}: update from prep.
21124         * config/depcomp, install-sh, mdate-sh, missing, mkinstalldirs: update
21125                 from automake 1.6.3.
21126         See srclist*.
21127
21128 2002-08-23  Stefan Monnier  <monnier@cs.yale.edu>
21129
21130         * regex.c (PATFETCH): Remove the translating fetch.
21131         (PATFETCH_RAW): Rename to PATFETCH.
21132         (set_image_of_range): New fun.
21133         (SET_RANGE_TABLE_WORK_AREA): Use it.
21134         (regex_compile): Don't translate the pattern chars so eagerly.
21135         Only do it when inserting an `exactn' bytecode or when handling
21136         a char-range.
21137         (mutually_exclusive_p): Avoid empty statement.
21138
21139 2002-07-06  Jim Meyering  <meyering@lucent.com>
21140
21141         * m4/README: Don't mention Makefile.am.in.
21142         Outline how I've tested changes to .m4 files.  Yep, it's a pain.
21143
21144 2002-07-01  Jim Meyering  <meyering@lucent.com>
21145
21146         * lib/c-stack.c: Include sys/time.h.
21147         From Volker Borchert.
21148
21149 2002-06-26  Paul Eggert  <eggert@twinsun.com>
21150
21151         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for btowc.
21152
21153 2002-06-26  Paul Eggert  <eggert@twinsun.com>
21154
21155         * lib/fnmatch.c, fnmatch_loop.c (WIDE_CHAR_SUPPORT):
21156         New macro.  Use it uniformly instead of
21157         (defined HAVE_WCTYPE_H && defined HAVE_WCHAR_H).
21158         It also uses HAVE_BTOWC, to fix a porting bug on Solaris 2.5.1
21159         reported by Vin Shelton.
21160
21161 2002-06-22  Paul Eggert  <eggert@twinsun.com>
21162
21163         * lib/c-stack.h (segv_handler, c_stack_action) [! defined SA_SIGINFO]:
21164         Do not assume SA_SIGINFO behavior.
21165         Bug reported by Jim Meyering on NetBSD 1.5.2.
21166
21167 2002-06-22  Jim Meyering  <meyering@lucent.com>
21168
21169         * m4/c-stack.m4: New file, from diffutils-2.8.2.
21170         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_C_STACK.
21171
21172         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Don't require AC__GNU_SOURCE,
21173         now that configure.ac uses AC_GNU_SOURCE.
21174         (jm_MACROS): Rename: jm_FUNC_FNMATCH to AC_FUNC_FNMATCH_GNU.
21175         * m4/prereq.m4 (jm_PREREQ_EXCLUDE): Likewise, wrt jm_FUNC_FNMATCH.
21176
21177         Update to latest tools.  Suggestions from Paul Eggert.
21178         * m4/stdbool.m4: New file, from diffutils-2.8.2.
21179         * m4/gnu-source.m4: Update from diffutils-2.8.2.
21180         * m4/fnmatch.m4: Likewise.
21181         * m4/prereq.m4: Change each use of AC_CHECK_HEADERS(stdbool.h)
21182         to AC_HEADER_STDBOOL
21183
21184 2002-06-22  Jim Meyering  <meyering@lucent.com>
21185
21186         * lib/fnmatch.c (ISASCII, ISPRINT): Undefine, to avoid warning about
21187         redefinition due to Solaris 2.6's definition in /usr/include/sys/euc.h.
21188
21189 2002-06-22  Jim Meyering  <meyering@lucent.com>
21190
21191         * lib/c-stack.c, lib/c-stack.h: New files, from diffutils-2.8.2.
21192
21193         * lib/exitfail.c, exitfail.h: Likewise.
21194         * lib/Makefile.am (libfetish_a_SOURCES): Add exitfail.c and exitfail.h.
21195
21196         * lib/Makefile.am (libfetish_a_SOURCES): Add fnmatch_.h in place
21197         of fnmatch.h.
21198         (EXTRA_DIST): Add fnmatch_loop.c.
21199         (libfetish_a_SOURCES): Add c-stack.c and c-stack.h.
21200
21201         * lib/fnmatch_loop.c: New file, from diffutils-2.8.2.
21202         * lib/fnmatch.c: Update from diffutils-2.8.2.
21203         * lib/fnmatch_.h: New file.  From diffutils-2.8.2.
21204         * lib/fnmatch.h: Remove file.
21205
21206 2002-06-21  Jim Meyering  <meyering@lucent.com>
21207
21208         * m4/c-bs-a.m4: Add comment, from diffutils-2.8.2.
21209         * m4/mbrtowc.m4: Likewise.
21210
21211         * m4/mbstate_t.m4: Update from diffutils-2.8.2.
21212         * m4/mbswidth.m4: Reflect name change:
21213         s/AC_MBSTATE_T/AC_TYPE_MBSTATE_T.
21214         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Likewise.
21215
21216         * m4/lib-link.m4: Update from gettext-0.11.2.
21217         * m4/gettext.m4: Likewise.
21218
21219         * m4/jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for hurd.h.
21220         From Alfred M. Szmidt.
21221
21222 2002-06-18  Paul Eggert  <eggert@twinsun.com>
21223
21224         * lib/file-type.h: Report an error if neither S_ISREG nor
21225         S_IFREG is defined, instead of using a test specific to glibc
21226         2.2.  This should be safe, since POSIX requires S_ISREG and
21227         Unix Version 7 had S_IFREG.  We don't need to check for
21228         <sys/types.h> since we don't use any symbols that it defines.
21229
21230 2002-06-15  Richard Dawe  <richdawe@bigfoot.com>
21231
21232         * lib/Makefile.am (lstat.c, stat.c, .sin.sed): Use t-$@, rather than
21233         $@-t, so that each temporary file name is unique and valid in the first
21234         8 characters, for operation under DOS.
21235
21236 2002-06-15  Paul Eggert  <eggert@twinsun.com>
21237
21238         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for st_author.
21239
21240 2002-06-15  Jim Meyering  <meyering@lucent.com>
21241
21242         Work even with DJGPP 2.03, which lacks support for symlinks.
21243         From Richard Dawe.
21244         * lib/xstat.in (S_ISLNK): Define to 0 if neither S_ISLNK nor S_IFLNK
21245         is defined.
21246         * lib/lchown.c (S_ISLNK): Likewise.
21247
21248 2002-06-15  Jim Meyering  <meyering@lucent.com>
21249
21250         * lib/file-type.h (FILE_TYPE_H): Guard entire contents with #ifndef.
21251         For GNU libc 2.2 and newer, ensure that <sys/types.h> and <sys/stat.h>
21252         have been included before this file.
21253
21254 2002-06-14  Jim Meyering  <meyering@lucent.com>
21255
21256         * lib/file-type.h: Use the version from diffutils-2.8.2.
21257         * lib/file-type.c: Likewise.
21258
21259 2002-06-07  Jim Meyering  <meyering@lucent.com>
21260
21261         * m4/prereq.m4 (jm_PREREQ_STAT): Check for sys/param.h and sys/mount.h.
21262         They're needed at least for NetBSD 1.5.2.
21263         ($statxfs_includes): Include those same headers.
21264         ($statxfs_includes): Include sys/vfs.h if available.
21265         ($statxfs_includes): Likewise for sys/statvfs.h.
21266         Check for the following members in both structs statfs and statvfs:
21267         f_basetype, f_type, f_fsid.__val, f_namemax, f_namelen.
21268
21269 2002-06-01  Jim Meyering  <meyering@lucent.com>
21270
21271         * m4/d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename macro:
21272         s/D_TYPE_IN_DIRENT/HAVE_STRUCT_DIRENT_D_TYPE/.
21273
21274 2002-05-28  Jim Meyering  <meyering@lucent.com>
21275
21276         * m4/readdir.m4 (jm_FUNC_READDIR): Undefine `mkdir', not `rmdir'.
21277         Reported by Volker Borchert.
21278
21279 2002-05-27  Jim Meyering  <meyering@lucent.com>
21280
21281         Fix a problem seen only on nonconforming systems whereby ls.c's
21282         use of localtime, and then of gettimeofday would cause trouble:
21283         the localtime call used to initialize rpl_gettimeofday's save
21284         mechanism would clobber ls's current local time information so
21285         that in any long listing the first file would always be listed
21286         with date 1970-01-01.  Analysis by Volker Borchert.
21287
21288         * lib/gettimeofday.c (localtime): Undefine.
21289         (rpl_localtime): New function.
21290
21291 2002-05-27  Jim Meyering  <meyering@lucent.com>
21292
21293         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Also replace
21294         localtime.
21295
21296         * m4/readdir.m4 (jm_FUNC_READDIR): Undefine `rmdir' so we don't try to
21297         use the replacement function; it wouldn't resolve at link time.
21298         Reported by Volker Borchert.
21299
21300 2002-05-22  Jim Meyering  <meyering@lucent.com>
21301
21302         * lib/Makefile.am (libfetish_a_SOURCES): Add file-type.c and
21303         file-type.h.
21304         * lib/file-type.h: New file.
21305         * lib/file-type.c (file_type): New file/function.  Extracted from
21306         diffutils.
21307
21308 2002-04-30  Jim Meyering  <meyering@lucent.com>
21309
21310         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_STAT.
21311
21312 2002-04-29  Paul Eggert  <eggert@twinsun.com>
21313
21314         * m4/prereq.m4 (jm_PREREQ_SIG2STR): Remove; all callers changed.
21315
21316 2002-04-29  Paul Eggert  <eggert@twinsun.com>
21317
21318         * m4/prereq.m4 (jm_PREREQ_HARD_LOCALE): Check for stdlib.h.
21319         Do not check for alloca.h (no longer used) or stdbool.h (was never
21320         used?).  Add AM_C_PROTOTYPES since hard-locale.h uses it.
21321
21322 2002-04-29  Paul Eggert  <eggert@twinsun.com>
21323
21324         * lib/hard-locale.c: Upgrade to version used in GNU Diffutils 2.8.1.
21325
21326 2002-04-29  Jim Meyering  <meyering@lucent.com>
21327
21328         * m4/jm-macros.m4 (jm_MACROS): Remove use of AC_FUNC_STRNLEN.
21329         * m4/prereq.m4: Add jm_PREREQ_STRNLEN.
21330         Use AC_FUNC_STRNLEN here instead.
21331
21332         * m4/jm-macros.m4: Don't AC_REQUIRE([AC_PROG_CC_STDC]).
21333         With autoconf-2.53a, it's part of AC_PROG_CC.
21334
21335 2002-04-28  Paul Eggert  <eggert@twinsun.com>
21336
21337         * m4/jm-macros.m4 (jm_MACROS): Add AC_REPLACE_FUNCS(sig2str).
21338         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_SIG2STR.
21339
21340 2002-04-28  Paul Eggert  <eggert@twinsun.com>
21341
21342         * lib/sig2str.h, lib/sig2str.c: New files.
21343         * lib/Makefile.am (libfetish_a_SOURCES): Add sig2str.h.
21344
21345 2002-04-28  Paul Eggert  <eggert@twinsun.com>
21346
21347         * lib/sig2str.h (SIGNUM_BOUND): Do not use WTERMSIG, to avoid
21348         depending on <sys/wait.h> and WTERMSIG.  Default to 64 instead
21349         of 127, since 64 is the largest conceivable number for ancient
21350         nonstandard hosts.
21351         * lib/sig2str.c: Do not include <sys/wait.h>; no longer needed.
21352
21353 2002-04-28  Jim Meyering  <meyering@lucent.com>
21354
21355         * lib/sig2str.c (WTERMSIG): Remove definition (unused).
21356
21357 2002-04-24  Jim Meyering  <meyering@lucent.com>
21358
21359         * m4/prereq.m4 (jm_PREREQ_HARD_LOCALE): New macro.
21360         (jm_PREREQ): Use it.
21361
21362         * m4/getloadavg.m4: Check for these headers: locale.h unistd.h
21363         mach/mach.h fcntl.h.
21364         Check for this function: setlocale.
21365
21366 2002-04-24  Jim Meyering  <meyering@lucent.com>
21367
21368         * lib/gettext.h: New file, from Gettext.
21369         * lib/Makefile.am (INCLUDES): Remove -I../intl.
21370         (libfetish_a_SOURCES): Add gettext.h.
21371
21372 2002-04-16  Jim Meyering  <meyering@lucent.com>
21373
21374         * m4/prereq.m4 (jm_PREREQ_READUTMP): Also check for these members:
21375         ut_pid, ut_id, ut_exit.
21376
21377 2002-04-16  Jim Meyering  <meyering@lucent.com>
21378
21379         * lib/readutmp.h (UT_TYPE): Remove definition (now in who.c).
21380         (HAVE_STRUCT_XTMP_UT_EXIT, HAVE_STRUCT_XTMP_UT_ID): Define.
21381         (HAVE_STRUCT_XTMP_UT_PID, HAVE_STRUCT_XTMP_UT_TYPE): Define.
21382
21383 2002-04-12  Jim Meyering  <meyering@lucent.com>
21384
21385         * m4/ls-mntd-fs.m4 (checking for getmntinfo function...): Remove
21386         now-bogus check for f_type in sys/mount.h.  Instead, just test for the
21387         existence of the getmntinfo function.  Needed for Darwin 5.3.
21388
21389         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Also detect when dirfd is a macro.
21390         This is necessary at least on Darwin 5.3.
21391
21392         * m4/jm-macros.m4: Don't AC_REPLACE(strnlen), now that we use
21393         AC_FUNC_STRNLEN.  Otherwise, we'd end up putting two copies of
21394         strnlen.o in the library, and that makes some versions of ranlib
21395         object.
21396
21397 2002-04-12  Jim Meyering  <meyering@lucent.com>
21398
21399         * lib/dirfd.h (dirfd): Elide prototype if dirfd is a macro.
21400
21401 2002-04-09  Jim Meyering  <meyering@lucent.com>
21402
21403         * m4/malloc.m4: (jm_FUNC_MALLOC): Change the `checking ...' message
21404         to be more precise.  Rather than saying we're checking whether the
21405         function `works', say what we're testing.
21406         * m4/realloc.m4 (jm_FUNC_REALLOC): Likewise.
21407         Reported by Bruno Haible.
21408
21409 2002-03-10  Jim Meyering  <meyering@lucent.com>
21410
21411         * lib/makepath.c (make_path): Remove a comma from a diagnostic.
21412         Suggestion from Santiago Vila.
21413
21414 2002-03-08  Jim Meyering  <meyering@lucent.com>
21415
21416         * lib/rename.c: Mention that this wrapper is needed also on
21417         mips-dec-ultrix4.4 systems.
21418
21419 2002-03-02  Jim Meyering  <meyering@lucent.com>
21420
21421         * lib/gettime.c (gettime): Test HAVE_CLOCK_GETTIME,
21422         not HAVE_CLOCK_SETTIME.
21423
21424 2002-02-27  Paul Eggert  <eggert@twinsun.com>
21425
21426         * m4/jm-macros.m4 (jm_MACROS): Do not replace stime; no longer used.
21427         Check for clock_settime.
21428
21429 2002-02-27  Paul Eggert  <eggert@twinsun.com>
21430
21431         * lib/nanosleep.h: Rename to....
21432         * lib/timespec.h: New name for nanosleep.h.  All uses changed.
21433
21434         * lib/gettime.c: New file.
21435         * lib/settime.c: New file.
21436         * lib/stime.c: Remove.
21437
21438         * lib/Makefile.am (libfetish_a_SOURCES): Add gettime.c, settime.c,
21439         timespec.h.  Remove nanosleep.h.
21440
21441 2002-02-25  Paul Eggert  <eggert@twinsun.com>
21442
21443         * m4/acl.m4: New file.
21444         * m4/jm-macros.m4 (jm_MACROS): Require AC_FUNC_ACL.
21445         Do not check for acl or sys/acl.h, as AC_FUNC_ACL does that now.
21446
21447 2002-02-25  Paul Eggert  <eggert@twinsun.com>
21448
21449         * lib/acl.c, lib/acl.h: New files.
21450         * lib/Makefile.am (libfetish_a_SOURCES): Add acl.h, acl.c.
21451
21452 2002-02-24  Jim Meyering  <meyering@lucent.com>
21453
21454         * lib/strnlen.c (strnlen): Define-away/undef so that an inconsistent
21455         prototype in string.h (on at least AIX4.3.2.0 w/gcc-2.95.3) doesn't
21456         cause trouble.  Reported by Nelson Beebe.
21457
21458 2002-02-23  Paul Eggert  <eggert@twinsun.com>
21459
21460         * lib/path-concat.c (xpath_concat): Reorder code to pacify
21461         compilers that don't know that xalloc_die never returns.
21462
21463 2002-02-20  Jim Meyering  <meyering@lucent.com>
21464
21465         * lib/getdate.c: Regenerate using bison-1.33.
21466
21467 2002-02-17  Jim Meyering  <meyering@lucent.com>
21468
21469         * config/config.guess (main): Don't use `head -1'; it's no longer
21470         portable. Use `sed 1q' instead.
21471
21472 2002-02-16  gettextize  <bug-gnu-gettext@gnu.org>
21473
21474         * m4/codeset.m4: Upgrade to gettext-0.11.
21475         * m4/gettext.m4: Upgrade to gettext-0.11.
21476         * m4/glibc21.m4: Upgrade to gettext-0.11.
21477         * m4/iconv.m4: Upgrade to gettext-0.11.
21478         * m4/isc-posix.m4: Upgrade to gettext-0.11.
21479         * m4/lcmessage.m4: Upgrade to gettext-0.11.
21480         * m4/lib-ld.m4: New file, from gettext-0.11.
21481         * m4/lib-link.m4: New file, from gettext-0.11.
21482         * m4/lib-prefix.m4: New file, from gettext-0.11.
21483         * m4/progtest.m4: Upgrade to gettext-0.11.
21484
21485 2002-02-15  Paul Eggert  <eggert@twinsun.com>
21486
21487         * m4/prereq.m4 (jm_PREREQ_POSIXVER): New macro.
21488         (jm_PREREQ): Use it.
21489
21490 2002-02-15  Paul Eggert  <eggert@twinsun.com>
21491
21492         * lib/posixver.c, lib/posixver.h: New files.
21493         * lib/Makefile.am (libfetish_a_SOURCES): Add them.
21494
21495 2002-02-02  Paul Eggert  <eggert@twinsun.com>
21496             Bruno Haible  <bruno@clisp.org>
21497
21498         * lib/unicodeio.h (print_unicode_char): Add exit_on_error argument.
21499         (fwrite_success_callback): New declaration.
21500         * lib/unicodeio.c (unicode_to_mb): New function, extracted from
21501         print_unicode_char. Call failure callback instead of error.
21502         (fwrite_success_callback): New function.
21503         (exit_failure_callback): New function.
21504         (fallback_failure_callback): New function.
21505         (print_unicode_char): Call unicode_to_mb.
21506
21507 2002-01-26  Jim Meyering  <meyering@lucent.com>
21508
21509         * m4/jm-macros.m4 (jm_MACROS): Require autoconf-2.52g.
21510         * m4/strnlen.m4: Remove file, now that it's part of autoconf.
21511
21512 2002-01-26  Jim Meyering  <meyering@lucent.com>
21513
21514         * lib/Makefile.am (getdate$U.o): Depend on unlocked-io.h.
21515
21516 2002-01-22  Paul Eggert  <eggert@twinsun.com>
21517
21518         * m4/jm-macros.m4 (jm_MACROS): Require AC_FUNC_FSEEKO.
21519
21520 2002-01-22  Jim Meyering  <meyering@lucent.com>
21521
21522         * lib/Makefile.am (Makefile): Don't depend on $(BUILT_SOURCES).
21523         Otherwise, some versions of automake would omit the rule that makes
21524         Makefile from Makefile.in.
21525
21526 2002-01-21  Paul Eggert  <eggert@twinsun.com>
21527
21528         * lib/xmemcoll.h, lib/xmemcoll.c: New files.
21529         * lib/Makefile.am (libfetish_a_SOURCES): Add them.
21530         * lib/memcoll.c: Include errno.h, and declare errno if not defined.
21531         (memcoll): Set errno to zero if there is no error.
21532
21533         * lib/quotearg.c (quotearg_buffer_restyled):
21534         Fix bug with quoting buffers containing NUL when backslashing escapes.
21535         This bug was exposed by the other changes in this patch.
21536         (quotearg_n_options): New arg ARGSIZE.
21537         All callers changed.
21538         (quoting_options_from_style): New function.
21539         (quotearg_n_style): Use it.
21540         (quotearg_n_style_mem): New function.
21541
21542         * lib/quotearg.h (quotearg_n_style_mem): New function.
21543
21544 2002-01-19  Jim Meyering  <meyering@lucent.com>
21545
21546         * m4/jm-macros.m4 (jm_MACROS): Use AC_FUNC_STRNLEN.
21547         Remove useless quotes: DF_PROG="df".
21548         * m4/strnlen.m4: New file.
21549
21550 2002-01-16  Paul Eggert  <eggert@twinsun.com>
21551
21552         * lib/backupfile.c (ISDIGIT): Comment fix.
21553         * lib/getdate.y (ISDIGIT): Likewise.
21554         * lib/posixtm.c (ISDIGIT, year): Likewise.
21555         * lib/strverscmp.c (ISDIGIT): Likewise.
21556         * lib/userspec.c (ISDIGIT): Likewise.
21557
21558 2002-01-16  Jim Meyering  <meyering@lucent.com>
21559
21560         * lib/getdate.y: Add three semicolons, each just before a closing
21561         brace. Bison (as of version 1.31) no longer papers over that mistake.
21562
21563 2002-01-05  Jim Meyering  <meyering@lucent.com>
21564
21565         * lib/version-etc.c (version_etc_copyright): Update copyright year.
21566
21567 2001-12-19  Paul Eggert  <eggert@twinsun.com>
21568
21569         * lib/closeout.c (close_stdout_status): If ferror (stdout), do
21570         not silently exit merely because the output buffer happens to
21571         have nothing pending.
21572
21573 2001-12-18  Paul Eggert  <eggert@twinsun.com>
21574
21575         See the big note in ../ChangeLog.
21576         * lib/human.c (suffixes): Prefer K to k for 1024.
21577         (generate_suffix_backwards): New function.
21578         (human_readable_inexact): Use it.
21579         * lib/xstrtol.c (__xstrtol): If there is no number but there
21580         is a valid suffix, assume 1.  "MB" now means decimal, "MiB" binary.
21581         Accept 'K' as well as 'k'.
21582
21583 2001-12-15  Jim Meyering  <meyering@lucent.com>
21584
21585         * lib/regex.h (__restrict_arr): Update from libc.
21586
21587         * lib/mountlist.h (ME_REMOTE): Recognize file systems of type smbfs
21588         as `remote' if the name starts with `//'.  Suggested by Michael Stone.
21589         (STREQ): Define.
21590
21591 2001-12-14  Jim Meyering  <meyering@lucent.com>
21592
21593         * m4/jm-macros.m4 (jm_MACROS): Check for iswspace.
21594         Suggestion from Bruno Haible.
21595
21596 2001-12-10  Jim Meyering  <meyering@lucent.com>
21597
21598         * lib/linebuffer.c: Remove explicit declarations of xmalloc and
21599         xrealloc, Instead, include "xalloc.h".
21600         (initbuffer): Don't cast xmalloc return value to char*.
21601         (readline): Reword comment.
21602         Don't cast xrealloc return value to char*
21603         Return NULL, not 0.
21604
21605 2001-12-09  Jim Meyering  <meyering@lucent.com>
21606
21607         * lib/modechange.c (mode_compile): Add cast to avoid pedantic warning
21608         about `signed and unsigned type in conditional expression'.
21609         * lib/posixtm.c (posix_time_parse): Likewise.
21610
21611         * lib/xreadlink.c (xreadlink): Add cast to avoid a pedantic warning.
21612
21613         * lib/readtokens.c (readtoken): Declare an index to be of type unsigned
21614         to avoid a pedantic warning.
21615
21616         * lib/getstr.c: Don't include assert.h.
21617         (getstr): Remove warning-evoking assertions.
21618         Return -1 if offset parameter is out of bounds.
21619         Change the type of a local from int to size_t.
21620
21621         * lib/strftime.c (my_strftime_localtime_r): Include this function
21622         definition in the `#if ! HAVE_TM_GMTOFF' block.
21623
21624         * lib/xgethostname.c: Remove declarations of xmalloc and xrealloc.
21625         Include xalloc.h instead.
21626
21627 2001-12-02  Jim Meyering  <meyering@lucent.com>
21628
21629         * lib/tempname.c: Don't declare getenv, thus reverting the change of
21630         2001-11-18.  It's no longer necessary, now that stdlib.h is always
21631         included.
21632
21633         * lib/regex.c [!__BOUNDED_POINTERS__]: Define away __bounded,
21634         __unbounded, and __ptrvalue.  Reported by Uwe H. Steinfeld.
21635
21636 2001-11-30  Akim Demaille  <akim@epita.fr>
21637
21638         * lib/xstrdup.c: Include xalloc.h, so that xstrdup is declared
21639         before being defined.
21640
21641 2001-11-27  Paul Eggert  <eggert@twinsun.com>
21642
21643         * lib/quotearg.h (quotearg_n, quotearg_n_style):
21644         First arg is int, not unsigned.
21645         * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
21646         (SIZE_MAX, UINT_MAX): New macros.
21647         (quotearg_n_options): Abort if N is negative.
21648         Avoid overflow check on hosts where size_t is 64 bits and int
21649         is 32 bits, as overflow is impossible there.
21650         Fix off-by-one typo that caused unnecessary reallocation.
21651
21652 2001-11-27  Jim Meyering  <meyering@lucent.com>
21653
21654         * lib/tempname.c: Merge with version from libc.
21655         * lib/regex.c: Likewise.
21656
21657         * lib/tempname.c: Include stdlib.h unconditionally.  On some old
21658         systems for which STDC_HEADERS is 0, it was not included, resulting in
21659         a warning about an integer-to-pointer conversion problem with getenv.
21660         Reported by Volker Borchert.
21661
21662 2001-11-26  Jim Meyering  <meyering@lucent.com>
21663
21664         * lib/gtod.h: Remove file.
21665         * lib/Makefile.am (libfetish_a_SOURCES): Remove gtod.h.
21666         * lib/gettimeofday.c: Don't include gtod.h.
21667         (GTOD_init): Remove function.
21668         (rpl_gettimeofday): Do its job here instead, rather than aborting.
21669         Suggestion from Volker Borchert.
21670
21671 2001-11-23  Jim Meyering  <meyering@lucent.com>
21672
21673         * lib/hash.h (struct hash_table): Don't define here.  Merely declare
21674         it.
21675         * lib/hash.c (struct hash_table): Define it here instead.
21676
21677 2001-11-22  Jim Meyering  <meyering@lucent.com>
21678
21679         * lib/hash.h: Bracket contents of file with #ifndef HASH_H_ ... #endif.
21680
21681 2001-11-20  Jim Meyering  <meyering@lucent.com>
21682
21683         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Update comment to reflect that
21684         SunOS 4.1.4 and Solaris 2.5.1 lose, too.
21685
21686 2001-11-19  Jim Meyering  <meyering@lucent.com>
21687
21688         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Don't bother with a temporary
21689         directory.  Use "conftestXXXXXX" as the template.
21690         Suggestion from Paul Eggert.
21691
21692         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Close each descriptor
21693         immediately, so the test doesn't mistakenly hit the max-open-files
21694         limit.
21695
21696 2001-11-18  Paul Eggert  <eggert@twinsun.com>
21697
21698         * lib/tempname.c (TMP_MAX): Remove; no longer needed.
21699         (TEMPORARIES): New macro.
21700         (__gen_tempname): Use TEMPORARIES rather than TMP_MAX.  This
21701         removes an artificial limitation (e.g. HP-UX 10.20, where
21702         TMP_MAX is 17576).
21703
21704 2001-11-18  Jim Meyering  <meyering@lucent.com>
21705
21706         * m4/prereq.m4 (jm_PREREQ_TEMPNAME): Check for declaration of getenv.
21707
21708 2001-11-18  Jim Meyering  <meyering@lucent.com>
21709
21710         * lib/tempname.c [!HAVE_DECL_GETENV]: Declare getenv to avoid warning
21711         on SunOS 4.
21712
21713         * lib/Makefile.am (Makefile): Depend on $(BUILT_SOURCES), so those
21714         files will be created before anything else.
21715
21716 2001-11-17  Paul Eggert  <eggert@twinsun.com>
21717
21718         * m4/jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): Do not define
21719         WINSIZE_IN_PTEM if <termios.h> defines struct winsize.
21720
21721 2001-11-17  Jim Meyering  <meyering@lucent.com>
21722
21723         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): New file and macro.
21724         Prompted by a report from Bob Proulx.
21725
21726         * m4/jm-macros.m4 (jm_MACROS): Don't test for mkstemp here.
21727         Instead, require UTILS_FUNC_MKSTEMP.
21728
21729 2001-11-17  Jim Meyering  <meyering@lucent.com>
21730
21731         * m4/jm-macros.m4 (jm_MACROS): Remove code to set POW_LIBM.
21732         Now, that's done as part of AC_FUNC_STRTOD.
21733
21734 2001-11-17  Jim Meyering  <meyering@lucent.com>
21735
21736         * lib/modechange.c (mode_adjust): Fix error introduced on 1999-04-26
21737         that made e.g., `chmod a=,o=w,g=o F' cause F to be group readable
21738         rather than group writable.  Patch by Juan F. Codagnone.
21739
21740         * lib/readtokens.c: Remove explicit declarations of xmalloc and
21741         xrealloc, Instead, include "xalloc.h".
21742
21743         * lib/mountlist.c: Include unlocked-io.h after all system headers.
21744         Remove explicit declarations of xmalloc, xrealloc,
21745         and xstrdup.  Instead, include "xalloc.h".
21746
21747         * lib/argmatch.c, closeout.c, error.c, exclude.c: Include
21748         unlocked-io.h.
21749         * lib/fatal.c, getdate.y, getpass.c, getstr.c, getusershell.c:
21750         Likewise.
21751         * lib/mountlist.c, posixtm.c, readtokens.c, readutmp.c: Likewise.
21752
21753         * lib/regex.c, sha.c, version-etc.c, yesno.c: Likewise.
21754         Reported by Padraig Brady.
21755
21756         * lib/mkstemp.c: #undef mkstemp.
21757         Include config.h.
21758         (rpl_mkstemp): Rename from mkstemp.
21759         Protoize.
21760
21761 2001-11-16  Jim Meyering  <meyering@lucent.com>
21762
21763         * lib/physmem.c [HAVE_SYS_PSTAT_H]: Include <sys/pstat.h>.
21764         (physmem_total) [HAVE_PSTAT_GETSTATIC]: If sysconf couldn't be used to
21765         determine the amount of total physical memory, use pstat_getstatic.
21766         HPUX-11 doesn't define _SC_PHYS_PAGES.
21767         (physmem_available) [HAVE_PSTAT_GETSTATIC && HAVE_PSTAT_GETDYNAMIC]:
21768         If sysconf couldn't be used to determine the amount of available
21769         physical memory, use both pstat_getstatic and pstat_getdynamic.
21770         Based on a patch from Bob Proulx.
21771
21772 2001-11-10  Jim Meyering  <meyering@lucent.com>
21773
21774         * m4/prereq.m4 (jm_PREREQ_PHYSMEM): New function.
21775         (jm_PREREQ): Use it.
21776
21777 2001-11-09  Jim Meyering  <meyering@lucent.com>
21778
21779         * m4/jm-macros.m4: Require autoconf-2.52f.
21780         (AC_FUNC_ERROR_AT_LINE, AC_FUNC_OBSTACK, AC_FUNC_STRTOD):
21781         Use these AC_-prefixed names, not the AM_-prefixed ones.
21782
21783         * m4/afs.m4 (jm_AFS): Quote the body.  Patch by Akim Demaille.
21784
21785 2001-11-05  Jim Meyering  <meyering@lucent.com>
21786
21787         * lib/xstat.in (slash_aware_lstat): Correct a misleading comment.
21788
21789 2001-11-04  Jim Meyering  <meyering@lucent.com>
21790
21791         * m4/fpending.m4: Remove unused cruft that saved, set, and restored
21792         $DEFS.
21793
21794 2001-11-03  Jim Meyering  <meyering@lucent.com>
21795
21796         * m4/jm-glibc-io.m4n (jm_FUNC_GLIBC_UNLOCKED_IO): Quote first arg
21797         of AC_DEFUN.
21798
21799         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Rework so dirfd.c doesn't have to
21800         know the name of the variable in the macro definition.
21801
21802 2001-11-03  Jim Meyering  <meyering@lucent.com>
21803
21804         * lib/argmatch.h (ARGMATCH_TO_ARGUMENT): Remove casts of first two args
21805         in argmatch_to_argument call.
21806
21807         * lib/dirfd.c (dirfd): Reflect the fact that DIR_TO_FD now takes an
21808         argument.
21809
21810         * lib/hash.c (hash_clear): Fix a bug that could lead to an infloop or
21811         e.g., a fault due to an attempt to free a NULL pointer.
21812
21813 2001-11-01  Jim Meyering  <meyering@lucent.com>
21814
21815         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): New macro.
21816         * m4/jm-macros.m4 (jm_MACROS): Require UTILS_FUNC_DIRFD.
21817
21818 2001-11-01  Jim Meyering  <meyering@lucent.com>
21819
21820         * lib/dirfd.c, lib/dirfd.h: New files.
21821         * lib/Makefile.am (libfetish_a_SOURCES): Add dirfd.h.
21822
21823         * lib/hash.c (hash_print) [TESTING]: Clean up.
21824
21825 2001-10-22  Paul Eggert  <eggert@twinsun.com>
21826
21827         * lib/hard-locale.c (alloca): Define to __builtin_alloca if __GNUC__,
21828         to avoid a warning if -Wall.
21829
21830 2001-10-22  Jeff Bailey  <jbailey@outpost.dnsalias.org>
21831
21832         * README: New file
21833         * doc/*: Add COPYING, COPYING.LIB, COPYING.DOC, fdl.texi
21834         (per RMS's instructions, this is now the canonical source)
21835         * lgpl/, gpl/: New directories.
21836
21837 2001-10-21  Paul Eggert  <eggert@twinsun.com>
21838
21839         * lib/regex.c (uintptr_t): Remove macro and decl; it's config.h's job.
21840
21841 2001-10-21  Jim Meyering  <meyering@lucent.com>
21842
21843         * lib/obstack.c (_): Honor the setting of ENABLE_NLS.  Otherwise,
21844         this code would end up calling gettext even in packages built
21845         with --disable-nls.
21846         * lib/getopt.c (_): Likewise.
21847         * lib/regex.c (_): Likewise.
21848
21849 2001-10-20  Paul Eggert  <eggert@twinsun.com>
21850
21851         * m4/error.m4 (jm_PREREQ_ERROR):
21852         Do not invoke AC_CHECK_FUNCS with strerror_r, as
21853         AC_FUNC_STRERROR_R does that.
21854         Check for strerror declaration.
21855
21856         * m4/strerror_r.m4: Add copyright notice, as nontrivial m4 files
21857         are supposed to have them these days.
21858         (AC_FUNC_STRERROR_R): Always do char* test, so that it gets cached.
21859         Merge changes from latest Autoconf CVS.
21860         Rename ac_cv_func_strerror_r_works to ac_cv_func_strerror_r_char_p,
21861         and rename HAVE_WORKING_STRERROR_R to STRERROR_R_CHAR_P, since
21862         POSIX decided to standardize on the int flavor of strerror_r.
21863
21864 2001-10-20  Paul Eggert  <eggert@twinsun.com>
21865
21866         * lib/error.c (strerror_r): Do not declare unless !_LIBC.
21867         Do not check for HAVE_DECL_STRERROR_R missing unless STRERROR_R_CHAR_P.
21868         Use strerror_r that is only a macro, even if it is not a function.
21869         (strerror): Check for HAVE_DECL_STRERROR before declaring.
21870         (private_strerror): Use prototypes, not old-style function definition.
21871         (print_errno_message): New function.
21872         Support the POSIX 'int'-flavored strerror_r, as well as the traditional
21873         char*-flavored one.
21874         (error_tail, error, error_at_line): Use it.
21875
21876 2001-10-11  Jim Meyering  <meyering@lucent.com>
21877
21878         * lib/argmatch.c (argmatch_invalid): Use quotearg_n_style (0, ...
21879         and quote_n (1, ... to avoid clobbering a buffer.
21880
21881 2001-10-05  Jim Meyering  <meyering@lucent.com>
21882
21883         * lib/Makefile.am: (libfetish_a_SOURCES): Add hash-pjw.c and
21884         hash-pjw.h.
21885         * lib/hash-pjw.c: New file (factored out of fileutils' remove.c).
21886         * lib/hash-pjw.h: New file.
21887
21888 2001-09-30  Jim Meyering  <meyering@lucent.com>
21889
21890         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): See if
21891         `struct fsstat' has the `f_fstypename' member.
21892         Use that to define FS_TYPE, which is now used to make
21893         the getfsstat link test tighter.
21894
21895 2001-09-30  Jim Meyering  <meyering@lucent.com>
21896
21897         * lib/mountlist.c [MOUNTED_GETFSSTAT]:
21898         Include <sys/ucred.h>, for Apple Darwin.
21899         Include sys/mount.h and sys/fs_types.h only if available.
21900         (FS_TYPE): Define.
21901         (read_filesystem_list): Use FS_TYPE.
21902
21903 2001-09-29  Paul Eggert  <eggert@twinsun.com>
21904
21905         * lib/exclude.c (excluded_filename): 0 -> false, since it's
21906         a boolean context.
21907
21908 2001-09-29  Jim Meyering  <meyering@lucent.com>
21909
21910         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS)
21911         [one-argument getmntent function]): Include stdio.h before mntent.h.
21912         SunOS 4.1.x needs it for the declaration of `FILE'.
21913         Patch by Volker Borchert.
21914
21915         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS)
21916         Check for these headers: sys/param.h sys/ucred.h sys/mount.h
21917         sys/fs_types.h, and make the link-test for getfsstat guard #include
21918         directives with appropriate #if HAVE_*_H tests so that we can
21919         detect getfsstat on Apple Darwin1.3.7 systems.
21920         Reported by Nelson Beebe.
21921         Fix harmless typo in cache variable name: s/getsstat/getfsstat/.
21922
21923 2001-09-28  Paul Eggert  <eggert@twinsun.com>
21924
21925         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
21926         #defines strtoimax.  Also treat the other strto* functions
21927         like strtoimax.
21928
21929         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
21930         Check for strtoul and strtoumax,
21931         as those declarations are made even in the signed case.
21932         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX):
21933         Likewise, for strtol and strtoimax.
21934
21935 2001-09-28  Paul Eggert  <eggert@twinsun.com>
21936
21937         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
21938         #defines strtoimax.  Also treat the other strto* functions
21939         like strtoimax.
21940
21941         * lib/xstrtol.c (strtol): Do not declare if HAVE_DECL_STRTOL.
21942         (strtoul): Do not declare if HAVE_DECL_STRTOUL.
21943         (strtoimax, strtoumax): Do not declare if already defined as a macro.
21944
21945 2001-09-26  Jim Meyering  <meyering@lucent.com>
21946
21947         Most macros in unlocked-io.h had the wrong number of arguments.
21948         * lib/gen-uio: New script.
21949         (USE_UNLOCKED_IO): Define to 1 if not already defined.
21950         * lib/unlocked-io.hin: Remove file.
21951         * lib/Makefile.am (unlocked-io.h): Rewrite to use a separate script,
21952         rather than trying to embed it here.
21953         (EXTRA_DIST): Add gen-uio.  Remove unlocked-io.hin
21954         Reported by Padraig Brady.
21955
21956 2001-09-25  Volker Borchert  <bt@teknon.de>
21957
21958         * lib/gettimeofday.c (rpl_gettimeofday): Declare local variable
21959         `result'.
21960
21961 2001-09-24  Jim Meyering  <meyering@lucent.com>
21962
21963         * m4/gettext.m4: Use the version from gettext-0.10.40, not CVS.
21964
21965 2001-09-23  Jim Meyering  <meyering@lucent.com>
21966
21967         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add a compile-test
21968         instead of the mere test for existence of mntent.h.  The latter
21969         would get a false-positive on AIX 3.4 systems.
21970         In the outer getmntent if-block, don't die if neither of the getmntent
21971         tests succeeds.  Instead, just fall through and continue with the
21972         remaining tests.
21973
21974 2001-09-23  Jim Meyering  <meyering@lucent.com>
21975
21976         * lib/mountlist.c: Remove useless parentheses in #if directives.
21977         (MOUNTED) [!defined MOUNTED]: Define to _PATH_MOUNTED, for when
21978         the deprecated MOUNTED symbol is no longer defined in mntent.h.
21979
21980 2001-09-22  Jim Meyering  <meyering@lucent.com>
21981
21982         * m4/gettext.m4: New file.  From gettext.
21983         * m4/lcmessage.m4: Sync with gettext -- this changes only comments.
21984         * m4/progtest.m4: Likewise
21985         * m4/isc-posix.m4: Decrement serial number to sync with gettext.
21986         * m4/glibc21.m4: Likewise.
21987
21988         * m4/libintl.m4: Remove.  No longer used.
21989
21990 2001-09-22  Jim Meyering  <meyering@lucent.com>
21991
21992         * lib/localcharset.c: Update from latest gettext.
21993         * lib/config.charset: Likewise.
21994
21995 2001-09-20  Jim Meyering  <meyering@lucent.com>
21996
21997         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX): Check for declaration of
21998         strtoimax.
21999         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check for declaration of
22000         strtoumax.
22001
22002 2001-09-20  Jim Meyering  <meyering@lucent.com>
22003
22004         * lib/xstrtol.c (strtoimax): Guard declaration with
22005         `#if !HAVE_DECL_STRTOIMAX', rather than just `#ifndef strtoimax'.
22006         The latter fails because some systems (at least rs6000-ibm-aix4.3.3.0)
22007         have their own, conflicting declaration of strtoimax in sys/inttypes.h.
22008         (strtoumax): Likewise, for completeness (it wasn't necessary).
22009
22010 2001-09-17  Paul Eggert  <eggert@twinsun.com>
22011
22012         * lib/strtoimax.c (HAVE_LONG_LONG):
22013         Redefine to HAVE_UNSIGNED_LONG_LONG if unsigned.
22014         (strtoimax): Use sizeof (long), not sizeof strtol (ptr, endptr, base),
22015         to work around bug in IBM C compiler.
22016
22017 2001-09-17  Jim Meyering  <meyering@lucent.com>
22018
22019         * m4/chown.m4, fstypename.m4, getgroups.m4, gettimeofday.m4,
22020         * m4/jm-mktime.m4, lstat.m4, malloc.m4, memcmp.m4, mkdir-slash.m4,
22021         * m4/nanosleep.m4, putenv.m4, readdir.m4, realloc.m4, rename.m4,
22022         * m4/st_dm_mode.m4, stat.m4, strerror_r.m4, timespec.m4, utimbuf.m4,
22023         * m4/utimes.m4: Use AC_DEFINE rather than AC_DEFINE_UNQUOTED,
22024         whenever the right hand side need not be expanded by the shell.
22025
22026 2001-09-16  Paul Eggert  <eggert@twinsun.com>
22027
22028         * m4/fnmatch.m4 (jm_FUNC_FNMATCH): Remove test for GNU C
22029         library.  It's not correct, as some older glibcs are buggy.
22030         fnmatch wasn't fixed until glibc 2.2.
22031
22032         Use AC_DEFINE, not AC_DEFINE_UNQUOTED, as there's no
22033         special shell magic here.
22034
22035 2001-09-16  Jim Meyering  <meyering@lucent.com>
22036
22037         * m4/mkdir-slash.m4 (UTILS_FUNC_MKDIR_TRAILING_SLASH): New file/macro.
22038         * m4/jm-macros.m4: Require it.
22039
22040 2001-09-16  Jim Meyering  <meyering@lucent.com>
22041
22042         * lib/mkdir.c: New file.
22043
22044 2001-09-15  Jim Meyering  <meyering@lucent.com>
22045
22046         * m4/jm-macros.m4: Check for help2man.
22047
22048 2001-09-11  Jim Meyering  <meyering@lucent.com>
22049
22050         * m4/host-os.m4 (UTILS_HOST_OS): New file/macro.
22051         The body, by Paul Eggert, was moved here from configure.in.
22052         * m4/jm-macros.m4: Require UTILS_HOST_OS.
22053
22054 2001-09-04  Paul Eggert  <eggert@twinsun.com>
22055
22056         * m4/prereq.m4 (jm_PREREQ_XREADLINK): New macro.
22057         (jm_PREREQ): Use it.
22058
22059 2001-09-04  Paul Eggert  <eggert@twinsun.com>
22060
22061         * lib/xreadlink.c (xreadlink): Omit size_t* arg.  All uses changed.
22062         Use ssize_t, not int, to store result of readlink.
22063         Check for ssize_t overflow as well as size_t overflow,
22064         as POSIX says the result of readlink is implementation-defined
22065         when ssize_t overflows.
22066         Remove unnecessary cast to char*.
22067         Use free+malloc instead of realloc, as the storage doesn't need
22068         to be preserved and it's clearer and can be more efficient that way.
22069         (SIZE_MAX, SSIZE_MAX): New macros, if <limits.h> doesn't declare.
22070         * lib/xreadlink.h (xreadlink): Update prototype.
22071
22072 2001-09-04  Paul Eggert  <eggert@twinsun.com>
22073
22074         * lib/xgetcwd.c: Revert some of the previous change; intead,
22075         fix the HAVE_GETCWD_NULL code to behave more like the
22076         !HAVE_GETCWD_NULL code used to.
22077
22078         Include "xalloc.h".
22079         (xgetcwd): Do not return NULL when memory is exhausted; instead,
22080         invoke xalloc_die.
22081
22082 2001-09-03  Paul Eggert  <eggert@twinsun.com>
22083
22084         * m4/prereq.m4 (jm_PREREQ_XGETCWD): Check for limits.h and
22085         sys/param.h, as pathmax.h includes them.
22086
22087 2001-09-03  Paul Eggert  <eggert@twinsun.com>
22088
22089         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_XGETCWD.
22090         (jm_PREREQ_XGETCWD): New macro.
22091
22092         * m4/getcwd.m4: New file.
22093
22094 2001-09-03  Paul Eggert  <eggert@twinsun.com>
22095
22096         * lib/xgetcwd.c: Fix the !HAVE_GETCWD_NULL code to behave more
22097         like the HAVE_GETCWD_NULL code.
22098         Include pathmax.h if not HAVE_GETCWD.
22099         Do not include xalloc.h.
22100         (INITIAL_BUFFER_SIZE): New symbol.
22101         Do not use xmalloc / xrealloc, since the caller is responsible for
22102         handling errors.  Preserve errno around `free' during failure.
22103         Do not overrun buffer when using getwd.
22104
22105 2001-09-03  Paul Eggert  <eggert@twinsun.com>
22106
22107         * lib/xgetcwd.c (xgetcwd): Use HAVE_GETCWD_NULL, not (defined
22108         __GLIBC__ && __GLIBC__ >= 2), to decide whether to use
22109         getcwd (NULL, 0).
22110
22111 2001-09-03  Paul Eggert  <eggert@twinsun.com>
22112
22113         * lib/exclude.c (fnmatch_no_wildcards): Fix confusion between
22114         usage of FNM_CASEFOLD and FNM_LEADING_DIR.  The bug was
22115         spotted by Jim Meyering.
22116
22117 2001-09-03  Jim Meyering  <meyering@lucent.com>
22118
22119         * lib/xreadlink.c (xreadlink): Preserve errno around `free' during
22120         failure.
22121
22122 2001-09-02  Jim Meyering  <meyering@lucent.com>
22123
22124         * lib/error.c: Update from GNU libc.
22125
22126 2001-09-01  Jim Meyering  <meyering@lucent.com>
22127
22128         * m4/jm-macros.m4 (jm_MACROS): Check for canonicalize_file_name.
22129         Used by df.
22130
22131 2001-09-01  Jim Meyering  <meyering@lucent.com>
22132
22133         * lib/xreadlink.c: New file.
22134         * lib/xreadlink.h: New file.
22135         * lib/Makefile.am (libfetish_a_SOURCES): Add xreadlink.c and
22136         xreadlink.h.
22137
22138         * lib/regex.c (uintptr_t) [!_LIBC]: Define to private_uintptr_t, so it
22139         doesn't conflict with sparc Solaris 7's definition in
22140         /usr/include/sys/int_types.h.
22141
22142         * lib/exclude.c: Use `""', not `<>' to #include non-system header
22143         files.
22144         (fnmatch_no_wildcards): Rewrite not to use function names, strcasecmp
22145         and strncasecmp as r-values.  Unixware didn't have declarations.
22146
22147 2001-08-31  Paul Eggert  <eggert@twinsun.com>
22148
22149         * lib/xstrtol.h: Add copyright notice.
22150         (_DECLARE_XSTRTOL): Improve quality of diagnostic for
22151         LONGINT_INVALID_SUFFIX_CHAR.
22152
22153 2001-08-31  Paul Eggert  <eggert@twinsun.com>
22154
22155         * lib/xstrtol.c (strtoimax): New decl.
22156
22157 2001-08-31  Paul Eggert  <eggert@twinsun.com>
22158
22159         * lib/xgetcwd.c: Don't include pathmax.h.
22160         Include stdlib.h and unistd.h if available.
22161         Include xalloc.h.
22162         (xmalloc, xstrdup, free): Remove decls.
22163         (xgetcwd): Don't assume sizes fit in unsigned.
22164         Check for overflow when computing sizes.
22165         Simplify reallocation code.
22166
22167 2001-08-31  Paul Eggert  <eggert@twinsun.com>
22168
22169         * lib/savedir.c (savedir): Remove size parameter, as POSIX says that
22170         a directory's st_size can have an arbitrary value, so the old
22171         usage could waste an arbitrary amount of memory.  All uses
22172         changed.
22173         * lib/savedir.h: Update prototype.
22174
22175 2001-08-31  Paul Eggert  <eggert@twinsun.com>
22176
22177         * lib/Makefile.am (libfetish_a_SOURCES): Remove strtoxmax.c.
22178
22179         * lib/strtoimax.c: Renamed from strtoxmax.c, removing the
22180         old strtoimax.c.
22181
22182         Also, make the following further changes to make this file's
22183         configuration more similar to that of strtol.c:
22184         (UNSIGNED): Renamed from STRTOUXMAX_UNSIGNED.  All uses changed.
22185         (strtoumax, uintmax_t, strtoull, strtol): Remove.
22186         (intmax_t, strtoimax, strtol, strtoll): New macros, if UNSIGNED.
22187         (strtoimax): Renamed from strtoumax.  All uses of unsigned values
22188         changed to signed values.
22189
22190         And make the following changes as well:
22191         Fix copyright notice, as 1999 was missing.
22192         (verify): New macro.
22193         (strtoimax): Check sizes at compile-time, not run-time.
22194         Prefer strtol to strtoll if both work.
22195         (main): Remove; it was not that useful and was a pain to maintain.
22196
22197         * lib/strtoumax.c: Include strtoimax.c, not strtouxmax.c.
22198
22199 2001-08-31  Jim Meyering  <meyering@lucent.com>
22200
22201         * lib/xgetcwd.c (xgetcwd): Reorganize to avoid some duplication.
22202         Use an initial, malloc'd, buffer of length 128 rather than
22203         a statically allocated one of length 1024.
22204
22205 2001-08-30  Paul Eggert  <eggert@twinsun.com>
22206
22207         Simplify code, partly by assuming autoconf 2.52 semantics.
22208
22209         * m4/Makefile.am (EXTRA_DIST): Remove uintmax_t.m4.
22210
22211         * m4/inttypes.m4 (AC_PREREQ): Bump to 2.52.
22212         (jm_AC_HEADER_INTTYPES_H): Remove; now done by autoconf in 2.52.
22213         All uses removed.
22214         (jm_AC_TYPE_INTMAX_T, jm_AC_TYPE_UINTMAX_T):
22215         Move AC_REQUIRE to next-to-top level, to avoid confusion.
22216         Use 2.52's AC_CHECK_TYPE instead of merely looking for the header.
22217         * m4/prereq.m4 (jm_PREREQ_HUMAN): Don't require
22218         jm_AC_HEADER_INTTYPES_H.
22219         * m4/jm-macros.m4 (jm_MACROS): Likewise.
22220
22221         * m4/uintmax_t.m4: Remove, as it duplicates inttypes.m4.
22222
22223         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
22224         Quote first arg of AC_DEFUN.
22225         Require jm_AC_TYPE_UINTMAX_T and jm_AC_TYPE_UNSIGNED_LONG_LONG
22226         since they are needed to parse the include file even if we need
22227         only xstrtoimax.  Simplify logic behind the args to AC_REPLACE.
22228         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Likewise,
22229         but with opposite signedness.
22230
22231 2001-08-30  Paul Eggert  <eggert@twinsun.com>
22232
22233         Merge 'exclude' changes from tar 1.13.22.
22234         This fixes one or two unlikely storage allocation overflow bugs,
22235         but doesn't change user-visible behavior otherwise.
22236
22237 2001-08-30  Paul Eggert  <eggert@twinsun.com>
22238
22239         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_EXCLUDE.
22240         (jm_PREREQ_EXCLUDE): New macro.
22241
22242 2001-08-30  Paul Eggert  <eggert@twinsun.com>
22243
22244         * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
22245         tm to be declared.
22246
22247 2001-08-30  Paul Eggert  <eggert@twinsun.com>
22248
22249         * lib/hash.c: Remove '2001' from copyright notice.
22250
22251 2001-08-30  Paul Eggert  <eggert@twinsun.com>
22252
22253         * lib/full-write.h: New file.
22254         * lib/Makefile.am (libfetish_a_SOURCES): Add full-write.h.
22255         * lib/full-write.c: Correct credits, as cccp.c no longer
22256         exists and anyway it was so heavily changed from the old cccp
22257         code as to be unrecognizable.  Include full-write.h.
22258         (full_write) Return size_t, with short writes meaning failure.
22259         All callers changed.  This fixes a bug with large buffers
22260         on 64-bit hosts.
22261         * lib/utime.c: Include full-write.h.
22262
22263 2001-08-30  Paul Eggert  <eggert@twinsun.com>
22264
22265         * lib/exclude.c (bool): Declare, perhaps by including stdbool.h.
22266         (<sys/types.h>): Include only if HAVE_SYS_TYPES_H.
22267         (<stdlib.h>, <string.h>, <strings.h>, <inttypes.h>, <stdint.h>):
22268         Include if available.
22269         (<xalloc.h>): Include
22270         (SIZE_MAX): Define if <stdint.h> or <inttypes.h> doesn't.
22271         (verify): New macro.  Use it to verify that EXCLUDE macros do not
22272         collide with FNM macros.
22273         (struct patopts): New struct.
22274         (struct exclude): Use it, as exclude patterns now come with options.
22275         (new_exclude): Support above changes.
22276         (new_exclude, add_exclude_file):
22277         Initial size must now be a power of two to simplify overflow checking.
22278         (free_exclude, fnmatch_no_wildcards): New function.
22279         (excluded_filename): No longer requires options arg, as the options
22280         are determined by add_exclude.  Now returns bool, not int.
22281         (excluded_filename, add_exclude):
22282         Add support for the fancy new exclusion options.
22283         (add_exclude, add_exclude_file): Now takes int options arg.
22284         Check for arithmetic overflow when computing sizes.
22285         (add_exclude_file): xrealloc might modify errno, so don't
22286         realloc until after errno might be used.
22287
22288         * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE,EXCLUDE_WILDCARDS):
22289         New macros.
22290         (free_exclude): New decl.
22291         (add_exclude, add_exclude_file): Now takes int options arg.
22292         (excluded_filename): No longer requires options arg, as the options
22293         are determined by add_exclude.  Now returns bool, not int.
22294
22295 2001-08-30  Paul Eggert  <eggert@twinsun.com>
22296
22297         * lib/alloca.c (alloca): Arg is of type size_t, not unsigned.
22298
22299 2001-08-27  Jim Meyering  <meyering@lucent.com>
22300
22301         * lib/Makefile.am (libfetish_a_SOURCES): Add strtoxmax.c
22302
22303         * lib/version-etc.c (N_): Remove definition.
22304         Revert most of last change.
22305         Instead, simply don't mark the `Copyright...' string for translation.
22306         Based on advice from Paul Eggert.
22307
22308         * lib/strtoxmax.c: Tweak comment.
22309
22310 2001-08-26  Jim Meyering  <meyering@lucent.com>
22311
22312         * m4/jm-macros.m4: Require jm_AC_PREREQ_XSTRTOIMAX.
22313
22314         * m4/xstrtoimax.m4: New file.
22315         * m4/xstrtoumax.m4: Add comments explaining why we
22316         AC_REPLACE_FUNCS(strtol).
22317
22318 2001-08-26  Jim Meyering  <meyering@lucent.com>
22319
22320         * lib/version-etc.c (version_etc_copyright_fmt): Replace literal year
22321         of copyright with `%s' so translators don't get an untranslated
22322         message in 2002.
22323         (COPYRIGHT_YEAR): Define.
22324         (version_etc): Use fprintf rather than fputs.
22325         Suggestion from Ulrich Drepper.
22326
22327         * lib/Makefile.am (libfetish_a_SOURCES): Add xstrtoimax.c.
22328
22329         * lib/strtoll.c: New file, from GNU libc.
22330         * lib/xstrtoimax.c: New file.
22331
22332         * lib/xstrtol.h: Add xstrtoimax.
22333         * lib/strtoumax.c: New file.  Simply include "strtoumax.c".
22334         * lib/strtoimax.c: New file.  Likewise, but first define
22335         STRTOUXMAX_SIGNED.
22336
22337         * lib/strtoumax.c: Factor to work both for unsigned and signed types,
22338         ...
22339         * lib/strtoxmax.c: ... then renamed to this.
22340
22341 2001-08-18  Paul Eggert  <eggert@twinsun.com>
22342
22343         * m4/inttypes.m4: Add AC_PREREQ(2.13).
22344         (jm_AC_HEADER_INTTYPES_H): Test for intmax_t, too.
22345         (jm_AC_TYPE_INTMAX_T): New macro.
22346         (jm_AC_TYPE_UINTMAX_T): Moved here from uintmax_t.m4.
22347
22348         * m4/longlong.m4 (jm_AC_TYPE_LONG_LONG): New macro.
22349
22350         * m4/longlong.m4: Renamed from ulonglong.m4.
22351         * m4/inttypes.m4: Renamed from inttypes_h.m4.
22352         * m4/uintmax_t.m4: Removed.
22353
22354 2001-08-13  Paul Eggert  <eggert@twinsun.com>
22355
22356         * lib/Makefile.am (unlocked-io.h): Do not append "_unlocked" twice.
22357         Port to Solaris 8, where 'sed' requires a space after the 'r'
22358         command, and where sh dislikes "$/".  Clean up the spacing a bit.
22359         Redirect output to $tmp just once.
22360
22361 2001-08-12  Paul Eggert  <eggert@sic.twinsun.com>
22362
22363         * lib/addext.c (<errno.h>): Include.
22364         (errno): Declare if not defined.
22365         (addext): Work correctly when pathconf returns -1 and leaves
22366         errno alone because there is no limit.  Also, work even if
22367         pathconf returns a value greater than SIZE_MAX.
22368
22369 2001-08-12  Jim Meyering  <meyering@lucent.com>
22370
22371         * m4/afs.m4, assert.m4, bison.m4, check-decl.m4, chown.m4, d-ino.m4,
22372         d-type.m4, dos.m4, error.m4, fnmatch.m4, fpending.m4, fstypename.m4,
22373         fsusage.m4, ftruncate.m4, getgroups.m4, glibc.m4, gnu-source.m4,
22374         group-member.m4, jm-glibc-io.m4, jm-macros.m4, jm-mktime.m4,
22375         jm-winsz1.m4, jm-winsz2.m4, lchown.m4, lib-check.m4, libintl.m4,
22376         link-follow.m4, ls-mntd-fs.m4, lstat.m4, malloc.m4, mbrtowc.m4,
22377         mbstate_t.m4, mbswidth.m4, memcmp.m4, nanosleep.m4, perl.m4,
22378         prereq.m4, putenv.m4, readdir.m4, realloc.m4, regex.m4, rename.m4,
22379         rmdir-errno.m4, search-libs.m4, st_dm_mode.m4, st_mtim.m4, stat.m4,
22380         strftime.m4, timespec.m4, unlink-busy.m4, uptime.m4, utimbuf.m4,
22381         utime.m4, utimes.m4, xstrtoumax.m4:
22382         Quote the first argument in each use of AC_DEFUN.
22383
22384 2001-08-12  Jim Meyering  <meyering@lucent.com>
22385
22386         * lib/xgetcwd.c (xgetcwd) [defined __GLIBC__ && __GLIBC__ >= 2]:
22387         Simply `return getcwd (NULL, 0);'.
22388         [! (defined __GLIBC__ && __GLIBC__ >= 2)]:
22389         Use 1300 as initial value for length, not PATH_MAX.
22390
22391         * lib/pathmax.h: Clean up cpp syntax.
22392
22393 2001-08-12  Jim Meyering  <meyering@lucent.com>
22394
22395         * lib/gettimeofday.c: New file.
22396         * lib/gtod.h: New file.
22397         * lib/Makefile.am (libfetish_a_SOURCES): Add gtod.h.
22398
22399 2001-08-05  Jim Meyering  <meyering@lucent.com>
22400
22401         * m4/jm-macros.m4: Require autoconf-2.52.
22402
22403 2001-08-04  Jim Meyering  <meyering@lucent.com>
22404
22405         * lib/error.h (__attribute__): Remove `|| __STRICT_ANSI__' from #if
22406         stmt, to get in sync with glibc.
22407
22408 2001-08-03  Paul Eggert  <eggert@twinsun.com>
22409
22410         The following changes are from gettext 0.10.39 as maintained by
22411         Bruno Haible.
22412
22413         * lib/mbswidth.h (MBSW_REJECT_UNPRINTABLE, MBSW_REJECT_INVALID):
22414         Renamed from MBSW_ACCEPT_UNPRINTABLE and MBSW_ACCEPT_INVALID
22415         with inverted sense.  All uses changed.
22416
22417         * lib/mbswidth.c: Don't include <limits.h>.
22418         Include <stdlib.h> and <string.h> unconditionally.
22419         (iswcntrl, mbsinit, ISCNTRL): New macros.
22420         (mbsnwidth): Use K&R style function declarations.
22421         Don't bother checking for MB_LEN_MAX == 1, since the compiler
22422         can optimize it when MB_CUR_MAX == 1.
22423         The width of control characters is zero, not 1.
22424
22425 2001-08-03  Paul Eggert  <eggert@twinsun.com>
22426
22427         The following changes are from gettext 0.10.39 as maintained by
22428         Bruno Haible, except that getline.m4 continues to use AC_LIBOBJ.
22429
22430         * m4/codeset.m4: Upgrade to serial AM1.
22431         (AM_LANGINFO_CODESET): Renamed from jm_LANGINFO_CODESET;
22432         all uses changed.  Quote first arg of AC_DEFUN.
22433         (am_cv_langinfo_codeset): Renamed from jm_cv_langinfo_codeset.
22434
22435         * m4/iconv.m4: Upgrade to serial AM2.
22436         (AM_ICONV): Renamed from jm_ICONV; all uses changed.
22437         Add --with-libconv-prefix.
22438         Quote first arg of AC_DEFUN.  Add description for ICONV_CONST.
22439         (am_cv_func_iconv): Renamed from jm_cv_func_iconv.
22440         (am_cv_lib_iconv): Renamed from jm_cv_lib_iconv.
22441         (am_cv_proto_iconv): Renamed from jm_cv_proto_iconv.
22442         * m4/jm-macros.m4 (jm_MACROS): Reflect s/jm_/AM_/ renamings.
22443
22444         * m4/c-bs-a.m4 (AC_C_BACKSLASH_A): Quote first arg of AC_DEFUN.
22445         * m4/getline.m4 (AM_FUNC_GETLINE): Likewise.
22446         * m4/glibc21.m4 (jm_GLIBC21): Likewise.
22447         * m4/inttypes_h.m4 (jm_AC_HEADER_INTTYPES_H): Likewise.
22448         * m4/isc-posix.m4 (AC_ISC_POSIX): Likewise.
22449         * m4/lcmessage.m4 (AM_LC_MESSAGES): Likewise.
22450         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): Likewise.
22451         * m4/uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Likewise.
22452         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Likewise.
22453
22454         * m4/getline.m4 (AM_FUNC_GETLINE): Don't bother checking for
22455         string.h any more.
22456
22457         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): If not found, print "no",
22458         not the default value.
22459
22460         2001-06-25  Bruno Haible  <haible@clisp.cons.org>
22461         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Don't require AM_C_PROTOTYPES.
22462         Also check for mbsinit.  Needed for SCO 3.2v5.0.2.
22463         Also include <string.h>; this is where AIX 3.2.5 declares wcwidth.
22464         Also check for iswcntrl, used for wcwidth fallback.
22465         Use AC_TRY_COMPILE to emulate AC_CHECK_DECLS, for portability
22466         to Autoconf 2.13.
22467
22468 2001-08-03  Jim Meyering  <meyering@lucent.com>
22469
22470         * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): Use `#include', not `@%:@include',
22471         as it was in the original.  Reported by Paul Eggert.
22472
22473 2001-07-16  Jim Meyering  <meyering@lucent.com>
22474
22475         * m4/gettimeofday.m4: New file.
22476         Prompted by a report from Bernhard Baehr.
22477
22478 2001-07-15  Jim Meyering  <meyering@lucent.com>
22479
22480         * m4/Makefile.am.in (Makefile.am): Remove most of the unlocked-io.h
22481         stuff. Now it's in ../Makefile.cfg.
22482
22483 2001-07-15  Jim Meyering  <meyering@lucent.com>
22484
22485         * lib/Makefile.am (EXTRA_DIST): Add unlocked-io.hin.
22486         (BUILT_SOURCES): Add unlocked-io.h.
22487         (io_functions): Define.
22488         (unlocked-io.h): New rule.
22489         (DISTCLEANFILES): Add unlocked-io.h.
22490         (all-local): Depend on unlocked-io.h, to ensure it is created.
22491
22492         * lib/unlocked-io.hin: New file
22493
22494         * lib/regex.c: Update from glibc.
22495
22496 2001-07-05  Jim Meyering  <meyering@lucent.com>
22497
22498         * lib/Makefile.am (noinst_HEADERS): Remove definition, per new automake
22499         recommendation.
22500         (libfetish_a_SOURCES): Put all .h files here instead.
22501         Remove a thus-exposed (better checks in automake) duplicate and
22502         two unnecessary .h files.
22503
22504 2001-07-04  Jim Meyering  <meyering@lucent.com>
22505
22506         * m4/Makefile.am.in (glibc-io.struct): New target.  Rework the code
22507         that generates jm-glibc-io.m4 so that it doesn't trigger any make
22508         distcheck failure.
22509
22510 2001-07-02  Jim Meyering  <meyering@lucent.com>
22511
22512         The following changes were prompted by suggestions from Bruno Haible.
22513
22514         * m4/jm-glibc-io.m4n: New file, the template from which jm-glibc-io.m4
22515         is now generated.
22516         * m4/Makefile.am.in (Makefile.am): Include jm-glibc-io.m4n in emitted
22517         definition of EXTRA_DIST.
22518         (Makefile.am): Emit the dependency, `all-local: jm-glibc-io.m4' to
22519         ensure that the generated file is created/updated whenever the list
22520         of $(unlocked_functions) is changed.
22521         (jm-glibc-io.m4): New rule.
22522         (unlocked-io.h): New rule -- currently unused.
22523
22524 2001-06-24  Jim Meyering  <meyering@lucent.com>
22525
22526         * m4/regex.m4 (jm_INCLUDED_REGEX): Use a quadrigraph to represent an
22527         unmatched right bracket, rather than kludging it with an extra,
22528         falsely-matching quote in a comment.  Patch by Akim Demaille.
22529
22530 2001-06-11  Jim Meyering  <meyering@lucent.com>
22531
22532         * lib/regex.c: Update from GNU libc.
22533
22534 2001-05-27  Jim Meyering  <meyering@lucent.com>
22535
22536         * m4/prereq.m4 (jm_PREREQ_READUTMP): Check for ut_type in struct utmpx.
22537         Check for ut_type in struct utmp.
22538
22539 2001-05-27  Jim Meyering  <meyering@lucent.com>
22540
22541         * lib/readutmp.h (UT_TYPE): Define.
22542
22543 2001-05-24  Jim Meyering  <meyering@lucent.com>
22544
22545         * lib/argmatch.c: Include "quote.h".
22546         (argmatch_invalid): Remove explicit `' quotes.  Instead, use the
22547         quote function.  Reported by Göran Uddeborg.
22548
22549 2001-05-22  Jim Meyering  <meyering@lucent.com>
22550
22551         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't use AC_LIBOBJ(strftime),
22552         now that we use the package-supplied version unconditionally.
22553         (jm_FUNC_STRFTIME): Don't replace strftime, for the same reason.
22554
22555 2001-05-21  Jim Meyering  <meyering@lucent.com>
22556
22557         * m4/regex.m4: Change a couple backticks to single quotes to avoid
22558         shell syntax errors.
22559
22560 2001-05-21  Alexandre Duret-Lutz  <duret_g@epita.fr>
22561
22562         * m4/dos.m4 (jm_AC_DOS): Check for _WIN32, __WIN32__, and __MSDOS__.
22563
22564 2001-05-20  Paul Eggert  <eggert@twinsun.com>
22565
22566         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME):
22567         Don't bother to check library strftime, since
22568         we'll be using our own my_strftime function anyway.
22569         Define my_strftime instead of strftime.
22570
22571 2001-05-20  Alexandre Duret-Lutz  <duret_g@epita.fr>
22572
22573         * lib/dirname.c (dir_name): Compute append_dot using path, not newpath
22574         which is not yet declared.
22575
22576 2001-05-15  Jim Meyering  <meyering@lucent.com>
22577
22578         * m4/regex.m4: Use proper quoting so brackets appear in the test
22579         program.
22580         Reported by, and with help from, Bruno Haible.
22581
22582 2001-05-13  Jim Meyering  <meyering@lucent.com>
22583
22584         * m4/jm-macros.m4 (major_t, minor_t): Define to unsigned int if
22585         undefined.
22586
22587 2001-05-11  Paul Eggert  <eggert@twinsun.com>
22588
22589         dirname code cleanup.  base_name now behaves more compatibly
22590         with POSIX basename when given file names that have trailing
22591         slashes, and similarly for dir_name.  Add new primitives
22592         base_len and dir_len.  Put the directory-name-related decls
22593         into dirname.h.
22594
22595         * lib/addext.c (ISSLASH, base_name): Remove; now in dirname.h.
22596         * lib/backupfile.c (base_name): Likewise.
22597         * lib/basename.c (FILESYSTEM_PREFIX_LEN, PARAMS, ISSLASH): Likewise.
22598         * lib/dirname.c (FILESYSTEM_PREFIX_LEN, ISSLASH): Likewise.
22599         * lib/makepath.c (strip_trailing_slashes): Likewise.
22600         * lib/path-concat.c (DIRECTORY_SEPARATOR, FILESYSTEM_PREFIX_LEN,
22601         ISSLASH): Likewise.
22602         * lib/rename.c (strip_trailing_slashes): Likewise.
22603         * lib/same.c (base_name): Likewise.
22604         * lib/stripslash.c (ISSLASH): Likewise.
22605
22606         * lib/addext.c: Include <dirname.h> after size_t is defined.
22607         * lib/backupfile.c: Likewise.
22608
22609         * lib/addext.c (addext): Use base_len to trim redundant
22610         trailing slashes instead of doing it ourselves.
22611         But do not trim the last slash if it is not redundant.
22612
22613         * lib/backupfile.c (find_backup_file_name,
22614         max_backup_version): Use base_len instead of rolling it ourselves.
22615         Handle the case of "" and (on DOS) "C:" correctly.
22616
22617         * lib/basename.c: Do not include <stdio.h>, <assert.h>; no longer
22618         needed. Include <string.h>, <dirname.h>.
22619         (base_name): Allow file names ending in slashes, other than names
22620         that are all slashes.  In this case, return the basename followed
22621         by the slashes.  This is more general, and can be used in places
22622         where the original base_name purposely had an assertion failure.
22623         (base_len): New function.
22624
22625         * lib/dirname.c: Include <string.h> instead of <stdlib.h>.
22626         Do not include <assert.h>; no longer needed.
22627         Include xalloc.h.
22628         (memrchr): Remove decl.
22629         (dir_name_r): Remove.
22630         (dir_len): Renamed from dirlen.  All callers changed.
22631         Rewrite in terms of base_name, for simplicity and consistency.
22632         (dir_name): Never return NULL.  All callers changed.
22633         Do not include <stdlib.h> in test program; no longer needed.
22634         return 0; is fine for test program.
22635
22636         * lib/dirname.h (DIRECTORY_SEPARATOR, ISSLASH, FILESYSTEM_PREFIX_LEN):
22637         New macros.
22638         (base_name, base_len, dir_len, strip_trailing_slashes): New decls.
22639
22640         * lib/path-concat.c (path_concat): Use base_len to compute
22641         base length, not strlen; this means we cannot rely on memcpy
22642         to null-terminate.
22643
22644         * lib/same.c (STREQ): Remove.
22645         (same_name): Handle the case where the basename ends in trailing '/'.
22646
22647         * lib/stripslash.c (strip_trailing_slashes): Return nonzero if
22648         a slash was stripped.  Do not strip the last slash after a
22649         file system prefix.
22650
22651 2001-05-11  Paul Eggert  <eggert@twinsun.com>
22652
22653         * lib/Makefile.am (libfetish_a_SOURCES):
22654         Add strftime.c, since we now compile it on all hosts.
22655
22656         * lib/strftime.c (my_strftime):
22657         Define to nstrftime if emacs, but only if my_strftime is not defined.
22658         (extra_args, extra_args_spec, extra_args_spec_iso): Rename from
22659         ut_argument, ut_argument_spec, ut_argument_spec_iso, respectively.
22660         Add one more extra argument: a nanoseconds value.
22661         All uses changed.
22662         (ns): New macro.
22663         (my_strftime function): Add %N format.
22664         (emacs_strftimeu): Renamed from emacs_strftime,
22665         with extra ut argument.
22666
22667 2001-05-09  Paul Eggert  <eggert@twinsun.com>
22668
22669         * m4/jm-macros.m4 (jm_MACROS): Do not check for fseeko; no longer used.
22670
22671 2001-04-21  Jim Meyering  <meyering@lucent.com>
22672
22673         * m4/rmdir-errno.m4: Write to a new file, so that a restrictive umask
22674         doesn't interfere.
22675
22676 2001-04-21  Alexandre Duret-Lutz  <duret_g@epita.fr>
22677
22678         * m4/ftruncate.m4: Check for chsize.
22679         Link with ftruncate.o unconditionally if ftruncate is missing.
22680         This was required when cross-compiling to i586-mingw32msvc.
22681
22682 2001-04-08  Jim Meyering  <meyering@lucent.com>
22683
22684         * lib/getdate.y (get_date): Set tm_isdst to -1 to ensure that it is
22685         recomputed; that's necessary when the offset spans a DST transition.
22686         Patch by David J. MacKenzie.  Reported by Hon-Yin Kok.
22687
22688 2001-04-02  Jim Meyering  <meyering@lucent.com>
22689
22690         * lib/regex.h, regex.c: Update from GNU libc.
22691
22692 2001-03-24  Jim Meyering  <meyering@lucent.com>
22693
22694         * m4/jm-macros.m4: Require autoconf-2.49d.
22695
22696 2001-03-20  Bruno Haible  <haible@clisp.cons.org>
22697
22698         * m4/iconv.m4 (jm_ICONV): Recommend GNU libiconv.
22699
22700 2001-03-19  Paul Eggert  <eggert@twinsun.com>
22701
22702         * lib/version-etc.c (version_etc_copyright): Update to 2001.
22703
22704 2001-03-17  Jim Meyering  <meyering@lucent.com>
22705
22706         * m4/memcmp.m4 (jm_AC_FUNC_MEMCMP): Remove my copy of AC_FUNC_MEMCMP,
22707         now that the version in autoconf is equivalent.
22708         (jm_FUNC_MEMCMP): Adjust to use AC_FUNC_MEMCMP.
22709
22710         * m4/error.m4 (jm_PREREQ_ERROR): Invoke AC_FUNC_STRERROR_R.
22711         Suggestion from Akim Demaille.
22712
22713         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_TEMPNAME.
22714         (jm_PREREQ_TEMPNAME): New function.
22715
22716 2001-03-16  Paul Eggert  <eggert@twinsun.com>
22717
22718         * lib/tempname.c (uint64_t): Define to uintmax_t if
22719         not defined, and if UINT64_MAX is not defined.
22720         Required at least for Vax Ultrix4.3, which doesn't define uint64_t.
22721         Reported by John David Anglin.
22722
22723 2001-03-15  Bruno Haible  <haible@clisp.cons.org>
22724
22725         * lib/localcharset.c (locale_charset): Allow wildcard syntax. Also
22726         resolve alias if codeset is empty.
22727         * lib/config.charset (BeOS): Use wildcard syntax.
22728
22729 2001-03-13  Jim Meyering  <meyering@lucent.com>
22730
22731         * lib/path-concat.c (path_concat)
22732         [FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]: Don't insert a backslash when
22733         concatenating e.g., `C:' and `foo'.
22734         From Bruno Haible.
22735
22736 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
22737
22738         * lib/localcharset.c (locale_charset): Don't use
22739         setlocale(LC_CTYPE,NULL). Don't return NULL.
22740         * lib/unicodeio.c (print_unicode_char): Simplify accordingly.
22741
22742 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
22743
22744         * lib/config.charset: Update for FreeBSD 4.2 and OSF/1 5.1. Add
22745         support for DOS/DJGPP.
22746
22747 2001-03-01  Paul Eggert  <eggert@twinsun.com>
22748
22749         * m4/jm-macros.m4 (jm_MACROS): Use mkstemp replacement if the system
22750         lacks mkstemp.  Compile our own tempname.c if we compile our own
22751         mkstemp.c, as mkstemp relies on tempname.
22752
22753 2001-03-01  Jim Meyering  <meyering@lucent.com>
22754
22755         * m4/dos.m4 (jm_AC_DOS): Remove extra backslashes, now that
22756         AH_VERBATIM really does output its argument verbatim.
22757
22758 2001-02-28  Paul Eggert  <eggert@twinsun.com>
22759
22760         * lib/Makefile.am (libfetish_a_SOURCES):
22761         Add dup-safer.c, fopen-safer.c.
22762         (noinst_HEADERS): Add stdio-safer.h, unistd-safer.h.
22763
22764         * lib/dup-safer.c, lib/fopen-safer.c, lib/stdio-safer.h:
22765         * lib/unistd-safer.h: New files.
22766
22767 2001-02-25  Paul Eggert  <eggert@twinsun.com>
22768
22769         The mkstemp replacement is taken from glibc 2.2.2, with some
22770         portability fixes for use outside glibc, as follows:
22771
22772         * lib/tempname.c (struct_stat64): New macro.
22773         (direxists, __gen_tempname): Use it.
22774         This avoids a portability problem with Solaris 8.
22775
22776         * lib/tempname.c (<config.h>): Include if HAVE_CONFIG_H.
22777         (<stddef.h>, <stdint.h>, <string.h>):
22778         Include only if STDC_HEADERS || _LIBC.
22779         (<fcntl.h>): Include only if HAVE_FCNTL_H || _LIBC.
22780         (<unistd.h>): Include only if HAVE_UNISTD_H || _LIBC.
22781         (<sys/time.h>): Include only if HAVE_SYS_TIME_H || _LIBC.
22782         (__set_errno): Define this macro if <errno.h> doesn't.
22783         (P_tmpdir, TMP_MAX, __GT_FILE, __GT_BIGFILE, __GT_DIR, __GT_NOCREATE):
22784         Define these macros if <stdio.h> doesn't.
22785         (S_ISDIR, S_IRUSR, S_IWUSR, S_IXUSR):
22786         Define these macros if <sys/stat.h>
22787         doesn't.  Ignore <sys/stat.h> S_ISDIR if STAT_MACROS_BROKEN.
22788         (stat64, __getpid, __gettimeofday, __mkdir, __open, __open64, lxstat64,
22789         __xstat64): Define if not _LIBC.
22790         (__secure_getenv): Define if ! (HAVE___SECURE_GETENV || _LIBC).
22791         (__gen_tempname): Invoke gettimeofday only if
22792         HAVE_GETTIMEOFDAY || _LIBC;
22793         otherwise, fall back on plain "time".
22794         Use macros like S_IRUSR | S_IWUSR rather than octal values like 0600.
22795
22796         * lib/mkstemp.c (__GT_FILE): Define to zero if not defined.
22797
22798         * lib/mkstemp.c, lib/tempname.c: New files, taken from glibc 2.2.2.
22799
22800 2001-02-18  Paul Eggert  <eggert@twinsun.com>
22801
22802         * m4/jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for sys/resource.h.
22803
22804 2001-02-17  Paul Eggert  <eggert@twinsun.com>
22805
22806         * m4/mbrtowc.m4: New file, defining jm_FUNC_MBRTOWC.
22807         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH):
22808         Use jm_FUNC_MBRTOWC, not AC_CHECK_FUNCS(mbrtowc).
22809         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Likewise.
22810
22811 2001-02-17  Paul Eggert  <eggert@twinsun.com>
22812
22813         * lib/mbswidth.c, quotearg.c (mbrtowc, mbsinit):
22814         Remove workaround macros for hosts that have mbrtowc but not
22815         mbstate_t, as we now insist on proper declarations for both
22816         before using mbrtowc.
22817
22818 2001-02-17  Jim Meyering  <meyering@lucent.com>
22819
22820         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Don't check for
22821         getmntent via AC_CHECK_FUNCS, since that would get a `no' and disrupt
22822         further attempts by AC_FUNC_GETMNTENT to check with e.g., -lgen on
22823         UnixWare 7.1.1.
22824
22825         * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): Adapt to use AC_CACHE_CHECK etc.,
22826         rather than AC_CACHE_VAL.
22827
22828 2001-02-17  Jim Meyering  <meyering@lucent.com>
22829
22830         * lib/strtoul.c: Sync from GNU libc.  Use double quotes, not <...>
22831         around included file name.
22832
22833         * lib/strnlen.c (__strnlen): Merge in a change from GNU libc.
22834
22835         * lib/strftime.c: Update from GNU libc (the only changes were to
22836         comments).
22837
22838 2001-02-17  Jim Meyering  <meyering@lucent.com>
22839
22840         * lib/regex.c: Update from libc.
22841
22842 2001-02-17  Bruno Haible  <haible@clisp.cons.org>
22843
22844         * lib/mbswidth.h (mbswidth): Also define as macro, to avoid prototype
22845         clash.
22846
22847 2001-02-16  Paul Eggert  <eggert@twinsun.com>
22848
22849         * lib/alloca.c (malloc): Undef before defining, since stdlib.h
22850         may have defined it.  Needed for Encore Umax-3.0.9.16b systems.
22851         Reported by Mark Hounschell via Paul Eggert.
22852
22853 2001-02-07  Jim Meyering  <meyering@lucent.com>
22854
22855         * m4/regex.m4 (jm_INCLUDED_REGEX): Add a test for the latest bug.
22856
22857 2001-02-05  Jim Meyering  <meyering@lucent.com>
22858
22859         * m4/jm-macros.m4: Require autoconf-2.14d (not yet released), because
22860         it includes the patch required for `large file' support with at least
22861         HP-UX's 10.20 /bin/cc.
22862
22863 2001-02-03  Jim Meyering  <meyering@lucent.com>
22864
22865         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Restore prior use of
22866         AS_IF, now that it works once again (mysteriously).
22867         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise.
22868
22869 2001-01-30  Jim Meyering  <meyering@lucent.com>
22870
22871         Don't use filenames that are 8.3-equivalent to "conftest" on DOS.
22872         * m4/chown.m4: Rename conftestchown to conftest.chown.
22873         * m4/rename.m4: s/conftestdir/conftest.d1/ and
22874         s/conftestdir2/conftest.d2/.
22875         * m4/utimes.m4: s/conftestdata/conftest.data/
22876         Inspired by Pavel Roskin's change in autoconf.
22877
22878 2001-01-30  Bruno Haible  <haible@clisp.cons.org>
22879
22880         * lib/config.charset: Update for FreeBSD 4.2.
22881
22882 2001-01-27  Jim Meyering  <meyering@lucent.com>
22883
22884         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Open-code what was
22885         a use of AS_IF.
22886         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise.
22887
22888 2001-01-26  Jim Meyering  <meyering@lucent.com>
22889
22890         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for stddef.h, now that
22891         quotearg.c includes it.
22892
22893 2001-01-26  Jim Meyering  <meyering@lucent.com>
22894
22895         * lib/quotearg.c: Include stddef.h.
22896         * lib/quote.c: Include stddef.h.
22897         Reported by Axel Kittenberger.
22898
22899         * lib/xmalloc.c [HAVE_DONE_WORKING_MALLOC_CHECK]: Enclose error-evoking
22900         line in double quotes so that it evokes a better diagnostic.
22901         [HAVE_DONE_WORKING_REALLOC_CHECK]: Likewise.
22902         Reported by Axel Kittenberger.
22903
22904 2001-01-24  Stefan Monnier  <monnier@cs.yale.edu>
22905
22906         * regex.c (mutually_exclusive_p): Don't blindly handle `charset_not'
22907         as if it was a `charset'.
22908
22909 2001-01-21  Bruno Haible  <haible@clisp.cons.org>
22910
22911         * m4/iconv.m4 (jm_ICONV): Also check whether the iconv declaration
22912         has const.
22913
22914 2001-01-21  Bruno Haible  <haible@clisp.cons.org>
22915
22916         * lib/unicodeio.c (print_unicode_char): Cast the second iconv() arg,
22917         to avoid a warning.  Add back 'const' to inptr.
22918
22919 2001-01-20  Jim Meyering  <meyering@lucent.com>
22920
22921         Be sure that headers are checked before used in code compiled
22922         for the type checks.
22923         * m4/jm-macros.m4 (jm_MACROS): Remove all header checks.
22924         In place of that, invoke jm_CHECK_ALL_TYPES.
22925         (jm_CHECK_ALL_HEADERS): New functions with the above checks.
22926         (jm_CHECK_ALL_TYPES): Require jm_CHECK_ALL_HEADERS.
22927         Alan Iwi reported a build failure on an f300-fujitsu-uxpv4.1_ES;
22928         The check for ssize_t was mistakenly run before the test for unistd.h.
22929
22930         The configure-time check for stdbool.h was missing.
22931         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_HASH.
22932         (jm_PREREQ_HASH): New function.
22933
22934 2001-01-17  Jim Meyering  <meyering@lucent.com>
22935
22936         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use AS_IF, not AS_IFELSE,
22937         for autoconf-2.49c.
22938         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Likewise.
22939
22940 2001-01-16  Jim Meyering  <meyering@lucent.com>
22941
22942         * lib/basename.c: Include <stdio.h>, needed by assert on SunOS 4.
22943         From Bruno Haible.
22944
22945 2001-01-14  Jim Meyering  <meyering@lucent.com>
22946
22947         * m4/rename.m4: Use temporary directories named conftestdir{,2}, not
22948         foo and bar.  Create conftestdir/ in the script, not in the C code.
22949         Remove directories in the script, not in the C code.
22950         Remove conftestdir{,2} before trying to create the directory.
22951         Make the entire configure script fail if the mkdir fails.
22952
22953 2001-01-14  Jim Meyering  <meyering@lucent.com>
22954
22955         * lib/rename.c: New file.  From Volker Borchert.
22956         Include stdlib.h, string.h or strings.h, and xalloc.h.
22957         Use strip_trailing_slashes rather than open-coding it.
22958
22959 2001-01-03  Paul Eggert  <eggert@twinsun.com>
22960
22961         * lib/strftime.c: Sync with glibc time/strftime.c 1.81.
22962
22963 2001-01-03  Jim Meyering  <meyering@lucent.com>
22964
22965         * lib/unicodeio.c (print_unicode_char): Remove `const' from declaration
22966         of local `inptr' to avoid warning with some system declarations of
22967         iconv.
22968
22969 2001-01-02  Volker Borchert  <bt@teknon.de>
22970
22971         * m4/rename.m4: New file.
22972         * m4/jm-macros.m4 (jm_MACROS): Require vb_FUNC_RENAME.
22973
22974 2001-01-01  Jim Meyering  <meyering@lucent.com>
22975
22976         * m4/prereq.m4 (jm_PREREQ_READUTMP): Include utmp.h (if available),
22977         even on systems with utmpx.h.  It's necessary for the declaration of
22978         utmp's ut_user member.  Reported by Andreas Jaeger.
22979
22980         * m4/check-decl.m4 (jm_CHECK_DECLS): Include grp.h and pwd.h if
22981         available. They are required for the declarations of getgrgid and
22982         getpwuid resp.
22983         (_jm_DECL_HEADERS): Check for grp.h and pwd.h.
22984         Reported by Andreas Jaeger.
22985
22986 2001-01-01  Alexandre Duret-Lutz  <duret_g@epita.fr>
22987
22988         * m4/libintl.m4 (AM_GNU_GETTEXT): Define MKINSTALLDIRS by
22989         expanding the value of $ac_aux_dir, as in AM_MISSING_HAS_RUN,
22990         so `make install' also works in VPATH builds.
22991
22992 2000-12-31  Alexandre Duret-Lutz  <duret_g@epita.fr>
22993
22994         * m4/libintl.m4 (AM_WITH_NLS): When using AC_CONFIG_AUX_DIR,
22995         prepend $(top_srcdir) to the value of MKINSTALLDIRS so that it
22996         can be used in subdirectories.
22997
22998 2000-12-29  Paul Eggert  <eggert@twinsun.com>
22999
23000         * lib/modechange.c: Do not assume that mode_t uses the
23001         traditional octal encoding.  E.g. "chmod 1 FOO" should set
23002         the other-execute bit of FOO even if S_IXOTH != 1.
23003
23004         (SUID, SGID, SVTX, RUSR, WUSR, XUSR, RGRP, WGRP, XGRP, ROTH,
23005         WOTH, XOTH, ALLM): New macros.
23006         (S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR,
23007          S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH):
23008         Use them.
23009         (S_ISGID): Fix typo; it was defaulting to the same value as S_ISUID.
23010         (S_IRWXU, S_IRWXG, S_IRWXO): Specify defaults in terms of the above.
23011         (mode_compile):
23012         No need to use uintmax_t; unsigned long is long enough.
23013         Don't bother to get suffix since we don't use it.
23014
23015 2000-12-26  Jim Meyering  <meyering@lucent.com>
23016
23017         * m4/dos.m4 (jm_AC_DOS): Rewrite (though it's still a stub) to work
23018         better with autoheader.
23019
23020 2000-12-24  Jim Meyering  <meyering@lucent.com>
23021
23022         * lib/hash.c (is_prime): Return explicit boolean values.
23023         (hash_get_first): Return NULL to appease Irix5.6's 89.
23024         Reported by Nelson Beebe.
23025
23026 2000-12-19  Bruno Haible  <haible@clisp.cons.org>
23027
23028         * lib/localcharset.c (locale_charset): Add support for Win32.
23029
23030 2000-12-18  Paul Eggert  <eggert@twinsun.com>
23031
23032         * lib/physmem.h, lib/physmem.c: New files.
23033
23034         * lib/Makefile.am (libfetish_a_SOURCES): Add physmem.c.
23035         (noinst_HEADERS): Add physmem.h.
23036
23037         * lib/xstrtol.c (__xstrtol): Add undocumented suffixes 'g' and
23038         't' for compatibility with Solaris 8 sort.
23039
23040 2000-12-18  Bruno Haible  <haible@clisp.cons.org>
23041
23042         * lib/config.charset: Add support for BeOS.
23043
23044 2000-12-17  Jim Meyering  <meyering@lucent.com>
23045
23046         * m4/dos.m4 (jm_AC_DOS): New file and macro.
23047         * m4/jm-macros.m4 (jm_MACROS): Require jm_AC_DOS.
23048
23049 2000-12-16  Jim Meyering  <meyering@lucent.com>
23050
23051         This bug had a serious impact on chown: `chown N:M FILE' (for integer
23052         N and M) would have treated it like `chown N:N FILE'.
23053
23054         * lib/userspec.c (parse_user_spec): Fix typo: s/u/g/.
23055
23056 2000-12-16  Jim Meyering  <meyering@lucent.com>
23057
23058         * lib/getusershell.c [!SHELLS_FILE && __DJGPP__]: Define
23059         SHELLS_FILE to a file name that's useful on djgpp systems.
23060         Include stdlib.h.
23061         (ADDITIONAL_DEFAULT_SHELLS): Define.
23062         (default_shells): Prepend ADDITIONAL_DEFAULT_SHELLS.
23063         Based mostly on a patch from Prashant TR.
23064
23065 2000-12-16  Bruno Haible  <haible@clisp.cons.org>
23066
23067         * lib/config.charset: Add ISO-8859-3, BIG5HKSCS, GB18030, JOHAB,
23068         VISCII, CP874, CP949, CP950, CP1250, CP1253, CP1254, CP1255, CP1256,
23069         CP1257 to the list of canonical encodings. Rename EUC-CN to GB2312.
23070
23071 2000-12-08  Andreas Schwab  <schwab@suse.de>
23072
23073         * lib/mbswidth.c (mbsnwidth): Don't loop endlessly when called with an
23074         invalid mulitbyte sequence and with the MBSW_ACCEPT_INVALID flag set.
23075
23076 2000-12-07  Jim Meyering  <meyering@lucent.com>
23077
23078         * lib/stripslash.c (ISSLASH): Define.
23079         (strip_trailing_slashes): Use ISSLASH rather than comparing against
23080         `/'.
23081         From Prashant TR.
23082
23083         * lib/dirname.c (FILESYSTEM_PREFIX_LEN): Define.
23084         (dir_name_r): Declare this function as static.
23085         [BACKSLASH_IS_PATH_SEPARATOR]: Fix a bug that'd
23086         manifest itself on a name containing a mix of slashes and
23087         backslashes.
23088         Make this function work with names starting with a DOS-style
23089         drive letter and colon prefix.
23090         (dir_name): Append `.' if necessary.
23091         Based mostly on patches from Prashant TR and Eli Zaretskii.
23092
23093         * lib/dirname.h (dir_name_r): Remove prototype.
23094
23095 2000-12-06  Paul Eggert  <eggert@twinsun.com>
23096
23097         * m4/off_t-format.m4: Remove this file.
23098         * m4/jm-macros.m4 (jm_MACROS): Remove jm_SYS_OFF_T_PRINTF_FORMAT.
23099
23100 2000-12-06  Jim Meyering  <meyering@lucent.com>
23101
23102         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): If we need the
23103         replacement strtoull, we may well need the replacement strtoul, too.
23104         Check for declarations of strtoul and strtoull.
23105         Check for strtol.  Mainly as a cue to cause automake to include
23106         strtol.c -- that file is included by each of strtoul.c and strtoull.c.
23107         Check for limits.h -- strtol.c needs it.
23108
23109 2000-12-05  Jim Meyering  <meyering@lucent.com>
23110
23111         * lib/dirname.c (dir_name_r): Add `const' in a few local declarations.
23112
23113 2000-12-04  Jim Meyering  <meyering@lucent.com>
23114
23115         * lib/path-concat.c: [!HAVE_DECL_MALLOC]: Declare malloc.
23116         Also include memory.h, stdlib.h, unistd.h if appropriate.
23117         Reported by Andreas Jaeger (conflicting declaration of malloc).
23118
23119 2000-12-02  Jim Meyering  <meyering@lucent.com>
23120
23121         * m4/off_t-format.m4 (OFF_T_PRINTF_FORMAT_STRING): New file/macro.
23122         * m4/jm-macros.m4 (jm_MACROS): require it.
23123
23124 2000-12-02  Jim Meyering  <meyering@lucent.com>
23125
23126         * lib/closeout.h: Make idempotent, to avoid some obscure warnings.
23127
23128 2000-12-01  Paul Eggert  <eggert@twinsun.com>
23129
23130         * lib/memrchr.c: Include <config.h> before any system include file.
23131
23132 2000-11-30  Jim Meyering  <meyering@lucent.com>
23133
23134         * m4/jm-macros.m4 (jm_MACROS): Check for stdint.h.
23135
23136 2000-11-30  Jim Meyering  <meyering@lucent.com>
23137
23138         * m4/getloadavg.m4: s/ifval/m4_ifval/ to accommodate new autoconf.
23139
23140 2000-11-29  Paul Eggert  <eggert@twinsun.com>
23141
23142         * lib/dirname.c (dir_name_r): Fix typo: int -> size_t.
23143
23144 2000-11-26  Jim Meyering  <meyering@lucent.com>
23145
23146         * lib/memcoll.c: Include sys/types.h.  From Werner Almesberger.
23147
23148 2000-11-22  Paul Eggert  <eggert@twinsun.com>
23149
23150         * lib/strftime.c (my_strftime): Do not invoke mbrlen with a
23151         size of (size_t) -1; it's not portable.
23152
23153 2000-11-17  Jim Meyering  <meyering@lucent.com>
23154
23155         * lib/strstr.c: Update from GNU libc.
23156
23157 2000-11-17  Akim Demaille  <akim@epita.fr>
23158
23159         * lib/obstack.h: Formatting changes.
23160         (obstack_grow, obstack_grow0): Don't cast WHERE at all: that would
23161         prevent type checking.
23162         (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
23163         cast the value to (void *): assigning a `foo *' to a `void *'
23164         variable is valid.
23165         (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
23166
23167 2000-11-16  Jim Meyering  <meyering@lucent.com>
23168
23169         * lib/strverscmp.c: Incorporate weak-alias-related changes from glibc.
23170
23171 2000-11-11  Jim Meyering  <meyering@lucent.com>
23172
23173         * lib/error.c: Add a couple #includes, merging from GNU libc version.
23174
23175 2000-11-10  Jim Meyering  <meyering@lucent.com>
23176
23177         * lib/obstack.h: Update from GNU libc.
23178         * lib/obstack.c: Likewise.
23179
23180 2000-11-08  Bruno Haible  <haible@clisp.cons.org>
23181
23182         * m4/jm-macros.m4 (jm_MACROS): Add test for wcrtomb.
23183
23184 2000-11-06  Paul Eggert  <eggert@twinsun.com>
23185
23186         * lib/getusershell.c (setusershell): Use rewind rather than
23187         fseek/fseeko, to avoid configuration hassles with fseeko.
23188         Don't bother opening SHELLS_FILE if shellstream is NULL;
23189         it's not necessary.
23190
23191 2000-11-05  Jim Meyering  <meyering@lucent.com>
23192
23193         * lib/makepath.h (make_dir): Declare.
23194         * lib/makepath.c (make_dir): Remove `static' attribute.
23195         Tweak a comment.
23196
23197 2000-11-04  Jim Meyering  <meyering@lucent.com>
23198
23199         * m4/regex.m4: Use the `m4_' prefix on `syscmd' and `m4_sysval'.
23200
23201 2000-11-04  Alexandre Duret-Lutz  <duret_g@epita.fr>
23202
23203         * lib/hash.c (hash_get_next): Fix a thinko:  when ENTRY is the
23204         last one in a bucket, advance to the next bucket.
23205
23206 2000-11-02  Vesselin Atanasov  <vesselin@bgnet.bg>
23207
23208         * lib/fnmatch.c: Do not comment out all the code if we are using
23209         the GNU C library, because in some cases we are replacing buggy
23210         code in the GNU C library itself.
23211
23212 2000-10-30  Stefan Monnier  <monnier@cs.yale.edu>
23213
23214         * regex.c (re_iswctype, re_wctype_to_bit): Fix braino.
23215         (regex_compile): Catch bogus \(\1\).
23216
23217 2000-10-30  Paul Eggert  <eggert@twinsun.com>
23218
23219         * lib/fnmatch.c (FOLD): Do not assume that characters are unsigned.
23220         (fnmatch): Fix some FNM_FILE_NAME and FNM_LEADING_DIR bugs,
23221         e.g. fnmatch("d*/*1", "d/s/1", FNM_FILE_NAME) incorrectly yielded zero.
23222
23223 2000-10-30  Paul Eggert  <eggert@twinsun.com>
23224
23225         * lib/error.h, getline.h, modechange.h:
23226         Remove "2000" from Copyright line, as the file hasn't been
23227         changed this year other than in the copyright notice.
23228
23229         * lib/xalloc.h: Add "2000" to Copyright line, as this file
23230         was changed this year.
23231
23232 2000-10-29  Jim Meyering  <meyering@lucent.com>
23233
23234         * m4/fsusage.m4: s/AC_SHELL_IFELSE/AS_IFELSE/ to match autoconf
23235         renaming.
23236         * m4/ls-mntd-fs.m4: Likewise
23237
23238 2000-10-29  Jim Meyering  <meyering@lucent.com>
23239
23240         * lib/xstat.in: Fix grammar in comment.
23241
23242 2000-10-29  Greg Louis  <glouis@dynamicro.on.ca>
23243
23244         * lib/regex.h (__restrict_arr): Move definition out of #ifndef block.
23245         Required because egcs-2.91.66 (aka 1.1.2) defines __restrict, but
23246         doesn't define __restrict_arr.
23247
23248 2000-10-28  Jim Meyering  <meyering@lucent.com>
23249
23250         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_MEMCHR.
23251         (jm_PREREQ_MEMCHR): New function.
23252
23253 2000-10-28  Jim Meyering  <meyering@lucent.com>
23254
23255         * lib/memchr.c: Update from libc.
23256         Adjust for portability:
23257         [HAVE_STDLIB_H]: Include stdlib.h.
23258         [HAVE_BP_SYM_H || _LIBC]: Guard inclusion of bp-sym.h.
23259         Undef __memchr, too.
23260         [!weak_alias]: Define __memchr to memchr.
23261
23262         * lib/regex.c: Update from libc.
23263         * lib/regex.h: Likewise.
23264         * lib/getopt1.c: Likewise.
23265         * lib/memcmp.c: Likewise.
23266
23267         * lib/getusershell.c (setusershell) [HAVE_FSEEKO]: Use fseeko.
23268         Avoid using fseek, when possible -- it's broken by design.
23269         Patch by Ulrich Drepper.
23270
23271 2000-10-27  Stefan Monnier  <monnier@cs.yale.edu>
23272
23273         * regex.c (POP_FAILURE_REG_OR_COUNT, re_match_2_internal)
23274         (re_match_2_internal, re_match_2_internal, re_match_2_internal):
23275         Giving in to popular pressure to shut up the compiler with casts.
23276
23277 2000-10-26  Jim Meyering  <meyering@lucent.com>
23278
23279         * lib/strftime.c: Update from libc.
23280
23281 2000-10-25  Stefan Monnier  <monnier@cs.yale.edu>
23282
23283         * regex.c: More `unsigned char' -> `re_char' changes.
23284         Also change several `int' into `re_wchar_t'.
23285         (PATTERN_STACK_EMPTY, PUSH_PATTERN_OP, POP_PATTERN_OP): Remove.
23286         (PUSH_FAILURE_POINTER): Don't cast any more.
23287         (POP_FAILURE_REG_OR_COUNT): Remove the cast that strips `const'.
23288         We want GCC to complain, since this piece of code makes
23289         re_match non-reentrant, which *should* be fixed.
23290         (GET_BUFFER_SPACE): Use size_t rather than unsigned long.
23291         (EXTEND_BUFFER): Use RETALLOC.
23292         (SET_LIST_BIT): Don't cast.
23293         (re_wchar_t): New type.
23294         (re_iswctype, re_wctype_to_bit): Make it crystal clear to GCC
23295         that those two functions will always properly return.
23296         (IMMEDIATE_QUIT_CHECK): Cast to void.
23297         (analyse_first): Use recursion rather than an explicit stack.
23298         (re_compile_fastmap): Can't fail anymore.
23299         (re_search_2): Don't check re_compile_fastmap for failure.
23300         (PUSH_NUMBER): Renamed from PUSH_FAILURE_COUNT.
23301         Now also sets the new value (passed in a new argument).
23302         (re_match_2_internal): Use it.
23303         Also, use a new var `reg' of type size_t when looping through regs
23304         rather than reuse the inappropriate `mcnt'.
23305
23306 2000-10-25  Jim Meyering  <meyering@lucent.com>
23307
23308         * lib/obstack.c: Update from libc.
23309
23310 2000-10-24  Kenichi Handa  <handa@etl.go.jp>
23311
23312         * regex.c (regex_compile): Change the way of handling a range from
23313         a char less than 256 to a char not less than 256.
23314
23315 2000-10-24  Andrew Innes  <andrewi@gnu.org>
23316
23317         * regex.c (IMMEDIATE_QUIT_CHECK): New macro, which does QUIT on
23318         NT-Emacs only.
23319         (re_match_2_internal): Use IMMEDIATE_QUIT_CHECK instead of QUIT,
23320         so that re_search functions only quit when callers expect them to.
23321
23322 2000-10-23  Jim Meyering  <meyering@lucent.com>
23323
23324         * lib/hard-locale.c (hard_locale): Revert last change -- it was simply
23325         wrong.  That set_locale call must not have any side effects.
23326         From Paul Eggert.
23327
23328 2000-10-22  Jim Meyering  <meyering@lucent.com>
23329
23330         * lib/md5.c (md5_process_block) [OP]: Use `rol', not CYCLIC.
23331         [CYCLIC]: Remove now-unused definition.
23332
23333         * lib/save-cwd.c (O_DIRECTORY): Define, if needed.
23334         (save_cwd) [HAVE_FCHDIR]: Use O_DIRECTORY when opening ".".
23335         Suggestion from Ulrich Drepper.
23336
23337 2000-10-21  Jim Meyering  <meyering@lucent.com>
23338
23339         * m4/check-decl.m4 (jm_CHECK_DECLS): Also check for memrchr.
23340         * m4/prereq.m4 (jm_PREREQ_DIRNAME): New macro.
23341         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memrchr.
23342
23343 2000-10-21  Jim Meyering  <meyering@lucent.com>
23344
23345         * lib/dirname.c (memrchr): Declare if necessary.
23346         (dir_name): Remove the restriction that there be no
23347         trailing slashes.  Now, this code skips past them, effectively
23348         ignoring them.
23349         [TEST_DIRNAME] (main): New unit tests.
23350
23351         * lib/memrchr.c: New file from GNU libc.
23352         Undef __memrchr, too.
23353         [!weak_alias]: Define __memrchr to memrchr.
23354         Guard weak_alias use with `#ifdef weak_alias'.
23355
23356 2000-10-21  Jim Meyering  <meyering@lucent.com>
23357
23358         * lib/dirname.c (dir_name_r): New function, factored out of dir_name.
23359         (dir_name): Use dir_name_r.
23360         * lib/dirname.h (dir_name_r): Declare it.
23361
23362 2000-10-17  Jim Meyering  <meyering@lucent.com>
23363
23364         * lib/quote.h (PARAMS): Define and use.
23365         Reported by Akim Demaille.
23366
23367         * lib/getopt.c: Update from libc.
23368
23369 2000-10-16  Jim Meyering  <meyering@lucent.com>
23370
23371         * lib/hard-locale.c (hard_locale): Use "", not 0 as 2nd arg to
23372         setlocale.
23373         From Jan Fedak.
23374
23375 2000-10-15  Stefan Monnier  <monnier@cs.yale.edu>
23376
23377         * regex.c (WIDE_CHAR_SUPPORT): Define if _LIBC as well.
23378
23379 2000-09-25  Jim Meyering  <meyering@lucent.com>
23380
23381         * lib/md5.h (rol): Define (from GnuPG).
23382
23383         * lib/sha.c: Give credit (GnuPG) where due.
23384         (M): Use rol rather than open-coding it.
23385         Add a FIXME comment.
23386
23387 2000-09-21  Jim Meyering  <meyering@lucent.com>
23388
23389         * lib/userspec.c (parse_user_spec): Remove debugging printf I'd added.
23390         Reported by Michael Stone.
23391
23392 2000-09-20  Jim Meyering  <meyering@lucent.com>
23393
23394         * lib/Makefile.am (libfetish_a_SOURCES): Add sha.c.
23395         (noinst_HEADERS): Add sha.h.
23396         Based on code from Scott G. Miller and from GnuPG.
23397
23398 2000-09-18  Jim Meyering  <meyering@lucent.com>
23399
23400         * m4/getloadavg.m4 (AC_FUNC_GETLOADAVG): Restore the initial value of
23401         LIBS. Otherwise, everyone ends up linking with -lelf for some
23402         configurations.
23403         Reported by Mike Stone.
23404
23405 2000-09-15  Jim Meyering  <meyering@lucent.com>
23406
23407         * lib/regex.c: Update from libc.
23408
23409 2000-09-10  Jim Meyering  <meyering@lucent.com>
23410
23411         * lib/getopt.c (_getopt_internal): Update from glibc.
23412
23413 2000-09-09  Jim Meyering  <meyering@lucent.com>
23414
23415         * lib/quotearg.c: Rename ISASCII to IN_CTYPE_DOMAIN, so people don't
23416         think it should be used as a general replacement for isascii.
23417         * lib/fnmatch.c: Likewise.
23418         * lib/mbswidth.c: Likewise
23419         * lib/regex.c: Likewise.
23420
23421         Don't use atoi.
23422         * lib/userspec.c: Include sys/param.h and limits.h.
23423         Include xstrtol.h.
23424         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
23425         (UID_T_MAX, GID_T_MAX, MAXUID, MAXGID): Define.
23426         (parse_user_spec): Use xstrtoul, not atoi when converting numeric
23427         UID, GID.  Check range.
23428
23429 2000-09-06  Jim Meyering  <meyering@lucent.com>
23430
23431         * lib/getopt.c (_getopt_internal): Update from glibc.
23432
23433 2000-08-30  Jim Meyering  <meyering@lucent.com>
23434
23435         * lib/strftime.c: Merge in changes from GNU libc.
23436
23437 2000-08-26  Jim Meyering  <meyering@lucent.com>
23438
23439         * m4/jm-macros.m4: Use jm_FUNC_FPENDING.
23440         * m4/fpending.m4: New file.
23441
23442 2000-08-26  Jim Meyering  <meyering@lucent.com>
23443
23444         * lib/closeout.c: Include "__fpending.h".
23445         (close_stdout_status): Return right away if there's nothing to flush.
23446
23447         * lib/Makefile.am (noinst_HEADERS): Add __fpending.h.
23448         * lib/__fpending.c: New file.
23449         * lib/__fpending.h: New file.
23450
23451 2000-08-20  Jim Meyering  <meyering@lucent.com>
23452
23453         * m4/check-decl.m4: Include utmp.h `#if HAVE_UTMP_H', rather than
23454         `#if !HAVE_UTMPX_H'.  The latter would lose on systems with neither
23455         utmp.h nor utmpx.h.  Reported by Eli Zaretskii.
23456
23457 2000-08-11  J. David Anglin  <dave@hiauly1.hia.nrc.ca>
23458
23459         Improve fileutils installation on systems where running
23460         programs (like install) can't be unlinked.
23461         * m4/unlink-busy.m4 (jm_FUNC_UNLINK_BUSY_TEXT): New file/macro.
23462         * m4/jm-macros.m4: Use jm_FUNC_UNLINK_BUSY_TEXT.
23463
23464 2000-08-07  Paul Eggert  <eggert@twinsun.com>
23465
23466         Standardize on "memory exhausted" instead of "Memory exhausted"
23467         or "virtual memory exhausted".
23468         * lib/obstack.c (print_and_abort): Use "memory exhausted", not
23469         "virtual memory exhausted".
23470         * lib/same.c (same_name): Invoke xalloc_die instead of printing
23471         our own message.
23472         * lib/userspec.c (parse_user_spec): Likewise.
23473         * lib/bumpalloc.h: comment fix
23474         * lib/same.c, userspec.c: Include xalloc.h.
23475
23476         * lib/xalloc.h (xalloc_msg_memory_exhausted): Now char const[],
23477         not char *const and pointing to a constant array.
23478         * lib/xmalloc.c (xalloc_msg_memory_exhausted): Likewise.
23479         (xrealloc): Comment fix.
23480
23481         * lib/userspec.c (parse_user_spec):
23482         Don't translate a message until just before returning,
23483         to avoid unnecessary translation.
23484
23485 2000-08-07  Jim Meyering  <meyering@lucent.com>
23486
23487         * lib/addext.c, argmatch.c, argmatch.h, backupfile.h, bumpalloc.h,
23488         chown.c, diacrit.h, dirname.h, dup2.c, exclude.h, fileblocks.c,
23489         fnmatch.c, fnmatch.h, fsusage.c, fsusage.h, getdate.h,
23490         getgroups.c, gethostname.c, getopt.h, group-member.c,
23491         hard-locale.c, hash.h, isdir.c, lchown.c, linebuffer.c,
23492         linebuffer.h, long-options.h, malloc.c, md5.c, md5.h, memchr.c,
23493         memcmp.c, memcoll.c, memset.c, mktime.c, modechange.h, obstack.h,
23494         pathmax.h, realloc.c, rmdir.c, safe-read.c, save-cwd.c, stime.c,
23495         stpcpy.c, strcasecmp.c, strcspn.c, strdup.c, stripslash.c,
23496         strstr.c, strtod.c, strtol.c, strtoul.c, strtoull.c, strtoumax.c,
23497         utime.c, version-etc.h, xalloc.h, xstrdup.c, xstrtoumax.c,
23498         yesno.c: Back out Copyright date changes for each file with no change
23499         this year.  This eases coordination with other programs using the same
23500         source code modules.  From Paul Eggert.
23501
23502 2000-08-06  Paul Eggert  <eggert@twinsun.com>
23503
23504         * m4/mbstate_t.m4 (AC_MBSTATE_T): Define mbstate_t to be int,
23505         not char, for compatibility with glibc 2.1.3 strftime.c.
23506
23507 2000-08-03  Greg McGary  <greg@mcgary.org>
23508
23509         * lib/regex.c (SET_HIGH_BOUND, MOVE_BUFFER_POINTER,
23510         ELSE_EXTEND_BUFFER_HIGH_BOUND): New macros.
23511         (EXTEND_BUFFER): Use them.
23512
23513 2000-08-01  Jim Meyering  <meyering@lucent.com>
23514
23515         * lib/dirname.c (ISSLASH): Define.
23516         (BACKSLASH_IS_PATH_SEPARATOR): Define.
23517         (dir_name) [BACKSLASH_IS_PATH_SEPARATOR]: Handle the case in which
23518         both `\' and `/' may be use as path separators.
23519         Based on a patch from Prashant TR.
23520
23521 2000-07-31  Paul Eggert  <eggert@twinsun.com>
23522
23523         * lib/quotearg.c (quotearg_n_options): Don't make the initial
23524         slot vector a constant, since it might get modified.
23525
23526 2000-07-31  Jim Meyering  <meyering@lucent.com>
23527
23528         * lib/xmalloc.c: Use `virtual memory exhausted', not
23529         `Memory exhausted'.
23530         * lib/obstack.c (print_and_abort): Likewise.
23531
23532 2000-07-30  Paul Eggert  <eggert@twinsun.com>
23533
23534         * lib/quotearg.c (quotearg_n_options): Preallocate a slot 0
23535         buffer, so that the caller can always quote one small
23536         component of a "memory exhausted" message in slot 0.
23537         From a suggestion by Jim Meyering.
23538
23539 2000-07-30  Jim Meyering  <meyering@lucent.com>
23540
23541         * lib/makepath.c (make_path): Quote the other instance, too.
23542
23543         * lib/quotearg.c (N_STATIC_SLOTVECS): Define.
23544         (STATIC_BUF_SIZE): Define.
23545         (quotearg_n_options): Use only statically allocated storage when
23546         N < N_STATIC_SLOTVECS and the length of the quoted result is smaller
23547         than STATIC_BUF_SIZE.
23548
23549 2000-07-29  Jim Meyering  <meyering@lucent.com>
23550
23551         * lib/diacrit.c (diacrit_diac): Use __MSDOS__ in favor of MSDOS.
23552         * lib/dirname.c (dir_name): Likewise.
23553
23554         * lib/basename.c (base_name): Use ISSLASH rather than comparing against
23555         `/'.
23556
23557         * lib/dirname.c (dir_name) [MSDOS]: Declare `lim' to be const.
23558         (dir_name): Assert that there are no trailing slashes.
23559
23560 2000-07-29  Bruno Haible  <haible@clisp.cons.org>
23561
23562         * lib/mbswidth.h (mbswidth): Add a flags argument.
23563         (mbswidth): New declaration.
23564         (MBSW_ACCEPT_INVALID, MBSW_ACCEPT_UNPRINTABLE): New macros.
23565         * lib/mbswidth.c (mbswidth): Add a flags argument.
23566         (mbsnwidth): New function.
23567
23568 2000-07-24  Jim Meyering  <meyering@lucent.com>
23569
23570         * lib/mbswidth.c: Remove useless #else.  From Bruno Haible.
23571
23572 2000-07-23  Paul Eggert  <eggert@twinsun.com>
23573
23574         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Check for wcwidth declaration.
23575
23576 2000-07-23  Paul Eggert  <eggert@twinsun.com>
23577
23578         * lib/quotearg.c: Streamline by invoking multibyte code only if needed.
23579         <wchar.h>: Include only if HAVE_MBRTOWC && 1 < MB_LEN_MAX.
23580         (MB_CUR_MAX): Redefine to 1 if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX).
23581         (quotearg_buffer_restyled): If a unibyte locale, don't bother to
23582         invoke multibyte primitives.
23583
23584 2000-07-23  Paul Eggert  <eggert@twinsun.com>
23585
23586         * lib/quotearg.c:
23587         Include <wchar.h> even if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX),
23588         so that mbstate_t is always defined.
23589
23590         Do not inspect MB_LEN_MAX, since it's incorrectly defined to
23591         be 1 in at least one GCC installation, and this configuration
23592         error is likely to be common.  Ignoring MB_LEN_MAX hurts
23593         performance on hosts that have mbrtowc but have only unibyte
23594         locales, but I assume these hosts are rare.
23595
23596 2000-07-23  Paul Eggert  <eggert@twinsun.com>
23597
23598         * lib/mbswidth.c (_XOPEN_SOURCE):
23599         Don't define; this causes problems on Solaris 7.
23600         (wcwidth) [!HAVE_DECL_WCWIDTH]: Declare.
23601
23602 2000-07-23  Jim Meyering  <meyering@lucent.com>
23603
23604         * m4/check-decl.m4 (jm_CHECK_DECLS): Check for declarations of these,
23605         too: getgrgid, getpwuid, getuid.
23606
23607 2000-07-23  Jim Meyering  <meyering@lucent.com>
23608
23609         * lib/basename.c (base_name): Add an assertion.
23610
23611 2000-07-23  Bruno Haible  <haible@clisp.cons.org>
23612
23613         * lib/quotearg.c: When the system forces us to redefine mbstate_t,
23614         shadow its mbsinit function.
23615
23616 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
23617
23618         * lib/mbswidth.h: New file.
23619         * lib/mbswidth.c: New file.
23620         * lib/Makefile.am (libfetish_a_SOURCES): Add mbswidth.c.
23621         (noinst_HEADERS): Add mbswidth.h.
23622
23623 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
23624
23625         * lib/config.charset: Add support for FreeBSD. Improve support for
23626         HP-UX and IRIX 6.
23627
23628 2000-07-16  Bruno Haible  <haible@clisp.cons.org>
23629
23630         * m4/mbswidth.m4: New file.
23631         * m4/prereq.m4 (jm_PREREQ): Call jm_PREREQ_MBSWIDTH.
23632
23633 2000-07-15  Jim Meyering  <meyering@lucent.com>
23634
23635         * lib/makepath.c: Include quote.h.
23636         (make_path): Convert "`%s'" in format strings to "%s", and wrap each
23637         corresponding argument in a `quote (...)' call.
23638         Give better diagnostics.
23639
23640         * lib/Makefile.am (libfetish_a_SOURCES): Add quote.c.
23641         (noinst_HEADERS): Add quote.h.
23642
23643         * lib/quote.c (quote, quote_n): New file.  Two functions taken verbatim
23644         from tar's src/misc.c.
23645         * lib/quote.h: New file.  Prototypes for same.
23646
23647 2000-07-14  Paul Eggert  <eggert@twinsun.com>
23648
23649         From a suggestion by Bruno Haible.
23650         * lib/quotearg.c (mbrtowc): Do not use HAVE_WCHAR_H in the definition.
23651         Use defined mbstate_t, not HAVE_MBSTATE_T_OBJECT,
23652         to decide whether to define the BeOS workaround macro;
23653         this adjusts to the change to AC_MBSTATE_T.
23654
23655 2000-07-14  Jim Meyering  <meyering@lucent.com>
23656
23657         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Require
23658         jm_AC_TYPE_UINTMAX_T.
23659
23660 2000-07-13  Paul Eggert  <eggert@twinsun.com>
23661
23662         * lib/quotearg.h (enum quoting style): New enum clocale_quoting_style.
23663
23664         * lib/quotearg.c (quoting_style_args, quoting_style_vals,
23665         quotearg_buffer_restyled): Add support for
23666         clocale_quoting_style.  Undo previous change to
23667         locale_quoting_style behavior, and undo the "{LEFT QUOTATION MARK}"
23668         and "{RIGHT QUOTATION MARK}" msgids.
23669
23670 2000-07-10  Paul Eggert  <eggert@twinsun.com>
23671
23672         From a suggestion by Bruno Haible.
23673         * m4/mbstate_t.m4 (AC_MBSTATE_T):
23674         Renamed from AC_MBSTATE_T_OBJECT.  All uses changed.
23675         Change from a two-part test, which defines both HAVE_MBSTATE_T_OBJECT
23676         and mbstate_t, to a single-part test that simply defines mbstate_t.
23677         * m4/prereq.m4 (jm_PREREQ_QUOTEARG):
23678         s/AC_MBSTATE_T_OBJECT/AC_MBSTATE_T/.
23679
23680 2000-07-10  Jim Meyering  <meyering@lucent.com>
23681
23682         * m4/strerror_r.m4: Mirror the correction made in autoconf.
23683
23684         * m4/gnu-source.m4: Output to confdefs.h directly.
23685         Suggestion from Akim Demaille.
23686
23687 2000-07-09  Paul Eggert  <eggert@twinsun.com>
23688
23689         The old behavior of quoting `like this' doesn't look good with
23690         newer, ISO-style fonts.  See:
23691         http://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html
23692
23693         Instead, quote "like this" by default.  Let the translator
23694         tailor the locale-specific quoting behavior by providing
23695         translations for {LEFT QUOTATION MARK} and {RIGHT QUOTATION MARK}.
23696
23697         * lib/quotearg.c (N_): New macro.
23698         (gettext_default): New function.
23699         (quotearg_buffer_restyled): Use
23700         gettext_default ("{LEFT QUOTATION MARK}", "\"") for left quote, and
23701         gettext_default ("{RIGHT QUOTATION MARK}", "\"") for right quote.
23702
23703 2000-07-09  Jim Meyering  <meyering@lucent.com>
23704
23705         * m4/jm-macros.m4 (jm_MACROS): Add a test to see if -lm is required
23706         to link seq.  If so, set SEQ_LIBM to -lm.  From Bruno Haible.
23707
23708         * m4/gnu-source.m4 (AC__GNU_SOURCE): New file/macro.
23709         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require it.
23710
23711 2000-07-09  Jim Meyering  <meyering@lucent.com>
23712
23713         * lib/Most files: Update copyright dates to include 2000.
23714
23715 2000-07-08  Jim Meyering  <meyering@lucent.com>
23716
23717         * lib/xgethostname.c (ENAMETOOLONG): Define to an unlikely value
23718         if not defined.
23719         (xgethostname): Remove now-unnecessary #ifdef.
23720         Move declaration of `err' into loop where it's used.
23721
23722 2000-07-05  Paul Eggert  <eggert@twinsun.com>
23723         and Bruno Haible  <haible@clisp.cons.org>
23724
23725         * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Test for mbstate_t
23726         only if the test for an object-type mbstate_t fails.  This
23727         prevents us from mistakenly reporting that mbstate_t is a
23728         system object type after we "#define mbstate_t int" to work
23729         around its lack.
23730
23731 2000-07-05  Paul Eggert  <eggert@twinsun.com>
23732         and Bruno Haible  <haible@clisp.cons.org>
23733
23734         * lib/quotearg.c (mbrtowc): Declare returned type, since BeOS doesn't.
23735
23736 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
23737
23738         * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Pass a reasonably large buffer
23739         to strerror_r.
23740         Include <ctype.h> for use of isalpha.
23741
23742 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
23743
23744         * lib/xgethostname.c (xgethostname): Protect against the SunOS 5.5 bug
23745         by allocating a larger buffer. Test the gethostname return value for
23746         being >= 0, not == 0, for BeOS.  Don't exhaust memory if gethostname
23747         returns an error and ENAMETOOLONG isn't defined.
23748
23749 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
23750
23751         * lib/quotearg.c (struct quoting_options): Simplify quote_these_too
23752         dimension.
23753
23754 2000-07-04  Jim Meyering  <meyering@lucent.com>
23755
23756         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use plain old `echo' instead
23757         of the deprecated AC_CHECKING.
23758
23759 2000-07-04  Jim Meyering  <meyering@lucent.com>
23760
23761         * lib/strndup.c: [!HAVE_DECL_STRNLEN]: Declare strnlen.
23762         Reported by Bruno Haible.
23763
23764 2000-07-04  Jim Meyering  <meyering@lucent.com>
23765
23766         * lib/quotearg.c: Make inclusion of <wchar.h> independent of whether
23767         HAVE_MBRTOWC is set.  Required at least for irix-5.6, which
23768         lacks mbrtowc.
23769
23770 2000-07-03  Paul Eggert  <eggert@twinsun.com>
23771
23772         * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Port to autoconf 2.13.
23773         Add AC_CHECK_HEADERS(stdlib.h), since we use HAVE_STDLIB_H.
23774
23775 2000-07-03  Paul Eggert  <eggert@twinsun.com>
23776         and Bruno Haible  <haible@clisp.cons.org>
23777
23778         * lib/quotearg.c (mbrtowc):
23779         Assign to *pwc, and return 1 only if result is nonzero.
23780         (iswprint): Use ISPRINT when substituting our own mbrtowc.
23781
23782 2000-07-03  Jim Meyering  <meyering@lucent.com>
23783
23784         * m4/check-decl.m4 (AC_CHECK_DECLS): Add strnlen.
23785
23786 2000-07-03  Jim Meyering  <meyering@lucent.com>
23787
23788         * lib/readutmp.h: [HAVE_UTMPX_H]: Include <utmp.h> if HAVE_UTMP_H.
23789         This is necessary to get a definition of e.g., UTMP_FILE on
23790         HP-UX 10.20.
23791         From Bob Proulx.
23792
23793 2000-07-02  Jim Meyering  <meyering@lucent.com>
23794
23795         * m4/mbstate_t.m4: Also define mbstate_t, if necessary.
23796
23797         * m4/chown.m4: Replace each use of AC_SUBST(LIBOBJS)/LIBOBJS=... with
23798         AC_LIBOBJ(function_name).
23799         * m4/chown.m4: Likewise.
23800         * m4/fnmatch.m4: Likewise.
23801         * m4/ftruncate.m4: Likewise.
23802         * m4/getgroups.m4: Likewise.
23803         * m4/getline.m4: Likewise.
23804         * m4/group-member.m4: Likewise.
23805         * m4/jm-macros.m4: Likewise.
23806         * m4/lstat.m4: Likewise.
23807         * m4/malloc.m4: Likewise.
23808         * m4/memcmp.m4: Likewise.
23809         * m4/nanosleep.m4: Likewise.
23810         * m4/putenv.m4: Likewise.
23811         * m4/realloc.m4: Likewise.
23812         * m4/regex.m4: Likewise.
23813         * m4/stat.m4: Likewise.
23814         * m4/strftime.m4: Likewise.
23815
23816 2000-07-02  Jim Meyering  <meyering@lucent.com>
23817
23818         * lib/quotearg.c (mbstate_t): Don't define here.
23819
23820 2000-07-02  Jim Meyering  <meyering@lucent.com>
23821
23822         * lib/nanosleep.c (SIGCONT): Define if not already defined.
23823
23824 2000-07-01  Jim Meyering  <meyering@lucent.com>
23825
23826         * m4/uptime.m4: Put double quotes around use of $cross_compiling.
23827
23828 2000-07-01  Jim Meyering  <meyering@lucent.com>
23829
23830         * m4/ls-mntd-fs.m4: Remove a `FIXME' comment and fix the associated
23831         problem.
23832
23833 2000-07-01  Bruno Haible  <haible@clisp.cons.org>
23834
23835         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Rename BeOS specific
23836         macro from MOUNTED_NEXT_DEV to MOUNTED_FS_STAT_DEV.
23837
23838 2000-07-01  Bruno Haible  <haible@clisp.cons.org>
23839
23840         * lib/mountlist.c: Use MOUNTED_FS_STAT_DEV instead of MOUNTED_NEXT_DEV,
23841         per change in ../m4/ls-mntd-fs.m4.
23842         (read_filesystem_list): Ignore symbolic links.
23843
23844 2000-06-29  Jim Meyering  <meyering@lucent.com>
23845
23846         * lib/same.c: Include <string.h> or <strings.h>, as appropriate,
23847         for declaration of strcmp.
23848
23849         * lib/long-options.c: Include <stdlib.h>, for declaration of exit.
23850
23851         * lib/mountlist.c (fsp_to_string) [HAVE_F_FSTYPENAME_IN_STATFS]:
23852         Avoid warning by casting result to `char *' to remove `const'.
23853
23854 2000-06-28  Jim Meyering  <meyering@lucent.com>
23855
23856         * m4/mbstate_t.m4: Use stdlib.h, not stdio.h.  The latter is not
23857         included by quotearg.c, for which we perform this test.  From
23858         Bruno Haible.
23859
23860 2000-06-27  Bruno Haible  <haible@clisp.cons.org>
23861
23862         * m4/check-decl.m4 (_jm_DECL_HEADERS): Check for utmp.h as well.
23863         * m4/prereq.m4 (jm_PREREQ_READUTMP): Likewise. If either <utmp.h> or
23864         <utmpx.h> exists, put readutmp.o into LIBOBJS.
23865
23866 2000-06-27  Bruno Haible  <haible@clisp.cons.org>
23867
23868         * lib/Makefile.am (libfetish_a_SOURCES): Remove readutmp.c.
23869
23870 2000-06-26  Paul Eggert  <eggert@twinsun.com>
23871
23872         savedir now sets errno on failure and invokes xmalloc to get memory.
23873         Fix a couple of other minor bugs while we're at it.
23874
23875         * lib/savedir.c (<unistd.h>): Do not include; there's no need.
23876         (NAMLEN): Remove macro.
23877         (malloc, realloc): Remove decls.
23878         (stpcpy): Likewise.
23879         ("xalloc.h"): Include.
23880         (NAME_SIZE_DEFAULT): New macro.
23881         (savedir): Use xmalloc / xrealloc to allocate memory.
23882         Use NAME_SIZE_DEFAULT if name_size is negative or overflows to zero.
23883         Skip "" directory entries.
23884         Use strlen to calculate directory entry length, since the old method
23885         is rarely used these days and isn't worth supporting.
23886         Don't use a pointer after freeing it.
23887         Check for integer overflow when calculating allocation size.
23888         Use memcpy to copy entries, instead of stpcpy.
23889         Set errno properly when returning NULL.
23890         Check for readdir error.
23891
23892 2000-06-26  Jim Meyering  <meyering@lucent.com>
23893
23894         * lib/posixtm.c [HAVE_STDLIB_H]: Include stdlib.h, for decl of abort.
23895
23896 2000-06-25  Jim Meyering  <meyering@lucent.com>
23897
23898         * m4/mbstate_t.m4: Include stdio.h before wchar.h to work around
23899         Linux header bug when _XOPEN_SOURCE is defined to 500.
23900
23901 2000-06-25  Bruno Haible  <haible@clisp.cons.org>
23902
23903         * lib/unicodeio.c (print_unicode_char): Work around ansi2knr
23904         deficiency.
23905
23906 2000-06-25  Bruno Haible  <haible@clisp.cons.org>
23907
23908         * lib/getusershell.c (xmalloc, xrealloc): Remove functions.
23909         Include xalloc.h.
23910         Don't include <stdlib.h>.  Don't declare malloc, realloc.
23911
23912 2000-06-24  Jim Meyering  <meyering@lucent.com>
23913
23914         * m4/strerror_r.m4: Revive this file -- to try out an experimental
23915         version of AC_FUNC_STRERROR_R that may work even on BeOS, a system
23916         for which strerror does return char*, but which lacks a conveniently
23917         accessible declaration of the function.  If the compile-test says
23918         strerror_r doesn't work, then resort to a `run'-test that works on
23919         BeOS and segfaults on DEC Unix.
23920
23921 2000-06-24  Jim Meyering  <meyering@lucent.com>
23922
23923         * lib/error.c [!HAVE_DECL_STRERROR_R]: Declare strerror_r.
23924
23925 2000-06-23  Paul Eggert  <eggert@twinsun.com>
23926
23927         * m4/mbstate_t.m4: New file, defining AC_MBSTATE_T_OBJECT.
23928         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Use it.  Add check for iswprint.
23929
23930 2000-06-23  Paul Eggert  <eggert@twinsun.com>
23931
23932         * lib/quotearg.c: Include <wctype.h> after <wchar.h>, for Solaris 2.5.
23933         (mbrtowc, mbstate_t): Define substitutes if
23934         HAVE_MBRTOWC && HAVE_WCHAR_H && !HAVE_MBSTATE_T_OBJECT.
23935         (iswprint): Define to 1 if !defined iswprint && !HAVE_ISWPRINT,
23936         not if ! (HAVE_MBRTOWC && HAVE_WCHAR_H).
23937
23938 2000-06-23  Jim Meyering  <meyering@lucent.com>
23939
23940         * m4/afs.m4: Add missing AC_MSG_RESULT.
23941         Reported by Bruno Haible.
23942
23943         * m4/fsusage.m4: s/AC_MSG_CHECKING/AC_CHECKING/.
23944         Suggestion from Bruno Haible.
23945
23946 2000-06-23  Jim Meyering  <meyering@lucent.com>
23947
23948         * lib/getpass.c: New file, from Bruno Haible.  Required for BeOS.
23949
23950 2000-06-21  Jim Meyering  <meyering@lucent.com>
23951
23952         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add getpass.
23953
23954 2000-06-21  Jim Meyering  <meyering@lucent.com>
23955
23956         * lib/Makefile.am (libfetish_a_SOURCES): Add getstr.c.
23957         (noinst_HEADERS): Add getstr.h.
23958
23959         * lib/getline.c (getstr): Move into a separate file.
23960         * lib/getstr.c (getstr): New file, extracted from getline.c, with
23961         the following changes: new parameter, delim2; both delim[12]
23962         parameters have type `int', not `char'.  The latter would lose
23963         with 8-bit delimiters.
23964         * lib/getstr.h: New file.
23965
23966 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
23967
23968         * lib/xgetcwd.c (xgetcwd): If the required pathname length is smaller
23969         than 1024, return a memory chunk of least possible size, instead
23970         of size PATH_MAX + 2. In the loop, increment the size proportionally.
23971         Use free/xmalloc instead of xrealloc to avoid copying for very long
23972         paths.
23973
23974 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
23975
23976         * lib/path-concat.c (path_concat): Don't access dir[-1] if dir is
23977         the empty string.
23978
23979 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
23980
23981         * lib/canon-host.c (canon_host): Use malloc and memcpy to copy an
23982         address, not strdup.  Include <stdlib.h> and don't declare free().
23983
23984 2000-06-19  Jim Meyering  <meyering@lucent.com>
23985
23986         * lib/getloadavg.c [HAVE_NLIST_H] (NLIST_STRUCT): Define.
23987
23988 2000-06-18  Jim Meyering  <meyering@lucent.com>
23989
23990         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Remove mkdir.
23991
23992         * m4/link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): Change the
23993         `checking whether...' message to be consistent with that of the
23994         lstat test.
23995
23996 2000-06-18  Jim Meyering  <meyering@lucent.com>
23997
23998         * lib/mkdir.c: Remove file, due mainly to copyright incompatibility.
23999         Besides, these days every porting target provides a mkdir function.
24000
24001         * lib/strnlen.c: Include memory.h, string.h, and/or strings.h as
24002         needed. (this snippet comes from src/system.h).
24003
24004 2000-06-16  Bruno Haible  <haible@clisp.cons.org>
24005
24006         * m4/glibc21.m4 (jm_GLIBC21): Define GLIBC21 for Makefiles, not for C.
24007
24008 2000-06-15  Paul Eggert  <eggert@twinsun.com>
24009
24010         * lib/human.c (adjust_value): New function.
24011         (human_readable_inexact): Apply rounding style even when
24012         printing approximate values.
24013
24014 2000-06-14  Paul Eggert  <eggert@twinsun.com>
24015
24016         * lib/human.c (human_readable_inexact): Allow an input block
24017         size that is not a multiple of the output block size, and vice versa.
24018         Reported by Piergiorgio Sartor.
24019
24020 2000-06-14  Paul Eggert  <eggert@twinsun.com>
24021
24022         * lib/getdate.y (get_date): Apply relative times after time
24023         zone indicator, not before.  Reported by Todd A. Jacobs.
24024
24025 2000-06-13  Jim Meyering  <meyering@lucent.com>
24026
24027         * lib/Makefile.am (all-local): Depend on lstat.c and stat.c.
24028
24029         * lib/xstat.in [!HAVE_DECL_FREE]: Declare free in lstat.c.
24030
24031 2000-06-12  Paul Eggert  <eggert@twinsun.com>
24032
24033         * lib/xstat.in: Include <stdlib.h> in lstat, to declare "free".
24034
24035 2000-06-12  Jim Meyering  <meyering@lucent.com>
24036
24037         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Replace with
24038         AC_FUNC_GETLOADAVG from autoconf, and tweak the latter to accept an
24039         optional argument.
24040         * m4/jm-macros.m4: s/AM_FUNC_GETLOADAVG/AC_FUNC_GETLOADAVG/, and supply
24041         the optional argument, `lib'.
24042
24043 2000-06-08  Jim Meyering  <meyering@lucent.com>
24044
24045         * m4/largefile.m4: Remove file (now that it's part of autoconf).
24046
24047 2000-06-04  Paul Eggert  <eggert@twinsun.com>
24048
24049         Rewrite largefile configuration so that we don't need to run
24050         getconf and don't need AC_CANONICAL_HOST.  [I'm leaving the use of
24051         AC_CANONICAL_HOST in configure.in -- jmm]
24052
24053         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS,
24054         AC_SYS_LARGEFILE_SPACE_APPEND): Remove.
24055         (AC_SYS_LARGEFILE_TEST_INCLUDES): New macro.
24056         (AC_SYS_LARGEFILE_MACRO_VALUE): Change arguments from
24057         CODE-TO-SET-DEFAULT to VALUE, INCLUDES, FUNCTION-BODY.
24058         All uses changed.
24059         Instead of inspecting the output of getconf, try to compile the
24060         test program without and with the macro definition.
24061         (AC_SYS_LARGEFILE): Do not require AC_CANONICAL_HOST or check
24062         for getconf.  Instead, check for the needed flags by compiling
24063         test programs.
24064
24065 2000-06-04  Paul Eggert  <eggert@twinsun.com>
24066
24067         * lib/strnlen.c: Include <config.h> if HAVE_CONFIG_H.
24068
24069 2000-06-04  Jim Meyering  <meyering@lucent.com>
24070
24071         * lib/getugroups.c (getugroups): Cast -1 to gid_t, for systems like
24072         SunOS 4.1.4 for which gid_t is an unsigned type.
24073
24074 2000-06-03  Jim Meyering  <meyering@lucent.com>
24075
24076         * m4/prereq.m4 (jm_PREREQ_HUMAN): Use []-quoted list in AC_CHECK_DECLS,
24077         now that autoconf requires that.
24078
24079         * m4/jm-glibc-io.m4: Add a kludge to make autoheader emit the required
24080         #undefs.  E.g., #undef HAVE_DECL_FERROR_UNLOCKED.
24081         Use []-quoted list in AC_CHECK_DECLS, now that autoconf requires that.
24082
24083 2000-06-03  Jim Meyering  <meyering@lucent.com>
24084
24085         * lib/strnlen.c [!HAVE_DECL_MEMCHR]: Declare memchr.
24086
24087 2000-06-03  Bruno Haible  <haible@clisp.cons.org>
24088
24089         * m4/glibc21.m4: New file.
24090         * m4/jm-macros.m4 (jm_MACROS): Call jm_GLIBC21.
24091
24092 2000-06-03  Bruno Haible  <haible@clisp.cons.org>
24093
24094         * lib/Makefile.am (install-exec-local): On systems with glibc-2.1 or
24095         newer, don't install charset.alias.
24096         * lib/config.charset: Change the Linux/glibc rules so they become empty
24097         on glibc-2.1 or newer.
24098
24099 2000-06-02  Jim Meyering  <meyering@lucent.com>
24100
24101         * lib/mountlist.c: Back out last change.  Instead, do this...
24102         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Set the
24103         me_dummy member using the same `ignore'-testing code.
24104         * lib/mountlist.h (ME_DUMMY): Add `autofs' to the list of ignored
24105         fs_type strings.
24106         From Mark D. Roth.
24107
24108 2000-05-29  Jim Meyering  <meyering@lucent.com>
24109
24110         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Ignore
24111         mounts with the `ignore' attribute.  Based on a patch from
24112         Mark D. Roth.
24113
24114 2000-05-28  Jim Meyering  <meyering@lucent.com>
24115
24116         * m4/jm-macros.m4 (AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK): Rename from
24117         jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
24118         * m4/stat.m4: Likewise.
24119         * m4/lstat.m4: Likewise.
24120         * m4/lstat-slash.m4: Remove file (absorbed into autoconf).
24121
24122         * m4/jm-macros.m4 (AC_FUNC_STRERROR_R): Rename from jm_FUNC_STRERROR_R.
24123         * m4/strerror_r.m4: Remove file (absorbed into autoconf).
24124
24125 2000-05-26  Jim Meyering  <meyering@lucent.com>
24126
24127         * m4/uptime.m4: Use `$cross_compiling', not `$ac_cv_prog_cc_cross'.
24128
24129 2000-05-24  Jim Meyering  <meyering@lucent.com>
24130
24131         * m4/prereq.m4: Use []-quoted list in AC_CHECK_MEMBERS, now that
24132         autoconf requires that.
24133         * m4/lib-check.m4: Likewise.
24134         * m4/jm-macros.m4: Likewise.
24135         * m4/strftime.m4: Likewise.
24136
24137         * m4/check-decl.m4 (jm_CHECK_DECLS): Use []-quoted list in
24138         AC_CHECK_DECLS, now that autoconf requires that.
24139
24140 2000-05-22  Jim Meyering  <meyering@lucent.com>
24141
24142         * m4/stat.m4: Require jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
24143         * m4/lstat.m4: Likewise.
24144
24145 2000-05-22  Jim Meyering  <meyering@lucent.com>
24146
24147         * lib/makepath.c: Remove old, now-unnecessary `#ifdef __MSDOS__' block.
24148
24149 2000-05-20  Jim Meyering  <meyering@lucent.com>
24150
24151         * m4/prereq.m4 (jm_PREREQ_HUMAN): New macro.
24152         (jm_PREREQ): Use it.
24153
24154 2000-05-18  Jim Meyering  <meyering@lucent.com>
24155
24156         * lib/hash.c (hash_rehash): Fix a nasty bug: copy the free entry list
24157         back, too, since it may have been modified by allocate_entry.
24158         (hash_delete): Rewrite to use neither the assignment operator
24159         nor the comma operator in an if-expression.
24160
24161 2000-05-15  Paul Eggert  <eggert@twinsun.com>
24162
24163         * lib/closeout.c:
24164         <sys/stat.h>, <sys/types.h>, <unistd.h>, (STDOUT_FILENO):
24165         Remove; no longer needed.
24166         "quotearg.h": Add include.
24167         (file_name): Do not bother to explicitly initialize to NULL; it's less
24168         efficient on some hosts.
24169         (close_stdout_status): Remove test as to whether stdout was already
24170         closed; it breaks for the case "echo x | sort >&-".
24171         Quote file name colons.
24172         Do not assume that _("write error") lacks format strings.
24173
24174 2000-05-15  Jim Meyering  <meyering@lucent.com>
24175
24176         * lib/version-etc.c (version_etc_copyright): Update the copyright
24177         string used in all --version output.
24178
24179 2000-05-14  Jim Meyering  <meyering@lucent.com>
24180
24181         * lib/closeout.c (close_stdout_set_file_name): New function.
24182         (close_stdout_status): Use new file-scoped global.
24183         Return right away if fstat says the stdout file descriptor is invalid.
24184         * lib/closeout.h (close_stdout_set_file_name): Declare.
24185
24186 2000-05-10  Jim Meyering  <meyering@lucent.com>
24187
24188         * lib/closeout.c [default_exit_status]: New file-scoped variable.
24189         (close_stdout_set_status): New function.
24190         * lib/closeout.h (close_stdout_set_status): Declare.
24191
24192 2000-05-09  Jim Meyering  <meyering@lucent.com>
24193
24194         * m4/gettext.m4: Rename this...
24195         * m4/libintl.m4: ...to this.
24196
24197 2000-05-08  Jim Meyering  <meyering@lucent.com>
24198
24199         * lib/long-options.c: Don't include closeout.h.
24200         (parse_long_options): Don't call close_stdout for --version.
24201
24202 2000-05-06  Paul Eggert  <eggert@twinsun.com>
24203
24204         * m4/largefile.m4 (AC_SYS_LARGEFILE): Define _XOPEN_SOURCE to
24205         be 500, instead of _GNU_SOURCE to be 1, to work around glibc
24206         2.1.3 bug.  This avoids a clash when files like regex.c define
24207         _GNU_SOURCE.
24208
24209 2000-05-06  Jim Meyering  <meyering@lucent.com>
24210
24211         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add atexit.
24212         (AC_REPLACE_FUNCS): Add strnlen.
24213
24214         * m4/rmdir-errno.m4 (fetish_FUNC_RMDIR_NOTEMPTY): New macro and file.
24215         * m4/jm-macros.m4: Require fetish_FUNC_RMDIR_NOTEMPTY.
24216
24217         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Save and restore LIBS around
24218         AC_SEARCH_LIBS call for nanosleep.
24219         (LIB_NANOSLEEP): Set and AC_SUBST.
24220
24221 2000-05-06  Jim Meyering  <meyering@lucent.com>
24222
24223         * lib/strnlen.c: Undefine __strnlen and strnlen.
24224         [!weak_alias]: Define __strnlen to strnlen.
24225
24226         * lib/atexit.c: New file, from libiberty.
24227
24228 2000-05-06  Jim Meyering  <meyering@lucent.com>
24229
24230         * lib/closeout.c (close_stdout_status): Also check for errors on the
24231         stderr stream.
24232
24233 2000-05-05  Jim Meyering  <meyering@lucent.com>
24234
24235         * m4/jm-macros.m4 (jm_MACROS): Save and restore LIBS around
24236         AC_SEARCH_LIBS call for clock_gettime.
24237         (LIB_CLOCK_GETTIME): Set and AC_SUBST.
24238
24239         * m4/search-libs.m4: Update from autoconf.
24240
24241         su doesn't work on Solaris 2.6.
24242         * m4/lib-check.m4: When checking for struct spwd.sp_pwdp, also include
24243         <shadow.h>.  Reported by Dragos Harabor.
24244
24245 2000-05-05  Bruno Haible  <haible@clisp.cons.org>
24246
24247         * lib/localcharset.c (get_charset_aliases): Use malloc, realloc and
24248         memcpy instead of xmalloc, xrealloc, path_concat.
24249         (locale_charset): Treat empty environment variables as absent.
24250         (DIRECTORY_SEPARATOR, ISSLASH): New macros.
24251
24252 2000-05-04  Jim Meyering  <meyering@lucent.com>
24253
24254         * lib/getopt.c: Update from glibc.
24255         * lib/obstack.c: Likewise.
24256         * lib/obstack.h: Likewise.
24257         * lib/regex.c: Likewise.  NB: K&R compiler support is dropped for this
24258         file
24259
24260         * lib/regex.h: Likewise.
24261         * lib/strndup.c: Likewise.
24262         * lib/strnlen.c: New file, from glibc.
24263
24264 2000-05-03  Jim Meyering  <meyering@lucent.com>
24265
24266         * m4/check-decl.m4 (AC_CHECK_DECLS): Add strndup.
24267
24268 2000-05-02  Paul Eggert  <eggert@twinsun.com>
24269
24270         * m4/largefile.m4 (AC_SYS_LARGEFILE): Define _GNU_SOURCE if
24271         this is needed to make ftello visible (e.g. glibc 2.1.3).  Use
24272         compile-time test, rather than inspecting host and OS, to
24273         decide whether to define _LARGEFILE_SOURCE.
24274
24275 2000-05-01  Jim Meyering  <meyering@lucent.com>
24276
24277         * m4/fsusage.m4: Use AC_MSG_CHECKING instead of obsolete AC_CHECKING.
24278
24279         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add BeOS support.
24280         Based on a patch from Bruno Haible.
24281
24282 2000-05-01  Jim Meyering  <meyering@lucent.com>
24283
24284         * lib/full-write.c (full_write): Remove `FIXME' part of comment.
24285
24286 2000-04-29  Jim Meyering  <meyering@lucent.com>
24287
24288         * lib/path-concat.c: Declare strdup only if it's not defined.
24289         * lib/canon-host.c: Likewise.
24290
24291 2000-04-28  Jim Meyering  <meyering@lucent.com>
24292
24293         * lib/rpmatch.c [HAVE_LIMITS_H]: Include limits.h before regex.h to
24294         avoid redefinition warning on some systems (HPUX).  Otherwise, regex.h
24295         is included first, then limits.h is included by locale.h by libintl.h.
24296         From John David Anglin.
24297
24298 2000-04-25  Jim Meyering  <meyering@lucent.com>
24299
24300         * lib/makepath.c (S_IRWXUGO): Define.
24301         (make_path): Always perform explicit chmod if MODE specifies any
24302         of the `special' permission bits.  Prompted by a bug report against
24303         install from Mate Wierdl and Joost van Baal.
24304
24305 2000-04-18  Jim Meyering  <meyering@lucent.com>
24306
24307         * m4/prereq.m4 (jm_PREREQ_GETPAGESIZE): New macro.
24308         (jm_PREREQ): Use it.
24309
24310 2000-04-18  Jim Meyering  <meyering@lucent.com>
24311
24312         * lib/README: New file.
24313
24314         * lib/getpagesize.h [!getpagesize && HAVE_OS_H && B_PAGE_SIZE]: Define
24315         getpagesize.  For BeOS.  Based on a patch from Bruno Haible.
24316
24317 2000-04-17  Jim Meyering  <meyering@lucent.com>
24318
24319         Get it right :-)
24320         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Emit the
24321         actual #define via AH_VERBATIM.  Don't need separate AC_DEFINE.
24322         Suggestion from Akim Demaille.
24323
24324 2000-04-17  Jim Meyering  <meyering@lucent.com>
24325
24326         * lib/strftime.c (my_strftime) [strftime]: Declare strftime here, since
24327         the definition of it to rpl_strftime also defined-away the system's
24328         declaration.
24329
24330 2000-04-15  Jim Meyering  <meyering@lucent.com>
24331
24332         Use `C' to denote so-called `contiguous' files, the same way
24333         that tar does.
24334         * lib/filemode.c (S_ISCTG) [!S_ISCTG && S_IFCTG]: Define.
24335         (ftypelet): Use S_ISCTG.
24336         From Michael Deutschmann.
24337
24338 2000-04-14  Jim Meyering  <meyering@lucent.com>
24339
24340         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use the one-arg
24341         form of AC_DEFINE.  Otherwise, the #ifndef in AH_VERBATIM gets
24342         clobbered.
24343
24344 2000-04-14  Jim Meyering  <meyering@lucent.com>
24345
24346         * lib/strftime.c (my_strftime) [#ifdef strftime]: Declare strftime.
24347
24348 2000-04-13  Jim Meyering  <meyering@lucent.com>
24349
24350         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use new
24351         AH_VERBATIM to insert required #ifndef into config.h.in.
24352         Suggestion from Akim Demaille.
24353
24354 2000-04-12  Jim Meyering  <meyering@lucent.com>
24355
24356         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Use AC_CHECK_HEADERS, not
24357         `AC_CHECK_HEADER' to check for locale.h.  Thanks to a report from
24358         Christian Krackowizer.
24359
24360         More code moved from ../configure.in into (jm_CHECK_ALL_TYPES).
24361         * m4/jm-macros.m4 (_GNU_SOURCE): Define.
24362         (AC_SYS_LARGEFILE): Require.
24363         (AM_C_PROTOTYPES): Require.
24364
24365 2000-04-08  Jim Meyering  <meyering@lucent.com>
24366
24367         * lib/Makefile.am (charset.alias): Use t-$@, not $@-t so the DOS 8.3
24368         names don't conflict.  Reported by Eli Zaretskii.
24369
24370 2000-04-07  Jim Meyering  <meyering@lucent.com>
24371
24372         * lib/putenv.c: Move inclusion of errno.h so it follows that of
24373         sys/types.h, to work around system header problems on AIX 3.2.5.
24374         From Bruno Haible.
24375
24376 2000-04-07  Bruno Haible  <haible@clisp.cons.org>
24377
24378         * lib/unicodeio.c (print_unicode_char): Avoid triggering Solaris iconv
24379         bug.  Deal with the different error behavior of Irix iconv.
24380
24381 2000-04-05  Paul Eggert  <eggert@twinsun.com>
24382
24383         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Don't use -n32 on
24384         IRIX if the installer said otherwise.
24385
24386 2000-04-05  Jim Meyering  <meyering@lucent.com>
24387
24388         Portability tweaks required for ultrix4.3.
24389         * m4/check-decl.m4 [!HAVE_UTMPX_H] (headers): Include <utmp.h>.
24390         (jm_CHECK_DECLS): Add getutent to the list of functions.
24391         (_jm_DECL_HEADERS): Add utmpx.h.
24392         From John David Anglin.
24393
24394         * m4/strftime.m4: Back out the 2000-04-02 change.
24395         Instead of that change, simply undefine putenv in the test program.
24396
24397 2000-04-05  Jim Meyering  <meyering@lucent.com>
24398
24399         Portability tweaks required for ultrix4.3.
24400         * lib/readutmp.h [HAVE_UTMPX_H && !HAVE_DECL_GETUTENT]: Declare
24401         getutent.
24402         * lib/readutmp.c: Include sys/types.h before sys/stat.h.
24403         * lib/canon-host.c: Declare strdup.
24404         * lib/path-concat.c: Likewise.
24405         From John David Anglin.
24406
24407 2000-04-04  Jim Meyering  <meyering@lucent.com>
24408
24409         Be more DOS 8.3-friendly.
24410         * lib/ref-add.sin: Renamed from ref-add.sed.in.
24411         * lib/ref-del.sin: Renamed from ref-del.sed.in.
24412         * lib/Makefile.am: Reflect renaming.
24413         Reported by Eli Zaretskii.
24414
24415         Use a temporary file name that won't clash with `charset.alias'
24416         in the DOS 8.3 name space.
24417         * lib/Makefile.am (charset_tmp): Define.
24418         (install-exec-local): Use $(charset_tmp) instead of $(charset_alias)-t.
24419         (uninstall-local): Likewise.
24420         Reported by Eli Zaretskii.
24421
24422 2000-04-03  Jim Meyering  <meyering@lucent.com>
24423
24424         * m4/gettext.m4: Fix typo in comment.
24425
24426         * m4/codeset.m4 (AC_CHECK_HEADERS): Add langinfo.h (moved here from
24427         textutils/configure.in).  Suggestion from Paul Eggert.
24428         (AC_CHECK_FUNCS): Add nl_langinfo.  (also from textutils/configure.in)
24429
24430 2000-04-02  Paul Eggert  <eggert@twinsun.com>
24431
24432         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME): Set TZ environment
24433         variable in the shell rather than using putenv, which isn't
24434         portable.  This avoids the configure-time inter-test dependency
24435         on the potentially-renamed putenv function.
24436
24437 2000-03-30  Paul Eggert  <eggert@twinsun.com>
24438
24439         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Include <sys/stat.h>
24440         before checking struct stat.st_blksize, so that
24441         HAVE_STRUCT_STAT_ST_BLKSIZE is defined correctly.
24442
24443 2000-03-29  Paul Eggert  <eggert@twinsun.com>
24444
24445         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Check for strftime,
24446         since strftime.c uses HAVE_STRFTIME to decide whether to use
24447         the underlying strftime.
24448
24449 2000-03-29  Paul Eggert  <eggert@twinsun.com>
24450
24451         * lib/time/strftime.c (my_strftime): Make sure we call the system
24452         strftime, not ourselves, when invoking the underlying strftime.
24453
24454 2000-03-24  Jim Meyering  <meyering@lucent.com>
24455
24456         * lib/Makefile.am (EXTRA_DIST): Add ref-add.sed.in and ref-del.sed.in.
24457         (charset_alias): Define.
24458         (install-exec-local): Factor out common code.
24459         (uninstall-local): Split lines longer than 80.
24460         (ref-add.sed, ref-del.sed): Remove rules... (do the following instead)
24461         (SUFFIXES): Define.
24462         (.sed.in.sed): New rule.  Don't redirect directly to $@.
24463         (CLEANFILES): Add ref-add.sed and ref-del.sed.
24464
24465 2000-03-19  Bruno Haible  <haible@clisp.cons.org>
24466
24467         * lib/config.charset: Output a line containing "Packages using this
24468         file".
24469         * lib/ref-add.sed.in, lib/ref-del.sed.in: New files.
24470         * lib/Makefile.am (install-exec-local, uninstall-local, ref-add.sed,
24471         ref-del.sed): New rules.
24472
24473 2000-03-17  Jim Meyering  <meyering@lucent.com>
24474
24475         * lib/unicodeio.c (<string.h>): Include only #if HAVE_STRING_H.
24476         Otherwise, include <strings.h>
24477
24478 2000-03-17  Bruno Haible  <haible@clisp.cons.org>
24479
24480         * lib/unicodeio.c (utf8_wctomb): New function.
24481         (print_unicode_char): Pass the Unicode character to iconv in UTF-8
24482         format instead of in UCS-4 with platform dependent endianness.
24483
24484 2000-03-10  Jim Meyering  <meyering@lucent.com>
24485
24486         * m4/lib-check.m4: Look for getspnam in -lgen, too.
24487         From Marco Franzen.
24488
24489 2000-03-07  Paul Eggert  <eggert@twinsun.com>
24490
24491         * lib/savedir.c (savedir): Work even if directory size is
24492         negative; this can happen with some screwy NFS configurations.
24493
24494 2000-03-06  Jim Meyering  <meyering@lucent.com>
24495
24496         * lib/localcharset.c (get_charset_aliases): Don't try to free file_name
24497         if it's NULL (because we ran out of memory).  From Bruno Haible.
24498
24499 2000-03-05  Jim Meyering  <meyering@lucent.com>
24500
24501         * lib/localcharset.c ("path-concat.h"): Include.
24502         (get_charset_aliases): Use path_concat instead of ANSI string
24503         concatenation.
24504
24505         * lib/unicodeio.h (PARAMS): Define.
24506         Use it to guard prototype.
24507
24508 2000-03-04  Jim Meyering  <meyering@lucent.com>
24509
24510         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require AC_C_VOLATILE,
24511         for lib/localcharset.c.
24512
24513 2000-03-04  Jim Meyering  <meyering@lucent.com>
24514
24515         * lib/Makefile.am (install-exec-local): Create $(libdir) before
24516         installing into it.
24517         (uninstall-local): Uncomment this rule so `make distcheck' works
24518         once again.
24519
24520         * lib/unicodeio.c (<errno.h>): Include it.
24521         (errno): Declare if not defined.
24522
24523         * lib/localcharset.c: Add Bruno's comment justifying use of volatile.
24524
24525         * lib/config.charset: New version, incorporating remarks from a linux
24526         i18n mailing list.  From Bruno Haible.
24527
24528 2000-03-04  Bruno Haible  <haible@clisp.cons.org>
24529
24530         * m4/codeset.m4: New file.
24531         * m4/iconv.m4: New file.
24532         * m4/jm-macros.m4 (jm_MACROS): Call jm_LANGINFO_CODESET and jm_ICONV.
24533
24534 2000-03-03  Jim Meyering  <meyering@lucent.com>
24535
24536         * m4/regex.m4: Make sure re_compile_pattern accepts patterns like `{1'.
24537
24538 2000-03-02  Jim Meyering  <meyering@lucent.com>
24539
24540         * m4/timespec.m4: Require AC_HEADER_TIME before the cache check so
24541         the messages come out on separate lines.
24542
24543         * m4/jm-glibc-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO): Use AC_CHECK_DECLS,
24544         rather than jm_CHECK_DECLARATIONS.
24545         * m4/decl.m4: Remove now-unused file.
24546
24547         * m4/check-decl.m4 (AC_CHECK_DECLS): Add getlogin, ttyname, and
24548         geteuid.
24549
24550 2000-03-02  Jim Meyering  <meyering@lucent.com>
24551
24552         * lib/Makefile.am (EXTRA_DIST): Add config.charset.
24553
24554 2000-03-01  Jim Meyering  <meyering@lucent.com>
24555
24556         * lib/localcharset.c: Guard some #includes with `#if HAVE_...'.
24557         * lib/unicodeio.c: Likewise.
24558
24559 2000-03-01  Bruno Haible  <haible@clisp.cons.org>
24560
24561         * lib/config.charset: New file.
24562         * lib/localcharset.c: New file.
24563         * lib/unicodeio.h, lib/unicodeio.c: New files.
24564         * lib/Makefile.am (DEFS): Add -DLIBDIR=...
24565         (libfetish_a_SOURCES): Add localcharset.c and unicodeio.c.
24566         (noinst_HEADERS): Add unicodeio.h.
24567         (all-local, install-exec-local, charset.alias): New targets.
24568
24569 2000-02-28  Paul Eggert  <eggert@twinsun.com>
24570
24571         * lib/quotearg.c (ALERT_CHAR): New macro.
24572         (quotearg_buffer_restyled): Use it.
24573
24574 2000-02-27  Jim Meyering  <meyering@lucent.com>
24575
24576         * m4/check-decl.m4: Add getenv to the list.
24577
24578 2000-02-27  Jim Meyering  <meyering@lucent.com>
24579
24580         * lib/strtoumax.c: Fix typo in decl of strtoul: s/long long/long/.
24581         Guard declaration of strtoull also with `&& HAVE_UNSIGNED_LONG_LONG'.
24582
24583         * lib/backupfile.c: Guard inclusion of stdlib.h with
24584         `#if HAVE_STDLIB_H', not `#if STDC_HEADERS'.
24585         Declare malloc if needed.
24586
24587         * lib/backupfile.c: Use `#if !HAVE_DECL...' instead of
24588         `#ifndef HAVE_DECL..'
24589         now that autoconf always defines the HAVE_DECL_ symbols.
24590         * lib/human.c: Likewise.
24591         * lib/same.c: Likewise.
24592         * lib/strtoumax.c: Likewise.
24593
24594         * lib/backupfile.c: Arrange for cpp to fail if the configure-time
24595         declaration check was not run.
24596         * lib/hash.c: Likewise.
24597         * lib/human.c: Likewise.
24598         * lib/same.c: Likewise.
24599         * lib/strtoumax.c: Likewise.
24600
24601         * lib/userspec.c (parse_user_spec): If there is no `:' but there is a
24602         `.', then first look up the entire `.'-containing string as a login
24603         name.
24604
24605 2000-02-23  Jim Meyering  <meyering@lucent.com>
24606
24607         * m4/check-decl.m4: Now that we have the new AC_CHECK_DECLS, use it
24608         in place of my hack.
24609
24610 2000-02-18  Paul Eggert  <eggert@twinsun.com>
24611
24612         * lib/getdate.y: Handle two-digit years with leading zeros correctly.
24613         (textint): New typedef.
24614         (parser_control): Member year changed from int to textint.
24615         All uses changed.
24616         (YYSTYPE): Removed; replaced by %union with int and textint members.
24617         (tDAY, tDAY_UNIT, tDAYZONE, tHOUR_UNIT, tID, tLOCAL_ZONE, tMERIDIAN,
24618         tMINUTE_UNIT, tMONTH, tMONTH_UNIT tSEC_UNIT, tSNUMBER, tUNUMBER,
24619         tYEAR_UNIT, tZONE, o_merid): Now of type <intval>.
24620         (tSNUMBER, tUNUMBER): Now of type <textintval>.
24621         (date, number, to_year): Use width of number in digits, not its value,
24622         to determine whether it's a 2-digit year, or a 2-digit time.
24623         (yylex): Store number of digits of numeric tokens.
24624         Reported by John Kendall.
24625
24626         (parser_control): Changed from struct parser_control to typedef (for
24627         consistency).  All uses changed.
24628
24629         (tID): Removed; not used.
24630         (yylex): Return '?' for unknown identifiers, rather than (unused) tID.
24631
24632 2000-02-14  Paul Eggert  <eggert@twinsun.com>
24633
24634         * lib/getpagesize.h (getpagesize): Port to VMS for Alpha;
24635         adapted from changes to grep getpagesize.h by Martin P.J. Zinser.
24636
24637 2000-02-12  Jim Meyering  <meyering@lucent.com>
24638
24639         * lib/userspec.c (ISDIGIT): Define it.
24640         (isdigit): Remove definition.
24641         (is_number): Use ISDIGIT, not isdigit.
24642         <libintl.h>: Include.
24643         (_ and N_): Define.
24644         (parse_user_spec): Mark translatable strings.
24645
24646 2000-02-10  Jim Meyering  <meyering@lucent.com>
24647
24648         With these changes, nanosleep.[ch] are finally enough like the other
24649         lib/* replacement files to compile on a few more losing systems.
24650
24651         * lib/nanosleep.h: Don't include config.h.
24652         Remove prototype from declaration of nanosleep.
24653         (PARAMS): Remove now-unneeded definition.
24654         * lib/nanosleep.c: #undef nanosleep.
24655         (rpl_nanosleep): Rename from nanosleep.
24656
24657 2000-02-10  Jim Meyering  <meyering@lucent.com>
24658
24659         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Rename replacement function from
24660         gnu_nanosleep to rpl_nanosleep.
24661
24662 2000-02-09  Jim Meyering  <meyering@lucent.com>
24663
24664         * m4/lib-check.m4 (jm_LIB_CHECK): Fix typo: check for sp_pwdp in
24665         struct spwd, rather than in struct passwd.  Reported by Gaël Quéri.
24666
24667 2000-02-08  Akim Demaille  <akim@epita.fr>
24668
24669         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Quote square brackets with
24670         `[' and `]' and remove uses of `changequote'.
24671         (AC_SYS_LARGEFILE_MACRO_VALUE): Likewise.
24672         (AC_SYS_LARGEFILE): Likewise.
24673         * m4/gettext.m4 (AM_GNU_GETTEXT): Likewise.
24674         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME): Remove now-unnecessary use
24675         of changequote.
24676         * m4/regex.m4 (jm_INCLUDED_REGEX): Likewise.
24677         * m4/readdir.m4 (jm_FUNC_READDIR): Likewise
24678         * m4/memcmp.m4 (jm_AC_FUNC_MEMCMP): Likewise, and add `int' for main.
24679         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Likewise.
24680
24681 2000-02-05  Jim Meyering  <meyering@lucent.com>
24682
24683         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require most macros.
24684         Remove explicit use of AC_HEADER_TIME.  It is required by
24685         jm_CHECK_TYPE_STRUCT_TIMESPEC.  Using AC_HEADER_TIME and
24686         `AC_REQUIRE'ing jm_CHECK_TYPE_STRUCT_TIMESPEC provoked a but
24687         in autoconf whereby the expansion of the latter ended up preceding
24688         the expansion of its prerequisite, AC_HEADER_TIME.
24689         Reported by Volker Borchert.
24690
24691 2000-02-03  Jim Meyering  <meyering@lucent.com>
24692
24693         * m4/prereq.m4 (jm_PREREQ_READUTMP): Check for utmpxname.
24694
24695 2000-02-03  Jim Meyering  <meyering@lucent.com>
24696
24697         * lib/readutmp.c (read_utmp): Guard with `#ifdef UTMP_NAME_FUNCTION',
24698         rather than with `#if HAVE_UTMPNAME'.
24699
24700 2000-02-02  Jim Meyering  <meyering@lucent.com>
24701
24702         * m4/prereq.m4 (jm_PREREQ_ADDEXT): Fix typo that resulted in no
24703         definition of HAVE_PATHCONF: s/AC_CHECK_FUNC/AC_CHECK_FUNCS/.
24704         Reported by Eli Zaretskii.
24705
24706 2000-02-01  Jim Meyering  <meyering@lucent.com>
24707
24708         * lib/readutmp.h (UT_USER): Add parens.  From Andreas Schwab.
24709
24710 2000-01-31  Jim Meyering  <meyering@lucent.com>
24711
24712         * m4/check-decl.m4 (jm_CHECK_DECLS): Add nanosleep to the list of
24713         functions.  Add the time.h and sys/time.h headers along with the
24714         AC_REQUIRE'ment of AC_HEADER_TIME.
24715
24716 2000-01-31  Jim Meyering  <meyering@lucent.com>
24717
24718         * lib/nanosleep.h (nanosleep): Guard declaration with
24719         `#if ! HAVE_DECL_NANOSLEEP'.
24720         Without this, OFS gets a redeclaration error for rpl_nanosleep, due to
24721         the declaration in that vendor's sys/timers.h.
24722         Reported by Christian Krackowizer.
24723
24724         * lib/quotearg.c (ISASCII): Add #undef and move definition to follow
24725         inclusion of wctype.h to work around Solaris 2.6 namespace pollution.
24726         (ISPRINT): Likewise.
24727         Reported by Tom Tromey.
24728
24729 2000-01-30  Jim Meyering  <meyering@lucent.com>
24730
24731         * m4/lib-check.m4: Clean up some kludgy old shadow password tests.
24732
24733         * m4/prereq.m4 (utmp_includes): Define.
24734         Check for ut_user and ut_name members in both struct utmpx
24735         and struct utmp.
24736
24737 2000-01-30  Jim Meyering  <meyering@lucent.com>
24738
24739         * lib/readutmp.c (extract_trimmed_name): Use UT_USER instead of
24740         hard-coding uses of ->ut_name.  The latter doesn't work with new Linux
24741         header files where only utmpx.ut_user is declared.
24742
24743         * lib/readutmp.h (UT_USER): Define.
24744
24745 2000-01-29  Jim Meyering  <meyering@lucent.com>
24746
24747         * m4/lib-check.m4: New file containing library-related checks from
24748         fileutils and sh-utils (textutils had none).
24749
24750 2000-01-28  Jim Meyering  <meyering@lucent.com>
24751
24752         * m4/perl.m4: Change format of warning message to look more like that
24753         from the missing script.  Suggestion from François Pinard.
24754
24755 2000-01-25  Jim Meyering  <meyering@lucent.com>
24756
24757         * m4/timespec.m4: Require AC_HEADER_TIME, and include sys/time.h as
24758         well as time.h in the compile check.
24759         * m4/nanosleep.m4: Require AC_HEADER_TIME rather than simply using it.
24760         Fix typo in cross-compiling case: s/yes/no/.
24761
24762 2000-01-23  Jim Meyering  <meyering@lucent.com>
24763
24764         * m4/jm-macros.m4: Move df-related tests here from
24765         fileutils/configure.in
24766
24767         * m4/ls-mntd-fs.m4: s/list_mounted_fs/ac_list_mounted_fs/
24768         (jm_LIST_MOUNTED_FILESYSTEMS): Take two parameters.
24769
24770         * m4/fsusage.m4: New file.  Extracted from fileutils/configure.in.
24771         s/space/ac_fsusage_space/.
24772         (jm_FILE_SYSTEM_USAGE): Take two parameters.
24773
24774         * m4/ftruncate.m4: New file (derived from part of
24775         fileutils/configure.in).
24776         * m4/jm-macros.m4 (jm_FUNC_FTRUNCATE): AC_REQUIRE it.
24777         (jm_CHECK_ALL_TYPES): Require AC_HEADER_MAJOR and AC_HEADER_DIRENT.
24778
24779         * m4/jm-macros.m4 (OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, MAN):
24780         AC_SUBST these here, rather than just in sh-util/configure.in, so
24781         that the now-shared-by-fileutils-and-textutils lib/Makefile.am are
24782         all the same.
24783         (AM_FUNC_OBSTACK): Add (from fileutils/configure.in).
24784         (AC_CHECK_FUNCS): Merge all checks from fileutils, textutils, sh-utils.
24785         (AM_FUNC_STRTOD): Added (from textutils', sh-utils' configure.in).
24786         (AC_SUBST(POW_LIBM)): Likewise.
24787         (AC_SUBST(DF_PROG)): Moved from fileutils/configure.in.
24788
24789 2000-01-23  Jim Meyering  <meyering@lucent.com>
24790
24791         * lib/Makefile.am (libfetish_a_SOURCES): Remove explicit mention of
24792         obstack.c.
24793
24794 2000-01-22  Jim Meyering  <meyering@lucent.com>
24795
24796         * m4/jm-macros.m4: Call AC_PROG_CC_STDC just before AC_C_CONST.
24797
24798         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Add wctype.h.
24799
24800         * m4/jm-macros.m4 (AC_CHECK_HEADERS): Add checks from fileutils'
24801         configure.in
24802         (AC_CHECK_HEADERS): Likewise for sh-utils.
24803         (AC_CHECK_HEADERS): Likewise for textutils.
24804         Merge the three lists of headers.
24805
24806         * m4/prereq.m4 (jm_PREREQ_ADDEXT): New macro.  Parts moved here
24807         from fileutils' configure.in.
24808
24809         * m4/decl.m4: Remove kludgy `test -z $ac_...AC_CHECK_HEADERS(...)'
24810         code. Moved tests into their own function (_jm_DECL_HEADERS) in
24811         check-decl.m4.
24812
24813         * m4/check-decl.m4: Use #if rather than #ifdef.
24814         Add HAVE_DECL_STRTOUL and HAVE_DECL_STRTOULL.
24815         (jm_CHECK_DECLARATIONS): Add strtoul strtoull.
24816         (_jm_DECL_HEADERS): Define new function.
24817         (jm_CHECK_DECLARATIONS): Require it.
24818
24819 2000-01-22  Jim Meyering  <meyering@lucent.com>
24820
24821         * lib/strtoumax.c: [! HAVE_DECL_STRTOUL]: Declare strtoul.
24822         [! HAVE_DECL_STRTOULL]: Declare strtoull.
24823         Required for some AIX systems.  Reported by Christian Krackowizer.
24824         [TESTING] (main): New function.
24825
24826         1997-10-17  Eli Zaretskii  <eliz@is.elta.co.il>
24827         * lib/dirname.c (dir_name): Support for DOS-style file names with drive
24828         letters.
24829
24830         * lib/quotearg.c [HAVE_WCTYPE_H]: Include <wctype.h> for decl of
24831         iswprint.
24832
24833         * lib/strverscmp.c (ISDIGIT): Define.
24834         (strverscmp): Use ISDIGIT, not isdigit.
24835
24836 2000-01-19  Jim Meyering  <meyering@lucent.com>
24837
24838         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Include <sys/time.h>, too.
24839         Use AC_HEADER_TIME.  Volker Borchert reported that OpenBSD-2.3/sparc
24840         defines `struct timespec' in <sys/time.h>
24841
24842         * m4/c-bs-a.m4: Remove uses of changequote altogether.
24843         Thanks to Akim for explaining.
24844
24845 2000-01-17  Paul Eggert  <eggert@twinsun.com>
24846
24847         * lib/nanosleep.c (nanosleep):
24848         Don't use SA_INTERRUPT to decide whether to call sigaction, as
24849         POSIX.1 doesn't require SA_INTERRUPT and some systems
24850         (e.g. Solaris 7) don't define it.  Use SA_NOCLDSTOP instead;
24851         it's been part of POSIX.1 since day 1 (in 1988).
24852
24853 2000-01-17  Jim Meyering  <meyering@lucent.com>
24854
24855         * lib/interlock: Remove unused file.  Reported by François Pinard.
24856
24857 2000-01-16  Paul Eggert  <eggert@twinsun.com>
24858
24859         * lib/quotearg.c (quotearg_buffer_restyled): Do not quote
24860         alert, backslash, formfeed, and vertical tab unnecessarily in
24861         shell quoting style.
24862
24863 2000-01-16  Jim Meyering  <meyering@lucent.com>
24864
24865         * m4/jm-macros.m4: Require jm_FUNC_GROUP_MEMBER, jm_FUNC_PUTENV,
24866         AM_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, jm_FUNC_MKTIME,
24867         jm_FUNC_GETGROUPS AC_FUNC_VPRINTF, AC_FUNC_ALLOCA,
24868         AM_FUNC_GETLOADAVG, and jm_SYS_PROC_UPTIME.
24869
24870 2000-01-16  Jim Meyering  <meyering@lucent.com>
24871
24872         * m4/c-bs-a.m4: Use `changequote(<<,>>)', rather than `changequote(, )'
24873         because the latter didn't work.
24874
24875 2000-01-15  Jim Meyering  <meyering@lucent.com>
24876
24877         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add gethostname and getusershell.
24878         (AC_REPLACE_FUNCS): Add memcpy and memset.
24879         Add these, too: stime strcspn stpcpy strstr strtol strtoul.
24880         Add strpbrk.
24881         Add these: euidaccess memcmp mkdir rmdir rpmatch strndup strverscmp.
24882
24883 2000-01-12  Jim Meyering  <meyering@lucent.com>
24884
24885         * m4/prereq.m4 (jm_PREREQ_CANON_HOST): New macro.
24886         (jm_PREREQ): Use it.
24887         (jm_PREREQ_READUTMP): New macro.
24888         (jm_PREREQ): Use it.
24889
24890 2000-01-11  Paul Eggert  <eggert@twinsun.com>
24891
24892         Quote multibyte characters correctly.
24893         * m4/c-bs-a.m4: New file.
24894         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): New macro.
24895         (jm_PREREQ): Use it.
24896
24897 2000-01-11  Paul Eggert  <eggert@twinsun.com>
24898
24899         * m4/uintmax_t.m4: Port to autoconf 2.13.
24900
24901 2000-01-08  Jim Meyering  <meyering@ascend.com>
24902
24903         * m4/strerror_r.m4 (jm_FUNC_STRERROR_R): New file/macro.
24904         * m4/jm-macros.m4 (jm_FUNC_STRERROR_R): Require it.
24905
24906 2000-01-04  Jim Meyering  <meyering@ascend.com>
24907
24908         * m4/d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename from
24909         jm_STRUCT_DIRENT_D_TYPE.
24910         * m4/d-ino.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_INO): Rename from
24911         jm_STRUCT_DIRENT_D_INO.
24912         * m4/utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Rename from
24913         jm_STRUCT_UTIMBUF.
24914         * m4/jm-macros.m4: Reflect s/jm_STRUCT_/jm_CHECK_TYPE_STRUCT_/
24915         renamings.
24916         * m4/utime.m4: Likewise.
24917
24918         * m4/timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): New file, macro.
24919         * m4/jm-macros.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): Require it.
24920
24921 2000-01-03  Paul Eggert  <eggert@twinsun.com>
24922
24923         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Search for nanosleep in -lrt
24924         (for Solaris 7) and in -lposix4 (for Solaris 2.5.1).
24925
24926 2000-01-02  Jim Meyering  <meyering@ascend.com>
24927
24928         * m4/search-libs.m4: Escape `$' in $3 of dnl comment.  I no longer
24929         remember if this is necessary.
24930
24931 1999-12-26  Jim Meyering  <meyering@ascend.com>
24932
24933         * m4/jm-macros.m4: Use it here.
24934         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): New file/macro.
24935
24936 1999-12-23  Jim Meyering  <meyering@ascend.com>
24937
24938         * m4/jm-macros.m4: Check for clock_gettime (moved from
24939         fileutils/configure.in)
24940         Check for gettimeofday.
24941
24942 1999-12-20  Jim Meyering  <meyering@ascend.com>
24943
24944         * m4/strftime.m4: Remove kludge, now that I'm using the fixed
24945         autoconf-2.14a-1999-12-20.
24946
24947 1999-12-19  Jim Meyering  <meyering@ascend.com>
24948
24949         * m4/lstat-slash.m4: New file.
24950         * m4/jm-macros.m4: Use the new macro:
24951         jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
24952
24953 1999-12-07  Jim Meyering  <meyering@ascend.com>
24954
24955         * m4/perl.m4: Require that File::Compare be available, too.
24956         Too many systems seem to lack it.
24957
24958         * m4/strftime.m4: Add checks for most of the cpp macros tested in
24959         GNU's strftime.c.  Prompted by a patch from Paul Eggert.
24960
24961 1999-11-18  Paul Eggert  <eggert@twinsun.com>
24962
24963         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around a
24964         problem with the QNX 4.25 shell, which doesn't propagate exit
24965         status of failed commands inside shell assignments.
24966
24967 1999-11-17  Jim Meyering  <meyering@ascend.com>
24968
24969         * m4/gettext.m4: Use new AC_CONFIG_LINKS in place of AC_LINK_FILES.
24970
24971 1999-11-07  Jim Meyering  <meyering@ascend.com>
24972
24973         * m4/getloadavg.m4: Add `, 1, [FIXME]' to each use of AC_DEFINE.
24974
24975 1999-11-06  Jim Meyering  <meyering@ascend.com>
24976
24977         * m4/link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): New file/macro.
24978         * m4/jm-macros.m4 (jm_MACROS): Use it here.
24979
24980 1999-11-05  Jim Meyering  <meyering@ascend.com>
24981
24982         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Move some tests from
24983         configure.in of textutils, fileutils, and sh-utils into this one
24984         (shared between those packages) file.
24985         Use `AC_CHECK_MEMBERS((struct stat.st_blksize))' instead of deprecated
24986         AC_STRUCT_ST_BLKSIZE.
24987
24988 1999-11-03  Jim Meyering  <meyering@ascend.com>
24989
24990         * m4/ssize_t.m4: Remove file.  No longer needed since the new version
24991         of AC_CHECK_TYPE checks includes unistd.h.
24992         * m4/jm-macros.m4: Use straight `AC_CHECK_TYPE(ssize_t, int)'.
24993         Suggestion from Akim Demaille.
24994
24995 1999-10-30  Jim Meyering  <meyering@ascend.com>
24996
24997         * m4/uintmax_t.m4: Require 2.14a.  Remove backslash before backtick in
24998         m4-quoted string.
24999         * m4/ls-mntd-fs.m4: Likewise.
25000         * m4/jm-macros.m4: Likewise.  Also, use AC_TYPE_SSIZE_T instead
25001         * m4/jm-winsz1.m4: Likewise.
25002
25003         * m4/const.m4: Remove file, since the fix made it into the experimental
25004         version of autoconf.
25005         * m4/mktime.m4: Likewise.
25006
25007         * m4/check-type.m4: Remove file, now that the latest version of
25008         AC_CHECK_TYPE takes a third arg to specify additional #includes.
25009
25010         * m4/ssize_t.m4: New file, requires experimental version of autoconf.
25011         * m4/jm-macros.m4: Use new AC_TYPE_SSIZE_T instead of my hacked
25012         AC_CHECK_TYPE.
25013
25014 1999-10-04  Jim Meyering  <meyering@ascend.com>
25015
25016         * m4/jm-macros.m4: Don't require autoconf-2.14.1.
25017
25018 1999-09-22  Paul Eggert  <eggert@twinsun.com>
25019
25020         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around GCC
25021         2.95.1 bug with HP-UX 10.20.
25022
25023 1999-09-17  Jim Meyering  <meyering@ascend.com>
25024
25025         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add strdup.
25026         Paul Nevai reported a link failure on a NeXT CUBE with NeXTSTEP 3.3
25027         due to missing strdup (against sh-utils-2.0).
25028
25029 1999-08-29  Jim Meyering  <meyering@ascend.com>
25030
25031         * m4/jm-macros.m4: Require jm_BISON.
25032         * m4/bison.m4: New file.
25033
25034 1999-08-17  Paul Eggert  <eggert@twinsun.com>
25035
25036         * m4/largefile.m4 (AC_SYS_LARGEFILE): Fix typo: missing comma
25037         in value for _FILE_OFFSET_BITS, which broke ports to HP-UX 10.20.
25038
25039 1999-08-05  Jim Meyering  <meyering@ascend.com>
25040
25041         * m4/getline.m4: Rename test file from conftestdata to conftest.data
25042         to avoid conflicts with `conftest' on 8+3 filesystems.
25043         Suggestion from Eli Zaretskii.
25044
25045 1999-08-04  Jim Meyering  <meyering@ascend.com>
25046
25047         * m4/jm-macros.m4: Move a 4-line block of code from the configure.in of
25048         fileutils and sh-utils (textutils's getline test was inadequate).
25049         (AM_FUNC_GETLINE): Run this test.
25050         (AC_CHECK_FUNCS): Check for getdelim.
25051         Reported by Bob Proulx.
25052
25053 1999-08-02  Jim Meyering  <meyering@ascend.com>
25054
25055         * m4/jm-macros.m4: Add a comment.
25056
25057 1999-08-01  Paul Eggert  <eggert@twinsun.com>
25058
25059         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check whether
25060         <inttypes.h> defines strtoumax as a macro (and not as a
25061         function).
25062
25063 1999-08-01  Paul Eggert  <eggert@twinsun.com>
25064
25065         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Make sure
25066         that we can shift, multiply and divide unsigned long long
25067         values; Ultrix cc can't do it.
25068
25069 1999-08-01  Paul Eggert  <eggert@twinsun.com>
25070
25071         * m4/mktime.m4: New file, which is a preview of what should appear
25072         in the next public autoconf release.
25073
25074 1999-08-01  Paul Eggert  <eggert@twinsun.com>
25075
25076         * m4/lfs.m4: Remove this file.
25077         * m4/largefile.m4: New file.  It contains the old contents of
25078         lfs.m4, except that all names with prefix AC_LFS have been
25079         changed to use the prefix AC_SYS_LARGEFILE instead, to be
25080         compatible with future autoconf versions.  Also, some minor m4
25081         quoting problems have been fixed.
25082
25083 1999-08-01  Paul Eggert  <eggert@twinsun.com>
25084
25085         * m4/gettext.m4 (AM_WITH_NLS): Remove unnecessary lines.
25086         Fix typo: $nls_cv_header_intl was misspelled as $nsl_cv_header_intl.
25087         (AM_GNU_GETTEXT): Fix problem with brackets and m4 quoting,
25088         and simplify the shell code.
25089
25090 1999-08-01  Jim Meyering  <meyering@ascend.com>
25091
25092         * m4/mktime.m4 (AC_FUNC_MKTIME): Undefine to avoid syntax errors from
25093         m4.
25094
25095 1999-07-20  Jim Meyering  <meyering@ascend.com>
25096
25097         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memmove.
25098
25099 1999-07-15  Jim Meyering  <meyering@ascend.com>
25100
25101         * m4/jm-macros.m4 (AC_CHECK_FUNCS): Check for getpagesize.
25102
25103 1999-05-22  Jim Meyering  <meyering@ascend.com>
25104
25105         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memchr.
25106
25107 1999-05-20  Jim Meyering  <meyering@ascend.com>
25108
25109         * m4/search-libs.m4 [AC_SEARCH_LIBS]: Quote name in undefine.
25110         Add a colon after each `then' in case $4 is empty.
25111
25112 1999-05-16  Jim Meyering  <meyering@ascend.com>
25113
25114         * m4/search-libs.m4: New file to override autoconf's AC_SEARCH_LIBS.
25115
25116 1999-05-10  Jim Meyering  <meyering@ascend.com>
25117
25118         * m4/jm-mktime.m4: Reflect renaming: AM_FUNC_MKTIME -> AC_FUNC_MKTIME.
25119
25120         * m4/jm-macros.m4: Require 2.14.1, since we use newly-renamed
25121         AC_FUNC_MKTIME.
25122
25123 1999-05-10  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
25124
25125         * m4/jm-mktime.m4, putenv.m4: Fix typos in config.h comments.
25126
25127 1999-05-04  Paul Eggert  <eggert@twinsun.com>
25128
25129         * m4/lfs.m4 (AC_LFS): -n32, -o32, and -n64 should be in CFLAGS,
25130         not CPPFLAGS, so that linking works correctly in IRIX.
25131
25132 1999-04-30  Paul Eggert  <eggert@twinsun.com>
25133
25134         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add dup2.
25135
25136 1999-04-20  Paul Eggert  <eggert@twinsun.com>
25137
25138         * m4/uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Move unsigned long
25139         long check into new jm_AC_TYPE_UNSIGNED_LONG_LONG macro.
25140         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require
25141         jm_AC_TYPE_UNSIGNED_LONG_LONG.
25142         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): New file/macro.
25143
25144         * m4/lfs.m4: Port to AIX and HP-UX.  Support cross-compilation.
25145
25146 1999-04-20  Jim Meyering  <meyering@ascend.com>
25147
25148         * m4/xstrtoumax.m4: Require jm_AC_TYPE_UNSIGNED_LONG_LONG.
25149         AC_REPLACE xstroull if necessary.  From Paul Eggert.
25150         (AC_CHECK_FUNCS): Remove strtoull, strtoumax, strtouq.
25151
25152 1999-04-18  Jim Meyering  <meyering@ascend.com>
25153
25154         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): New file/macro.
25155         * m4/jm-macros.m4: Use it.
25156
25157 1999-04-06  Jim Meyering  <meyering@ascend.com>
25158
25159         * m4/strftime.m4: Remove test for %f.
25160
25161 1999-03-29  Jim Meyering  <meyering@ascend.com>
25162
25163         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): New macro, contains the
25164         superset of the AC_TYPE_* checks in the textutils, fileutils,
25165         and sh-utils, plus AC_TYPE_PID_T.  Paul Eggert suggested adding
25166         AC_TYPE_PID_T.
25167
25168 1999-03-28  Jim Meyering  <meyering@ascend.com>
25169
25170         * m4/jm-macros.m4: Define GNU_PACKAGE here.
25171         Be sure to AC_SUBST it, once again, so that @GNU_PACKAGE@ is
25172         replaced e.g., in the *.sh files of the sh-utils.
25173
25174 1999-03-20  Jim Meyering  <meyering@ascend.com>
25175
25176         * m4/jm-macros.m4: s/jm_WITH_REGEX/jm_INCLUDED_REGEX/.
25177         * m4/regex.m4 (jm_INCLUDED_REGEX): Rename from jm_WITH_REGEX.
25178         Don't depend on AM_GLIBC.  Suggestions from Alain Magloire.
25179
25180 1999-03-19  Jim Meyering  <meyering@ascend.com>
25181
25182         * m4/jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): New macro.
25183
25184 1999-03-12  Jim Meyering  <meyering@ascend.com>
25185
25186         * m4/jm-macros.m4: Use AC_FUNC_SETVBUF_REVERSED.
25187
25188 1999-03-07  Jim Meyering  <meyering@ascend.com>
25189
25190         * m4/jm-glibc-io.m4: Use only those *_unlocked macros that are
25191         declared.
25192
25193 1999-02-17  Jim Meyering  <meyering@ascend.com>
25194
25195         * m4/gettext.m4 (AM_GNU_GETTEXT): Do `changequote' around use of
25196         brackets in macro definition.  From Eli Zaretskii and Alain Magloire.
25197
25198 1999-02-07  Jim Meyering  <meyering@ascend.com>
25199
25200         * m4/group-member.m4: New file -- extracted from sh-utils'
25201         configure.in.
25202
25203         1999-02-05  Eli Zaretskii  <eliz@is.elta.co.il>
25204         * m4/gettext.m4: Support DOS-style d:/foo/bar absolute file names.
25205
25206 1999-02-06  Jim Meyering  <meyering@ascend.com>
25207
25208         * m4/chown.m4: Use `AC_SUBST(LIBOBJS)' since we set LIBOBJS.
25209         * m4/fnmatch.m4: Likewise.
25210         * m4/getgroups.m4: Likewise.
25211         * m4/lstat.m4: Likewise.
25212         * m4/malloc.m4: Likewise.
25213         * m4/putenv.m4: Likewise.
25214         * m4/realloc.m4: Likewise.
25215         * m4/regex.m4: Likewise.
25216         * m4/stat.m4: Likewise.
25217         * m4/strftime.m4: Likewise.
25218         Suggestion from Alain Magloire.
25219
25220         * m4/chown.m4: Use `.$ac_objext', not `.o'.
25221         * m4/fnmatch.m4: Likewise.
25222         * m4/getgroups.m4: Likewise.
25223         * m4/getline.m4: Likewise.
25224         * m4/lstat.m4: Likewise.
25225         * m4/malloc.m4: Likewise.
25226         * m4/memcmp.m4: Likewise.
25227         * m4/putenv.m4: Likewise.
25228         * m4/realloc.m4: Likewise.
25229         * m4/regex.m4: Likewise.
25230         * m4/stat.m4: Likewise.
25231         * m4/strftime.m4: Likewise.
25232         Suggestion from Alain Magloire.
25233
25234         * m4/jm-macros.m4: Actually invoke jm_WITH_REGEX now that it requires
25235         an argument.
25236
25237         * m4/regex.m4: Add a run-time Test for proper operation of
25238         re_compile_pattern.
25239
25240 1999-01-31  Jim Meyering  <meyering@ascend.com>
25241
25242         * m4/getloadavg.m4: Check for locale.h and the function, setlocale.
25243
25244 1999-01-30  Jim Meyering  <meyering@ascend.com>
25245
25246         * m4/check-type.m4: Use 3-arg form of AC_DEFINE.
25247
25248         * m4/jm-mktime.m4: Make this a wrapper around the official
25249         AM_FUNC_MKTIME rather than my private copy, now that the official one
25250         is up to date.
25251         * m4/mktime.m4: Remove file.
25252
25253         * m4/getloadavg.m4: Use 3-arg form of AC_DEFINE.
25254         * m4/uptime.m4: Likewise.
25255         * m4/uintmax_t.m4: Likewise.
25256
25257 1999-01-28  Jim Meyering  <meyering@ascend.com>
25258
25259         * m4/jm-macros.m4: Use jm_AFS.
25260         * m4/afs.m4: New file (from fileutils' configure.in).
25261
25262         * m4/assert.m4: Use the 3-argument forms of AC_DEFINE* macros.
25263         * m4/chown.m4: Likewise.
25264         * m4/d-ino.m4: Likewise.
25265         * m4/d-type.m4: Likewise.
25266         * m4/fnmatch.m4: Likewise.
25267         * m4/getgroups.m4: Likewise.
25268         * m4/gettext.m4: Likewise.
25269         * m4/jm-mktime.m4: Likewise.
25270         * m4/jm-winsz2.m4: Likewise.
25271         * m4/lcmessage.m4: Likewise.
25272         * m4/ls-mntd-fs.m4: Likewise.
25273         * m4/malloc.m4: Likewise.
25274         * m4/memcmp.m4: Likewise.
25275         * m4/putenv.m4: Likewise.
25276         * m4/realloc.m4: Likewise.
25277         * m4/st_mtim.m4: Likewise.
25278         * m4/strftime.m4: Likewise.
25279
25280 1999-01-16  Jim Meyering  <meyering@ascend.com>
25281
25282         * m4/jm-macros.m4 (ARGMATCH_DIE): Define.
25283         (ARGMATCH_DIE_DECL): Define.
25284
25285 1999-01-12  Jim Meyering  <meyering@ascend.com>
25286
25287         * m4/Makefile.am.in: Rewrite to avoid using fmt.
25288         Reported by Lars Hecking.
25289
25290 1999-01-10  Jim Meyering  <meyering@ascend.com>
25291
25292         * m4/fstypename.m4: Use the new 3-arg form of AC_DEFINE instead of my
25293         gross kludge.
25294         * m4/inttypes_h.m4: Likewise.
25295         * m4/lstat.m4: Likewise.
25296         * m4/malloc.m4: Likewise.
25297         * m4/readdir.m4: Likewise.
25298         * m4/realloc.m4: Likewise.
25299         * m4/st_dm_mode.m4: Likewise.
25300         * m4/stat.m4: Likewise.
25301         * m4/utimbuf.m4: Likewise.
25302         * m4/utimes.m4: Likewise.
25303
25304         * m4/check-decl.m4: Use the new 3-arg form of AC_DEFINE instead of the
25305         AC_CHECK_FUNCS hack.  Now, it's still a hack, but at least the
25306         comments in config.h.in are meaningful.
25307
25308         * m4/jm-macros.m4: Require autoconf-2.13 here.
25309
25310         * m4/regex.m4: By default, don't use the included regex.c on systems
25311         with glibc 2.  Suggestion from Uli Drepper.
25312
25313 1999-01-02  Jim Meyering  <meyering@ascend.com>
25314
25315         * m4/jm-macros.m4: Replace strcasecmp and strncasecmp.
25316
25317 1998-12-18  Jim Meyering  <meyering@ascend.com>
25318
25319         * m4/Makefile.am.in (Makefile.am): Simplify rule.
25320         Based on a suggestion from Lars Hecking.
25321
25322 1998-11-16  Paul Eggert  <eggert@twinsun.com>
25323
25324         * m4/lfs.m4 (AC_LFS): Add support for HP-UX 10.20 and HP-UX 11.
25325
25326 1998-11-16  Jim Meyering  <meyering@ascend.com>
25327
25328         * m4/lfs.m4: Double-quote the `uname...` expression.
25329
25330 1998-11-14  Jim Meyering  <meyering@ascend.com>
25331
25332         * m4/lstat.m4: Correct comment.  POSIX does not permit it to succeed.
25333         * m4/stat.m4: Likewise.
25334
25335 1998-11-03  Jim Meyering  <meyering@ascend.com>
25336
25337         * m4/stat.m4: Rewrite to set HAVE_STAT_EMPTY_STRING_BUG.
25338         * m4/lstat.m4: Rewrite to set HAVE_LSTAT_EMPTY_STRING_BUG.
25339
25340 1998-10-18  Jim Meyering  <meyering@ascend.com>
25341
25342         * m4/check-decl.m4 (jm_CHECK_DECL_LOCALTIME_R): Remove macro.
25343
25344 1998-10-17  Jim Meyering  <meyering@ascend.com>
25345
25346         * m4/decl.m4 (jm_CHECK_DECLARATION): Don't hard-code which headers to
25347         include, though we still hard-code the `require'-like AC_CHECK_HEADERS
25348         calls for those previously hard-coded headers.  Instead, take a new
25349         parameter.
25350         (jm_CHECK_DECLARATIONS): Reflect interface change.
25351         * m4/check-decl.m4 (jm_CHECK_DECLS): Likewise.
25352         (jm_CHECK_DECL_LOCALTIME_R): New macro.
25353
25354         * m4/mktime.m4: Test for spring-forward gap before long-running test.
25355
25356 1998-10-14  Jim Meyering  <meyering@ascend.com>
25357
25358         * m4/mktime.m4: Use the more portable "TZ=PST8PDT,M4.1.0,M10.5.0"
25359         instead of "TZ=America/Vancouver".  From Paul Eggert.
25360
25361 1998-10-11  Jim Meyering  <meyering@ascend.com>
25362
25363         * m4/mktime.m4 (jm_AM_FUNC_MKTIME): New file and macro.
25364         This adds a test for a recently added compatibility fix for mktime.c.
25365         * m4/jm-mktime.m4: Require jm_AM_FUNC_MKTIME, not AM_FUNC_MKTIME.
25366
25367 1998-09-27  Jim Meyering  <meyering@ascend.com>
25368
25369         * m4/jm-macros.m4 (jm_MACROS): Require jm_FUNC_FNMATCH.
25370
25371         * m4/fnmatch.m4 (jm_FUNC_FNMATCH): New file/macro.  Extracted from
25372         ../configure.in, including a change from Gordon Matzigkeit to allow
25373         cross-compiling for the Hurd.
25374
25375         * m4/glibc.m4: New file/macro to test for the GNU C Library
25376         versions 1 and 2.  From Gordon Matzigkeit.
25377         Indent.
25378
25379 1998-09-21  Jim Meyering  <meyering@ascend.com>
25380
25381         * m4/chown.m4: Declare locals: before, after.  From Andries Brouwer.
25382
25383 1998-08-18  Paul Eggert  <eggert@twinsun.com>
25384
25385         Port nanosecond-resolution times to UnixWare 2.1.2 and
25386         pedantic Solaris 2.6.
25387
25388         * m4/st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC): Renamed from
25389         AC_STRUCT_ST_MTIM.
25390         * m4/st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC):
25391         Generate name of ns member, instead of just 1 or undef.
25392         Allow for UnixWare 2.1.2 and Solaris 2.6 if in pedantic mode.
25393
25394 1998-08-15  Jim Meyering  <meyering@ascend.com>
25395
25396         * m4/ssize_t.m4 (jm_TYPE_SSIZE_T): Remove file.
25397         * m4/check-type.m4: New file.  Replacement for AC_CHECK_TYPE.
25398         * m4/jm-macros.m4: Use the new AC_CHECK_TYPE(ssize_t, int)
25399         instead of jm_TYPE_SSIZE_T.
25400
25401 1998-08-12  Jim Meyering  <meyering@ascend.com>
25402
25403         * m4/st_dm_mode.m4: New file.  From Johan Danielsson.
25404
25405 1998-08-02  Jim Meyering  <meyering@ascend.com>
25406
25407         * m4/st_mtim.m4: Use hack to avoid having to put #undef HAVE_ST_MTIM
25408         in acconfig.h manually.
25409
25410 1998-07-31  Paul Eggert  <eggert@twinsun.com>
25411
25412         * m4/st_mtim.m4: New file.
25413
25414 1998-07-28  Jim Meyering  <meyering@ascend.com>
25415
25416         * m4/utimes.m4: Undef stat.
25417
25418 1998-07-25  Jim Meyering  <meyering@ascend.com>
25419
25420         * m4/utime.m4 (jm_FUNC_UTIME): New file and macro.
25421         * m4/utimes.m4 (jm_FUNC_UTIMES_NULL): New file and macro.
25422
25423 1998-07-09  Manfred Hollstein  <manfred@s-direktnet.de>
25424
25425         * m4/chown.m4 (jm_FUNC_CHOWN): Add a check to verify that the
25426         uid and gid actually remain unchanged.
25427
25428 1998-07-07  Jim Meyering  <meyering@ascend.com>
25429
25430         * m4/jm-glibc-io.m4: Remove fclose_unlocked.
25431
25432 1998-07-04  Jim Meyering  <meyering@ascend.com>
25433
25434         * m4/regex.m4: Use syscmd, ifelse, and sysval.  Mainly as an exercise
25435         to prove that this macro can be used in packages without regex.c.
25436
25437 1998-07-04  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
25438
25439         * m4/gettext.m4 (AM_WITH_NLS): Remove intl/libintl.h if <libintl.h>
25440         is to be used.
25441
25442 1998-07-03  Jim Meyering  <meyering@ascend.com>
25443
25444         * m4/gettext.m4: Add -lintl if it's found to be necessary.
25445
25446         * m4/gettext.m4: New file -- from gettext-0.10.35.
25447         * m4/lcmessage.m4: Likewise.
25448         * m4/progtest.m4: Likewise.
25449
25450         * m4/regex.m4 (jm_WITH_REGEX): New file and macro.
25451         * m4/jm-macros.m4: Require the new macro.
25452
25453 1998-06-29  Jim Meyering  <meyering@ascend.com>
25454
25455         * m4/fstypename.m4: Include sys/param.h.  NetBSD 1.3.1 requires this
25456         for the definition of NGROUPS (used in a system header included
25457         by sys/mount.h).
25458
25459 1998-06-28  Jim Meyering  <meyering@ascend.com>
25460
25461         * m4/ls-mntd-fs.m4: New file.
25462         * m4/fstypename.m4: New file.
25463
25464         * m4/jm-macros.m4: Require the new macro.
25465         * m4/jm-glibc-io.m4: New file.
25466
25467 1998-05-19  Jim Meyering  <meyering@ascend.com>
25468
25469         * m4/jm-macros.m4: Add jm_FUNC_LCHOWN.
25470         * m4/lchown.m4: New file.
25471
25472         * m4/Makefile.am.in: New file.
25473         * m4/Makefile.am (Makefile.am): Depend on Makefile.am.in.
25474
25475 1998-05-14  Jim Meyering  <meyering@ascend.com>
25476
25477         * m4/Makefile.am (EXTRA_DIST): Add them.
25478         * m4/jm-macros.m4: New file.
25479         * m4/utimbuf.m4: New file.
25480
25481 1998-05-12  Jim Meyering  <meyering@ascend.com>
25482
25483         * m4/Makefile.am (EXTRA_DIST): Add isc-posix.m4.
25484
25485 1998-05-11  Jim Meyering  <meyering@ascend.com>
25486
25487         * m4/isc-posix.m4: New file.
25488
25489 1998-05-10  Jim Meyering  <meyering@ascend.com>
25490
25491         * m4/jm-mktime.m4: Use AM_FUNC_MKTIME, now that it's up to date.
25492
25493 1998-05-09  Jim Meyering  <meyering@ascend.com>
25494
25495         * m4/Makefile.am (EXTRA_DIST): Add ssize_t.m4.
25496         (EXTRA_DIST): Remove mktime.m4, now that the new version is included
25497         with automake.
25498
25499         * m4/ssize_t.m4: New file.
25500         * m4/mktime.m4: Remove file -- the new automake has this now.
25501
25502 1998-04-26  Jim Meyering  <meyering@ascend.com>
25503
25504         * m4/assert.m4: New file.
25505         * m4/Makefile.am (EXTRA_DIST): Add assert.m4.
25506
25507 1998-04-05  Jim Meyering  <meyering@ascend.com>
25508
25509         * m4/prereq.m4 (jm_PREREQ_REGEX): New macro.
25510         (jm_PREREQ): Use it here.
25511
25512 1998-03-23  Jim Meyering  <meyering@eng.ascend.com>
25513
25514         * m4/inttypes_h.m4: Kludges so I don't have to add HAVE_INTTYPES_H
25515         in acconfig.h.
25516
25517 1998-03-15  Jim Meyering  <meyering@eng.ascend.com>
25518
25519         * m4/prereq.m4: New file.
25520         * m4/error.m4: New file.
25521         * m4/Makefile.am (EXTRA_DIST): Add error.m4 and prereq.m4.
25522
25523 1998-02-07  Jim Meyering  <meyering@eng.ascend.com>
25524
25525         * m4/getline.m4: Don't set am_cv_func_working_getline before the
25526         cache-check for the same variable -- that defeated the purpose of
25527         the test; the test program was never run.  This was a problem only
25528         on systems with losing getline functions -- HP-UX 10.20 is one.
25529         Reported by Bjorn Helgaas.
25530
25531 1998-02-06  Jim Meyering  <meyering@eng.ascend.com>
25532
25533         * m4/Makefile.am (EXTRA_DIST): Add perl.m4.
25534
25535 1998-01-10  Jim Meyering  <meyering@na-net.ornl.gov>
25536
25537         * m4/Makefile.am (EXTRA_DIST): Add const.m4.
25538
25539         * m4/const.m4: New file.  Use an initializer in this declaration
25540         typedef int charset[2]; const charset x;
25541         Reported by Bob Glickstein.
25542
25543 1997-12-21  Jim Meyering  <meyering@na-net.ornl.gov>
25544
25545         * m4/chown.m4: Fix reversed types on -1 args to chown.
25546         From Kaveh Ghazi.
25547
25548 1997-12-14  Jim Meyering  <meyering@na-net.ornl.gov>
25549
25550         * m4/check-decl.m4: s/DECLARATION_/DECL_/g.
25551         Add lseek and memchr.
25552
25553         * m4/decl.m4: s/HAVE_DECLARATION_/HAVE_DECL_/g.
25554         T.E.Dickey <dickey@clark.net> said that some older preprocessors
25555         have a 20-character limit on names.
25556
25557 1997-11-30  Jim Meyering  <meyering@na-net.ornl.gov>
25558
25559         * m4/inttypes_h.m4: New file.
25560         * m4/uintmax_t.m4: New file.
25561         * m4/Makefile.am (EXTRA_DIST): Add inttypes_h.m4 and uintmax_t.m4.
25562
25563 Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007
25564   Free Software Foundation, Inc.
25565 Copying and distribution of this file, with or without modification,
25566 are permitted provided the copyright notice and this notice are preserved.