a6a27d8d8a281941edea269a5e799dfa0ce7e673
[gnulib.git] / ChangeLog
1 2007-01-21  Bruno Haible  <bruno@clisp.org>
2
3         * lib/striconv.h (mem_cd_iconv): Change specification.
4         * lib/striconv.c (mem_cd_iconv): Don't free the user-supplied original
5         result buffer.
6         (str_cd_iconv): Update.
7         * tests/test-striconv.c (main): Update.
8
9 2007-01-21  Bruno Haible  <bruno@clisp.org>
10
11         * gnulib-tool: Fix test whether sed is GNU sed supporting --posix.
12
13 2007-01-20  Jim Meyering  <jim@meyering.net>
14
15         * lib/userspec.c (parse_with_separator): If a user or group string
16         starts with "+", skip the corresponding name-to-ID look-up, since
17         such a look-up must fail: user and group names may not include "+".
18
19 2007-01-19  Paul Eggert  <eggert@cs.ucla.edu>
20
21         * lib/poll.c: Include sys/time.h and time.h unconditionally,
22         since we now assume the sys_time module.
23         * m4/poll.m4 (gl_PREREQ_POLL): Don't require AC_HEADER_TIME or
24         check for sys/time.h; no longer needed.
25         * modules/poll (Depends-on): Depend on sys_time.
26
27 2007-01-18  Bruno Haible  <bruno@clisp.org>
28
29         * m4/mktime.m4 (AC_FUNC_MKTIME): Remove test for <sys/time.h>.
30         * m4/strftime.m4 (gl_FUNC_STRFTIME): Likewise.
31
32         * m4/tempname.m4 (gl_PREREQ_TEMPNAME): Remove tests for sys/time.h and
33         gettimeofday.
34
35         * tests/test-gettimeofday.c: Include <time.h>.
36         (dummy): Remove variable.
37
38         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Renamed from
39         gl_HEADER_SYS_TIME_H.
40         (gl_HEADER_SYS_TIME_H): New macro.
41
42         * lib/sys_time_.h: Test GETTIMEOFDAY_REPLACEMENT instead of
43         HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
44         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY,
45         gl_FUNC_GETTIMEOFDAY_CLOBBER): Set GETTIMEOFDAY_REPLACEMENT instead of
46         HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
47         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H): Initialize
48         GETTIMEOFDAY_REPLACEMENT instead of HAVE_GETTIMEOFDAY_POSIX_SIGNATURE
49         and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
50         * modules/sys_time (sys/time.h): Substitute GETTIMEOFDAY_REPLACEMENT
51         instead of HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and
52         GETTIMEOFDAY_CLOBBERS_LOCALTIME.
53
54         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Undo the
55         last change; it caused a compilation error when cross-compiling to
56         Cygwin.
57
58 2007-01-18  Jim Meyering  <jim@meyering.net>
59
60         Use "$(MKDIR_P) sys", not race-prone "test -d sys || mkdir sys".
61         * modules/sys_stat (Makefile.am): Use "$(MKDIR_P) sys", rather
62         than the race-prone "test -d sys || mkdir sys".
63         (configure.ac): Use AC_PROG_MKDIR_P.
64         * modules/sys_select: Likewise.
65         * modules/sys_socket: Likewise.
66         * modules/sys_time: Likewise.
67
68 2007-01-18  Eric Blake  <ebb9@byu.net>
69
70         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Also
71         replace gettimeofday.
72         * lib/gettimeofday.c (rpl_gettimeofday): Declare with replacement
73         name, to avoid infinite recursion.
74
75 2007-01-17  Paul Eggert  <eggert@cs.ucla.edu>
76
77         * MODULES.html.sh (Support for systems lacking POSIX:2001): New
78         module sys_time.
79         * lib/gethrxtime.c: Include <sys/time.h>, since we can no longer
80         assume timespec.h defines struct timeval.
81         * lib/settime.c: Likewise.
82         * lib/utimens.c: Likewise.
83         * lib/gettime.c (gettime): Remove test against HAVE_GETTIMEOFDAY,
84         since we now assume the gettimeofday module.
85         * lib/tempname.c (__gen_tempname): Likewise.
86         * lib/gettimeofday.h: Remove.
87         * lib/gettimeofday.c: Include <sys/time.h> instead of "gettimeofday.h".
88         Don't include <sys/types.h> and <stdlib.h>; shouldn't be needed.
89         Include <time.h>, for 'time()'.
90         (localtime_buffer_addr): Also use this workaround if
91         TZSET_CLOBBERS_LOCALTIME.  Set to a dummy static variable by default,
92         to simplify the uses.  All uses changed.
93         (localtime, gmtime, tzset, gettimeofday): Reformat slightly so
94         that #undef is inside {}, and 'const' follows type name consistently.
95         (tzset): Define replacement only if TZSET_CLOBBERS_LOCALTIME.
96         (gettimeofday): Do not use the maximum possible value for
97         tv->tv_usec, since that might break usages other than ls.c.
98         Instead, we'll leave ls.c alone.  This undoes today's patch
99         by Bruno.  Add a compile-time warning for 1s-clock resolution;
100         we've never observed the problem but might as well keep the
101         canary.
102         * lib/nanosleep.c: Include timespec.h first, for interface check.
103         * lib/nanosleep.c: Include <sys/time.h> unconditionally, since we
104         now assume the sys_time module.
105         * lib/tempname.c: Likewise.
106         * lib/timespec.h: Likewise.
107         * lib/nanosleep.c: Don't worry about TIME_WITH_SYS_TIME; no longer
108         needed.
109         * lib/strftime.c: Likewise.
110         * lib/timespec.h: Likewise.
111         * lib/posixtm.c: Include posixtm.h first, for interface check.
112         Don't worry about TM_IN_SYS_TIME; that's wayyy obsolete.
113         * lib/posixtm.h: Include stdbool.h and time.h, for proper interface.
114         * lib/strftime.c: Don't include <sys/types.h>; shouldn't be needed.
115         * lib/sys_time_.h: New file.
116         * lib/timespec.h (struct timespec): Use long int, not long.
117         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY):
118         (gl_FUNC_GETTIMEOFDAY_CLOBBER, gl_PREREQ_GETTIMEOFDAY):
119         Remove obsolescent call to AC_HEADER_TIME.
120         * m4/mktime.m4 (AC_FUNC_MKTIME): Likewise.
121         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
122         * m4/strftime.m4 (gl_FUNC_STRFTIME): Likewise.
123         * m4/timespec.m4 (gl_TIMESPEC, gl_CHECK_TYPE_STRUCT_TIMESPEC):
124         Likewise.
125         * m4/tzset.m4 (gl_FUNC_TZSET_CLOBBER): Likewise.
126         * m4/utimbuf.m4 (gl_CHECK_TYPE_STRUCT_UTIMBUF): Likewise.
127         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): Move sys/time.h tests
128         into the sys_time module.  Check for gettimeofday just once.
129         Prefix our variables with gl_, not with ac_ or jm_.  Tighten test
130         for gettimeofday signature to just check the signature.  Merely
131         compile it, since linking doesn't test signature.  Improve test for
132         whether gettimeofday.o is actually needed.
133         (gl_FUNC_GETTIMEOFDAY_CLOBBER): Renamed from
134         AC_FUNC_GETTIMEOFDAY_CLOBBER.  All uses changed.  Use
135         AC_RUN_IFELSE rather than AC_TRY_RUN.  If clobbering, set
136         and define GETTIMEOFDAY_CLOBBERS_LOCALTIME.
137         (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Don't define
138         GETTIMEOFDAY_CLOBBERS_LOCALTIME; that's gl_FUNC_GETTIMEOFDAY_CLOBBER's
139         job.  Don't define tzset; that's gl_FUNC_TZSET_CLOBBER's job.
140         * m4/mktime.m4 (AC_FUNC_MKTIME): Just include <time.h> rather
141         than worrying about sys/time.h.
142         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
143         Don't bother worrying about TIME_WITH_SYS_TIME.
144         * m4/stat-time.m4 (gl_STAT_TIME): Likewise.
145         * m4/posixtm.m4 (gl_POSIXTM): Remove obsolescent call to AC_STRUCT_TM.
146         * m4/sys_time_h.m4: New file.
147         * m4/tzset.m4 (gl_FUNC_TZSET_CLOBBER): Require gl_HEADER_SYS_TIME_H.
148         Don't include sys/time.h.  Return from main rather than exiting.
149         Define TZSET_CLOBBERS_LOCALTIME, for consistency with other names;
150         all uses changed.
151         * modules/gethrxtime (Depends-on): Add sys_time.
152         * modules/gettime (Depends-on): Likewise.
153         * modules/gettimeofday (Depends-on): Likewise.
154         * modules/nanosleep (Depends-on): Likewise.
155         * modules/settime (Depends-on): Likewise.
156         * modules/tempname (Depends-on): Likewise.
157         * modules/utimens (Depends-on): Likewise.
158         * modules/gettimeofday (Files): Remove lib/gettimeofday.h.
159         (Include:) Change back to <sys/time.h>.
160         (Maintainer:) Add self.
161         * modules/sys_time: New file.
162         * modules/tempname (Depends-on): Add gettimeofday.
163         * tests/test-gettimeofday.c: Include <sys/time.h>
164         rather than gettimeofday.h.
165
166 2007-01-17  Bruno Haible  <bruno@clisp.org>
167
168         * gnulib-tool (func_get_license): Revert last patch. Instead, let
169         the license default to GPL.
170         (func_create_testdir): Don't complain if a module is LGPL and its
171         tests module depends on GPLed modules.
172
173 2007-01-17  Bruno Haible  <bruno@clisp.org>
174
175         * lib/gettimeofday.c (gettimeofday): Add code for the case
176         HAVE_GETTIMEOFDAY && !GETTIMEOFDAY_CLOBBERS_LOCALTIME. Use the
177         maximum possible value for tv->tv_usec, rather than the minimum one.
178
179 2005-10-08  Martin Lambers  <marlam@marlam.de>
180 2005-10-08  Paul Eggert  <eggert@cs.ucla.edu>
181 2007-01-16  Bruno Haible  <bruno@clisp.org>
182
183         * modules/gettimeofday (Files): Add lib/gettimeofday.h.
184         (configure.ac): Remove AC_FUNC_GETTIMEOFDAY_CLOBBER. Add
185         gl_FUNC_GETTIMEOFDAY.
186         (Include): Add gettimeofday.h.
187         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): New macro.
188         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Don't invoke gl_PREREQ_GETTIMEOFDAY.
189         (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Define
190         GETTIMEOFDAY_CLOBBERS_LOCALTIME. Invoke gl_PREREQ_GETTIMEOFDAY here.
191         (gl_PREREQ_GETTIMEOFDAY): Check for <sys/timeb.h> and _ftime.
192         * lib/gettimeofday.h: New file.
193         * lib/gettimeofday.c: Include <sys/timeb.h>.
194         (localtime_buffer_addr, rpl_localtime, rpl_gmtime, rpl_tzset): Define
195         only if GETTIMEOFDAY_CLOBBERS_LOCALTIME.
196         (rpl_gettimeofday) [!HAVE_GETTIMEOFDAY]: Use _ftime() when available;
197         fall back on time().
198
199         * tests/test-gettimeofday.c: New file.
200         * modules/gettimeofday-tests: New file.
201
202 2007-01-16  Eric Blake  <ebb9@byu.net>
203
204         * modules/fnmatch (Depends-on): Depend on wchar.
205         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Assume <wchar.h>.
206         * m4/fnmatch.m4: Likewise.
207         * modules/mbchar (Makefile.am): Assume <wchar.h>.
208         * m4/mbchar.m4: Likewise.
209         * modules/mbswidth (Depends-on): Depend on wchar.
210         * lib/mbswidth.c: Assume <wchar.h>.
211         * m4/mbswidth.m4: Likewise.
212         * modules/quotearg (Depends-on): Depend on wchar.
213         * lib/quotearg.c: Assume <wchar.h>.
214         * m4/quotearg.m4: Likewise.
215         * modules/regex (Depends-on): Depend on wchar.
216         * lib/regex_internal.h: Assume <wchar.h>.
217         * m4/regex.m4: Likewise.
218         * modules/stdint (Depends-on): Depend on wchar.
219         * lib/stdint_.h [!defined WCHAR_MIN]: Assume <wchar.h>.
220         * m4/stdint.m4: Likewise.
221         * tests/test-stdint.c [HAVE_WINT_T]: Likewise.
222         * modules/strftime (Depends-on): Depend on wchar.
223         * lib/strftime.c (DO_MULTIBYTE): Assume <wchar.h>.
224         * modules/strtol (Depends-on): Depend on wchar.
225         * lib/strtol.c: Assume <wchar.h>.
226         * modules/wcwidth (Depends-on): Depend on wchar.
227         * lib/wcwidth.h: Assume <wchar.h>.
228         * m4/wcwidth.m4: Likewise.
229
230 2007-01-16  Bruno Haible  <bruno@clisp.org>
231
232         * modules/csharpexec-script: New, created from...
233         * modules/csharpexec: ... this.
234
235 2007-01-16  Paolo Bonzini  <bonzini@gnu.org>
236
237         * modules/javaexec-script: New, created from...
238         * modules/javaexec: ... this.
239
240 2007-01-16  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
241
242         * modules/poll (Dependencies): Add sys_select.
243
244 2007-01-15  Jim Meyering  <jim@meyering.net>
245
246         * m4/readutmp.m4 (gl_READUTMP): Work around AIX 4.3 struct-
247         redefinition bug when using both <utmp.h> and <utmpx.h> headers.
248         * lib/readutmp.h: Likewise.  Reported by Daniel Richard G. in
249         <http://article.gmane.org/gmane.comp.gnu.core-utils.bugs/9415>.
250
251 2007-01-15  Bruno Haible  <bruno@clisp.org>
252
253         * modules/striconveh: New file.
254         * lib/striconveh.h: New file.
255         * lib/striconveh.c: New file.
256         * MODULES.html.sh (Internationalization functions): Add striconveh.
257
258         * modules/striconveh-tests: New file.
259         * tests/test-striconveh.c: New file.
260
261 2007-01-15  Bruno Haible  <bruno@clisp.org>
262
263         * lib/striconv.c (str_cd_iconv): Use the first algorithm if iconv is
264         not from GNU libiconv or GNU libc.
265
266 2007-01-15  Bruno Haible  <bruno@clisp.org>
267
268         * doc/gnulib-intro.texi (Copyright): Explain the different license
269         terms for module descriptions, autoconf macros, tests, documentation.
270
271 2007-01-14  Bruno Haible  <bruno@clisp.org>
272
273         * modules/striconv-tests: New file.
274         * tests/test-striconv.c: New file.
275
276 2007-01-14  Bruno Haible  <bruno@clisp.org>
277
278         * modules/iconv-tests: New file.
279         * tests/test-iconv.c: New file.
280
281 2007-01-14  Bruno Haible  <bruno@clisp.org>
282
283         * gnulib-tool (func_get_license): For test modules, use the license of
284         the main module.
285
286 2007-01-14  Bruno Haible  <bruno@clisp.org>
287
288         * modules/iconv (Include): Clarify that <iconv.h> can only be included
289         if iconv is found to exist.
290
291 2007-01-14  Bruno Haible  <bruno@clisp.org>
292
293         * modules/c-ctype-tests: New file.
294         * tests/test-c-ctype.c: New file.
295
296 2007-01-14  Bruno Haible  <bruno@clisp.org>
297
298         * modules/binary-io-tests: New file.
299         * tests/test-binary-io.sh: New file.
300         * tests/test-binary-io.c: New file.
301
302 2007-01-14  Bruno Haible  <bruno@clisp.org>
303
304         * modules/array-oset-tests: New file.
305         * tests/test-array_oset.c: New file.
306
307 2007-01-14  Bruno Haible  <bruno@clisp.org>
308
309         * modules/array-list-tests: New file.
310         * tests/test-array_list.c: New file.
311
312 2007-01-14  Bruno Haible  <bruno@clisp.org>
313
314         * gnulib-tool (func_create_testdir): Don't unnecessarily run configure
315         and make.
316         Reported by Simon Josefsson in
317         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00139.html>
318
319 2007-01-14  Bruno Haible  <bruno@clisp.org>
320
321         * modules/allocsa-tests: New file.
322         * tests/test-allocsa.c: New file.
323
324 2007-01-14  Bruno Haible  <bruno@clisp.org>
325
326         * modules/fchdir (Depends-on): Add absolute-header.
327         * modules/unistd (Depends-on): Likewise.
328
329 2006-12-30  Bruno Haible  <bruno@clisp.org>
330
331         * modules/fchdir: New file.
332         * modules/unistd (Files): Add lib/unistd_.h.
333         (Makefile.am): Generate unistd.h from unistd_.h.
334         * lib/fchdir.c: New file.
335         * lib/dirent_.h: New file.
336         * lib/unistd_.h: New file.
337         * lib/fcntl_.h (open) [FCHDIR_REPLACEMENT]: New replacement.
338         * m4/fchdir.m4: New file.
339         * m4/unistd_h.m4 (gl_PREREQ_UNISTD): New macro.
340         (gl_HEADER_UNISTD): Invoke it.
341         * lib/dup-safer.c (dup_safer) [FCHDIR_REPLACEMENT]: Use the dup
342         function.
343         * lib/backupfile.c (opendir, closedir): Undefine.
344         * lib/chown.c (open, close): Undefine.
345         * lib/clean-temp.c (open, close): Undefine.
346         * lib/copy-file.c (open, close): Undefine.
347         * lib/execute.c (open, close): Undefine.
348         * lib/fsusage.c (open, close): Undefine.
349         * lib/gc-gnulib.c (open, close): Undefine.
350         * lib/getcwd.c (opendir, closedir): Undefine.
351         * lib/glob.c (opendir, closedir): Undefine.
352         * lib/javacomp.c (open, close): Undefine.
353         * lib/mountlist.c (open, close, opendir, closedir): Undefine.
354         * lib/openat-proc.c (open, close): Undefine.
355         * lib/pagealign_alloc.c (open, close): Undefine.
356         * lib/pipe.c (open, close): Undefine.
357         * lib/progreloc.c (open, close): Undefine.
358         * lib/savedir.c (opendir, closedir): Undefine.
359         * lib/utime.c (open, close): Undefine.
360         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add fchdir.
361
362 2007-01-10  Bruno Haible  <bruno@clisp.org>
363
364         * lib/striconv.c (mem_cd_iconv): Align the temporary buffer.
365
366 2007-01-12  Eric Blake  <ebb9@byu.net>
367
368         Provide a robust <wchar.h>.  Further simplifications are now
369         possible in other modules, but not included here.
370         * modules/wchar: New module.
371         * m4/wchar.m4: New file.
372         * lib/wchar_.h: Likewise.
373         * modules/mbchar (Depends-on): Depend on wchar, as the first use
374         of the new module.
375         * MODULES.html.sh (Extended multibyte and wide character utilities):
376         New section.
377
378 2007-01-12  Paul Eggert  <eggert@cs.ucla.edu>
379
380         * lib/xreadlink.c (SYMLINK_MAX) [!defined SYMLINK_MAX]: Define
381         to a reasonable default for memory allocation.
382         (xreadlink): Don't allocate a huge buffer, to work around a buggy
383         file system that reports garbage st_size values for symlinks.
384         Problem reported by Liyang Hu.
385
386 2007-01-11  Simon Josefsson  <simon@josefsson.org>
387
388         * gnulib-tool (func_all_modules): Exclude all .* files (e.g.,
389         Emacs .#* auto-save files).
390
391 2007-01-11  Bruno Haible  <bruno@clisp.org>
392
393         * gnulib-tool (func_all_modules): Exclude all files inside the CVS
394         directory.
395
396 2007-01-10  Paul Eggert  <eggert@cs.ucla.edu>
397
398         Use @...@ consistently in lib/wctype_.h.
399         * lib/wctype_.h [HAVE_WINT_T]: Go back to using @...@, but rely
400         on it being set to 1 or 0.
401         * m4/wctype.m4 (gl_WCTYPE_H): Set HAVE_WINT_T to 1 or 0, and
402         go back to AC_SUBSTing it.
403         * modules/wctype (Makefile.am): Undo previous change.
404
405 2007-01-10  Eric Blake  <ebb9@byu.net>
406
407         * lib/wctype_.h [HAVE_WINT_T]: Rely on AC_DEFINE.
408         * m4/wctype.m4 (gl_WCTYPE_H): No need to AC_SUBST(HAVE_WINT_T).
409         * modules/wctype (Makefile.am): Likewise.
410         Reported by Chris McGuire.
411
412 2007-01-10  Jim Meyering  <jim@meyering.net>
413
414         fts.c: a small readability/maintainability improvement
415         * lib/fts.c (fts_read): Make this code slightly more readable and
416         maintainable by hoisting the "sp->fts_cur = p" assignments to
417         immediately follow the statements that set P.  Derived from
418         the patch by Miloslav Trmac in http://bugzilla.redhat.com/222089.
419
420 2007-01-10  Eric Blake  <ebb9@byu.net>
421
422         * lib/wctype_.h [HAVE_WINT_T]: Include <stddef.h> before
423         <wchar.h>, to work around BSDI bug in BSD/OS 4.0.1.
424         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
425         * m4/wint_t.m4 (gt_TYPE_WINT_T): Likewise.
426         Reported by Chris McGuire.
427
428 2007-01-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
429
430         * gnulib-tool (func_all_modules): Use POSIX conforming escaping
431         in sed script.
432
433 2007-01-09  Bruno Haible  <bruno@clisp.org>
434
435         * MODULES.html.sh: Accept options --cvs-urls, --git-urls.
436         (repo_url_prefix, repo_url_suffix, repo_url_suffix_repl): New
437         variables.
438         (func_module): Use them.
439
440 2007-01-09  Bruno Haible  <bruno@clisp.org>
441
442         * modules/unistr/base: New file.
443         * lib/unistr.h: New file.
444
445         * modules/unistr/u8-to-u16: New file.
446         * lib/unistr/u8-to-u16.c: New file.
447
448         * modules/unistr/u8-to-u32: New file.
449         * lib/unistr/u8-to-u32.c: New file.
450
451         * modules/unistr/u16-to-u8: New file.
452         * lib/unistr/u16-to-u8.c: New file.
453
454         * modules/unistr/u16-to-u32: New file.
455         * lib/unistr/u16-to-u32.c: New file.
456
457         * modules/unistr/u32-to-u8: New file.
458         * lib/unistr/u32-to-u8.c: New file.
459
460         * modules/unistr/u32-to-u16: New file.
461         * lib/unistr/u32-to-u16.c: New file.
462
463         * modules/unistr/u8-check: New file.
464         * modules/unistr/u16-check: New file.
465         * modules/unistr/u32-check: New file.
466         * lib/unistr/u8-check.c: New file.
467         * lib/unistr/u16-check.c: New file.
468         * lib/unistr/u32-check.c: New file.
469
470         * modules/unistr/u8-chr: New file.
471         * modules/unistr/u16-chr: New file.
472         * modules/unistr/u32-chr: New file.
473         * lib/unistr/u8-chr.c: New file.
474         * lib/unistr/u16-chr.c: New file.
475         * lib/unistr/u32-chr.c: New file.
476
477         * modules/unistr/u8-cmp: New file.
478         * modules/unistr/u16-cmp: New file.
479         * modules/unistr/u32-cmp: New file.
480         * lib/unistr/u8-cmp.c: New file.
481         * lib/unistr/u16-cmp.c: New file.
482         * lib/unistr/u32-cmp.c: New file.
483
484         * modules/unistr/u8-cpy: New file.
485         * modules/unistr/u16-cpy: New file.
486         * modules/unistr/u32-cpy: New file.
487         * lib/unistr/u8-cpy.c: New file.
488         * lib/unistr/u16-cpy.c: New file.
489         * lib/unistr/u32-cpy.c: New file.
490         * lib/unistr/u-cpy.h: New file.
491
492         * modules/unistr/u8-cpy-alloc: New file.
493         * modules/unistr/u16-cpy-alloc: New file.
494         * modules/unistr/u32-cpy-alloc: New file.
495         * lib/unistr/u8-cpy-alloc.c: New file.
496         * lib/unistr/u16-cpy-alloc.c: New file.
497         * lib/unistr/u32-cpy-alloc.c: New file.
498         * lib/unistr/u-cpy-alloc.h: New file.
499
500         * modules/unistr/u8-endswith: New file.
501         * modules/unistr/u16-endswith: New file.
502         * modules/unistr/u32-endswith: New file.
503         * lib/unistr/u8-endswith.c: New file.
504         * lib/unistr/u16-endswith.c: New file.
505         * lib/unistr/u32-endswith.c: New file.
506         * lib/unistr/u-endswith.h: New file.
507
508         * modules/unistr/u8-mblen: New file.
509         * modules/unistr/u16-mblen: New file.
510         * modules/unistr/u32-mblen: New file.
511         * lib/unistr/u8-mblen.c: New file.
512         * lib/unistr/u16-mblen.c: New file.
513         * lib/unistr/u32-mblen.c: New file.
514
515         * modules/unistr/u8-mbtouc: New file.
516         * modules/unistr/u16-mbtouc: New file.
517         * modules/unistr/u32-mbtouc: New file.
518         * lib/unistr/u8-mbtouc.c: New file.
519         * lib/unistr/u16-mbtouc.c: New file.
520         * lib/unistr/u32-mbtouc.c: New file.
521
522         * modules/unistr/u8-mbtouc-safe: New file.
523         * modules/unistr/u16-mbtouc-safe: New file.
524         * modules/unistr/u32-mbtouc-safe: New file.
525         * lib/unistr/u8-mbtouc-safe.c: New file.
526         * lib/unistr/u16-mbtouc-safe.c: New file.
527         * lib/unistr/u32-mbtouc-safe.c: New file.
528
529         * modules/unistr/u8-move: New file.
530         * modules/unistr/u16-move: New file.
531         * modules/unistr/u32-move: New file.
532         * lib/unistr/u8-move.c: New file.
533         * lib/unistr/u16-move.c: New file.
534         * lib/unistr/u32-move.c: New file.
535         * lib/unistr/u-move.h: New file.
536
537         * modules/unistr/u8-next: New file.
538         * modules/unistr/u16-next: New file.
539         * modules/unistr/u32-next: New file.
540         * lib/unistr/u8-next.c: New file.
541         * lib/unistr/u16-next.c: New file.
542         * lib/unistr/u32-next.c: New file.
543
544         * modules/unistr/u8-prev: New file.
545         * modules/unistr/u16-prev: New file.
546         * modules/unistr/u32-prev: New file.
547         * lib/unistr/u8-prev.c: New file.
548         * lib/unistr/u16-prev.c: New file.
549         * lib/unistr/u32-prev.c: New file.
550
551         * modules/unistr/u8-set: New file.
552         * modules/unistr/u16-set: New file.
553         * modules/unistr/u32-set: New file.
554         * lib/unistr/u8-set.c: New file.
555         * lib/unistr/u16-set.c: New file.
556         * lib/unistr/u32-set.c: New file.
557         * lib/unistr/u-set.h: New file.
558
559         * modules/unistr/u8-startswith: New file.
560         * modules/unistr/u16-startswith: New file.
561         * modules/unistr/u32-startswith: New file.
562         * lib/unistr/u8-startswith.c: New file.
563         * lib/unistr/u16-startswith.c: New file.
564         * lib/unistr/u32-startswith.c: New file.
565         * lib/unistr/u-startswith.h: New file.
566
567         * modules/unistr/u8-stpcpy: New file.
568         * modules/unistr/u16-stpcpy: New file.
569         * modules/unistr/u32-stpcpy: New file.
570         * lib/unistr/u8-stpcpy.c: New file.
571         * lib/unistr/u16-stpcpy.c: New file.
572         * lib/unistr/u32-stpcpy.c: New file.
573         * lib/unistr/u-stpcpy.h: New file.
574
575         * modules/unistr/u8-stpncpy: New file.
576         * modules/unistr/u16-stpncpy: New file.
577         * modules/unistr/u32-stpncpy: New file.
578         * lib/unistr/u8-stpncpy.c: New file.
579         * lib/unistr/u16-stpncpy.c: New file.
580         * lib/unistr/u32-stpncpy.c: New file.
581         * lib/unistr/u-stpncpy.h: New file.
582
583         * modules/unistr/u8-strcat: New file.
584         * modules/unistr/u16-strcat: New file.
585         * modules/unistr/u32-strcat: New file.
586         * lib/unistr/u8-strcat.c: New file.
587         * lib/unistr/u16-strcat.c: New file.
588         * lib/unistr/u32-strcat.c: New file.
589         * lib/unistr/u-strcat.h: New file.
590
591         * modules/unistr/u8-strchr: New file.
592         * modules/unistr/u16-strchr: New file.
593         * modules/unistr/u32-strchr: New file.
594         * lib/unistr/u8-strchr.c: New file.
595         * lib/unistr/u16-strchr.c: New file.
596         * lib/unistr/u32-strchr.c: New file.
597
598         * modules/unistr/u8-strcmp: New file.
599         * modules/unistr/u16-strcmp: New file.
600         * modules/unistr/u32-strcmp: New file.
601         * lib/unistr/u8-strcmp.c: New file.
602         * lib/unistr/u16-strcmp.c: New file.
603         * lib/unistr/u32-strcmp.c: New file.
604
605         * modules/unistr/u8-strcpy: New file.
606         * modules/unistr/u16-strcpy: New file.
607         * modules/unistr/u32-strcpy: New file.
608         * lib/unistr/u8-strcpy.c: New file.
609         * lib/unistr/u16-strcpy.c: New file.
610         * lib/unistr/u32-strcpy.c: New file.
611         * lib/unistr/u-strcpy.h: New file.
612
613         * modules/unistr/u8-strcspn: New file.
614         * modules/unistr/u16-strcspn: New file.
615         * modules/unistr/u32-strcspn: New file.
616         * lib/unistr/u8-strcspn.c: New file.
617         * lib/unistr/u16-strcspn.c: New file.
618         * lib/unistr/u32-strcspn.c: New file.
619         * lib/unistr/u-strcspn.h: New file.
620
621         * modules/unistr/u8-strdup: New file.
622         * modules/unistr/u16-strdup: New file.
623         * modules/unistr/u32-strdup: New file.
624         * lib/unistr/u8-strdup.c: New file.
625         * lib/unistr/u16-strdup.c: New file.
626         * lib/unistr/u32-strdup.c: New file.
627         * lib/unistr/u-strdup.h: New file.
628
629         * modules/unistr/u8-strlen: New file.
630         * modules/unistr/u16-strlen: New file.
631         * modules/unistr/u32-strlen: New file.
632         * lib/unistr/u8-strlen.c: New file.
633         * lib/unistr/u16-strlen.c: New file.
634         * lib/unistr/u32-strlen.c: New file.
635         * lib/unistr/u-strlen.h: New file.
636
637         * modules/unistr/u8-strmblen: New file.
638         * modules/unistr/u16-strmblen: New file.
639         * modules/unistr/u32-strmblen: New file.
640         * lib/unistr/u8-strmblen.c: New file.
641         * lib/unistr/u16-strmblen.c: New file.
642         * lib/unistr/u32-strmblen.c: New file.
643
644         * modules/unistr/u8-strmbtouc: New file.
645         * modules/unistr/u16-strmbtouc: New file.
646         * modules/unistr/u32-strmbtouc: New file.
647         * lib/unistr/u8-strmbtouc.c: New file.
648         * lib/unistr/u16-strmbtouc.c: New file.
649         * lib/unistr/u32-strmbtouc.c: New file.
650
651         * modules/unistr/u8-strncat: New file.
652         * modules/unistr/u16-strncat: New file.
653         * modules/unistr/u32-strncat: New file.
654         * lib/unistr/u8-strncat.c: New file.
655         * lib/unistr/u16-strncat.c: New file.
656         * lib/unistr/u32-strncat.c: New file.
657         * lib/unistr/u-strncat.h: New file.
658
659         * modules/unistr/u8-strncmp: New file.
660         * modules/unistr/u16-strncmp: New file.
661         * modules/unistr/u32-strncmp: New file.
662         * lib/unistr/u8-strncmp.c: New file.
663         * lib/unistr/u16-strncmp.c: New file.
664         * lib/unistr/u32-strncmp.c: New file.
665
666         * modules/unistr/u8-strncpy: New file.
667         * modules/unistr/u16-strncpy: New file.
668         * modules/unistr/u32-strncpy: New file.
669         * lib/unistr/u8-strncpy.c: New file.
670         * lib/unistr/u16-strncpy.c: New file.
671         * lib/unistr/u32-strncpy.c: New file.
672         * lib/unistr/u-strncpy.h: New file.
673
674         * modules/unistr/u8-strnlen: New file.
675         * modules/unistr/u16-strnlen: New file.
676         * modules/unistr/u32-strnlen: New file.
677         * lib/unistr/u8-strnlen.c: New file.
678         * lib/unistr/u16-strnlen.c: New file.
679         * lib/unistr/u32-strnlen.c: New file.
680         * lib/unistr/u-strnlen.h: New file.
681
682         * modules/unistr/u8-strpbrk: New file.
683         * modules/unistr/u16-strpbrk: New file.
684         * modules/unistr/u32-strpbrk: New file.
685         * lib/unistr/u8-strpbrk.c: New file.
686         * lib/unistr/u16-strpbrk.c: New file.
687         * lib/unistr/u32-strpbrk.c: New file.
688         * lib/unistr/u-strpbrk.h: New file.
689
690         * modules/unistr/u8-strrchr: New file.
691         * modules/unistr/u16-strrchr: New file.
692         * modules/unistr/u32-strrchr: New file.
693         * lib/unistr/u8-strrchr.c: New file.
694         * lib/unistr/u16-strrchr.c: New file.
695         * lib/unistr/u32-strrchr.c: New file.
696
697         * modules/unistr/u8-strspn: New file.
698         * modules/unistr/u16-strspn: New file.
699         * modules/unistr/u32-strspn: New file.
700         * lib/unistr/u8-strspn.c: New file.
701         * lib/unistr/u16-strspn.c: New file.
702         * lib/unistr/u32-strspn.c: New file.
703         * lib/unistr/u-strspn.h: New file.
704
705         * modules/unistr/u8-strstr: New file.
706         * modules/unistr/u16-strstr: New file.
707         * modules/unistr/u32-strstr: New file.
708         * lib/unistr/u8-strstr.c: New file.
709         * lib/unistr/u16-strstr.c: New file.
710         * lib/unistr/u32-strstr.c: New file.
711         * lib/unistr/u-strstr.h: New file.
712
713         * modules/unistr/u8-strtok: New file.
714         * modules/unistr/u16-strtok: New file.
715         * modules/unistr/u32-strtok: New file.
716         * lib/unistr/u8-strtok.c: New file.
717         * lib/unistr/u16-strtok.c: New file.
718         * lib/unistr/u32-strtok.c: New file.
719         * lib/unistr/u-strtok.h: New file.
720
721         * modules/unistr/u8-uctomb: New file.
722         * modules/unistr/u16-uctomb: New file.
723         * modules/unistr/u32-uctomb: New file.
724         * lib/unistr/u8-uctomb.c: New file.
725         * lib/unistr/u16-uctomb.c: New file.
726         * lib/unistr/u32-uctomb.c: New file.
727
728         * MODULES.html.sh (Unicode string functions): Add the new modules.
729
730 2007-01-08  Bruno Haible  <bruno@clisp.org>
731
732         * gnulib-tool (func_all_modules): Use find, not ls, to traverse the
733         modules directory. Filter out CVS, ChangeLog, COPYING, README also from
734         subdirectories.
735
736 2007-01-08  Karl Berry  <karl@gnu.org>
737
738         * doc/error.texi: mention that main() fns must set program_name
739         when progname is used.
740
741 2007-01-08  Paul Eggert  <eggert@cs.ucla.edu>
742
743         * m4/wctype.m4 (gl_WCTYPE_H): Compute ABSOLUTE_WCTYPE_H even if
744         WCTYPE_H is empty, for the benefit of builds from non-distclean
745         directories.  Problem reported by Eric Blake in
746         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00157.html>.
747
748 2007-01-08  Bruno Haible  <bruno@clisp.org>
749
750         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Remove
751         PROVIDE_CANONICALIZE_FILENAME_MODE macro definition.
752         * lib/canonicalize.h: Test GNULIB_CANONICALIZE instead of
753         PROVIDE_CANONICALIZE_FILENAME_MODE.
754         * modules/canonicalize (configure.ac): Use gl_MODULE_INDICATOR.
755
756 2007-01-08  Bruno Haible  <bruno@clisp.org>
757
758         * m4/fts.m4 (gl_FUNC_FTS_LGPL): Remove _LGPL_PACKAGE macro definition.
759         * lib/fts_.h (_LGPL_PACKAGE): Remove macro.
760         Use !GNULIB_FTS instead of _LGPL_PACKAGE.
761         * lib/fts.c: Likewise.
762         * modules/fts (configure.ac): Use gl_MODULE_INDICATOR.
763
764 2006-12-25  Bruno Haible  <bruno@clisp.org>
765
766         * modules/utf8-ucs4-safe: New file.
767         * lib/utf8-ucs4-safe.h: New file.
768         * lib/unistr/utf8-ucs4-safe.c: New file.
769
770         * modules/utf16-ucs4-safe: New file.
771         * lib/utf16-ucs4-safe.h: New file.
772         * lib/unistr/utf16-ucs4-safe.c: New file.
773
774         * MODULES.html.sh (Unicode string functions): Add the new modules.
775
776 2007-01-08  Bruno Haible  <bruno@clisp.org>
777
778         * modules/utf8-ucs4 (Files, lib_SOURCES): Add unistr/utf8-ucs4.c.
779         (Depends-on): Add unitypes.
780         * lib/utf8-ucs4.h: Add double-inclusion guard. Include unitypes.h.
781         (u8_mbtouc_aux): Move out to separate file.
782         (u8_mbtouc): Use ucs4_t, uint8_t types.
783         * lib/unistr/utf8-ucs4.c: New file.
784
785         * modules/utf16-ucs4 (Files, lib_SOURCES): Add unistr/utf16-ucs4.c.
786         (Depends-on): Add unitypes.
787         * lib/utf16-ucs4.h: Add double-inclusion guard. Include unitypes.h.
788         (u16_mbtouc_aux): Move out to separate file.
789         (u16_mbtouc): Use ucs4_t, uint16_t types.
790         * lib/unistr/utf16-ucs4.c: New file.
791
792         * modules/ucs4-utf8 (Files, lib_SOURCES): Add unistr/ucs4-utf8.c.
793         (Depends-on): Add unitypes.
794         * lib/ucs4-utf8.h: Add double-inclusion guard. Include unitypes.h.
795         (u8_uctomb_aux): Move out to separate file.
796         (u8_uctomb): Use ucs4_t, uint8_t types.
797         * lib/unistr/ucs4-utf8.c: New file.
798
799         * modules/ucs4-utf16 (Files, lib_SOURCES): Add unistr/ucs4-utf16.c.
800         (Depends-on): Add unitypes.
801         * lib/ucs4-utf16.h: Add double-inclusion guard. Include unitypes.h.
802         (u16_uctomb_aux): Move out to separate file.
803         (u16_uctomb): Use ucs4_t, uint16_t types.
804         * lib/unistr/ucs4-utf16.c: New file.
805
806 2006-12-25  Bruno Haible  <bruno@clisp.org>
807
808         * modules/unitypes: New file.
809         * lib/unitypes.h: New file.
810         * MODULES.html.sh (func_all_modules): New section "Unicode string
811         functions". Move ucs4-utf8, ucs4-utf16, utf8-ucs4, utf16-ucs4 to
812         this section. Add unitypes.
813
814 2007-01-08  Bruno Haible  <bruno@clisp.org>
815
816         Avoid variable names that conflict with those from libtool.
817         * m4/lib-link.m4 (AC_LIB_RPATH, AC_LIB_LINKFLAGS_BODY,
818         AC_LIB_LINKFLAGS_FROM_LIBS): Rename libext to acl_libext,
819         shlibext to acl_shlibext, libname_spec to acl_libname_spec,
820         library_names_spec to acl_library_names_spec, hardcode_* to
821         acl_hardcode_*.
822         Reported by Ralf Wildenhues.
823
824 2007-01-08  Bruno Haible  <bruno@clisp.org>
825
826         * m4/gc-arcfour.m4 (gl_GC_ARCFOUR): Remove GC_USE_ARCFOUR macro
827         definition.
828         * m4/gc-arctwo.m4 (gl_GC_ARCTWO): Remove GC_USE_ARCTWO macro
829         definition.
830         * m4/gc-des.m4 (gl_GC_DES): Remove GC_USE_DES macro definition.
831         * m4/gc-hmac-md5.m4 (gl_GC_HMAC_MD5): Remove GC_USE_HMAC_MD5 macro
832         definition.
833         * m4/gc-hmac-sha1.m4 (gl_GC_HMAC_SHA1): Remove GC_USE_HMAC_SHA1 macro
834         definition.
835         * m4/gc-md2.m4 (gl_GC_MD2): Remove GC_USE_MD2 macro definition.
836         * m4/gc-md4.m4 (gl_GC_MD4): Remove GC_USE_MD4 macro definition.
837         * m4/gc-md5.m4 (gl_GC_MD5): Remove GC_USE_MD5 macro definition.
838         * m4/gc-random.m4 (gl_GC_RANDOM): Remove GC_USE_RANDOM macro
839         definition.
840         * m4/gc-rijndael.m4 (gl_GC_RIJNDAEL): Remove GC_USE_RIJNDAEL macro
841         definition.
842         * m4/gc-sha1.m4 (gl_GC_SHA1): Remove GC_USE_SHA1 macro definition.
843         * lib/gc-gnulib.c: Use GNULIB_GC_<algorithm> instead of
844         GC_USE_<algorithm>.
845         * lib/gc-libgcrypt.c: Likewise.
846         * modules/gc-arcfour (configure.ac): Use gl_MODULE_INDICATOR.
847         * modules/gc-arctwo (configure.ac): Likewise.
848         * modules/gc-des (configure.ac): Likewise.
849         * modules/gc-hmac-md5 (configure.ac): Likewise.
850         * modules/gc-hmac-sha1 (configure.ac): Likewise.
851         * modules/gc-md2 (configure.ac): Likewise.
852         * modules/gc-md4 (configure.ac): Likewise.
853         * modules/gc-md5 (configure.ac): Likewise.
854         * modules/gc-random (configure.ac): Likewise.
855         * modules/gc-rijndael (configure.ac): Likewise.
856         * modules/gc-sha1 (configure.ac): Likewise.
857
858 2007-01-08  Bruno Haible  <bruno@clisp.org>
859
860         * m4/close-stream.m4 (gl_CLOSE_STREAM): Remove GNULIB_CLOSE_STREAM
861         macro definition.
862         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Remove GNULIB_FCNTL_SAFER macro
863         definition.
864         * m4/stdio-safer.m4 (gl_FOPEN_SAFER): Remove GNULIB_FOPEN_SAFER macro
865         definition.
866         * modules/close-stream (configure.ac): Invoke gl_MODULE_INDICATOR.
867         * modules/fcntl-safer (configure.ac): Likewise.
868         * modules/fopen-safer (configure.ac): Likewise.
869         * modules/fwriteerror (configure.ac): Likewise. Remove explicit
870         GNULIB_FWRITEERROR macro definition.
871
872 2007-01-08  Bruno Haible  <bruno@clisp.org>
873
874         * m4/gnulib-common.m4: New file.
875         * gnulib-tool (func_get_autoconf_snippet): Undo last change.
876         (func_get_filelist): Add m4/gnulib-common.m4.
877
878 2007-01-08  Bruno Haible  <bruno@clisp.org>
879
880         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Simplify the sorting
881         command.
882
883 2007-01-08  Jim Meyering  <jim@meyering.net>
884
885         Use a more robust test for a "can't happen" condition.
886         * lib/fts.c (fts_read): Revert the change of 2006-11-22, since it
887         narrowed the st_size value.  Presuming the "can't happen" condition
888         is true, that narrowing could conceivably convert an invalid st_size
889         value into a valid one.  Instead, use a change based on Matthew
890         Woehlke's original patch.
891
892         Slight readability improvement: use an assert-like macro
893         in place of literal "abort ()" uses.
894         * lib/fts.c (fts_assert): Define.
895         (fts_set_stat_required, cwd_advance_fd, fts_read, fd_ring_check):
896         Use this macro instead of a bare 'abort'.
897
898 2007-01-05  Paul Eggert  <eggert@cs.ucla.edu>
899
900         Don't worry about using IRIX 5.3's wctype.h broken definitions;
901         simply work around them.
902         * lib/wctype_.h: Remove test for HAVE_WCTYPE_CTMP_BUG.
903         (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit, iswgraph, iswlower):
904         (iswprint, iswpunct, iswspace, iswupper, iswxdigit): Undef before declaring.
905         Don't bother to define as macros, since the standard doesn't require it.
906         * m4/wctype.m4 (WCTYPE_H, ABSOLUTE_WCTYPE_H): Simplify, since we no
907         longer worry about IRIX 5.3.
908         (HAVE_WCTYPE_CTMP_BUG): Remove.
909
910 2007-01-04  Paul Eggert  <eggert@cs.ucla.edu>
911
912         * lib/wctype_.h (_ctmp_) [HAVE_WCTYPE_CTMP_BUG]: Now of type wchar_t,
913         not wint_t.  Also, include <ctype.h>, to fix another IRIX bug.
914         * m4/wctype.m4 (gl_WCTYPE_H): Likewise.
915         Problems reported by Georg Schwarz for IRIX 5.3.
916
917         * gnulib-tool (autoconf_minversion): Take the maximum version number
918         found, not the minimum.  Problem reported by James Youngman.
919
920 2007-01-03  Karl Berry  <karl@gnu.org>
921
922         * doc/error.texi: new file, explaining interaction with progname.
923         * doc/gnulib.texi: include it.  Update copyright.
924
925 2007-01-03  Simon Josefsson  <simon@josefsson.org>
926
927         * gnulib-tool (func_create_testdir): Run AC_CANONICAL_BUILD and
928         AC_CANONICAL_HOST, to improve autobuild outputs.
929
930 2007-01-03  Paolo Bonzini  <bonzini@gnu.org>
931             Yoann Vandoorselaere <yoann.v@prelude-ids.com>
932
933         * lib/poll.c (poll): Use recv on Mac OS X to distinguish connected
934         sockets, server sockets, and other file descriptors.  Count errors
935         to compute the return value.  Reorder the code a bit to be easier
936         to follow.  Don't set event bits that were not requested (except
937         POLLERR and POLLHUP).
938
939 2007-01-01  Bruno Haible  <bruno@clisp.org>
940
941         * modules/lchmod (Include): Require lchmod.h, not lchown.h.
942
943 2007-01-03  Jim Meyering  <jim@meyering.net>
944
945         * modules/fts-lgpl (Depends-on): Add i-ring.  Reported by Bruno Haible.
946
947 2007-01-02  Bruno Haible  <bruno@clisp.org>
948
949         * modules/settime (Include): Require timespec.h.
950         * modules/nanosleep (Include): Likewise.
951
952 2007-01-01  Bruno Haible  <bruno@clisp.org>
953
954         * gnulib-tool (func_emit_copyright_notice): Bump year.
955         (func_get_autoconf_snippet): Emit a GNULIB_<modulename> macro.
956
957 2007-01-01  Bruno Haible  <bruno@clisp.org>
958
959         Improve support for OpenBSD.
960         * build-aux/config.rpath (libname_spec): Export.
961         (library_names_spec): New variable. Export.
962         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Extract libname_spec and
963         library_names_spec from the config.rpath output. Locate shared library
964         through the name pattern in library_names_spec.
965
966 2007-01-01  Eric Blake  <ebb9@byu.net>
967
968         * lib/version-etc.c (COPYRIGHT_YEAR): Bump for new year.
969
970 2006-12-30  Paul Eggert  <eggert@cs.ucla.edu>
971
972         * gnulib-tool (SORT): Remove, since we no longer assume GNU sort.
973         Rewrite so as not to assume GNU sort or "tail -1".  Also, don't
974         assume the C locale, and avoid an "eval" that could cause trouble.
975         Problem with SORT reported by Bob Proulx.
976
977         * lib/getpagesize.h (getpagesize) [defined __amigaos4__]:
978         Define.  Trivial patch from Henning Nielsen Lund, originally
979         sent to bug-grep@gnu.org today.
980
981 2006-12-29  Paul Eggert  <eggert@cs.ucla.edu>
982
983         * lib/acl.h: Include sys/types.h and sys/stat.h, for mode_t and
984         struct stat.  Problem reported by Henning Nielsen Lund.
985         * lib/acl.c: Include acl.h first, to check interface.  Don't
986         bother to include sys/types.h and sys/stat.h again.
987
988 2006-12-28  Paul Eggert  <eggert@cs.ucla.edu>
989
990         Import the following change from libc; problem reported by
991         Sven Verdoolaege.
992
993         2005-10-13  Ulrich Drepper  <drepper@redhat.com>
994
995         [BZ #1373]
996         * lib/argp.h: Remove __NTH for __argp_usage inline function.
997
998 2006-12-28  Jim Meyering  <jim@meyering.net>
999
1000         * build-aux/announce-gen: Do not assume that the package
1001         builds any of tar.gz, tar.bz2, and .xdelta files.
1002         Suggestion from Simon Josefsson.
1003
1004 2006-12-28  Simon Josefsson  <simon@josefsson.org>
1005
1006         * modules/announce-gen: New file.
1007
1008 2006-12-27  Paul Eggert  <eggert@cs.ucla.edu>
1009
1010         * lib/mbchar.h: Just include <wctype.h>; the wctype module
1011         handles its gotchas now.
1012         * lib/mbswidth.c: Likewise.
1013         * lib/wcwidth.h: Likewise.
1014         * m4/mbchar.m4 (gl_MBCHAR): Don't bother checking for wctype.h
1015         and iswcntrl; the wctype module does this stuff now.
1016         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
1017         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
1018         * modules/mbchar (Depends-on): Add wctype.
1019         * modules/mbswidth (Depends-on): Likewise.
1020         * modules/wcwidth (Depends-on): Likewise.
1021
1022 2006-12-27  Eric Blake  <ebb9@byu.net>
1023
1024         * lib/fnmatch.c: Reinstate inclusion of <wchar.h>, since this
1025         module uses more than what <wctype.h> is required to provide.
1026
1027 2006-12-26  Eric Blake  <ebb9@byu.net>
1028
1029         * gnulib-tool (sed_extract_prog): Avoid space-tab.
1030
1031 2006-12-26  Eric Blake  <ebb9@byu.net>
1032
1033         * modules/absolute-header: New module.
1034         * modules/fcntl (Depends-on): Depend on it.
1035         * modules/inttypes (Depends-on): Likewise.
1036         * modules/stdint (Depends-on): Likewise.
1037         * modules/sys_stat (Depends-on): Likewise.
1038         * modules/wctype (Depends-on): Likewise.
1039         * MODULES.html.sh (Support for building libraries and
1040         executables): Document it.
1041
1042 2006-12-25  Paul Eggert  <eggert@cs.ucla.edu>
1043
1044         * gnulib-tool (SED): Remove, undoing previous change.
1045         The problem was that it broke coreutils on Solaris, because
1046         "sed --posix" leaked into a makefile.
1047         (sed): New alias, if 'alias' and GNU sed.
1048
1049 2006-12-24  Jim Meyering  <jim@meyering.net>
1050
1051         Work around an fchownat bug in glibc-2.4:
1052         http://lists.ubuntu.com/archives/ubuntu-users/2006-September/093218.html
1053         This bug would cause "chown -RP ... DIR" to follow symlinks in DIR,
1054         in spite of the -P option.
1055         * m4/openat.m4 (gl_FUNC_FCHOWNAT, gl_FUNC_FCHOWNAT_DEREF_BUG):
1056         New macros.
1057         (gl_PREREQ_OPENAT): Require gl_FUNC_FCHOWNAT.
1058         * modules/openat (Files): Add lib/fchownat.c.
1059         * lib/openat.c (fchownat): Don't define here.  Move to...
1060         * lib/fchownat.c: ...this new file.
1061
1062 2006-12-23  Paul Eggert  <eggert@cs.ucla.edu>
1063
1064         Fix bug reported by Bruno Haible in
1065         <http://lists.gnu.org/archive/html/bug-gnulib/2006-12/msg00228.html>
1066         where quotearg.c didn't compile on Mac OS X 10.2 because it
1067         lacks <wchar.h> and wint_t.
1068         * lib/wctype_.h (__wctype_wint_t): New type.
1069         Include <stdio.h>, <time.h>, <wchar.h> only if HAVE_WINT_T.
1070         (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit, iswgraph):
1071         (iswlower, iswprint, iswpunct, iswspace, iswupper, ixwxdigit):
1072         Arg is now of type __wctype_wint_t, not wint_t.
1073         * m4/wctype.m4 (gl_WCTYPE_H): Require gt_TYPE_WINT_T, and
1074         substitute HAVE_WINT_T.
1075         * modules/wctype (Files): Add m4/wint_t.m4.
1076         (wctype.h): Substitute HAVE_WINT_T.
1077
1078 2006-12-23  Bruno Haible  <bruno@clisp.org>
1079
1080         * lib/safe-read.h [C++]: Wrap declarations in extern "C".
1081
1082 2006-12-23  Bruno Haible  <bruno@clisp.org>
1083
1084         * lib/canonicalize-lgpl.c (__realpath): Test HAVE_READLINK instead of
1085         S_ISLNK.
1086         Needed because gnulib's sys/stat.h replacement defines S_ISLNK on
1087         mingw.
1088
1089 2006-12-22  Bruno Haible  <bruno@clisp.org>
1090
1091         * lib/copy-file.c: Include acl.h.
1092         (copy_file_preserving) [USE_ACL]: Use copy_acl instead of chmod.
1093         Close the file descriptors only after being done with copy_acl.
1094         * modules/copy-file (Depends-on): Add acl.
1095
1096 2006-12-22  Bruno Haible  <bruno@clisp.org>
1097
1098         * gnulib-tool (SED): New variable.
1099         Use $SED instead of sed everywhere.
1100
1101 2006-12-22  Bruno Haible  <bruno@clisp.org>
1102
1103         * modules/no-c++: New file.
1104         * m4/no-c++.m4: New file.
1105         * MODULES.html.sh (Support for building libraries and executables):
1106         Add no-c++.
1107
1108 2006-12-22  Paul Eggert  <eggert@cs.ucla.edu>
1109
1110         * m4/mktime.m4 (AC_FUNC_MKTIME): Sync from Autoconf.
1111         Include <limits.h>, and use its INT_MAX to rewrite the
1112         j loop so that it does not overflow 'int'.  Problem reported by
1113         Ralf Wildenhues in
1114         <http://lists.gnu.org/archive/html/bug-gnulib/2006-12/msg00084.html>.
1115         Play it safe by shifting left by 1 rather than multiplying by 2,
1116         as GCC is less likely to optimize this away when the value
1117         is signed (when it assumes overflow leads to undefined behavior).
1118         Also, don't assume time_t uses two's complement.
1119
1120 2006-12-21  Paul Eggert  <eggert@cs.ucla.edu>
1121
1122         * MODULES.html.sh: New module wctype.
1123         * lib/wctype_.h, m4/wctype.m4, modules/wctype: New files.
1124         * lib/fnmatch.c: Don't bother to include <wchar.h> before
1125         <wctype.h>, since the new wctype module should fix this.
1126         * lib/quotearg.c: Include <wctype.h> unconditionally, since
1127         the wctype module should arrange for it.
1128         * lib/regex_internal.h: Likewise.
1129         * m4/quotearg.m4 (gl_QUOTEARG): Don't check for wctype.h or iswprint,
1130         since the wctype module should handle this now.
1131         * m4/regex.m4 (gl_PREREQ_REGEX): Don't check for wctype.h.
1132         * modules/fnmatch (Depends-on): Add wctype.
1133         * modules/quotearg (Depends-on): Likewise.
1134         * modules/regex (Depends-on): Likewise.
1135
1136 2006-12-19  Bruno Haible  <bruno@clisp.org>
1137
1138         * lib/strdup.h [C++]: Wrap definitions in extern "C".
1139         Suggested by Lorenzo Bettini <bettini@dsi.unifi.it>.
1140
1141 2006-12-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1142
1143         * modules/savewd (Depends-on): Fix dependency on fcntl.
1144
1145 2006-12-18  Paul Eggert  <eggert@cs.ucla.edu>
1146
1147         * m4/stdint.m4 (gl_STDINT_H): Set STDINT_H to empty if stdint.h
1148         conforms to C99, rather than relying on the user's environment
1149         setting of STDINT_H.
1150
1151 2006-12-18  Paul Eggert  <eggert@cs.ucla.edu>
1152         and Eric Blake  <ebb9@byu.net>
1153
1154         * lib/dirname.h (DOUBLE_SLASH_IS_DISTINCT_ROOT): Default to 0, not 1.
1155         This is more consistent with the other defines here.
1156         * m4/double-slash-root.m4 (gl_DOUBLE_SLASH_ROOT):
1157         Port to z/OS.  Problem reported by Paul Gilmartin.
1158         Change local vars to use gl_ prefix rather than ac_.
1159         Don't define DOUBLE_SLASH_IS_DISTINCT_ROOT to 0, for consistency
1160         with other defines.
1161         * modules/double-slash-root: New module.
1162         * modules/dirname (Files): Remove m4/double-slash-root.m4.
1163         (Depends-on): Add double-slash-root.
1164         * MODULES.html.sh (File system functions): Mention new module.
1165
1166 2006-12-14  Paul Eggert  <eggert@cs.ucla.edu>
1167
1168         * lib/yesno.c [!ENABLE_NLS]: Don't include getline.h.
1169         (yesno) [!ENABLE_NLS]: Don't invoke getline or rpmatch.
1170         This is for the benefit of gzip, which doesn't do i18n.
1171
1172 2006-12-12  Jim Meyering  <jim@meyering.net>
1173
1174         * m4/acl.m4 (gl_ACL_GET_FILE): Fix logic error.
1175         Reported by Andreas Schwab <schwab@suse.de>.
1176
1177 2006-12-12  Bruno Haible  <bruno@clisp.org>
1178
1179         Merge these changes.
1180         2006-09-05  Bruno Haible  <bruno@clisp.org>
1181         * lib/iconvme.c (iconv_string): No need to save and restore errno when
1182         iconv_alloc succeeded.
1183         (iconv_alloc): Don't assume that malloc() or realloc(), when failing,
1184         sets errno to ENOMEM. (malloc on GNU/kFreeBSD doesn't.) No need to
1185         test for " && dest " at the end - dest is always != NULL there. Call
1186         iconv with 4xNULL arguments initially, to reset the state. Call iconv
1187         with 2xNULL arguments, also to flush the state storage. Handle the
1188         IRIX iconv behaviour. Realloc the final result, to throw away unused
1189         memory.
1190
1191 2006-12-11  Paul Eggert  <eggert@cs.ucla.edu>
1192
1193         * m4/openat.m4 (gl_FUNC_OPENAT): Don't compile mkdirat
1194         and fchmodat unconditionally, since glibc 2.4 has them.
1195         Problem reported by Arkadiusz Miskiewicz.
1196
1197 2006-12-10  Bruno Haible  <bruno@clisp.org>
1198
1199         * gnulib-tool (func_import): Show the include files only for those
1200         modules that are copied and specified.
1201         Reported by Karl Berry.
1202
1203 2006-12-08  Jim Meyering  <jim@meyering.net>
1204
1205         * build-aux/announce-gen ($VERSION): Don't use of $Revision...$.
1206         Instead, use Emacs' time-stamp write hook.  Note that the time is UTC.
1207
1208         * build-aux/announce-gen: Add two new options, both optional:
1209         --bootstrap-tools=TOOL_LIST
1210               a comma-separated list of tools, e.g.,
1211               autoconf,automake,bison,gnulib
1212         --gnulib-snapshot-date=DATE
1213               if gnulib is in the bootstrap tool list,
1214               then report this as the snapshot date.
1215               If not specified, use the current date/time.
1216               If you specify a date here, be sure it's UTC.
1217
1218 2006-12-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1219
1220         * tests/test-argp-2.sh: Fix test to match actual output.
1221         (func_compare): Fix sed script to be portable.
1222
1223 2006-12-05  Paul Eggert  <eggert@cs.ucla.edu>
1224
1225         * lib/utimens.c (futimens) [HAVE_BUGGY_NFS_TIME_STAMPS]: Add a
1226         workaround for this case.  It is not autoconfigured now; offhand
1227         it's hard to see how to autoconfigure it.
1228
1229 2006-12-03  Paul Eggert  <eggert@cs.ucla.edu>
1230
1231         * lib/mkdir-p.c (make_dir_parents): Fix race condition when making
1232         a directory that is about to be chowned.  Such a directory's
1233         initial file permissions should permit the owner only and this
1234         should not be changed until after the chown, since the group and
1235         other bits would be incorrect if they granted permission before
1236         the chown.
1237
1238         Fix porting problem for iswctype reported by Georg Schwarz in:
1239         http://lists.gnu.org/archive/html/bug-coreutils/2006-12/msg00017.html
1240         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Require HAVE_ISWCTYPE, too.
1241         * lib/regex_internal.h (RE_ENABLE_I18N): Likewise.
1242         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for iswctype, too.
1243         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
1244
1245 2006-12-03  Jim Meyering  <jim@meyering.net>
1246
1247         * lib/fts.c (fts_load): Don't set sp->fts_dev here, since
1248         p->fts_statp may not yet be defined.
1249         (fts_read): Instead, set it in the caller, once p->fts_statp is
1250         sure to be defined, and corresponds to a top-level directory.
1251         This bug made du -x fail.  Here's the coreutils test case:
1252         http://git.sv.gnu.org/gitweb/?p=coreutils.git;a=commit;h=ba45154d8e9f
1253         Reported by Mike Frysinger.
1254
1255 2006-12-01  Jim Meyering  <jim@meyering.net>
1256
1257         * modules/savewd (Depends-on): Add fcntl_h to avoid self-test
1258         build failure due to missing definition of HAVE_WORKING_O_NOFOLLOW.
1259         Reported by Simon Josefsson.
1260
1261 2006-11-30  Jim Meyering  <jim@meyering.net>
1262
1263         * m4/warning.m4: Use the all-permissive copyright notice
1264         recommended by RMS (rather than LGPL).
1265         * m4/vararrays.m4: Likewise.
1266         * m4/flexmember.m4: Likewise.
1267
1268 2006-11-29  Bruno Haible  <bruno@clisp.org>
1269
1270         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
1271         noinst_LIBRARIES. Augment noinst_LIBRARIES and noinst_LTLIBRARIES
1272         using +=.
1273         Reported by Simon Josefsson <simon@josefsson.org>.
1274
1275 2006-11-28  James Youngman <jay@gnu.org>
1276
1277         * README: Advise users that they might find the bug-gnulib@gnu.org
1278         and autotools-announce@gnu.org mailing lists useful.
1279
1280 2006-11-28  Bruno Haible  <bruno@clisp.org>
1281
1282         * m4/ptrdiff_max.m4: Remove file.
1283
1284 2006-11-21  Bruno Haible  <bruno@clisp.org>
1285
1286         * m4/eoverflow.m4 (gl_EOVERFLOW): Use AC_COMPUTE_INT instead of
1287         _AC_COMPUTE_INT.
1288         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
1289         * m4/ptrdiff_max.m4 (gl_PTRDIFF_MAX): Use AC_COMPUTE_INT instead of
1290         _AC_COMPUTE_INT.
1291         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
1292         * m4/size_max.m4 (gl_SIZE_MAX): Use AC_COMPUTE_INT instead of
1293         _AC_COMPUTE_INT.
1294         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
1295
1296 2006-11-28  Jim Meyering  <jim@meyering.net>
1297
1298         * lib/regcomp.c (parse_branch): Rename local, exp->expr, to avoid
1299         warning from "gcc -Wshadow" about shadowing the builtin.
1300
1301 2006-11-27  Bruno Haible  <bruno@clisp.org>
1302
1303         * m4/stdint.m4 (gl_STDINT_BITSIZEOF): Use AC_COMPUTE_INT instead of
1304         _AC_COMPUTE_INT.
1305         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
1306
1307 2006-11-27  Bruno Haible  <bruno@clisp.org>
1308             Paul Eggert  <eggert@cs.ucla.edu>
1309
1310         * lib/regex.h (__restrict_arr): Redo logic of #if, for clarity.
1311
1312 2006-11-26  Bruno Haible  <bruno@clisp.org>
1313
1314         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
1315         noinst_LTLIBRARIES.
1316
1317 2006-11-27  Paul Eggert  <eggert@cs.ucla.edu>
1318             Bruno Haible  <bruno@clisp.org>
1319
1320         * lib/gettext.h (_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS): Define to 0
1321         if compiling with "gcc -ansi".
1322
1323 2006-11-26  Paul Eggert  <eggert@cs.ucla.edu>
1324
1325         Fix some incompatibilities with gcc -ansi -pedantic.
1326         * lib/regex.h (__restrict_arr): Don't use the [restrict] syntax
1327         if compiling pedantically with GCC, unless it's C99 or later.
1328         Don't trust sys/cdefs.h's definition of __restrict_arr, either, as
1329         it mishandles gcc -ansi -pedantic as well.
1330         * lib/regex_internal.h (re_token_t): Don't use enum bitfields
1331         if gcc -pedantic.
1332         * lib/regexec.c (check_node_accept_bytes): Don't use auto
1333         initializers for struct if -pedantic, unless it's C99 or later.
1334
1335 2006-11-25  Nix  <nix@esperi.org.uk>  (tiny change)
1336
1337         * m4/fcntl_h.m4 (gl_FCNTL_H): Test the atime, not the mtime.
1338         Don't close an fd more than once. Identical atimes indicate
1339         success, not failure.
1340
1341 2006-11-22  Robinson Mittmann <bob@hoplon.com>  (tiny change)
1342
1343         * lib/sincosl.c (kernel_sinl): Fix typo in threshold.
1344
1345 2006-11-23  Jim Meyering  <jim@meyering.net>
1346
1347         * build-aux/announce-gen: New file.  From coreutils.
1348
1349 2006-11-22  Jim Meyering  <jim@meyering.net>
1350
1351         Work around a compile-time error from the HP-UX 11.00 /bin/cc.
1352         * lib/fts.c (enum Fts_stat): Give this previously-anon enum a name.
1353         (fts_read): Use a temporary to narrow the overused st_size member
1354         before using it in a switch statement.  Reported by Matthew Woehlke.
1355
1356         * m4/clock_time.m4 (gl_CLOCK_TIME): Quote AC_SUBST argument.
1357         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Likewise.
1358
1359 2006-11-20  Bruno Haible  <bruno@clisp.org>
1360
1361         * gettext.m4 (AM_GNU_GETTEXT): Revert 2005-07-28 patch: Use
1362         changequote instead of pairs of brackets.
1363         Reported by Andreas Schwab <schwab@suse.de>.
1364
1365 2006-11-21  Jim Meyering  <jim@meyering.net>
1366
1367         * lib/fts.c (fts_safe_changedir): Move a declaration "up",
1368         so as to remain compatible with older compilers.
1369         Patch from Michael Deutschmann.
1370
1371 2006-11-20  Paul Eggert  <eggert@cs.ucla.edu>
1372
1373         * MODULES.html.sh (File system functions): Add openat.
1374
1375         * lib/openat.h (rpl_fstatat): New macro, if
1376         [HAVE_OPENAT && ! LSTAT_FOLLOWS_SLASHED_SYMLINK.
1377         (fstatat): Define to rpl_fstatat under the same conditions,
1378         unless COMPILING_FSTATAT.
1379         * m4/openat.m4 (gl_FUNC_OPENAT): Compile fstatat.c too, if fstatat
1380         seems to have the bug.
1381         * lib/fstatat.c: New file.
1382         * modules/openat (Files): Add it.
1383
1384 2006-11-20  Bruno Haible  <bruno@clisp.org>
1385
1386         * Makefile: New file.
1387
1388 2006-11-20  Jim Meyering  <jim@meyering.net>
1389
1390         The beginnings of syntax-related checks for gnulib.
1391         * lib/Makefile: New file.
1392         * lib/t-idcache: New script.  Ensure that the two halves of
1393         idcache.c stay in sync.
1394
1395         * lib/idcache.c: Adjust comments in user- and group- portions to
1396         be more accurate, and to be consistent with one another.
1397
1398 2006-11-20  Jim Meyering  <jim@meyering.net>
1399
1400         * lib/idcache.c: Restore most of the 2006-11-06 patch, so as to
1401         continue using the flexible array member (thus, this module performs
1402         half as many malloc calls), with the addition that...
1403         (getgroup, getuser): Consistently record a non-match via an empty
1404         "name" string, and map an empty string match to a NULL return value.
1405         * modules/idcache (Depends-on): Re-add flexmember.
1406
1407         * lib/idcache.c (getuser): Remove all uses of the register keyword.
1408         (getuidbyname, getgroup, getgidbyname): Likewise.
1409
1410         Use cleaner syntax: NULL rather than 0.
1411         * lib/idcache.c (getuidbyname, getgidbyname): Return NULL, not 0.
1412
1413 2006-11-20  Paul Eggert  <eggert@cs.ucla.edu>
1414
1415         * lib/idcache.c: Undo most recent patch, dated 2006-11-06.
1416         It mishandled the case where the group was missing.
1417         Problem reported by Greg Schafer.
1418         * modules/idcache: Likewise.
1419
1420 2006-11-18  Jim Meyering  <jim@meyering.net>
1421
1422         * check-module (%exempt_header): Add exception for some
1423         conditionally-included headers.
1424
1425         * modules/i-ring (Depends-on): Add verify.
1426         (License): Change to LGPL.
1427
1428 2006-11-16  Paul Eggert  <eggert@cs.ucla.edu>
1429
1430         * modules/getaddinfo (Depends-on): Remove inttostr; add snprintf.
1431         * lib/getaddrinfo.c: Include snprintf.h rather than intprops.h
1432         and inttostr.h.  Use snprintf rather than uinttostr, so that
1433         LGPLed code doesn't depend on GPLed.
1434
1435 2006-11-17  Paul Eggert  <eggert@cs.ucla.edu>
1436
1437         * modules/inline (License): Change from GPL to LGPL.
1438
1439 2006-11-17  Jim Meyering  <jim@meyering.net>
1440
1441         * modules/d-type (License): Switch to LGPL.
1442
1443 2006-11-15  Bruno Haible  <bruno@clisp.org>
1444
1445         * m4/alloca.m4 (gl_FUNC_ALLOCA): Fix the AC_CACHE_CHECK message.
1446
1447 2006-11-15  Eric Blake  <ebb9@byu.net>
1448
1449         * m4/allocsa.m4 (gl_ALLOCSA): Don't invoke macro already picked up by
1450         the module dependency.
1451
1452 2006-11-15  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
1453             Bruno Haible  <bruno@clisp.org>
1454
1455         * gnulib-tool (func_create_testdir): Add license consistency check.
1456
1457 2006-11-15  Eric Blake  <ebb9@byu.net>
1458
1459         * m4/alloca.m4 (gl_FUNC_ALLOCA): Use AC_CACHE_CHECK to avoid a
1460         random "(cached)" in configure output.
1461
1462 2006-11-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1463
1464         * m4/inttypes.m4 (gl_INTTYPES_H): Use AC_CACHE_CHECK so that the
1465         test for conforming inttypes.h is both announced and cached.
1466
1467         * MODULES.html.sh (seen_modules, seen_files): New variables.
1468         (func_module): Rewrite to use a few less gnulib-tool and sed
1469         invocations.  Avoid a couple of quadratic algorithms for ...
1470         (missed_modules, missed_files): ... these, with ...
1471         (func_append, func_tmpdir): ... these new functions, from
1472         gnulib-tool.  Analogously, install traps for cleanup.
1473
1474         * tests/test-gc.c (main): Remove unused variables.
1475         * tests/test-read-file.c: Include stdlib.h, for 'free'.
1476
1477 2006-11-14  Paul Eggert  <eggert@cs.ucla.edu>
1478
1479         * modules/inttostr (License): Change to LGPL.
1480
1481 2006-11-14  Eric Blake  <ebb9@byu.net>
1482
1483         * modules/tempname (License): Change to LGPL.
1484
1485 2006-11-14  Eric Blake  <ebb9@byu.net>
1486
1487         * doc/functions.texi (Function Portability): *printf functions on
1488         Cygwin now understand all POSIX size specifiers.
1489
1490 2006-11-14  Bruno Haible  <bruno@clisp.org>
1491
1492         * modules/c-ctype (License): Change to LGPL.
1493
1494 2006-11-12  Bruno Haible  <bruno@clisp.org>
1495
1496         * m4/lib-link.m4 (AC_LIB_LINKFLAGS, AC_LIB_HAVE_LINKFLAGS,
1497         AC_LIB_LINKFLAGS_BODY): Also set a LIB${NAME}_PREFIX variable. Needed
1498         for GNOME libraries, for which the include files are installed in
1499         subdirectories of $prefix/include.
1500
1501 2006-11-12  Bruno Haible  <bruno@clisp.org>
1502
1503         * m4/lib-link.m4: Require at least autoconf-2.54.
1504         (AC_LIB_LINKFLAGS_BODY) [autoconf < 2.61]: Turn dots into the library
1505         name to underscores for the --with option.
1506
1507 2006-11-13  Bruno Haible  <bruno@clisp.org>
1508
1509         * gnulib-tool (func_create_testdir): Set gl_source_base correctly in
1510         the tests directory.
1511         Reported by Ralf Wildenhues.
1512
1513 2006-11-13  Bruno Haible  <bruno@clisp.org>
1514
1515         * gnulib-tool (func_emit_initmacro_start): Also override AC_LIBSOURCES.
1516         (func_emit_initmacro_end): Undo the override here.
1517         (func_emit_initmacro_done): Emit a definition for gl_LIBSOURCES.
1518         Works around the famous automake error in coreutils.
1519
1520 2006-11-13  Eric Blake  <ebb9@byu.net>
1521
1522         * lib/gl_anytree_oset.h (gl_tree_search_atleast): Return the
1523         element, not its node.
1524
1525 2006-11-12  Bruno Haible  <bruno@clisp.org>
1526
1527         * gnulib-tool (func_emit_lib_Makefile_am): Replace occurrences of
1528         '$(top_srcdir)/build-aux/', taking into account the real auxdir.
1529
1530 2006-11-12  Bruno Haible  <bruno@clisp.org>
1531
1532         * gnulib-tool: New option --local-symlink.
1533         (func_usage): Document it.
1534         (lsymbolic): New variable.
1535         (func_import, func_create_testdir): If --symlink was not specified,
1536         test whether --local-symlink was specified and the file comes from
1537         the local_gnulib_dir.
1538
1539 2006-11-12  Bruno Haible  <bruno@clisp.org>
1540
1541         * gnulib-tool (func_ln): New function.
1542         (func_ln_if_changed, func_create_testdir): Use it instead of "ln -s".
1543
1544 2006-11-12  Bruno Haible  <bruno@clisp.org>
1545
1546         Finish support for source files in subdirectories.
1547         * gnulib-tool (func_emit_lib_Makefile_am): If some of the source files
1548         are in subdirectories, set uses_subdirs and add 'subdir-objects' to
1549         AUTOMAKE_OPTIONS.
1550         (func_import, func_create_testdir): Invoke AM_PROG_CC_C_O in this case.
1551
1552 2006-11-12  Bruno Haible  <bruno@clisp.org>
1553
1554         * gnulib-tool (func_get_automake_snippet): Synthesize also an
1555         EXTRA_lib_SOURCES augmentation.
1556         (func_emit_lib_Makefile_am): Initialize EXTRA_lib..._SOURCES to empty.
1557
1558 2006-11-12  Jim Meyering  <jim@meyering.net>
1559
1560         Make fts (in FTS_CWDFD mode) more efficient by caching a few open
1561         file descriptors.  This also averts a failure on systems with
1562         native openat support when a traversed directory lacks "x" access.
1563         * lib/fts_.h: Include "i-ring.h"
1564         (struct FTS) [fts_fd_ring]: New member.
1565         * lib/fts.c (RESTORE_INITIAL_CWD): Also call fd_ring_clear.
1566         (FCHDIR): Add parentheses.
1567         (fd_ring_check, fd_ring_print) [!FTS_DEBUG]: Define away.
1568         (cwd_advance_fd): Add a 3rd parameter.  Adjust all callers.
1569         When descending, rather than simply closing the previous
1570         fts_cwd_fd value, push that file descriptor onto the ring.
1571         (same_fd, fd_ring_print, fd_ring_check) [FTS_DEBUG]: New functions.
1572         (fts_open): Initialize the new fd_ring member.
1573         (fts_close): Clear the ring.
1574         (fts_safe_changedir): When possible, use our new fd_ring to skip
1575         the diropen and fstat and dev/ino comparison that would normally
1576         accompany a virtual `chdir ("..")'.
1577
1578         * modules/fts (Depends-on): Add i-ring.
1579         * modules/i-ring: New module.
1580         * lib/i-ring.c, lib/i-ring.h, lib/i-ring-test.c: New files.
1581         * m4/i-ring.m4: New file.
1582
1583 2006-11-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1584
1585         * gnulib-tool (func_create_testdir): Fix replacement of
1586         `build-aux' in configure.ac.  Run autotools in gltests
1587         subdirectory.
1588         (func_create_testdir, func_create_megatestdir, test): There is
1589         no need for '--force' in most autotool invocations in a new
1590         tree.  Actually fail the whole test if any of the tools, or the
1591         configure or make stages fail.
1592
1593         Sync from Automake.
1594         * build-aux/gnupload: Revert last change.  Add pointer to upload
1595         instructions of the GNU Maintenance Instructions.
1596         Suggestion by Karl Berry.
1597
1598 2006-11-10  Jim Meyering  <jim@meyering.net>
1599
1600         * lib/fts.c [FTS_DEBUG]: Don't try to print a pointer via %s.
1601
1602 2006-11-09  Paul Eggert  <eggert@cs.ucla.edu>
1603
1604         * lib/gettext.h (dgettext, dcgettext, ngettext) [! ENABLE_NLS]:
1605         (dngettext, dcngettext, bindtextdomain) [! ENABLE_NLS]:
1606         (bind_textdomain_codeset) [! ENABLE_NLS]:
1607         Evaluate all the arguments.  That way, callers get compatible behavior
1608         if the arguments have side effects.  Also, it avoids some GCC
1609         diagnostics in some cases; Joel E. Denny reported problems when Bison
1610         was configured with --enable-gcc-warnigs.
1611
1612 2006-11-10  Jim Meyering  <jim@meyering.net>
1613
1614         * m4/inline.m4 (gl_INLINE): Check with the compiler, not cpp, so that
1615         relevant options in CFLAGS (like -O, -fno-inline) are taken into
1616         account.
1617
1618 2006-11-10  Jim Meyering  <jim@meyering.net>
1619
1620         * modules/inline: New file/module.
1621         * modules/xalloc (Files): Remove m4/inline.m4.
1622         (Depends-on): Add inline, instead.
1623         * modules/oset: Likewise.
1624         * modules/list: Likewise.
1625
1626 2006-11-09  Paul Eggert  <eggert@cs.ucla.edu>
1627
1628         * lib/stdint_.h (uintmax_t): Fix typo: int64_t -> uint64_t.
1629         Problem reported by Matthew Woehlke.
1630
1631 2006-11-09  Bruno Haible  <bruno@clisp.org>
1632
1633         * lib/tempname.c (gen_tempname): Remove variant that invokes
1634         __gen_tempname.
1635         * m4/tempname.m4 (gl_FUNC_GEN_TEMPNAME): Don't test for
1636         __gen_tempname.
1637
1638 2006-11-08  Bruno Haible  <bruno@clisp.org>
1639
1640         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Set ac_cv_type_long_long_int
1641         to 'yes' instead of 'cross-compiling'.
1642
1643 2006-11-08  Paul Eggert  <eggert@cs.ucla.edu>
1644
1645         * lib/quotearg.h (quotearg_free): New decl.
1646         * lib/quotearg.c (quotearg_free): New function.
1647         (slot0, nslots, slotvec0, slotvec):
1648         Now file-scope so that quotearg_free can get at them.
1649
1650 2006-11-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1651
1652         Sync from Automake.
1653         * build-aux/gnupload: Add missing 'gnu' to example URL.
1654         Report by Karl Berry.
1655
1656 2006-11-08  Bruno Haible  <bruno@clisp.org>
1657
1658         * m4/inline.m4 (gl_INLINE): Also test __NO_INLINE__.
1659         Suggested by Paul Eggert.
1660
1661 2006-11-08  Jim Meyering  <jim@meyering.net>
1662
1663         * lib/fts.c [!_LGPL_PACKAGE]: Don't include fcntl--.h twice.
1664         It's already included if !_LIBC.
1665         (fts_safe_changedir): Add a comment.
1666
1667 2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
1668
1669         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Detect bug in
1670         Tandem NonStop Kernel (OSS) cc -O circa 2004, reported by
1671         Matthew Woehlke.
1672
1673         * lib/xalloc.h (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): Move
1674         definitions up, to avoid colliding with change below.
1675         (static_inline) [HAVE_INLINE]: New macro.
1676         (xnmalloc, xnrealloc, x2nrealloc, xcharalloc):
1677         Provide extern decls when !HAVE_INLINE.  Do not define unless
1678         static_inline is defined, either by us or by xmalloc.c.  Use
1679         static_inline rather than static inline.
1680         (XCALLOC): Optimize sizeof(T) = 1 case.
1681         * lib/xmalloc.c (static_inline) [!HAVE_INLINE]: New macro.
1682
1683 2006-11-07  Bruno Haible  <bruno@clisp.org>
1684
1685         * lib/xalloc.h (XNMALLOC): Restore optimization of sizeof(T) = 1 case.
1686         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Require gl_INLINE instead of
1687         AC_C_INLINE.
1688         * modules/xalloc (Files): Add m4/inline.m4.
1689
1690 2006-11-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1691
1692         * README: Fix typo.
1693         * doc/gnulib.texi (Miscellaneous Notes): Likewise, rename...
1694         (Miscellanous Notes): ...from this.
1695
1696 2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
1697
1698         * m4/flexmember.m4 (AC_C_FLEXIBLE_ARRAY_MEMBER):
1699         Mention that offsetof should be used instead of sizeof.
1700         From Bruno Haible.
1701
1702 2006-11-07  Bruno Haible  <bruno@clisp.org>
1703
1704         * lib/w32spawn.h (prepare_spawn): Use XNMALLOC instead of xmalloc.
1705
1706 2006-11-06  Paul Eggert  <eggert@cs.ucla.edu>
1707
1708         Simplify xmalloc expressions. Add overflow check in xmalloc arguments.
1709         * lib/gl_anyavltree_list2.h (create_subtree_with_contents):
1710         (gl_tree_create, gl_tree_add_first, gl_tree_add_last):
1711         (gl_tree_add_before, gl_tree_add_after):
1712         Use XMALLOC instead of xmalloc, and XCALLOC instead of xzalloc.
1713         * lib/gl_anyhash_list2.h (hash_resize): Likewise.
1714         * lib/gl_anylinked_list2.h (gl_linked_create_empty, gl_linked_create):
1715         (gl_linked_add_first, gl_linked_add_last, gl_linked_add_before):
1716         (gl_linked_add_after, gl_linked_add_at): Likewise.
1717         * lib/gl_anyrbtree_list2.h (create_subtree_with_contents):
1718         (gl_tree_create, gl_tree_add_first, gl_tree_add_last):
1719         (gl_tree_add_before, gl_tree_add_after): Likewise.
1720         * lib/gl_anytree_list2.h (gl_tree_create_empty): Likewise.
1721         * lib/gl_anytree_oset.h (gl_tree_create_empty): Likewise.
1722         * lib/gl_anytreehash_list1.h (add_to_bucket): Likewise.
1723
1724 2006-11-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1725
1726         * lib/gl_oset.h: Use C comment style, not C++ comment style.
1727
1728 2006-11-06  Bruno Haible  <bruno@clisp.org>
1729
1730         * m4/inline.m4: New file.
1731         * m4/gl_list.m4 (gl_LIST): Require gl_INLINE.
1732         * modules/list (Files): Add m4/inline.m4.
1733         * modules/oset (Files): Likewise.
1734
1735 2006-11-06  Paul Eggert  <eggert@cs.ucla.edu>
1736
1737         * lib/idcache.c: Include <stddef.h>, for offsetof.
1738         (struct userid.name): Change from char * to a flexible array member.
1739         All uses changed.
1740         * modules/idcache (Depends-on): Add flexmember.
1741
1742         * MODULES.html.sh (Core language properties): New module flexmember.
1743         * modules/flexmember, m4/flexmember.m4: New files.
1744
1745         * lib/xalloc.h (xnmalloc, xnrealloc, x2nrealloc): Now static
1746         inline functions that are identical with the old xnmalloc_inline,
1747         xnrealloc_inline, x2nrealloc_inline of lib/xmalloc.c.  This is so
1748         that we can avoid some unnecessary integer multiplications and
1749         divisions in the common case where the element size is known at
1750         compile time.
1751         (XNMALLOC) [HAVE_INLINE]: Remove special case, which is no longer
1752         needed.
1753         (xnboundedmalloc): Remove.
1754         (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): Use lower-case letters for
1755         arguments, for consistency with rest of this header.
1756         (xcharalloc): Rewrite using XNMALLOC.
1757         * lib/xmalloc.c (xnmalloc_inline, xnmalloc, xnrealloc_inline):
1758         (xnrealloc, x2nrealloc_inline, x2nrealloc): Remove.  The *_inline
1759         versions have been moved to lib/xalloc.h and renamed to be the
1760         non-*_inline versions.
1761         (xmalloc, xrealloc): Implement without reference to the xnmalloc
1762         and xnrealloc functions, since those functions are now inline and
1763         now call us.
1764         (x2realloc): Invoke x2realloc, not x2realloc_inline, to accommodate
1765         renaming described above.
1766         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Remove AC_C_INLINE since
1767         xmalloc.c no longer uses inline directly.  gl_PREREQ_XALLOC now
1768         captures the dependency in AC_C_INLINE.
1769
1770         New module canonicalize-lgpl, proposed by Charles Wilson in
1771         <http://lists.gnu.org/archive/html/bug-gnulib/2006-11/msg00020.html>
1772         with a few small changes afterwards.
1773         * MODULES.html.sh (File system functions): New module
1774         canonicalize-lgpl.
1775         * lib/canonicalize.h: Add comments for canonicalize_filename_mode
1776         and canonicalize_file_name.
1777         * lib/canonicalize-lgpl.c, m4/canonicalize-lgpl.m4:
1778         * modules/canonicalize-lgpl: New files.
1779
1780 2006-11-05  Bruno Haible  <bruno@clisp.org>
1781
1782         * gnulib-tool (func_import, func_create_testdir): Create directories
1783         also for files in subdirectories of lib/.
1784
1785 2006-11-05  Bruno Haible  <bruno@clisp.org>
1786
1787         * lib/gl_array_list.c (gl_array_iterator_next): Make pointer decrement
1788         ANSI C compliant.
1789
1790 2006-11-03  Bruno Haible  <bruno@clisp.org>
1791
1792         Simplify xmalloc expressions. Add overflow check in xmalloc arguments.
1793         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Require AC_C_INLINE.
1794         * lib/xalloc.h (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): New macros.
1795         (xnboundedmalloc): New inline function.
1796         * lib/classpath.c (new_classpath): Use XNMALLOC instead of xmalloc.
1797         * lib/clean-temp.c (create_temp_dir): Use XNMALLOC, XMALLOC instead of
1798         xmalloc.
1799         * lib/concatpath.c (concatenated_pathname): Use XNMALLOC instead of
1800         xmalloc.
1801         * lib/fatal-signal.c (at_fatal_signal): Use XNMALLOC instead of xmalloc.
1802         * lib/findprog.c (find_in_path): Use XNMALLOC instead of xmalloc.
1803         * lib/gl_array_list.c (gl_array_create_empty): Use XMALLOC instead of
1804         xmalloc.
1805         (gl_array_create): Use XNMALLOC, XMALLOC instead of xmalloc.
1806         * lib/gl_array_oset.c (gl_array_create_empty): Use XNMALLOC instead of
1807         xmalloc.
1808         * lib/gl_avltree_oset.c (gl_tree_add_first, gl_tree_add_before,
1809         gl_tree_add_after): Use XMALLOC instead of xmalloc.
1810         * lib/gl_carray_list.c (gl_carray_create_empty): Use XMALLOC instead of
1811         xmalloc.
1812         (gl_carray_create): Use XNMALLOC, XMALLOC instead of xmalloc.
1813         * lib/gl_rbtree_oset.c (gl_tree_add_first, gl_tree_add_before,
1814         gl_tree_add_after): Use XMALLOC instead of xmalloc.
1815         * lib/gl_sublist.c (gl_sublist_create): Use XMALLOC instead of xmalloc.
1816         * lib/pagealign_alloc.c (new_memnode): Use XMALLOC instead of xmalloc.
1817         * lib/sh-quote.c (shell_quote_argv): Use XNMALLOC instead of xmalloc.
1818         * lib/xvasprintf.c (xstrcat): Use XNMALLOC instead of xmalloc.
1819
1820 2006-11-03  Bruno Haible  <bruno@clisp.org>
1821
1822         * lib/c-ctype.h [C++]: Define functions without name mangling.
1823         * lib/fwriteerror.h [C++]: Likewise.
1824         * lib/gcd.h [C++]: Likewise.
1825         * lib/linebreak.h [C++]: Likewise.
1826
1827 2006-11-03  Paul Eggert  <eggert@cs.ucla.edu>
1828
1829         * lib/canonicalize.h: (canonicalize_mode_t, CAN_EXISTING):
1830         (CAN_ALL_BUT_LAST, CAN_MISSING, canonicalize_filename_mode):
1831         Define only if PROVIDE_CANONICALIZE_FILENAME_MODE is defined.
1832         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME):
1833         Check for functions and headers just once.
1834         Check for declaration of canonicalize_file_name.
1835         Define PROVIDE_CANONICALIZE_FILENAME_MODE.
1836
1837 2006-11-02  Charles Wilson  <cygwin@cwilson.fastmail.fm>
1838
1839         * gnulib-tool (func_import): Fix typo in actioncmd.
1840
1841 2006-11-02  Bruno Haible  <bruno@clisp.org>
1842
1843         * gnulib-tool (func_get_automake_snippet): Interpret a backslash-
1844         newline sequence in the Makefile.am snippet as a space, like "make"
1845         does.
1846         Reported by Roger Persson <perrog@gmail.com>.
1847
1848 2006-11-01  Bruno Haible  <bruno@clisp.org>
1849
1850         * m4/strcase.m4 (gl_FUNC_STRNCASECMP): Check whether strncasecmp is
1851         already declared in <string.h>.
1852         * lib/strcase.h (strncasecmp): Don't declare it if yes.
1853
1854 2006-11-01  Bruno Haible  <bruno@clisp.org>
1855
1856         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Don't define strcasecmp here.
1857         * lib/strcase.h: Include <string.h>.
1858         (strcasecmp): Define to rpl_strcasecmp here.
1859
1860 2006-11-01  Bruno Haible  <bruno@clisp.org>
1861
1862         * lib/printf-parse.c (PRINTF_PARSE): Cast malloc/realloc results.
1863
1864 2006-11-01  Eric Blake  <ebb9@byu.net>
1865
1866         * lib/mkstemp-safer.c (mkstemp_safer): Allow C++ compilation.
1867
1868         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Allow C++ configuration.
1869
1870 2006-10-29  Bruno Haible  <bruno@clisp.org>
1871
1872         Make it compile in C++ mode.
1873         * lib/full-write.c (full_rw): Add a cast.
1874
1875 2006-11-01  Bruno Haible  <bruno@clisp.org>
1876
1877         * gnulib-tool (func_get_automake_snippet): Change sed_combine_lines to
1878         be POSIX compliant.
1879         Reported by Roger Persson <perrog@gmail.com>.
1880
1881 2006-11-01  Eric Blake  <ebb9@byu.net>
1882
1883         * lib/getopt_.h: Fix comments.
1884
1885 2006-10-31  Eric Blake  <ebb9@byu.net>
1886
1887         * modules/tmpdir (Depends-on): Add sys_stat.
1888         * modules/mkdtemp (Depends-on): Add tempname, drop unistd.
1889         * lib/mkdtemp.c (gen_tempname): Remove; tempname covers this.
1890         * lib/tmpdir.c (S_ISDIR): Simplify, thanks to sys_stat.
1891         * m4/mkdtemp.m4 (gl_PREREQ_MKDTEMP): Simplify, thanks to
1892         tempname.
1893
1894 2006-10-31  Paul Eggert  <eggert@cs.ucla.edu>
1895
1896         Avoid some C++ diagnostics reported by Bruno Haible.
1897         * lib/quotearg.c (clone_quoting_options): Use xmemdup rather than
1898         xmalloc.
1899         (quotearg_alloc): Use xcharalloc rather than xmalloc.
1900         (struct slotvec): Move to top level.
1901         (quotearg_n_options): Rewrite to avoid xmalloc.
1902         * lib/xalloc.h (xcharalloc): New function.
1903         * (xrealloc, xnrealloc, x2realloc, x2nrealloc, xmemdup):
1904         [defined __cplusplus]: Add function template that provides result
1905         type propagation.  This part of the change is from Bruno Haible.
1906
1907 2006-10-29  Bruno Haible  <bruno@clisp.org>
1908
1909         Make it compile in C++ mode.
1910         * lib/striconv.c (mem_cd_iconv): Cast malloc/realloc result.
1911         * lib/strnlen1.c (strnlen1): Cast memchr result.
1912         * lib/mbchar.h (mb_copy): Rename arguments to 'new_mbc', 'old_mbc'.
1913         * lib/clean-temp.c (string_equals, string_hash): Add casts.
1914         (create_temp_dir): Rename local variable 'template'.
1915         (compile_csharp_using_sscli): Add cast.
1916         * lib/fatal-signal.c (at_fatal_signal): Cast xmalloc result.
1917         * lib/findprog.c (find_in_path): Likewise.
1918         * lib/linebreak.c (mbs_width_linebreaks): Cast malloc result.
1919         * lib/wait-process.c (register_slave_subprocess): Likewise.
1920
1921 2006-10-22  Bruno Haible  <bruno@clisp.org>
1922
1923         * modules/tsearch: New file.
1924         * lib/tsearch.h: New file.
1925         * lib/tsearch.c: New file, from glibc-2.5 with small modifications.
1926         * m4/tsearch.m4: New file.
1927         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add tsearch.
1928
1929 2006-10-29  Eric Blake  <ebb9@byu.net>
1930
1931         * lib/arcfour.c: Assume config.h.
1932         * lib/arctwo.c: Likewise.
1933         * lib/base64.c: Likewise.
1934         * lib/check-version.c: Likewise.
1935         * lib/crc.c: Likewise.
1936         * lib/des.c: Likewise.
1937         * lib/gc-gnulib.c: Likewise.
1938         * lib/gc-libgcrypt.c: Likewise.
1939         * lib/gc-pbkdf2-sha1.c: Likewise.
1940         * lib/getaddrinfo.c: Likewise.
1941         * lib/getdelim.c: Likewise.
1942         * lib/getline.c: Likewise.
1943         * lib/hmac-md5.c: Likewise.
1944         * lib/hmac-sha1.c: Likewise.
1945         * lib/iconvme.c: Likewise.
1946         * lib/md2.c: Likewise.
1947         * lib/md4.c: Likewise.
1948         * lib/memxor.c: Likewise.
1949         * lib/read-file.c: Likewise.
1950         * lib/readline.c: Likewise.
1951         * lib/rijndael-alg-fst.c: Likewise.
1952         * lib/rijndael-api-fst.c: Likewise.
1953         * lib/xgetdomainname.c: Likewise.
1954
1955 2006-10-28  Eric Blake  <ebb9@byu.net>
1956
1957         * lib/xstrndup.c: Assume config.h.
1958
1959 2006-10-27  Paul Eggert  <eggert@cs.ucla.edu>
1960
1961         Move stat.h-substitute stuff from lib/stat-macros.h to lib/stat_.h.
1962         stat-macros.h is now for our own macros, whereas stat_h is for
1963         macros in the <sys/stat.h> name space.
1964         * lib/stat-macros.h: Remove copyright notice, as this file is now tiny.
1965         (STAT_MACROS_H): Remove.
1966         (S_IFMT, S_ISBLK, S_ISCHR, S_ISDIR, S_ISFIFO, S_ISLNK, S_ISNAM):
1967         (S_ISMPB, S_ISMPC, S_ISNWK, S_ISREG, S_ISSOCK, S_ISDOOR, S_ISPORT):
1968         (S_TYPEISMQ, S_TYPEISTMO, S_TYPEISSEM, S_TYPEISSHM, S_ISCTG, S_ISOFD):
1969         (S_ISOFL, S_ISWHT, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IRGRP):
1970         (S_IROTH, S_IWUSR, S_IWGRP, S_IWOTH, S_IXUSR, S_IXGRP, S_IXOTH):
1971         (S_IRWXU, S_IRWXG, S_IRWXO, S_IXUGO, S_IRWXUGO):
1972         Move these macros to ...
1973         * lib/stat_.h: here.  Don't include stat-macros.h.
1974         * lib/canonicalize.c: Don't include stat-macros.h.
1975         * lib/chown.c: Likewise.
1976         * lib/euidaccess.c: Likewise.
1977         * lib/file-type.c: Likewise.
1978         * lib/filemode.c: Likewise.
1979         * lib/glob.c: Likewise.
1980         * lib/isapipe.c: Likewise.
1981         * lib/lchown.c: Likewise.
1982         * lib/lstat.c: Likewise.
1983         * lib/mkdir-p.c: Likewise.
1984         * lib/rmdir.c: Likewise.
1985         * m4/lchown.m4 (gl_FUNC_LCHOWN): Don't require gl_STAT_MACROS.
1986         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Don't check for io.h
1987         unless mkdir isn't declared, to speed up 'configure'.
1988         Always create sys/stat.h, since it's unlikely any real sys/stat.h
1989         would define all the S_* symbols.
1990         * modules/canonicalize (Depends-on):
1991         Depend on sys_stat, not stat-macros.
1992         * modules/chown: Likewise.
1993         * modules/euidaccess: Likewise.
1994         * modules/filemode: Likewise.
1995         * modules/file-type: Likewise.
1996         * modules/glob: Likewise.
1997         * modules/isapipe: Likewise.
1998         * modules/lchown: Likewise.
1999         * modules/lstat: Likewise.
2000         * modules/mkancesdirs: Likewise.
2001         * modules/rmdir: Likewise.
2002         * modules/mkdir-p (Depends-on): Also depend on sys_stat.
2003         * modules/modechange: Likewise.
2004         * modules/stat-macros (Files): Remove m4/stat-macros.m4.
2005         (configure.ac): Remove gl_STAT_MACROS.
2006         * modules/sys_stat (Depends-on): Remove stat-macros.
2007
2008 2006-10-27  Bruno Haible  <bruno@clisp.org>
2009
2010         * m4/signed.m4: Remove file.
2011         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_ARGS_: Remove bh_C_SIGNED
2012         invocation.
2013         * modules/vasnprintf (Files): Remove m4/signed.m4.
2014
2015 2006-10-27  Bruno Haible  <bruno@clisp.org>
2016
2017         Update to GNU gettext 0.16.
2018         * modules/gettext (Files): Add m4/intl.m4, m4/intldir.m4. Remove
2019         m4/inttypes-h.m4, m4/signed.m4.
2020         * m4/gettext.m4: Update to GNU gettext 0.16.
2021         * m4/intl.m4: New file, from GNU gettext.
2022         * m4/intldir.m4: New file, from GNU gettext.
2023         * config/srclist.txt: Update
2024
2025 2006-10-27  Eric Blake  <ebb9@byu.net>
2026
2027         * MODULES.html.sh: Document tempname.
2028         * modules/mkstemp (Depends-on): Add tempname, and drop transitive
2029         dependencies.
2030         (Files): Move lib/tempname.c...
2031         * modules/tempname: ...to this new module.
2032         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Remove tempname checks.
2033         (gl_PREREQ_TEMPNAME): Move...
2034         * m4/tempname.m4: ...to this new file.
2035         * lib/mkstemp.c (includes) [!_LIBC]: Use tempname.h.
2036         * modules/sys_stat (Depends-on): Add stat-macros.
2037         * lib/stat_.h (includes): Pick up stat macros.
2038         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Replace <sys/stat.h>
2039         if stat macros are broken.
2040         * lib/tempname.c (includes): No need to include "stat-macros.h".
2041         (__gen_tempname) [!_LIBC]: Expose as gen_tempname.
2042         (direxists, __path_search) [!_LIBC]: Don't compile these in
2043         gnulib; the tmpdir module covers that.
2044         * lib/tempname.h: New file.
2045
2046 2006-10-26  Paul Eggert  <eggert@cs.ucla.edu>
2047
2048         * COPYING: Explain how gnulib-tool converts licence headers.
2049         Almost all wording by Eric Blake.
2050
2051 2006-10-25  Paul Eggert  <eggert@cs.ucla.edu>
2052
2053         * lib/mbchar.h (is_basic_table): Make read-only.
2054         * lib/mbchar.c (is_basic_table): Likewise.
2055         Reported by John Darrington.
2056
2057 2006-10-25  Bruno Haible  <bruno@clisp.org>
2058
2059         * lib/progname.h (set_program_name): Undefine before defining.
2060
2061 2006-10-25  Bruno Haible  <bruno@clisp.org>
2062
2063         * lib/gettext.h (_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS): Define to
2064         false for non-gcc C++ compilers.
2065         Reported by Nelson H. F. Beebe <beebe@math.utah.edu>.
2066
2067 2006-10-24  Bruno Haible  <bruno@clisp.org>
2068
2069         * lib/striconv.c (mem_cd_iconv, str_cd_iconv): Treat all non-GNU
2070         iconv implementations like Irix iconv.
2071
2072 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
2073
2074         * modules/vararrays: New file.
2075         * m4/vararrays.m4: New file, taken from diffutils.
2076         * MODULES.html.sh: New module vararrays.
2077
2078 2006-10-24  Karl Berry  <karl@gnu.org>
2079
2080         * doc/gnulib-intro.texi: --- instead of --; non-naive naive.
2081         Don't call GNU Unix.
2082
2083 2006-10-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2084
2085         * users.txt: Add Libtool.
2086
2087         Sync from Libtool:
2088
2089         2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
2090
2091         * lib/argz.c: Remove check for HAVE_CONFIG_H, to conform
2092         to gnulib's policy of including config.h unconditionally.
2093
2094 2006-10-24  Bruno Haible  <bruno@clisp.org>
2095
2096         * modules/wcwidth (Files): Add m4/wint_t.m4.
2097         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Require gt_TYPE_WINT_T.
2098         * lib/wcwidth.h (iswprint): Use 'int' if 'wint_t' is not defined.
2099
2100 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
2101
2102         * lib/getdate.y (yyerror): Make the arguments pointer-to-const,
2103         to pacify GCC with some -W flags enabled.  Problem reported by
2104         Bruno Haible.
2105
2106 2006-10-24  Jim Meyering  <jim@meyering.net>
2107
2108         * MODULES.html.sh: Remove uinttostr.  It's not a module.
2109         Reported by Karl Berry.
2110
2111 2006-10-23  Bruno Haible  <bruno@clisp.org>
2112
2113         * lib/fts.c (fts_build): Move variable declaration, for C89 compliance.
2114
2115 2006-10-24  Bruno Haible  <bruno@clisp.org>
2116
2117         * lib/gl_list.h: Use C comment style, not C++ comment style.
2118
2119 2006-10-23  Eric Blake  <ebb9@byu.net>
2120
2121         * lib/getaddrinfo.c (includes): Add missing include.
2122
2123 2006-10-23  Bruno Haible  <bruno@clisp.org>
2124             Paul Eggert  <eggert@cs.ucla.edu>
2125
2126         Ability to rename obstack_free.
2127         * lib/obstack.h (__obstack_free): New macro. Declare instead of
2128         obstack_free.
2129         (obstack_free): Invoke the __obstack_free macro.
2130         * lib/obstack.c (obstack_free): Use __obstack_free macro.
2131
2132 2006-10-23  Bruno Haible  <bruno@clisp.org>
2133             Paul Eggert  <eggert@cs.ucla.edu>
2134
2135         * lib/argp.h (argp_parse, __argp_parse): Comment out the identifiers
2136         __argc, __argv from the declaration. (They are defined as macros on
2137         mingw.)
2138
2139 2006-10-22  Bruno Haible  <bruno@clisp.org>
2140
2141         * doc/gnulib-intro.texi: New file.
2142         * doc/gnulib.texi: Include it.
2143
2144 2006-10-21  Bruno Haible  <bruno@clisp.org>
2145
2146         * doc/gnulib.texi: Split the chapter "Gnulib" into 3 chapters
2147         "Introduction", "Miscellanous Notes", "Particular Modules".
2148
2149 2006-10-21  Bruno Haible  <bruno@clisp.org>
2150
2151         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
2152         Change mostlyclean-local rule to avoid sh syntax error from bash
2153         versions 2.00..2.05 when $(MOSTLYCLEANDIRS) is empty.
2154
2155 2006-10-23  Jim Meyering  <jim@meyering.net>
2156
2157         * lib/getaddrinfo.c (getnameinfo): Use new lightweight uinttostr,
2158         in place of snprintf.
2159
2160         * modules/inttostr (Files): Add lib/uinttostr.c.
2161         * lib/uinttostr.c (inttostr): New file/function.
2162         * lib/inttostr.h (uinttostr): Declare.
2163         * m4/inttostr.m4: Add AC_LIBOBJ([uinttostr]).
2164         * MODULES.html.sh (Numeric conversion functions <stdlib.h>):
2165         Add uinttostr.
2166         * modules/getaddrinfo (Depends-on): Remove snprintf.  Add inttostr.
2167
2168 2006-10-21  Paul Eggert  <eggert@cs.ucla.edu>
2169
2170         * lib/canonicalize.c (ELOOP): Define if not already defined.
2171         Problem reported by Bruno Haible in
2172         <http://lists.gnu.org/archive/html/bug-gnulib/2006-10/msg00282.html>.
2173
2174 2006-10-21  Paul Eggert  <eggert@cs.ucla.edu>
2175
2176         * lib/stdint_.h [defined _AIX]: Don't include <sys/types.h>.
2177         Problem reported by Perry Smith and Ville Laurikari.
2178
2179         * lib/getndelim2.c (SSIZE_MAX): Use same defn that getdelim.c
2180         uses.
2181
2182 2006-10-19  Bruno Haible  <bruno@clisp.org>
2183
2184         * lib/getndelim2.c (SSIZE_MAX): Provide fallback definition. Needed
2185         for mingw.
2186
2187 2006-10-19  Bruno Haible  <bruno@clisp.org>
2188
2189         * lib/openat-priv.h (EOPNOTSUPP): Provide fallback definition.
2190         Needed for mingw.
2191
2192 2006-10-19  Bruno Haible  <bruno@clisp.org>
2193
2194         * m4/size_max.m4 (gl_SIZE_MAX): Cache the result.
2195
2196 2006-10-19  Bruno Haible  <bruno@clisp.org>
2197
2198         * m4/allocsa.m4 (gl_ALLOCSA): Invoke gl_FUNC_ALLOCA, don't AC_REQUIRE
2199         it.
2200
2201 2006-10-19  Bruno Haible  <bruno@clisp.org>
2202
2203         * m4/alloca.m4 (gl_FUNC_ALLOCA): Cache the result of the AC_EGREP_CPP
2204         invocation.
2205
2206 2006-10-19  Bruno Haible  <bruno@clisp.org>
2207
2208         * gnulib-tool (func_create_testdir): Don't include ftruncate and
2209         mountlist by default.
2210
2211 2006-10-16  Bruno Haible  <bruno@clisp.org>
2212
2213         * lib/c-strstr.c: Include c-strstr.h.
2214
2215 2006-10-18  Charles Wilson  <cygwin@cwilson.fastmail.fm>
2216
2217         * gnulib-tool: Don't clobber $sourcebase when $local_gnulib_dir ends
2218         in a slash.
2219
2220 2006-10-18  Bruno Haible  <bruno@clisp.org>
2221
2222         * lib/lock.h [C++]: Wrap definitions in extern "C".
2223
2224 2006-10-18  Bruno Haible  <bruno@clisp.org>
2225
2226         * gnulib-tool (func_emit_initmacro_end): Remove duplicates from the
2227         gl_LIBOBJS list.
2228
2229 2006-10-18  Bruno Haible  <bruno@clisp.org>
2230
2231         * lib/findprog.c (find_in_path): Avoid "gcc -Wwrite-strings" warning.
2232
2233 2006-10-19  Paul Eggert  <eggert@cs.ucla.edu>
2234
2235         * lib/xstrtol.h: Include gettext.h.
2236         (_STRTOL_ERROR): Wrap English-language formats inside gettext.
2237         Problem reported by Eric Blake.
2238         * modules/xstrtol (Depends-on): Add gettext-h.
2239
2240 2006-10-19  Paul Eggert  <eggert@cs.ucla.edu>  (tiny change)
2241
2242         * lib/strftime.c (advance): New macro.
2243         (add): Use it to avoid adding 0 to a FILE *.  FILE can be an
2244         incomplete type, so you can't add 0 to it.  Problem and patch
2245         reported by Eelco Dolstra for dietlibc.
2246
2247 2006-10-18  Jim Meyering  <jim@meyering.net>
2248
2249         * lib/readutmp.c (desirable_utmp_entry): Use "bool" as the
2250         type for a local, and rename it: s/up/user_proc/.
2251
2252 2006-10-18  Sergey Poznyakoff  <gray@gnu.org.ua>
2253
2254         * lib/readutmp.c (desirable_utmp_entry): Implement new flag:
2255         READ_UTMP_USER_PROCESS.
2256         * lib/readutmp.h (READ_UTMP_USER_PROCESS): New flag
2257
2258 2006-10-17  Paul Eggert  <eggert@cs.ucla.edu>
2259
2260         * lib/localcharset.c: Do not check HAVE_SETLOCALE.
2261         * m4/localcharset.m4 (gl_LOCALCHARSET): Don't check for setlocale.
2262
2263 2006-10-17  Eric Blake  <ebb9@byu.net>
2264
2265         * lib/sigprocmask.c (sigprocmask): Fix typo.
2266
2267         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Fix typo.
2268
2269         * modules/clean-temp (Makefile.am): Don't add to make output...
2270         (configure.ac): ...instead define SIGNAL_SAFE_LIST inside
2271         config.h.
2272
2273 2006-10-17  Bruno Haible  <bruno@clisp.org>
2274
2275         * lib/gettext.h (gettext, ngettext, pgettext, npgettext): Define
2276         differently if DEFAULT_TEXT_DOMAIN is set.
2277
2278 2006-10-16  Bruno Haible  <bruno@clisp.org>
2279
2280         * lib/clean-temp.c: Include fwriteerror.h.
2281
2282 2006-10-16  Bruno Haible  <bruno@clisp.org>
2283
2284         * getndelim2.m4 (gl_GETNDELIM2): Remove 2003-10-23 hack.
2285
2286 2006-10-16  Bruno Haible  <bruno@clisp.org>
2287
2288         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Also test for sigset_t.
2289         * lib/sigprocmask.h: Include <sys/types.h>.
2290         (sigset_t): Use the system's definition if present.
2291
2292 2006-10-17  Eric Blake  <ebb9@byu.net>
2293
2294         * lib/xvasprintf.c (includes): Assume config.h.
2295         * lib/xasprintf.c (includes): Likewise.
2296
2297 2006-10-16  Paul Eggert  <eggert@cs.ucla.edu>
2298
2299         * lib/fsusage.c (PROPAGATE_ALL_ONES): Don't assume uintmax_t is
2300         at least as wide as intmax_t.
2301
2302 2006-10-16  Alexandre Duret-Lutz  <adl@gnu.org>
2303
2304         (Imported from Automake.)
2305         * build-aux/gnupload: Update to version 1.1 of directive file.
2306
2307 2006-10-16  Eric Blake  <ebb9@byu.net>
2308
2309         * modules/configmake (Makefile.am): Add pkglibexecdir support, to
2310         match Automake 1.10a.
2311
2312 2006-10-14  Bruno Haible  <bruno@clisp.org>
2313
2314         * modules/sigprocmask: New file.
2315         * lib/sigprocmask.h: New file.
2316         * lib/sigprocmask.c: New file.
2317         * m4/signalblocking.m4 (gl_SIGNALBLOCKING): Renamed from
2318         gt_SIGNALBLOCKING. When not defining HAVE_POSIX_SIGNALBLOCKING,
2319         request sigprocmask.o.
2320         (gl_PREREQ_SIGPROCMASK): New macro.
2321         * modules/fatal-signal (Files): Remove m4/signalblocking.m4.
2322         (Depends-on): Add sigprocmask.
2323         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Don't require
2324         gt_SIGNALBLOCKING. Test for 'raise' only once.
2325         * lib/fatal-signal.c: Include sigprocmask.h.
2326         (fatal_signal_set, init_fatal_signal_set, block_fatal_signals,
2327         unblock_fatal_signals): Define always.
2328         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
2329         sigprocmask.
2330
2331 2006-10-14  Paul Eggert  <eggert@cs.ucla.edu>
2332
2333         Sync from Automake.
2334         * build-aux/install-sh (posix_mkdir): Reject FreeBSD 6.1 mkdir -p -m,
2335         which incorrectly sets the mode of an existing destination
2336         directory.  In some cases the unpatched install-sh could do the
2337         equivalent of "chmod 777 /" or "chmod 0 /" on a buggy FreeBSD
2338         system.  We hope this is rare in practice, but it's clearly worth
2339         fixing.  Problem reported by Alex Unleashed in
2340         <http://lists.gnu.org/archive/html/bug-autoconf/2006-10/msg00012.html>.
2341         Also, don't bother to check for -m bugs unless we're using -m;
2342         suggested by Stepan Kasal.
2343
2344 2006-10-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2345
2346         Sync from Automake.
2347         * build-aux/depcomp (gcc3): Put dependency extraction flags before the
2348         `-c' flag, so they appear at the same position as in %FASTDEP%
2349         mode in depend2.am.  Fixes build failure for FreeBSD's c89,
2350         which ignores unknown options only after the first non-option.
2351         Bug report against M4 by Nelson H. F. Beebe.
2352
2353 2006-10-13  Jim Meyering  <jim@meyering.net>
2354
2355         Fix a bug in yesterday's change.
2356         * lib/fts.c (fts_open): When using FTS_XDEV|FTS_NOSTAT,
2357         p->fts_statp->st_dev would be used uninitialized.
2358         Ensures that we always call fts_stat on the very first entry.
2359         Miklos Szeredi reported that find -xdev stopped working.
2360
2361 2006-10-12  Bruno Haible  <bruno@clisp.org>
2362
2363         * gnulib-tool (func_get_automake_snippet): Append an automatically
2364         computed EXTRA_DIST augmentation.
2365         * modules/acl (Makefile.am): Remove EXTRA_DIST augmentation.
2366         * modules/alloca-opt (Makefile.am): Likewise.
2367         * modules/allocsa (Makefile.am): Likewise.
2368         * modules/arcfour (Makefile.am): Likewise.
2369         * modules/arctwo (Makefile.am): Likewise.
2370         * modules/argmatch (Makefile.am): Likewise.
2371         * modules/argz (Makefile.am): Likewise.
2372         * modules/atexit (Makefile.am): Likewise.
2373         * modules/backupfile (Makefile.am): Likewise.
2374         * modules/byteswap (Makefile.am): Likewise.
2375         * modules/c-strtod (Makefile.am): Likewise.
2376         * modules/c-strtold (Makefile.am): Likewise.
2377         * modules/calloc (Makefile.am): Likewise.
2378         * modules/canon-host (Makefile.am): Likewise.
2379         * modules/canonicalize (Makefile.am): Likewise.
2380         * modules/chdir-long (Makefile.am): Likewise.
2381         * modules/chdir-safer (Makefile.am): Likewise.
2382         * modules/check-version (Makefile.am): Likewise.
2383         * modules/chown (Makefile.am): Likewise.
2384         * modules/cloexec (Makefile.am): Likewise.
2385         * modules/close-stream (Makefile.am): Likewise.
2386         * modules/closeout (Makefile.am): Likewise.
2387         * modules/crc (Makefile.am): Likewise.
2388         * modules/csharpexec (Makefile.am): Likewise.
2389         * modules/cycle-check (Makefile.am): Likewise.
2390         * modules/des (Makefile.am): Likewise.
2391         * modules/dev-ino (Makefile.am): Likewise.
2392         * modules/dirfd (Makefile.am): Likewise.
2393         * modules/dirname (Makefile.am): Likewise.
2394         * modules/dup2 (Makefile.am): Likewise.
2395         * modules/eealloc (Makefile.am): Likewise.
2396         * modules/error (Makefile.am): Likewise.
2397         * modules/euidaccess (Makefile.am): Likewise.
2398         * modules/exclude (Makefile.am): Likewise.
2399         * modules/exitfail (Makefile.am): Likewise.
2400         * modules/fcntl-safer (Makefile.am): Likewise.
2401         * modules/fcntl (Makefile.am): Likewise.
2402         * modules/file-type (Makefile.am): Likewise.
2403         * modules/fileblocks (Makefile.am): Likewise.
2404         * modules/filemode (Makefile.am): Likewise.
2405         * modules/filenamecat (Makefile.am): Likewise.
2406         * modules/fnmatch (Makefile.am): Likewise.
2407         * modules/fopen-safer (Makefile.am): Likewise.
2408         * modules/fpending (Makefile.am): Likewise.
2409         * modules/fprintftime (Makefile.am): Likewise.
2410         * modules/free (Makefile.am): Likewise.
2411         * modules/fsusage (Makefile.am): Likewise.
2412         * modules/ftruncate (Makefile.am): Likewise.
2413         * modules/fts (Makefile.am): Likewise.
2414         * modules/gc-arcfour (Makefile.am): Likewise.
2415         * modules/gc-des (Makefile.am): Likewise.
2416         * modules/gc-hmac-md5 (Makefile.am): Likewise.
2417         * modules/gc-hmac-sha1 (Makefile.am): Likewise.
2418         * modules/gc-md4 (Makefile.am): Likewise.
2419         * modules/gc-pbkdf2-sha1 (Makefile.am): Likewise.
2420         * modules/gc-sha1 (Makefile.am): Likewise.
2421         * modules/gc (Makefile.am): Likewise.
2422         * modules/getaddrinfo (Makefile.am): Likewise.
2423         * modules/getcwd (Makefile.am): Likewise.
2424         * modules/getdelim (Makefile.am): Likewise.
2425         * modules/getdomainname (Makefile.am): Likewise.
2426         * modules/getgroups (Makefile.am): Likewise.
2427         * modules/gethostname (Makefile.am): Likewise.
2428         * modules/gethrxtime (Makefile.am): Likewise.
2429         * modules/getline (Makefile.am): Likewise.
2430         * modules/getloadavg (Makefile.am): Likewise.
2431         * modules/getlogin_r (Makefile.am): Likewise.
2432         * modules/getndelim2 (Makefile.am): Likewise.
2433         * modules/getopt (Makefile.am): Likewise.
2434         * modules/getpagesize (Makefile.am): Likewise.
2435         * modules/getpass-gnu (Makefile.am): Likewise.
2436         * modules/getpass (Makefile.am): Likewise.
2437         * modules/getsubopt (Makefile.am): Likewise.
2438         * modules/gettime (Makefile.am): Likewise.
2439         * modules/gettimeofday (Makefile.am): Likewise.
2440         * modules/getugroups (Makefile.am): Likewise.
2441         * modules/getusershell (Makefile.am): Likewise.
2442         * modules/glob (Makefile.am): Likewise.
2443         * modules/group-member (Makefile.am): Likewise.
2444         * modules/hard-locale (Makefile.am): Likewise.
2445         * modules/hash (Makefile.am): Likewise.
2446         * modules/hmac-md5 (Makefile.am): Likewise.
2447         * modules/hmac-sha1 (Makefile.am): Likewise.
2448         * modules/human (Makefile.am): Likewise.
2449         * modules/idcache (Makefile.am): Likewise.
2450         * modules/imaxabs (Makefile.am): Likewise.
2451         * modules/imaxdiv (Makefile.am): Likewise.
2452         * modules/inet_ntop (Makefile.am): Likewise.
2453         * modules/inet_pton (Makefile.am): Likewise.
2454         * modules/intprops (Makefile.am): Likewise.
2455         * modules/inttostr (Makefile.am): Likewise.
2456         * modules/inttypes (Makefile.am): Likewise.
2457         * modules/isapipe (Makefile.am): Likewise.
2458         * modules/javaversion (Makefile.am): Likewise.
2459         * modules/lchmod (Makefile.am): Likewise.
2460         * modules/lchown (Makefile.am): Likewise.
2461         * modules/localcharset (Makefile.am): Likewise.
2462         * modules/long-options (Makefile.am): Likewise.
2463         * modules/lstat (Makefile.am): Likewise.
2464         * modules/malloc (Makefile.am): Likewise.
2465         * modules/mathl (Makefile.am): Likewise.
2466         * modules/mbchar (Makefile.am): Likewise.
2467         * modules/md2 (Makefile.am): Likewise.
2468         * modules/md4 (Makefile.am): Likewise.
2469         * modules/md5 (Makefile.am): Likewise.
2470         * modules/memcasecmp (Makefile.am): Likewise.
2471         * modules/memchr (Makefile.am): Likewise.
2472         * modules/memcmp (Makefile.am): Likewise.
2473         * modules/memcoll (Makefile.am): Likewise.
2474         * modules/memcpy (Makefile.am): Likewise.
2475         * modules/memmem (Makefile.am): Likewise.
2476         * modules/memmove (Makefile.am): Likewise.
2477         * modules/mempcpy (Makefile.am): Likewise.
2478         * modules/memrchr (Makefile.am): Likewise.
2479         * modules/memset (Makefile.am): Likewise.
2480         * modules/memxor (Makefile.am): Likewise.
2481         * modules/mkancesdirs (Makefile.am): Likewise.
2482         * modules/mkdir-p (Makefile.am): Likewise.
2483         * modules/mkdir (Makefile.am): Likewise.
2484         * modules/mkdtemp (Makefile.am): Likewise.
2485         * modules/mkstemp (Makefile.am): Likewise.
2486         * modules/mktime (Makefile.am): Likewise.
2487         * modules/modechange (Makefile.am): Likewise.
2488         * modules/mountlist (Makefile.am): Likewise.
2489         * modules/nanosleep (Makefile.am): Likewise.
2490         * modules/obstack (Makefile.am): Likewise.
2491         * modules/openat (Makefile.am): Likewise.
2492         * modules/pagealign_alloc (Makefile.am): Likewise.
2493         * modules/pathmax (Makefile.am): Likewise.
2494         * modules/physmem (Makefile.am): Likewise.
2495         * modules/poll (Makefile.am): Likewise.
2496         * modules/posixtm (Makefile.am): Likewise.
2497         * modules/posixver (Makefile.am): Likewise.
2498         * modules/putenv (Makefile.am): Likewise.
2499         * modules/quote (Makefile.am): Likewise.
2500         * modules/quotearg (Makefile.am): Likewise.
2501         * modules/raise (Makefile.am): Likewise.
2502         * modules/read-file (Makefile.am): Likewise.
2503         * modules/readline (Makefile.am): Likewise.
2504         * modules/readlink (Makefile.am): Likewise.
2505         * modules/readtokens (Makefile.am): Likewise.
2506         * modules/readutmp (Makefile.am): Likewise.
2507         * modules/realloc (Makefile.am): Likewise.
2508         * modules/regex (Makefile.am): Likewise.
2509         * modules/rename-dest-slash (Makefile.am): Likewise.
2510         * modules/rename (Makefile.am): Likewise.
2511         * modules/rijndael (Makefile.am): Likewise.
2512         * modules/rmdir (Makefile.am): Likewise.
2513         * modules/rpmatch (Makefile.am): Likewise.
2514         * modules/safe-read (Makefile.am): Likewise.
2515         * modules/safe-write (Makefile.am): Likewise.
2516         * modules/same-inode (Makefile.am): Likewise.
2517         * modules/same (Makefile.am): Likewise.
2518         * modules/save-cwd (Makefile.am): Likewise.
2519         * modules/savedir (Makefile.am): Likewise.
2520         * modules/setenv (Makefile.am): Likewise.
2521         * modules/settime (Makefile.am): Likewise.
2522         * modules/sha1 (Makefile.am): Likewise.
2523         * modules/sig2str (Makefile.am): Likewise.
2524         * modules/snprintf (Makefile.am): Likewise.
2525         * modules/stat-macros (Makefile.am): Likewise.
2526         * modules/stat-time (Makefile.am): Likewise.
2527         * modules/stdbool (Makefile.am): Likewise.
2528         * modules/stdint (Makefile.am): Likewise.
2529         * modules/stdlib-safer (Makefile.am): Likewise.
2530         * modules/stpcpy (Makefile.am): Likewise.
2531         * modules/stpncpy (Makefile.am): Likewise.
2532         * modules/strcase (Makefile.am): Likewise.
2533         * modules/strcasestr (Makefile.am): Likewise.
2534         * modules/strchrnul (Makefile.am): Likewise.
2535         * modules/strcspn (Makefile.am): Likewise.
2536         * modules/strdup (Makefile.am): Likewise.
2537         * modules/strerror (Makefile.am): Likewise.
2538         * modules/strftime (Makefile.am): Likewise.
2539         * modules/strndup (Makefile.am): Likewise.
2540         * modules/strnlen (Makefile.am): Likewise.
2541         * modules/strpbrk (Makefile.am): Likewise.
2542         * modules/strsep (Makefile.am): Likewise.
2543         * modules/strstr (Makefile.am): Likewise.
2544         * modules/strtod (Makefile.am): Likewise.
2545         * modules/strtoimax (Makefile.am): Likewise.
2546         * modules/strtok_r (Makefile.am): Likewise.
2547         * modules/strtol (Makefile.am): Likewise.
2548         * modules/strtoll (Makefile.am): Likewise.
2549         * modules/strtoul (Makefile.am): Likewise.
2550         * modules/strtoull (Makefile.am): Likewise.
2551         * modules/strtoumax (Makefile.am): Likewise.
2552         * modules/strverscmp (Makefile.am): Likewise.
2553         * modules/sys_socket (Makefile.am): Likewise.
2554         * modules/sys_stat (Makefile.am): Likewise.
2555         * modules/sysexits (Makefile.am): Likewise.
2556         * modules/time_r (Makefile.am): Likewise.
2557         * modules/timegm (Makefile.am): Likewise.
2558         * modules/timespec (Makefile.am): Likewise.
2559         * modules/tmpfile-safer (Makefile.am): Likewise.
2560         * modules/trim (Makefile.am): Likewise.
2561         * modules/unistd-safer (Makefile.am): Likewise.
2562         * modules/unlinkdir (Makefile.am): Likewise.
2563         * modules/unlocked-io (Makefile.am): Likewise.
2564         * modules/userspec (Makefile.am): Likewise.
2565         * modules/utime (Makefile.am): Likewise.
2566         * modules/utimecmp (Makefile.am): Likewise.
2567         * modules/utimens (Makefile.am): Likewise.
2568         * modules/vasnprintf (Makefile.am): Likewise.
2569         * modules/vasprintf (Makefile.am): Likewise.
2570         * modules/vsnprintf (Makefile.am): Likewise.
2571         * modules/xalloc (Makefile.am): Likewise.
2572         * modules/xgetcwd (Makefile.am): Likewise.
2573         * modules/xnanosleep (Makefile.am): Likewise.
2574         * modules/xreadlink (Makefile.am): Likewise.
2575         * modules/xstrtod (Makefile.am): Likewise.
2576         * modules/xstrtol (Makefile.am): Likewise.
2577         * modules/xstrtold (Makefile.am): Likewise.
2578         * modules/yesno (Makefile.am): Likewise.
2579         * modules/getdate (Makefile.am): Don't add getdate.h to EXTRA_DIST.
2580
2581 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
2582
2583         * modules/error (Makefile.am): Distribute files through
2584         EXTRA_DIST, not lib_SOURCES.
2585
2586 2006-10-12  Eric Blake  <ebb9@byu.net>
2587
2588         * modules/error (Makefile.am): Distribute files in /lib.
2589         * modules/obstack (Makefile.am): Likewise.
2590
2591 2006-10-12  Bruno Haible  <bruno@clisp.org>
2592
2593         * modules/acl (Makefile.am): Distribute all files in lib/ through
2594         EXTRA_DIST.
2595         * modules/arcfour (Makefile.am): Likewise.
2596         * modules/arctwo (Makefile.am): Likewise.
2597         * modules/argmatch (Makefile.am): Likewise.
2598         * modules/argz (Makefile.am): Likewise.
2599         * modules/atexit (Makefile.am): Likewise.
2600         * modules/backupfile (Makefile.am): Likewise.
2601         * modules/c-strtod (Makefile.am): Likewise.
2602         * modules/c-strtold (Makefile.am): Likewise.
2603         * modules/calloc (Makefile.am): Likewise.
2604         * modules/canon-host (Makefile.am): Likewise.
2605         * modules/canonicalize (Makefile.am): Likewise.
2606         * modules/chdir-long (Makefile.am): Likewise.
2607         * modules/chdir-safer (Makefile.am): Likewise.
2608         * modules/check-version (Makefile.am): Likewise.
2609         * modules/chown (Makefile.am): Likewise.
2610         * modules/cloexec (Makefile.am): Likewise.
2611         * modules/close-stream (Makefile.am): Likewise.
2612         * modules/closeout (Makefile.am): Likewise.
2613         * modules/crc (Makefile.am): Likewise.
2614         * modules/cycle-check (Makefile.am): Likewise.
2615         * modules/des (Makefile.am): Likewise.
2616         * modules/dirfd (Makefile.am): Likewise.
2617         * modules/dirname (Makefile.am): Likewise.
2618         * modules/dup2 (Makefile.am): Likewise.
2619         * modules/euidaccess (Makefile.am): Likewise.
2620         * modules/exclude (Makefile.am): Likewise.
2621         * modules/exitfail (Makefile.am): Likewise.
2622         * modules/fcntl-safer (Makefile.am): Likewise.
2623         * modules/file-type (Makefile.am): Likewise.
2624         * modules/fileblocks (Makefile.am): Likewise.
2625         * modules/filemode (Makefile.am): Likewise.
2626         * modules/filenamecat (Makefile.am): Likewise.
2627         * modules/fnmatch (Makefile.am): Likewise.
2628         * modules/fopen-safer (Makefile.am): Likewise.
2629         * modules/fpending (Makefile.am): Likewise.
2630         * modules/fprintftime (Makefile.am): Likewise.
2631         * modules/free (Makefile.am): Likewise.
2632         * modules/fsusage (Makefile.am): Likewise.
2633         * modules/ftruncate (Makefile.am): Likewise.
2634         * modules/fts (Makefile.am): Likewise.
2635         * modules/gc (Makefile.am): Likewise.
2636         * modules/gc-pbkdf2-sha1 (Makefile.am): Likewise.
2637         * modules/getaddrinfo (Makefile.am): Likewise.
2638         * modules/getcwd (Makefile.am): Likewise.
2639         * modules/getdelim (Makefile.am): Likewise.
2640         * modules/getdomainname (Makefile.am): Likewise.
2641         * modules/getgroups (Makefile.am): Likewise.
2642         * modules/gethostname (Makefile.am): Likewise.
2643         * modules/gethrxtime (Makefile.am): Likewise.
2644         * modules/getline (Makefile.am): Likewise.
2645         * modules/getloadavg (Makefile.am): Likewise.
2646         * modules/getlogin_r (Makefile.am): Likewise.
2647         * modules/getopt (Makefile.am): Likewise.
2648         * modules/getpass (Makefile.am): Likewise.
2649         * modules/getpass-gnu (Makefile.am): Likewise.
2650         * modules/getsubopt (Makefile.am): Likewise.
2651         * modules/gettime (Makefile.am): Likewise.
2652         * modules/gettimeofday (Makefile.am): Likewise.
2653         * modules/getugroups (Makefile.am): Likewise.
2654         * modules/getusershell (Makefile.am): Likewise.
2655         * modules/glob (Makefile.am): Likewise.
2656         * modules/group-member (Makefile.am): Likewise.
2657         * modules/hard-locale (Makefile.am): Likewise.
2658         * modules/hash (Makefile.am): Likewise.
2659         * modules/hmac-md5 (Makefile.am): Likewise.
2660         * modules/hmac-sha1 (Makefile.am): Likewise.
2661         * modules/human (Makefile.am): Likewise.
2662         * modules/idcache (Makefile.am): Likewise.
2663         * modules/imaxabs (Makefile.am): Likewise.
2664         * modules/imaxdiv (Makefile.am): Likewise.
2665         * modules/inet_ntop (Makefile.am): Likewise.
2666         * modules/inet_pton (Makefile.am): Likewise.
2667         * modules/inttostr (Makefile.am): Likewise.
2668         * modules/isapipe (Makefile.am): Likewise.
2669         * modules/lchown (Makefile.am): Likewise.
2670         * modules/long-options (Makefile.am): Likewise.
2671         * modules/lstat (Makefile.am): Likewise.
2672         * modules/malloc (Makefile.am): Likewise.
2673         * modules/mathl (Makefile.am): Likewise.
2674         * modules/mbchar (Makefile.am): Likewise.
2675         * modules/md2 (Makefile.am): Likewise.
2676         * modules/md4 (Makefile.am): Likewise.
2677         * modules/md5 (Makefile.am): Likewise.
2678         * modules/memcasecmp (Makefile.am): Likewise.
2679         * modules/memchr (Makefile.am): Likewise.
2680         * modules/memcmp (Makefile.am): Likewise.
2681         * modules/memcoll (Makefile.am): Likewise.
2682         * modules/memcpy (Makefile.am): Likewise.
2683         * modules/memmem (Makefile.am): Likewise.
2684         * modules/memmove (Makefile.am): Likewise.
2685         * modules/mempcpy (Makefile.am): Likewise.
2686         * modules/memrchr (Makefile.am): Likewise.
2687         * modules/memset (Makefile.am): Likewise.
2688         * modules/memxor (Makefile.am): Likewise.
2689         * modules/mkancesdirs (Makefile.am): Likewise.
2690         * modules/mkdir (Makefile.am): Likewise.
2691         * modules/mkdir-p (Makefile.am): Likewise.
2692         * modules/mkdtemp (Makefile.am): Likewise.
2693         * modules/mkstemp (Makefile.am): Likewise.
2694         * modules/mktime (Makefile.am): Likewise.
2695         * modules/modechange (Makefile.am): Likewise.
2696         * modules/mountlist (Makefile.am): Likewise.
2697         * modules/nanosleep (Makefile.am): Likewise.
2698         * modules/openat (Makefile.am): Likewise.
2699         * modules/pagealign_alloc (Makefile.am): Likewise.
2700         * modules/physmem (Makefile.am): Likewise.
2701         * modules/poll (Makefile.am): Likewise.
2702         * modules/posixtm (Makefile.am): Likewise.
2703         * modules/posixver (Makefile.am): Likewise.
2704         * modules/putenv (Makefile.am): Likewise.
2705         * modules/quote (Makefile.am): Likewise.
2706         * modules/quotearg (Makefile.am): Likewise.
2707         * modules/raise (Makefile.am): Likewise.
2708         * modules/read-file (Makefile.am): Likewise.
2709         * modules/readline (Makefile.am): Likewise.
2710         * modules/readlink (Makefile.am): Likewise.
2711         * modules/readtokens (Makefile.am): Likewise.
2712         * modules/readutmp (Makefile.am): Likewise.
2713         * modules/realloc (Makefile.am): Likewise.
2714         * modules/regex (Makefile.am): Likewise.
2715         * modules/rename (Makefile.am): Likewise.
2716         * modules/rename-dest-slash (Makefile.am): Likewise.
2717         * modules/rijndael (Makefile.am): Likewise.
2718         * modules/rmdir (Makefile.am): Likewise.
2719         * modules/rpmatch (Makefile.am): Likewise.
2720         * modules/safe-read (Makefile.am): Likewise.
2721         * modules/safe-write (Makefile.am): Likewise.
2722         * modules/same (Makefile.am): Likewise.
2723         * modules/save-cwd (Makefile.am): Likewise.
2724         * modules/savedir (Makefile.am): Likewise.
2725         * modules/setenv (Makefile.am): Likewise.
2726         * modules/settime (Makefile.am): Likewise.
2727         * modules/sha1 (Makefile.am): Likewise.
2728         * modules/sig2str (Makefile.am): Likewise.
2729         * modules/snprintf (Makefile.am): Likewise.
2730         * modules/stdlib-safer (Makefile.am): Likewise.
2731         * modules/stpcpy (Makefile.am): Likewise.
2732         * modules/stpncpy (Makefile.am): Likewise.
2733         * modules/strcase (Makefile.am): Likewise.
2734         * modules/strcasestr (Makefile.am): Likewise.
2735         * modules/strchrnul (Makefile.am): Likewise.
2736         * modules/strcspn (Makefile.am): Likewise.
2737         * modules/strdup (Makefile.am): Likewise.
2738         * modules/strerror (Makefile.am): Likewise.
2739         * modules/strftime (Makefile.am): Likewise.
2740         * modules/strndup (Makefile.am): Likewise.
2741         * modules/strnlen (Makefile.am): Likewise.
2742         * modules/strpbrk (Makefile.am): Likewise.
2743         * modules/strsep (Makefile.am): Likewise.
2744         * modules/strstr (Makefile.am): Likewise.
2745         * modules/strtod (Makefile.am): Likewise.
2746         * modules/strtoimax (Makefile.am): Likewise.
2747         * modules/strtok_r (Makefile.am): Likewise.
2748         * modules/strtol (Makefile.am): Likewise.
2749         * modules/strtoll (Makefile.am): Likewise.
2750         * modules/strtoul (Makefile.am): Likewise.
2751         * modules/strtoull (Makefile.am): Likewise.
2752         * modules/strtoumax (Makefile.am): Likewise.
2753         * modules/strverscmp (Makefile.am): Likewise.
2754         * modules/time_r (Makefile.am): Likewise.
2755         * modules/timegm (Makefile.am): Likewise.
2756         * modules/tmpfile-safer (Makefile.am): Likewise.
2757         * modules/unistd-safer (Makefile.am): Likewise.
2758         * modules/unlinkdir (Makefile.am): Likewise.
2759         * modules/userspec (Makefile.am): Likewise.
2760         * modules/utime (Makefile.am): Likewise.
2761         * modules/utimecmp (Makefile.am): Likewise.
2762         * modules/utimens (Makefile.am): Likewise.
2763         * modules/vasnprintf (Makefile.am): Likewise.
2764         * modules/vasprintf (Makefile.am): Likewise.
2765         * modules/vsnprintf (Makefile.am): Likewise.
2766         * modules/xalloc (Makefile.am): Likewise.
2767         * modules/xgetcwd (Makefile.am): Likewise.
2768         * modules/xnanosleep (Makefile.am): Likewise.
2769         * modules/xreadlink (Makefile.am): Likewise.
2770         * modules/xstrtod (Makefile.am): Likewise.
2771         * modules/xstrtol (Makefile.am): Likewise.
2772         * modules/xstrtold (Makefile.am): Likewise.
2773         * modules/yesno (Makefile.am): Likewise.
2774
2775 2006-10-12  Jim Meyering  <jim@meyering.net>
2776
2777         * m4/getloadavg.m4: Revert the change below.
2778
2779         * m4/getloadavg.m4 (gl_GETLOADAVG): Test for the existence of
2780         lib/getloadavg.c using "ls -L", not "test -f".  The latter would
2781         fail with a symlink, which is what coreutils' ./bootstrap now
2782         creates by default.
2783
2784 2006-10-12  Bruno Haible  <bruno@clisp.org>
2785
2786         * lib/inttypes_.h (_LONG_LONG_FORMAT_PREFIX): Don't define for MSVC or
2787         mingw.
2788         (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX, _SCNu64_PREFIX): Handle
2789         MSVC and mingw explicitly.
2790
2791 2006-10-11  Simon Josefsson  <jas@extundo.com>
2792             Bruno Haible  <bruno@clisp.org>
2793
2794         Add support for multiple gnulib-tool invocations in the scope of a
2795         single configure.ac file.
2796         * gnulib-tool (func_emit_lib_Makefile_am): In the _LIBADD variable,
2797         use a private [LT]LIBOBJS variant. Define a _DEPENDENCIES variable
2798         with the same contents as the _LIBADD variable.
2799         (func_emit_initmacro_start, func_emit_initmacro_end,
2800         func_emit_initmacro_done): New functions.
2801         (func_import, func_create_testdir): Invoke them. Allow the identifiers
2802         gl_LIBOBJS and gl_LTLIBOBJS.
2803
2804 2006-10-11  Bruno Haible  <bruno@clisp.org>
2805
2806         * gnulib-tool (GETTEXTPATH, AUTOHEADER, AUTOPOINT): New variables.
2807         (func_create_testdir): Don't create po/Makefile.am, don't invoke
2808         autoreconf. Instead, invoke autopoint explicitly but move back the
2809         *.m4 files from gnulib.
2810
2811 2006-10-11  Bruno Haible  <bruno@clisp.org>
2812
2813         * gnulib-tool (func_usage): Make module names after --create-testdir
2814         optional.
2815         (func_create_testdir): If no module was specified, use nearly all
2816         modules.
2817
2818 2006-10-12  Jim Meyering  <jim@meyering.net>
2819
2820         Big performance improvement for fts-based tools that use FTS_NOSTAT.
2821         Avoid spurious inode-mismatch problems on non-POSIX file systems.
2822         Details: http://article.gmane.org/gmane.comp.lib.gnulib.bugs/7416
2823         * lib/fts_.h (FTS_DEFER_STAT): Define new flag.
2824         (FTS_OPTIONMASK): Extend the mask to reflect this addition.
2825         * lib/fts.c (DT_IS_KNOWN, DT_MUST_BE): Define.
2826         (FTS_NO_STAT_REQUIRED, FTS_STAT_REQUIRED): Define.
2827         (fts_set_stat_required): New function.
2828         (fts_open): Defer the calls to fts_stat, if possible or requested.
2829         Move the code that maps a command-line fts_info value FTS_DOT to FTS_D
2830         into fts_stat itself.
2831         (fts_read): Perform any required (deferred) fts_stat call.
2832         (fts_build): Likewise, for the directory we're about to open and read.
2833         In the readdir loop, carefully decide whether each entry will require
2834         an eventual call to fts_stat, using dirent.d_type info if available.
2835         (fts_stat): Move the test for whether to honor FTS_COMFOLLOW on
2836         a command line argument into this function.  Update all callers.
2837         Map a return value of FTS_DOT to FTS_D for a command line argument.
2838         * modules/fts (Depends-on): Add d-type.  Alphabetize.
2839         Thanks to Miklos Szeredi for his tenacity and for the initial
2840         bug report about "find" failing on a FUSE-based file system.
2841
2842         * lib/fts.c (fts_open): Use consistent indentation.
2843
2844 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
2845
2846         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Renamed from
2847         gl_USE_SYSTEM_EXTENSIONS, to fix a coreutils bootstrap failure
2848         reported by Jim Meyering.  All uses of cache variables renamed
2849         to match Autoconf's.
2850         (gl_USE_SYSTEM_EXTENSIONS): New macro, which simply requires
2851         the other one.
2852
2853         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH):
2854         Fix misspelling in diagnostic.
2855
2856 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
2857
2858         * lib/mkdir-p.c (HAVE_FCHMOD): Define to false if not already
2859         defined.  Problem reported by Matthew Woehlke.
2860
2861         * lib/inttypes_.h (_LONG_LONG_FORMAT_PREFIX): New macro.
2862         Add support for Tandem NonStop R series.
2863         (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX, _SCNu64_PREFIX):
2864         Use new macro.
2865
2866         * lib/rename-dest-slash.c: Include stdbool.h but not string.h.
2867         (has_trailing_slash): Omit size arg; all callers changed.
2868         Omit 'inline', since it doesn't help performance and we'd
2869         need to configure it.
2870         Don't count //, ///, etc. as having a trailing slash.
2871         As a side effect, this removes a C99ism reported by Matthew Woehlke.
2872         (rpl_rename_dest_slash): On failure, use rename's errno rather
2873         than (in some cases) an incorrect or junk errno.
2874         Simplify code by removing need to compute length; this does
2875         cause it to make two passes instead of one over the file name,
2876         but it's worth it.
2877
2878         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Undo previous
2879         change, since Autoconf's version may no longer be appropriate now
2880         that we are using CVS Autoconf's version.  Add support for Tandem.
2881
2882 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
2883             Bruno Haible  <bruno@clisp.org>
2884
2885         * lib/allocsa.h (sa_alignment_longlong, sa_alignment_max): Test
2886         HAVE_LONG_LONG_INT instead of HAVE_LONG_LONG.
2887         * m4/allocsa.m4 (gl_ALLOCSA): Invoke AC_TYPE_LONG_LONG_INT instead of
2888         gl_AC_TYPE_LONG_LONG.
2889
2890         * lib/printf-args.h (arg_type, argument): Test HAVE_LONG_LONG_INT
2891         instead of HAVE_LONG_LONG.
2892         * lib/printf-args.c (printf_fetchargs): Likewise.
2893         * lib/printf-parse.c (PRINTF_PARSE): Likewise.
2894         * lib/vasnprintf.c (VASNPRINTF): Likewise.
2895         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_ARGS, gl_PREREQ_PRINTF_PARSE,
2896         gl_PREREQ_VASNPRINTF): Invoke AC_TYPE_LONG_LONG_INT instead of
2897         gl_AC_TYPE_LONG_LONG.
2898
2899 2006-10-11  Bruno Haible  <bruno@clisp.org>
2900
2901         * m4/longlong.m4: Add comments.
2902         * m4/ulonglong.m4: Likewise.
2903
2904 2006-10-10  Bruno Haible  <bruno@clisp.org>
2905
2906         Make it possible to #define stpcpy, strdup to aliases.
2907         * lib/stpcpy.c (stpcpy) [!_LIBC]: Don't undefine.
2908         * lib/strdup.c (strdup) [!_LIBC]: Don't undefine.
2909
2910 2006-10-10  Bruno Haible  <bruno@clisp.org>
2911
2912         Make it possible to #define gcd to an alias.
2913         * lib/gcd.c: Include config.h.
2914
2915 2006-10-10  Bruno Haible  <bruno@clisp.org>
2916
2917         Make it possible to #define c_isascii to an alias.
2918         * lib/c-ctype.h: Don't define the macros if NO_C_CTYPE_MACROS is
2919         defined. Undefine the macros before defining them, to avoid gcc
2920         warnings.
2921         * lib/c-ctype.c: Include config.h. Don't undefine the macros; instead,
2922         define NO_C_CTYPE_MACROS early.
2923
2924 2006-10-10  Bruno Haible  <bruno@clisp.org>
2925
2926         Make it possible to #define set_program_name to an alias.
2927         * lib/progname.c: Don't undefine set_program_name; instead, undefine
2928         ENABLE_RELOCATABLE early.
2929
2930 2006-10-10  Paul Eggert  <eggert@cs.ucla.edu>
2931
2932         Port to Tandem NSK OSS, which has 64-bit signed int but at most
2933         32-bit unsigned int.  Problem reported by Matthew Woehlke in:
2934         http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00062.html
2935         More generally, don't assume that 64-bit signed int is available
2936         if unsigned int is, and vice versa.
2937         * lib/inttypes_.h (_PRIu64_PREFIX, _SCNu64_PREFIX): Depend on
2938         unsigned symbols, not on their signed counterparts.
2939         * lib/stdint_.h (uint64_t, uint_least64_t, uint_fast64_t, uintmax_t):
2940         (UINT64_MAX, UINT_LEAST64_MAX, UINT_FAST64_MAX, UINTMAX_MAX):
2941         (UINT64_C, UINTMAX_C):
2942         Likewise.
2943         * lib/strtoimax.c (strtoll): Depend on signed symbols, not their
2944         unsigned counterparts.
2945         (Have_long_long, Unsigned): New macros.
2946         (Int): Renamed from INT.
2947         (strtoimax): Use the new macros.
2948         * m4/stdint.m4 (gl_STDINT_H): Require AC_TYPE_UNSIGNED_LONG_LONG_INT
2949         and substitute HAVE_UNSIGNED_LONG_LONG_INT.
2950         * modules/inttypes (inttypes.h): Substitute
2951         HAVE_UNSIGNED_LONG_LONG_INT.
2952         * modules/stdint (stdint.h): Likewise.
2953         (Files): Add m4/ulonglong.m4.
2954
2955 2006-10-10  Bruno Haible  <bruno@clisp.org>
2956
2957         Fix a gcc -Wshadow warning.
2958         * lib/gl_anyhash_list2.h (hash_resize): Rename local variable 'index'
2959         to 'bucket'.
2960         * lib/gl_anylinked_list2.h (gl_linked_search_from_to,
2961         gl_linked_indexof_from_to): Likewise.
2962         * lib/gl_linkedhash_list.c (add_to_bucket, remove_from_bucket):
2963         Likewise.
2964         * lib/gl_anytreehash_list1.h (add_to_bucket, remove_from_bucket):
2965         Likewise.
2966         * lib/gl_anytreehash_list2.h (gl_tree_search_from_to): Likewise.
2967         Reported by Eric Blake.
2968
2969 2006-10-09  Paul Eggert  <eggert@cs.ucla.edu>
2970
2971         * lib/filemode.h [HAVE_DECL_STRMODE]: Include unistd.h too,
2972         for NetBSD.  Problem reported by Bruno Haible.
2973
2974 2006-10-09  Jim Meyering  <jim@meyering.net>
2975
2976         * lib/lchown.c: Include <sys/stat.h> before "stat-macros.h".
2977         Patch from Bruno Haible.
2978
2979 2006-10-09  Jim Meyering  <jim@meyering.net>
2980
2981         * lib/fts-cycle.c (leave_dir): When "leaving" a top level directory due
2982         to FTS_SKIP, don't copy the parent's uninitialized dev/ino values.
2983         Trigger with e.g., mkdir d && valgrind ./chmod u+rwx d d
2984
2985 2006-10-08  Paul Eggert  <eggert@cs.ucla.edu>
2986
2987         Don't include <config.h> twice; this doesn't work in some cases,
2988         e.g., when config.h has "#define intmax_t long long int" and
2989         we include <config.h>, <inttypes.h>, <config.h> in that order.
2990         Problem reported by Matthew Woehlke in:
2991         http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00073.html
2992         * lib/fprintftime.c: Don't include config.h or fprintftime.h.
2993         * lib/fts-cycle.c: Don't include config.h.
2994         * lib/strftime.c: Include fprintftime.h if FPRINTFTIME is defined.
2995         * lib/xstrtoimax.c: Remove copyright notice since it's short tnow.
2996         Don't include config.h or xstrtol.h.  Define STRTOL_T_MINIMUM
2997         and STRTOL_T_MAXIMUM unconditionally, since we now assume gnulib
2998         inttypes.h.
2999         * lib/xstrtoumax.c: Likewise.
3000         * lib/xstrtol.c: Include config.h and xstrtol.h after defining
3001         __strtol and the like, so that this module is more like its siblings.
3002         (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM) [! defined STRTOL_T_MINIMUM]:
3003         Remove; no longer needed now that we assume gnulib inttypes.h.
3004
3005 2006-10-08  Bruno Haible  <bruno@clisp.org>
3006
3007         * doc/gnulib-tool.texi: Emphasize the drawbacks of the --symlink
3008         option.
3009
3010 2006-10-07  Jim Meyering  <jim@meyering.net>
3011
3012         * modules/inttypes (inttypes.h): Revert what seems to have been
3013         an inadvertent part of today's change: use "|", not "/" in the
3014         substitution for the "/"-containing string, $(ABSOLUTE_INTTYPES_H).
3015
3016 2006-10-07  Bruno Haible  <bruno@clisp.org>
3017
3018         * modules/sublist: New file.
3019
3020 2006-10-07  Bruno Haible  <bruno@clisp.org>
3021
3022         * modules/alloca-opt (alloca.h): Add a "DO NOT EDIT" comment.
3023         * modules/argz (argz.h): Likewise.
3024         * modules/arpa_inet (arpa/inet.h): Likewise.
3025         * modules/byteswap (byteswap.h): Likewise.
3026         * modules/configmake (configmake.h): Likewise.
3027         * modules/fcntl (fcntl.h): Likewise.
3028         * modules/fnmatch (fnmatch.h): Likewise.
3029         * modules/getopt (getopt.h): Likewise.
3030         * modules/glob (glob.h): Likewise.
3031         * modules/inttypes (inttypes.h): Likewise.
3032         * modules/netinet_in (netinet/in.h): Likewise.
3033         * modules/poll (poll.h): Likewise.
3034         * modules/stdbool (stdbool.h): Likewise.
3035         * modules/stdint (stdint.h): Likewise.
3036         * modules/sys_select (sys/select.h): Likewise.
3037         * modules/sys_socket (sys/socket.h): Likewise.
3038         * modules/sys_stat (sys/stat.h): Likewise.
3039         * modules/sysexits (sysexits.h): Likewise.
3040         * modules/unistd (unistd.h): Likewise.
3041         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
3042         Add a "DO NOT EDIT" comment to the generated file.
3043         (func_import): Likewise for gnulib-comp.m4.
3044
3045 2006-10-07  Bruno Haible  <bruno@clisp.org>
3046
3047         * lib/gl_sublist.h: New file.
3048         * lib/gl_sublist.c: New file.
3049
3050 2006-10-06  Paul Eggert  <eggert@cs.ucla.edu>
3051
3052         * lib/mkancesdirs.c (mkancesdirs): Pass to MAKE_DIR both the full file
3053         name (relative to the original working directory) and the file
3054         name component (relative to the temporary working directory).  All
3055         callers changed.
3056         * lib/mkancesdirs.h (mkancesdirs): Adjust prototype to match.
3057         * lib/mkdir-p.c (make_dir_parents): Likewise.
3058         * lib/mkdir-p.h (make_dir_parents): Likewise.
3059
3060 2006-10-06  Eric Blake  <ebb9@byu.net>
3061
3062         Define several macros for use by the clean-temp module.
3063         * m4/close-stream.m4 (gl_CLOSE_STREAM): Define GNULIB_CLOSE_STREAM.
3064         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Define GNULIB_FCNTL_SAFER.
3065         * m4/stdio-safer.m4 (gl_FOPEN_SAFER): Define GNULIB_FOPEN_SAFER.
3066
3067         * lib/clean-temp.h (close_stream_temp): New declaration.
3068         * lib/clean-temp.c (includes): Pull in headers according to what
3069         other modules are in use.
3070         (close_stream_temp) [GNULIB_CLOSE_STREAM]: New function.
3071
3072 2006-10-06  Bruno Haible  <bruno@clisp.org>
3073
3074         * lib/javacomp.c (write_temp_file): Use fopen_temp, fwriteerror_temp
3075         instead of fopen, fwriteerror.
3076
3077 2006-10-06  Bruno Haible  <bruno@clisp.org>
3078
3079         * lib/clean-temp.h (cleanup_temp_file, cleanup_temp_subdir,
3080         cleanup_temp_dir_contents, cleanup_temp_dir): Change return type to
3081         int.
3082         * lib/clean-temp.c (do_unlink, do_rmdir, cleanup_temp_file,
3083         cleanup_temp_subdir, cleanup_temp_dir_contents, cleanup_temp_dir):
3084         Return an error indicator.
3085         Suggested by Eric Blake.
3086
3087 2006-10-06  Bruno Haible  <bruno@clisp.org>
3088
3089         * lib/clean-temp.c (PATH_MAX): Provide a fallback for GNU Hurd.
3090         Reported by Eric Blake.
3091
3092 2006-10-06  Bruno Haible  <bruno@clisp.org>
3093
3094         * modules/closeout (Description): Mention stderr too.
3095
3096 2006-10-06  Bruno Haible  <bruno@clisp.org>
3097         and Paul Eggert  <eggert@cs.ucla.edu>
3098
3099         * lib/closeout.c (close_stdout): Also close stderr.
3100         * lib/closeout.h: Update comment.
3101
3102 2006-10-05  Paul Eggert  <eggert@cs.ucla.edu>
3103
3104         Fix some Darwin-7.9.0 porting problems reported by Bruno Haible in
3105         <http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00063.html>.
3106         * lib/dirchownmod.c: Include lchown.h.
3107         * lib/lchown.c: Don't include files that lchown.h now includes.
3108         Don't declare chown, since lchown.h now does that.
3109         * lib/lchown.h: Include errno.h, sys/types.h, unistd.h.
3110         (lchown): Define to rpl_chown if lchown is declared but
3111         does not exist.  Declare using a prototype if lchown is not
3112         declared.  Add a copyright notice.
3113         * lib/mkstemp.h: Include <unistd.h>.
3114         * lib/openat.c: Include lchown.h.
3115
3116         * lib/fcntl_.h (O_NOFOLLOW): Don't depend on O_NOFOLLOW_IS_INEFFECTIVE;
3117         we now test for that separately.
3118         * lib/fts.c (fts_safe_changedir): Inspect HAVE_WORKING_O_NOFOLLOW
3119         rather than O_NOFOLLOW, when testing whether it's possible to
3120         avoid a race condition reliably.
3121         * lib/savewd.c (savewd_chdir): Likewise.
3122
3123         Remove macros that are no longer needed now that stdint.h is
3124         reliable.
3125         * lib/fsusage.c (UINTMAX_MAX): Remove.
3126         * lib/human.c (SIZE_MAX, UINTMAX_MAX): Remove.
3127         * lib/utimecmp.c (SIZE_MAX): Remove.
3128
3129         * m4/lchown.m4 (gl_FUNC_LCHOWN): Check whether lchown is declared.
3130
3131         * m4/fcntl_h.m4 (gl_FCNTL_H): Define HAVE_WORKING_O_NOFOLLOW instead
3132         of O_NOFOLLOW_IS_INEFFECTIVE.  Define HAVE_WORKING_O_NOATIME if
3133         O_NOATIME works.
3134
3135 2006-10-05  Bruno Haible  <bruno@clisp.org>
3136
3137         * lib/gl_list.h (gl_sortedlist_search_from_to,
3138         gl_sortedlist_indexof_from_to): New declarations.
3139         (gl_list_implementation): New fields sortedlist_search_from_to,
3140         sortedlist_indexof_from_to.
3141         (gl_sortedlist_search_from_to, gl_sortedlist_indexof_from_to): New
3142         inline functions.
3143         * lib/gl_list.c (gl_sortedlist_search_from_to,
3144         gl_sortedlist_indexof_from_to): New functions.
3145         * lib/gl_array_list.c (gl_array_sortedlist_indexof_from_to): New
3146         function.
3147         (gl_array_sortedlist_indexof, gl_array_sortedlist_search): Use it.
3148         (gl_array_sortedlist_search_from_to): New function.
3149         (gl_array_list_implementation): Update.
3150         * lib/gl_carray_list.c (gl_carray_sortedlist_indexof_from_to): New
3151         function.
3152         (gl_carray_sortedlist_indexof, gl_carray_sortedlist_search): Use it.
3153         (gl_carray_sortedlist_search_from_to): New function.
3154         (gl_carray_list_implementation): Update.
3155         * lib/gl_anylinked_list2.h (gl_linked_sortedlist_search_from_to,
3156         gl_linked_sortedlist_indexof_from_to): New functions.
3157         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
3158         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
3159         * lib/gl_anytree_list2.h (gl_tree_sortedlist_search_from_to,
3160         gl_tree_sortedlist_indexof_from_to): New functions.
3161         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
3162         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
3163         Update.
3164         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
3165         * lib/gl_rbtreehash_list.c (gl_avltreehash_list_implementation):
3166         Update.
3167
3168 2006-10-05  Bruno Haible  <bruno@clisp.org>
3169
3170         * lib/gl_list.h (gl_list_search_from, gl_list_search_from_to,
3171         gl_list_indexof_from, gl_list_indexof_from_to): New declarations.
3172         (struct gl_list_implementation): Add fields search_from_to,
3173         indexof_from_to. Remove fields search, indexof.
3174         (gl_list_search): Use the search_from_to method.
3175         (gl_list_search_from, gl_list_search_from_to): New functions.
3176         (gl_list_indexof): Use the indexof_from_to method.
3177         (gl_list_indexof_from, gl_list_indexof_from_to): New functions.
3178         * lib/gl_list.c (gl_list_search): Use the search_from_to method.
3179         (gl_list_search_from, gl_list_search_from_to): New functions.
3180         (gl_list_indexof): Use the indexof_from_to method.
3181         (gl_list_indexof_from, gl_list_indexof_from_to): New functions.
3182         * lib/gl_array_list.c (gl_array_indexof_from_to): Renamed from
3183         gl_array_indexof. Add start_index, end_index arguments.
3184         (gl_array_search_from_to): Renamed from gl_array_search. Add
3185         start_index, end_index arguments.
3186         (gl_array_remove, gl_array_list_implementation): Update.
3187         * lib/gl_carray_list.c (gl_carray_indexof_from_to): Renamed from
3188         gl_carray_indexof. Add start_index, end_index arguments.
3189         (gl_carray_search_from_to): Renamed from gl_carray_search. Add
3190         start_index, end_index arguments.
3191         (gl_carray_remove, gl_carray_list_implementation): Update.
3192         * lib/gl_anylinked_list2.h (gl_linked_search_from_to): Renamed from
3193         gl_linked_search. Add start_index, end_index arguments.
3194         (gl_linked_indexof_from_to): Renamed from gl_linked_indexof. Add
3195         start_index, end_index arguments.
3196         (gl_linked_remove): Update.
3197         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
3198         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
3199         * lib/gl_anytree_list1.h (iterstack_item_t): Change type of 'rightp'
3200         field to 'size_t'.
3201         * lib/gl_anytree_list2.h (gl_tree_search_from_to): Renamed from
3202         gl_tree_search. Add start_index, end_index arguments.
3203         (gl_tree_indexof_from_to): Renamed from gl_tree_indexof. Add
3204         start_index, end_index arguments.
3205         (gl_tree_remove): Update.
3206         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
3207         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
3208         * lib/gl_anytreehash_list1.h (compare_position_threshold): New
3209         function.
3210         * lib/gl_anytreehash_list2.h (gl_tree_search_from_to): Renamed from
3211         gl_tree_search. Add start_index, end_index arguments.
3212         (gl_tree_indexof_from_to): Renamed from gl_tree_indexof. Add
3213         start_index, end_index arguments.
3214         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
3215         Update.
3216         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Update.
3217
3218 2006-10-05  Bruno Haible  <bruno@clisp.org>
3219
3220         * modules/fwriteerror (configure.ac): Define GNULIB_FWRITEERROR.
3221
3222         * lib/clean-temp.h (open_temp, fopen_temp, close_temp, fclose_temp,
3223         fwriteerror_temp): New declarations.
3224         * lib/clean-temp.c (uintptr_t): Provide fallback definition.
3225         (descriptors): New variable.
3226         (cleanup): First, close the descriptors.
3227         (register_fd, unregister_fd, open_temp, fopen_temp, close_temp,
3228         fclose_temp, fwriteerror_temp): New functions.
3229
3230 2006-10-04  Jim Meyering  <jim@meyering.net>
3231
3232         * lib/fts.c (fts_open): Tiny comment change.
3233
3234 2006-10-04  Bruno Haible  <bruno@clisp.org>
3235
3236         Make it possible to invoke AC_GNU_SOURCE after gl_LOCK_EARLY.
3237         * m4/lock.m4 (gl_LOCK_EARLY_BODY): New macro, extracted code from
3238         gl_LOCK_BODY.
3239         (gl_LOCK_EARLY): Require gl_LOCK_EARLY_BODY, not gl_LOCK_BODY.
3240         (gl_LOCK_BODY): Remove settings of CPPFLAGS, now done in
3241         gl_LOCK_EARLY_BODY.
3242         (gl_LOCK): Require gl_LOCK_BODY.
3243
3244 2006-10-04  Bruno Haible  <bruno@clisp.org>
3245
3246         * lib/gl_oset.h (gl_setelement_threshold_fn): New type.
3247         (gl_oset_search_atleast): New declaration.
3248         (struct gl_oset_implementation): Add field 'search_atleast'.
3249         (gl_oset_search_atleast): New inline function.
3250         * lib/gl_oset.c (gl_oset_search_atleast): New function.
3251         * lib/gl_array_oset.c (gl_array_search_atleast): New function.
3252         (gl_array_oset_implementation): Update.
3253         * lib/gl_anytree_oset.h (gl_tree_search_atleast): New function.
3254         * lib/gl_avltree_oset.c (gl_avltree_oset_implementation): Update.
3255         * lib/gl_rbtree_oset.c (gl_rbtree_oset_implementation): Update.
3256
3257 2006-10-04  Bruno Haible  <bruno@clisp.org>
3258
3259         * lib/fatal-signal.c (fatal_signals) [WOE32]: Add the SIGBREAK signal.
3260
3261 2006-10-03  Bruno Haible  <bruno@clisp.org>
3262
3263         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Renamed
3264         from gl_avltreehash_list_implementation.
3265
3266 2006-10-03  Bruno Haible  <bruno@clisp.org>
3267
3268         * lib/gl_oset.c (gl_oset_add): Fix return type.
3269
3270 2006-10-02  Paolo Bonzini  <bonzini@gnu.org>  (tiny change)
3271
3272         * lib/quotearg.c (mbstate_t) [!HAVE_MBRTOWC]: #define to int.
3273
3274 2006-10-02  Eric Blake  <ebb9@byu.net>
3275
3276         * modules/strnlen (Depends-on): Add extensions.
3277
3278 2006-10-02  Eric Blake  <ebb9@byu.net>
3279
3280         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Use autoconf's
3281         definition in 2.60+.
3282
3283 2006-10-02  Dmitry V. Levin  <ldv@altlinux.org>
3284
3285         * lib/fts.c (fts_close, fts_build, fts_palloc): Remove redundant
3286         checks.
3287
3288 2006-10-02  Bruno Haible  <bruno@clisp.org>
3289
3290         * gnulib-tool (func_emit_lib_Makefile_am): Don't add no-dependencies
3291         to the AUTOMAKE_OPTIONS.
3292         Reported by Jim Meyering.
3293
3294 2006-09-29  Paul Eggert  <eggert@cs.ucla.edu>
3295
3296         Work around bug in Solaris 10 /proc file system:
3297         /proc/self/fd/NNN/.. isn't the parent directory of
3298         the directory whose file descriptor is NNN.  This needs to
3299         be worked around at run time, not compile time, since a
3300         program might be built on Solaris 8, where things work, and
3301         run on Solaris 10.
3302         * lib/openat-priv.h (BUILD_PROC_NAME): Remove.  All callers changed
3303         to use the following interface instead:
3304         (OPENAT_BUFFER_SIZE): New macro.
3305         (openat_proc_name): New function.
3306         * lib/at-func.c (AT_FUNC_NAME): Adjust to above changes.
3307         * lib/openat.c (openat_permissive, openat_needs_fchdir, fdopendir):
3308         Likewise.
3309         * lib/openat-proc.c: New file.
3310         * modules/openat (Files): Add lib/openat-proc.c.
3311         (Depends-on): Add same-inode, stdbool.
3312         * m4/openat.m4 (gl_FUNC_OPENAT): Add AC_LIBOBJ(openat-proc).
3313
3314 2006-09-29  Bruno Haible  <bruno@clisp.org>
3315
3316         * lib/fwriteerror.h (fwriteerror_no_ebadf): New declaration.
3317         * lib/(do_fwriteerror): Renamed from fwriteerror. Add ignore_ebadf
3318         argument. Set stdout_closed before testing for ferror, not after.
3319         (fwriteerror, fwriteerror_no_ebadf): New functions.
3320
3321 2006-09-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3322
3323         * m4/intmax.m4 (gt_TYPE_INTMAX_T): Avoid unused variables warning.
3324
3325 2006-09-28  Paolo Bonzini  <bonzini@gnu.org>
3326
3327         * lib/poll.c (rpl_poll) [__APPLE__]: Use FIONREAD instead of MSG_PEEK.
3328         * m4/poll.m4: Look for sys/ioctl.h and sys/filio.h.
3329
3330 2006-09-28  Jim Meyering  <jim@meyering.net>
3331
3332         * lib/mkdir-p.c: Include "dirchownmod.h", not "dirchownmod.c".
3333         Include <unistd.h>.
3334
3335 2006-09-28  Bruno Haible  <bruno@clisp.org>
3336
3337         * modules/avltreehash-list (Depends-on): Add stdint, remove size_max.
3338         * modules/linkedhash-list (Depends-on): Likewise.
3339         * modules/rbtreehash-list (Depends-on): Likewise.
3340
3341 2006-09-28  Bruno Haible  <bruno@clisp.org>
3342
3343         * lib/strndup.h: Simplify the redefinition of strndup.
3344         (_GL_CONCAT, _GL_XCONCAT, __STRNDUP_ID): Remove macros.
3345         * m4/strndup.m4 (gl_FUNC_STRNDUP): Don't define __STRNDUP_PREFIX.
3346
3347 2006-09-28  Bruno Haible  <bruno@clisp.org>
3348
3349         * lib/gl_avltreehash_list.c: Include <stdint.h> instead of size_max.h.
3350         * lib/gl_linkedhash_list.c: Likewise.
3351         * lib/gl_rbtreehash_list.c: Likewise.
3352
3353 2006-09-27  Paul Eggert  <eggert@cs.ucla.edu>
3354
3355         * lib/canon-host.c (canon_host_r): Work around bug in Darwin 7.9.0
3356         getaddrinfo.
3357
3358         * lib/__fpending.h: Don't include <stdio_ext.h> unless
3359         HAVE_DECL___FPENDING.  This avoids a bug with lsbcc, where
3360         it causes <stdio_ext.h> to cause a compile-time error.
3361         Problem reported by Nelson H. F. Beebe.
3362         * lib/getpass.c: Likewise, except for HAVE_DECL___FSETLOCKING instead
3363         of HAVE_DECL___PENDING.
3364
3365         * m4/fpending.m4 (gl_FUNC_FPENDING): Check for stdio_ext at most once.
3366         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for __fsetlocking's
3367         declaration.
3368
3369 2006-09-27  Jim Meyering  <jim@meyering.net>
3370
3371         This file could end up with a definition for a function
3372         named __strndup, rather than rpl_strndup on a system with
3373         incomplete weak_alias support.
3374         * lib/strndup.c (strndup): Rename from __strndup.
3375         Remove #defines that used to map __strndup to strndup.
3376         Don't use K&R prototypes.
3377         Remove LIBC-related code, since this file is not sync'd with glibc.
3378         * lib/strndup.h: Revamp, accordingly.
3379         * m4/strndup.m4: Modernize.
3380
3381 2006-09-26  Paul Eggert  <eggert@cs.ucla.edu>
3382
3383         * modules/savewd (Depends-on): Add 'raise'.
3384         * lib/savewd.c: Include <signal.h>, for 'raise'.
3385
3386 2006-09-26  Jim Meyering  <jim@meyering.net>
3387
3388         * m4/acl.m4 (AC_FUNC_ACL): Disable ACL support altogether
3389         when we detect Darwin 8.7.0's acl_get_file bug.
3390         Rearrange to perform the new (below) run-test while $LIBS
3391         contains any acl-related library.  Set USE_ACL at the end.
3392         (gl_ACL_GET_FILE): New function.
3393
3394 2006-09-26  Eric Blake  <ebb9@byu.net>
3395
3396         * lib/verror.c: Include <config.h> unconditionally.
3397
3398 2006-09-25  Paul Eggert  <eggert@cs.ucla.edu>
3399
3400         * modules/clock-time (Maintainer): Add self.
3401         * modules/getlogin_r (Depends-on): Add extensions.
3402
3403 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3404
3405         * modules/clock-time: New module.
3406         * modules/nanosleep (Depends-on): Add clock-time.
3407         * modules/gethrxtime (Depends-on): Likewise.
3408         * modules/gettime (Depends-on): Likewise.
3409         * modules/settime (Depends-on): Likewise.
3410
3411         * modules/fts-lgpl: Depend on openat.
3412         * modules/mkancesdirs: Depend on savewd.
3413         * modules/mkdir-p: Likewise.
3414
3415 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3416
3417         * m4/host-os.m4 (gl_HOST_OS): Require AC_CANONICAL_HOST.
3418
3419         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Rename cache variable from
3420         `gl_have_arbitrary_file_name_length_limit' to
3421         `gl_cv_have_arbitrary_file_name_length_limit', so that caching
3422         actually works between configure runs.
3423
3424 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3425             Bruno Haible  <bruno@clisp.org>
3426
3427         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Include <string.h>.
3428
3429 2006-09-25  Jim Meyering  <jim@meyering.net>
3430
3431         * m4/fcntl_h.m4 (gl_FCNTL_H): Fix typo in test for failed open.
3432         This typo caused coreutils/tests/dd/misc to fail on Darwin 8.7.0.
3433
3434 2006-09-25  Eric Blake  <ebb9@byu.net>
3435
3436         * gnulib-tool (func_import, func_create_testdir): Fix typos in
3437         exec's in 2006-09-18 patch when shuffling fds.
3438
3439 2006-09-25  Bruno Haible  <bruno@clisp.org>
3440
3441         * m4/getloadavg.m4 (gl_GETLOADAVG): Fix directory in error message.
3442         Reported by Jim Meyering.
3443
3444 2006-09-24  Jim Meyering  <jim@meyering.net>
3445
3446         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Don't use '>' to
3447         compare a pointer against a literal "0".  That caused failures with
3448         at least HP-UX's hpcc.
3449
3450 2006-09-22  Simon Josefsson  <jas@extundo.com>
3451
3452         * modules/gc-sha1:
3453         * modules/gc-md4:
3454         * modules/gc-hmac-sha1:
3455         * modules/gc-hmac-md5:
3456         * modules/gc-des:
3457         * modules/gc-arcfour: Distribute more files.
3458
3459 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3460
3461         * lib/gl_anylinked_list2.h [lint] (gl_linked_iterator)
3462         (gl_linked_iterator_from_to): Initialize struct completely.
3463         * lib/gl_anytree_list2.h [lint] (gl_tree_iterator): Likewise.
3464         (gl_tree_iterator_from_to): Likewise
3465         * lib/gl_anytree_oset.h [lint] (gl_tree_iterator): Likewise.
3466         * lib/gl_array_list.c [lint] (gl_array_iterator)
3467         (gl_array_iterator_from_to): Likewise.
3468         * lib/gl_array_oset.c [lint] (gl_array_iterator): Likewise.
3469         * lib/gl_carray_list.c [lint] (gl_carray_iterator)
3470         (gl_carray_iterator_from_to): Likewise.
3471
3472         * lib/gc-gnulib.c [GC_USE_HMAC_SHA1]: include hmac.h for hmac_sha1.
3473         * lib/md4.c (md4_process_block): Remove unused variable.
3474         * lib/rijndael-api-fst.c (rijndaelBlockDecrypt): GCC suggests
3475         parentheses for clarity.
3476
3477 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3478
3479         * modules/bison-i18n (Depends-on): Add gettext.
3480
3481 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3482
3483         * m4/fsusage.m4 (gl_STATFS_TRUNCATES): Avoid unused variable.
3484         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): Likewise.
3485         * m4/jm-winsz1.m4 (gl_HEADER_TIOCGWINSZ_IN_TERMIOS_H): Likewise;
3486         also add missing comma that caused broken test.
3487         * m4/link-follow.m4 (gl_AC_FUNC_LINK_FOLLOWS_SYMLINK): Include
3488         stdlib.h, for `abort'.
3489         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Avoid unused
3490         variables.
3491         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Check for and
3492         include unistd.h if present, for `rmdir'.
3493         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): Avoid unused
3494         variables.
3495         * m4/putenv.m4 (gl_FUNC_PUTENV): Rewrite using AC_RUN_IFELSE, and
3496         in the process include standard headers for prototypes.
3497         * m4/readutmp.m4 (gl_READUTMP): Require AC_GNU_SOURCE, so utmpxname
3498         gets declared on GNU/Linux.
3499         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Check for and include
3500         unistd.h, for `rmdir'.
3501         * m4/time_r.m4 (gl_TIME_R): Avoid unused variables.
3502
3503         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Avoid expression that is
3504         always true.
3505         * m4/strndup.m4 (gl_FUNC_STRNDUP): include stdlib.h, for `free'.
3506
3507         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Avoid gcc -Wall warnings.
3508
3509 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3510
3511         * gnulib-tool (func_version): Create output all at once.  This
3512         may help avoid triggering unnecessary SIGPIPEs, and at any
3513         rate it doesn't hurt.
3514
3515 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3516             Bruno Haible  <bruno@clisp.org>
3517
3518         * m4/lock.m4 (gl_LOCK_BODY): Avoid unused variables warning.
3519         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
3520         * m4/signed.m4 (bh_C_SIGNED): Likewise.
3521
3522         * m4/vasprintf.m4 (gl_PREREQ_VASPRINTF_H): New macro.
3523         (gl_FUNC_VASPRINTF): Invoke it.
3524
3525 2006-09-22  Bruno Haible  <bruno@clisp.org>
3526
3527         * m4/getloadavg.m4 (gl_GETLOADAVG): Expect the directory of
3528         getloadavg.c as first argument.
3529
3530 2006-09-22  Bruno Haible  <bruno@clisp.org>
3531
3532         * gnulib-tool (func_import, func_create_testdir): Set gl_source_base
3533         at the beginning of the gl_INIT macro.
3534         * modules/getloadavg (configure.ac): Pass $gl_source_base to
3535         gl_GETLOADAVG.
3536
3537 2006-09-22  Bruno Haible  <bruno@clisp.org>
3538
3539         * gnulib-tool (func_create_megatestdir): Don't include the config-h
3540         module.
3541         Suggested by Ralf Wildenhues.
3542
3543 2006-09-20  Paul Eggert  <eggert@cs.ucla.edu>
3544
3545         Import this patch from libc:
3546
3547         2006-09-06  Jakub Jelinek  <jakub@redhat.com>
3548
3549         * lib/regex_internal.c (re_string_reconstruct): Handle
3550         offset < pstr->valid_raw_len && pstr->offsets_needed case.
3551         Ensure no bytes read before raw_mbs array.  Pass a saved copy of
3552         pstr->valid_len - 1 rather than pstr->valid_raw_len - 1 to
3553         re_string_context_at.
3554
3555         * m4/regex.m4 (gl_REGEX): Check for locale.h, since the test
3556         now requires it.
3557         (gl_PREREQ_REGEX): Don't check for locale.h any more, since
3558         gl_REGEX now does it for us.
3559         (gl_REGEX): Add test taken from
3560         http://sourceware.org/ml/libc-hacker/2006-09/msg00008.html.
3561
3562         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Require AC_SYS_LARGEFILE.
3563         Check that large offsets work.  Modernize Autoconf usages.
3564         Prefer "yes" to mean a good thing rather than a bad.
3565         Don't put "#define mkstemp" in config.h, as this might interfere
3566         with standard system headers that "#define mkstemp mkstemp64".
3567
3568         * modules/mkstemp (Depends-on): Add extensions, so that
3569         mkstemp is visible on some platforms.
3570         (Makefile.am): Add mkstemp.h to EXTRA_DIST.
3571         (Include): Change to "mkstemp.h" from <stdlib.h>.
3572         (Files): Add mkstemp.h.
3573
3574         * lib/mkstemp.h: New file, since some standard headers
3575         #define mkstemp.
3576         * lib/mkstemp.c: Revamp to put the !_LIBC code together.
3577         Include "mkstemp.h".
3578         Make the _LIBC code resemble glibc original more,
3579         e.g., use K&R style.
3580         * lib/mkstemp-safer.c: Include "mkstemp.h" instead of <stdlib.h>.
3581         (mkstemp): Remove, since mkstemp.h does this for us.
3582         * lib/stdlib--.h: Include mkstemp.h.
3583
3584         Import this patch from libc:
3585
3586         2006-04-07  Ulrich Drepper  <drepper@redhat.com>
3587
3588         * lib/tempname.c (__gen_tempname): Change attempts_min
3589         into a macro.  Use preprocessor to decide how to initialize
3590         attempts [Coverity CID 67].
3591
3592 2006-09-20  Bruno Haible  <bruno@clisp.org>
3593
3594         * lib/mkdtemp.c: Import from libc.
3595         2006-04-07  Ulrich Drepper  <drepper@redhat.com>
3596                 * sysdeps/posix/tempname.c (__gen_tempname): Change
3597                 attempts_min into a macro.  Use preprocessor to decide how to
3598                 initialize attempts [Coverity CID 67].
3599         2001-11-27  Paul Eggert  <eggert@twinsun.com>
3600                 * sysdeps/posix/tempname.c (__gen_tempname): Try at least
3601                 ATTEMPTS_MIN or TMP_MAX times, whichever is greater.
3602
3603 2006-09-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3604
3605         * gnulib-tool (func_exit): New function, to allow to pass the
3606         exit status portably through the trap.  Use everywhere.
3607         (--help, --version): Signal a write error.
3608         (trap): catch SIGPIPE, for write errors.
3609         Exit at the end of the trap, with the correct exit status.
3610
3611 2006-09-19  Karl Berry  <karl@gnu.org>
3612
3613         * doc/gnulib.texi: note about the license texinfo files.
3614
3615 2006-09-19  Eric Blake  <ebb9@byu.net>
3616
3617         * gnulib-tool: Avoid space-tab.
3618
3619 2006-09-18  Paul Eggert  <eggert@cs.ucla.edu>
3620
3621         * lib/getaddrinfo.c (getaddrinfo) [defined HAVE_IPV6]: Fix typo
3622         that prevented coreutils 6.1 from building.  Problem reported
3623         by Petter Reinholdtsen.
3624
3625 2006-09-18  Paul Eggert  <eggert@cs.ucla.edu>
3626
3627         * gnulib-tool (avoidlist): Fix typo that broke options like
3628         --avoid=lock that are used by coreutils bootstrap.
3629
3630 2006-09-18  Mark D. Baushke  <mdb@gnu.org>
3631
3632         * m4/inttypes.m4 (gl_INTTYPES_H): Quote "test" args
3633         more systematically.
3634
3635 2006-09-18  Jim Meyering  <jim@meyering.net>
3636
3637         * lib/savewd.c (savewd_restore): Don't shadow: s/status/child_status/.
3638
3639 2006-09-18  Bruno Haible  <bruno@clisp.org>
3640
3641         * modules/inttypes (Files): Remove m4/inttypes-h.m4.
3642
3643 2006-09-18  Bruno Haible  <bruno@clisp.org>
3644
3645         * m4/inttypes-h.m4 (gl_HEADER_INTTYPES_H): Remove macro.
3646         * m4/inttypes-pri.m4: Require autoconf >= 2.52.
3647         (gt_INTTYPES_PRI): Invoke AC_CHECK_HEADERS on inttypes.h. Test
3648         ac_cv_header_inttypes_h instead of gl_cv_header_inttypes_h.
3649         * m4/gettext.m4: Require autoconf >= 2.52.
3650         (gt_INTL_SUBDIR_CORE): Invoke AC_CHECK_HEADERS on inttypes.h.
3651         * m4/inttypes.m4 (gl_INTTYPES_H): Test ac_cv_header_inttypes_h instead
3652         of gl_cv_header_inttypes_h.
3653
3654 2006-09-18  Bruno Haible  <bruno@clisp.org>
3655
3656         * lib/javaversion.c: Include configmake.h.
3657
3658 2006-09-18  Bruno Haible  <bruno@clisp.org>
3659
3660         * gnulib-tool (func_import, func_create_testdir): Use exec tricks to
3661         avoid that the while loops be executed in a subshell.
3662
3663 2006-09-18  Bruno Haible  <bruno@clisp.org>
3664
3665         * MODULES.html.sh (func_module): Break long lines.
3666         Suggested by Bruce Korb <bkorb@gnu.org>.
3667
3668 2006-09-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3669
3670         Speed up by a factor of 1.12.
3671         * gnulib-tool (nl): New variable.
3672         (func_import): Rewrite include directive extraction to only read each
3673         directive once.
3674
3675 2006-09-17  Bruno Haible  <bruno@clisp.org>
3676
3677         * modules/javaversion (Makefile.am): Remove DEFS setting.
3678         (Depends-on): Add configmake, for PKGDATADIR definition.
3679
3680 2006-09-17  Bruno Haible  <bruno@clisp.org>
3681
3682         * gnulib-tool (func_create_testdir): Rewrite all files at once.
3683
3684 2006-09-17  Bruno Haible  <bruno@clisp.org>
3685
3686         * gnulib-tool (func_append): New function, stolen from libtool.m4.
3687         (func_modules_transitive_closure, func_modules_add_dummy,
3688         func_modules_to_filelist, func_import, func_create_testdir,
3689         func_create_megatestdir, ...): Use it wherever possible.
3690         Suggested by Ralf Wildenhues.
3691
3692 2006-09-16  Karl Berry  <karl@gnu.org>
3693
3694         * doc/fdl.texi (ADDENDUM): switch to @heading from @appendixsubsec,
3695         to avoid sectioning errors.
3696         * doc/lgpl.texi, gpl.texi (Copying): downcase @unnumbered title.
3697         [ifinfo]: blank line after @center-ed titles.
3698         * doc/lgpl.texi (Library Copying): Rename main node to GNU LGPL.
3699         Spell FSF address consistently with others.
3700         (These changes approved by rms.)
3701
3702 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3703
3704         Speed up by a factor of 1.61.
3705         * gnulib-tool (func_modules_transitive_closure): Rewrite to not check
3706         already checked module names again.
3707
3708 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3709
3710         Speed up by a factor of 1.13.
3711         * gnulib-tool (func_import): Rewrite all old_files at once; likewise
3712         for new_files, and the input to func_add_or_update.
3713
3714 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3715
3716         * gnulib-tool (func_all_modules, func_modules_to_filelist, func_import,
3717         func_create_testdir, ...): Change 'sort | uniq' to 'sort -u'.
3718
3719 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
3720
3721         * modules/mkancesdirs (Depends-on): Add fcntl.
3722         * modules/savewd: New file.
3723         * MODULES.html.sh (File system functions): Add savewd.
3724
3725         * modules/configmake (Makefile.am): Add support for the
3726         Automake-supplied PKGLIBDIR, PKGINCLUDEDIR, PKGDATADIR.
3727
3728 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
3729
3730         * m4/savewd.m4: New file.
3731
3732 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
3733
3734         * lib/dirchownmod.c: Don't include fcntl.h; no longer needed.
3735         (dirchownmod): New arg FD.  All callers changed.
3736         Use FD rather than opening the directory ourself, as opening is
3737         now the caller's responsibility.
3738         * lib/dirchownmod.h: Likewise.
3739         * lib/mkancesdirs.c: Include <sys/types.h>, for portability to older
3740         hosts that require <sys/types.h> before <sys/stat.h>.  Include
3741         fcntl.h, savewd.h, and unistd.h, not dirname.h and stat-macros.h.
3742         (test_dir): Remove.
3743         (mkancesdirs): Return length of prefix of FILE that has already
3744         been made, or -2 if there is a child doing the work.  Redo
3745         algorithm so that it is O(N) rather than O(N**2).  Optimize away
3746         ".", and treat ".." specially since it might stray back into
3747         already-created areas.  Use a subprocess if necessary.  New arg
3748         WD; all users changed.  MAKE_DIR function should now return 1
3749         if it creates a directory that is not readable.  Return -2 if
3750         a child process is spun off.
3751         * lib/mkancesdirs.h: Include <stddef.h>, for ptrdiff_t.
3752         Adjust signature to match code.
3753         * lib/mkdir-p.c: Include dirname.h, for IS_ABSOLUTE_FILE_NAME.
3754         (make_dir_parents): Use a subprocess if necessary.  New arg WD;
3755         all users changed.
3756         * lib/savewd.c, lib/savewd.h: New files.
3757
3758 2006-09-15  Jim Meyering  <jim@meyering.net>
3759
3760         * modules/rename-dest-slash: New module.
3761         * MODULES.html.sh (posix_compat): Add it here.
3762
3763         * modules/rename: Reflect vb_FUNC_RENAME -> gl_FUNC_RENAME change.
3764
3765 2006-09-15  Jim Meyering  <jim@meyering.net>
3766
3767         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH): New
3768         file.
3769
3770         * m4/rename.m4 (gl_FUNC_RENAME): Rename from vb_FUNC_RENAME.
3771
3772 2006-09-15  Jim Meyering  <jim@meyering.net>
3773
3774         * lib/rename-dest-slash.c (has_trailing_slash): Use
3775         FILE_SYSTEM_PREFIX_LEN, for non-POSIX systems.
3776         (rpl_rename_dest_slash): Perform the cheaper trailing slash
3777         test before testing whether SRC is a directory.
3778         Suggestions from Bruno Haible.
3779
3780         Avoid a warning about an unused variable.
3781         * lib/regex_internal.c (re_dfa_add_node): Move declaration of "type"
3782         into the #ifdef block where it's used.
3783
3784         * lib/rename-dest-slash.c: New file.
3785
3786 2006-09-14  Bruno Haible  <bruno@clisp.org>
3787
3788         * lib/allocsa.c: Include <config.h> unconditionally.
3789         * lib/asnprintf.c: Likewise.
3790         * lib/asprintf.c: Likewise.
3791         * lib/c-strcasecmp.c: Likewise.
3792         * lib/c-strcasestr.c: Likewise.
3793         * lib/c-strncasecmp.c: Likewise.
3794         * lib/c-strstr.c: Likewise.
3795         * lib/classpath.c: Likewise.
3796         * lib/clean-temp.c: Likewise.
3797         * lib/concatpath.c: Likewise.
3798         * lib/copy-file.c: Likewise.
3799         * lib/csharpcomp.c: Likewise.
3800         * lib/csharpexec.c: Likewise.
3801         * lib/execute.c: Likewise.
3802         * lib/fatal-signal.c: Likewise.
3803         * lib/findprog.c: Likewise.
3804         * lib/fwriteerror.c: Likewise.
3805         * lib/gl_array_list.c: Likewise.
3806         * lib/gl_array_oset.c: Likewise.
3807         * lib/gl_avltree_list.c: Likewise.
3808         * lib/gl_avltree_oset.c: Likewise.
3809         * lib/gl_avltreehash_list.c: Likewise.
3810         * lib/gl_carray_list.c: Likewise.
3811         * lib/gl_linked_list.c: Likewise.
3812         * lib/gl_linkedhash_list.c: Likewise.
3813         * lib/gl_list.c: Likewise.
3814         * lib/gl_oset.c: Likewise.
3815         * lib/gl_rbtree_list.c: Likewise.
3816         * lib/gl_rbtree_oset.c: Likewise.
3817         * lib/gl_rbtreehash_list.c: Likewise.
3818         * lib/imaxabs.c: Likewise.
3819         * lib/imaxdiv.c: Likewise.
3820         * lib/javacomp.c: Likewise.
3821         * lib/javaexec.c: Likewise.
3822         * lib/javaversion.c: Likewise.
3823         * lib/linebreak.c: Likewise.
3824         * lib/localcharset.c: Likewise.
3825         * lib/lock.c: Likewise.
3826         * lib/mbchar.c: Likewise.
3827         * lib/mbswidth.c: Likewise.
3828         * lib/mkdtemp.c: Likewise.
3829         * lib/pipe.c: Likewise.
3830         * lib/printf-args.c: Likewise.
3831         * lib/printf-parse.c: Likewise.
3832         * lib/progname.c: Likewise.
3833         * lib/progreloc.c: Likewise.
3834         * lib/readlink.c: Likewise.
3835         * lib/sh-quote.c: Likewise.
3836         * lib/stpcpy.c: Likewise.
3837         * lib/stpncpy.c: Likewise.
3838         * lib/strcasecmp.c: Likewise.
3839         * lib/strcasestr.c: Likewise.
3840         * lib/strcspn.c: Likewise.
3841         * lib/striconv.c: Likewise.
3842         * lib/strncasecmp.c: Likewise.
3843         * lib/strnlen1.c: Likewise.
3844         * lib/strstr.c: Likewise.
3845         * lib/strtok_r.c: Likewise.
3846         * lib/tls.c: Likewise.
3847         * lib/tmpdir.c: Likewise.
3848         * lib/unicodeio.c: Likewise.
3849         * lib/unsetenv.c: Likewise.
3850         * lib/vasnprintf.c: Likewise.
3851         * lib/vasprintf.c: Likewise.
3852         * lib/wait-process.c: Likewise.
3853         * lib/xallocsa.c: Likewise.
3854         * lib/xsetenv.c: Likewise.
3855         * lib/xstriconv.c: Likewise.
3856
3857 2006-09-13  Simon Josefsson  <jas@extundo.com>
3858
3859         * m4/getdate.m4: Don't AC_LIBOBJ([getdate]), automake takes care of
3860         that internally, suggested by Ralf Wildenhues
3861         <Ralf.Wildenhues@gmx.de>.
3862
3863 2006-09-13  Simon Josefsson  <jas@extundo.com>
3864
3865         * gnulib-tool (func_emit_lib_Makefile_am): Use $(LIBOBJS), not
3866         @LIBOBJS@.
3867         Suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
3868
3869 2006-09-13  Paul Eggert  <eggert@cs.ucla.edu>
3870
3871         * lib/_fpending.c: Include <config.h> unconditionally, since we no
3872         longer worry about uses that don't define HAVE_CONFIG_H.
3873         * lib/acl.c, lib/alloca.c, lib/argmatch.c, lib/atexit.c:
3874         * lib/backupfile.c, lib/basename.c, lib/c-stack.c, lib/c-strtod.c:
3875         * lib/calloc.c,lib/ canon-host.c, lib/canonicalize.c, lib/chdir-long.c:
3876         * lib/chdir-safer.c, lib/chown.c, lib/cloexec.c, lib/close-stream.c:
3877         * lib/closeout.c, lib/creat-safer.c, lib/cycle-check.c, lib/diacrit.c:
3878         * lib/dirchownmod.c, lib/dirfd.c, lib/dirname.c, lib/dup-safer.c:
3879         * lib/dup2.c, lib/error.c, lib/euidaccess.c, lib/exclude.c:
3880         * lib/exitfail.c, lib/fchmodat.c, lib/fchown-stub.c, lib/fd-safer.c:
3881         * lib/file-type.c, lib/fileblocks.c, lib/filemode.c, lib/filenamecat.c:
3882         * lib/fnmatch.c, lib/fopen-safer.c, lib/fprintftime.c, lib/free.c:
3883         * lib/fsusage.c, lib/ftruncate.c, lib/fts-cycle.c, lib/fts.c:
3884         * lib/full-write.c, lib/gai_strerror.c, lib/getcwd.c, lib/getdate.y:
3885         * lib/getdomainname.c, lib/getgroups.c, lib/gethostname.c:
3886         * lib/gethrxtime.c, lib/getloadavg.c, lib/getlogin_r.c:
3887         * lib/getndelim2.c, lib/getnline.c, lib/getopt.c, lib/getopt1.c:
3888         * lib/getpass.c, lib/gettime.c, lib/gettimeofday.c, lib/getugroups.c:
3889         * lib/getusershell.c, lib/glob.c, lib/group-member.c:
3890         * lib/hard-locale.c, lib/hash-pjw.c, lib/hash.c, lib/human.c:
3891         * lib/idcache.c, lib/inet_ntop.c, lib/inet_pton.c, lib/inttostr.c:
3892         * lib/isdir.c, lib/lchown.c, lib/linebuffer.c, lib/long-options.c:
3893         * lib/lstat.c, lib/malloc.c, lib/md5.c, lib/memcasecmp.c, lib/memchr.c:
3894         * lib/memcmp.c, lib/memcoll.c, lib/memcpy.c, lib/memmove.c:
3895         * lib/memrchr.c, lib/mkancesdirs.c, lib/mkdir-p.c, lib/mkdir.c:
3896         * lib/mkdirat.c, lib/mkstemp-safer.c, lib/mkstemp.c, lib/modechange.c:
3897         * lib/mountlist.c, lib/nanosleep.c, lib/obstack.c, lib/open-safer.c:
3898         * lib/openat-die.c, lib/openat.c, lib/pagealign_alloc.c, lib/physmem.c:
3899         * lib/pipe-safer.c, lib/posixtm.c, lib/posixver.c, lib/putenv.c:
3900         * lib/quote.c, lib/quotearg.c, lib/raise.c, lib/readtokens.c:
3901         * lib/readtokens0.c, lib/readutmp.c, lib/realloc.c, lib/regex.c:
3902         * lib/rename.c, lib/rmdir.c, lib/rpmatch.c, lib/safe-read.c:
3903         * lib/same.c, lib/save-cwd.c, lib/savedir.c, lib/setenv.c:
3904         * lib/settime.c, lib/sha1.c, lib/sig2str.c, lib/snprintf.c:
3905         * lib/strdup.c, lib/strerror.c, lib/strftime.c, lib/stripslash.c:
3906         * lib/strndup.c, lib/strnlen.c, lib/strpbrk.c, lib/strtod.c:
3907         * lib/strtoimax.c, lib/strtol.c, lib/strverscmp.c, lib/tempname.c:
3908         * lib/time_r.c, lib/timegm.c, lib/tmpfile-safer.c, lib/unlinkdir.c:
3909         * lib/userspec.c, lib/utime.c, lib/utimecmp.c, lib/utimens.c:
3910         * lib/version-etc-fsf.c, lib/version-etc.c, lib/xalloc-die.c:
3911         * lib/xgetcwd.c, lib/xgethostname.c, lib/xmalloc.c, lib/xmemcoll.c:
3912         * lib/xnanosleep.c, lib/xreadlink.c, lib/xstrtod.c, lib/xstrtoimax.c:
3913         * lib/xstrtol.c, lib/xstrtoumax.c, lib/yesno.c:
3914         Likewise.
3915
3916 2006-09-13  Eric Blake  <ebb9@byu.net>
3917
3918         * lib/getopt.c: Fix typo in last commit.
3919
3920 2006-09-12  Sergey Poznyakoff  <gray@gnu.org.ua>
3921
3922         * lib/argp-help.c (argp_doc): Make sure NULL is not passed to
3923         dgettext.
3924
3925 2006-09-12  Jim Meyering  <jim@meyering.net>
3926
3927         * lib/nanosleep.c: Include <sys/types.h> before sys/select.h, to avoid
3928         compilation failure (due to use of pid_t in latter) on NetBSD 1.6.
3929         Reported by Nelson H. F. Beebe.
3930
3931 2006-09-10  Sergey Poznyakoff  <gray@gnu.org.ua>
3932
3933         * lib/argp-parse.c (__argp_parse) [!_LIBC]: Make sure
3934         program_invocation_name and program_invocation_short_name are
3935         initialized.
3936         * lib/argp-namefrob.h: Move declarations of program_invocation_name
3937         and program_invocation_short_name to argp.h, so they are visible
3938         to user programs.
3939         * lib/argp.h: Likewise
3940
3941 2006-09-10  Bruno Haible  <bruno@clisp.org>
3942
3943         * modules/mkdtemp (Files): Remove m4/ulonglong.m4, m4/stdint_h.m4,
3944         m4/inttypes_h.m4, m4/uintmax_t.m4.
3945
3946 2006-09-10  Bruno Haible  <bruno@clisp.org>
3947
3948         * m4/mkdtemp.m4 (gl_PREREQ_MKDTEMP): Don't require
3949         gl_AC_TYPE_UINTMAX_T.
3950
3951 2006-09-10  Bruno Haible  <bruno@clisp.org>
3952
3953         * lib/mkdtemp.c: Include <stdint.h> always. Don't include <inttypes.h>.
3954
3955 2006-09-09  Sergey Poznyakoff  <gray@gnu.org.ua>
3956
3957         * lib/argp.h (struct argp): Document the N_("..") "\v" N_("..")
3958         convention.  Text proposed by Bruno Haible.
3959         (struct argp_option): Document the use of N_() wrappers.
3960
3961         * lib/argp-help.c (argp_doc): Split the untranslated doc string on
3962         '\v', and translate the two parts separately, instead of feeding
3963         the whole string to gettext.  This allows to exclude
3964         '\v' from the strings visible to the translator by writing doc
3965         strings as N_("..") "\v" N_("..").
3966
3967 2006-09-09  Paul Eggert  <eggert@cs.ucla.edu>
3968
3969         * config/srclist.txt: Undo latest change; the bug was fixed.
3970
3971 2006-09-09  Bruno Haible  <bruno@clisp.org>
3972
3973         * gnulib-tool (func_emit_lib_Makefile_am): Eliminate lib_LDFLAGS
3974         assignments if building a library without libtool.
3975         (func_emit_tests_Makefile_am): Likewise. Handle lib_* variables as
3976         in func_emit_lib_Makefile_am.
3977         (func_import): When building a static library libfoo.a, arrange to
3978         define variables LIBFOO_LIBDEPS and LIBFOO_LTLIBDEPS.
3979         (func_create_testdir): Likewise.
3980         * modules/gc (configure.ac, Makefile.am): If building statically,
3981         augment gl_libdeps and gl_ltlibdeps instead of lib_LDFLAGS.
3982         * modules/iconvme (configure.ac, Makefile.am): Likewise.
3983         * modules/striconv (configure.ac, Makefile.am): Likewise.
3984         Based on a suggestion by Ralf Wildenhues.
3985
3986 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
3987
3988         * m4/mktime.m4 (AC_FUNC_MKTIME): Sync from Autoconf.
3989         Check for unistd.h too, since Autoconf doesn't assume POSIX.
3990         Also:
3991
3992         2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
3993         Add year_2050_test to catch glibc bug 2821
3994         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
3995
3996         2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
3997         Prefer #ifdef to #if.
3998
3999         2006-04-02  Paul Eggert  <eggert@cs.ucla.edu>
4000         Return from 'main' instead of calling 'exit'.
4001
4002 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
4003
4004         * lib/mktime.c (guess_time_tm): Fix bug where mktime
4005         returned the maximum time_t value rather than (time_t) -1.
4006         Problem originally reported by William Bardwell
4007         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
4008
4009         * lib/isapipe.h (HAVE_FIFO_PIPES) [!defined HAVE_FIFO_PIPES]:
4010         Moved to here ...
4011         * lib/isapipe.c (HAVE_FIFO_PIPES) [!defined HAVE_FIFO_PIPES]:
4012         ... from here.
4013
4014 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
4015
4016         * config/srclist.txt: Temporarily comment out mktime.c until glibc bug
4017         2821 is fixed.
4018
4019 2006-09-08  Jim Meyering  <jim@meyering.net>
4020
4021         Don't make generated files read-only.  That would bother too many
4022         people.  However, do retain the ability to work when targets are
4023         read-only: remove the destination and temporary files before writing
4024         them (when generated via sed or echo), or by using the -f option for
4025         both cp and mv commands.  Suggestion to use -f from Paul Eggert.
4026         * modules/alloca-opt, modules/argz, modules/arpa_inet:
4027         * modules/byteswap, modules/configmake, modules/fcntl:
4028         * modules/fnmatch, modules/getopt, modules/glob, modules/inttypes:
4029         * modules/localcharset, modules/netinet_in, modules/poll:
4030         * modules/stdbool, modules/stdint, modules/sys_select:
4031         * modules/sys_socket, modules/sys_stat, modules/sysexits:
4032
4033 2006-09-08  Jim Meyering  <jim@meyering.net>
4034
4035         Avoid new build failure on FreeBSD 6.0.
4036         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Include
4037         <sys/param.h> when testing whether getmntinfo uses statvfs.  Patch by
4038         Pavel Tsekov, in <http://savannah.gnu.org/bugs/?17643>.
4039
4040 2006-09-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4041
4042         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Don't use plain echo.
4043
4044 2006-09-07  Jim Meyering  <jim@meyering.net>
4045
4046         Fix global typo in last change: use chmod u-w, not chmod u-x.
4047         Spotted by Paul Eggert and Bruce Korb.
4048         * modules/alloca-opt, modules/argz, modules/arpa_inet:
4049         * modules/byteswap, modules/configmake, modules/fcntl:
4050         * modules/fnmatch, modules/getopt, modules/glob, modules/inttypes:
4051         * modules/localcharset, modules/netinet_in, modules/poll:
4052         * modules/stdbool, modules/stdint, modules/sys_select:
4053         * modules/sys_socket, modules/sys_stat, modules/sysexits:
4054
4055 2006-09-06  Jim Meyering  <jim@meyering.net>
4056
4057         Make generated files be read-only.
4058         * modules/alloca-opt (Makefile.am): Work also when $@ is read-only.
4059         Ensure that each generated file is now read-only.
4060         * modules/argz: Likewise.
4061         * modules/arpa_inet: Likewise.
4062         * modules/byteswap: Likewise.
4063         * modules/configmake: Likewise.
4064         * modules/fcntl: Likewise.
4065         * modules/fnmatch: Likewise.
4066         * modules/getopt: Likewise.
4067         * modules/glob: Likewise.
4068         * modules/inttypes: Likewise.
4069         * modules/netinet_in: Likewise.
4070         * modules/poll: Likewise.
4071         * modules/stdbool: Likewise.
4072         * modules/stdint: Likewise.
4073         * modules/sys_select: Likewise.
4074         * modules/sys_socket: Likewise.
4075         * modules/sys_stat: Likewise.
4076         * modules/sysexits: Likewise.
4077         * modules/localcharset: Same as above, but continue using temporary
4078         file named "t-$@" (why different?) rather than the "$@-t" used
4079         everywhere else.
4080
4081         * modules/sysexits (Makefile.am): Replace literal occurrences
4082         of "sysexit.h" more readable, and more consistent, "$@".
4083
4084 2006-09-06  Bruno Haible  <bruno@clisp.org>
4085
4086         * modules/striconv: New file.
4087         * modules/xstriconv: New file.
4088         * MODULES.html.sh (Internationalization functions): Add striconv,
4089         xstriconv.
4090
4091 2006-09-06  Bruno Haible  <bruno@clisp.org>
4092
4093         * modules/gc (Makefile.am): Augment lib_LDFLAGS, not lib_LIBADD.
4094         * modules/iconvme (Makefile.am): Likewise. Also handle the case of
4095         not using libtool correctly.
4096
4097 2006-09-06  Bruno Haible  <bruno@clisp.org>
4098
4099         * lib/striconv.h: New file.
4100         * lib/striconv.c: New file, merging iconvme.c with GNU gettext's
4101         iconvstring.c.
4102         * lib/xstriconv.h: New file.
4103         * lib/xstriconv.c: New file.
4104
4105 2006-09-06  Bruno Haible  <bruno@clisp.org>
4106
4107         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
4108         lib_..._LDFLAGS.
4109
4110 2006-09-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4111
4112         * lib/argz_.h: Sync from Libtool.
4113
4114         2006-09-04  George Bosilca <bosilca@cs.utk.edu>
4115                 and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4116
4117         * lib/libltdl/argz_.h: It's __cplusplus, not _cplusplus.
4118
4119 2006-09-05  Davide Angelocola  <davide.angelocola@tiscali.it>
4120
4121         * modules/trim: New file.
4122
4123 2006-09-05  Davide Angelocola  <davide.angelocola@tiscali.it>
4124
4125         * lib/trim.h: New file.
4126         * lib/trim.c: New file.
4127
4128 2006-09-05  Bruno Haible  <bruno@clisp.org>
4129
4130         * MODULES.html.sh (String handling): Add trim.
4131
4132 2006-09-04  Karl Berry  <karl@gnu.org>
4133
4134         * config/srclist.txt (signed.m4, gettext.m4): changes not propagated
4135         until next release.
4136
4137 2006-09-03  Bruno Haible  <bruno@clisp.org>
4138
4139         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Locate mingw shared libraries
4140         correctly.
4141
4142 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
4143
4144         * m4/getloadavg.m4 (gl_GETLOADAVG): Use CONFIGURING_GETLOADAVG,
4145         not gl_GETLOADAVG.  Omit unneeded semicolons.
4146         Problems reported by Ralf Wildenhues in
4147         <http://lists.gnu.org/archive/html/bug-gnulib/2006-09/msg00000.html>.
4148         (gl_PREREQ_GETLOADAVG): Use AC_DEFUN, not m4_define.  Put
4149         at the end, which is the usual gnulib style.
4150
4151         * m4/fstypename.m4 (gl_FSTYPENAME): Use AC_CHECK_MEMBERS instead
4152         of doing all the work ourselves.
4153         * m4/fsusage.m4 (gl_PREREQ_FSUSAGE_EXTRA): Don't check for
4154         sys/statvfs.h since the code doesn't use HAVE_SYS_STATVFS_H.
4155
4156 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
4157
4158         * lib/getloadavg.c: Use CONFIGURING_GETLOADAVG, not gl_GETLOADAVG.
4159         Problem reported by Ralf Wildenhues in
4160         <http://lists.gnu.org/archive/html/bug-gnulib/2006-09/msg00000.html>.
4161
4162         * lib/mountlist.c: All uses of HAVE_F_FSTYPENAME_IN_STATFS replaced by
4163         HAVE_STRUCT_STATFS_F_FSTYPENAME.
4164
4165 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
4166
4167         * gnulib-tool (func_emit_lib_Makefile_am): Fix typos in
4168         yesterday's patch by changing test -n to test -z.
4169
4170 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
4171
4172         * modules/getloadavg (Files): Add m4/getloadavg.m4.
4173         (configure.ac): AC_FUNC_GETLOADAVG -> gl_GETLOADAVG, as
4174         the former is now obsolescent.
4175
4176         * modules/chdir-long (Depends-on): Add fcntl.
4177
4178 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
4179
4180         * m4/fnmatch.m4: Add comment that Autoconf AC_FUNC_FNMATCH is
4181         obsolescent, and programs should use gnulib instead.
4182         * m4/getloadavg.m4: New file, with contents taken from Autoconf
4183         but with prefixes changed.
4184
4185 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
4186
4187         * lib/getloadavg.c [defined gl_GETLOADAVG]: Don't include config.h
4188         or stdbool.h, because they might not exist while configuring.
4189
4190         * lib/chdir-long.c: Include <fcntl.h>, for O_DIRECTORY.
4191         Don't include unistd.h or limits.h; not needed, since chdir-long.h
4192         does that for us.
4193         (O_DIRECTORY): Remove.
4194
4195 2006-08-31  Eric Blake  <ebb9@byu.net>
4196
4197         * gnulib-tool: Don't let emacs change spaces to TAB.
4198
4199 2006-08-31  Bruno Haible  <bruno@clisp.org>
4200
4201         * gnulib-tool: When calling func_import more than once, do it in a
4202         subshell.
4203         Reported by Eric Blake <ebb9@byu.net>.
4204
4205 2006-08-31  Bruno Haible  <bruno@clisp.org>
4206
4207         * gnulib-tool (nl): Remove variable.
4208         (sed_transform_lib_file): Use more robust test for config-h module.
4209         (func_import): Fix typo in 2006-08-25 patch.
4210
4211 2006-08-31  Bruno Haible  <bruno@clisp.org>
4212
4213         * gnulib-tool (func_emit_lib_Makefile_am): When --makefile-name was
4214         specified, augment Makefile.am variables instead of assigning them.
4215
4216 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
4217
4218         Work around a bug in both the Linux and SunOS 64-bit kernels:
4219         nanosleep mishandles sleeps for longer than 2**31 seconds.
4220         Problem reported by Frank v Waveren in
4221         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00298.html>.
4222         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Require gl_CLOCK_TIME.
4223         Check for nanosleep bug.
4224         (LIB_NANOSLEEP): Append clock_gettime library if needed.
4225
4226 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
4227
4228         Work around a bug in both the Linux and SunOS 64-bit kernels:
4229         nanosleep mishandles sleeps for longer than 2**31 seconds.
4230         Problem reported by Frank v Waveren in
4231         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00298.html>.
4232         * lib/nanosleep.c (BILLION): New constant.
4233         (getnow) [HAVE_BUG_BIG_NANOSLEEP]: New functions.
4234         (rpl_nanosleep) [HAVE_BUG_BIG_NANOSLEEP]: Completely new
4235         implementation.
4236
4237 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
4238
4239         * modules/nanosleep (Depends-on): Add gettime.
4240
4241 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
4242         and Simon Josefsson  <jas@extundo.com>
4243         and Oskar Liljeblad  <oskar@osk.mine.nu>
4244
4245         * MODULES.html.sh (Support for building documentation): Add gpl, lgpl.
4246         * gnulib-tool (func_import): New license type 'unmodifiable license
4247         text'.
4248         * modules/fdl: Use it.  Longer description.
4249         * module/gpl, module/lgpl: New files.
4250
4251 2006-08-30  Jim Meyering  <jim@meyering.net>
4252
4253         * lib/isapipe.c (isapipe): Rename local s/fd/fd_pair/ to avoid
4254         shadowing the parameter.
4255
4256 2006-08-29  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4257
4258         Sync from Libtool:
4259
4260         2006-08-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4261
4262         * lib/libltdl/argz.c: Use `#ifdef HAVE_CONFIG_H', to facilitate code
4263         sharing with gnulib.  Report by Eric Blake.
4264
4265 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
4266
4267         * modules/isapipe: New file.
4268         * MODULES.html.sh (File descriptor based Input/Output): Add isapipe.
4269
4270 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
4271
4272         * modules/configmake (Makefile.am): Add a comment, and omit
4273         the CONFIGMAKE_ prefix from generated macro names.  Suggested
4274         by Bruno Haible.
4275
4276 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
4277
4278         * m4/isapipe.m4: New file.
4279
4280 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
4281
4282         * lib/isapipe.c, lib/isapipe.h: New files.
4283
4284 2006-08-29  Jim Meyering  <jim@meyering.net>
4285
4286         * modules/configmake (Makefile.am): Make configmake.h depend on
4287         Makefile.  Otherwise, a stale configmake.h could hang around.
4288
4289 2006-08-29  Eric Blake  <ebb9@byu.net>
4290
4291         * lib/error.c (error_at_line, print_errno_message): Match libc, after
4292         resolution of upstream bug 3044.
4293
4294 2006-08-29  Bruno Haible  <bruno@clisp.org>
4295
4296         * modules/localcharset (Depends-on): Add configmake.
4297         (Makefile.am): Remove setting of LIBDIR through DEFS.
4298
4299 2006-08-29  Bruno Haible  <bruno@clisp.org>
4300
4301         * lib/localcharset.c: Include configmake.h in order to get LIBDIR
4302         defined.
4303
4304 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
4305
4306         * modules/fcntl: New file.
4307         * modules/chdir-safer (Depends-on): Add fcntl.
4308         * modules/fts: Likewise.
4309         * modules/mkdir-p: Likewise.
4310
4311         * modules/stdint (Makefile.am): Do not substitute ABSOLUTE_INTTYPES_H.
4312         This undoes the most recent change, since we're now addressing the
4313         problem in a different way.
4314
4315         * gnulib-tool (emit_lib_Makefile_am): Don't put $makefile_name
4316         into output, since the output might be called Makefile.am even
4317         if $makefile_name is something different.
4318         (func_import): Use $makefile_am rather than
4319         ${makefile_name-Makefile.am}, to fix a bug where makefile_name was
4320         empty.
4321
4322         * modules/inttypes (Files): Add m4/inttypes-h.m4.
4323
4324 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
4325
4326         * m4/inttypes.m4 (gl_INTTYPES_H): Move ABSOLUTE_INTTYPES_H code here...
4327         * m4/stdint.m4 (gl_STDINT_H): ... from here.  This undoes the most
4328         recent change to stdint.m4, since we're now addressing the problem in a
4329         different way.
4330
4331 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
4332
4333         * m4/fcntl_h.m4: New file.
4334
4335 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
4336
4337         * lib/fcntl_.h: New file.
4338         * lib/chdir-safer.c (O_DIRECTORY, O_NOFOLLOW): Remove, now that we have
4339         the fcntl module.
4340         * lib/dirchownmod.c: Likewise.
4341         * lib/fts.c: Likewise.
4342
4343         * lib/inttypes_.h [defined _GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H]:
4344         Include @ABSOLUTE_INTTYPES_H@ if available, but do nothing else.
4345         * lib/stdint_.h (_GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H): Define
4346         just before including <inttypes.h>, to avoid circular inclusion.
4347
4348 2006-08-28  Jim Meyering  <jim@meyering.net>
4349
4350         * doc/visibility.texi: Actually read and correct the grammar of the
4351         sentence affected by yesterday's change.
4352
4353 2006-08-28  Eric Blake  <ebb9@byu.net>
4354
4355         * modules/inttypes (Makefile.am): Fix sed error when inttypes.h
4356         needs wrapper.
4357
4358 2006-08-28  Eric Blake  <ebb9@byu.net>
4359
4360         * m4/inttypes.m4 (gl_INTTYPES_H): Fix missing #endif.
4361
4362 2006-08-28  Eric Blake  <ebb9@byu.net>
4363
4364         * m4/codeset.m4 (AM_LANGINFO_CODESET): Avoid compiler warning.
4365
4366 2006-08-28  Bruno Haible  <bruno@clisp.org>
4367
4368         * modules/c-strstr: New file, from GNU gettext.
4369         * MODULES.html.sh (String handling): Add c-strstr.
4370
4371 2006-08-28  Bruno Haible  <bruno@clisp.org>
4372
4373         * m4/inttypes.m4 (gl_INTTYPES_H): Don't test for the existence of SCNX*
4374         macros.
4375         Reported by Eric Blake.
4376
4377 2006-08-28  Bruno Haible  <bruno@clisp.org>
4378
4379         * lib/vasnprintf.c (EOVERFLOW): Remove definition.
4380         (VASNPRINTF): Return a string of length > INT_MAX without failing.
4381         * lib/vasprintf.c: Include errno.h, limits.h.
4382         (EOVERFLOW): New fallback definition.
4383         (vasprintf): Test here whether the string length is > INT_MAX.
4384         * lib/vsnprintf.c: Include errno.h, limits.h.
4385         (EOVERFLOW): New fallback definition.
4386         (vsnprintf): Fix bug when generated string was too long for the buffer.
4387         Test here whether the string length is > INT_MAX.
4388
4389 2006-08-28  Bruno Haible  <bruno@clisp.org>
4390
4391         * lib/inttypes_.h (SCNX*): Remove definitions.
4392         Reported by Eric Blake.
4393
4394 2006-08-28  Bruno Haible  <bruno@clisp.org>
4395
4396         * lib/c-strstr.h: New file, from GNU gettext.
4397         * lib/c-strstr.c: New file, from GNU gettext.
4398
4399 2006-08-28  Bruno Haible  <bruno@clisp.org>
4400
4401         * gnulib-tool: Reorder some statements.
4402
4403 2006-08-28  Bruno Haible  <bruno@clisp.org>
4404
4405         * gnulib-tool: New option --makefile-name.
4406         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am): Use
4407         $makefile_name.
4408         (func_import): Write $makefile_name to the cache file, and read it from
4409         there unless explicitly specified. Use $makefile_name as file name
4410         instead of Makefile.am. Adjust the recommendations accordingly.
4411
4412 2006-08-28  Bruno Haible  <bruno@clisp.org>
4413
4414         * gnulib-tool (func_verify_module): Check against misapplying patch.
4415
4416 2006-08-28  Bruno Haible  <bruno@clisp.org>
4417
4418         * gnulib-tool (func_relativize, func_relconcat): New functions.
4419         Give an error if --local-dir is given with --update.
4420         Remove trailing slashes from $local_gnulib_dir.
4421         (func_import): Store the relativized $local_gnulib_dir in
4422         gnulib-cache.m4, and read it from there if not specified explicitly.
4423
4424 2006-08-28  Bruno Haible  <bruno@clisp.org>
4425
4426         * gnulib-tool (func_get_tests_module): Don't assume that $gnulib_dir
4427         is the current directory. Respect also $local_gnulib_dir.
4428
4429 2006-08-28  Bruno Haible  <bruno@clisp.org>
4430             Simon Josefsson  <jas@extundo.com>
4431
4432         BeOS portability.
4433         * lib/getaddrinfo.c (PF_INET, PF_UNSPEC): New macros.
4434
4435 2006-08-27  Jim Meyering  <jim@meyering.net>
4436
4437         * doc/visibility.texi: Remove duplicate word: "pointer".
4438
4439 2006-08-26  Bruno Haible  <bruno@clisp.org>
4440
4441         * modules/inttypes (Files): Add lib/inttypes_.h, remove lib/inttypes.h.
4442         Add m4/inttypes.m4, remove m4/_inttypes_h.m4 and m4/include_next.m4.
4443         (Makefile.am): Create inttypes.h from inttypes_.h.
4444         * modules/stdint (Makefile.am): Substitute also ABSOLUTE_INTTYPES_H.
4445
4446         * modules/imaxabs: New file.
4447
4448         * modules/imaxdiv: New file.
4449
4450 2006-08-26  Bruno Haible  <bruno@clisp.org>
4451
4452         * m4/inttypes.m4: New file.
4453         * m4/_inttypes_h.m4: Remove file.
4454         * m4/inttypes-pri.m4 (gt_INTTYPES_PRI): Also AC_SUBST
4455         PRI_MACROS_BROKEN.
4456         * m4/stdint.m4 (gl_STDINT_H): Define also ABSOLUTE_INTTYPES_H.
4457
4458         * m4/imaxabs.m4: New file.
4459
4460         * m4/imaxdiv.m4: New file.
4461
4462 2006-08-26  Bruno Haible  <bruno@clisp.org>
4463
4464         * lib/inttypes_.h: New file.
4465         * lib/inttypes.h: Remove file.
4466         * lib/stdint_.h: Include <inttypes.h> through its absolute filename.
4467
4468         * lib/imaxabs.c: New file.
4469
4470         * lib/imaxdiv.c: New file.
4471
4472 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
4473
4474         New config-h module, so that "make" output needn't be cluttered
4475         by -DHAVE_CONFIG_H.
4476         * MODULES.html.sh (Support for building libraries and executables):
4477         Add config-h.
4478         * modules/config-h: New file.
4479         * gnulib-tool (nl, sed_transform_lib_file): New vars.
4480         (func_import): Turn "#ifdef HAVE_CONFIG_H" to "#if 1" if
4481         the config-h module is used.
4482
4483         New configmake module, so that "make" output needn't be cluttered
4484         by fluff like '-DLIBDIR=\"/usr/local/lib\"'.
4485         * MODULES.html.sh (Support for building libraries and executables):
4486         Add configmake.
4487         * modules/configmake: New file.
4488
4489 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
4490
4491         * m4/config-h.m4: New file.
4492
4493 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
4494
4495         * config/srclist.txt: Add elisp-comp.
4496
4497 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
4498
4499         * MODULES.html.sh (Support for building libraries and executables):
4500         Add elisp-comp.
4501         * build-aux/elisp-comp: New file.
4502         * modules/elisp-comp: New file.
4503
4504 2006-08-24  Bruno Haible  <bruno@clisp.org>
4505
4506         * gnulib-tool (func_create_testdir): Use non-default values of
4507         sourcebase and m4base.
4508
4509 2006-08-24  Bruno Haible  <bruno@clisp.org>
4510
4511         * MODULES.html.sh (Compatibility checks for POSIX:2001 functions: Fix
4512         HTML structure.
4513
4514 2006-08-23  Paul Eggert  <eggert@cs.ucla.edu>
4515
4516         * modules/openat (Depends-on): Add lchown.
4517
4518 2006-08-23  Bruno Haible  <bruno@clisp.org>
4519
4520         * gnulib-tool (func_import, func_create_testdir): Emit an invocation
4521         of gl_LOCK_EARLY instead of gl_LOCK.
4522
4523 2006-08-23  Bruno Haible  <bruno@clisp.org>
4524
4525         * m4/lock.m4 (gl_LOCK_BODY): Change the default value of gl_use_threads
4526         on OSF/1 to no.
4527         Reported by Stephen Cartwright <sgcartwr@ucalgary.ca>.
4528
4529 2006-08-23  Bruno Haible  <bruno@clisp.org>
4530
4531         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Don't consider BeOS statvfs
4532         as unusable.
4533
4534         * m4/lock.m4 (gl_LOCK_EARLY): Renamed from gl_LOCK.
4535         (gl_LOCK_BODY): Remove gl_PREREQ_LOCK invocation.
4536         (gl_LOCK): New macro.
4537
4538 2006-08-22  Simon Josefsson  <jas@extundo.com>
4539
4540         * modules/gc-md5 (Makefile.am): Need to add md5.h, after changes
4541         to md5 module.
4542
4543 2006-08-22  Simon Josefsson  <jas@extundo.com>
4544
4545         * MODULES.html.sh: Add "Support for maintaining and release
4546         projects".
4547
4548         * build-aux/gnupload: New file, from coreutils.
4549
4550 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
4551
4552         Avoid the need for AC_LIBSOURCES in m4 macros.
4553         * modules/arcfour (EXTRA_DIST): Add arcfour.h.
4554         * modules/arctwo (EXTRA_DIST): Add arctwo.h.
4555         * modules/check-version (EXTRA_DIST): Add check-version.h.
4556         * modules/crc (EXTRA_DIST): Add crc.h.
4557         * modules/des (EXTRA_DIST): Add des.h.
4558         * modules/gc (EXTRA_DIST): Add gc.h.
4559         * modules/getdelim (EXTRA_DIST): Add getdelim.h.
4560         * modules/getline (EXTRA_DIST): Add getline.h.
4561         * modules/getlogin_r (EXTRA_DIST): Add getlogin_r.h.
4562         * modules/hmac-md5 (EXTRA_DIST): Add hmac.h.
4563         * modules/hmac-sha1 (EXTRA_DIST): Add hmac.h.
4564         * modules/md2 (EXTRA_DIST): Add md2.h.
4565         * modules/md4 (EXTRA_DIST): Add md4.h.
4566         * modules/pagealign_alloc (EXTRA_DIST): Add pagealign_alloc.h.
4567         * modules/read-file (EXTRA_DIST): Add read-file.h.
4568         * modules/readline (EXTRA_DIST): Add readline.h.
4569         * modules/rijndael (EXTRA_DIST): Add rijndael-alg-fst.h,
4570         rijndael-api-fst.h.
4571
4572 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
4573
4574         * m4/rijndael.m4 (gl_ARCFOUR):
4575         * m4/arctwo.m4 (gl_ARCTWO):
4576         * m4/check-version.m4 (gl_CHECK_VERSION):
4577         * m4/crc.m4 (gl_CRC):
4578         * m4/des.m4 (gl_DES):
4579         * m4/gc-pbkdf2-sha1.m4 (gl_GC_PBKDF2_SHA1):
4580         * m4/gc.m4 (gl_GC):
4581         * m4/getdelim.m4 (gl_FUNC_GETDELIM):
4582         * m4/getline.m4 (gl_FUNC_GETLINE):
4583         * m4/getlogin_r.m4 (gl_GETLOGIN_R_SUBSTITUTE):
4584         * m4/hmac-md5.m4 (gl_HMAC_MD5):
4585         * m4/hmac-sha1.m4 (gl_HMAC_SHA1):
4586         * m4/md2.m4 (gl_MD2):
4587         * m4/md4.m4 (gl_MD4):
4588         * m4/pagealign_alloc.m4 (gl_PAGEALIGN_ALLOC):
4589         * m4/read-file.m4 (gl_FUNC_READ_FILE):
4590         * m4/readline.m4 (gl_FUNC_READLINE):
4591         * m4/rijndael.m4 (gl_RIJNDAEL):
4592         Don't use AC_LIBSOURCES; instead, rely on the files in ../modules/
4593         to get the necessary .h files and whatnot.
4594
4595 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
4596
4597         * config/srclist.txt: Remove gnupload, since coreutils now syncs from
4598         gnulib rather than the other way around.
4599         * config/srclistvars.sh (COREUTILS): Remove.
4600
4601 2006-08-22  Jim Meyering  <jim@meyering.net>
4602
4603         * modules/mkdir-p (Makefile.am): Fix typo: s/lib+SOURCES/lib_SOURCES/.
4604
4605         * modules/getpass-gnu (Makefile.am): Add getpass.h to EXTRA_DIST.
4606
4607 2006-08-22  Eric Blake  <ebb9@byu.net>
4608
4609         * modules/regexprops-generic: New file.
4610         * MODULES.html.sh (Support for building documentation): List it.
4611
4612 2006-08-22  Eric Blake  <ebb9@byu.net>
4613
4614         * m4/stdint_h.m4 (gl_AC_HEADER_STDINT_H): Avoid compiler warning.
4615         * m4/inttypes_h.m4 (gl_AC_HEADER_INTTYPES_H): Likewise.
4616         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Likewise.
4617         * m4/intmax_t.m4 (gt_AC_TYPE_INTMAX_T): Likewise.
4618
4619 2006-08-22  Bruno Haible  <bruno@clisp.org>
4620
4621         * gnulib-tool (func_emit_lib_Makefile_am): Don't treat lib_LIBRARIES
4622         and lib_LTLIBRARIES like the other lib_* variables.
4623
4624 2006-08-22  Bruno Haible  <bruno@clisp.org>
4625
4626         * build-aux/x-to-1.in: New file, from GNU gettext.
4627
4628 2006-08-22  Bruno Haible  <bruno@clisp.org>
4629
4630         * m4/readutmp.m4 (gl_READUTMP): Compile readutmp.c only if <utmp.h> or
4631         <utmpx.h> exists.
4632
4633 2006-08-22  Bruno Haible  <bruno@clisp.org>
4634
4635         * lib/readutmp.h: Skip most definitions if neither <utmp.h> nor
4636         <utmpx.h> exists.
4637
4638 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
4639
4640         BeOS portability.
4641         * lib/dirchownmod.c (dirchownmod): Don't use fchmod if it doesn't
4642         exist.
4643         Problem reported by Bruno Haible.
4644
4645 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
4646
4647         Avoid the need for AC_LIBSOURCES in m4 macros.
4648         * modules/acl (EXTRA_DIST): Add acl.h.
4649         * modules/argmatch (Files): Add m4/argmatch.m4.
4650         (configure.ac): Add gl_ARGMATCH.
4651         (EXTRA_DIST): Renamed from lib_SOURCES, for
4652         consistency with the other modules.  Remove argmatch.c.
4653         * modules/backupfile (EXTRA_DIST): Add backupfile.h.
4654         * modules/c-strtod (EXTRA_DIST): Add c-strtod.h.
4655         * modules/c-strtold (EXTRA_DIST): Add c-strtod.c, c-strtod.h.
4656         * modules/canonhost (EXTRA_DIST): Add c-canonhost.h.
4657         * modules/canonicalize (EXTRA_DIST): Add canonicalize.h.
4658         * modules/chdir-long (EXTRA_DIST): Add chdir-long.h.
4659         * modules/chdir-safer (EXTRA_DIST): Add chdir-safer.h.
4660         * modules/cloexec (EXTRA_DIST): Add cloexec.h.
4661         * modules/close-stream (EXTRA_DIST): Add close-stream.h.
4662         * modules/closeout (EXTRA_DIST): Add closeout.h.
4663         * modules/cycle-check (EXTRA_DIST): Add cycle-check.h.
4664         * modules/dev-ino (EXTRA_DIST): Add dev-ino.h.
4665         * modules/dirfd (EXTRA_DIST): Add dirfd.h.
4666         * modules/dirname (EXTRA_DIST): Renamed from lib_SOURCES.  Add
4667         dirname.h; remove basename.c and stripslash.c.
4668         * modules/exclude (EXTRA_DIST): Add exclude.h.
4669         * modules/exitfail (EXTRA_DIST): Add exitfail.h.
4670         * modules/fcntl-safer (EXTRA_DIST): Add fcntl-safer.h fcntl--.h.
4671         * modules/file-type (EXTRA_DIST): Add file-type.h.
4672         * modules/filemode (EXTRA_DIST): Add filemode.h.
4673         * modules/filenamecat (EXTRA_DIST): Add filenamecat.h.
4674         * modules/fopen-safer (EXTRA_DIST): Add stdio-safer.h stdio--.h.
4675         * modules/fpending (EXTRA_DIST): Add __fpending.h.
4676         * modules/fprintftime (EXTRA_DIST): Add fprintftime.h.
4677         * modules/fsusage (EXTRA_DIST): Add fsusage.h.
4678         * modules/fts (EXTRA_DIST): Add fts_.h fts-cycle.c.
4679         * modules/getcwd (EXTRA_DIST): Add getcwd.h.
4680         * modules/getdate (EXTRA_DIST): Add getdate.c.
4681         * modules/gethrxtime (EXTRA_DIST): Add gethrxtime.h xtime.h.
4682         * modules/getpagesize (EXTRA_DIST): Add getpagesize.h.
4683         * modules/getpass (EXTRA_DIST): Add getpass.h.
4684         * modules/glob (EXTRA_DIST): Add glob_.h glob-libc.h.
4685         * modules/group-member (EXTRA_DIST): Add group-member.h.
4686         * modules/hard-locale (EXTRA_DIST): Add hard-locale.h.
4687         * modules/hash (EXTRA_DIST): Add hash.h.
4688         * modules/human (EXTRA_DIST): Add human.h.
4689         * modules/inttypes (EXTRA_DIST): Add inttypes.h.
4690         * modules/lchmod (EXTRA_DIST): Add lchmod.h.
4691         * modules/lchown (EXTRA_DIST): Add lchown.h.
4692         * modules/long-options (EXTRA_DIST): Add long-options.h.
4693         * modules/lstat (EXTRA_DIST): Add lstat.h.
4694         * modules/md5 (EXTRA_DIST): Add memcasecmp.h.
4695         * modules/memcoll (EXTRA_DIST): Add memcoll.h.
4696         * modules/mempcpy (EXTRA_DIST): Add mempcpy.h.
4697         * modules/memrchr (EXTRA_DIST): Add memrchr.h.
4698         * modules/memxor (EXTRA_DIST): Add memxor.h.
4699         * modules/mkancesdirs (EXTRA_DIST): Add mkancesdirs.h.
4700         * modules/mkdir-p (EXTRA_DIST): Add modechange.h.
4701         * modules/mountlist (EXTRA_DIST): Add mountlist.h.
4702         * modules/openat (EXTRA_DIST): Add at-func.c openat.h openat-priv.h.
4703         * modules/pathmax (EXTRA_DIST): Add pathmax.h.
4704         * modules/physmem (EXTRA_DIST): Add physmem.h.
4705         * modules/posixtm (EXTRA_DIST): Add posixtm.h.
4706         * modules/posixver (EXTRA_DIST): Add posixver.h.
4707         * modules/quote (EXTRA_DIST): Add quote.h.
4708         * modules/quotearg (EXTRA_DIST): Add quotearg.h.
4709         * modules/readtokens (EXTRA_DIST): Add readtokens.h.
4710         * modules/readutmp (EXTRA_DIST): Add readutmp.h.
4711         * modules/regex (EXTRA_DIST): Add regcomp.c regex.h regex_internal.c
4712         regex_internal.h regexec.c.
4713         * modules/safe-read (EXTRA_DIST): Add safe-read.h.
4714         * modules/safe-write (EXTRA_DIST): Add safe-write.h.
4715         * modules/same (EXTRA_DIST): Add same.h.
4716         * modules/same-inode (EXTRA_DIST): Add same-inode.h.
4717         * modules/save-cwd (EXTRA_DIST): Add save-cwd.h.
4718         * modules/savedir (EXTRA_DIST): Add savedir.h.
4719         * modules/sha1 (EXTRA_DIST): Add sha1.h.
4720         * modules/sig2str (EXTRA_DIST): Add sig2str.h.
4721         * modules/stat-macros (EXTRA_DIST): Add stat-macros.h.
4722         * modules/stat-time (EXTRA_DIST): Add stat-time.h.
4723         * modules/stdlib-safer (EXTRA_DIST): Add stdlib-safer.h stdlib--.h.
4724         * modules/strdup (EXTRA_DIST): Add strdup.h.
4725         * modules/strftime (EXTRA_DIST): Add strftime.h.
4726         * modules/strndup (EXTRA_DIST): Add strndup.h.
4727         * modules/strnlen (EXTRA_DIST): Add strnlen.h.
4728         * modules/strverscmp (EXTRA_DIST): Add strverscmp.h.
4729         * modules/time_r (EXTRA_DIST): Add time_r.h.
4730         * modules/timespec (EXTRA_DIST): Add timespec.h.
4731         * modules/tmpfile-safer (EXTRA_DIST): Add stdio-safer.h stdio--.h.
4732         * modules/unistd-safer (EXTRA_DIST): Add unistd-safer.h unistd--.h.
4733         * modules/unlinkdir (EXTRA_DIST): Add unlinkdir.h.
4734         * modules/unlocked-io (EXTRA_DIST): Add unlocked-io.h.
4735         * modules/userspec (EXTRA_DIST): Add userspec.h.
4736         * modules/utimecmp (EXTRA_DIST): Add utimecmp.h.
4737         * modules/utimens (EXTRA_DIST): Add utimens.h.
4738         * modules/xalloc (EXTRA_DIST): Add xalloc.h.
4739         * modules/xgetcwd (EXTRA_DIST): Add xgetcwd.h.
4740         * modules/xnanosleep (EXTRA_DIST): Add xnanosleep.h.
4741         * modules/xreadlink (EXTRA_DIST): Add xreadlink.h.
4742         * modules/xstrtod (EXTRA_DIST): Add xstrtod.h.
4743         * modules/xstrtol (EXTRA_DIST): Add xstrtol.h.
4744         * modules/xstrtold (EXTRA_DIST): Add xstrtod.c xstrtod.h.
4745         * modules/yesno (EXTRA_DIST): Add yesno.h.
4746
4747 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
4748
4749         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Check for fchmod.
4750
4751         * m4/argmatch.m4: New file, from coreutils with AC_LIBSOURCES removed.
4752         * m4/dev-ino.m4, same-inode.m4: Remove.
4753
4754         * m4/_inttypes_h.m4 (gl_INTTYPES_H):
4755         * m4/acl.m4 (AC_FUNC_ACL):
4756         * m4/backupfile.m4 (gl_BACKUPFILE):
4757         * m4/c-strtod.m4 (gl_C99_STRTOLD):
4758         * m4/canon-host.m4 (gl_CANON_HOST):
4759         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME):
4760         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG):
4761         * m4/chdir-safer.m4 (gl_CHDIR_SAFER):
4762         * m4/cloexec.m4 (gl_CLOEXEC):
4763         * m4/close-stream.m4 (gl_CLOSE_STREAM):
4764         * m4/closeout.m4 (gl_CLOSEOUT):
4765         * m4/dirfd.m4 (gl_FUNC_DIRFD):
4766         * m4/dirname.m4 (gl_DIRNAME):
4767         * m4/exclude.m4 (gl_EXCLUDE):
4768         * m4/exitfail.m4 (gl_EXITFAIL):
4769         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER):
4770         * m4/file-type.m4 (gl_FILE_TYPE):
4771         * m4/filemode.m4 (gl_FILEMODE):
4772         * m4/filenamecat.m4 (gl_FILE_NAME_CONCAT):
4773         * m4/fpending.m4 (gl_FUNC_FPENDING):
4774         * m4/fprintftime.m4 (gl_FPRINTFTIME):
4775         * m4/fts.m4 (gl_FUNC_FTS):
4776         * m4/getcwd.m4 (gl_FUNC_GETCWD_NULL):
4777         * m4/getdate.m4 (gl_GETDATE):
4778         * m4/gethrxtime.m4 (gl_GETHRXTIME):
4779         * m4/getpagesize.m4 (gl_GETPAGESIZE):
4780         * m4/getpass.m4 (gl_FUNC_GETPASS):
4781         * m4/gettime.m4 (gl_GETTIME):
4782         * m4/getugroups.m4 (gl_GETUGROUPS):
4783         * m4/glob.m4 (gl_GLOB_SUBSTITUTE):
4784         * m4/group-member.m4 (gl_FUNC_GROUP_MEMBER):
4785         * m4/hard-locale.m4 (gl_HARD_LOCALE):
4786         * m4/hash.m4 (gl_HASH):
4787         * m4/idcache.m4 (gl_IDCACHE):
4788         * m4/lchmod.m4 (gl_FUNC_LCHMOD):
4789         * m4/lchown.m4 (gl_FUNC_LCHOWN):
4790         * m4/long-options.m4 (gl_LONG_OPTIONS):
4791         * m4/lstat.m4 (gl_FUNC_LSTAT):
4792         * m4/md5.m4 (gl_MD5):
4793         * m4/memcasecmp.m4 (gl_MEMCASECMP):
4794         * m4/memcoll.m4 (gl_MEMCOLL):
4795         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY):
4796         * m4/memrchr.m4 (gl_FUNC_MEMRCHR):
4797         * m4/memxor.m4 (gl_MEMXOR):
4798         * m4/mkancesdirs.m4 (gl_MKANCESDIRS):
4799         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS):
4800         * m4/modechange.m4 (gl_MODECHANGE):
4801         * m4/mountlist.m4 (gl_MOUNTLIST):
4802         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
4803         * m4/openat.m4 (gl_FUNC_OPENAT):
4804         * m4/pathmax.m4 (gl_PATHMAX):
4805         * m4/physmem.m4 (gl_PHYSMEM):
4806         * m4/posixtm.m4 (gl_POSIXTM):
4807         * m4/posixver.m4 (gl_POSIXVER):
4808         * m4/quote.m4 (gl_QUOTE):
4809         * m4/quotearg.m4 (gl_QUOTEARG):
4810         * m4/readtokens.m4 (gl_READTOKENS):
4811         * m4/readutmp.m4 (gl_READUTMP):
4812         * m4/regex.m4 (gl_REGEX):
4813         * m4/safe-read.m4 (gl_SAFE_READ):
4814         * m4/safe-write.m4 (gl_SAFE_WRITE):
4815         * m4/same.m4 (gl_SAME):
4816         * m4/save-cwd.m4 (gl_SAVE_CWD):
4817         * m4/savedir.m4 (gl_SAVEDIR):
4818         * m4/settime.m4 (gl_SETTIME):
4819         * m4/sha1.m4 (gl_SHA1):
4820         * m4/sig2str.m4 (gl_FUNC_SIG2STR):
4821         * m4/stat-macros.m4 (gl_STAT_MACROS):
4822         * m4/stat-time.m4 (gl_STAT_TIME):
4823         * m4/stdio-safer.m4 (gl_FOPEN_SAFER):
4824         * m4/stdlib-safer.m4 (gl_STDLIB_SAFER):
4825         * m4/strdup.m4 (gl_FUNC_STRDUP):
4826         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME):
4827         * m4/strndup.m4 (gl_FUNC_STRNDUP):
4828         * m4/strnlen.m4 (gl_FUNC_STRNLEN):
4829         * m4/strverscmp.m4 (gl_FUNC_STRVERSCMP):
4830         * m4/time_r.m4 (gl_TIME_R):
4831         * m4/timespec.m4 (gl_TIMESPEC):
4832         * m4/unistd-safer.m4 (gl_UNISTD_SAFER):
4833         * m4/unlinkdir.m4 (gl_UNLINKDIR):
4834         * m4/unlocked-io.m4 (gl_FUNC_GLIBC_UNLOCKED_IO):
4835         * m4/userspec.m4 (gl_USERSPEC):
4836         * m4/utimecmp.m4 (gl_UTIMECMP):
4837         * m4/utimens.m4 (gl_UTIMENS):
4838         * m4/xalloc.m4 (gl_XALLOC):
4839         * m4/xgetcwd.m4 (gl_XGETCWD):
4840         * m4/xnanosleep.m4 (gl_XNANOSLEEP):
4841         * m4/xreadlink.m4 (gl_XREADLINK):
4842         * m4/xstrtod.m4 (gl_XSTRTOD):
4843         * m4/yesno.m4 (gl_YESNO):
4844         Don't use AC_LIBSOURCES; instead, rely on the files in ../modules/
4845         to get the necessary .h files and whatnot.
4846
4847 2006-08-21  Mark D. Baushke  <mdb@gnu.org>
4848             Bruno Haible  <bruno@clisp.org>
4849
4850         * gnulib-tool (func_verify_module): Work around Sun's non-POSIX 1003.2
4851         /bin/sh understanding of '!' conditional negation.
4852
4853 2006-08-21  Jim Meyering  <jim@meyering.net>
4854
4855         * modules/openat (Depends-on): Really alphabetize.
4856
4857         * modules/acl (Depends-on): Add error and quote.
4858
4859         * check-module (find_included_lib_files): Add at-func.c to the
4860         ok-to-include-more-than-once white list.
4861
4862         * modules/openat (Depends-on): Add lstat.  Alphabetize.
4863
4864 2006-08-21  Bruno Haible  <bruno@clisp.org>
4865
4866         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
4867         Emit a pkgdata_DATA variable only if some snippets add contents to it.
4868         Reported by Martin Lambers <marlam@marlam.de>.
4869
4870 2006-08-21  Bruno Haible  <bruno@clisp.org>
4871
4872         * gnulib-tool (func_emit_lib_Makefile_am): If the snippets already
4873         specify an installation location, don't emit a noinst_LIBRARIES or
4874         noinst_LTLIBRARIES assignment.
4875
4876 2006-08-21  Bruno Haible  <bruno@clisp.org>
4877
4878         BeOS portability.
4879         * modules/mbchar (Include): Don't test HAVE_WCTYPE_H any more, since
4880         BeOS has mbrtowc() but no <wctype.h>.
4881
4882 2006-08-21  Bruno Haible  <bruno@clisp.org>
4883
4884         BeOS portability.
4885         * m4/mbchar.m4 (gl_MBCHAR): Compile mbchar.c also if <wctype.h> doesn't
4886         exist.
4887
4888 2006-08-21  Bruno Haible  <bruno@clisp.org>
4889
4890         BeOS portability.
4891         * lib/mbchar.h: Include <wctype.h> only if it exists.
4892
4893 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
4894
4895         Remove files that are no longer needed by their respective modules.
4896         * m4/obstack.m4: Remove.
4897         * m4/strerror_r.m4: Remove.
4898         * m4/uint32_t.m4: Remove.
4899         * m4/uintptr_t.m4: Remove.
4900         * m4/ullong_max.m4: Remove.
4901         * m4/xstrtoimax.m4: Remove.
4902         * m4/xstrtoumax.m4: Remove.
4903
4904         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Do not require
4905         gl_AC_TYPE_UINTMAX_T, gl_STRUCT_DEV_INO, or gl_SAME_INODE, since gnulib
4906         dependencies now capture this.
4907
4908         * m4/cycle-check.m4 (gl_CYCLE_CHECK):
4909         Do not use AC_LIBSOURCES, since gnulib modules now do this.
4910         * m4/fsusage.m4 (gl_FSUSAGE): Likewise.
4911         * m4/human.m4 (gl_HUMAN): Likewise.
4912         * m4/inttostr.m4 (gl_INTTOSTR): Likewise.
4913         * m4/xstrtol.m4 (gl_XSTRTOL): Likewise.
4914
4915         * m4/filemode.m4 (gl_FILEMODE): Require AC_STRUCT_ST_DM_MODE.
4916
4917         * m4/filemode.m4 (gl_PREREQ_FSUSAGE_EXTRA): Do not require
4918         gl_AC_TYPE_INTMAX_T or gl_AC_TYPE_UINTMAX_T, since we now require
4919         stdint.
4920         * m4/human.m4 (gl_HUMAN): Likewise.
4921         * m4/inttostr.m4 (gl_PREREQ_INTTOSTR): Likewise.
4922         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Likewise.
4923         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Likewise.
4924         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Likewise.
4925         * m4/xstrtol (gl_XSTRTOL): Likewise.
4926
4927         * m4/gethrxtime.m4 (gl_XTIME): gl_AC_TYPE_LONG_LONG ->
4928         AC_TYPE_LONG_LONG_INT.
4929         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Likewise.
4930         * m4/strtoll.m4 (gl_FUNC_STRTOLL): Likewise.
4931         * m4/strtoull.m4 (gl_FUNC_STRTOULL): Likewise, for unsigned long.
4932         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Likewise.
4933
4934         * m4/human.m4 (gl_HUMAN): Do not require AM_STDBOOL_H since we depend
4935         on stdbool.
4936
4937         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL_H, gl_PREREQ_XSTRTOL): Remove.
4938         (gl_PREREQ_XSTRTOUL): Remove.
4939
4940         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Check for hasmntopt.
4941
4942         * m4/posixver.m4: Fix comment since head -1 now works even in POSIX
4943         mode.
4944
4945 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
4946
4947         Add and change modules to make it easier for coreutils to use
4948         gnulib-tool.
4949         * modules/backupfile (Files): Remove m4/d-ino.m4.
4950         (Depends-on): Add d-ino.
4951         * modules/cycle-check (Depends-on): Add stdint.
4952         (lib_SOURCES): Add cycle-check.h.
4953         * modules/d-ino: New module.
4954         * modules/d-type: New module.
4955         * modules/error (Files): Remove m4/strerror_r.m4.
4956         * modules/filemode (Files): Add m4/st_dm_mode.m4.
4957         * modules/fsuage (Files): Remove m4/ulonglong.m4, m4/stdint_h.m4,
4958         m4/inttypes_h.m4, m4/uintmax_t.m4.
4959         (Depends-on): Add stdint.
4960         (lib_SOURCES): Add fsusage.h.
4961         * modules/getcwd (Files): Remove d-ino.m4.
4962         (Depends-on): Add d-ino.
4963         * modules/getndelim2 (Depends-on): Add stdint.
4964         * modules/glob (Files): Remove m4/d-type.m4.
4965         (Depends-on): Add d-type.
4966         * modules/host-os: New module.
4967         * modules/human (Files):  Remove m4/ulonglong.m4, m4/stdint_h.m4,
4968         m4/inttypes_h.m4, m4/uintmax_t.m4.
4969         * Depends-on: Add stdint.
4970         (lib_SOURCES): Add human.h.
4971         * modules/inttostr (Files): Remove m4/intmax_t.m4,
4972         m4/inttostr.m4, m4/inttypes_h.m4, m4/longlong.m4, m4/stdint_h.m4,
4973         m4/uintmax_t.m4, m4/ulonglong.m4.
4974         (Depends-on): Add stdint.
4975         (EXTRA_DIST): Add inttostr.h.
4976         * modules/lchmod: New module.
4977         * modules/link-follow: New module.
4978         * modules/mkdir-p (Files): Remove lib/lchmod.h, m4/lchmod.m4.
4979         (Depends-on): Add lchmod.
4980         * modules/mkstemp (Files): Remove m4/ulonglong.m4,
4981         m4/stdint_h.m4, m4/inttypes_h.m4, m4/uintmax_t.m4.
4982         (Depends-on): Add stdint.
4983         * modules/obstack (Files): Remove m4/inttypes_h.m4, m4/obstack.m4,
4984         m4/stdint_h.m4, m4/uintmax_t.m4, m4/ulonglong.m4.
4985         (Depends-on): Add stdint.
4986         (configure.ac): Change gl_OBSTACK to AC_FUNC_OBSTACK.
4987         * modules/perl: New module.
4988         * modules/regex (Depends-on): Add stdint.
4989         * modules/rmdir-errno: New module.
4990         * modules/strtoimax (Files): Remove m4/stdint_h.m4, m4/inttypes_h.m4,
4991         m4/intmax_t.m4.
4992         (Depends-on): Add stdint.
4993         * modules/strtoumax (Files): Remove m4/stdint_h.m4, m4/inttypes_h.m4,
4994         m4/uintmax_t.m4.
4995         (Depends-on): Add stdint.
4996         * modules/unlink-busy: New module.
4997         * modules/utimecmp (Depends-on): Add stdint.
4998         * modules/uptime: New module.
4999         * modules/winsz-ioctl: New module.
5000         * modules/winsz-termios: New module.
5001         * modules/xnanosleep (Depends-on): Add nanosleep.
5002         * modules/ullong_max: Remove.
5003         * modules/xstrtoimax (Files): Remove m4/xstrtoimax.m4.
5004         (configure.ac): Remove gl_XSTRTOIMAX; no action needed now.
5005         * modules/xstrtol (Files): Remove m4/ulonglong.m4, m4/longlong.m4,
5006         m4/stdint_h.m4, m4/inttypes_h.m4, m4/uintmax_t.m4, m4/intmax_t.m4.
5007         (Depends-on): Add inttypes.
5008         (lib_SOURCES): Add xstrtol.h.
5009         * modules/xstrtoumax (Files): Remove m4/xstrtoumax.m4.
5010         (configure.ac): Remove gl_XSTRTOUMAX; no action needed now.
5011         * MODULES.html.sh: Move 'assert' into the assert section.
5012         Move 'dummy' into the linking section.
5013         Remove ullong_max.
5014         Add section for compatibility checks for POSIX:2001 functions,
5015         and put d-ino, d-type, link-follow, rmdir-errno, unlink-busy,
5016         winsz-ioctl, and winsz-termios into it.
5017         Add lchmod.
5018         Add top-level Misc section and put host-os, perl, and uptime
5019         into it.
5020
5021 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
5022
5023         * lib/cycle-check.h: Include <stdint.h> unconditionally, since we
5024         now assume the stdint module.  Do not include inttypes.h.
5025         * lib/fsusage.h: Likewise.
5026         * lib/getndelim2.c: Likewise.
5027         * lib/human.h: Likewise.
5028         * lib/inttostr.h: Likewise.
5029         * lib/obstack.c: Likewise.
5030         * lib/regex_internal.h: Likewise.
5031         * lib/tempname.c: Likewise.
5032         * lib/utimecmp.c: Likewise.
5033         * lib/xstrtol.h: Likewise.
5034
5035         * lib/stat_.h: Fix typo: HAVE_FUNC_LSTAT -> HAVE_LSTAT.
5036
5037         * lib/strtoimax.c: Adjust to macro name changes in Autoconf,
5038         e.g., HAVE_LONG_LONG -> HAVE_LONG_LONG_INT.
5039         * lib/xtime.h: Likewise.
5040
5041 2006-08-19  Paul Eggert  <eggert@cs.ucla.edu>
5042
5043         * modules/openat (Files): Add lib/fchmodat.c.
5044         Fixes problem reported by Jay Youngman.
5045
5046 2006-08-19  Paul Eggert  <eggert@cs.ucla.edu>
5047
5048         * lib/fchmodat.c: New file, from coreutils.  This was inadvertently
5049         omitted in the 2006-08-17 update.  Problem reported by Jay Youngman.
5050
5051 2006-08-18  Paul Eggert  <eggert@cs.ucla.edu>
5052             Bruno Haible  <bruno@clisp.org>
5053
5054         * m4/bison-i18n.m4 (BISON_I18N): Also handle the case where yacc exists
5055         and is a script that invokes bison. Tighten the code. Add comments.
5056
5057 2006-08-18  Jim Meyering  <jim@meyering.net>
5058
5059         * m4/gethrxtime.m4 (gl_PREREQ_GETHRXTIME): Also check for
5060         CLOCK_REALTIME, since gethrxtime may revert to using clock_gettime via
5061         gettime.c.  Gabor Z. Papp reported that gethrxtime-using programs
5062         failed to link due to unresolved clock_gettime on a linux-2.4.x system.
5063
5064 2006-08-18  Bruno Haible  <bruno@clisp.org>
5065
5066         * modules/bison-i18n: New file.
5067         * MODULES.html.sh (Internationalization functions): Add it.
5068
5069 2006-08-18  Bruno Haible  <bruno@clisp.org>
5070
5071         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Also check for
5072         sys/statvfs.h. When getmntinfo was found, check its declaration and
5073         set either MOUNTED_GETMNTINFO or MOUNTED_GETMNTINFO2 depending on it.
5074
5075 2006-08-18  Bruno Haible  <bruno@clisp.org>
5076
5077         * m4/bison-i18n.m4: New file, from bison.
5078
5079 2006-08-18  Bruno Haible  <bruno@clisp.org>
5080
5081         * lib/mountlist.c [MOUNTED_GETMNTINFO2]: Include sys/statvfs.h.
5082         (ME_DUMMY): Treat "kernfs" as a dummy.
5083         (read_file_system_list) [MOUNTED_GETMNTINFO2]: Implement.
5084
5085 2006-08-17  Paul Eggert  <eggert@cs.ucla.edu>
5086
5087         Update from coreutils.
5088
5089         2006-08-15  Jim Meyering  <jim@meyering.net>
5090
5091         * m4/openat.m4 (gl_FUNC_OPENAT): Add at-func.c via AC_LIBSOURCES.
5092
5093         2006-01-17  Jim Meyering  <jim@meyering.net>
5094
5095         * m4/fts.m4 (gl_FUNC_FTS_CORE): Depend on gl_FUNC_OPENAT.
5096
5097         2006-01-11  Jim Meyering  <jim@meyering.net>
5098
5099         * m4/openat.m4 (gl_FUNC_OPENAT): Require and compile fchmodat.c.
5100         Check for the lchmod function.
5101
5102 2006-08-17  Paul Eggert  <eggert@cs.ucla.edu>
5103
5104         Update from coreutils.
5105
5106         * lib/__fpending.h: Add copyright notice.
5107         * lib/fprintftime.h: Likewise.
5108         * lib/savedir.c: Use (C) in copyright notice.
5109         * lib/savedir.h: Likewise.
5110
5111         2006-08-15  Jim Meyering  <jim@meyering.net>
5112
5113         * lib/at-func.c: New file, with the logic of all emulated at-functions.
5114         * lib/openat-priv.h: Include <errno.h> and define ENOSYS,
5115         in support of the EXPECTED_ERRNO macro.
5116         * lib/openat.c (fstatat, unlinkat, fchownat): Remove function
5117         definitions.  Instead, define the appropriate symbols and include
5118         "at-func.c".
5119         * lib/mkdirat.c (mkdirat): Likewise.
5120         * lib/fchmodat.c (fchmodat): Likewise.
5121         (ENOSYS): Remove definition.
5122         * lib/openat.c: Don't include <errno.h>, now that "openat-priv.h" does
5123         it.  Don't include "unistd--.h" -- it wasn't ever used.
5124
5125         2006-01-17  Jim Meyering  <jim@meyering.net>
5126
5127         Rewrite fts.c not to change the current working directory,
5128         by using openat, fstatat, fdopendir, etc..
5129
5130         * lib/fts.c [! _LIBC]: Include "openat.h" and "unistd--.h".
5131         (HAVE_OPENAT_SUPPORT): Define.
5132         [_LIBC] (fchdir): Don't undef or define; no longer used.
5133         (FCHDIR): Define in terms of cwd_advance_fd rather than fchdir.
5134         Now, this `function' always succeeds, and consumes its file descriptor
5135         parameter -- so callers must not close such FDs.  Update callers.
5136         (diropen_fd, opendirat, cwd_advance_fd): New functions.
5137         (diropen): Add parameter, SP.  Adjust all callers.
5138         Implement using diropen_fd, rather than open.
5139         (fts_open): Initialize new member, fts_cwd_fd.
5140         Remove fts_rft-setting code.
5141         (fts_close): Close fts_cwd_fd, if necessary.
5142         (__opendir2): Define in terms of opendir or opendirat,
5143         depending on whether the FST_NOCHDIR flag is set.
5144         (fts_build): Since fts_safe_changedir consumes its FD, and since
5145         this code must do `closedir(dirp)', dup the dirfd(dirp) argument,
5146         and close the dup'd file descriptor upon failure.
5147         (fts_stat): Use fstatat(...AT_SYMLINK_NOFOLLOW) in place of lstat.
5148         (fts_safe_changedir): Tweak semantics to reflect that this function
5149         now calls cwd_advance_fd and hence consumes its FD argument.
5150         * lib/fts_.h [struct FTS] (fts_cwd_fd): New member.
5151         [struct FTS] (fts_rft): Remove now-unused member.
5152         [struct FTS] (fts_cycle.state): Improve comment.
5153
5154         * lib/openat.c (openat_needs_fchdir): New function.
5155         * lib/openat.h (openat_needs_fchdir): Declare it.
5156
5157 2006-08-16  Paul Eggert  <eggert@cs.ucla.edu>
5158
5159         * lib/memcoll.c (memcoll): Set errno = 0 in the shortcut case, too.
5160         Problem and fix reported by Pádraig Brady in
5161         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00099.html>.
5162
5163 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
5164
5165         * modules/cycle-check (configure.ac): Add gl_CYCLE_CHECK.
5166
5167 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
5168
5169         * lib/memcoll.c (memcoll): Optimize for the common case where the
5170         arguments are bytewise equal.
5171
5172 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
5173
5174         * doc/regexprops-generic.texi: Add a copyright notice.
5175
5176 2006-08-15  Bruno Haible  <bruno@clisp.org>
5177
5178         * modules/tmpdir (License): Change to LGPL.
5179
5180 2006-08-15  Bruno Haible  <bruno@clisp.org>
5181
5182         * gnulib-tool (func_all_modules, func_verify_module): COPYING is not a
5183         module.
5184
5185 2006-08-14  Simon Josefsson  <jas@extundo.com>
5186
5187         * config/srclist.txt: Add gnupload.
5188
5189 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
5190
5191         Change copyright notice from LGPL 2 to GPL 2, since that's the
5192         standard form used in the gnulib repository.
5193         * tests/test-lock.c: Likewise.
5194         * tests/test-stdint.c: Likewise.
5195         * tests/test-tls.c: Likewise.
5196
5197         * users.txt: Add bison, diffutils, libprelude, prelude-lml,
5198         prelude-manager.  User shorter URLs for GNU projects, without '?'.
5199         Add copyright notice.
5200
5201         * check-module: Add copyright notice.  Output a copyright
5202         notice if "--version" is specified.
5203         * modules/COPYING: New file.
5204         * tests/test-getaddrinfo.c: Add copyright notice.
5205         * tests/test-verify.c: Likewise.
5206
5207 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
5208
5209         Change copyright notice from LGPL 2 to GPL 2, since that's the
5210         standard form used in the gnulib repository.
5211         * lib/lock.c: LGPL -> GPL.
5212         * lib/lock.h: Likewise.
5213         * lib/strnlen1.c: Likewise.
5214         * lib/strnlen1.h: Likewise.
5215         * lib/tls.c: Likewise.
5216         * lib/tls.h: Likewise.
5217         * lib/tmpdir.c: Likewise.
5218
5219         * lib/TODO: Remove; this belongs only in coreutils.
5220
5221 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
5222
5223         Add copyright notices to long-enough files that lack them, since
5224         otherwise the files aren't clearly free.  Use the same notice that
5225         getdate.texi already uses.
5226         * doc/alloca-opt.texi: Add copyright notice.
5227         * doc/alloca.texi: Likewise.
5228         * doc/ctime.texi: Likewise.
5229         * doc/functions.texi: Likewise.
5230         * doc/gcd.texi: Likewise.
5231         * doc/gnulib-tool.texi: Likewise.
5232         * doc/inet_ntoa.texi: Likewise.
5233         * doc/visibility.texi: Likewise.
5234
5235         * doc/getdate.texi: Update FDL version from 1.1 to 1.2.
5236         * doc/quote.texi: Add copyright notice.
5237
5238         * doc/solaris-versions: Add SunOS 5.10, SunOS 1.x, SunOS 4.0, SunOS
5239         4.0.x, SunOS 4.1.1.1, SunOS 4.1.1_U1, SunOS 4.1.3B.  SunOS 4.1.3
5240         was Solaris 1.1A.  Remove space before B in Solaris 1.1.1B.
5241         Mention SunOS 5.11.  Mention that everything before SunOS 5.7
5242         is now obsolete, and give a pointer to the Sun list.
5243         Add copyright notice.
5244
5245 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
5246
5247         * config/srclistvars.sh: Add copyright notice.
5248
5249 2006-08-14  Eric Blake  <ebb9@byu.net>
5250
5251         Import the following change from libc:
5252
5253         2006-08-12  Ulrich Drepper  <drepper@redhat.com>
5254
5255         Upstream bug 2997.
5256         * lib/misc/error.c: Add space between program name and message if file
5257         name is missing.
5258
5259 2006-08-12  Karl Berry  <karl@gnu.org>
5260
5261         * config/srclist.txt (ssize_t.m4, sig_atomic_t.m4, signalblocking.m4):
5262         remove, these originate in gnulib now.
5263
5264 2006-08-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5265
5266         * doc/Makefile (standards.info standards.html standards.dvi):
5267         Also depend on make-stds.texi.
5268
5269 2006-08-11  Paul Eggert  <eggert@cs.ucla.edu>
5270
5271         * lib/pipe-safer.c (pipe_safer): Fix misspelling: HAVE_FUNC_PIPE ->
5272         HAVE_PIPE.  Fix a file descriptor leak when fd_safer fails.
5273
5274         * lib/regex_internal.c (re_string_skip_chars): Don't assume WEOF fits
5275         in wchar_t.  Problem reported by Eric Blake.
5276
5277         * lib/snprintf.c (snprintf): memcpy LEN bytes, not SIZE - 1, when
5278         LEN is smaller than SIZE.  Suggested by Bruno Haible.
5279         Also, help the compiler to keep LEN in a register.
5280
5281 2006-08-11  Eric Blake  <ebb9@byu.net>
5282
5283         * users.txt: Sort.  Add tar.
5284
5285 2006-08-11  Bruno Haible  <bruno@clisp.org>
5286
5287         * users.txt: New file.
5288
5289 2006-08-11  Bruno Haible  <bruno@clisp.org>
5290
5291         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Include <stdio.h> and <time.h>
5292         before <wchar.h>. Needed for OSF/1 and BSD/OS.
5293
5294 2006-08-10  Paul Eggert  <eggert@cs.ucla.edu>
5295
5296         * modules/snprintf (Depends-on): Remove minmax.
5297         (Maintainer): Add self and Bruno.
5298
5299 2006-08-10  Paul Eggert  <eggert@cs.ucla.edu>
5300
5301         * lib/.cppi-disable: Add snprintf.h, socket_.h.
5302         * lib/snprintf.c: Include <errno.h> and <limits.h>.
5303         (EOVERFLOW): Define if the system does not.
5304         Do not include "minmax.h"; it wasn't used.
5305         (snprintf): Don't assume size_t promotes to an unsigned type.
5306         Fix bug when generated string was too long for the buffer: the
5307         buffer's contents are supposed to be the initial prefix of the
5308         output.  Don't assume vasnprintf returns EOVERFLOW if the size
5309         exceeds INT_MAX; do the check ourselves.
5310
5311         Import the following changes from libc:
5312
5313         2006-06-02  Jakub Jelinek  <jakub@redhat.com>
5314
5315         * lib/posix/regex_internal.c (re_string_skip_chars): If no character
5316         has been converted at all, set *last_wc to WEOF.  If mbrtowc failed,
5317         set wc to the byte which couldn't be converted.
5318         (re_string_reconstruct): Don't clear valid_raw_len before calling
5319         re_string_skip_chars.  If wc is WEOF after re_string_skip_chars, set
5320         tip_context using re_string_context_at.
5321
5322         2006-05-02  Ulrich Drepper  <drepper@redhat.com>
5323
5324         * lib/posix/regex.h: g++ still cannot handled [restrict].
5325
5326         2006-04-21  Ulrich Drepper  <drepper@redhat.com>
5327
5328         * lib/posix/regex.h: Remove special handling for VMS.
5329
5330 2006-08-10  Jim Meyering  <jim@meyering.net>
5331
5332         * modules/same-inode: New module.
5333         * modules/dev-ino: New module.
5334         * modules/cycle-check: Depend on these modules, rather than simply
5335         including their .h files.
5336         (Makefile.am): Don't list cycle-check.[ch] here, now that they're
5337         required via m4/cycle-check.m4.
5338         * modules/same: Depend on new same-inode module, rather than
5339         including same-inode.h.
5340         * modules/chdir-safer: New file.
5341
5342         * modules/chown (Depends-on): Add stat-macros.
5343
5344 2006-08-10  Jim Meyering  <jim@meyering.net>
5345
5346         * m4/cycle-check.m4: New file.
5347         Require gl_STRUCT_DEV_INO and gl_SAME_INODE.
5348         * m4/dev-ino.m4, m4/same-inode.m4: New files.
5349
5350 2006-08-10  Eric Blake  <ebb9@byu.net>
5351
5352         * modules/verror (Depends-on): Remove bogus gl_VERROR that snuck
5353         in from original proposal.
5354
5355 2006-08-10  Eric Blake  <ebb9@byu.net>
5356         and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
5357
5358         * gnulib-tool (func_import): Detect unexpanded macros in gnulib
5359         namespace.
5360
5361 2006-08-10  Bruno Haible  <bruno@clisp.org>
5362
5363         * gnulib-tool (func_create_testdir): Detect unexpanded macros here
5364         as well.
5365
5366 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
5367
5368         Sync from coreutils.
5369
5370         2006-07-19  Mike Frysinger  <vapier@gentoo.org>
5371
5372         * lib/mountlist.c [ME_REMOTE]: Filter out cifs.
5373         Reported by Toralf Förster in <http://bugs.gentoo.org/141012>.
5374
5375 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
5376
5377         * modules/restrict: Remove; no longer needed now that we assume
5378         Autoconf 2.59 or later.
5379         * MODULES.html.sh: Remove 'restrict'.
5380         * modules/argp (Depends-on): Remove 'restrict'.
5381         * modules/base64 (Depends-on): Likewise.
5382         * modules/gc (Depends-on): Likewise.
5383         * modules/getaddrinfo (Depends-on): Likewise.
5384         * modules/glob (Depends-on): Likewise.
5385         * modules/inet_ntop (Depends-on): Likewise.
5386         * modules/inet_pton (Depends-on): Likewise.
5387         * modules/memxor (Depends-on): Likewise.
5388         * modules/regex (Depends-on): Likewise.
5389         * modules/strtok_r (Depends-on): Likewise.
5390         * modules/time_r (Depends-on): Likewise.
5391
5392 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
5393
5394         * m4/argp.m4 (gl_ARGP): Require AC_C_RESTRICT.
5395         * m4/gc.m4 (gl_PREREQ_GC): Likewise.
5396         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
5397         * m4/inet_ntop.m4 (gl_PREREQ_INET_NTOP): Likewise.
5398         * m4/inet_pton.m4 (gl_PREREQ_INET_PTON): Likewise.
5399         * m4/memxor.m4 (gl_MEMXOR): Likewise.
5400         * m4/restrict.m4: Remove; no longer needed.  All remaining uses of
5401         gl_C_RESTRICT replaced by AC_C_RESTRICT.
5402
5403         Merge from coreutils.
5404         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_C_RESTRICT, not
5405         gl_C_RESTRICT, now that we assume Autoconf 2.59 or later.
5406         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
5407         * m4/time_r.m4 (gl_TIME_R): Likewise.
5408
5409 2006-08-09  Karl Berry  <karl@gnu.org>
5410
5411         * config/srclist.txt: no more gettext-tools, per Bruno.
5412
5413 2006-08-08  Eric Blake  <ebb9@byu.net>
5414
5415         * modules/verror: New module.
5416         * MODULES.html.sh: Document it.
5417
5418 2006-08-08  Eric Blake  <ebb9@byu.net>
5419
5420         * lib/verror.h, lib/verror.c: New files.
5421
5422 2006-08-08  Eric Blake  <ebb9@byu.net>
5423
5424         * lib/verror.c (verror_at_line): Work around glibc bug 2997, so that
5425         verror_at_line output complies with GNU Coding Standards even when
5426         file is NULL.
5427
5428 2006-08-07  Bruno Haible  <bruno@clisp.org>
5429
5430         * lib/allocsa.h (sa_alignof) [_AIX]: Also consider 'long long' in newer
5431         versions of AIX.
5432         Reported by Ralf Wildenhues.
5433
5434 2006-08-07  Bruno Haible  <bruno@clisp.org>
5435
5436         * gnulib-tool (func_create_testdir): Wrap the set of autoconf snippets
5437         in an AC_DEFUN. Needed so that the autoconf snippets can use
5438         AC_REQUIRE.
5439
5440 2006-08-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5441
5442         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
5443         Initialize pkgdata_DATA.
5444         * modules/javaversion (Makefile.am): Add to pkgdata_DATA, rather than
5445         overriding it.
5446
5447 2006-08-06  Eric Blake  <ebb9@byu.net>
5448
5449         * lib/error.h: Fold in some upstream changes from glibc.
5450         * lib/error.c: Likewise.
5451
5452 2006-08-04  Bruno Haible  <bruno@clisp.org>
5453
5454         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
5455         Make the mostlyclean-local rule depend on mostlyclean-generic.
5456         Reported by Jim Meyering. Solution suggested by Ralf Wildenhues.
5457
5458 2006-07-31  Bruno Haible  <bruno@clisp.org>
5459
5460         * m4/localcharset.m4 (gl_LOCALCHARSET): Remove tests for <stddef.h>,
5461         <stdlib.h>, <string.h>.
5462
5463 2006-07-30  Bruno Haible  <bruno@clisp.org>
5464
5465         * modules/readlink (License): Change to LGPL.
5466
5467 2006-07-30  Bruno Haible  <bruno@clisp.org>
5468
5469         * modules/javaversion (Makefile.am): Distribute javaversion.java and
5470         javaversion.class. Also install javaversion.class in $(pkgdatadir) and
5471         set PKGDATADIR to point to it.
5472
5473 2006-07-30  Bruno Haible  <bruno@clisp.org>
5474
5475         * modules/csharpexec (configure.ac): Comment out macro invocation.
5476         * modules/javaexec (configure.ac): Likewise.
5477         * modules/javacomp-script (configure.ac): Likewise.
5478
5479         * modules/csharpcomp-script (configure.ac): Use AC_REQUIRE.
5480
5481 2006-07-30  Bruno Haible  <bruno@clisp.org>
5482
5483         * modules/clean-temp (Depends-on): Add linkedhash-list, remove
5484         linked-list.
5485
5486 2006-07-30  Bruno Haible  <bruno@clisp.org>
5487
5488         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Assume <string.h> exists.
5489
5490 2006-07-30  Bruno Haible  <bruno@clisp.org>
5491
5492         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
5493         Initialize MOSTLYCLEANFILES to core and *.stackdump, so that core dumps
5494         get removed.
5495
5496 2006-07-29  Bruno Haible  <bruno@clisp.org>
5497
5498         Make it possible for gnulib-tool to work with locally modified or
5499         augmented gnulib repositories.
5500         * gnulib-tool (func_usage): Document --local-dir option.
5501         (local_gnulib_dir): New variable.
5502         Handle --local-dir option.
5503         (func_lookup_file): New function.
5504         (func_all_modules, func_verify_module): Look also in $local_gnulib_dir.
5505         (func_get_description, func_get_filelist, func_get_description,
5506         func_get_filelist, func_get_dependencies, func_get_autoconf_snippet,
5507         func_get_automake_snippet, func_get_include_directive,
5508         func_get_license, func_get_maintainer): Use func_lookup_file.
5509         (func_import, func_create_testdir): Use func_lookup_file.
5510
5511 2006-07-29  Bruno Haible  <bruno@clisp.org>
5512
5513         * modules/setenv (Depends-on): Add unistd.
5514
5515 2006-07-29  Bruno Haible  <bruno@clisp.org>
5516
5517         * lib/setenv.c: Undo unintended modification done on 2006-02-27.
5518
5519 2006-07-29  Bruno Haible  <bruno@clisp.org>
5520
5521         * lib/localcharset.c: Assume <stddef.h>, <stdlib.h>, <string.h> exist.
5522
5523 2006-07-29  Bruno Haible  <bruno@clisp.org>
5524
5525         * gnulib-tool (import, update): If there is no Makefile.am, look at
5526         aclocal.m4, instead of bailing out.
5527
5528 2006-07-29  Bruno Haible  <bruno@clisp.org>
5529
5530         * gnulib-tool (func_usage): Revert most of the 2006-07-15 change.
5531         Categorize the options by when they are useful.
5532
5533 2006-07-29  Bruno Haible  <bruno@clisp.org>
5534
5535         * gnulib-tool (func_usage): Document option --no-libtool.
5536         Handle option --no-libtool.
5537         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am): Update
5538         for changed semantics of $libtool variable.
5539         (func_import): Likewise. If libtool is not used, show this through
5540         an option --no-libtool.
5541         (func_create_testdir): Update.
5542
5543 2006-07-29  Bruno Haible  <bruno@clisp.org>
5544
5545         * gnulib-tool (func_import): Extend error message about missing
5546         --doc-base.
5547
5548 2006-07-29  Bruno Haible  <bruno@clisp.org>
5549
5550         * gnulib-tool (func_import): Don't create the $docbase directory if
5551         there is no file to store there.
5552
5553 2006-07-29  Bruno Haible  <bruno@clisp.org>
5554
5555         * gnulib-tool (autoconf_minversion): If a --dir option is given and
5556         relevant, look for configure.ac there, not in the current directory.
5557         Also use a simple search for AC_PREREQ, not "autoconf --trace".
5558
5559 2006-07-29  Bruno Haible  <bruno@clisp.org>
5560
5561         * gnulib-tool (SORT): New variable.
5562         (func_usage): Undocument --assume-autoconf option.
5563         Remove --assume-autoconf option handling.
5564         (autoconf_minversion): Determine from the contents of configure.ac.
5565         (func_import): Remove autoconf_minversion handling.
5566         Suggested by Eric Blake.
5567
5568 2006-07-29  Bruno Haible  <bruno@clisp.org>
5569
5570         * doc/gnulib-tool.texi (gl_LIBTOOL): Mention --no-libtool option.
5571
5572 2006-07-29  Bruno Haible  <bruno@clisp.org>
5573
5574         * config/srclist.txt (*setenv.[ch]): Remove rules.
5575
5576 2006-07-28  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
5577
5578         * m4/inet_pton.m4, inet_ntop.m4: Check for netinet/in.h too.
5579
5580 2006-07-28  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
5581
5582         * lib/inet_ntop.h, inet_pton.h: Need to include netinet/in.h before
5583         arpa/inet.h.
5584
5585 2006-07-28  Simon Josefsson  <jas@extundo.com>
5586
5587         * modules/inet_ntop (Depends-on): Depend on arpa_inet.
5588         * modules/inet_pton (Depends-on): Likewise.
5589
5590 2006-07-28  Simon Josefsson  <jas@extundo.com>
5591
5592         * m4/netinet_in_h.m4: New file.
5593
5594 2006-07-28  Simon Josefsson  <jas@extundo.com>
5595
5596         * lib/inet_ntop.h, inet_pton.h: No need to guard netinet/in.h
5597         #include's.
5598
5599 2006-07-28  Simon Josefsson  <jas@extundo.com>
5600
5601         * lib/inet_ntop.h, inet_pton.h: No need to guard arpa/inet.h
5602         #include's.
5603
5604 2006-07-28  Paul Eggert  <eggert@cs.ucla.edu>
5605
5606         * lib/modechange.c (mode_compile): Numeric modes now affect setuid and
5607         setgid on directories only if they set these bits.
5608         * lib/modechange.h: Remove obsolete comment about masks.
5609
5610 2006-07-28  Eric Blake  <ebb9@byu.net>
5611
5612         * lib/regex_internal.h (struct re_dfa_t) [!_LIBC]: Avoid invalid C89
5613         macro expansion.
5614
5615 2006-07-28  Bruno Haible  <bruno@clisp.org>
5616
5617         * lib/inet_ntop.h, inet_pton.h: Use #if HAVE* instead of #ifdef HAVE*.
5618
5619 2006-07-28  Bruno Haible  <bruno@clisp.org>
5620
5621         * m4/mbchar.m4 (gl_MBCHAR): Also test for iswcntrl.
5622
5623 2006-07-28  Bruno Haible  <bruno@clisp.org>
5624
5625         * lib/mbchar.h (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit,
5626         iswgraph, iswlower, iswprint, iswpunct, iswspace, iswupper, iswxdigit):
5627         Define fallbacks.
5628         Avoids link error on FreeBSD 4.x.
5629         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
5630
5631         * lib/wcwidth.h (iswprint): Assume an ASCII compatible wide character
5632         encoding.
5633         * lib/mbswidth.c (iswcntrl): Likewise.
5634
5635 2006-07-27  Bruno Haible  <bruno@clisp.org>
5636
5637         * m4/stdint.m4 (gl_STDINT_H): Define __STDC_CONSTANT_MACROS during the
5638         test.
5639
5640 2006-07-27  Bruno Haible  <bruno@clisp.org>
5641
5642         * lib/stdint_.h (INT*_C, UINT*_C) [C++]: Define these if
5643         __STDC_CONSTANT_MACROS is defined, not if __STDC_LIMIT_MACROS is
5644         defined.
5645
5646 2006-07-26  Eric Blake  <ebb9@byu.net>
5647
5648         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Check for missing pipe.
5649
5650 2006-07-26  Eric Blake  <ebb9@byu.net>
5651
5652         * lib/mkstemp-safer.c [! HAVE_MKSTEMP]: Add prototype for platforms
5653         like mingw that lack mkstemp.
5654         * lib/pipe-safer.c (pipe_safer) [!HAVE_FUNC_PIPE]: Provide fallback to
5655         avoid compilation warning on mingw.
5656
5657 2006-07-26  Bruno Haible  <bruno@clisp.org>
5658
5659         * m4/stdint.m4 (gl_STDINT_H): Also verify the existence of the macros
5660         INT*_MIN, INT_LEAST*_MAX, INT_LEAST*_MIN, UINT_LEAST*_MAX,
5661         INT_FAST*_MIN, INTPTR_MIN.
5662
5663 2006-07-25  Bruno Haible  <bruno@clisp.org>
5664
5665         * modules/version-etc (Depends-on): Add stdarg.
5666
5667 2006-07-25  Bruno Haible  <bruno@clisp.org>
5668
5669         * m4/stdint.m4 (gl_INTEGER_TYPE_SUFFIX): Avoid 'eval' in front of
5670         complex commands.
5671
5672 2006-07-25  Bruno Haible  <bruno@clisp.org>
5673
5674         * lib/version-etc.c (version_etc_va): Use va_copy, assumed to be
5675         defined in <stdarg.h> or config.h.
5676
5677 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
5678
5679         * m4/stdio-safer.m4 (gl_FOPEN_SAFER, gl_TMPFILE_SAFER): New macros.
5680         (gl_STDIO_SAFER): Remove.
5681
5682 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
5683
5684         * MODULES.html.sh (File stream based Input/Output):
5685         Add fopen-safer, tmpfile-safer; remove stdio-safer.
5686         * modules/getusershell (Depends-on): Change stdio-safer to fopen-safer.
5687         * modules/fopen-safer, modules/tmpfile-safer: New files.
5688         * modules/stdio-safer: Remove.
5689
5690 2006-07-24  Bruno Haible  <bruno@clisp.org>
5691
5692         * modules/tmpdir: New file.
5693         * MODULES.html.sh (File system functions): Add it.
5694
5695 2006-07-24  Bruno Haible  <bruno@clisp.org>
5696
5697         * modules/javacomp (Depends-on): Add unistd, javaversion, binary-io,
5698         getline, pathname, fwriteerror, clean-temp, xvasprintf, strstr.
5699
5700 2006-07-24  Bruno Haible  <bruno@clisp.org>
5701
5702         * modules/clean-temp: New file.
5703
5704 2006-07-24  Bruno Haible  <bruno@clisp.org>
5705
5706         * m4/tmpdir.m4: New file, from GNU gettext.
5707
5708 2006-07-24  Bruno Haible  <bruno@clisp.org>
5709
5710         * lib/tmpdir.h: New file, from GNU gettext.
5711         * lib/tmpdir.c: New file, from GNU gettext.
5712
5713 2006-07-24  Bruno Haible  <bruno@clisp.org>
5714
5715         * lib/clean-temp.h: New file, from GNU gettext.
5716         * lib/clean-temp.c: New file, from GNU gettext.
5717
5718 2006-07-23  Eric Blake  <ebb9@byu.net>
5719
5720         * modules/stdio-safer (Files): Add tmpfile-safer.c.
5721         (Depends-on): Add binary-io.
5722
5723 2006-07-23  Eric Blake  <ebb9@byu.net>
5724
5725         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Add tmpfile-safer.c.
5726
5727 2006-07-23  Eric Blake  <ebb9@byu.net>
5728
5729         * lib/tmpfile-safer.c: New file.
5730         * lib/stdio-safer.h (fopen_safer): Add prototype.
5731         * lib/stdio--.h (tmpfile): Make safer.
5732
5733 2006-07-23  Bruno Haible  <bruno@clisp.org>
5734
5735         * lib/gl_anylinked_list2.h (ASYNCSAFE): New macro.
5736         (gl_linked_add_first, gl_linked_add_last, gl_linked_add_before,
5737         gl_linked_add_after, gl_linked_add_at, gl_linked_remove_node,
5738         gl_linked_remove_at): Use it.
5739
5740 2006-07-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
5741         and Simon Josefsson <jas@extundo.com>
5742
5743         * lib/getaddrinfo.h (AI_PASSIVE): Make sure it is defined.
5744
5745         * lib/getaddrinfo.c (getaddrinfo): Support AI_PASSIVE.
5746
5747 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
5748
5749         * modules/close-stream: New file.
5750         * modules/closeout (Description): Make it clear that it exits
5751         with a diagnostic on error.
5752         (Depends-on): Add close-stream.  Remove fpending, stdbool.
5753         * MODULES.html.sh (File stream based Input/Output): Add close-stream.
5754
5755 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
5756
5757         * m4/close-stream.m4: New file.
5758
5759 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
5760
5761         * lib/close-stream.c, lib/close-stream.h: New files.
5762
5763 2006-07-22  Bruno Haible  <bruno@clisp.org>
5764
5765         Merge from GNU gettext 0.15.
5766
5767         2006-05-01  Bruno Haible  <bruno@clisp.org>
5768
5769                 * build-aux/javacomp.sh.in: Update for changed javacomp.m4.
5770
5771         2006-07-22  Bruno Haible  <bruno@clisp.org>
5772
5773                 * modules/javaversion: New file.
5774                 * MODULES.html.sh (Java): Add javaversion.
5775
5776         2006-03-12  Bruno Haible  <bruno@clisp.org>
5777
5778                 * build-aux/javaexec.sh.in: Update for changed javaexec.m4.
5779
5780         2005-12-04  Bruno Haible  <bruno@clisp.org>
5781
5782                 * build-aux/csharpexec.sh.in: Add support for 'clix' launcher
5783                 (untested).
5784
5785         2006-06-21  Bruno Haible  <bruno@clisp.org>
5786
5787                 Avoid warnings from recent versions of mcs.
5788                 * build-aux/csharpcomp.sh.in (options_mcs): Don't use options
5789                 -o, -L, -r any more. Use options documented since mcs-1.0
5790                 instead. Similarly for -g.
5791
5792         2005-12-04  Bruno Haible  <bruno@clisp.org>
5793
5794                 * build-aux/csharpcomp.sh.in: Suffix for resources is
5795                 .resources, not .resource.
5796
5797         2005-07-09  Bruno Haible  <bruno@clisp.org>
5798
5799                 * build-aux/csharpcomp.sh.in (options_csc): For -l option,
5800                 add a .dll suffix.
5801                 Reported by Mark Junker <mjscod@gmx.de>.
5802
5803         2006-07-22  Bruno Haible  <bruno@clisp.org>
5804
5805                 * modules/gettext: Upgrade to gettext-0.15.
5806                 (Files): Remove m4/isc-posix.m4. Add m4/lock.m4,
5807                 m4/visibility.m4.
5808                 Replace m4/inttypes.m4 with m4/inttypes-h.m4.
5809
5810 2006-07-22  Bruno Haible  <bruno@clisp.org>
5811
5812         Merge from GNU gettext 0.15.
5813
5814         2006-03-25  Bruno Haible  <bruno@clisp.org>
5815
5816                 * lib-link.m4 (AC_LIB_LINKFLAGS_FROM_LIBS): New macro.
5817
5818         2006-07-21  Bruno Haible  <bruno@clisp.org>
5819
5820                 * javacomp.m4 (gt_JAVACOMP): Convert target_version "null" to
5821                 "1.1".
5822
5823         2006-05-09  Bruno Haible  <bruno@clisp.org>
5824
5825                 * javacomp.m4 (gt_JAVACOMP): On Cygwin, set
5826                 CLASSPATH_SEPARATOR to a semicolon. Use CLASSPATH_SEPARATOR
5827                 for the conftestver execution.
5828
5829         2006-05-01  Bruno Haible  <bruno@clisp.org>
5830
5831                 * javacomp.m4 (gt_JAVACOMP): Accept a source-version and an
5832                 optional target-version argument. Verify that the compiler
5833                 groks source of the specified source-version, or add -source
5834                 option as necessary. Verify that the compiler produces
5835                 bytecode in the specified target-version, or add -target and
5836                 -source options as necessary. Make the result of the test
5837                 available as variable CONF_JAVAC. Also log error output in
5838                 config.log.
5839
5840         2006-03-11  Bruno Haible  <bruno@clisp.org>
5841
5842                 * javacomp.m4 (gt_JAVACOMP): Treat gcj-4.x like gcj-3.x.
5843
5844         2006-05-09  Bruno Haible  <bruno@clisp.org>
5845
5846                 * javaexec.m4 (gt_JAVAEXEC): On Cygwin, set
5847                 CLASSPATH_SEPARATOR to a semicolon.
5848
5849         2006-03-12  Bruno Haible  <bruno@clisp.org>
5850
5851                 * javaexec.m4 (gt_JAVAEXEC): Make the result of the test
5852                 available as variable CONF_JAVA, for subsequent autoconf
5853                 tests. Also log error output in config.log.
5854
5855         2006-07-19  Bruno Haible  <bruno@clisp.org>
5856
5857                 * getline.m4 (AM_FUNC_GETLINE): When cross-compiling, assume
5858                 that getline works on glibc2 systems. Needed to avoid trouble
5859                 in relocatable.c.
5860                 Reported by Nils Magnus Larsgard <nmlarsgaard@atmel.no>.
5861
5862         2005-12-04  Bruno Haible  <bruno@clisp.org>
5863
5864                 * csharpexec.m4 (gt_CSHARPEXEC): Add support for 'clix'
5865                 launcher (untested).
5866
5867         2005-12-04  Bruno Haible  <bruno@clisp.org>
5868
5869                 * csharpcomp.m4 (gt_CSHARPCOMP): Also set CSHARPCOMPFLAGS.
5870
5871         2006-07-22  Bruno Haible  <bruno@clisp.org>
5872
5873                 * gettext.m4: Update from GNU gettext-0.15.
5874                 * nls.m4: Likewise.
5875                 * po.m4: Likewise.
5876                 * inttypes-pri.m4: Likewise.
5877                 * inttypes-h.m4: Renamed from inttypes.m4.
5878                 (gl_HEADER_INTTYPES_H): Renamed from gt_HEADER_INTTYPES_H.
5879
5880 2006-07-22  Bruno Haible  <bruno@clisp.org>
5881
5882         Merge from GNU gettext 0.15.
5883
5884         2005-07-05  Bruno Haible  <bruno@clisp.org>
5885
5886                 * printf-args.c (printf_fetchargs): Work around broken
5887                 definition of wint_t on mingw.
5888
5889         2005-02-12  Bruno Haible  <bruno@clisp.org>
5890
5891                 * xallocsa.h: Add extern "C" for C++.
5892
5893         2006-05-17  Bruno Haible  <bruno@clisp.org>
5894
5895                 Cygwin portability.
5896                 * progreloc.c (WIN32_NATIVE): Renamed from WIN32.
5897
5898         2006-04-30  Bruno Haible  <bruno@clisp.org>
5899
5900                 * progreloc.c: Include <mach-o/dyld.h> if available.
5901                 (find_executable): Use _NSGetExecutablePath when possible.
5902
5903         2006-05-06  Charles Wilson  <cygwin@cwilson.fastmail.fm>
5904
5905                 * progreloc.c (maybe_executable) [CYGWIN]: Use the access()
5906                 function.
5907
5908         2005-12-29  Bruno Haible  <bruno@clisp.org>
5909
5910                 * progreloc.c (set_program_name_and_installdir): Fix
5911                 compilation error.
5912
5913         2005-12-04  Bruno Haible  <bruno@clisp.org>
5914
5915                 Cygwin portability.
5916                 * progreloc.c: Include <windows.h> also on Cygwin.
5917                 (find_executable): Add support for Cygwin.
5918                 (set_program_name_and_installdir): Handle also platforms with
5919                 nonempty EXEEXT.
5920
5921         2006-07-11  Bruno Haible  <bruno@clisp.org>
5922
5923                 * javacomp.c: Fix a comment.
5924                 Reported by Jim Meyering.
5925
5926         2006-04-30  Bruno Haible  <bruno@clisp.org>
5927
5928                 * javacomp.h (compile_java_class): Add source_version,
5929                 target_version arguments.
5930                 * javacomp.c: Rewritten to choose only a compiler that
5931                 respects the specified source_version and target_version.
5932
5933         2006-06-27  Bruno Haible  <bruno@clisp.org>
5934
5935                 Assume correct S_ISDIR macro.
5936                 * mkdtemp.c: Remove test of STAT_MACROS_BROKEN.
5937
5938         2006-07-22  Bruno Haible  <bruno@clisp.org>
5939
5940                 * javaversion.h: New file, from GNU gettext.
5941                 * javaversion.c: New file, from GNU gettext.
5942                 * javaversion.java: New file, from GNU gettext.
5943                 * javaversion.class: New file, from GNU gettext.
5944
5945         2006-05-17  Bruno Haible  <bruno@clisp.org>
5946
5947                 Cygwin portability.
5948                 * javaexec.c (execute_java_class): Test for jview program
5949                 also on Cygwin.
5950
5951         2006-04-09  Bruno Haible  <bruno@clisp.org>
5952
5953                 * fatal-signal.c: Don't include string.h.
5954                 (at_fatal_signal): Use a copying loop instead of memcpy.
5955
5956         2005-12-04  Bruno Haible  <bruno@clisp.org>
5957
5958                 * csharpexec.c: Add support for 'clix' launcher (untested).
5959                 (execute_csharp_using_sscli): New function.
5960                 (execute_csharp_program): Call it.
5961
5962         2006-06-21  Bruno Haible  <bruno@clisp.org>
5963
5964                 Avoid warnings from recent versions of mcs.
5965                 * csharpcomp.c (compile_csharp_using_mono): Don't use options
5966                 -o, -L, -r any more. Use options documented since mcs-1.0
5967                 instead. Similarly for -g.
5968
5969         2005-07-09  Bruno Haible  <bruno@clisp.org>
5970
5971                 * csharpcomp.c (compile_csharp_using_sscli): For -l option,
5972                 add a .dll suffix.
5973                 Reported by Mark Junker <mjscod@gmx.de>.
5974
5975         2006-06-17  Bruno Haible  <bruno@clisp.org>
5976
5977                 * config.charset: Update for NetBSD 3.0.
5978
5979         2006-05-17  Bruno Haible  <bruno@clisp.org>
5980
5981                 Cygwin portability.
5982                 * localcharset.c (WIN32_NATIVE): Renamed from WIN32.
5983
5984         2006-05-16  Bruno Haible  <bruno@clisp.org>
5985
5986                 * localcharset.c [CYGWIN]: Include <windows.h>.
5987                 (get_charset_aliases): For Cygwin, return the same CPxxx
5988                 aliases list as under WIN32.
5989                 (locale_charset) [CYGWIN]: Try to retrieve the encoding from
5990                 the environment variables. Fall back to GetACP().
5991
5992         2006-04-05  Bruno Haible  <bruno@clisp.org>
5993
5994                 * config.charset: Update Juan Manuel Guerrero's address.
5995
5996         2005-02-12  Bruno Haible  <bruno@clisp.org>
5997
5998                 * allocsa.h: Add extern "C" for C++.
5999
6000         2005-02-10  Bruno Haible  <bruno@clisp.org>
6001
6002                 * allocsa.h (sa_alignof): Define differently with AIX xlc, to
6003                 avoid a bug of this compiler on AIX 3.2.5 dealing with enums.
6004
6005         2006-07-22  Bruno Haible  <bruno@clisp.org>
6006
6007                 * gettext.h: Update to GNU gettext-0.15.
6008
6009 2006-07-22  Bruno Haible  <bruno@clisp.org>
6010
6011         * config/srclist.txt: Resync printf-args.c, vasnprintf.c,
6012         localcharset.c, mkdtemp.c, config.rpath, lib-ld.m4, lib-link.m4,
6013         lib-prefix.m4, longdouble.m4, ssize_t.m4.
6014
6015 2006-07-21  Eric Blake  <ebb9@byu.net>
6016
6017         * modules/stdlib-safer: New file.
6018         * MODULES.html.sh (File stream based Input/Output): Add
6019         stdlib-safer.
6020
6021 2006-07-21  Eric Blake  <ebb9@byu.net>
6022
6023         * lib/stdlib-safer.h: New file from coreutils, required by
6024         stdlib--.h.
6025
6026 2006-07-20  Paul Eggert  <eggert@cs.ucla.edu>
6027
6028         * gnulib-tool (func_usage): Document --assume-autoconf='latest-stable'.
6029
6030 2006-07-20  Bruno Haible  <bruno@clisp.org>
6031
6032         * gnulib-tool: Recognize new option --assume-autoconf.
6033         (autoconf_minversion): New variable.
6034         (func_get_filelist): Use it to decide whether to add onceonly_2_57.m4.
6035
6036 2006-07-20  Bruno Haible  <bruno@clisp.org>
6037
6038         * MODULES.html.sh (func_all_modules): Add a missing func_begin_table.
6039
6040 2006-07-19  Derek R. Price  <derek@ximbiot.com>
6041
6042         * lib/getaddrinfo.h: Don't define unimplemented AI_* flags.
6043         Reindent and repaginate.
6044
6045 2006-07-19  Derek Price  <derek@ximbiot.com>
6046
6047         * doc/gnulib.texi (Libtool and Windows):  Eliminate passive voice.
6048         Correct grammar.
6049
6050 2006-07-17  Bruno Haible  <bruno@clisp.org>
6051
6052         * modules/list: New file.
6053         * modules/array-list: New file.
6054         * modules/carray-list, modules/carray-list-tests: New files.
6055         * modules/linked-list, modules/linked-list-tests: New files.
6056         * modules/avltree-list, modules/avltree-list-tests: New files.
6057         * modules/rbtree-list, modules/rbtree-list-tests: New files.
6058         * modules/linkedhash-list, modules/linkedhash-list-tests: New files.
6059         * modules/avltreehash-list, modules/avltreehash-list-tests: New files.
6060         * modules/rbtreehash-list, modules/rbtreehash-list-tests: New files.
6061         * modules/oset: New file.
6062         * modules/array-oset: New file.
6063         * modules/avltree-oset, modules/avltree-oset-tests: New files.
6064         * modules/rbtree-oset, modules/rbtree-oset-tests: New files.
6065         * tests/test-carray_list.c: New file.
6066         * tests/test-linked_list.c: New file.
6067         * tests/test-avltree_list.c: New file.
6068         * tests/test-rbtree_list.c: New file.
6069         * tests/test-linkedhash_list.c: New file.
6070         * tests/test-avltreehash_list.c: New file.
6071         * tests/test-rbtreehash_list.c: New file.
6072         * tests/test-avltree_oset.c: New file.
6073         * tests/test-rbtree_oset.c: New file.
6074         * MODULES.html.sh (Container data structures): New section.
6075
6076 2006-07-17  Bruno Haible  <bruno@clisp.org>
6077
6078         * m4/gl_list.m4: New file.
6079
6080 2006-07-17  Bruno Haible  <bruno@clisp.org>
6081
6082         * lib/gl_list.h: New file.
6083         * lib/gl_list.c: New file.
6084         * lib/gl_array_list.h: New file.
6085         * lib/gl_array_list.c: New file.
6086         * lib/gl_carray_list.h: New file.
6087         * lib/gl_carray_list.c: New file.
6088         * lib/gl_linked_list.h: New file.
6089         * lib/gl_linked_list.c: New file.
6090         * lib/gl_anylinked_list1.h: New file.
6091         * lib/gl_anylinked_list2.h: New file.
6092         * lib/gl_avltree_list.h: New file.
6093         * lib/gl_avltree_list.c: New file.
6094         * lib/gl_anyavltree_list1.h: New file.
6095         * lib/gl_anyavltree_list2.h: New file.
6096         * lib/gl_rbtree_list.h: New file.
6097         * lib/gl_rbtree_list.c: New file.
6098         * lib/gl_anyrbtree_list1.h: New file.
6099         * lib/gl_anyrbtree_list2.h: New file.
6100         * lib/gl_anytree_list1.h: New file.
6101         * lib/gl_anytree_list2.h: New file.
6102         * lib/gl_linkedhash_list.h: New file.
6103         * lib/gl_linkedhash_list.c: New file.
6104         * lib/gl_anyhash_list1.h: New file.
6105         * lib/gl_anyhash_list2.h: New file.
6106         * lib/gl_avltreehash_list.h: New file.
6107         * lib/gl_avltreehash_list.c: New file.
6108         * lib/gl_rbtreehash_list.h: New file.
6109         * lib/gl_rbtreehash_list.c: New file.
6110         * lib/gl_anytreehash_list1.h: New file.
6111         * lib/gl_anytreehash_list2.h: New file.
6112
6113         * lib/gl_oset.h: New file.
6114         * lib/gl_oset.c: New file.
6115         * lib/gl_array_oset.h: New file.
6116         * lib/gl_array_oset.c: New file.
6117         * lib/gl_avltree_oset.h: New file.
6118         * lib/gl_avltree_oset.c: New file.
6119         * lib/gl_rbtree_oset.h: New file.
6120         * lib/gl_rbtree_oset.c: New file.
6121         * lib/gl_anytree_oset.h: New file.
6122
6123 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
6124
6125         * m4/mkancesdirs.m4: New file.
6126         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Mention dirchownmod.c,
6127         dirchownmod.h.  Don't require AC_FUNC_ALLOCA, gl_AFS, gl_CHDIR_SAFER;
6128         no longer needed.  Require gl_FUNC_LCHOWN, since dirchownmod.c needs
6129         it.
6130
6131 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
6132
6133         * lib/dirchownmod.c, lib/dirchownmod.h, lib/mkancesdirs.c:
6134         * lib/mkancesdirs.h: New files.
6135         * lib/mkdir-p.c: Don't include alloca.h, stdio.h, sys/types.h,
6136         unistd.h, string.h, chdir-safer.h, dirname.h, lchmod.h, lchown.h,
6137         save-cwd.h.  Instead, include dirchownmod.h and mkancesdirs.h.
6138         (make_dir_parents): New args MAKE_ANCESTOR, OPTIONS, ANNOUNCE,
6139         MODE_BITS.  Remove options VERBOSE_FMT_STRING, CWD_ERRNO.  All
6140         callers changed.  Revamp internals significantly, by not
6141         attempting to create directories that are temporarily more
6142         permissive than the final results.  Do not attempt to use
6143         save_cwd/restore_cwd; it isn't worth it for mkdir and install.
6144         This removes some race conditions, fixes some bugs, and simplifies
6145         things.  Use new dirchownmod function to do owner and mode changes.
6146         * lib/mkdir-p.h: Likewise.
6147         * lib/modechange.c (octal_to_mode): New function.
6148         (struct mode_change): New member mentioned.
6149         (make_node_op_equals): New arg mentioned.  All callers changed.
6150         (mode_compile): Keep track of which mode bits the user has explicitly
6151         mentioned.
6152         (mode_adjust): New arg DIR, so that we implement the X op correctly.
6153         New arg PMODE_BITS, to keep track of which mode bits the user
6154         mentioned; it treats S_ISUID and S_ISGID speciall.
6155         All callers changed.
6156         * lib/modechange.h: Likewise.
6157
6158 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
6159
6160         * MODULES.html.sh: Add mkancestors.
6161         * modules/mkancesdirs: New module.
6162         * modules/mkdir-p (Files): Remove lib/chdir-safer.c, lib/chdir-safer.h,
6163         lib/same-inode.h, m4/afs.m4, m4/chdir-safer.m4.
6164         The chdir-safer and afs files are now orphans; I'll remove them
6165         unless someone speaks up.
6166         Add lib/dirchownmod.c, lib/dirchownmod.h.
6167         (Depends-on): Remove alloca, chown, save-cwd, dirname.
6168         Add lchown, mkancesdirs.
6169         (Maintainer): Add self.
6170
6171 2006-07-15  Karl Berry  <karl@gnu.org>
6172
6173         * gnulib-tool: help message wording/arrangement.
6174
6175 2006-07-14  Simon Josefsson  <jas@extundo.com>
6176
6177         * doc/gnulib.texi (Libtool and Windows): New section.
6178
6179 2006-07-12  Simon Josefsson  <jas@extundo.com>
6180
6181         * modules/gendocs (License): Fix license, approved by Karl.
6182
6183 2006-07-12  Eric Blake  <ebb9@byu.net>
6184
6185         * MODULES.html.sh: Add gendocs.
6186
6187 2006-07-11  Eric Blake  <ebb9@byu.net>
6188
6189         * modules/fdl: New module, to install doc/fdl.texi.
6190         * MODULES.html.sh: Add new section for documentation modules.
6191         * gnulib-tool: Avoid space-tab.
6192         (--doc-base): New option, to manage files from doc.
6193
6194 2006-07-11  Eric Blake  <ebb9@byu.net>
6195
6196         * m4/absolute-header.m4: Fix comments to match recent change.
6197
6198 2006-07-11  Eric Blake  <ebb9@byu.net>
6199
6200         * gnulib-tool: List --doc-base before --tests-base.
6201
6202 2006-07-11  Derek R. Price  <derek@ximbiot.com>
6203
6204         * lib/glob.c: s/NAMLEN/_D_EXACT_NAMLEN/.
6205
6206 2006-07-11  Bruno Haible  <bruno@clisp.org>
6207
6208         * README: Mention where to put documentation.
6209
6210 2006-07-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6211
6212         * doc/functions.texi, gnulib-tool.texi, gnulib.texi: Fix some typos.
6213
6214 2006-07-10  Paul Eggert  <eggert@cs.ucla.edu>
6215
6216         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Like today's change
6217         to stdint.m4.
6218
6219 2006-07-10  Paul Eggert  <eggert@cs.ucla.edu>
6220
6221         * m4/stdint.m4 (gl_STDINT_H): Like yesterday's change to
6222         absolute-header.m4.  Also, set ABSOLUTE_STDINT_H to a string
6223         "no/such/file/stdint.h" when there is no such file, so that
6224         the resulting C code can be parsed by dodgy compilers.
6225         Problems reported by Bob Proulx.
6226
6227 2006-07-10  Derek R. Price  <derek@ximbiot.com>
6228
6229         * lib/backupfile.c, dirfd.h, fts.c, getcwd.c, glob.c, glob_.h:
6230         Ignore the obsolescent !HAVE_DIRENT_H case.  Consolidate NAMLEN
6231         macros into the GNU _D_EXACT_NAMLEN.
6232         * lib/savedir.c:  Likewise.
6233         (savedirstream): Use _D_EXACT_NAMLEN in preference to strlen.
6234
6235 2006-07-10  Derek R. Price  <derek@ximbiot.com>
6236         and Paul Eggert  <eggert@cs.ucla.edu>
6237
6238         * m4/backupfile.m4, d-ino.m4, d-type.m4, dirfd.m4, fts.m4, getcwd.m4:
6239         * m4/savedir.m4:
6240         Ignore the obsolescent !HAVE_DIRENT_H case.  Consolidate NAMLEN
6241         macros into the GNU _D_EXACT_NAMLEN.
6242
6243 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
6244
6245         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Use "" rather than <>
6246         around the absolute name, to work around a problem with the HP-UX
6247         11.23 native C compiler, reported by Bob Proulx.
6248
6249 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
6250
6251         * doc/maintain.texi, make-stds.texi: Sync from
6252         <http://savannah.gnu.org/projects/gnustandards>.
6253
6254 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
6255
6256         * build-aux/depcomp, build-aux/install-sh: Sync from Automake.
6257
6258 2006-07-09  Jim Meyering  <jim@meyering.net>
6259
6260         * m4/glob.m4: Remove a doubled word in a comment.
6261
6262 2006-07-09  Jim Meyering  <jim@meyering.net>
6263
6264         * lib/argp-pv.c: Remove a doubled word in a comment.
6265         * lib/check-version.c (check_version): Likewise.
6266         * lib/javacomp.c (compile_java_class): Likewise.
6267
6268 2006-07-08  Paul Eggert  <eggert@cs.ucla.edu>
6269
6270         * gnulib-tool (func_get_filelist): Don't echo m4/onceonly_2_57.m4,
6271         for the benefit of people using Autoconf 2.60.  If you want to
6272         support older Autoconf versions you can copy m4/onceonly_2_57.m4
6273         (or m4/onceonly.m4, if pre-2.57) manually.
6274
6275 2006-07-08  Jim Meyering  <jim@meyering.net>
6276
6277         * m4/link-follow.m4: Remove one of two adjacent "whether"s in a
6278         comment.
6279         * m4/getopt.m4: Remove one of two adjacent "your"s in a comment.
6280         * m4/regex.m4 (gl_REGEX): Remove one of two adjacent "the"s in a
6281         comment.
6282
6283 2006-07-08  Jim Meyering  <jim@meyering.net>
6284
6285         * lib/getndelim2.h (getndelim2): Remove doubled "after" in comment.
6286
6287 2006-07-07  Simon Josefsson  <jas@extundo.com>
6288
6289         * tests/test-crc.c: Change expected crc value, the test vector
6290         were probably computed using the old broken crc.c?
6291
6292 2006-07-06  Simon Josefsson  <jas@extundo.com>
6293
6294         * modules/sys_socket (Files): Add m4/sockpfaf.m4 (this module is
6295         now the canonical place for the M4 file).
6296
6297         * modules/getaddrinfo (Files): Remove m4/sockpfaf.m4, we get it
6298         from the sys_socket dependency now.
6299
6300         * modules/inet_pton (Files): Ditto.
6301
6302         * modules/inet_ntop (Files): Ditto.
6303
6304 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
6305
6306         * modules/getusershell (configure.ac): Use gl_FUNC_GETUSERSHELL,
6307         not gl_PREREQ_GETUSERSHELL.
6308
6309 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6310
6311         * m4/_inttypes_h.m4 (gl_INTTYPES_H): Use AC_CHECK_DECLS_ONCE
6312         with only one argument, for Autoconf 2.60.
6313         * m4/fileblocks.m4 (gl_PREREQ_FILEBLOCKS): AC_CHECK_DECLS_ONCE may
6314         expand to nothing, so add a shell command to avoid syntax error.
6315         * m4/getpass.m4 (gl_PREREQ_GETPASS): Likewise.
6316
6317 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6318
6319         * lib/strtod.c (strtod): cast the argument of tolower to unsigned char.
6320
6321 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
6322
6323         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Don't check for getenv decl;
6324         no longer needed.  Check for isblank decl.
6325         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Don't check for getenv decl.
6326         * m4/regex.m4 (gl_PREREQ_REGEX): Dheck for isblank decl instead
6327         of existence.
6328
6329 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
6330
6331         * lib/getloadavg.c: Use __VMS, not VMS.
6332         * lib/getopt.c: Likewise.
6333         * lib/getpagesize.h: Likewise.
6334         * lib/glob.c: Remove most VMS cruft; it hasn't been tested for a while
6335         and probably does not work.
6336
6337 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
6338
6339         * lib/.cppi-disable: Add wcwidth.
6340         * lib/fnmatch.c (ISBLANK): Remove.  All uses changed to isblank.
6341         (isblank) [! (defined isblank || HAVE_DECL_ISBLANK)]: New macro.
6342         (ISGRAPH): Remove.  All uses changed to isgraph.
6343         (FOLD) [!defined _LIBC]: Remove special case.
6344         * lib/getdate.y (lookup_word): Remove no-longer-needed call to islower.
6345         * lib/regex_internal.h (isblank): Depend on HAVE_DECL_ISBLANK, not
6346         HAVE_ISBLANK.
6347         * lib/strftime.c (TOLOWER, TOUPPER) [!defined _LIBC]: Remove special
6348         case.
6349
6350 2006-07-06  Jim Hyslop  <jhyslop@dreampossible.ca>  (tiny change)
6351
6352         * lib/getaddrinfo.c: Changes to compile under MSVC6: changed
6353         '#if WIN32_NATIVE' to '#ifdef' & moved WSAAPI macro inside
6354         brackets.  Other minor changes to suppress some compiler
6355         warnings.
6356
6357 2006-07-06  Derek R. Price  <derek@ximbiot.com>
6358         and Paul Eggert  <eggert@cs.ucla.edu>
6359
6360         * m4/backupfile.m4 (gl_BACKUPFILE): Check for dirent.h, instead
6361         of invoking obsolescent AC_HEADER_DIRENT macro.
6362         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Likewise.
6363         * m4/d-type.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Likewise.
6364         * m4/dirfd.m4 (gl_FUNC_DIRFD): Likewise.
6365         * m4/fts.m4 (gl_FUNC_FTS_CORE): Likewise.
6366         * m4/getcwd.m4 (gl_PREREQ_GETCWD): Likewise.
6367         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
6368         * m4/savedir.m4 (gl_SAVEDIR): Likewise.
6369         * m4/readdir.m4: Remove; no longer needed.
6370
6371 2006-07-06  Derek R. Price  <derek@ximbiot.com>
6372         and Paul Eggert  <eggert@cs.ucla.edu>
6373
6374         * lib/backupfile.c [HAVE_DIRENT_H && ! HAVE_NDIR_H]:
6375         Don't worry about this obsolete case any more.
6376         (HAVE_DIR): Remove.  All uses removed; we now assume you can read
6377         directories.
6378         * lib/dirfd.h [HAVE_DIRENT_H && ! HAVE_NDIR_H]: Don't
6379         worry about this obsolete case any more.
6380         * lib/fts.c: Likewise.
6381         * lib/getcwd.c: Likewise.
6382         * lib/glob.h: Likewise.
6383         * lib/savedir.c: Likewise.
6384
6385 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
6386
6387         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Use AC_CHECK_DECLS_ONCE
6388         rather than AC_CHECK_DECLS for strtoimax and strtoumax.
6389         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Remove; no longer
6390         needed.
6391         All uses removed.
6392         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
6393         * m4/strtoul.m4 (gl_PREREQ_STRTOUL): Likewise.
6394         * m4/exclude.m4 (gl_EXCLUDE): Don't check for isascii; no longer
6395         needed.
6396         * m4/getdate.m4 (gl_GETDATE): Likewise.
6397         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Likewise.
6398         * m4/memcasecmp.m4 (gl_MEMCASECMP): Likewise.
6399         * m4/strtod.m4 (gl_FUNC_STRTOD): Likewise.
6400         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
6401         * m4/strtoul.m4 (gl_PREREQ_STRTOUL): Likewise.
6402         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
6403         * m4/exclude.m4 (gl_EXCLUDE): Don't require AC_C_INLINE; no longer
6404         needed.
6405
6406 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
6407
6408         * lib/memcasecmp.c: Include <limits.h>.
6409         (memcasecmp): Don't assume UCHAR_MAX <= INT_MAX.
6410         * lib/strtod.c (strtod): Don't assume isspace works on negative chars.
6411         Don't assume isdigit succeeds only on '0' through '9'.
6412
6413 2006-07-05  Eric Blake  <ebb9@byu.net>
6414
6415         * modules/getaddrinfo (Depends-on): Add snprintf.
6416
6417 2006-07-05  Eric Blake  <ebb9@byu.net>
6418
6419         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Use gl_HEADER_SYS_SOCKET
6420         to avoid 'header present but could not be compiled' on cygwin.
6421
6422 2006-07-05  Eric Blake  <ebb9@byu.net>
6423
6424         * lib/getaddrinfo.h (NI_NUMERICHOST, NI_NUMERICSERV): Define if
6425         missing from netdb.h.
6426         * lib/getaddrinfo.c (includes): Include inet_ntop and snprintf.
6427
6428 2006-07-05  Derek R. Price  <derek@ximbiot.com>
6429
6430         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Don't require AC_HEADER_STDC;
6431         no longer needed.
6432         * m4/exclude.m4 (gl_EXCLUDE): Likewise.
6433         * m4/getdate.m4 (gl_GETDATE): Likewise.
6434         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Likewise.
6435         * m4/memcasecmp.m4 (gl_MEMCASECMP): Likewise.
6436         * m4/strtod.m4 (gl_FUNC_STRTOD): Likewise.
6437         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
6438         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
6439
6440 2006-07-05  Derek R. Price  <derek@ximbiot.com>
6441
6442         * lib/exclude.c (IN_CTYPE_DOMAIN, is_space): Remove; no longer needed.
6443         All uses of is_space replaced by isspace.
6444         * lib/exit.h: Don't talk about STDC_HEADERS.
6445         * lib/fnmatch.c (ISASCII): Remove; no longer needed.  All uses removed.
6446         (ISPRINT, ISDIGIT, ISALNUM, ISALPHA, ISCNTRL, ISLOWER, ISPUNCT):
6447         (ISSPACE, ISUPPER, ISXDIGIT): Remove; no longer needed.  All uses
6448         replaced by isprint etc.
6449         * lib/getdate.y (IN_CTYPE_DOMAIN, ISSPACE, ISALPHA, ISLOWER): Likewise.
6450         * lib/getusershell.c (IN_CTYPE_DOMAIN, ISSPACE): Likewise.
6451         * lib/memcasecmp.c (IN_CTYPE_DOMAIN, ISLOWER, TOUPPER): Likewise.
6452         * lib/strtod.c (IN_CTYPE_DOMAIN, ISSPACE, ISDIGIT, TOLOWER): Likewise.
6453         * lib/strtol.c (IN_CTYPE_DOMAIN): Likewise.
6454         * lib/xstrtol.c (IN_CTYPE_DOMAIN, ISSPACE): Likewise.
6455
6456 2006-07-05  Bruno Haible  <bruno@clisp.org>
6457
6458         * m4/strndup.m4 (gl_FUNC_STRNDUP): When cross-compiling, check whether
6459         the function exists, before testing against AIX.
6460         Reported by Martin Lambers <marlam@marlam.de>.
6461
6462 2006-07-04  Paul Eggert  <eggert@cs.ucla.edu>
6463
6464         * modules/cycle-check (lib_SOURCES): Add same-inode.h.
6465         From Mark D. Baushke.
6466
6467 2006-07-04  Paul Eggert  <eggert@cs.ucla.edu>
6468
6469         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Prepend three slashes
6470         to the absolute name, not just one, to bypass Sun C 5.8's
6471         "warning: #include of /usr/include/... may be non-portable".
6472
6473 2006-07-04  Eric Blake  <ebb9@byu.net>
6474
6475         * modules/dirname-tests: New test module.
6476         * tests/test-dirname.c: New file, replacing dirname.c
6477         TEST_DIRNAME section that was recently deleted.
6478
6479 2006-07-04  Bruno Haible  <bruno@clisp.org>
6480
6481         Assume ANSI C header files and <ctype.h> functions.
6482         * lib/mbswidth.c (IN_CTYPE_DOMAIN, ISPRINT, ISCNTRL): Remove macros.
6483         (mbsnwidth): Use isprint, iscntrl instead.
6484
6485 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
6486
6487         Merge from coreutils.
6488         * MODULES.html.sh: Add xstrtold.
6489         * modules/xstrtold: New file.
6490         * modules/cycle-check (Files): Add lib/same-inode.h.
6491         * modules/dirname (Files): Add m4/double-slash-root.m4.
6492         * modules/getcwd (Files): Add m4/getcwd-abort-bug.m4.
6493         * modules/mkdir-p (Files): Add lib/same-inode.h.
6494         * modules/same (Files): Add lib/same-inode.h.
6495
6496 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
6497
6498         * m4/absolute-header.m4: Renamed from full-header-path.m4.
6499         This is to keep the terminology clean; POSIX talks about
6500         "absolute pathnames", not "full pathnames", but the GNU
6501         Coding Standards say to use "path" for something else;
6502         so use "absolute" to keep both sides happy.
6503         (gl_ABSOLUTE_HEADER): Renamed from gl_FULL_HEADER_PATH.
6504         Set gl_absolute_header, not gl_full_header_path.
6505         Set gl_cv_absolute_<header>, not gl_full_path_<header>.
6506         Define ABSOLUTE_<HEADER>, not FULL_PATH_<HEADER>.
6507         All uses changed.
6508
6509         Merge from coreutils.
6510
6511         2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
6512
6513         * m4/c-strtod.m4 (gl_C_STRTOLD): Add c-strtod.c to LIBSOURCES.
6514         Require gl_USE_SYSTEM_EXTENSIONS, not gl_C_STRTOD, since we don't
6515         want to require the building of c-strtod.o.
6516         * m4/lib-check.m4 (cu_LIB_CHECK): Remove SEQ_LIBM, since seq no longer
6517         needs -lm directly.
6518         * m4/xstrtod.m4 (gl_XSTRTOLD): New macro.
6519
6520         2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
6521
6522         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Prefer binutils's
6523         --as-needed option if available.  Problem reported by Albert Chin in
6524         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00114.html>.
6525         However, use -Wl,--as-needed, not bare --as-needed, since HP-UX 11.11
6526         cc merely issues a bunch of annoying warnings for --as-needed
6527         (this problem was reported by Bob Proulx).  Also, try linking with
6528         -lm to detect a bug in binutils 2.16 (this problem was reported
6529         by Ralf Wildenhues).
6530
6531         2006-06-18  Jim Meyering  <jim@meyering.net>
6532
6533         Test for a bug that causes glibc's getcwd to suffer a failed assertion.
6534         * m4/getcwd-abort-bug.m4 (gl_FUNC_GETCWD_ABORT_BUG): New file and
6535         macro.
6536         * m4/getcwd.m4 (gl_FUNC_GETCWD): If we detect support for getcwd_null,
6537         also check for glibc-2.4's abort-inducing bug.
6538
6539         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Fix typo.
6540         Low-probability clean-up should be to use rmdir to get rid of
6541         the just-created directory, not unlink.
6542
6543         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): If ftruncate is missing, make
6544         configure fail, and request a bug report to inform us about it.
6545         Add a comment that, barring reports to the contrary, in 2007 we'll
6546         assume ftruncate is universally available.
6547
6548         2006-04-17  Paul Eggert  <eggert@cs.ucla.edu>
6549
6550         * m4/filemode.m4 (gl_FILEMODE): Check for strmode declaration.
6551
6552         2006-03-12  Jim Meyering  <jim@meyering.net>
6553
6554         * m4/chdir-safer.m4 (gl_CHDIR_SAFER): Add same-inode.h to the list.
6555         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Likewise.
6556         * m4/same.m4 (gl_SAME): Likewise.
6557         * m4/root-dev-ino.m4 (gl_ROOT_DEV_INO): Likewise.
6558
6559         2006-03-11  Eric Blake  <ebb9@byu.net>
6560
6561         * m4/double-slash-root.m4: New file, provides gl_DOUBLE_SLASH_ROOT.
6562         * m4/dirname.m4 (gl_DIRNAME): Use gl_DOUBLE_SLASH_ROOT.
6563         * m4/dos.m4 (FILE_SYSTEM_PREFIX_LEN): Move from here to dirname.h.
6564         (FILE_SYSTEM_DRIVE_PREFIX_CAN_BE_RELATIVE): New define.
6565
6566 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
6567
6568         * lib/stdint_.h: Include <sys/types.h> after @FULL_PATH_STDINT_H@, for
6569         MacOS X 10.4.6.  Don't mention <sys/int_types.h>.  Problems
6570         reported by Mark D. Baushke, one in
6571         <http://lists.gnu.org/archive/html/bug-gnulib/2006-07/msg00015.html>.
6572
6573         Merge from coreutils.
6574
6575         * lib/.cppi-disable: Add stdint_.h.
6576         * lib/.cvsignore: Add stdint.h.
6577
6578         2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
6579
6580         * lib/xstrtod.c (XSTRTOD, DOUBLE): New macros, so that we can support
6581         both double and long double versions.
6582         (XSTRTOD): Renamed from xstrtod.  Use DOUBLE internally.
6583         * lib/xstrtold.c: New file.
6584         * lib/xstrtod.h (xstrtold): New decl.
6585
6586         2006-05-22  Paul Eggert  <eggert@cs.ucla.edu>
6587
6588         * lib/filemode.c (setst): Remove.
6589         (strmode): Rewrite to avoid setst.  This makes the code shorter,
6590         (arguably) clearer, and the generated code is a bit smaller on my
6591         Debian GNU/Linux stable x86 host.
6592
6593         2006-04-17  Paul Eggert  <eggert@cs.ucla.edu>
6594
6595         * lib/filemode.c: Include "filemode.h" first, to test the interface.
6596         Assume that filemode.h includes sys/types.h and sys/stat.h.
6597         (HAVE_ST_DM_MODE): New macro, moved here from ls.c.
6598         (ftypelet): Reorder to put common cases first, for efficiency.
6599         Add 'P', 'w'.  Remove 'M', since it's now the caller's responsibility
6600         to do 'M'.
6601         (strmode): Renamed from mode_string, and now stores 12 bytes instead
6602         of 10, for compatibility with FreeBSD.  All callers changed.
6603         (filemodestring): Now stores 12 bytes instead of 10, and sets file
6604         types that can't be deduced solely from st_mode.  First arg is now a
6605         const pointer.
6606         * lib/filemode.h (HAVE_DECL_STRMODE): Include <string.h> for strmode.
6607         (strmode): Renamed from mode_string.
6608         (filemodestring): New decl.
6609         * lib/stat-macros.h: Don't undef S_ISDOOR, since it's never buggy.
6610         (S_ISDOOR): Don't bother with S_IFDOOR, since that code is never
6611         needed.
6612         (S_ISPORT, S_ISWHT): New macros, if not already defined.
6613
6614         2006-04-12  Paul Eggert  <eggert@cs.ucla.edu>
6615
6616         * lib/fsusage.c: Don't include <inttypes.h> or <stdint.h>, since
6617         fsusage.h now does that.  Include fsusage.h first, to test interface.
6618         Prefer statvfs if it works, since it's blessed by POSIX.  Attempt
6619         at most one method (the old code could have generated decls that
6620         didn't conform to C89, not that this was ever exercised).
6621         * lib/fsusage.h: Include <inttypes.h> and <stdint.h> if they exist.
6622
6623         2006-03-19  Jim Meyering  <jim@meyering.net>
6624
6625         Work even in a chroot where d_ino values for entries in "/"
6626         don't match the stat.st_ino values for the same names.
6627         * lib/getcwd.c (__getcwd): When no d_ino value matches the target inode
6628         number, iterate through all entries again, using lstat instead.
6629         Reported by Kenshi Muto in http://bugs.debian.org/355810, and by
6630         Zouhir Hafidi in https://bugzilla.redhat.com/bugzilla/190656.
6631
6632         * lib/getcwd.c (__getcwd): Clarify a comment.
6633         Use memcpy in place of a call to strcpy.
6634
6635         2006-03-12  Jim Meyering  <jim@meyering.net>
6636
6637         * lib/fts-cycle.c (leave_dir): If cycle-check's saved dev-ino pair
6638         matches that of the current directory (which we're about to chdir ".."
6639         out of), then save the dev-ino of the parent, instead.
6640
6641         * lib/same-inode.h (SAME_INODE): New file/macro.
6642         * lib/chdir-safer.c (SAME_INODE): Remove definition.
6643         Include "same-inode.h", instead.
6644         * lib/same.c: Likewise.
6645         * lib/cycle-check.h: Include "same-inode.h".
6646         (CYCLE_CHECK_REFLECT_CHDIR_UP): Define.
6647         * lib/cycle-check.c (SAME_INODE): Remove definition.
6648         * lib/root-dev-ino.h: Include "same-inode.h".
6649
6650         2006-03-11  Eric Blake  <ebb9@byu.net>
6651
6652         * lib/same.c (same_name): s/base_name/last_component/
6653         * lib/backupfile.c (check_extension, numbered_backup): Likewise.
6654         * lib/filenamecat.c (file_name_concat): Likewise.
6655
6656         2006-03-11  Eric Blake  <ebb9@byu.net>,
6657                     Paul Eggert  <eggert@cs.ucla.edu>
6658
6659         * lib/dirname.h (FILE_SYSTEM_PREFIX_LEN): Move here from dos.m4.
6660         [FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]: Don't treat 1: as a
6661         drive prefix.
6662         (IS_ABSOLUTE_FILE_NAME): Treat all drive letters as absolute on
6663         platforms like cygwin with FILE_SYSTEM_DRIVE_PREFIX_IS_ABSOLUTE.
6664         (last_component): New method.
6665         * lib/dirname.c (dir_len): Determine when drive letters need a
6666         subsequent slash.  Preserve // when it is special.
6667         (dir_name): Don't append dot when drive letter is absolute.
6668         [TEST_DIRNAME]: Move into a full-blown gnulib test.
6669         * lib/basename.c (base_name): New semantics - malloc the result.
6670         Preserve // when it is special.  Preserve relative files that look
6671         like drive letters.
6672         (base_len): Preserve // when it is special.
6673         (last_component): New method, similar to old base_name semantics.
6674         * lib/stripslash.c (strip_trailing_slashes): Use last_component, not
6675         base_name.  Strip redundant slashes from ///.
6676
6677 2006-07-03  Jim Meyering  <jim@meyering.net>
6678
6679         * lib/cycle-check.h (CYCLE_CHECK_REFLECT_CHDIR_UP): Abort if this
6680         macro is used before the first cycle_check call.
6681
6682 2006-07-03  Eric Blake  <ebb9@byu.net>
6683
6684         * modules/dirname (Depends-on): Add xstrndup.
6685
6686 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
6687
6688         * m4/stdint.m4 (gl_STDINT_H): Use more-mnemonic identifiers for
6689         test cases, so that config.log is a bit easier to follow.
6690
6691 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
6692
6693         * lib/stdint_.h (intmax_t, uintmax_t): Prefer long to long long if
6694         both are 64 bits, since this seems to be the tradition, and this
6695         prevents gcc -Wformat from warning about usages with PRIuMAX.  If
6696         we ever run into a host that prefers long long to long in this
6697         case, we'll need another configure-time test.  Problem reported by
6698         Jim Meyering.
6699
6700 2006-07-02  Eric Blake  <ebb9@byu.net>
6701
6702         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Simplify by using AC_CHECK_DECLS.
6703
6704 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
6705
6706         * modules/inttypes (Depends-on): No longer depends on stdint.
6707         * modules/stdint (Description): Say more about assumptions.
6708         Say that the fast types might differ.  Say macros are used.
6709         (Files): Remove m4/size_max.m4, m4/wchar_t.m4.  Add m4/longlong.m4.
6710         (Makefile.am): Revise list of substituted symbols to match
6711         new stdint.m4.
6712         * modules/stdint-tests (Files): Add m4/wchar_t.m4, m4/wint_t.m4.
6713         (configure.ac): Add gt_TYPE_WCHAR_T, gt_TYPE_WINT_T.
6714         * tests/test-stdint.c (verify_same_types)
6715         [! (__GNUC__ >= 2 && DO_PEDANTIC)]: Put in a decl, so that
6716         the code conforms to C99/C89.
6717         Test for WCHAR_MIN and WCHAR_MAX only if HAVE_WCHAR_T.
6718         Test for WINT_MIN and WINT_MAX only if HAVE_WINT_T.
6719
6720 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
6721
6722         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Backport from Autoconf 2.60,
6723         but fix a bug, by requiring at least 64 bits.
6724         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Likewise.
6725         * m4/longlong.m4 (gl_AC_TYPE_LONG_LONG): Now just call
6726         AC_TYPE_LONG_LONG_INT.  This macro is obsolete and will go soon.
6727         * m4/ulonglong.m4 (gl_AC_TYPE_UNSIGNED_LONG_LONG) Likewise.
6728
6729         * m4/stdint.m4 (gl_STDINT_H): Rewrite to accommodate stdint_.h
6730         changes.  Make 2.59 a prerequisite.  Check and substitute for
6731         HAVE_LONG_LONG_INT.  Rely on Autoconf to check for stdint.h and
6732         inttypes.h.  Do not use special include files; just use the
6733         defaults.  Check for sys/inttypes.h and sys/bitypes.h in the usual
6734         way now.  Remove no-longer-needed tests for HAVE_LONG_64BIT,
6735         HAVE_LONG_LONG_64BIT, int8_t, int16_t, int32_t, int64_t, uint8_t,
6736         uint16_t, uint32_t uint64_t, int_least8_t, int_least16_t,
6737         int_least32_t, int_least64_t, uint_least8_t, uint_least16_t,
6738         uint_least32_t, uint_least64_t, int_fast8_t, int_fast16_t,
6739         int_fast32_t, int_fast64_t, uint_fast8_t uint_fast16_t,
6740         uint_fast32_t, uint_fast64_t, intptr_t, uintptr_t, intmax_t,
6741         uintmax_t, INT8_MIN, INT8_MAX, UINT8_MAX, INT16_MIN, INT16_MAX,
6742         UINT16_MAX, INT32_MIN, INT32_MAX, UINT32_MAX, INT64_MIN,
6743         INT64_MAX, UINT64_MAX, INT_LEAST8_MIN, INT_LEAST8_MAX,
6744         UINT_LEAST8_MAX, INT_LEAST16_MIN, INT_LEAST16_MAX,
6745         UINT_LEAST16_MAX, INT_LEAST32_MIN, INT_LEAST32_MAX,
6746         UINT_LEAST32_MAX, INT_LEAST64_MIN, INT_LEAST64_MAX,
6747         UINT_LEAST64_MAX, INT_FAST8_MIN, INT_FAST8_MAX, UINT_FAST8_MAX,
6748         INT_FAST16_MIN, INT_FAST16_MAX, UINT_FAST16_MAX, INT_FAST32_MIN,
6749         INT_FAST32_MAX, UINT_FAST32_MAX, INT_FAST64_MIN, INT_FAST64_MAX,
6750         UINT_FAST64_MAX, INTPTR_MIN, INTPTR_MAX, UINTPTR_MAX, INTMAX_MIN,
6751         INTMAX_MAX, UINTMAX_MAX, PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN,
6752         SIG_ATOMIC_MAX, SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN,
6753         WINT_MAX.  Check for C99 conformance more strictly, by detecting
6754         bugs in glibc 2.4, Solaris 10, and OpenBSD 3.9.  On the other hand do
6755         not check for things that C99 does not require, e.g., int8_t.  If
6756         a test isn't needed unless <stdint.h> isn't working, and is
6757         unlikely to be needed for any other reason, then don't do it
6758         unless <stdint.h> isn't working.  Do not check for ptrdiff_t or
6759         size_t, since we assume C89 freestanding at least.  Do not check
6760         for sig_atomic_t, wchar_t, or wint_t, since the code now does
6761         the right thing even if the types are not defined.  Instead use:
6762         (gl_STDINT_TYPE_PROPERTIES): New macro.
6763         (gl_HEADER_STDINT_H, gl_HEADER_INTTYPES_H): Remove.  Don't bother
6764         testing whether <sys/types.h> clashes, as Autoconf does this for
6765         us now.  All uses removed.
6766         (gl_STDINT_CHECK_TYPES, gl_STDINT_MISSING_BOUND):
6767         (gl_STDINT_MISSING_BOUNDS, gl_STDINT_MISSING_BOUNDS2):
6768         (gl_CHECK_TYPE_SAME):
6769         Remove; no longer needed.
6770         (gl_STDINT_BITSIZEOF): Don't bother to check whether the type
6771         exists, since we'll return 0 anyway in that case.
6772         (gl_INTEGER_TYPE_SUFFIX, gl_STDINT_INCLUDES): New macros.
6773
6774 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
6775
6776         * lib/stdint_.h (_GL_STDINT_H): Renamed from _STDINT_H, to avoid
6777         possible collision with system files.
6778         (<stdio.h>, <time.h>, <wchar.h>) [defined __cplusplus && ! defined
6779         __STDC_CONSTANT_MACROS)]: Do not include, since we don't need
6780         WCHAR_MIN and WCHAR_MAX in this case.
6781         (<stddef.h>): Do not include; no longer needed.
6782         (<sys/types.h>): Include if @HAVE_SYS_TYPES_H@, not if
6783         (defined(__OpenBSD__) || defined(__bsdi__) || defined(__sgi)).
6784         (<sys/inttypes.h>): Include if @HAVE_SYS_INTTYPES_H@ &&
6785         !@HAVE_INTTYPES_H@, not if (defined(__FreeBSD__)
6786         && (__FreeBSD__ >= 3) && (__FreeBSD__ <= 4)).
6787         (__STDINT_H__) [@HAVE_STDINT_H@ && defined __sgi && ! defined
6788         __c99]: Define, to work around IRIX <stdint.h> incompatibility.
6789         (@FULL_PATH_STDINT_H@) [!(defined(__sgi) && @HAVE_INTTYPES_H@ &&
6790         !defined(__c99))]: Include in this case too, since it's harmless
6791         now.
6792         (<inttypes.h>) [@HAVE_INTTYPES_H@]: Include, since it's no longer
6793         dangerous to do so.
6794         (@FULL_PATH_INTTYPES_H@) [(defined(__hpux) || defined(_AIX)) &&
6795         @HAVE_INTTYPES_H@]: Do not include, since we now include <inttypes.h>.
6796         (_STDINT_MIN, _STDINT_MAX): New macros.
6797         (int8_t, uint8_t, int16_t, uint16_t, int32_t, uint32_t, int64_t):
6798         (uint64_t, int_least8_t, uint_least8_t, int_least16_t):
6799         (uint_least16_t, int_least32_t, uint_least32_t, int_least64_t):
6800         (uint_least64_t, int_fast8_t, uint_fast8_t, int_fast16_t):
6801         (uint_fast16_t, int_fast32_t, uint_fast32_t, int_fast64_t):
6802         (uint_fast64_t, intptr_t, uintptr_t, intmax_t, uintmax_t): Now
6803         macros, not typedefs; this simplifies things quite a bit.
6804         Use long int for all types narrower than int64_t.
6805         (intmax_t, uintmax_t, INTMAX_C, UINTMAX_C):
6806         Define in terms of long long int or int64_t or long int,
6807         not int64_t or int32_t.  This saves some compile-time testing.
6808         (INT8_MIN, INT8_MAX, UINT8_MAX, INT16_MIN, INT16_MAX, UINT16_MAX):
6809         (INT32_MIN, INT32_MAX, UINT32_MAX, INT64_MIN, INT64_MAX):
6810         (UINT64_MAX, INT_LEAST8_MIN, INT_LEAST8_MAX, UINT_LEAST8_MAX):
6811         (INT_LEAST16_MIN, INT_LEAST16_MAX, UINT_LEAST16_MAX):
6812         (INT_LEAST32_MIN, INT_LEAST32_MAX, UINT_LEAST32_MAX):
6813         (INT_LEAST64_MIN, INT_LEAST64_MAX, UINT_LEAST64_MAX, INT_FAST8_MIN):
6814         (INT_FAST8_MAX, UINT_FAST8_MAX, INT_FAST16_MIN, INT_FAST16_MAX):
6815         (UINT_FAST16_MAX, INT_FAST32_MIN, INT_FAST32_MAX, UINT_FAST32_MAX):
6816         (INT_FAST64_MIN, INT_FAST64_MAX, UINT_FAST64_MAX, INTPTR_MIN):
6817         (INTPTR_MAX, UINTPTR_MAX, INTMAX_MIN, INTMAX_MAX, UINTMAX_MAX):
6818         (PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX):
6819         (SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN, WINT_MAX):
6820         undef any previous version and define our own version, for
6821         simplicity and consistency with the new macros for types.
6822         (PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX):
6823         (SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN, WINT_MAX):
6824         Simplify definitions by using _STDINT_MIN and _STDINT_MAX
6825         where appropriate.  Rely on new symbols @PTRDIFF_T_SUFFIX@,
6826         @SIG_ATOMIC_T_SUFFIX@, @SIZE_T_SUFFIX@, @WCHAR_T_SUFFIX@,
6827         @WINT_T_SUFFIX@ to keep things simple here.
6828         (UINT8_C, UINT16_C, UINT32_C, INT64_C, UINT64_C):
6829         Simplify by assuming typical 8/16/32/64 host, since we're
6830         already doing that elsewhere anyway.
6831         Use (LONG_MAX >> 31 >> 31 == 1) rather than @HAVE_LONG_64BIT@,
6832         and assume long long int is 64 bits if available.  This
6833         speeds up 'configure'.
6834
6835 2006-07-01  Eric Blake  <ebb9@byu.net>
6836
6837         * m4/stdarg.m4 (gl_STDARG_H): Use proper AH_VERBATIM.
6838         Reported by Andreas Buening.
6839
6840 2006-07-01  Eric Blake  <ebb9@byu.net>
6841
6842         * m4/stdarg.m4 (gl_STDARG_H): Properly parenthesize gl_va_copy.
6843
6844 2006-06-30  Jim Hyslop  <jhyslop@dreampossible.ca>  (tiny change)
6845
6846         * lib/getaddrinfo.c: fixed typo
6847
6848 2006-06-29  Jim Meyering  <jim@meyering.net>
6849
6850         * modules/strftime (Maintainer): Add my name, since with the
6851         FPRINTFTIME changes strftime.c has forked from glibc.
6852
6853 2006-06-29  Eric Blake  <ebb9@byu.net>
6854
6855         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Use AC_C_INLINE.
6856
6857 2006-06-29  Eric Blake  <ebb9@byu.net>
6858
6859         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): New file.
6860
6861 2006-06-29  Eric Blake  <ebb9@byu.net>
6862
6863         * lib/stat_.h: New file.
6864
6865 2006-06-29  Eric Blake  <ebb9@byu.net>
6866
6867         * lib/stat_.h (rpl_mkdir): Declare inline, to avoid warnings about
6868         unused static function.
6869
6870 2006-06-29  Eric Blake  <ebb9@byu.net>
6871
6872         * doc/functions.texi (Function Portability): Document missing lstat
6873         on mingw.
6874
6875 2006-06-29  Eric Blake  <ebb9@byu.net>
6876
6877         * MODULES.html.sh: Add sys_stat.
6878         * modules/sys_stat: New module.
6879         * modules/mkstemp (Depends-on): Add sys_stat.
6880
6881 2006-06-29  Derek R. Price  <derek@ximbiot.com>
6882
6883         * m4/strftime.m4: Don't call AC_FUNC_STRFTIME.
6884
6885 2006-06-29  Derek R. Price  <derek@ximbiot.com>
6886
6887         * m4/c-bs-a.m4: Removed.
6888
6889 2006-06-29  Derek R. Price  <derek@ximbiot.com>
6890
6891         * lib/strftime.c: Assume strftime() exists.
6892
6893 2006-06-29  Derek Price  <derek@ximbiot.com>
6894
6895         * modules/c-bs-a: Removed - \a is C89.
6896         * MODULES.html.sh: Remove c-bs-a.
6897
6898 2006-06-29  Bruno Haible  <bruno@clisp.org>
6899
6900         * modules/wcwidth (License): Change to LGPL.
6901
6902 2006-06-28  Simon Josefsson  <jas@extundo.com>
6903
6904         * tests/test-getaddrinfo.c: Test getnameinfo too.  Call WSAStartup
6905         on _WIN32.
6906
6907         * modules/getaddrinfo (Depends-on): Add inet_ntop, needed by
6908         getnameinfo.
6909
6910 2006-06-28  Simon Josefsson  <jas@extundo.com>
6911
6912         * m4/getaddrinfo.m4: Look for getnameinfo prototypes too.
6913
6914 2006-06-28  Simon Josefsson  <jas@extundo.com>
6915
6916         * lib/getaddrinfo.c: Try to load ws2_32.dll on Windows, to find the
6917         functions there.  It will succeed on Windows XP, but on Windows
6918         2000 and (presumably) earlier, it will fail, and use the internal
6919         re-implementation.
6920         (use_win32_p): New function.
6921         (getaddrinfo): Use strtoul on servname, to support numeric ports.
6922         Support AI_NUMERICSERV to disable getservbyname.
6923         (getnameinfo): New function, only supports
6924         NI_NUMERICHOST|NI_NUMERICSERV for now.
6925
6926         * lib/getaddrinfo.h: Test and check for AI_* flags separately, MinGW
6927         only have some of them.  Add AI_NUMERICSERV.  Add prototype for
6928         getnameinfo.
6929
6930 2006-06-28  Eric Blake  <ebb9@byu.net>
6931
6932         * modules/wcwidth: New file.
6933         * modules/mbchar (Depends-on): Add wcwidth.
6934         * modules/mbswidth (Depends-on): Add wcwidth.
6935         * MODULES.html.sh: Add wcwidth.
6936
6937 2006-06-28  Eric Blake  <ebb9@byu.net>
6938
6939         * m4/mbswidth.m4 (gl_MBSDWIDTH): Move wcwidth from here...
6940         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): ...to this new file.
6941
6942 2006-06-28  Eric Blake  <ebb9@byu.net>
6943
6944         * lib/xvasprintf.h: Fix comments.
6945
6946 2006-06-28  Eric Blake  <ebb9@byu.net>
6947
6948         * lib/mbchar.h (wcwidth): Include wcwidth.h.
6949         * lib/mbswidth.c (wcwidth): Move from here...
6950         * lib/wcwidth.h: ...to this new file.
6951
6952 2006-06-28  Derek R. Price  <derek@ximbiot.com>
6953
6954         * m4/savedir.m4: Remove AC_FUNC_CLOSEDIR_VOID requirement.
6955
6956         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Don't require AC_C_CONST, since
6957         it's obsolete.
6958         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME): Likewise.
6959
6960 2006-06-28  Derek R. Price  <derek@ximbiot.com>
6961
6962         * lib/savedir.c (CLOSEDIR): Remove.  All uses changed to closedir.
6963         Autoconf 2.60 says this stuff was obsolete.
6964
6965 2006-06-28  Bruno Haible  <bruno@clisp.org>
6966
6967         * modules/wcwidth (Files): Add m4/wchar_t.m4.
6968
6969 2006-06-28  Bruno Haible  <bruno@clisp.org>
6970
6971         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Also require AC_C_INLINE and
6972         gt_TYPE_WCHAR_T.
6973
6974 2006-06-28  Bruno Haible  <bruno@clisp.org>
6975
6976         * lib/wcwidth.h: Declare nothing if !HAVE_WCHAR_T. Provide a fallback
6977         declaration for wcwidth.
6978         * lib/mbswidth.c: Restore the includes of <wchar.h> and <wctypes.h>.
6979
6980 2006-06-28  Bruno Haible  <bruno@clisp.org>
6981
6982         * lib/mkdtemp.c [MINGW]: Include <io.h>.
6983         (mkdir): Define using _mkdir.
6984
6985 2006-06-28  Bruno Haible  <bruno@clisp.org>
6986
6987         * lib/getaddrinfo.h: Fix POSIX URL.
6988         * lib/getaddrinfo.c (WIN32_NATIVE): New macro. Use it instead of
6989         _WIN32.
6990         (use_win32_p): Make static.
6991         (getaddrinfo): Reject service name if it is empty or does not consist
6992         solely of decimal digits, or if its value is > 65535.
6993         (getnameinfo): Remove useless casts.
6994
6995 2006-06-27  Simon Josefsson  <jas@extundo.com>
6996
6997         * modules/sys_select: New file, suggested by Bruno Haible, Paul
6998         Eggert and Martin Lambers.
6999
7000 2006-06-27  Simon Josefsson  <jas@extundo.com>
7001
7002         * m4/sys_select_h.m4: New file, suggested by Bruno Haible, Paul
7003         Eggert and Martin Lambers.
7004
7005 2006-06-27  Bruno Haible  <bruno@clisp.org>
7006
7007         * m4/stdint.m4 (gl_STDINT_BITSIZEOF): For nonexistent types, set the
7008         result to 0, not to empty.
7009         Reported by Martin Neitzel <neitzel@sco.gaertner.de>.
7010
7011 2006-06-27  Bruno Haible  <bruno@clisp.org>
7012
7013         * lib/stdint_.h (intmax_t, uintmax_t): Undefine before typedef.
7014
7015 2006-06-26  Simon Josefsson  <jas@extundo.com>
7016
7017         * m4/inet_ntop.m4: Don't check for sys/types.h, we assume it is
7018         present.
7019
7020 2006-06-26  Paul Eggert  <eggert@cs.ucla.edu>
7021
7022         * lib/base64.c (B64): Use _ as the formal parameter, not x, to avoid
7023         bug in IBM C V6 for AIX.  Problem reported by Larry Jones in
7024         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00181.html>.
7025
7026 2006-06-26  Mark D. Baushke  <mdb@gnu.org>
7027
7028         * m4/stdint.m4 (gl_STDINT_H): Treat BSD/OS like OpenBSD.
7029
7030 2006-06-26  Bruno Haible  <bruno@clisp.org>
7031
7032         * modules/stdint (Makefile.am): Also substitute HAVE_WCHAR_H.
7033
7034 2006-06-26  Bruno Haible  <bruno@clisp.org>
7035
7036         * m4/stdint.m4 (gl_STDINT_H): Test also for <wchar.h>.
7037
7038 2006-06-26  Bruno Haible  <bruno@clisp.org>
7039
7040         * m4/stdint.m4 (gl_STDINT_H): Don't include <stdint.h> when using the
7041         SGI C compiler in pre-C99 mode.
7042         Suggested by Mark D. Baushke and Larry Jones.
7043
7044 2006-06-26  Bruno Haible  <bruno@clisp.org>
7045
7046         * lib/stdint_.h: Include <wchar.h> if necessary for WCHAR_MIN or
7047         WCHAR_MAX.
7048         Reported by Mark D. Baushke and Larry Jones.
7049
7050 2006-06-26  Bruno Haible  <bruno@clisp.org>
7051
7052         * lib/stdint_.h: Don't include <stdint.h> when using the SGI C compiler
7053         in pre-C99 mode.
7054         Suggested by Mark D. Baushke and Larry Jones.
7055
7056 2006-06-23  Simon Josefsson  <jas@extundo.com>
7057             Bruno Haible  <bruno@clisp.org>
7058
7059         * gnulib-tool (func_emit_lib_Makefile_am): Define MOSTLYCLEANDIRS.
7060         Emit mostlyclean-local rule.
7061         (func_emit_tests_Makefile_am): Likewise.
7062         * modules/sys_socket (Makefile.am): Use MOSTLYCLEANDIRS.
7063
7064 2006-06-23  Mark D. Baushke  <mdb@gnu.org>
7065
7066         * lib/stdint_.h: Treat BSD/OS like OpenBSD.
7067
7068 2006-06-23  Bruno Haible  <bruno@clisp.org>
7069
7070         * tests/test-stdint.c: Update to match ISO C 99 Technical
7071         Corrigendum 1.
7072
7073 2006-06-23  Bruno Haible  <bruno@clisp.org>
7074
7075         * m4/stdint.m4 (gl_STDINT_H): Treat IRIX like OpenBSD.
7076
7077 2006-06-23  Bruno Haible  <bruno@clisp.org>
7078
7079         * lib/stdint_.h: Treat IRIX like OpenBSD.
7080
7081 2006-06-23  Bruno Haible  <bruno@clisp.org>
7082
7083         * lib/stdint_.h (UINT8_C, UINT16_C, UINT32_C): Define according to
7084         ISO C 99 Technical Corrigendum 1.
7085
7086 2006-06-22  Simon Josefsson  <jas@extundo.com>
7087
7088         * m4/sockpfaf.m4: Include winsock2.h too, to make it work under
7089         MinGW.
7090
7091 2006-06-22  Paul Eggert  <eggert@cs.ucla.edu>
7092
7093         * lib/glob.c (collated_compare): Remove 'const' uses that weren't
7094         needed.  Some compiler complained about some of them.  Problem reported
7095         by Larry Jones in
7096         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00172.html>.
7097
7098 2006-06-21  Simon Josefsson  <jas@extundo.com>
7099
7100         * tests/test-getaddrinfo.c: New file.
7101
7102         * modules/getaddrinfo-tests: New file.
7103
7104         * MODULES.html.sh: Add inet_pton.
7105
7106         * modules/inet_pton: New file.
7107
7108 2006-06-21  Simon Josefsson  <jas@extundo.com>
7109
7110         * m4/getaddrinfo.m4: Don't define WINVER.  Look for gethostbyname in
7111         -lws2_32 too.  Fixes getaddrinfo on Windows 2000, with the price
7112         of using the (limited) gnulib implementation on Windows XP.
7113
7114         * m4/inet_pton.m4: New file.
7115
7116 2006-06-21  Simon Josefsson  <jas@extundo.com>
7117
7118         * lib/getaddrinfo.c (getaddrinfo): Set ai_family in the return
7119         variable.
7120
7121         * lib/socket_.h: Don't define WINVER.
7122
7123         * lib/inet_pton.h, inet_pton.c: New file, taken from glibc but
7124         slightly modified to work in gnulib.
7125
7126 2006-06-21  Simon Josefsson  <jas@extundo.com>
7127
7128         * doc/gnulib.texi (Windows sockets): Add.
7129
7130 2006-06-21  Paul Eggert  <eggert@cs.ucla.edu>
7131
7132         * lib/read-file.c (fread_file): Start with buffer allocation of
7133         0 bytes rather than 1 byte; this simplifies the code.
7134         Don't invoke feof; it's not needed.  Refactor to avoid duplicate
7135         code to free buffer and save/restore errno.
7136         (internal_read_file): Remove unused local.
7137
7138 2006-06-20  Paul Eggert  <eggert@cs.ucla.edu>
7139
7140         * lib/openat.c (openat): Use ?:, not if, to work around GCC bug 4210
7141         <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=4210>.
7142         Problem reported by Denis Excoffier in
7143         <http://lists.gnu.org/archive/html/bug-tar/2006-06/msg00023.html>.
7144
7145 2006-06-19  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
7146
7147         * modules/sys_socket, modules/socklen: Include sys/types since
7148         FreeBSD 4.x's sys/socket.h needs it.
7149
7150 2006-06-19  Simon Josefsson  <jas@extundo.com>
7151
7152         * lib/inet_ntop.c: Always build inet_ntop4, since inet_ntop6 calls it.
7153
7154 2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
7155
7156         * lib/alloca_.h (alloca) [defined alloca]: Don't define or declare.
7157
7158 2006-06-19  Bruno Haible  <bruno@clisp.org>
7159
7160         * m4/stdint.m4 (gl_STDINT_H): Enclose the values of FULL_PATH_STDINT_H
7161         and FULL_PATH_INTTYPES_H in angle brackets.
7162         Reported by Mark D. Baushke <mdb@gnu.org>.
7163
7164 2006-06-17  Eric Blake  <ebb9@byu.net>
7165
7166         * m4/rmdir-errno.m4 (gl_FUNC_FMDIR_NOTEMPTY): Assume errno.h declares
7167         errno.
7168
7169 2006-06-17  Bruno Haible  <bruno@clisp.org>
7170
7171         * m4/stdint.m4 (gl_STDINT_H) [FreeBSD >= 5]: Don't include
7172         <sys/inttypes.h>.
7173
7174 2006-06-17  Bruno Haible  <bruno@clisp.org>
7175
7176         * m4/setenv.m4 (gl_PREREQ_SETENV, gl_PREREQ_UNSETENV): Remove test
7177         whether errno is declared. Assume <errno.h> declares errno.
7178
7179 2006-06-17  Bruno Haible  <bruno@clisp.org>
7180
7181         * lib/stdint_.h [FreeBSD >= 5]: Don't include <sys/inttypes.h>.
7182
7183 2006-06-17  Bruno Haible  <bruno@clisp.org>
7184
7185         * lib/stdint_.h (_UINT8_T, _UINT32_T, _UINT64_T): New macros. Fixes a
7186         problem on Solaris 2.5.1.
7187
7188 2006-06-16  Eric Blake  <ebb9@byu.net>
7189
7190         * lib/unsetenv.c [!defined errno]: Assume errno.h declares errno.
7191         * lib/unicodeio.c [!defined errno]: Likewise.
7192         * lib/strtol.c [!defined errno]: Likewise.
7193         * lib/strtod.c [!defined errno]: Likewise.
7194
7195 2006-06-15  Eric Blake  <ebb9@byu.net>
7196
7197         * m4/ssize_t.m4 (gt_TYPE_SSIZE_T): Work in spite of -Werror.
7198
7199 2006-06-15  Eric Blake  <ebb9@byu.net>
7200
7201         * config/srclist.txt (ssize_t.m4): Lose sync.
7202
7203 2006-06-15  Bruno Haible  <bruno@clisp.org>
7204
7205         * modules/stdint (Files): Include m4/full-header-path.m4,
7206         m4/size_max.m4, m4/wchar_t.m4.
7207         (Makefile.am): Many more substitutions.
7208         * modules/stdint-tests: New file.
7209         * tests/test-stdint.c: New file.
7210
7211 2006-06-15  Bruno Haible  <bruno@clisp.org>
7212
7213         * m4/stdint.m4 (gl_STDINT_H): Rewritten to produce a complete stdint.h.
7214         (gl_HEADER_STDINT_H, gl_HEADER_INTTYPES_H, gl_STDINT_CHECK_TYPES,
7215         gl_STDINT_MISSING_BOUND, gl_STDINT_MISSING_BOUNDS,
7216         gl_STDINT_MISSING_BOUNDS2, gl_STDINT_BITSIZEOF, gl_CHECK_TYPES_SIGNED,
7217         gl_CHECK_TYPE_SAME): New macros.
7218
7219 2006-06-15  Bruno Haible  <bruno@clisp.org>
7220
7221         * m4/size_max.m4 (gl_SIZE_MAX): Make it work also when cross-compiling.
7222
7223 2006-06-15  Bruno Haible  <bruno@clisp.org>
7224
7225         * lib/stdint_.h: Rewritten to be fully auto-configured.
7226         Fixes bug on HP-UX/IA64.
7227
7228 2006-06-11  Paul Eggert  <eggert@cs.ucla.edu>
7229
7230         * lib/getdate.y (__attribute__): Don't define if already defined.
7231         Problem reported by Larry Jones.
7232         * lib/utimens.c (__attribute__): Likewise.
7233
7234 2006-06-04  Paul Eggert  <eggert@cs.ucla.edu>
7235
7236         * lib/regexec.c (group_nodes_into_DFAstates): Fix a buffer overrun
7237         reported by Andreas Schwab.
7238
7239 2006-05-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7240             Bruno Haible  <bruno@clisp.org>
7241
7242         * m4/strndup.m4 (gl_FUNC_STRNDUP): Replace the AC_REPLACE_FUNCS with a
7243         check for the declaration of strnlen and a run test that exposes the
7244         AIX 5.1 strnlen bug.  In the failure case, #define strndup to
7245         rpl_strndup.
7246
7247 2006-05-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7248             Bruno Haible  <bruno@clisp.org>
7249
7250         * lib/strndup.c (strndup) [!_LIBC]: Don't undefine macro definition.
7251
7252 2006-05-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7253
7254         * m4/c-strtod.m4 (gl_C99_STRTOLD): Use a link test rather than a
7255         compile test, for Tru64 4.0D.
7256
7257 2006-05-28  Karl Berry  <karl@gnu.org>
7258
7259         * config/srclist.txt (printf-args.c): lose sync.
7260
7261 2006-05-26  Martin Lambers  <marlam@marlam.de>
7262
7263         * lib/getpass.c: Updates the test for the native W32 API, and adds
7264         missing includes, thus fixing compilation warnings.
7265
7266 2006-05-25  Sergey Poznyakoff  <gray@gnu.org.ua>
7267
7268         * lib/exclude.c (exclude_fnmatch): New function.
7269         (excluded_file_name): Call exclude_fnmatch.
7270         * lib/exclude.h (excluded_file_name): New prototype
7271
7272 2006-05-25  Paul Eggert  <eggert@cs.ucla.edu>
7273
7274         * lib/tempname.c (small_open, large_open): New macros.
7275         (__open, __open64) [!_LIBC]: Remove.
7276         (__gen_tempname): Use small_open and large_open instead of __open
7277         and __open64.  This fixes a portability bug on HP-UX 11.11i
7278         reported by Simon Wing-Tang in
7279         <http://lists.gnu.org/archive/html/bug-coreutils/2006-05/msg00114.html>.
7280
7281 2006-05-24  Bruno Haible  <bruno@clisp.org>
7282
7283         * lib/printf-args.c (printf_fetchargs): Turn NULL pointers for
7284         TYPE_STRING and TYPE_WIDE_STRING into a non-NULL replacement.
7285         Reported by Thorsten Maerz <torte@netztorte.de> via
7286         Aaron Stone <aaron@serendipity.cx>.
7287
7288 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
7289
7290         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Rename cache variables to use
7291         gl_ rather than jm_.  Link, don't run, so that cross-compiles are
7292         allowed.  Check that resulting type is arithmetic.  Move AC_REQUIRE
7293         and AC_CHECK_HEADERS_ONCE outside of AC_CACHE_CHECK, since they're
7294         not really conditional on the cache.
7295         (gl_PREREQ_NANOSLEEP): Check for sys/select.h.
7296
7297 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
7298
7299         * lib/nanosleep.c [HAVE_SYS_SELECT_H]: Include <sys/select.h>.
7300         Use the usual Autoconf way to include <time.h> and/or sys/time.h.
7301         (my_usleep): Don't mishandle maximum value.
7302
7303 2006-05-19  Jim Meyering  <jim@meyering.net>
7304
7305         * lib/getugroups.c: Correct an outdated comment.  From Bruno Haible.
7306
7307 2006-05-17  Bruno Haible  <bruno@clisp.org>
7308
7309         Cygwin portability.
7310         * lib/classpath.c (PATH_SEPARATOR) [CYGWIN]: Define as ':'.
7311
7312 2006-05-17  Bruno Haible  <bruno@clisp.org>
7313
7314         * lib/stdint_.h: Fix recognition of Cygwin.
7315
7316 2006-05-15  Bruno Haible  <bruno@clisp.org>
7317
7318         * build-aux/config.rpath: Improve support for Sun C 5.9 on Linux, based
7319         on libtool patch by Ralf Wildenhues.
7320
7321 2006-05-14  Paul Eggert  <eggert@cs.ucla.edu>
7322
7323         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Fix overly-picky
7324         test for C99 conformance; (bool) 0.5 is an integer constant
7325         expression, but (bool) -0.5 is not.  Problem reported by Fedor
7326         Sergeev in <http://forum.sun.com/jive/thread.jspa?threadID=96202>.
7327
7328 2006-05-11  Simon Josefsson  <jas@extundo.com>
7329
7330         * m4/xvasprintf.m4: Fix obvious typo.
7331
7332 2006-05-11  Jim Meyering  <jim@meyering.net>
7333
7334         * lib/sha1.c (sha1_buffer): Correct comment: s/MD5/SHA1/.  From
7335         James Lemley.
7336
7337 2006-05-10  Simon Josefsson  <jas@extundo.com>
7338
7339         * lib/md4.c: Typo fix, update copyright years.
7340         (K1, K2): Don't use L because it turn computations into 64-bit on
7341         64-bit platforms.
7342
7343 2006-05-10  Paul Eggert  <eggert@cs.ucla.edu>
7344
7345         * lib/crc.c (crc32_update): Remove unnecessary L suffix.
7346         * lib/md4.c (rol): Cast right-shift arg to uint32_t to prevent
7347         unwanted sign propagation, e.g., on hosts with 64-bit int.
7348         There still are some problems with reeelly weird theoretical hosts
7349         (e.g., 33-bit int) but it's not worth worrying about now.
7350         * lib/sha1.c (rol): Likewise.
7351         (K1, K2, K3, K4): Remove unnecessary L suffix.
7352
7353 2006-05-10  Bruno Haible  <bruno@clisp.org>
7354
7355         * lib/des.c: Cast to avoid warnings.
7356
7357 2006-05-09  Bruno Haible  <bruno@clisp.org>
7358
7359         * modules/xvasprintf (Files): Add m4/xvasprintf.m4.
7360         (Depends-on): Depend also on xsize, stdarg.
7361         (configure.ac): Add gl_XVASPRINTF.
7362
7363 2006-05-09  Bruno Haible  <bruno@clisp.org>
7364
7365         * m4/xvasprintf.m4: New file.
7366
7367 2006-05-09  Bruno Haible  <bruno@clisp.org>
7368
7369         * lib/xvasprintf.c: Include limits.h, string.h, xsize.h.
7370         (EOVERFLOW): Define fallback value.
7371         (xstrcat): New function.
7372         (xvasprintf): Recognize the special case of a string concatenation.
7373
7374 2006-05-08  Eric Blake  <ebb9@byu.net>
7375
7376         * gnulib-tool (func_version): Base copyright year on CVS date.
7377         (func_emit_copyright_notice): New function.
7378         (func_emit_lib_Makefile_am): Use it.
7379         (func_emit_tests_Makefile_am): Likewise.
7380         (func_import): Likewise.
7381
7382 2006-05-08  Bruno Haible  <bruno@clisp.org>
7383
7384         * modules/stdarg: New file.
7385         * MODULES.html.sh (func_all_modules): Add section for <stdarg.h>.
7386
7387 2006-05-08  Bruno Haible  <bruno@clisp.org>
7388
7389         * m4/stdarg.m4: New file, from GNU gettext.
7390
7391 2006-05-08  Bruno Haible  <bruno@clisp.org>
7392
7393         * config/srclist.txt (build-aux/config.rpath): different from latest
7394         release.
7395
7396 2006-05-08  Bruno Haible  <bruno@clisp.org>
7397
7398         * build-aux/config.rpath: Add support for Sun C 5.9 on Linux.
7399
7400 2006-05-05  Jim Meyering  <jim@meyering.net>
7401
7402         * m4/warning.m4: New file, derived from bison's file by the same name.
7403
7404 2006-05-03  Bruno Haible  <bruno@clisp.org>
7405
7406         * lib/stdint_.h: Shorter URL.
7407         * lib/inttypes.h: Likewise.
7408
7409 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
7410
7411         * modules/inttypes (Maintainer): Change from Derek Price to 'all'.
7412
7413 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
7414
7415         * lib/verify.h: Document the internals better.  Most of this change
7416         was written by Bruno Haible.
7417
7418 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
7419
7420         * doc/verify.texi: New file, partly based on a proposal by
7421         Bruno Haible.
7422
7423 2006-05-02  Bruno Haible  <bruno@clisp.org>
7424
7425         * m4/full-header-path.m4 (gl_FULL_HEADER_PATH): Move the include_next
7426         test from here...
7427         * m4/_inttypes_h.m4 (gl_INTTYPES_H): ... to here.
7428
7429 2006-04-29  Bruno Haible  <bruno@clisp.org>
7430
7431         * lib/gcd.c: Use WORD_T and GCD instead of unsigned long and gcd.
7432         Suggested by Oskar Liljeblad <oskar@osk.mine.nu>.
7433
7434 2006-04-29  Bruno Haible  <bruno@clisp.org>
7435
7436         * gnulib-tool: Make --update option actually work.
7437
7438 2006-04-29  Bruno Haible  <bruno@clisp.org>
7439
7440         * doc/gcd.texi: New file.
7441         * doc/gnulib.texi: Include it.
7442
7443 2006-04-25  Paul Eggert  <eggert@cs.ucla.edu>
7444
7445         * lib/getdate.y (get_date): When adding relative date, start with the
7446         initial time, not with the result of the first mktime call.
7447
7448 2006-04-25  Bruno Haible  <bruno@clisp.org>
7449
7450         * gnulib-tool (func_import): Output the include directives in three
7451         blocks, sorted separately.
7452         Reported by Ben Pfaff <blp@cs.stanford.edu>.
7453
7454 2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
7455
7456         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Use prototype
7457         to define main with arguments, for C++.  Reported by Eric Blake.
7458         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC):
7459         Prefer 'int main ()' to 'int main (void)', for C++.
7460         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Likewise.
7461         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Specify a return type
7462         for 'main', for C99 and C++.
7463
7464 2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
7465
7466         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Use return, not exit.
7467         Don't assume that exit status -1 is valid.
7468         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
7469         * m4/putenv.m4 (gl_FUNC_PUTENV): Likewise.
7470         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Likewise.
7471         * m4/readdir.m4 (GL_FUNC_READDIR): Include <stdlib.h>.
7472         * m4/rename.m4 (vb_FUNC_RENAME): Likewise.
7473         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Use AC_RUN_IFELSE,
7474         not AC_TRY_RUN.  Use return, not exit.  Don't assume that
7475         functions can be used without declaring them, or that you can
7476         exit with status -1.
7477         * m4/utimes-null.m4 (gl_FUNC_UTIMES_NULL): Likewise.
7478
7479 2006-04-24  Karl Berry  <karl@gnu.org>
7480
7481         * config/srclist.txt (longdouble.m4): sync lost.
7482
7483 2006-04-24  Eric Blake  <ebb9@byu.net>
7484
7485         * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Avoid unused variable warning.
7486
7487 2006-04-24  Bruno Haible  <bruno@clisp.org>
7488
7489         * m4/poll.m4 (gl_FUNC_POLL): When cross-compiling, reject also the
7490         poll() implementation in AIX.
7491         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
7492
7493 2006-04-24  Bruno Haible  <bruno@clisp.org>
7494
7495         * m4/poll.m4 (gl_FUNC_POLL): Rearrange code, so that POLL_H gets
7496         assigned exactly once.
7497
7498 2006-04-23  Claudio Fontana  <claudio@gnu.org>
7499             Bruno Haible  <bruno@clisp.org>
7500
7501         * modules/gettext (Makefile.am): Add a -I flag for <libintl.h>.
7502         * gnulib-tool (func_emit_lib_Makefile_am): Emit empty default value
7503         for AM_CPPFLAGS.
7504
7505 2006-04-23  Bruno Haible  <bruno@clisp.org>
7506
7507         * modules/copy-file: Depend on unistd.
7508         * modules/execute: Likewise.
7509         * modules/fatal-signal: Likewise.
7510         * modules/findprog: Likewise.
7511         * modules/mkdtemp : Likewise.
7512         * modules/pipe: Likewise.
7513         * modules/wait-process: Likewise.
7514
7515 2006-04-23  Bruno Haible  <bruno@clisp.org>
7516
7517         * lib/fwriteerror.c (fwriteerror): Call fclose also when an error
7518         condition was already detected.
7519         Reported by Ben Pfaff <blp@cs.stanford.edu>.
7520
7521 2006-04-23  Bruno Haible  <bruno@clisp.org>
7522
7523         * lib/copy-file.c: Include <unistd.h> unconditionally.
7524         * lib/execute.c: Likewise.
7525         * lib/fatal-signal.c: Likewise.
7526         * lib/findprog.c: Likewise.
7527         * lib/mkdtemp.c: Likewise.
7528         * lib/pipe.h: Likewise.
7529         * lib/pipe.c: Likewise.
7530         * lib/wait-process.h: Likewise.
7531
7532 2006-04-23  Bruno Haible  <bruno@clisp.org>
7533
7534         * gnulib-tool (func_usage): Fix --import description. Document
7535         --update.
7536         (func_import): Create temporary file in a temporary directory, if
7537         --dry-run is specified. Silence errors from 'grep' when there are no
7538         m4 files in $m4dir.
7539         (func_create_testdir): Silence errors from 'grep' when there are no
7540         m4 files in $m4dir.
7541         Reported by Karl Berry <karl@freefriends.org>.
7542
7543 2006-04-20  Bruno Haible  <bruno@clisp.org>
7544
7545         * m4/argp.m4 (gl_ARGP): Don't call AC_CHECK_DECLS_ONCE with more than
7546         one argument, so that the code will be portable to Autoconf 2.60.
7547         * m4/getlogin_r.m4 (gl_PREREQ_GETLOGIN_R): Likewise.
7548         * m4/getpass.m4 (gl_PREREQ_GETPASS): Likewise.
7549         * m4/unlocked-io.m4 (gl_FUNC_GLIBC_UNLOCKED_IO): Likewise.
7550
7551 2006-04-19  Derek Price  <derek@ximbiot.com>
7552             Eric Blake  <ebb9@byu.net>
7553
7554         * m4/full-header-path.m4 (gl_FULL_HEADER_PATH): Use </full/path.h>
7555         rather than "/full/path.h".  Update comment to match.  Shorten &
7556         generalize m4_translit call via AS_TR_CPP.
7557
7558 2006-04-19  Derek Price  <derek@ximbiot.com>
7559             Eric Blake  <ebb9@byu.net>
7560
7561         * lib/inttypes.h: Correct grammar in comment.
7562
7563 2006-04-18  Derek Price  <derek@ximbiot.com>
7564             Paul Eggert  <eggert@cs.ucla.edu>
7565
7566         * modules/inttypes: New file.
7567         * modules/strtoimax, modules/strtoumax: Depend on inttypes.
7568
7569 2006-04-18  Derek Price  <derek@ximbiot.com>
7570             Paul Eggert  <eggert@cs.ucla.edu>
7571
7572         * m4/_inttypes_h.m4, m4/full-header-path.m4, m4/include_next.m4:
7573         New files.
7574
7575 2006-04-18  Derek Price  <derek@ximbiot.com>
7576             Paul Eggert  <eggert@cs.ucla.edu>
7577
7578         * lib/inttypes.h: New file.
7579         * lib/strtoimax.c: Assume <inttypes.h>.
7580
7581 2006-04-15  Paul Eggert  <eggert@cs.ucla.edu>
7582
7583         * lib/utimens.c (futimens): glibc futimesat messes up if /proc
7584         isn't mounted.  Problem reported by Kir Kolyshkin.
7585
7586 2006-04-13  Paul Eggert  <eggert@cs.ucla.edu>
7587
7588         * lib/regcomp.c (init_dfa): Don't use wchar_t or wctype_t if
7589         RE_ENABLE_I18N is not defined.  Problem reported by Mark D. Baushke via
7590         Derek R. Price.
7591         * lib/regex.h (RE_DUP_MAX): Update comment to match current
7592         implementation.
7593
7594 2006-04-12  Eric Blake  <ebb9@byu.net>
7595
7596         * modules/time_r (Makefile.am): Remove lib_SOURCES line, as this
7597         is now done automatically by the corresponding Autoconf macro.
7598
7599 2006-04-11  Paul Eggert  <eggert@cs.ucla.edu>
7600
7601         * m4/time_r.m4 (gl_TIME_R): Add AC_LIBSOURCES for time_r.c and
7602         time_r.h.
7603
7604 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
7605
7606         Merge regex changes from libc, removing some of our
7607         POSIX-conformance changes that were rejected and redoing them in a
7608         less-intrusive way.
7609
7610         * lib/regcomp.c (re_compile_internal, init_dfa):
7611         Length arg is now size_t, not Idx.  All uses changed.
7612         (peek_token): Forward decl now says internal_function.
7613         (__re_error_msgid, __re_error_msgid_idx):
7614         Now static rather than extern with attribute_hidden.
7615         (re_compile_pattern) [!defined _LIBC]: Use K&R-style defn.
7616         For some reason libc prefers K&R style defns for external functions.
7617         (regerror) [!defined _LIBC]: Likewise.
7618         (re_set_syntax, re_compile_fastmap, regcomp, regfree, re_comp):
7619         (seek_collating_symbol_entry, lookup_collation_sequence_value):
7620         (build_range_exp, build_collating_symbol):
7621         Use K&R-style defn.
7622         (re_compile_fastmap): Use '\0' to memset, not 0.
7623         (utf8_sb_map): Make the calculations more obvious.
7624         (init_dfa, parse_bracket_exp, build_charclass_op):
7625         Call calloc and cast result, as glibc does.
7626         (init_word_char, fetch_token, peek_token, peek_token_bracket):
7627         (build_range_exp, build_collating_symbol):
7628         Now internal functions.
7629
7630         * lib/regex.c [!defined _LIBC]: Allow compiling with C++ compilers.
7631
7632         * lib/regex.h (__USE_GNU_REGEX): New macro.  Don't depend on
7633         _REGEX_SOURCE any more; depend on _GNU_SOURCE instead.
7634         Don't depend on VMS; depend on __VMS instead, for POSIX
7635         namespace cleanness.
7636         (regoff_t): Define to ssize_t, not long int.
7637
7638         Remove the REG_ macros named below.  Instead, make the old names
7639         (e.g., RE_BACKSLASH_ESCAPE_IN_LISTS) visible only if
7640         __USE_GNU_REGEX.
7641         (REG_BACKSLASH_ESCAPE_IN_LISTS):
7642         (REG_BK_PLUS_QM, REG_CHAR_CLASSES, REG_CONTEXT_INDEP_ANCHORS):
7643         (REG_CONTEXT_INDEP_OPS, REG_CONTEXT_INVALID_OPS):
7644         (REG_DOT_NEWLINE, REG_DOT_NOT_NULL, REG_HAT_LISTS_NOT_NEWLINE):
7645         (REG_INTERVALS, REG_LIMITED_OPS, REG_NEWLINE_ALT):
7646         (REG_NO_BK_BRACES, REG_NO_BK_PARENS, REG_NO_BK_REFS):
7647         (REG_NO_BK_VBAR, REG_NO_EMPTY_RANGES):
7648         (REG_UNMATCHED_RIGHT_PAREN_ORD, REG_NO_POSIX_BACKTRACKING):
7649         (REG_NO_GNU_OPS, REG_DEBUG, REG_INVALID_INTERVAL_ORD):
7650         (REG_IGNORE_CASE, REG_CARET_ANCHORS_HERE):
7651         (REG_CONTEXT_INVALID_DUP, REG_NO_SUB, REG_SYNTAX_EMACS):
7652         (REG_SYNTAX_AWK, REG_SYNTAX_GNU_AWK, REG_SYNTAX_POSIX_AWK):
7653         (REG_SYNTAX_GREP, REG_SYNTAX_EGREP, REG_SYNTAX_POSIX_EGREP):
7654         (REG_SYNTAX_ED, REG_SYNTAX_SED, _REG_SYNTAX_POSIX_COMMON):
7655         (REG_SYNTAX_POSIX_BASIC, REG_SYNTAX_POSIX_MINIMAL_BASIC):
7656         (REG_SYNTAX_POSIX_EXTENDED, REG_SYNTAX_POSIX_MINIMAL_EXTENDED):
7657         (REG_DUP_MAX, REG_UNALLOCATED, REG_REALLOCATE, REG_FIXED):
7658         (REG_NREGS):
7659         Remove.  All uses replaced by the old RE_* names.
7660         (RE_BACKSLASH_ESCAPE_IN_LISTS):
7661         (RE_BK_PLUS_QM, RE_CHAR_CLASSES, RE_CONTEXT_INDEP_ANCHORS):
7662         (RE_CONTEXT_INDEP_OPS, RE_CONTEXT_INVALID_OPS):
7663         (RE_DOT_NEWLINE, RE_DOT_NOT_NULL, RE_HAT_LISTS_NOT_NEWLINE):
7664         (RE_INTERVALS, RE_LIMITED_OPS, RE_NEWLINE_ALT):
7665         (RE_NO_BK_BRACES, RE_NO_BK_PARENS, RE_NO_BK_REFS):
7666         (RE_NO_BK_VBAR, RE_NO_EMPTY_RANGES):
7667         (RE_UNMATCHED_RIGHT_PAREN_ORD, RE_NO_POSIX_BACKTRACKING):
7668         (RE_NO_GNU_OPS, RE_DEBUG, RE_INVALID_INTERVAL_ORD):
7669         (RE_IGNORE_CASE, RE_CARET_ANCHORS_HERE):
7670         (RE_CONTEXT_INVALID_DUP, RE_NO_SUB):
7671         Don't bother having these macros be independent of each others'
7672         values, since they no longer exist in the POSIX name space.
7673
7674         Rename the following member names back to their old names,
7675         unless !__USE_GNU_REGEX.  All uses changed back.
7676         (buffer): Renamed from re_buffer.
7677         (allocated): Renamed from re_allocated.
7678         (used): Renamed from re_used.
7679         (syntax): Renamed from re_syntax.
7680         (fastmap): Renamed from re_fastmap.
7681         (translate): Renamed from re_translate.
7682         (can_be_null): Renamed from re_can_be_null.
7683         (regs_allocated): Renamed from re_regs_allocated.
7684         (fastmap_accurate): Renamed from re_fastmap_accurate.
7685         (no_sub): Renamed from re_no_sub.
7686         (not_bol): Renamed from re_not_bol.
7687         (not_eol): Renamed from re_not_eol.
7688         (newline_anchor): Renamed from re_newline_anchor.
7689         (num_regs): Renamed from rm_num_regs.
7690         (start): Renamed from rm_start.
7691         (end): Renamed from rm_end.
7692
7693         (free_state): Move up a bit.
7694
7695         * lib/regex_internal.h (inline) [__GNUC__ < 3 && defined _LIBC]:
7696         #define to be empty.
7697         (ASCII_CHARS): New macro, replacing all uses of 0x80 and/or SBC_MAX / 2
7698         when that is what is intended.
7699         (SBC_MAX): Define to UCHAR_MAX + 1, not 256.
7700         (__re_error_msgid, __re_error_msgid_idx): Remove decls; not needed.
7701         (MAX): New macro.
7702         (re_xmalloc, re_calloc, re_xrealloc, re_x2realloc): Remove.
7703         All uses changed back to re_malloc, etc.  It's now the caller's
7704         responsibility to check for overflow; all callers changed.
7705         (re_alloc_oversized, re_x2alloc_oversized, re_xnmalloc, re_xnrealloc):
7706         (re_x2nrealloc): Remove.
7707         (free_state): Remove decl.
7708
7709         * lib/regexc.c (regexec, re_match, re_search, re_match_2, re_search_2):
7710         (re_set_registers, re_exec):
7711         Use K&R-style defn.
7712
7713         2006-01-31  Roland McGrath  <roland@redhat.com>
7714
7715         * lib/regcomp.c (calc_eclosure_iter): Remove dead variables.
7716         Reported by Mike Frysinger <vapier@gentoo.org>.
7717
7718         2006-01-15  Andreas Jaeger  <aj@suse.de>
7719
7720         [BZ #1950]
7721         * lib/regex_internal.c (re_string_reconstruct): Adjust for
7722         build_wcs_upper_buffer change.
7723         (build_wcs_upper_buffer): Change return type.
7724
7725         2005-12-10  Ulrich Drepper  <drepper@redhat.com>
7726
7727         * lib/regex_internal.h: Include <stdint.h> if available.
7728
7729         2005-12-06  Paolo Bonzini  <bonzini@gnu.org>
7730
7731         * lib/regex_internal.h (SIZE_MAX): Provide a default definition.
7732
7733         2005-10-14  Ulrich Drepper  <drepper@redhat.com>
7734
7735         * lib/regcomp.c: Adjust for changed secondary hash function.
7736
7737         2005-09-30  Ulrich Drepper  <drepper@redhat.com>
7738
7739         * lib/regex.h: Pretty printing.
7740         Clean up namespace a bit.
7741
7742         2005-09-30  Jakub Jelinek  <jakub@redhat.com>
7743
7744         * lib/regexec.c (update_cur_sifted_state, check_arrival,
7745         check_arrival_add_next_nodes): Avoid using uninitialized variable.
7746
7747         2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
7748                     Ulrich Drepper  <drepper@redhat.com>
7749
7750         [BZ #1302]
7751         * lib/regex_internal.h (bitset_t): Renamed from bitset.  All uses
7752         changed.
7753         (bitset_word_t): Renamed from bitset_word.  All uses changed.
7754
7755         2005-09-22  Ulrich Drepper  <drepper@redhat.com>
7756
7757         [BZ #281]
7758         * lib/regex.h: Define RE_TRANSLATE_TYPE as unsigned char *.
7759         * lib/regcomp.c: Remove unnecessary uses of
7760         unsigned RE_TRANSLATE_TYPE.
7761         * lib/regex_internal.h: Likewise.
7762         * lib/regex_internal.c: Likewise.
7763         * lib/regexec.c: Likewise.
7764         Based on a patch by Stepan Kasal <kasal@ucw.cz>.
7765
7766         2005-09-07  Ulrich Drepper  <drepper@redhat.com>
7767
7768         * lib/regexec.c (find_recover_state): Remove unnecessary
7769         initialization.
7770         (transit_state_bkref): Make DFA a const pointer.
7771         (get_subexp): Likewise.
7772         (check_arrival): Likewise.
7773         (update_cur_sifted_state): Likewise.
7774         (re_search_internal): Likewise.
7775         (prune_impossible_nodes): Likewise.
7776         (acquire_init_state_context): Likewise.
7777         (proceed_next_node): Likewise.
7778         (set_regs): Likewise.
7779         (free_fail_stack_return): Likewise.
7780         (check_arrival_expand_ecl): Mark DFA parameter as const.
7781         (check_arrival_expand_ecl_sub): Likewise.
7782         (check_subexp_limits): Likewise.
7783         (sub_epsilon_src_nodes):  Likewise.
7784         (add_epsilon_src_nodes):  Likewise.
7785         (merge_state_array): Likewise.
7786         (update_regs): Likewise.
7787         (build_trtable): Likewise.
7788         (sift_states_backward): Mark MCTX parameter as const.
7789         (build_sifted_states): Likewise.
7790         (update_cur_sifted_state): Likewise.
7791         (sift_states_mkref): Likewise.
7792         (check_arrival_expand_ecl): Mark eclosure as const.
7793         (check_dst_limits_calc_pos_1): Likewise.
7794         * lib/regex_internal.h (re_match_context_t): Make dfa a const
7795         pointer.
7796
7797         2005-09-06  Ulrich Drepper  <drepper@redhat.com>
7798
7799         * lib/regexec.c (merge_state_with_log): Define dfa as const pointer.
7800         (transit_state_sb): Likewise.
7801         (transit_state_mb): Likewise.
7802         (sift_states_iter_mb): Likewise.
7803         (check_arrival_add_next_nodes): Likewise.
7804         (check_node_accept_bytes): Change first parameter to pointer-to-const.
7805         [_LIBC] (re_search_2_stub): Use mempcpy.
7806
7807         * lib/regex_internal.c (re_string_reconstruct): Avoid calling
7808         mbrtowc for very simple UTF-8 case.
7809
7810         * lib/regex_internal.c (re_acquire_state): Make DFA pointer arg
7811         a pointer-to-const.
7812         (re_acquire_state_context): Likewise.
7813         * lib/regex_internal.h: Adjust prototypes.
7814
7815         * lib/regex.c: Prevent using C++ compilers.
7816
7817         * lib/regex_internal.c (re_acquire_state): Minor code rearrangement.
7818         (re_acquire_state_context): Likewise.
7819
7820 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
7821
7822         * modules/regex (Depends-on): Add ssize_t.
7823
7824 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
7825
7826         * m4/regex.m4 (gl_REGEX): Check for new glibc interface to
7827         translation table.
7828
7829 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
7830
7831         * doc/gnulib-tool.texi (Modified imports): pathname -> file name.
7832
7833 2006-03-29  Mark D. Baushke  <mdb@gnu.org>
7834             Bruno Haible  <bruno@clisp.org>
7835
7836         * lib/stdint_.h: On OpenBSD, don't redefine types already included in
7837         <sys/types.h> and <inttypes.h>.
7838
7839 2006-03-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7840
7841         * m4/argz.m4 (gl_FUNC_ARGZ): If we define `error_t', also define
7842         `__error_t_defined', so argp.h will not typedef the former.
7843
7844 2006-03-25  Paul Eggert  <eggert@cs.ucla.edu>
7845
7846         * m4/regex.m4 (gl_REGEX): Don't insist on REG_SYNTAX_POSIX_EGREP,
7847         REG_SYNTAX_EMACS, and REG_IGNORE_CASE.  Settle for the traditional
7848         glibc names.  Even if glibc is changed to conform to POSIX, the
7849         traditional names will be available anyway, since regex depends on
7850         the extensions module.  Also, fix a longstanding typo in the
7851         implementation of Spencer ERE test #75 from grep 2.3.  Problems
7852         reported by Emanuele Giaquinta.  Also, change sense of cached
7853         variable, so that the message makes sense.
7854
7855 2006-03-24  Simon Josefsson  <jas@extundo.com>
7856
7857         * lib/base64.c: Fix problems reported by Eric Blake <ebb9@byu.net>,
7858         including some doc fixes.
7859         (base64_encode_alloc): Fix +1 bug on allocation failures.
7860
7861 2006-03-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7862
7863         * lib/base64.c (base64_encode): Do not read past end of array with
7864         unsanitized input on systems with CHAR_BIT > 8.
7865
7866 2006-03-24  Eric Blake  <ebb9@byu.net>
7867
7868         * lib/time_r.c (copy_string_result): Remove, as it is no longer used.
7869
7870 2006-03-22  Karl Berry  <karl@gnu.org>
7871
7872         * config/srclist.txt (*setenv.[ch]): get from coreutils.
7873         * config/srclistvars.sh (COREUTILS): new var.
7874
7875 2006-03-17  Jim Meyering  <jim@meyering.net>
7876
7877         * m4/regex.m4 (gl_REGEX): Fix typo in last change:
7878         s/_REGEX_WIDE_OFFSETS/_REGEX_LARGE_OFFSETS/.
7879
7880 2006-03-16  Paul Eggert  <eggert@cs.ucla.edu>
7881
7882         * m4/regex.m4 (gl_REGEX): Don't check for off_t, since the code
7883         no longer needs it.  Instead, check that regoff_t is as least
7884         as wide as ptrdiff_t.
7885
7886         Don't define _REGEX_WIDE_OFFSETS unless using the included regex,
7887         so that our regex.h stays compatible with the installed regex.
7888         This is helpful for installers who configure --without-included-regex.
7889         Problem reported by Emanuele Giaquinta.
7890
7891 2006-03-16  Paul Eggert  <eggert@cs.ucla.edu>
7892
7893         * lib/regex.h (regoff_t) [defined _REGEX_LARGE_OFFSETS]:
7894         Typedef to long int, not to off_, as POSIX will likely change
7895         in that direction.
7896
7897 2006-03-15  Eric Blake  <ebb9@byu.net>
7898
7899         * m4/dirfd.m4 (gl_FUNC_DIRFD): Use AC_REQUIRE for AC_HEADER_DIRENT.
7900
7901 2006-03-13  Sergey Poznyakoff  <gray@gnu.org.ua>
7902
7903         * lib/argp-help.c (validate_uparams): Fix typo
7904         * lib/argp-parse.c (argp_default_options): Consistently begin help
7905         messages with a lowercase letter.
7906
7907 2006-03-11  Paul Eggert  <eggert@cs.ucla.edu>
7908
7909         * lib/time_r.h (asctime_r, ctime_r): Remove.  These functions can
7910         overrun buffers and shouldn't be used (much as gets shouldn't be
7911         used).
7912         * lib/time_r.c (asctime_r, ctime_r): Likewise.
7913
7914 2006-03-08  Simon Josefsson  <jas@extundo.com>
7915
7916         * m4/gc-random.m4: Permit 'no' as variable values and fix warnings,
7917         suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
7918
7919 2006-03-08  Simon Josefsson  <jas@extundo.com>
7920
7921         * m4/gc-random.m4: Call AC_CANONICAL_HOST and use $host_os instead of
7922         $target, suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
7923
7924 2006-03-08  Simon Josefsson  <jas@extundo.com>
7925
7926         * lib/gc-gnulib.c (randomize): Don't open files called 'no', they
7927         signal that configure disabled the device.
7928
7929 2006-03-08  Simon Josefsson  <jas@extundo.com>
7930
7931         * build-aux/maint.mk: Fix refresh-po, to handle no translated
7932         languages.
7933
7934 2006-03-07  Simon Josefsson  <jas@extundo.com>
7935
7936         * modules/getopt (Depends-on): Add unistd.
7937
7938         * modules/unistd: New file.
7939
7940 2006-03-07  Simon Josefsson  <jas@extundo.com>
7941
7942         * modules/gc-random: New file.
7943
7944 2006-03-07  Simon Josefsson  <jas@extundo.com>
7945
7946         * m4/unistd_h.m4: New file.
7947
7948 2006-03-07  Simon Josefsson  <jas@extundo.com>
7949
7950         * m4/readline.m4 (gl_FUNC_READLINE): Rewrite the cached part of the
7951         test to be side-effect free by storing the result in the cache
7952         variable gl_cv_lib_readline, and moving the assignment of
7953         LIBREADLINE and LTLIBREADLINE outside the COMMANDS-TO-SET-IT.
7954         From Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
7955
7956 2006-03-07  Simon Josefsson  <jas@extundo.com>
7957
7958         * m4/gc-random.m4: New file, mostly from gc.m4.  Warn instead of
7959         error on missing devices (the functions will return an error).
7960
7961         * m4/gc.m4: Move random stuff to gc-random.m4
7962
7963 2006-03-07  Simon Josefsson  <jas@extundo.com>
7964
7965         * lib/unistd_.h: New file.
7966
7967 2006-03-07  Simon Josefsson  <jas@extundo.com>
7968
7969         * lib/gc-libgcrypt.c, gc-gnulib.c: Use GC_USE_RANDOM.
7970
7971 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
7972
7973         * m4/unistd_h.m4 (gl_HEADER_UNISTD): Rename, to match modules file.
7974         Problem reported by Juan Manuel Guerrero.
7975
7976 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
7977
7978         * lib/c-stack.c: Include unistd.h unconditionally, since we now assume
7979         the unistd module.
7980         * lib/getlogin_r.c: Likewise.
7981         * lib/getlogin_r.h: Likewise.
7982         * lib/glob.c: Likewise.
7983         * lib/pagealign_alloc.c: Likewise.
7984         * lib/unistd_.h: Remove; no longer needed.
7985
7986 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
7987
7988         * MODULES.html.sh (Support for systems lacking POSIX:2001):
7989         Add unistd.
7990         * modules/c-stack (Depends-on): Add unistd.
7991         * modules/getlogin_r: Likewise.
7992         * modules/glob: Likewise.
7993         * modules/pagealign_alloc: Likewise.
7994         * modules/unistd (Files): Remove lib/unistd_.h.
7995         (EXTRA_DIST): Remove.
7996         (unistd.h): Create using 'echo' rather than 'cp', so that we don't
7997         need unistd_.h.
7998         (MOSTLYCLEANFILES): Remove unistd.h-t.
7999
8000 2006-03-03  Simon Josefsson  <jas@extundo.com>
8001
8002         * build-aux/maint.mk: Add several syntax checks from CoreUtils.
8003
8004 2006-03-03  Simon Josefsson  <jas@extundo.com>
8005
8006         * build-aux/maint.mk: Add refresh-po rule, based on ideas from
8007         libidn and bison.
8008
8009 2006-03-03  Simon Josefsson  <jas@extundo.com>
8010
8011         * build-aux/maint.mk: Add indent target.
8012
8013 2006-03-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de> (tiny change)
8014
8015         * m4/poll.m4 (gl_FUNC_POLL): If we deem poll(2) unacceptable, use
8016         our replacement poll.h in any case, to avoid a differing
8017         declaration from a system header.  Seen on AIX.
8018
8019 2006-03-01  Simon Josefsson  <jas@extundo.com>
8020
8021         * lib/readline.c: Fix typo, tiny patch from Stepan Kasal
8022         <kasal@ucw.cz>.
8023
8024 2006-03-01  Paul Eggert  <eggert@cs.ucla.edu>
8025
8026         * modules/gettime (Depends-on): Add extensions module.
8027         * modules/nanosleep (Depends-on): Likewise.
8028         * modules/settime (Depends-on): Likewise.
8029
8030 2006-03-01  Paul Eggert  <eggert@cs.ucla.edu>
8031
8032         * m4/clock_time.m4 (gl_CLOCK_TIME): Require gl_USE_SYSTEM_EXTENSIONS,
8033         not merely AC_GNU_SOURCE, for the benefit of Solaris 10 when compiled
8034         pedantically.
8035         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
8036         * m4/timespec.m4 (gl_TIMESPEC): Likewise.
8037
8038         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Use "=" with "test",
8039         not "==".  Reported by Ralf Wildenhues.
8040
8041 2006-03-01  Karl Berry  <karl@gnu.org>
8042
8043         * doc/Copyright/request-*: new files, synced from gnuorg.
8044
8045 2006-03-01  Karl Berry  <karl@gnu.org>
8046
8047         * config/srclist.txt (Copyright/*): new entries.
8048
8049 2006-02-28  Simon Josefsson  <jas@extundo.com>
8050
8051         * lib/getopt.c: Protect #include of unistd.h, for MSVS.
8052
8053 2006-02-27  Simon Josefsson  <jas@extundo.com>
8054
8055         * lib/base64.h: Indent #define's.  From Jim Meyering
8056         <jim@meyering.net>.
8057
8058 2006-02-27  Jim Meyering  <jim@meyering.net>
8059
8060         Revert the change of 2006-02-24, so these files can continue
8061         to be sync'd from gettext.
8062         * lib/mkdtemp.c, setenv.c, unsetenv.c: *Un*-normalize inclusion
8063         of `config.h'.
8064
8065 2006-02-26  Paul Eggert  <eggert@cs.ucla.edu>
8066
8067         * modules/intprops: New file.
8068         * MODULES.html.sh (Numeric conversion functions <stdlib.h>):
8069         Add intprops.
8070         * modules/getloadavg (Files): Remove lib/intprops.h.
8071         (Depends-on): Add intprops.
8072         * modules/human: Likewise.
8073         * modules/inttostr: Likewise.
8074         * modules/openat: Likewise.
8075         * modules/sig2str: Likewise.
8076         * modules/userspec: Likewise.
8077         * modules/utimecmp: Likewise.
8078         * modules/xnanosleep: Likewise.
8079         * modules/xstrtol: Likewise.
8080
8081 2006-02-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny changes)
8082
8083         * modules/xstrtod: Omit xstrtod.h, xstrtod.c; they're in LIB_SOURCES.
8084         * modules/lock-tests (TESTS): Use $(EXEEXT).
8085         * modules/tls-tests: Likewise.
8086         * modules/argp-tests: Likewise.
8087         (check_PROGRAMS): New var, replacing...
8088         (noinst_PROGRAMS, test_argp_SOURCES): Remove.
8089
8090 2006-02-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8091
8092         * lib/mkdtemp.c, lib/setenv.c, lib/unsetenv.c: Normalize inclusion of
8093         `config.h'.
8094
8095 2006-02-24  Paul Eggert  <eggert@cs.ucla.edu>
8096
8097         * lib/glob.c: Say "invalid" rather than "illegal" in comments.
8098
8099 2006-02-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8100
8101         Sync from coreutils.
8102         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Require gl_FUNC_LCHMOD and
8103         gl_CHDIR_SAFER.
8104
8105 2006-02-22  Jim Meyering  <jim@meyering.net>
8106
8107         Sync from coreutils.
8108         * m4/chdir-safer.m4: New file.
8109
8110 2006-02-20  Paul Eggert  <eggert@cs.ucla.edu>
8111
8112         * lib/getcwd.c (AT_FDCWD): Work around a bug in Solaris 9 and 10, where
8113         AT_FDCWD exceeds INT_MAX.
8114         * lib/openat.h (AT_FDCWD): Likewise.
8115
8116 2006-02-17  Eric Blake  <address@hidden>
8117
8118         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Fix caching error.
8119
8120 2006-02-16  Simon Josefsson  <jas@extundo.com>
8121
8122         * modules/getaddrinfo (Depends-on): Add sys_socket.
8123
8124 2006-02-15  Simon Josefsson  <jas@extundo.com>
8125
8126         * build-aux/maint.mk: Add dsyntax-check rule.
8127
8128 2006-02-15  Eric Blake  <ebb9@byu.net>
8129
8130         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Don't attempt using
8131         winsock2.h or ws2tcpip.h when sys/socket.h is present. Fixes
8132         'present but cannot compile' warnings on cygwin.
8133         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Use gl_HEADER_SYS_SOCKET.  Don't
8134         use ws2tcpip.h if sys/socket.h works.
8135         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Use gl_HEADER_SYS_SOCKET.
8136         (gl_GETADDRINFO): Don't use ws2tcpip.h when sys/socket.h is present.
8137
8138 2006-02-14  Simon Josefsson  <jas@extundo.com>
8139
8140         * modules/maintainer-makefile (Files): Rename.
8141
8142         * build-aux/GNUmakefile: Rename Makefile.maint to maint.mk
8143         and (the local) Makefile.cfg to maint-cfg.mk.
8144
8145         * build-aux/Makefile.maint, build-aux/maint.mk: Renamed the former
8146         to the latter.
8147
8148         * modules/maintainer-makefile: New module.
8149
8150         * build-aux/Makefile.maint: New file, from GNU CoreUtils, although
8151         severaly stripped to make it possible to build it up from scratch
8152         with reliable tests.
8153
8154         * build-aux/GNUmakefile: New file, from GNU CoreUtils with some
8155         fixes to permit overriding the default actions when configure and
8156         makefile are not available.
8157
8158 2006-02-14  Paul Eggert  <eggert@cs.ucla.edu>
8159
8160         Sync from coreutils.
8161         * modules/lstat (Depends-on): Don't depend on xalloc.
8162         (License): Change from GPL to LGPL, since this is now simply a
8163         replacement for a libc function.
8164
8165 2006-02-14  Jim Meyering  <jim@meyering.net>
8166
8167         Sync from coreutils.
8168
8169         Eliminate the unwelcome (albeit unlikely) possibility of xmalloc
8170         failure on deficient systems, and simplify gnulib lgpl dependencies.
8171         * lib/lstat.c (rpl_lstat): Rewrite to use stat() in place of the
8172         xmalloc/lstat combination.  Based on a patch from Bruno Haible.
8173
8174         * lib/xalloc-die.c: Remove unused definition of N_.
8175
8176 2006-02-14  Jim Meyering  <jim@meyering.net>
8177
8178         Sync from coreutils.
8179         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Invoke
8180         AC_CHECK_FUNCS(getmntent) unconditionally so that tests of
8181         $ac_cv_func_getmntent (e.g., in gl_LIST_MOUNTED_FILE_SYSTEMS) need not
8182         double-quote uses of that variable, to accommodate the rare case in
8183         which getmntent is available in none of the libraries checked.  This
8184         happens at least on FreeBSD 5.0.
8185
8186 2006-02-13  Simon Josefsson  <jas@extundo.com>
8187
8188         * gnulib-tool (Usage): Fix --import, from
8189         karl@freefriends.org (Karl Berry).
8190
8191 2006-02-13  Sergey Poznyakoff  <gray@gnu.org.ua>
8192
8193         * lib/argp-fmtstream.c: Restore another bugfix lost on 2005-12-12
8194
8195 2006-02-07  Sergey Poznyakoff  <gray@gnu.org.ua>
8196
8197         * lib/argp-namefrob.h: Restore changes accidentally lost during the
8198         "autoupdate" on 2005-12-12.
8199
8200 2006-02-07  Paul Eggert  <eggert@cs.ucla.edu>
8201
8202         * modules/closeout (Depends-on): Remove atexit.
8203
8204 2006-02-07  Paul Eggert  <eggert@cs.ucla.edu>
8205
8206         * lib/closeout.c (close_stdout): Don't assume 'bool' converts nonzero
8207         ints to 0 or 1, as this isn't true for the stdbool.h substitute.
8208
8209 2006-02-05  Paul Eggert  <eggert@cs.ucla.edu>
8210
8211         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Don't #define
8212         __EXTENSIONS__ if this causes compilation to fail.  Problem
8213         reported by Nelson H. F. Beebe with Solaris 10 and Sun C 5.7
8214         c89 -D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED.
8215
8216 2006-01-27  Paul Eggert  <eggert@cs.ucla.edu>
8217
8218         * lib/fnmatch.c (L_): Renamed from L, to work around a bug in
8219         Mac OS X 10.3.9 with GCC 3 reported by Claudio Fontana in
8220         <http://lists.gnu.org/archive/html/bug-gnulib/2006-01/msg00074.html>.
8221         All uses changed.
8222
8223 2006-01-26  Simon Josefsson  <jas@extundo.com>
8224
8225         * lib/socket_.h: Set WINVER to 0x0501, to make sure getaddrinfo
8226         prototype is visible on mingw32.
8227
8228         * lib/getaddrinfo.h: Define EAI_ADDRFAMILY and EAI_SYSTEM if not set,
8229         for mingw32.
8230
8231         * lib/gai_strerror.c, getaddrinfo.h: Protect netdb.h #include (for
8232         mingw32).
8233
8234 2006-01-26  Paul Eggert  <eggert@cs.ucla.edu>
8235
8236         * lib/fts.c (diropen): Open with O_NOCTTY | O_NONBLOCK too.  Don't
8237         attempt to open for write; this always fails, at least on POSIX
8238         hosts.  This reinstates the 2006-01-09 change, which was
8239         inadvertently removed.
8240
8241 2006-01-26  Bruno Haible  <bruno@clisp.org>
8242
8243         * gnulib-tool (func_import): Use "trap 'exit $?' instead of "trap :".
8244         Reported by Paul Eggert.
8245
8246 2006-01-26  Bruno Haible  <bruno@clisp.org>
8247             Paul Eggert  <eggert@cs.ucla.edu>
8248
8249         * lib/stdbool_.h (_Bool)
8250         [(! (defined __cplusplus || defined __BEOS__)
8251           && !defined __GNUC__
8252           && !(defined __HP_cc || defined __xlc__
8253                || (defined __SUNPRO_C && (__SUNPRO_C < 0x550 || __STDC__ == 1))
8254                || defined __sgi))]:
8255         #define to signed char in these cases too; this simplifies
8256         the code (so that we don't have to worry about HP-UX, AIX, SunPRO,
8257         etc., separately) and makes it more conservative.
8258
8259 2006-01-25  Simon Josefsson  <jas@extundo.com>
8260
8261         * m4/getaddrinfo.m4: Look for getaddrinfo inside ws2tcip.h and
8262         -lws2_32.  Protect sys/socket.h and netdb.h #include's.  Include
8263         ws2tcpip.h with WINVER=0x0501.  All for mingw32.
8264
8265 2006-01-25  Sergey Poznyakoff  <gray@gnu.org.ua>
8266
8267         * lib/argp-namefrob.h: Bugfix. Remove stray #
8268
8269 2006-01-25  Paul Eggert  <eggert@cs.ucla.edu>
8270
8271         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check for xlc bug if __GCC__ too,
8272         so that we test the test.
8273         Check for yet another HP-UX cc bug involving *bool |= bool.
8274
8275 2006-01-25  Karl Berry  <karl@gnu.org>
8276
8277         * config/srclist.txt (vasnprintf.c): sync lost.
8278
8279 2006-01-25  Jim Meyering  <jim@meyering.net>
8280
8281         Sync from the stable (b5) branch of coreutils:
8282
8283         * lib/fts.c (fts_children): Don't let close() clobber errno from
8284         failed fchdir().
8285
8286         * lib/fts.c (fts_stat): When following a symlink-to-directory,
8287         don't necessarily interpret stat-fails+lstat-succeeds as indicating
8288         a dangling symlink.  That can also happen at least for ELOOP.
8289         The fix: return FTS_SLNONE only when the stat errno is ENOENT.
8290         FYI, this bug predates the inclusion of fts.c in coreutils.
8291
8292         * lib/fts.c (fts_open): Put new maxarglen declaration and uses
8293         in their own block, so pre-c99 compilers don't object.
8294
8295         Avoid the double-free (first in fts_read, second in fts_close) that
8296         would occur when an `active' directory is made inaccessible (e.g.,
8297         via chmod a-x) during a traversal.
8298         * lib/fts.c (fts_read): After a failed fchdir, update sp->fts_cur
8299         before returning.  Reproduce this failure by
8300         mkdir -p a/b; cd a; chmod a-x . b
8301         Reported by Stavros Passas.
8302
8303 2006-01-25  Jim Meyering  <jim@meyering.net>
8304
8305         * lib/fileblocks.c: Remove more useless parentheses.
8306         * lib/readutmp.h: Likewise.
8307
8308 2006-01-25  Bruno Haible  <bruno@clisp.org>
8309
8310         * lib/stdbool_.h (_Bool) [IRIX cc]: Define as 'signed char', to avoid
8311         warnings.
8312         Reported by Paul Eggert.
8313
8314 2006-01-25  Bruno Haible  <bruno@clisp.org>
8315
8316         * gnulib-tool (func_import): Use "trap :" instead of "trap -" to get
8317         rid of a trap command. For Solaris sh.
8318         Reported by Mark D. Baushke <mdb@gnu.org>.
8319
8320 2006-01-24  Simon Josefsson  <jas@extundo.com>
8321
8322         * lib/socket_.h (SHUT_WR, SHUT_RDWR): Don't hardcode, suggested by
8323         Bruno.
8324
8325 2006-01-24  Karl Berry  <karl@gnu.org>
8326
8327         * config/srclist.txt (argp-namefrob.h): sync lost.
8328
8329 2006-01-24  Jim Meyering  <jim@meyering.net>
8330
8331         * modules/openat (Files): Add lib/intprops.h.
8332         From Mark D. Baushke.
8333
8334 2006-01-24  Jim Meyering  <jim@meyering.net>
8335
8336         * m4/openat.m4 (gl_FUNC_OPENAT): Add AC_LIBSOURCES([intprops.h]).
8337         Reported by Mark D. Baushke.
8338
8339 2006-01-24  Jim Meyering  <jim@meyering.net>
8340
8341         * lib/socket_.h: Remove useless parentheses in uses of cpp `defined'.
8342
8343 2006-01-24  Bruno Haible  <bruno@clisp.org>
8344
8345         * modules/strnlen (Maintainer): Change from glibc to all.
8346
8347 2006-01-24  Bruno Haible  <bruno@clisp.org>
8348
8349         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check for IBM and HP-UX bugs.
8350         Patch by Paul Eggert.
8351
8352 2006-01-24  Bruno Haible  <bruno@clisp.org>
8353
8354         * lib/stdbool_.h (_Bool) [__cplusplus]: Don't define if the compiler
8355         already has it.
8356         Report and patch by Albert Chin-A-Young  <china@thewrittenword.com> on
8357         2005-11-26.
8358
8359         * lib/stdbool_.h (_Bool) [HP-UX cc, AIX cc,xlc]: Define as
8360         'signed char' to avoid problems with the built-in _Bool type.
8361         Reported by Paul Eggert on 2005-11-26.
8362
8363 2006-01-24  Bruno Haible  <bruno@clisp.org>
8364
8365         * gnulib-tool (func_import): Avoid constructing complicated sed
8366         expressions inside backquote.
8367         Report and solution by Mark D. Baushke <mdb@gnu.org>.
8368
8369 2006-01-23  Ulrich Drepper  <drepper@redhat.com>
8370
8371         These changes imported from libc.
8372         * lib/getopt.c: Use __fxprintf instead of inline stream orientation
8373         test and two separate function calls.
8374         * lib/strndup.c (__strndup): Add libc_hidden_def.
8375
8376 2006-01-23  Simon Josefsson  <jas@extundo.com>
8377
8378         * modules/lock-tests: Use check_PROGRAMS instead of noinst_PROGRAMS.
8379         Remove the test_*_SOURCES variable: automake infers it by default.
8380         * modules/tls-tests: Likewise.
8381
8382 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
8383
8384         Work around porting bugs reported by Dieter in
8385         <http://lists.gnu.org/archive/html/bug-bison/2006-01/msg00049.html>.
8386         * lib/getopt.c (_NOPROTO): Remove; no longer needed.
8387         Include <stdlib.h> and <unistd.h> in all environments; it's safe now.
8388         Include "getopt.h" first, to check interface.
8389         (getenv): Declare only if defined HAVE_DECL_GETENV &&
8390         !HAVE_DECL_GETENV.
8391         * lib/strndup.c [!_LIBC]: Include "strndup.h" to get prototype.
8392         (__strndup): Revert to K&R-style function dfns, the glibc style.
8393         * lib/strnlen.c: Don't claim it's taken from glibc; it's not.
8394         (strnlen, __strnlen): Remove #defines and #undefs; not needed.
8395         Include strnlen.h first, to get prototype properly.
8396         (strnlen): Renamed from __strnlen.
8397         Remove weak alias.
8398
8399 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
8400
8401         * m4/getopt.m4 (gl_PREREQ_GETOPT): Check for getenv decl.
8402
8403 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
8404
8405         * config/srclist.txt: Adjust to reflect glibc reorganization.
8406         This affects only comments.
8407
8408 2006-01-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
8409
8410          * gnulib-tool, build-aux/csharpcomp.sh.in: Do not pass `-q' to mktemp.
8411          Reported by Bruce Korb <bkorb@gnu.org>.
8412
8413 2006-01-22  Paul Eggert  <eggert@cs.ucla.edu>
8414
8415         * lib/quotearg.c (quotearg_buffer_restyled): Add "default: break;"
8416         to pacify gcc -Wswitch-default.
8417
8418 2006-01-22  Bruno Haible  <bruno@clisp.org>
8419
8420         * lib/vasnprintf.c (VASNPRINTF): In the computation of the size of the
8421         temporary buffer for sprintf, take into account the precision also
8422         for 'd', 'i', 'u', 'o', 'x', 'X'.
8423
8424 2006-01-21  Sergey Poznyakoff  <gray@gnu.org.ua>
8425
8426         * modules/argp-tests: New module
8427         * tests/test-argp.c: New file
8428         * tests/test-argp-2.sh: New file
8429
8430 2006-01-21  Sergey Poznyakoff  <gray@gnu.org.ua>
8431
8432         * lib/argp-help.c (usage_long_opt): Do not print DOC options.
8433         (__argp_base_name): Removed
8434         * lib/argp-namefrob.h (__argp_basename): Removed definition. Was a
8435         typo.
8436         (__argp_base_name): Provide macro definition or extern declaration
8437         depending on the configuration
8438
8439 2006-01-20  Simon Josefsson  <jas@extundo.com>
8440
8441         * modules/inet_ntop (Depends-on): Depend on sys_socket.
8442
8443 2006-01-20  Simon Josefsson  <jas@extundo.com>
8444
8445         * lib/inet_ntop.h: Unconditionally include sys/socket.h.
8446
8447 2006-01-20  Paul Eggert  <eggert@cs.ucla.edu>
8448
8449         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Use -Wl,-z,ignore
8450         rather than -Xlinker -z -Xlinker ignore, as it's more portable.
8451         Suggested by Bruno Haible.
8452
8453 2006-01-20  Karl Berry  <karl@gnu.org>
8454
8455         * config/srclist.txt (argp-fmtstream.h, localcharset.c): comment out
8456         until changes propagate, I guess.
8457
8458 2006-01-19  Simon Josefsson  <jas@extundo.com>
8459
8460         * m4/socklen.m4: Look in ws2tcpip.h too, for mingw32.
8461
8462 2006-01-19  Simon Josefsson  <jas@extundo.com>
8463
8464         * lib/socket_.h: Map SHUT_RD, SHUT_WR, SHUT_RDWR correctly.
8465
8466 2006-01-19  Simon Josefsson  <jas@extundo.com>
8467
8468         * gnulib-tool: Set check_PROGRAMS.
8469
8470         * modules/arcfour-tests, modules/arctwo-tests, modules/crc-tests,
8471         modules/des-tests, modules/gc-arcfour-tests,
8472         modules/gc-arctwo-tests, modules/gc-des-tests,
8473         modules/gc-hmac-md5-tests, modules/gc-hmac-sha1-tests,
8474         modules/gc-md2-tests, modules/gc-md4-tests, modules/gc-md5-tests,
8475         modules/gc-pbkdf2-sha1-tests, modules/gc-rijndael-tests,
8476         modules/gc-sha1-tests, modules/gc-tests, modules/hmac-md5-tests,
8477         modules/hmac-sha1-tests, modules/md2-tests, modules/md4-tests,
8478         modules/md5-tests, modules/readline, modules/rijndael-tests: Use
8479         check_PROGRAMS instead of noinst_PROGRAMS to be able to remove
8480         test_*_SOURCES.
8481
8482 2006-01-18  Simon Josefsson  <jas@extundo.com>
8483
8484         * modules/socklen (Depends-on): Depend on sys_socket.
8485
8486 2006-01-18  Simon Josefsson  <jas@extundo.com>
8487
8488         * modules/arcfour-tests, modules/arctwo-tests, modules/crc-tests,
8489         modules/des-tests, modules/gc-arcfour-tests,
8490         modules/gc-arctwo-tests, modules/gc-des-tests,
8491         modules/gc-hmac-md5-tests, modules/gc-hmac-sha1-tests,
8492         modules/gc-md2-tests, modules/gc-md4-tests, modules/gc-md5-tests,
8493         modules/gc-pbkdf2-sha1-tests, modules/gc-rijndael-tests,
8494         modules/gc-sha1-tests, modules/gc-tests, modules/hmac-md5-tests,
8495         modules/hmac-sha1-tests, modules/md2-tests, modules/md4-tests,
8496         modules/md5-tests, modules/readline, modules/rijndael-tests: Add
8497         $(EXEEXT) to automake TESTS variable, for mingw32.
8498
8499 2006-01-17  Simon Josefsson  <jas@extundo.com>
8500
8501         * modules/socklen (Include): Need sys/socket.h.
8502
8503 2006-01-17  Bruno Haible  <bruno@clisp.org>
8504
8505         * modules/ssize_t (Include): Add <sys/types.h>.
8506
8507 2006-01-16  Paul Eggert  <eggert@cs.ucla.edu>
8508
8509         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Don't use ldd, as
8510         it's not portable and it doesn't work with cross-compiles.
8511         Problem reported by Bruno Haible.  Fix missing-$ typo in
8512         'test "gl_cv_ignore_unused_libraries" ...' that prevented
8513         -zignore from being used with Sun's C compiler.
8514
8515 2006-01-12  Simon Josefsson  <jas@extundo.com>
8516
8517         * lib/base64.c: Fix warning, reported by Bruno Haible
8518         <bruno@clisp.org> and patch by Paul Eggert <eggert@CS.UCLA.EDU>.
8519
8520 2006-01-12  Bruno Haible  <bruno@clisp.org>
8521
8522         * modules/ldd: New file.
8523         * build-aux/ldd.sh.in: New file.
8524         * MODULES.html.sh (Support for building libraries and executables): Add
8525         ldd.
8526
8527 2006-01-12  Bruno Haible  <bruno@clisp.org>
8528
8529         * m4/ldd.m4: New file.
8530
8531 2006-01-12  Bruno Haible  <bruno@clisp.org>
8532
8533         * gnulib-tool (func_import, func_create_testdir): Don't go into an
8534         endless loop while replacing $auxdir with build-aux.
8535
8536 2006-01-11  Simon Josefsson  <jas@extundo.com>
8537
8538         * lib/stdint_.h (SIZE_MAX): Add missing (.
8539
8540 2006-01-11  Paul Eggert  <eggert@cs.ucla.edu>
8541
8542         Sync from coreutils.
8543         * lib/md5.c: Fix commentary typos.
8544         (alignof, UNALIGNED_P): No need for a GCC-specific version.
8545         * lib/md5.h (__attribute__): Remove; unused.
8546         * lib/sha1.c: Fix commentary to match md5 better.
8547         * lib/sha1.h (struct sha1_ctx): Use a word buffer, not a byte buffer,
8548         so that we don't need to worry about alignment.  All uses changed.
8549         This merges the 2005-10-28 md5 change into sha1.
8550
8551 2006-01-11  Jim Meyering  <jim@meyering.net>
8552
8553         Sync from coreutils.
8554         * lib/md5.c (OP): Fix spacing.
8555
8556 2006-01-11  Bruno Haible  <bruno@clisp.org>
8557
8558         Ensure automatic ordering between gl_LOCK and gl_ARGP.
8559         * m4/lock.m4 (gl_LOCK_BODY): Renamed from gl_LOCK.
8560         (gl_LOCK): New macro, requiring gl_LOCK_BODY.
8561
8562 2006-01-11  Bruno Haible  <bruno@clisp.org>
8563
8564         Ensure automatic ordering between gl_LOCK and gl_ARGP.
8565         * gnulib-tool (func_import, func_create_testdir): Put gl_LOCK into
8566         the "early" section as well.
8567
8568 2006-01-11  Bruno Haible  <bruno@clisp.org>
8569
8570         Avoid "ar: no archive members specified" error on MacOS X.
8571         * gnulib-tool (func_modules_add_dummy): New function.
8572         (func_import, func_create_testdir): Invoke it.
8573
8574 2006-01-11  Bruno Haible  <bruno@clisp.org>
8575
8576         * gnulib-tool (func_import, func_create_testdir): Replace build-aux
8577         with $auxdir in AC_CONFIG_FILES statements.
8578
8579 2006-01-11  Bruno Haible  <bruno@clisp.org>
8580
8581         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
8582         Initialize also noinst_HEADERS to empty.
8583
8584 2006-01-11  Bruno Haible  <bruno@clisp.org>
8585
8586         * gnulib-tool (AUTOMAKEPATH, AUTOCONF, ACLOCAL, AUTOMAKE): New
8587         variables.
8588         (func_create_megatestdir): Call aclocal, autoconf, automake here, not
8589         autoreconf.
8590
8591 2006-01-11  Bruno Haible  <bruno@clisp.org>
8592
8593         * gnulib-tool (AUTOCONF, ACLOCAL, AUTOMAKE, AUTORECONF): Make
8594         overridable by the user.
8595         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
8596
8597 2006-01-10  Simon Josefsson  <jas@extundo.com>
8598
8599         * modules/sys_socket: New file.
8600
8601 2006-01-10  Simon Josefsson  <jas@extundo.com>
8602
8603         * m4/sys_socket_h.m4: New file.
8604
8605 2006-01-10  Simon Josefsson  <jas@extundo.com>
8606
8607         * lib/socket_.h: New file.
8608
8609 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
8610
8611         * modules/readutmp (Maintainer): Add myself.
8612
8613 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
8614
8615         * m4/memcoll.m4 (gl_MEMCOLL): Don't require AC_FUNC_MEMCMP, undoing
8616         the 2002-12-31 change.  Problem and fix reported by Bruno Haible.
8617         People who are still concerned with buggy memcmp implementations
8618         can invoke gl_FUNC_MEMCMP themselves.
8619
8620 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
8621
8622         * lib/regex_internal.h (BITSET_WORD_BITS):
8623         Work around a bug in 64-bit PGC (before version 6.1-2), where the
8624         preprocessor mishandles large unsigned values as if they were signed.
8625         Problem reported by Claudio Fontana in
8626         <http://lists.gnu.org/archive/html/bug-gnulib/2005-12/msg00061.html>.
8627
8628 2006-01-10  Jim Meyering  <jim@meyering.net>
8629
8630         Avoid the double-free (first in fts_read, second in fts_close) that
8631         would occur when an `active' directory is made inaccessible (e.g.,
8632         via chmod a-x) during a traversal.
8633         * lib/fts.c (fts_read): After a failed fchdir, update sp->fts_cur
8634         before returning.  Reproduce this failure by
8635         mkdir -p a/b; cd a; chmod a-x . b
8636         Reported by Stavros Passas.
8637
8638         Sync from coreutils.
8639         * lib/sha1.c: Tweak grammar in a comment.
8640
8641 2006-01-10  Jim Meyering  <jim@meyering.net>
8642
8643         * m4/fpending.m4: Also include <stdio.h>, for Dragonfly.
8644         Patch by Joerg Sonnenberger.
8645
8646 2006-01-10  Bruno Haible  <bruno@clisp.org>
8647
8648         * modules/readutmp: Depend on module free.
8649         * modules/strtok_r: Depend on module restrict.
8650
8651 2006-01-10  Bruno Haible  <bruno@clisp.org>
8652
8653         * modules/gettext (configure.ac): Add an invocation of
8654         AM_GNU_GETTEXT_VERSION. Needed since autoreconf is used by gnulib-tool.
8655
8656 2006-01-10  Bruno Haible  <bruno@clisp.org>
8657
8658         * m4/localcharset.m4 (gl_LOCALCHARSET): Also test for getc_unlocked.
8659         Reported by Werner Lemberg <wl@gnu.org>.
8660
8661 2006-01-10  Bruno Haible  <bruno@clisp.org>
8662
8663         * lib/localcharset.c: Update from GNU gettext.
8664
8665 2006-01-10  Bruno Haible  <bruno@clisp.org>
8666
8667         * lib/argp.h (__const): Remove macro. Use const instead.
8668         * lib/argp-fmtstream.h (__const): Likewise.
8669         * lib/glob_.h (__const): Remove macro.
8670         * lib/glob-libc.h: Use const instead of __const.
8671
8672 2006-01-10  Bruno Haible  <bruno@clisp.org>
8673
8674         * gnulib-tool (func_emit_tests_Makefile_am): Emit an empty SUBDIR
8675         variable.
8676         Needed to avoid an automake error regarding the 'gettext' module.
8677
8678 2006-01-09  Simon Josefsson  <jas@extundo.com>
8679
8680         * modules/inet_ntop (Depends-on): Add restrict.
8681
8682 2006-01-09  Simon Josefsson  <jas@extundo.com>
8683
8684         * modules/gc-rijndael-tests (License): Put under LGPL.
8685
8686         * modules/gc-des-tests (License): Likewise.
8687
8688         * modules/gc-arcfour-tests (License): Likewise.
8689
8690         * modules/gc-arctwo-tests (License): Likewise.
8691
8692         * modules/gc-pbkdf2-sha1-tests (License): Likewise.
8693
8694         * modules/gc-hmac-sha1-tests (Files): Likewise.
8695
8696         * modules/gc-hmac-md5-tests (License): Likewise.
8697
8698         * modules/gc-sha1-tests (License): Likewise.
8699
8700         * modules/gc-md5-tests (License): Likewise.
8701
8702         * modules/gc-md4-tests (License): Likewise.
8703
8704         * modules/gc-md2-tests (License): Likewise.
8705
8706         * modules/gc-tests (License): Likewise.
8707
8708         * modules/des-tests (License): Likewise.
8709
8710         * modules/md4-tests (License): Likewise.
8711
8712         * modules/md2-tests (License): Likewise.
8713
8714 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
8715
8716         Sync from coreutils:
8717
8718         * MODULES.html.sh (build_lib): New section, with new lib-ignore module.
8719         * modules/lib-ignore: New file.
8720         * modules/mkdir-p (Files): Add chdir-safer.c, chdir-safer.h, lchmod.h,
8721         chdir-safer.m4, lchmod.m4.
8722         * modules/openat: Add mkdirat.c, openat-priv.h.
8723
8724 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
8725
8726         Sync from coreutils.
8727         * m4/lib-ignore.m4: New file.
8728         * m4/lchmod.m4: New file.
8729
8730 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
8731
8732         Sync from coreutils.
8733         * lib/chdir-long.c (cdb_free): Don't bother trying to open directory
8734         for write access: POSIX says that must fail.
8735         * lib/fts.c (diropen): Likewise.
8736         * lib/save-cwd.c (save_cwd): Likewise.
8737         * lib/chdir-long.c (cdb_free): Open with O_NOCTTY | O_NONBLOCK as
8738         well, for minor improvements on hosts that lack O_DIRECTORY.
8739         * lib/chown.c (rpl_chown) [CHOWN_MODIFIES_SYMLINK]:
8740         Don't try O_WRONLY unless O_RDONLY failed wth EACCES.
8741         Fall back on chown if open failed with EACCES.
8742
8743         * lib/gettime.c (gettime) [!defined OK_TO_USE_1S_CLOCK]:
8744         Report an error at compile-time if only a 1-second nominal clock
8745         resolution is found.
8746
8747         * lib/lchmod.h: New file.
8748         * lib/mkdir-p.c: Include lchmod.h, lchown.h.
8749         (make_dir_parents): Use lchown rather than chown, and
8750         lchmod rather than chmod.
8751
8752         * lib/mountlist.c (ME_DUMMY): "none" and "proc" file systems are
8753         dummies too.  Problem with "none" reported by Bob Proulx.  Problem with
8754         "proc" reported by n0dalus.
8755
8756         * lib/mountlist.c: Include <limits.h>.
8757         (dev_from_mount_options)
8758         [defined MOUNTED_GETMNTENT1 || defined MOUNTED_GETMNTENT2]:
8759         New function.  It no longer assumes "dev=" has the System V meaning
8760         on Linux (since it doesn't).  It also parses "dev=" more carefully.
8761         (read_file_system_list)
8762         [defined MOUNTED_GETMNTENT1 || defined MOUNTED_GETMNTENT2]: Use it.
8763         MOUNTED_GETMNTENT2 is new here; the code didn't used to look for
8764         dev= in that case.
8765
8766         * lib/posixtm.h (PDS_PRE_2000): New macro.
8767         * lib/posixtm.c (year): Arg is now syntax_bits rather than
8768         allow_century.  All usages changed.  Reject dates outside the range
8769         1969-1999 if PDS_PRE_2000 is used.
8770
8771 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
8772
8773         Sync from coreutils.
8774         * doc/getdate.texi (General date syntax): Invalid dates are rejected.
8775         (Time of day items): Mention the possibility of leap seconds.
8776         Problem reported by Dr. David Alan Gilbert.
8777
8778 2006-01-09  Jim Meyering  <jim@meyering.net>
8779
8780         Sync from coreutils.
8781
8782         * lib/version-etc.c (COPYRIGHT_YEAR): Update to 2006.
8783
8784         * lib/chdir-safer.h, lib/chdir-safer.c: New files.
8785
8786         * lib/modechange.c (mode_compile): Reject an invalid mode string
8787         that starts with an octal digit.  From Andreas Gruenbacher.
8788
8789         * lib/openat.c: Include "fcntl--.h" and "unistd--.h", to map open
8790         and dup to open_safer and dup_safer, respectively.
8791         (openat_permissive): Fix typo in comment.
8792
8793         * lib/openat.c: Don't include <stdlib.h>, <unistd.h>, <fcntl.h>,
8794         "gettext.h"; either no longer needed or are guaranteed by openat.h.
8795         (_): Remove; no longer needed.
8796         (openat): Renamed from rpl_openat; no need for rpl_openat
8797         since openat.h renames openat for us.
8798         Replace most of the body with a call to openat_permissive,
8799         to avoid duplicate code.
8800         Port to (probably hypothetical) environments were mode_t is
8801         wider than int.
8802         (openat_permissive): Require mode arg, so that we can check
8803         types better.  Put it just after flags.  Change cwd failure
8804         indicator from pointer-to-bool to pointer-to-errno-value.
8805         All callers changed.
8806         Invoke openat_save_fail and/or openat_restore_fail if
8807         cwd_errno is null, so that openat can call us.
8808         (openat_permissive, fdopendir, fstatat, unlinkat):
8809         Simplify errno handling to avoid some duplicate code,
8810         as it's OK to set errno on success.
8811         * lib/openat.h: Revamp code so that function macros depend on
8812         __OPENAT_PREFIX only, not also on AT_FDCWD.
8813         (openat_ro): Remove.  Caller changed to use openat_permissive.
8814         (openat_permissive): Now a macro, if not a function.
8815         (openat_restore_fail, openat_save_fail): Now always functions,
8816         since mkdirat needs them even if __OPENAT_PREFIX is defined.
8817
8818         * lib/openat-priv.h: New file, defining macros used by mkdirat.c
8819         and openat.c.
8820         * lib/mkdirat.c: Include openat-priv.h.
8821         Remove definitions of macros defined therein.
8822         * lib/openat.c: Likewise.
8823
8824         * lib/mkdirat.c (mkdirat): New file and function.
8825         * lib/openat.h (mkdirat): Declare.
8826
8827         * lib/openat.c (fdopendir): Don't change errno when returning non-NULL.
8828
8829         * lib/openat.h (openat_permissive): Declare.
8830         (openat_ro): Define.
8831
8832         * lib/openat.c (EXPECTED_ERRNO): New macro.
8833         (openat_permissive): New function -- used in remove.c rewrite.
8834         (all functions): Set errno just before returning, only if there
8835         was an actual failure.
8836         Use EXPECTED_ERRNO rather than comparing against only ENOTDIR.
8837
8838         Emulate openat-family functions using Linux's procfs, if possible.
8839         Idea and some code based on Ulrich Drepper's glibc changes.
8840
8841         * lib/openat.c: (BUILD_PROC_NAME): New macro.
8842         Include <stdio.h>, <string.h>, "alloca.h" and "intprops.h".
8843         (rpl_openat): Emulate by trying to open /proc/self/fd/%d/%s,
8844         before falling back on save_cwd and restore_cwd.
8845         (fdopendir, fstatat, unlinkat): Likewise.
8846
8847         * lib/openat.c (fstatat, unlinkat): Perform the syscall directly,
8848         skipping the save_cwd...restore_cwd overhead, if FILE is absolute.
8849
8850         * lib/openat.c (rpl_openat): Use the promoted type (int), not mode_t,
8851         as second argument to va_arg.  Otherwise, some versions of gcc
8852         warn that `if this code is reached, the program will abort'.
8853
8854 2006-01-09  Jim Meyering  <jim@meyering.net>
8855
8856         Sync from coreutils.
8857         * m4/openat.m4 (gl_FUNC_OPENAT): Require and compile mkdirat.c.
8858         Require openat-priv.h.
8859
8860 2006-01-09  Bruno Haible  <bruno@clisp.org>
8861
8862         * modules/strnlen (Include): Use strnlen.h.
8863
8864 2006-01-09  Bruno Haible  <bruno@clisp.org>
8865
8866         * m4/stdint.m4 (gl_STDINT_H): Also test for <sys/bitypes.h>.
8867
8868 2006-01-09  Bruno Haible  <bruno@clisp.org>
8869
8870         * lib/sysexit_.h (EX_OK): New macro.
8871         Suggested by Martin Lambers <marlam@marlam.de>.
8872
8873 2006-01-09  Bruno Haible  <bruno@clisp.org>
8874
8875         * lib/stdint_.h: On Linux libc4 and libc5, include <sys/bitypes.h> and
8876         don't define _STDINT_H_NEED_SIGNED_INT_TYPES.
8877
8878 2006-01-09  Bruno Haible  <bruno@clisp.org>
8879
8880         * lib/stdint_.h (SIZE_MAX): Write the value without involving negative
8881         numbers.
8882
8883 2006-01-09  Bruno Haible  <bruno@clisp.org>
8884
8885         * lib/javacomp.sh.in: Move to ../build-aux/javacomp.sh.in.
8886         * lib/javaexec.sh.in: Move to ../build-aux/javaexec.sh.in.
8887         * lib/csharpcomp.sh.in: Move to ../build-aux/csharpcomp.sh.in.
8888         * lib/csharpexec.sh.in: Move to ../build-aux/csharpexec.sh.in.
8889
8890 2006-01-09  Bruno Haible  <bruno@clisp.org>
8891
8892         * build-aux/javacomp.sh.in: New file, moved from lib/.
8893         * modules/javacomp-script (Files): Update.
8894         (configure.ac): Add AC_CONFIG_FILES invocation.
8895         (EXTRA_DIST): Remove variable.
8896
8897         * build-aux/javaexec.sh.in: New file, moved from lib/.
8898         * modules/javaexec (Files): Update.
8899         (configure.ac): Add AC_CONFIG_FILES invocation.
8900         (EXTRA_DIST): Remove javaexec.sh.in.
8901
8902         * build-aux/csharpcomp.sh.in: New file, moved from lib/.
8903         * modules/csharpcomp-script (Files): Update.
8904         (configure.ac): Add AC_CONFIG_FILES invocation.
8905         (EXTRA_DIST): Remove variable.
8906
8907         * build-aux/csharpexec.sh.in: New file, moved from lib/.
8908         * modules/csharpexec (Files): Update.
8909         (configure.ac): Add AC_CONFIG_FILES invocation.
8910         (EXTRA_DIST): Remove csharpexec.sh.in.
8911
8912 2006-01-09  Andreas Gruenbacher  <agruen@suse.de>
8913
8914         Sync from coreutils.
8915
8916         Add POSIX ACL support
8917         * lib/acl.h (copy_acl, set_acl): Add declarations.
8918         * lib/acl.c (acl_entries): Add fallback implementation for POSIX ACL
8919         systems other than Linux.
8920         (chmod_or_fchmod): New function: use fchmod when possible,
8921         and chmod otherwise.
8922         (file_has_acl): Add a POSIX ACL implementation, with a
8923         Linux-specific subcase.
8924         (copy_acl): Add: copy an acl and S_ISUID, S_ISGID, and
8925         S_ISVTX from one file to another.  Fall back to fchmod/chmod when
8926         acls are unsupported.
8927         (set_acl): Add: set a file's acl and S_ISUID, S_ISGID, and
8928         S_ISVTX to a defined value.  Fall back to fchmod/chmod when acls
8929         are unsupported.
8930
8931 2006-01-09  Andreas Gruenbacher  <agruen@suse.de>
8932
8933         Sync from coreutils.
8934         * m4/acl.m4 (AC_FUNC_ACL): Add POSIX ACL and Linux-specific acl tests.
8935
8936 2006-01-07  Bruno Haible  <bruno@clisp.org>
8937
8938         * gnulib-tool (func_import): Add an AC_PROG_RANLIB dependency to
8939         gl_EARLY.
8940
8941 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
8942
8943         * lib/strftime.c (tzname): Don't declare if it is already #defined.
8944         Problem reported for Mingw by Mark Junker.
8945
8946 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
8947
8948         * README: Gnulib normally doesn't generate a tarball.
8949
8950 2006-01-03  Paul Eggert  <eggert@cs.ucla.edu>
8951
8952         * lib/xtime.h (xtime_make, xtime_nonnegative_nsec, xtime_nsec): Use
8953         long int, not int, for nanosecond counts, so that people who are
8954         used to POSIX struct timespec won't be surprised.  Reported by Jim
8955         Meyering.
8956
8957 2005-12-28  Bruno Haible  <bruno@clisp.org>
8958
8959         * build-aux/config.rpath: Update from GNU gettext.
8960
8961 2005-12-16  Jim Meyering  <jim@meyering.net>
8962
8963         * modules/fprintftime: New module.
8964         * MODULES.html.sh (Date and time <time.h>): Add fprintftime.
8965
8966 2005-12-16  Jim Meyering  <jim@meyering.net>
8967
8968         * m4/fprintftime.m4: New file.
8969
8970 2005-12-16  Jim Meyering  <jim@meyering.net>
8971
8972         * lib/fprintftime.c, lib/fprintftime.h: New files.
8973
8974 2005-12-15  Simon Josefsson  <jas@extundo.com>
8975
8976         * modules/socklen (configure.ac): Fix M4 macro name, to align with
8977         new m4/socklen.m4.
8978
8979 2005-12-10  Sergey Poznyakoff  <gray@gnu.org.ua>
8980
8981         * m4/argp.m4: Define HAVE_DECL_PROGRAM_INVOCATION_NAME and
8982         HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME
8983
8984 2005-12-10  Sergey Poznyakoff  <gray@gnu.org.ua>
8985
8986         * lib/argp-fmtstream.c (__argp_fmtstream_update): Fix coredump
8987         * lib/argp-help.c (fill_in_uparams): Check if the constructed
8988         struct uparams is valid. Fall back to the default values if it is
8989         not.
8990
8991 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
8992
8993         * modules/argp (Files): Add argp-pin.c
8994         (Depends-on): dirname
8995         (lib_SOURCES): Add argp-pin.c
8996
8997 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
8998
8999         * m4/argp.m4:  Check if program_invocation_name and
9000         program_invocation_short_name are declared and define appropriate
9001         macros if they are not.
9002
9003 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
9004
9005         * lib/argp-help.c (__argp_base_name): New function
9006         (__argp_short_program_name): Rewrite using __argp_base_name
9007         * lib/argp-namefrob.h: Define program_invocation_name and
9008         program_invocation_short_name if requested
9009         (__argp_base_name): Add prototype
9010         * lib/argp-parse.c (argp_def): Use gettext wrappers
9011         (argp_default_parser): Use __argp_base_name
9012         * lib/argp-pin.c: New file. Defines program_invocation_name and
9013         program_invocation_short_name on systems that lack them.
9014
9015 2005-12-07  Paul Eggert  <eggert@cs.ucla.edu>
9016
9017         * m4/stat-time.m4 (gl_STAT_TIME): Add check for
9018         TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC, to fix IRIX 5.3
9019         porting problem reported by Georg Schwarz in
9020         <http://lists.gnu.org/archive/html/bug-coreutils/2005-12/msg00083.html>.
9021
9022 2005-12-07  Paul Eggert  <eggert@cs.ucla.edu>
9023
9024         * lib/stat-time.h (STATE_TIMESPEC, STAT_TIMESPEC_NS): Add check for
9025         TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC, to fix IRIX 5.3
9026         porting problem reported by Georg Schwarz in
9027         <http://lists.gnu.org/archive/html/bug-coreutils/2005-12/msg00083.html>.
9028
9029 2005-12-05  Bruno Haible  <bruno@clisp.org>
9030
9031         * lib/csharpcomp.sh.in (options_csc): For -l option, add a .dll suffix.
9032         * lib/csharpcomp.c (compile_csharp_using_sscli): Likewise.
9033         Reported by Mark Junker <mjscod@gmx.de>.
9034
9035 2005-12-02  Paul Eggert  <eggert@cs.ucla.edu>
9036
9037         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Renamed from gl_SOCKLEN_T.
9038         Use implementation from Albert Chin, with some
9039         comments/corrections by Stepan Kasal and myself.
9040
9041 2005-12-02  Bruno Haible  <bruno@clisp.org>
9042
9043         * gnulib-tool (func_import): Accept GPLed build tool modules when
9044         --lgpl is given.
9045         * modules/csharpcomp-script: New file.
9046         * modules/csharpcomp: Depend on it.
9047         * modules/javacomp-script: New file.
9048         * modules/javacomp: Depend on it.
9049         Suggested by Simon Josefsson.
9050
9051 2005-12-01  Paul Eggert  <eggert@cs.ucla.edu>
9052
9053         * m4/regex.m4 (gl_REGEX): Check whether off_t can be used in a switch
9054         statement, to work around an HP-UX 10.20 compiler bug reported by
9055         Peter O'Gorman.
9056
9057 2005-11-29  Paul Eggert  <eggert@cs.ucla.edu>
9058
9059         * modules/savedir (Depends-on): Add openat.
9060
9061 2005-11-29  Paul Eggert  <eggert@cs.ucla.edu>
9062
9063         * lib/stdint_.h (intmax_t) [defined intmax_t]: Do not declare.
9064         (uintmax_t) [defined uintmax_t]: Do not declare.
9065         (SIZE_MAX) [defined SIZE_MAX]: Do not define.
9066         This works around a problem if intmax_t.m4 and/or uintmax_t.m4
9067         and/or size_max.m4 are also used.  Problem reported by Mark D. Baushke.
9068         (SIZE_MAX): Define to ((size_t) -1), not (~(size_t)0), for the
9069         sake of portability to weird hosts that C allows (though we don't
9070         know of any practical examples).
9071
9072         * lib/savedir.h (fdsavedir): New decl.
9073         * lib/savedir.c (fdsavedir, savedirstream): New functions; the latter
9074         contains most of the former guts of savedir.
9075         (savedir): Use savedirstream.
9076         Include "openat.h".
9077
9078 2005-11-25  Paul Eggert  <eggert@cs.ucla.edu>
9079
9080         * modules/obstack (Files): Add m4/ulonglong.m4.
9081         Problem reported by Davide Angelocola.
9082
9083 2005-11-15  Paul Eggert  <eggert@cs.ucla.edu>
9084
9085         * lib/xstrtod.c: Don't bother with #pragma STDC FENV_ACCESS ON, as
9086         coreutils no longer futzes with rounding modes.
9087
9088 2005-11-14  Jim Meyering  <jim@meyering.net>
9089
9090         * lib/mkstemp-safer.c: Include <config.h>, required for possible
9091         replacement of mkstemp.
9092
9093 2005-11-10  Simon Josefsson  <jas@extundo.com>
9094
9095         * lib/readline.c: Remove EOL.
9096
9097 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
9098
9099         * modules/gethrxtime (Depends-on): Add gettime.
9100
9101 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
9102
9103         * m4/gethrxtime.m4 (gl_PREREQ_GETHRXTIME): Don't require AC_HEADER_TIME
9104         or gettimeofday; no longer needed.
9105
9106 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
9107
9108         * lib/gethrxtime.c: Include "timespec.h" rather than the sys/time /
9109         time business.
9110         (gethrxtime) [! (HAVE_NANOUPTIME
9111         || (defined CLOCK_MONOTONIC && HAVE_CLOCK_GETTIME)
9112         || HAVE_MICROUPTIME)]: Fall back on gettime rather than rolling
9113         our own approximation.
9114
9115 2005-11-08  Eric Blake  <ebb9@byu.net>
9116
9117         * lib/inet_ntop.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
9118
9119 2005-11-08  Eric Blake  <ebb9@byu.net>
9120
9121         * lib/getaddrinfo.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
9122
9123 2005-11-04  Bruno Haible  <bruno@clisp.org>
9124
9125         * gnulib-tool: Implement --update mode.
9126
9127 2005-10-30  Paul Eggert  <eggert@cs.ucla.edu>
9128
9129         Fix porting problem reported by Theodoros V. Kalamatianos.
9130         * lib/utimens.c (futimens) [HAVE_WORKING_UTIMES && HAVE_FUTIMES]:
9131         Don't assume that futimes failing means we must fail.
9132
9133 2005-10-30  Paul Eggert  <eggert@cs.ucla.edu>
9134
9135         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Revamp wording and local
9136         variables to suggest the intended function of the PATH_MAX check.
9137
9138 2005-10-30  Kean Johnston  <jkj@sco.com>
9139
9140         Trivial changes to support SCO systems.
9141         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Check for MAXPATHLEN as well
9142         as PATH_MAX.
9143         * m4/fpending.m4 (gl_FUNC_FPENDING): Correct check for SCO systems,
9144         where __ptr is null when no I/O is pending.
9145
9146 2005-10-29  Paul Eggert  <eggert@cs.ucla.edu>
9147
9148         * lib/getcwd.c (__getcwd): Don't assume that system calls after readdir
9149         leave errno alone.  Problem reported by Dmitry V. Levin.
9150
9151 2005-10-28  Simon Josefsson  <jas@extundo.com>
9152
9153         * tests/test-gc-md4.c, tests/test-gc-md5.c, tests/test-gc-sha1.c:
9154         Test more.
9155
9156         * tests/test-gc-md2.c, tests/test-md2.c: New files.
9157
9158         * modules/md2, modules/md2-tests: New files.
9159
9160 2005-10-28  Simon Josefsson  <jas@extundo.com>
9161
9162         * m4/inet_ntop.m4: More tests.
9163
9164         * m4/gc-md2.m4, md2.m4: New file.
9165
9166 2005-10-28  Simon Josefsson  <jas@extundo.com>
9167
9168         * lib/inet_ntop.h, inet_ntop.c: Make it work under mingw32: Add
9169         "restrict" keywords, as per POSIX.  Protect the function
9170         declaration around HAVE_DECL_INET_NTOP rather than HAVE_INET_NTOP.
9171         Don't use K&R prototypes.  Check the sprintf return values.
9172         Re-define EAFNOSUPPORT if not present.  Indent.
9173
9174         * lib/md5.h, md5.c: Simplify buffer handling visavi alignment,
9175         suggested by Bruno Haible <bruno@clisp.org>.
9176
9177         * lib/gc-gnulib.c, gc-libgcrypt.c: Check calloc return value.
9178
9179         * lib/gc.h: Add MD2 and RMD160 length defines.  Add prototypes.
9180
9181         * lib/gc-libgcrypt.c: Add MD2 (which is not available through
9182         libgcrypt).
9183
9184         * lib/gc-gnulib.c: Add MD2.  Implement gc_hash_* API.
9185
9186         * lib/md2.h, lib/md2.c: New files.
9187
9188 2005-10-28  Paul Eggert  <eggert@cs.ucla.edu>
9189
9190         * lib/savedir.c (savedir): Don't assume that xrealloc etc. leave
9191         errno alone.  Problem reported by Frederic Jolliton.
9192
9193 2005-10-27  Paul Eggert  <eggert@cs.ucla.edu>
9194
9195         * modules/verify (License): Change from GPL to LGPL.  This is a
9196         tiny module and there are apparently near-equivalents that are
9197         under the BSD license.
9198
9199 2005-10-24  Simon Josefsson  <jas@extundo.com>
9200
9201         * modules/sha1: Relicense to LGPL.
9202
9203 2005-10-24  Simon Josefsson  <jas@extundo.com>
9204
9205         * lib/md4.h: Shrink buffer size, now that we changed the type.
9206
9207 2005-10-23  Simon Josefsson  <jas@extundo.com>
9208
9209         * gnulib-tool (func_import): Fix --tests-base.
9210
9211 2005-10-22  Simon Josefsson  <jas@extundo.com>
9212
9213         * modules/arcfour (Depends-on): Need stdint.
9214
9215 2005-10-22  Simon Josefsson  <jas@extundo.com>
9216
9217         * m4/gc.m4: Don't be fooled by --disable-*random-device parameters,
9218         suggested by Bruno Haible <bruno@clisp.org>.  Fix error messages.
9219
9220 2005-10-22  Simon Josefsson  <jas@extundo.com>
9221
9222         * lib/md4.h, md4.c: Simplify buffer handling visavi alignment,
9223         suggested by Bruno Haible <bruno@clisp.org>.
9224
9225 2005-10-22  Simon Josefsson  <jas@extundo.com>
9226
9227         * lib/crc.h: Include stddef.h, for size_t.
9228
9229 2005-10-22  Simon Josefsson  <jas@extundo.com>
9230
9231         * lib/arcfour.h, arcfour.c: Use fixed size indices in the
9232         arcfour_context struct (simplify test vector testing in GNU
9233         Shishi).
9234
9235 2005-10-21  Simon Josefsson  <jas@extundo.com>
9236
9237         * modules/des, modules/des-tests: New files.
9238
9239         * modules/gc-des, modules/gc-des-tests: New files.
9240
9241         * tests/test-des.c, tests/test-gc-des.c: New file.
9242
9243 2005-10-21  Simon Josefsson  <jas@extundo.com>
9244
9245         * modules/arctwo, modules/arctwo-tests: New files.
9246
9247         * tests/test-arctwo.c: New file.
9248
9249         * modules/gc-arctwo, modules/gc-arctwo-tests: New files.
9250
9251         * tests/test-gc-arctwo.c: New file.
9252
9253 2005-10-21  Simon Josefsson  <jas@extundo.com>
9254
9255         * m4/gc.m4: Don't use libgcrypt if gcrypt.h isn't found, suggested by
9256         Bruno Haible <bruno@clisp.org>.
9257
9258         * m4/gc-des.m4: New file.
9259
9260 2005-10-21  Simon Josefsson  <jas@extundo.com>
9261
9262         * m4/arctwo.m4: New file.
9263
9264         * m4/gc-arctwo.m4: New file.
9265
9266 2005-10-21  Simon Josefsson  <jas@extundo.com>
9267
9268         * lib/rijndael-api-fst.c: Fix bugs in CBC mode for more than one
9269         block.
9270
9271 2005-10-21  Simon Josefsson  <jas@extundo.com>
9272
9273         * lib/hmac-md5.c (hmac_md5): Add comments, suggested by Bruno Haible
9274         <bruno@clisp.org>.
9275
9276         * lib/hmac-sha1.c (hmac_sha1): Likewise.
9277
9278         * lib/crc.c (crc32_update): Actually use crc parameter, suggested by
9279         Bruno Haible <bruno@clisp.org>.
9280
9281         * lib/crc.h: Include stdint.h directly, suggested by Bruno Haible
9282         <bruno@clisp.org>.
9283
9284 2005-10-21  Simon Josefsson  <jas@extundo.com>
9285
9286         * lib/gc-libgcrypt.c (gc_cipher_open): Handle ECB.
9287
9288 2005-10-21  Simon Josefsson  <jas@extundo.com>
9289
9290         * lib/gc-gnulib.c: Support ARCTWO in CBC mode.
9291
9292 2005-10-21  Simon Josefsson  <jas@extundo.com>
9293
9294         * lib/des.h, lib/des.c: New files.
9295
9296         * lib/gc-gnulib.c: Support DES.c
9297
9298 2005-10-21  Simon Josefsson  <jas@extundo.com>
9299
9300         * lib/arctwo.h, lib/arctwo.c: New files.
9301
9302         * lib/gc-gnulib.c: Support ARCTWO.
9303
9304 2005-10-21  Simon Josefsson  <jas@extundo.com>
9305
9306         * lib/arctwo.h (arctwo_setkey): Protect variable in CPP macro,
9307         suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
9308
9309 2005-10-21  Simon Josefsson  <jas@extundo.com>
9310
9311         * gnulib-tool (func_import, func_create_testdir): Define automake
9312         conditional GL_COND_LIBTOOL if libtool is used (to be used by modules
9313         Makefile.am snippet),
9314         suggested by Bruno Haible <bruno@clisp.org>.
9315
9316         * modules/gc (Makefile.am): Use it.
9317
9318 2005-10-21  Bruno Haible  <bruno@clisp.org>
9319
9320         * gnulib-tool (func_import, func_create_testdir): Add quoting to last
9321         patch.
9322
9323 2005-10-19  Simon Josefsson  <jas@extundo.com>
9324
9325         * tests/test-gc-rijndael.c: New file.
9326
9327         * modules/gc-rijndael, modules/gc-rijndael-test: New files.
9328
9329 2005-10-19  Simon Josefsson  <jas@extundo.com>
9330
9331         * tests/test-gc-md4.c, tests/test-gc-md5.c: Test gc_hash_buffer
9332         interface too.
9333
9334 2005-10-19  Simon Josefsson  <jas@extundo.com>
9335
9336         * tests/test-gc-arcfour.c: New file.
9337
9338         * modules/gc-arcfour, modules/gc-arcfour-tests: New files.
9339
9340 2005-10-19  Simon Josefsson  <jas@extundo.com>
9341
9342         * modules/gc-md4, modules/gc-md4-tests: New file.
9343
9344         * tests/test-gc-md4.c: New file.
9345
9346 2005-10-19  Simon Josefsson  <jas@extundo.com>
9347
9348         * m4/gc-md4.m4: New file.
9349
9350 2005-10-19  Simon Josefsson  <jas@extundo.com>
9351
9352         * m4/gc-hmac-md5.m4, gc-hmac-sha1.m4, gc-md4.m4,
9353         gc-md5.m4, gc-sha1.m4: Fix typo, suggested by Stepan Kasal
9354         <kasal@ucw.cz>.
9355
9356 2005-10-19  Simon Josefsson  <jas@extundo.com>
9357
9358         * m4/gc-arcfour.m4: New file.
9359
9360         * m4/gc-rijndael.m4: New file.
9361
9362 2005-10-19  Simon Josefsson  <jas@extundo.com>
9363
9364         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Support MD4.
9365
9366 2005-10-19  Simon Josefsson  <jas@extundo.com>
9367
9368         * lib/gc-gnulib.c: Support ARCFOUR.
9369
9370 2005-10-19  Simon Josefsson  <jas@extundo.com>
9371
9372         * lib/gc-gnulib.c: Implement gc_cipher_* API, currently only with AES
9373         support.
9374
9375         * lib/gc.h: Add ECB enum type.
9376
9377         * lib/hmac-md5.c, hmac-sha1.c: Include memxor.h.
9378
9379 2005-10-18  Simon Josefsson  <jas@extundo.com>
9380
9381         * tests/test-md5.c: New file.
9382
9383         * modules/md5-tests: New file.
9384
9385 2005-10-18  Simon Josefsson  <jas@extundo.com>
9386
9387         * tests/test-md4.c: New file.
9388
9389         * modules/md4, modules/md4-tests: New files.
9390
9391 2005-10-18  Simon Josefsson  <jas@extundo.com>
9392
9393         * m4/md4.m4: New file.
9394
9395 2005-10-18  Simon Josefsson  <jas@extundo.com>
9396
9397         * lib/md4.h, lib/md4.c: New files, based on md5.?.
9398
9399 2005-10-17  Stepan Kasal  <kasal@ucw.cz>
9400
9401         * gnulib-tool (func_create_testdir): Omit the second check whether
9402         BUILT_SOURCES in nonempty.
9403
9404 2005-10-17  Simon Josefsson  <jas@extundo.com>
9405
9406         * tests/test-rijndael.c: New file.
9407
9408 2005-10-17  Simon Josefsson  <jas@extundo.com>
9409
9410         * modules/sha1: Depend on stdint instead of md5.
9411
9412         * modules/md5: Depend on stdint, remove uint32_t.
9413
9414 2005-10-17  Simon Josefsson  <jas@extundo.com>
9415
9416         * modules/gc-sha1-tests: New file.
9417
9418         * tests/test-gc-sha1.c: New file.
9419
9420 2005-10-17  Simon Josefsson  <jas@extundo.com>
9421
9422         * m4/md5.m4: Remove call to uint32_t.m4.
9423
9424 2005-10-17  Simon Josefsson  <jas@extundo.com>
9425
9426         * lib/sha1.c: Use uint32_t instead of md5_uint32.t
9427
9428         * lib/sha1.h: Use stdint.h and uint32_t instead of md5_uint32 from
9429         md5.h.
9430
9431         * lib/md5.c: Use uin32_t.  Fix non-gcc UNALIGNED_P macro.
9432
9433         * lib/md5.h: Use stdint.h and uint32_t.  Doc fix.
9434
9435 2005-10-17  Simon Josefsson  <jas@extundo.com>
9436
9437         * lib/gc.h, gc-libgcrypt.c: Add more hash types/functions.
9438
9439 2005-10-17  Simon Josefsson  <jas@extundo.com>
9440
9441         * lib/gc.h, gc-libgcrypt.c: Add ciphers.
9442
9443 2005-10-17  Simon Josefsson  <jas@extundo.com>
9444
9445         * lib/gc-libgcrypt.c (gc_hmac_sha1): Fix assert.
9446
9447         * lib/gc.h (gc_nonce, gc_pseudo_random, gc_random): Add prototypes.
9448
9449 2005-10-17  Bruno Haible  <bruno@clisp.org>
9450
9451         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Change the return statement so
9452         that it can also be used in a test.
9453
9454 2005-10-16  Bruno Haible  <bruno@clisp.org>
9455
9456         * gnulib-tool (func_emit_tests_Makefile_am): Also define
9457         TESTS_ENVIRONMENT, so that individual tests can augment it.
9458
9459         * gnulib-tool (func_create_testdir): Use an intermediate target for
9460         building $(BUILT_SOURCES). Needed because BUILT_SOURCES can contain
9461         macros, like $(ALLOCA_H), which cannot be passed through the command
9462         line.
9463
9464 2005-10-15  Simon Josefsson  <jas@extundo.com>
9465
9466         * modules/rijndael-tests: New file.
9467
9468         * modules/rijndael: New file.
9469
9470 2005-10-15  Simon Josefsson  <jas@extundo.com>
9471
9472         * m4/rijndael.m4: New file.
9473
9474 2005-10-15  Simon Josefsson  <jas@extundo.com>
9475
9476         * lib/rijndael-api-fst.h, lib/rijndael-api-fst.c: New files.
9477
9478         * lib/rijndael-alg-fst.h, lib/rijndael-alg-fst.c: New files.
9479
9480 2005-10-14  Simon Josefsson  <jas@extundo.com>
9481
9482         * tests/test-arcfour.c: New file.
9483
9484         * modules/arcfour, modules/arcfour-tests: New files.
9485
9486 2005-10-14  Simon Josefsson  <jas@extundo.com>
9487
9488         * m4/arcfour.m4: New file.
9489
9490 2005-10-14  Simon Josefsson  <jas@extundo.com>
9491
9492         * lib/arcfour.h, lib/arcfour.c: New files.
9493
9494 2005-10-14  Roland McGrath  <roland@redhat.com>
9495
9496         Import from libc.  [BZ #1331]
9497         * lib/obstack.h [!__STDC__] (obstack_int_grow_fast): Fix misnamed
9498         macro argument.
9499         Reported by Matej Vela <vela@debian.org>.
9500
9501 2005-10-14  Paul Eggert  <eggert@cs.ucla.edu>
9502
9503         * lib/obstack.c [defined _LIBC && defined USE_IN_LIBIO]: Don't
9504         include <wchar.h>; no longer needed.
9505
9506 2005-10-14  Paul Eggert  <eggert@cs.ucla.edu>
9507
9508         * config/srclist.txt: Add glibc bug 321 for obstack.c, obstack.h.
9509
9510 2005-10-14  Jakub Jelinek  <jakub@redhat.com>
9511         and  Ulrich Drepper  <drepper@redhat.com>
9512
9513         Import from libc.
9514         * lib/obstack.c (print_and_abort) [defined _LIBC]: Use __fxprintf
9515         instead of inline stream orientation test and two separate
9516         function calls.  Pay no attention to USE_IN_LIBIO.
9517
9518 2005-10-13  Simon Josefsson  <jas@extundo.com>
9519
9520         * modules/gc-hmac-md5-tests: New file.
9521
9522         * tests/test-gc-hmac-sha1.c: New file.
9523
9524         * tests/test-gc.c (main): Remove MD5 and HMAC-MD5 tests.
9525
9526         * modules/gc-hmac-md5-tests: New file.
9527
9528         * tests/test-gc-md5.c: New file.
9529
9530         * modules/gc-md5-tests: New file.
9531
9532 2005-10-13  Simon Josefsson  <jas@extundo.com>
9533
9534         * lib/gc-pbkdf2-sha1.c (gc_pbkdf2_sha1): Optimize CEIL computation.
9535         Move memory allocation outside of loop.
9536
9537 2005-10-13  Paul Eggert  <eggert@cs.ucla.edu>
9538
9539         * lib/mkdir-p.c (make_dir_parents): Don't report an error if an
9540         intermediate directory is in a read-only file system.  Problem
9541         reported by Eric Blake.
9542
9543 2005-10-13  Oskar Liljeblad  <oskar@osk.mine.nu>
9544
9545         * modules/human (Depends-on): Depend on xstrtoumax, not xstrtol.
9546
9547 2005-10-12  Simon Josefsson  <jas@extundo.com>
9548
9549         * tests/test-hmac-sha1.c: New file.
9550
9551         * modules/hmac-sha1-tests: New file.
9552
9553         * modules/hmac-sha1: New file.
9554
9555 2005-10-12  Simon Josefsson  <jas@extundo.com>
9556
9557         * modules/gc-sha1: New file.
9558
9559 2005-10-12  Simon Josefsson  <jas@extundo.com>
9560
9561         * modules/gc-pbkdf2-sha1, modules/gc-pbkdf2-sha1-tests: New files.
9562
9563         * tests/test-gc-pbkdf2-sha1.c: New file.
9564
9565 2005-10-12  Simon Josefsson  <jas@extundo.com>
9566
9567         * modules/gc-md5, modules/gc-hmac-md5: New files.
9568
9569         * modules/gc (Files): Remove md5, memxor and hmac files.
9570
9571 2005-10-12  Simon Josefsson  <jas@extundo.com>
9572
9573         * m4/gc-pbkdf2-sha1.m4: New file.
9574
9575         * m4/gc-hmac-sha1.m4: New file.
9576
9577         * m4/gc-sha1: New file.
9578
9579         * m4/hmac-sha1.m4: New file.
9580
9581 2005-10-12  Simon Josefsson  <jas@extundo.com>
9582
9583         * m4/gc-md5.m4, m4/gc-hmac-md5.m4: New files.
9584
9585         * m4/gc.m4: Don't call gl_MD5, gl_MEMXOR or gl_HMAC_MD5.
9586
9587 2005-10-12  Simon Josefsson  <jas@extundo.com>
9588
9589         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Use Gc_rc for return types,
9590         suggested by Bruno Haible <bruno@clisp.org>.
9591
9592 2005-10-12  Simon Josefsson  <jas@extundo.com>
9593
9594         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Support SHA-1.
9595
9596 2005-10-12  Simon Josefsson  <jas@extundo.com>
9597
9598         * lib/gc-pbkdf2-sha1.c: New file.
9599
9600         * lib/gc.h: Add gc_pbkdf2_sha1 prototype.
9601
9602 2005-10-12  Simon Josefsson  <jas@extundo.com>
9603
9604         * lib/gc-libgcrypt.c (gc_hmac_sha1): New function.
9605
9606         * lib/gc-gnulib.c (gc_hmac_sha1): New function.
9607
9608 2005-10-12  Simon Josefsson  <jas@extundo.com>
9609
9610         * lib/gc-gnulib.c: Condition MD5 and HMAC-MD5 use on GC_USE_MD5 and
9611         GC_USE_HMAC_MD5, respectively.
9612
9613         * lib/gc-libgcrypt.c (gc_md5): Fix assert call.
9614         (gc_md5): Fix typo.
9615
9616         * lib/gc.h (gc_hash_buffer): Use gc_hash in prototype.
9617
9618         * lib/gc-libgcrypt.c (gc_hash_buffer): Ditto.
9619
9620         * lib/gc-gnulib.c (gc_hash_buffer): Ditto.
9621
9622 2005-10-12  Bruno Haible  <bruno@clisp.org>
9623
9624         * m4/stdbool.m4 (gl_STDBOOL_H): Define as an alias of AM_STDBOOL_H.
9625         Reported by Stepan Kasal <kasal@ucw.cz>.
9626
9627 2005-10-11  Simon Josefsson  <jas@extundo.com>
9628
9629         * tests/test-crc.c: New file.
9630
9631         * modules/crc, modules/crc-tests: New files.
9632
9633 2005-10-11  Simon Josefsson  <jas@extundo.com>
9634
9635         * m4/crc.m4: New file.
9636
9637 2005-10-11  Simon Josefsson  <jas@extundo.com>
9638
9639         * lib/gc.h: Add gc_hash and gc_hash_buffer.
9640
9641         * lib/gc-gnulib.c (gc_hash_buffer): Add.  Reorder #include's.
9642
9643         * lib/gc-libgcrypt.c (gc_hash_buffer): Add.
9644
9645 2005-10-11  Simon Josefsson  <jas@extundo.com>
9646
9647         * lib/crc.h, lib/crc.c: New files.
9648
9649         * lib/gc.h (gc_hash_buffer): Add doc.
9650
9651 2005-10-11  Bruno Haible  <bruno@clisp.org>
9652
9653         * modules/c-strcasestr: New file.
9654         * MODULES.html.sh (String handling <string.h>): Add c-strcasestr.
9655
9656 2005-10-11  Bruno Haible  <bruno@clisp.org>
9657
9658         * modules/c-strcase: New file.
9659         * MODULES.html.sh (String handling <string.h>): Add c-strcase.
9660
9661 2005-10-11  Bruno Haible  <bruno@clisp.org>
9662
9663         * lib/strcasecmp.c: Include limits.h.
9664         (strcasecmp): Avoid integer overflow on exotic platforms.
9665         * lib/strncasecmp.c: Include limits.h.
9666         (strncasecmp): Avoid integer overflow on exotic platforms.
9667         Reported by Paul Eggert.
9668
9669 2005-10-11  Bruno Haible  <bruno@clisp.org>
9670
9671         * lib/c-strcasestr.h: New file, from GNU gettext.
9672         * lib/c-strcasestr.c: New file, from GNU gettext.
9673
9674 2005-10-11  Bruno Haible  <bruno@clisp.org>
9675
9676         * lib/c-strcase.h: New file, from GNU gettext.
9677         * lib/c-strcasecmp.c: New file, from GNU gettext.
9678         * lib/c-strncasecmp.c: New file, from GNU gettext.
9679
9680 2005-10-10  Paul Eggert  <eggert@cs.ucla.edu>
9681
9682         * modules/mempcpy (License): GPL -> LGPL.
9683         * modules/strchrnul (License): Likewise.
9684         * modules/sysexits (License): Likewise.
9685
9686 2005-10-08  Simon Josefsson  <jas@extundo.com>
9687
9688         * config/srclist.txt: Bug 1423 is closed, but 1439 remains.
9689
9690 2005-10-07  Simon Josefsson  <jas@extundo.com>
9691
9692         * m4/memxor.m4: Remove gl_C_RESTRICT call.
9693
9694 2005-10-06  Simon Josefsson  <jas@extundo.com>
9695
9696         * tests/test-hmac-md5.c: New file.
9697
9698         * modules/hmac-md5-tests: New file.
9699
9700         * modules/hmac-md5: New file.
9701
9702 2005-10-06  Simon Josefsson  <jas@extundo.com>
9703
9704         * m4/hmac-md5.m4: New file.
9705
9706         * m4/memxor.m4: Require gl_C_RESTRICT.
9707
9708 2005-10-06  Simon Josefsson  <jas@extundo.com>
9709
9710         * lib/memxor.c (memxor): Avoid casts and warnings.
9711
9712 2005-10-06  Simon Josefsson  <jas@extundo.com>
9713
9714         * lib/hmac-md5.c: New file.
9715
9716         * lib/hmac.h: New file.
9717
9718 2005-10-06  Paul Eggert  <eggert@cs.ucla.edu>
9719
9720         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check that bool
9721         promotes to int, not unsigned int, to catch the AIX 5.3
9722         compiler bug.
9723
9724 2005-10-05  Simon Josefsson  <jas@extundo.com>
9725
9726         * modules/memxor: New file.
9727
9728         * modules/iconv (Files): Move config.rpath to havelib, it is used
9729         there.
9730
9731         * modules/havelib (Files): Add config.rpath.
9732
9733 2005-10-05  Simon Josefsson  <jas@extundo.com>
9734
9735         * m4/memxor.m4: New file.
9736
9737 2005-10-05  Simon Josefsson  <jas@extundo.com>
9738
9739         * lib/memxor.c (memxor): Fix compiler error.
9740
9741         * lib/md5.h (MD5_DIGEST_SIZE, MD5_BLOCK_SIZE): Add, see also
9742         <http://sourceware.org/bugzilla/show_bug.cgi?id=1423>.
9743
9744         * lib/memxor.h, lib/memxor.c: New files.
9745
9746         * lib/getaddrinfo.h: Don't protect sys/types.h with HAVE_SYS_TYPES_H,
9747         we assume all systems have it, suggested by Jim Meyering
9748         <jim@meyering.net>.  Remove HAVE_SYS_SOCKET_H test too, to see if
9749         any systems lack sys/socket.h; mingw32 is known to lack it, but we
9750         don't support it yet anyway.  Also remove HAVE_NETDB_H test, for
9751         same reasons.
9752
9753 2005-10-05  Simon Josefsson  <jas@extundo.com>
9754
9755         * config/srclist.txt: Add glibc bug 1423 for md5.h.
9756
9757 2005-10-05  Paul Eggert  <eggert@cs.ucla.edu>
9758
9759         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Don't check for
9760         sys/socket.h, netdb.h, sys/types.h; the checks areno longer
9761         needed, since the source code now assumes these .h files.
9762
9763 2005-10-05  Derek Price  <derek@ximbiot.com>
9764
9765         * lib/getdelim.c (SIZE_MAX): New macro, if not already defined.
9766
9767 2005-10-05  Bruno Haible  <bruno@clisp.org>
9768
9769         * modules/stdint (License): Change to LGPL.
9770
9771 2005-10-04  Simon Josefsson  <jas@extundo.com>
9772
9773         * lib/getaddrinfo.h: Move sys/types.h include first, reported by "Mark
9774         D. Baushke" <mdb@gnu.org>.
9775
9776 2005-10-04  Bruno Haible  <bruno@clisp.org>
9777
9778         * lib/verify.h (verify_true): Provide alternative definition for C++.
9779
9780 2005-10-03  Paul Eggert  <eggert@cs.ucla.edu>
9781
9782         * lib/getdelim.c: Include getdelim.h first.  Include <limits.h>.
9783         (SSIZE_MAX): New macro, if not already defined.
9784         (getdelim): Fix buffer overrun on 64-bit hosts with lines longer
9785         than 2 GiB.
9786
9787 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
9788
9789         Sync from coreutils.
9790         * m4/openat.m4 (gl_FUNC_OPENAT): Check for fdopendir.
9791         * m4/ullong_max.m4 (gl_ULLONG_MAX): Simplify so that it merely
9792         defines ULONG_MAX_LT_ULLONG_MAX.  Thomas M.Ott reports that
9793         ULLONG_MAX doesn't work with 2.7.2.1.
9794
9795 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
9796
9797         * modules/xreadlink (Makefile.am): Remove lib_SOURCES.
9798         From Ben Pfaff.
9799
9800         * modules/exclude (Depends-on): Depend on verify.
9801         * modules/strtoimax (Depends-on): Likewise.
9802         * modules/utimecmp (Depends-on): Likewise.
9803
9804 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
9805
9806         * lib/exclude.c: Include verify.h.
9807         (verify): Remove.  All callers changed to use verify.h's version.
9808         * lib/strtoimax.c: Likewise.
9809         * lib/utimecmp.c: Likewis.e
9810
9811         Sync from coreutils.
9812         * lib/.cppi-disable: Add getaddrinfo.h, getdelim.h, getline.h,
9813         getpass.c, mbchar.h, mbuiter.h, strcase.h, strnlen.h, strnlen1.h.
9814         * lib/.cvsignore: Add fts.h, search.h, t-fpending.
9815         * lib/settime.c (settime): Fix { typo in previous patch.  Also, don't
9816         bother returning ENOSYS if settimeofday or stime fails; just let
9817         them return whatever errno they want to return.
9818         * lib/utimens.c: Include unistd.h, for dup2.
9819         (futimens): Fix typo: HAVE_FUTIMESAT was misspelled in an #if.
9820         (futimens) [! HAVE_FUTIMESAT]: If !file, set errno before returning -1.
9821
9822 2005-10-02  Jim Meyering  <jim@meyering.net>
9823
9824         Sync from coreutils.
9825         * m4/utimes.m4 (gl_FUNC_UTIMES): Detect the version of utimes
9826         from glibc-2.2.5 that fails for read-only files.
9827
9828 2005-10-02  Jim Meyering  <jim@meyering.net>
9829
9830         Sync from coreutils.
9831         * lib/fts-cycle.c [HAVE_CONFIG_H]: Include <config.h>.
9832         * lib/openat-die.c: Use `#ifdef HAVE_CONFIG_H', not
9833         `#if HAVE_CONFIG_H'.
9834         * lib/openat.c (fdopendir): Do not define if HAVE_FDOPENDIR.
9835         Remove AT_FDCWD test.
9836         Do not consume the fd unless successful.
9837         * lib/openat.h (fdopendir): Do not define if HAVE_FDOPENDIR.
9838         * lib/settime.c (settime): Move the HAVE_STIME block `up' into an #elif
9839         block, so that we don't even try to compile it if settimeofday is
9840         available.  This works around a compilation failure on OSF1 V5.1,
9841         due to stime requiring a `long int*' while tv_sec is `int'.
9842
9843 2005-10-02  Alfred M. Szmidt  <ams@gnu.org>
9844
9845         Sync from coreutils.
9846         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Compare $gl_have_path...
9847         against `yes', rather than just testing for nonempty.
9848
9849 2005-10-01  Simon Josefsson  <jas@extundo.com>
9850
9851         * m4/getaddrinfo.m4: Include sys/types.h for sys/socket.h, on FreeBSD
9852         and Darwin.
9853
9854         * m4/getaddrinfo.m4: Use AC_GNU_SOURCE, GNU only declare getaddrinfo
9855         as an (POSIX) extension.  Check for sys/types.h, sys/socket.h, and
9856         netdb.h too, needed by getaddrinfo.h.  Check if getaddrinfo,
9857         freeaddrinfo and gai_strerror are declared by the POSIX headers.
9858         Check if struct addrinfo is declared.
9859
9860 2005-10-01  Simon Josefsson  <jas@extundo.com>
9861
9862         * lib/getaddrinfo.h: Protect #include's of sys/socket.h and netdb.h.
9863         Only define struct addrinfo if !HAVE_STRUCT_ADDRINFO.  Protect
9864         AI_* and EAI_* definitions.  Protect function declarations.
9865
9866 2005-10-01  Jim Meyering  <jim@meyering.net>
9867
9868         Sync from coreutils.
9869
9870         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Look for getservbyname in these
9871         libraries [inet nsl socket xnet].  Nelson Beebe reported that with
9872         native cc on Solaris 7, getaddrinfo.c requires -lsocket.
9873         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Check for gethostbyname
9874         in the inet and nsl libraries.  Required on Solaris 5.7.
9875
9876 2005-10-01  Jim Meyering  <jim@meyering.net>
9877
9878         Sync from coreutils.
9879         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Check for gethostbyname
9880         in the inet and nsl libraries.  Required on Solaris 5.7.
9881
9882 2005-10-01  Eric Blake  <ebb9@byu.net>  (tiny change)
9883
9884         * lib/getdelim.c (getdelim): Remove unused variables.
9885
9886 2005-09-29  Paul Eggert  <eggert@cs.ucla.edu>
9887
9888         * lib/xtime.h (XTIME_PRECISION): Now of type int, not long long int,
9889         so that the code works even with ancient cpp.  Portability problem
9890         with GCC 2.7.2.1 reported by Thomas M.Ott.
9891
9892 2005-09-27  Paul Eggert  <eggert@cs.ucla.edu>
9893
9894         * modules/regex (Depends-on): Add strcase.
9895
9896         * modules/gethostname (Licence): Change from GPL to LGPL, since
9897         gethostname.c is a trivial implementation of a standard library
9898         function.
9899         * modules/poll (License): Change from GPL to LGPL, since it's
9900         derived from LGPL code.
9901
9902 2005-09-27  Jim Meyering  <jim@meyering.net>
9903
9904         * lib/getcwd.c: Change #ifdef<TAB>HAVE_CONFIG_H to #ifdef
9905         HAVE_CONFIG_H.
9906
9907         * lib/intprops.h (signed_type_or_expr__): Define.
9908         (INT_STRLEN_BOUND) [__GNUC__]: Use a slightly tighter bound
9909         for unsigned types.
9910
9911 2005-09-26  Paul Eggert  <eggert@cs.ucla.edu>
9912
9913         * lib/verify.h (verify_expr): Remove, replacing with:
9914         (verify_true): New macro that returns true instead of void.
9915         (verify_type__): Remove.
9916         (verify): Use verify_true rather than verify_type__.
9917
9918 2005-09-26  Bruno Haible  <bruno@clisp.org>
9919
9920         * modules/mbchar (Include): Mention that HAVE_WCHAR_H && HAVE_WCTYPE_H
9921         is necessary.
9922         (lib_SOURCES): Remove mbchar.c.
9923         * modules/mbfile (Include): Mention that HAVE_MBRTOWC is necessary.
9924         (Files): Add m4/mbrtowc.m4.
9925         * modules/mbiter: Likewise.
9926         * modules/mbuiter: Likewise.
9927
9928 2005-09-26  Bruno Haible  <bruno@clisp.org>
9929
9930         * m4/mbchar.m4 (gl_MBCHAR): Check for wchar.h and wctype.h. Don't
9931         compile mbchar.c if they are not both present.
9932         * m4/mbfile.m4 (gl_MBFILE): Require gl_FUNC_MBRTOWC.
9933         * m4/mbiter.m4 (gl_MBITER): Likewise.
9934         * m4/strstr.m4 (gl_PREREQ_STRSTR): Use AC_REQUIRE.
9935         * m4/strcasestr.m4 (gl_PREREQ_STRCASESTR): Likewise.
9936         * m4/strcase.m4 (gl_PREREQ_STRCASECMP): Likewise.
9937
9938 2005-09-25  Jim Meyering  <jim@meyering.net>
9939
9940         * modules/inet_ntop (Depends-on): Add socklen, since inet_ntop.c
9941         also uses socklen_t.
9942
9943 2005-09-24  Paul Eggert  <eggert@cs.ucla.edu>
9944
9945         * lib/utimens.c (ENOSYS): Define if not already defined.
9946         (futimens): Support having a null PATH if the file descriptor
9947         is nonnegative.
9948
9949         * lib/regex_internal.h (__GNUC_PREREQ, always_inline, inline, pure):
9950         Remove.
9951         (__attribute): Define to empty unless GCC 3.1 or later.
9952         This works around a core dump on OpenBSD 3.4, which has GCC
9953         2.95.3, which dumps core when given __attribute__(()).  It also
9954         simplifies other tests, since we really don't want to bother with
9955         worrying about which ancient version of GCC supported what.
9956         Original problem reported by Yoann Vandoorselaere, with part of
9957         the fix suggested by Derek Price.
9958
9959 2005-09-24  Jim Meyering  <jim@meyering.net>
9960
9961         * lib/verify.h (verify_type__): Use `unsigned int' as the bitfield type
9962         so we can once again use a positive bitfield width of 1 -- now we
9963         don't have to explain why we were using a bitfield width of 2.
9964
9965 2005-09-23  Paul Eggert  <eggert@cs.ucla.edu>
9966
9967         * m4/regex.m4 (gl_REGEX): If replacing, define regcomp to rpl_regcomp,
9968         and similarly for the other external symbols.  Problem reported
9969         by James Gallager.
9970
9971         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Catch Sun Studio 10u1 on Linux
9972         bug reported by Jim Meyering.
9973
9974         * m4/utimens.m4 (gl_UTIMENS): Check for futimesat.
9975         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Undo previous change;
9976         not needed, since socklen is a prerequisite module.
9977
9978 2005-09-23  Paul Eggert  <eggert@cs.ucla.edu>
9979
9980         * lib/getaddrinfo.c [HAVE_NETINET_IN_H]: Include <netinet/in.h>.
9981         Problem reported by Eric Blake.
9982         (getaddrinfo): Initialize se so that it's not garbage.
9983         Redo internal storage allocation so that it doesn't make unportable
9984         assumptions about alignment.
9985         Fix a memory leak.
9986
9987         * lib/utimens.c (futimens): Use futimesat if available.
9988         Prefer it to futimes since it doesn't have the futimes bug.
9989
9990         * lib/verify.h (GL_CONCAT0, GL_CONCAT): Remove.
9991         (verify): Don't use the __LINE__ trick, as it doesn't work in general.
9992         Instead, declare a function that returns a pointer to an array,
9993         and use verify_type__ to declare the size of the array.
9994         Problem and germ of a solution reported by Bruno Haible.
9995         (verify_type__): Use 2, not 1, for bitfield size, to avoid
9996         a warning with Irix 6.5 cc.  Problem reported by Bruno Haible.
9997
9998 2005-09-23  Jim Meyering  <jim@meyering.net>
9999
10000         Sync from coreutils.
10001         Correct build failure (socklen_t not defined) on at least
10002         mips-sgi-irix6.5 and alphaev67-dec-osf5.1.
10003         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Require gl_SOCKLEN_T.
10004
10005 2005-09-23  Jim Meyering  <jim@meyering.net>
10006
10007         * modules/getaddrinfo (Depends-on): Add socklen.
10008
10009 2005-09-23  Bruno Haible  <bruno@clisp.org>
10010
10011         * tests/test-verify.c: New file.
10012
10013 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
10014
10015         Sync from coreutils.
10016
10017         * modules/argmatch (Depends-on): Add verify.
10018         * modules/getloadavg (Depends-on): Depend on fcntl-safer, not
10019         unistd-safer.
10020         * modules/save-cwd (Depends-on): Likewise.
10021
10022         * modules/openat (Files): Add lib/openat-die.c.
10023         (Depends-on): Remove error, exitfail.
10024         Add dirname.
10025
10026         * modules/verify: New file.
10027         * MODULES.html.sh (Diagnostics <assert.h>): New section,
10028         with "verify" module.
10029
10030 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
10031
10032         Sync from coreutils.
10033
10034         * m4/backupfile.m4, calloc.m4, chown.m4, cloexec.m4, dup2.m4:
10035         * m4/fileblocks.m4, free.m4, ftruncate.m4, getcwd.m4, getpagesize.m4:
10036         * m4/getugroups.m4, group-member.m4, idcache.m4, link-follow.m4:
10037         * m4/mkstemp.m4, mktime.m4, mountlist.m4, nanosleep.m4, pathmax.m4:
10038         * m4/physmem.m4, posixver.m4, putenv.m4, safe-read.m4, same.m4:
10039         * m4/save-cwd.m4, stdio-safer.m4, unistd-safer.m4, unlinkdir.m4:
10040         * m4/userspec.m4, xgetcwd.m4, xreadlink.m4:
10041         Don't bother checking for string.h, stdlib.h, unistd.h.
10042         * m4/fts.m4 (gl_FUNC_FTS_CORE): Don't require
10043         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK; that's now the lstat
10044         module's job.
10045         * m4/jm-macros.m4 (gl_MACROS): Likewise.
10046         * m4/prereq.m4 (gl_PREREQ): Add gl_FUNC_LSTAT.
10047
10048         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): New macro.
10049         (gl_GETDATE): Use it.
10050
10051         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Don't bother checking for unistd.h.
10052
10053 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
10054
10055         Sync from coreutils.
10056
10057         * lib/.cppi-disable: Add regcomp.c, regex_internal.c, regex_internal.h,
10058         stat-time.h.
10059         * lib/argmatch.h: Include verify.h
10060         (ARGMATCH_VERIFY): Use verify rather than rolling our own.
10061         (ARGMATCH_ASSERT): Remove; unused.
10062         * lib/canonicalize.c: Assume STDC_HEADERS.
10063         * lib/exclude.c: Include "strcase.h".
10064         * lib/regex_internal.h [!defined _LIBC]: Likewise.
10065         * lib/getusershell.c: Include stdio--.h rather than stdio.h
10066         and stdio-safer.h.
10067         (getusershell): Call fopen, not fopen_safer.
10068         * lib/save-cwd.c: Include fcntl--.h rather than fcntl.h.
10069         Do not include unistd-safer.h.
10070         (save_cwd): Don't call fd_safer; no longer needed
10071         now that we include fcntl--.h.
10072
10073         * lib/getdate.y (relative_time): New type.
10074         (RELATIVE_TIME_0): New constant.
10075         (parser_control): Use relative_time instead of doing it ourselves.
10076         (%union): Add new relative_time rel member.
10077         (tYEAR_UNIT, tMONTH_UNIT, tHOUR_UNIT, tMINUTE_UNIT, tSEC_UNIT):
10078         Now typeless.
10079         (relunit, relunit_snumber): Now of type rel.
10080         (zone, rel, relunit, get_date): Adjust to above changes.
10081
10082         * lib/getloadavg.c: Include fcntl--.h rather than fcntl.h.
10083         Do not include unistd-safer.h.
10084         (getloadavg): Don't call fd_safer; no longer needed
10085         now that we include fcntl--.h.
10086
10087         * lib/mkdir-p.c (ENOSYS): Define to EEXIST if not defined.
10088         (make_dir_parents): Treat ENOSYS like EEXIST.
10089
10090         Improve quality of diagnostics on restore_cwd failure.
10091         * lib/mkdir-p.h (make_dir): Remove.  All uses replaced by mkdir.
10092         (make_dir_parents): Last arg is now int * (for errno), not bool *.
10093         * lib/mkdir-p.c (make_dir, make_dir_parents): Likewise.
10094         Rewrite "mkdir -p" algorithm to avoid the need for "stat"
10095         each time through the loop.  Do not diagnose restore_cwd failure;
10096         that is the caller's job (and perhaps the caller does not care).
10097
10098         * lib/mkdir-p.c (CLEANUP_CWD, CLEANUP): Remove.
10099         (make_dir_parents): Revamp to avoid need for CLEANUP_CWD, CLEANUP.
10100         If the file already exists but is not a directory, don't bother
10101         to try to make its parents.
10102         Close potential file descriptor leak if we can't chdir("/") (!).
10103         Don't always return true if chdir($PWD) fails; return true only
10104         if the requested action was done successfully (except for the
10105         chdir($PWD)).
10106         Don't log final directory unless we actually made it.
10107         Refactor to avoid duplicate code to fix up permissions.
10108         Don't attempt to fix up parent permissions if chdir($PWD) fails.
10109
10110         * lib/strftime.c (my_strftime): Rewrite the previous change slightly,
10111         to make it a bit faster and (I hope) clearer.
10112         * lib/strftime.c (my_strftime): Add support for %:z, %::z, %:::z.
10113         Fix bug in formats like %2N.
10114
10115         * lib/verify.h: New file.
10116
10117 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
10118
10119         Sync from coreutils.
10120         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Check for netinet/in.h.
10121
10122 2005-09-22  Jim Meyering  <jim@meyering.net>
10123
10124         Sync from coreutils.
10125
10126         * m4/lstat.m4 (gl_FUNC_LSTAT):
10127         Use AC_LIBSOURCES to require lstat.c and lstat.h.
10128         Remove obsolete comment.
10129         * m4/xreadlink.m4: Use AC_LIBSOURCES and AC_LIBOBJ.
10130         * m4/xstrtod.m4: Likewise.
10131
10132         * m4/openat.m4 (gl_FUNC_OPENAT): Add openat-die.c.
10133
10134 2005-09-22  Jim Meyering  <jim@meyering.net>
10135
10136         Sync from coreutils.
10137
10138         * lib/backupfile.c: Use ARGMATCH_VERIFY, just in case.
10139
10140         * lib/posixtm.c (posixtime) [lint]: Initialize *all* of tm0, not just
10141         the .tm_year member, since otherwise gcc-4.0 would now warn about
10142         tm_zone, tm_gmtoff, tm_isdst, tm_yday, tm_wday.
10143
10144         * lib/quotearg.c (quotearg_n_options): Change code to be suboptimal, in
10145         order to avoid an unsuppressible warning from gcc on 64-bit systems.
10146
10147         * lib/getdate.y (get_date): Undo part of the 2005-04-04 change, so that
10148         the command "date -d'2005-03-27 +1 day'" succeeds once again, even
10149         when run in a time zone for which daylight savings time is in effect
10150         for the starting date.
10151
10152         * lib/mkdir-p.c (make_dir_parents): Don't let a failed chdir($PWD)
10153         stop us from restricting permissions of just-created absolute-named
10154         directories.
10155         * lib/mkdir-p.c (CLEANUP_CWD): Return *true*, not false when failing
10156         to restore initial working directory.
10157         * lib/mkdir-p.c (make_dir_parents): New parameter:
10158         different_working_dir, to tell caller if/when we change the working
10159         directory and are unable to return to the initial one.
10160         * lib/mkdir-p.h (make_dir_parents): Update prototype.
10161         * lib/mkdir-p.c (CLEANUP_CWD): Change one more `return 1' to
10162         `return false'.  This fixes a bug introduced on 2004-07-30.
10163
10164         * lib/openat.c (fdopendir): Be sure to close the supplied
10165         file descriptor before returning.  This makes our replacement
10166         implementation a little closer to Solaris's, where fdopendir
10167         ties the file descriptor to the returned DIR* pointer.
10168         * lib/openat.c (unlinkat): New function.
10169         * lib/openat.h (unlinkat): Add prototype.
10170         * lib/openat-die.c (openat_save_fail): Rename from openat_save_die.
10171         (openat_restore_fail): Rename from openat_restore_die.
10172         * lib/openat.c, openat.h: Reflect s/_die/_fail/ renaming.
10173
10174         Provide an alternative to exiting immediately upon save_cwd or
10175         restore_cwd failure.  Now, an application can arrange e.g.,
10176         to perform a longjump in that case.
10177         * lib/openat.c: Include dirname.h.
10178         Use IS_ABSOLUTE_FILE_NAME rather than testing for leading slash.
10179         (rpl_openat, fdopendir, fstatat): Call openat_save_die
10180         and openat_restore_die rather than calling error directly.
10181         Don't include "error.h" or "exitfail.h"; they're no longer needed.
10182
10183         * lib/openat-die.c (openat_save_die, openat_restore_die): New file.
10184         * lib/openat.h (openat_save_die, openat_restore_die): Declare and
10185         define.
10186
10187         * lib/strftime.c [FPRINTFTIME] (fprintftime): Provide a new interface:
10188         size_t fprintftime (FILE *fp, char const *fmt, struct tm const *tm,
10189                             int utc, int nanoseconds);
10190         Background:
10191         date should not have to allocate a megabyte of virtual memory to
10192         handle a format argument like +%1048575T.  When implemented with
10193         strftime, it must allocate such a buffer, use strftime to fill it
10194         in, print it, then free it.
10195         With fprintftime, it simply prints everything and exits.
10196         With no need for memory allocation, that's one fewer way to fail.
10197         * lib/strftime.c (my_strftime): Parse the colons of %:::z *after* the
10198         optional field width, not before, so we accept %9:z, not %:9z.
10199         (my_strftime): Be sure to use L_('x') for literals.
10200
10201         * lib/backupfile.c, lib/canon-host.c, lib/canonicalize.c, lib/chown.c:
10202         * lib/cloexec.c, lib/dup-safer.c, lib/dup2.c, lib/euidaccess.c:
10203         * lib/fd-safer.c, lib/fileblocks.c, lib/fopen-safer.c, lib/fsusage.c:
10204         * lib/ftruncate.c, lib/getcwd.c, lib/getcwd.h, lib/getloadavg.c:
10205         * lib/getopt_.h, lib/getpagesize.h, lib/getugroups.c:
10206         * lib/group-member.c, lib/human.h, lib/idcache.c, lib/mkdir-p.c:
10207         * lib/mountlist.c, lib/nanosleep.c, lib/pathmax.h, lib/physmem.c:
10208         * lib/posixver.c, lib/putenv.c, lib/raise.c, lib/safe-read.c:
10209         * lib/same.c, lib/save-cwd.c, lib/setenv.c, lib/settime.c:
10210         * lib/tempname.c, lib/unlinkdir.c, lib/unsetenv.c, lib/userspec.c:
10211         * lib/xgethostname.c, lib/xreadlink.c:
10212         Assume HAVE_UNISTD_H, i.e., include <unistd.h> unconditionally.
10213
10214         * lib/chown.c, lib/cloexec.c, lib/dup-safer.c, lib/dup2.c:
10215         * lib/fsusage.c, lib/getcwd.c, lib/getloadavg.c, lib/mountlist.c:
10216         * lib/openat.h, lib/save-cwd.c, lib/tempname.c:
10217         Assume HAVE_FCNTL_H (i.e., include <fcntl.h> unconditionally,
10218         and don't include <sys/file.h>).
10219
10220 2005-09-22  Eric Blake  <ebb9@byu.net>  (tiny change)
10221
10222         Sync from coreutils.
10223
10224         * lib/getloadavg.c (getloadavg) [__CYGWIN__]: Port to cygwin.
10225         [__linux__]: Allocate a big enough buffer for /proc/loadavg.
10226         [!LDAV_DONE]: Avoid unused variable warning.
10227
10228 2005-09-21  Bruno Haible  <bruno@clisp.org>
10229
10230         * lib/unicodeio.h (unicode_to_mb): New declaration.
10231
10232 2005-09-20  Derek Price  <derek@ximbiot.com>
10233
10234         * lib/getaddrinfo.c: Don't include <netdb.h> included from
10235         getaddrinfo.h.
10236
10237 2005-09-20  Bruno Haible  <bruno@clisp.org>
10238
10239         * gnulib-tool: Remove trailing slashes from the values specified for
10240         --source-base, --m4-base, --tests-base, --aux-dir.
10241         Suggested by Simon Josefsson <jas@extundo.com>.
10242
10243 2005-09-20  Bruno Haible  <bruno@clisp.org>
10244
10245         * gnulib-tool (func_all_modules, func_modules_transitive_closure,
10246         func_modules_to_filelist, func_import, func_create_testdir): Make all
10247         sorting results locale-independent, so that gnulib-cache.m4 doesn't
10248         change when gnulib-tool is invoked in a different locale.
10249
10250 2005-09-19  Simon Josefsson  <jas@extundo.com>
10251
10252         * m4/socklen.m4: Fix typo.
10253
10254 2005-09-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
10255
10256         Use a consistent style for including <config.h>.
10257         * lib/__fpending.c, lib/acl.c, lib/argmatch.c, lib/argp-help.c,
10258         lib/argp-parse.c, lib/argp-pvh.c, lib/backupfile.c, lib/basename.c,
10259         lib/c-stack.c, lib/calloc.c, lib/check-version.c, lib/cloexec.c,
10260         lib/closeout.c, lib/copy-file.c, lib/creat-safer.c, lib/cycle-check.c,
10261         lib/dirfd.c, lib/dirname.c, lib/dup-safer.c, lib/dup2.c,
10262         lib/euidaccess.c, lib/exclude.c, lib/exitfail.c, lib/fatal-signal.c,
10263         lib/fd-safer.c, lib/file-type.c, lib/fileblocks.c, lib/filemode.c,
10264         lib/filenamecat.c, lib/findprog.c, lib/fnmatch.c, lib/fopen-safer.c,
10265         lib/free.c, lib/fsusage.c, lib/ftruncate.c, lib/full-write.c,
10266         lib/fwriteerror.c, lib/getaddrinfo.c, lib/getcwd.c, lib/getdelim.c,
10267         lib/getline.c, lib/getlogin_r.c, lib/getndelim2.c, lib/getnline.c,
10268         lib/getopt1.c, lib/getpass.c, lib/group-member.c, lib/hard-locale.c,
10269         lib/hash-pjw.c, lib/hash.c, lib/human.c, lib/idcache.c,
10270         lib/inet_ntop.c, lib/isdir.c, lib/long-options.c, lib/malloc.c,
10271         lib/memcasecmp.c, lib/memcmp.c, lib/memcoll.c, lib/memcpy.c,
10272         lib/memmove.c, lib/mkdir-p.c, lib/modechange.c, lib/mountlist.c,
10273         lib/open-safer.c, lib/physmem.c, lib/pipe-safer.c, lib/pipe.c,
10274         lib/poll.c, lib/posixver.c, lib/progname.c, lib/progreloc.c,
10275         lib/putenv.c, lib/quote.c, lib/quotearg.c, lib/readline.c,
10276         lib/readlink.c, lib/realloc.c, lib/regex.c, lib/rename.c, lib/rmdir.c,
10277         lib/rpmatch.c, lib/safe-read.c, lib/same.c, lib/save-cwd.c,
10278         lib/savedir.c, lib/sig2str.c, lib/strcspn.c, lib/strerror.c,
10279         lib/stripslash.c, lib/strncasecmp.c, lib/strndup.c, lib/strnlen.c,
10280         lib/strnlen1.c, lib/strsep.c, lib/strstr.c, lib/strtod.c,
10281         lib/strtoimax.c, lib/strtol.c, lib/strverscmp.c, lib/tempname.c,
10282         lib/time_r.c, lib/userspec.c, lib/utimecmp.c, lib/version-etc-fsf.c,
10283         lib/version-etc.c, lib/wait-process.c, lib/xalloc-die.c, lib/xgetcwd.c,
10284         lib/xmalloc.c, lib/xmemcoll.c, lib/xnanosleep.c, lib/xreadlink.c,
10285         lib/xsetenv.c, lib/xstrndup.c, lib/xstrtoimax.c, lib/xstrtol.c,
10286         lib/xstrtoumax.c, lib/yesno.c:
10287         Standardize inclusion of config.h.
10288         * lib/__fpending.h, lib/dirfd.h, lib/getdate.h, lib/human.h,
10289         lib/inttostr.h:  Removed inclusion of config.h from header files.
10290         * lib/inttostr.c:  Adjusted in-tree users.
10291         * lib/timespec.h: Remove superfluous warning to include config.h.
10292         * lib/atexit.c, lib/chdir-long.c, lib/chown.c, lib/fchown-stub.c,
10293         lib/getgroups.c, lib/gettimeofday.c, lib/lchown.c, lib/lstat.c,
10294         lib/mkdir.c, lib/mkstemp.c, lib/nanosleep.c, lib/openat.c, lib/raise.c,
10295         lib/readtokens0.c, lib/readutmp.c, lib/unlinkdir.c: Guard inclusion of
10296         config.h with HAVE_CONFIG_H.
10297
10298 2005-09-19  Jim Meyering  <jim@meyering.net>
10299
10300         * modules/pathmax (License): Change to LGPL.
10301
10302 2005-09-19  Derek Price  <derek@ximbiot.com>
10303
10304         * config/srclist.txt: glibc's glob.h is now in lib/glob-libc.h.
10305
10306 2005-09-19  Bruno Haible  <bruno@clisp.org>
10307
10308         * gnulib-tool (import): Provide default for --tests-base.
10309
10310 2005-09-19  Bruno Haible  <bruno@clisp.org>
10311
10312         * doc/quote.texi: New file, extracted from gnulib.texi.
10313         * doc/ctime.texi: New file, extracted from gnulib.texi.
10314         * doc/inet_ntoa.texi: New file, extracted from gnulib.texi.
10315         * doc/gnulib-tool.texi: New file, extracted from gnulib.texi.
10316         * doc/gnulib.texi: Include them.
10317
10318 2005-09-18  Bruno Haible  <bruno@clisp.org>
10319
10320         Portability fix.
10321         * gnulib-tool (func_readlink): New function.
10322         (func_ln_if_changed): Use it.
10323
10324 2005-09-18  Bruno Haible  <bruno@clisp.org>
10325
10326         * gnulib-tool: Support --with-tests also with --import.
10327         (func_emit_tests_Makefile_am): Use variables $m4base and $testsbase.
10328         (func_import): Use variables $testsbase and $inctests. Emit a
10329         gl_TESTS_BASE form into gnulib-cache.m4. Create $testsbase/Makefile.am.
10330         Remind the user to add AC_CONFIG_FILES($testsdir/Makefile) and
10331         SUBDIRS += $testsdir.
10332         (func_create_testdir): Update.
10333
10334 2005-09-18  Bruno Haible  <bruno@clisp.org>
10335
10336         * gnulib-tool: Revise --dry-run implementation. Use variable $doit
10337         instead of $dry_run.
10338         (func_cp_if_changed, func_mv_if_changed): Remove functions.
10339         (func_ln_if_changed): Don't handle dry-run here.
10340         (func_import): In dry-run mode, detect more precisely which actions
10341         would be performed, and don't use "...ing" verbs.
10342
10343 2005-09-18  Bruno Haible  <bruno@clisp.org>
10344
10345         * gnulib-tool (func_tmpdir): New function, taken from GNU gettextize.
10346         (func_import): Use join on two temporary files instead of three nested
10347         loops, in order to determine which files are new or old.
10348
10349 2005-09-18  Bruno Haible  <bruno@clisp.org>
10350
10351         * gnulib-tool (func_import): Comment out code that spits out the
10352         new files with --dry-run.
10353
10354 2005-09-18  Bruno Haible  <bruno@clisp.org>
10355
10356         * doc/gnulib.texi (Invoking gnulib-tool): 50% rewritten.
10357
10358 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
10359
10360         * lib/stat-time.h: New file.
10361         * lib/timespec.h (ST_TIME_CMP_NS, ST_TIME_CMP, ATIME_CMP, CTIME_CMP):
10362         (MTIME_CMP, TIMESPEC_NS): Remove.  Now done by stat-time.h,
10363         in a different way.
10364         (timespec_cmp): New function.
10365         * lib/utimecmp.c: Include stat-time.h.
10366         (SYSCALL_RESOLUTION): Depend on whether various struct stat
10367         members exist, not on the obsolescent ST_MTIM_NSEC.
10368         (utimecmp): Use the new stat-time functions rater than TIMESPEC_NS.
10369
10370 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
10371
10372         * config/srclist.txt: Remove glibc bug 1033 and uncomment mktime.c.
10373
10374 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
10375
10376         * MODULES.html.sh (File system functions): Add stat-time.
10377         * modules/stat-time: New file.
10378         * modules/timespec (Files): Remove m4/st_mtim.m4; this
10379         is now done in a different way, by the stat-time module.
10380         * modules/utimecmp (Depends-on): Add stat-time.
10381
10382 2005-09-15  Paul Eggert  <eggert@cs.ucla.edu>
10383
10384         * m4/st_mtim.m4: Remove.  Superseded by...
10385         * m4/stat-time.m4: New file.
10386         * m4/timespec.m4 (gl_TIMESPEC): Require AC_C_INLINE.
10387         Do not invoke AC_STRUCT_ST_MTIM_NSEC; no longer needed.
10388
10389 2005-09-15  Derek Price  <derek@ximbiot.com>
10390
10391         * m4/strstr.m4 (gl_FUNC_STRSTR): Don't define strstr here.
10392
10393 2005-09-15  Derek Price  <derek@ximbiot.com>
10394
10395         * lib/regex_internal.h: Blank `pure' for GNUC < 3.
10396         * lib/regex_internal.c: Ditto, using this...
10397         (__GNUC_PREREQ): ...new macro.
10398         * lib/regcomp.c, regexec.c: Blank `always_inline' for GNUC < 3.1
10399         using...
10400         (__GNUC_PREREQ): ...this new macro.
10401
10402         * lib/strstr.h: Include string.h. Define strstr as a macro here.
10403
10404 2005-09-15  Derek Price  <derek@ximbiot.com>
10405             Paul Eggert  <eggert@cs.ucla.edu>
10406
10407         * lib/regcomp.c, regexec.c, regex_internal.c: Back out previous
10408         changes, consolidating in...
10409         * lib/regex_internal.h: ...this file.
10410
10411 2005-09-13  Jim Meyering  <jim@meyering.net>
10412
10413         * lib/canon-host.c: Filter through gnu indent and reword comments
10414         slightly.
10415         * lib/canon-host.h (ch_strerror_r): Tweak cpp indentation and spacing.
10416
10417 2005-09-13  Derek Price  <derek@ximbiot.com>
10418
10419         * lib/canon-host.c (canon_host_r): Set *cherror on memory allocation
10420         failure.
10421         Reported by Jim Meyering  <jim@meyering.net>.
10422
10423 2005-09-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
10424
10425         * lib/base64.c: Typo.
10426         (base64_encode): Put b64str in initialized data section.
10427
10428 2005-09-12  Paul Eggert  <eggert@cs.ucla.edu>
10429
10430         Merge glibc and coreutils changes into gnulib, plus a few
10431         extra fixes.
10432         * lib/md5.c: Use #error rather than a string.
10433         (CYCLIC): New macro, from glibc source.  Use it instead of rol.
10434         * lib/md5.h (__GNUC_PREREQ, __THROW): Define if not defined already.
10435         (__attribute__): Define to empty for non recent-GCC.
10436         (__md5_buffer, __md5_finish_ctx, __md5_init_ctx, __md5_process_block):
10437         (__md5_process_bytes, __md5_read_ctx, __md5_stream):
10438         Renamed from their non-__ counterparts, with new macros replacing
10439         them if not _LIBC.  Add __THROW attribute.
10440         (rol): Remove.
10441         (struct md5_ctx): Align buffer if using GCC.
10442         * lib/sha1.h (struct sha1_ctx): Likewise.
10443         * lib/sha1.c (SWAP): Renamed from the NOTSWAP.  All uses changed.
10444         The old name was backwards.
10445         (NOTSWAP): Remove; not used.
10446         (rol): New macro, moved here from md5.h.
10447         (sha1_process_block): Remove a FIXME that doesn't make sense.
10448
10449 2005-09-12  Derek Price  <derek@ximbiot.com>
10450
10451         Return usable errors from canon-host.
10452         * lib/canon-host.h: New file.
10453         * lib/canon-host.c (canon_host): Wrap...
10454         (canon_host_r): ...this new function, which now relies exclusively on
10455         getaddrinfo.
10456         (ch_strerror): New function.
10457         (last_cherror): New global.
10458         * lib/getaddrinfo.c: Move include of getaddrinfo.h first to test
10459         interface.
10460         (getaddrinfo): Add AI_CANONNAME functionality.  Don't do arithmetic on
10461         void *.
10462         (freeaddrinfo): Free ai->ai_canonname when set.
10463
10464 2005-09-12  Derek Price  <derek@ximbiot.com>
10465
10466         Make canon-host require getaddrinfo.
10467         * m4/canon-host.m4 (gl_CANON_HOST): Remove most dependencies.
10468         AC_LIBSOURCE canon-host.h.  Call...
10469         (gl_PREREQ_CANON_HOST): ...this new function, which requires
10470         gl_GETADDRINFO.
10471         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Compile gai_strerror when needed.
10472
10473 2005-09-12  Derek Price  <derek@ximbiot.com>
10474
10475         * modules/canon-host: Add canon-host.h.  Depend on getaddrinfo.  Make
10476         LGPL.
10477         * modules/getaddrinfo: Add link to opengroup spec.  Depend on strdup.
10478
10479 2005-09-12  Derek Price  <derek@ximbiot.com>
10480
10481         * lib/gai_strerror.c: Include config.h when available.  Include
10482         getaddrinfo.h before other headers to test interface.
10483         Reported by Larry Jones <lawrence.jones@ugs.com>.
10484
10485 2005-09-12  Derek Price  <derek@ximbiot.com>
10486             Paul Eggert  <eggert@cs.ucla.edu>
10487
10488         * modules/glob (Files): Add glob-libc.h.
10489
10490 2005-09-12  Derek Price  <derek@ximbiot.com>
10491             Paul Eggert  <eggert@cs.ucla.edu>
10492
10493         * m4/glob.m4 (gl_GLOB_SUBSTITUTE): AC_LIBSOURCES for glob.c,
10494         glob_.h, glob-libc.h.
10495         (gl_PREREQ_GLOB): Remove _SYS_CDEFS_H hack; no longer needed.
10496
10497 2005-09-12  Derek Price  <derek@ximbiot.com>
10498             Paul Eggert  <eggert@cs.ucla.edu>
10499
10500         * lib/glob-libc.h: Renamed from glob_.h.  The new version is
10501         taken from libc's glob.h, except with '#ifdef __GLOB_GNULIB'
10502         protecting things that should be done only in gnulib contexts.
10503         * lib/glob_.h: New file, containing only the glob things needed for
10504         gnulib.
10505         (GLOB_PREFIX): Remove.  All uses changed to look for __GLOB_GNULIB.
10506         (__GLOB_CONCAT, __GLOB_XCONCAT, __GLOB_ID): Remove; no longer needed.
10507         (glob, globfree, glob_pattern_p): Now defined simply in terms of
10508         rpl_glob, rpl_globfree, rpl_glob_pattern_p.
10509         (__GLOB_GNULIB): New macro, to keep the glob.h changes clearer
10510         and to respect the namespace rules better.
10511
10512 2005-09-08  Simon Josefsson  <jas@extundo.com>
10513
10514         * modules/socklen: New file.
10515
10516 2005-09-08  Simon Josefsson  <jas@extundo.com>
10517
10518         * m4/socklen.m4: New file.
10519
10520 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
10521
10522         * modules/utimens (Files): Add m4/utimbuf.m4, since
10523         m4/utimens.m4 requires gl_CHECK_TYPE_STRUCT_UTIMBUF.
10524         Reported by Sergey Poznyakoff.
10525
10526 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
10527
10528         * lib/glob.c (glob, globfree, __glob_pattern_p): Use old-style function
10529         definitions, since that's the preferred style in glibc.
10530         Fix a minor spacing issue, and update copyright notice to match
10531         glibc's.
10532
10533 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
10534
10535         * config/srclist.txt: Remove glibc bug 1061; it's been fixed.
10536
10537 2005-09-06  Simon Josefsson  <jas@extundo.com>
10538
10539         * lib/getpass.c (getpass): Fix typo, test for HAVE_TCSETATTR and not
10540         TCSETATTR.  Reported by Derek Price <derek@ximbiot.com>.
10541
10542 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
10543
10544         * lib/regex_internal.h (bitset_not): Add parens to avoid gcc -Wall
10545         warning.
10546
10547 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
10548
10549         * config/srclist.txt: Add glibc bug 1302.
10550
10551 2005-09-05  Paul Eggert  <eggert@cs.ucla.edu>
10552
10553         Change bitset word type from unsigned int to unsigned long int,
10554         as this has better performance on typical 64-bit hosts.
10555         Port bitset code to hosts with unusual word sizes.
10556         * lib/regcomp.c (build_equiv_class, build_charclass, build_range_exp):
10557         (build_collating_symbol):
10558         Prefer bitset to re_bitset_ptr_t in prototypes, when the actual
10559         argument is a bitset.  This is merely a style issue, but it makes
10560         it clearer that an entire array is expected.
10561         (re_compile_fastmap_iter, init_dfa, init_word_char, optimize_subexps):
10562         * lib/regcomp.c (lower_subexp, parse_bracket_exp, built_charclass_op):
10563         Port to the case where bitset_word is not the same as unsigned int.
10564         * lib/regex_internal.h (bitset_set, bitset_clear, bitset_contain):
10565         (bitset_not, bitset_merge, bitset_set_all, bitset_mask):
10566         Likewise.
10567         * lib/regexec.c (check_dst_limits_calc_pos_1,
10568         check_subexp_matching_top):
10569         (build_trtable, group_nodes_into_DFAstates):
10570         Likewise.
10571         * lib/regcomp.c (re_compile_fastmap_iter, utf8_sb_map, optimize_utf8):
10572         Don't assume that SBC_MAX is a multiple of BITSET_WORD_BITS.
10573         * lib/regex_internal.h (bitset_set_all, bitset_not): Likewise.
10574         * lib/regexec.c (group_nodes_into_DFAstates): Likewise.
10575         * lib/regcomp.c (utf8_sb_map): Don't assume UINT_MAX == 0xffffffff.
10576         * lib/regcomp.c (optimize_subexps, lower_subexp):
10577         Work even if bitset_word has holes in its bitwise representation.
10578         * lib/regex_internal.h (BITSET_WORD_BITS): Likewise.
10579         * lib/regexec.c (check_dst_limits_calc_pos_1,
10580         check_subexp_matching_top):
10581         Likewise.
10582         * lib/regex_internal.c (re_string_reconstruct):
10583         Don't assume UCHAR_MAX == 255.
10584         * lib/regex_internal.h (bitset_set_all): Likewise.
10585         * lib/regex_internal.h (BITSET_WORD_BITS): Renamed from UINT_BITS.
10586         All uses changed.
10587         (BITSET_WORDS): Renamed from BITSET_UINTS.  All uses changed.
10588         (bitset_word): New type, replacing 'unsigned int' for bitset uses.
10589         All uses changed.
10590         (BITSET_WORD_MAX): New macro.
10591         (bitset_set, bitset_clear, bitset_contain, bitset_empty):
10592         (bitset_set_all, bitset_copy):  Now inline functions, not macros.
10593         (bitset_empty, bitset_copy):
10594         Prefer sizeof (bitset) to multiplying it out ourselves.
10595         (bitset_not_merge): Remove; unused.
10596         (bitset_contain): Return bool, not unsigned int with one bit on.
10597         All callers changed.
10598         * lib/regexec.c (build_trtable): Don't assume bitset has no stricter
10599         alignment than re_node_set; do this by defining a new internal
10600         type struct dests_alloc and using it to allocate memory.
10601
10602 2005-09-05  Bruno Haible  <bruno@clisp.org>
10603
10604         * gnulib-tool (func_import): Fix comparison in handling of symbolic
10605         links.
10606
10607 2005-09-04  Martin Lambers  <marlam@marlam.de>  (tiny change)
10608
10609         * modules/size_max (Makefile.am): Add size_max.h
10610
10611 2005-09-04  Derek Price  <derek@ximbiot.com>
10612
10613         * gnulib-tool (func_import): Fix reversed $symbolic logic.
10614
10615 2005-09-03  Simon Josefsson  <jas@extundo.com>
10616
10617         * gnulib-tool: Fix typo.
10618
10619 2005-09-03  Simon Josefsson  <jas@extundo.com>
10620
10621         * config/srclist.txt: Add glibc bug 1293.
10622
10623 2005-09-03  Derek Price  <derek@ximbiot.com>
10624
10625         * m4/getlogin_r (gl_GETLOGIN_R): Fix cut & paste error.
10626         From Larry Jones <lawrence.jones@ugs.com>.
10627
10628 2005-09-02  Simon Josefsson  <jas@extundo.com>
10629
10630         * modules/socklen: New file.
10631
10632 2005-09-02  Simon Josefsson  <jas@extundo.com>
10633
10634         * modules/havelib: New module.
10635
10636         * modules/gettext, modules/iconv, modules/lock, modules/readline:
10637         Use havelib.
10638
10639 2005-09-02  Paul Eggert  <eggert@cs.ucla.edu>
10640
10641         Check for arithmetic overflow when calculating sizes, to prevent
10642         some buffer-overflow issues.  These patches are conservative, in the
10643         sense that when I couldn't determine whether an overflow was possible,
10644         I inserted a run-time check.
10645         * lib/regex_internal.h (re_xmalloc, re_xrealloc, re_x2realloc): New
10646         macros.
10647         (SIZE_MAX) [!defined SIZE_MAX]: New macro.
10648         (re_alloc_oversized, re_x2alloc_oversized, re_xnmalloc):
10649         (re_xnrealloc, re_x2nrealloc): New inline functions.
10650         * lib/regcomp.c (init_dfa, analyze, build_range_exp,
10651         parse_bracket_exp):
10652         (build_equiv_class, build_charclass): Check for arithmetic overflow
10653         in size expression calculations.
10654         * lib/regex_internal.c (re_string_realloc_buffers):
10655         (build_wcs_upper_buffer, re_node_set_add_intersect):
10656         (re_node_set_init_union, re_node_set_insert, re_node_set_insert_last):
10657         (re_dfa_add_node, register_state): Likewise.
10658         * lib/regexec.c (re_search_stub, re_copy_regs, re_search_internal):
10659         (prune_impossible_nodes, push_fail_stack, set_regs, check_arrival):
10660         (build_trtable, extend_buffers, match_ctx_init, match_ctx_add_entry):
10661         (match_ctx_add_subtop, match_ctx_add_sublast): Likewise.
10662
10663 2005-09-02  Paul Eggert  <eggert@cs.ucla.edu>
10664
10665         * modules/inttostr (Files): Add m4/inttypes_h.m4, m4/stdint_h.m4,
10666         m4/ulonglong.m4.  Problem reported by Martin Lambers.
10667
10668 2005-09-02  Bruno Haible  <bruno@clisp.org>
10669
10670         Support for lib vs. lib64 distinction on biarch platforms.
10671         * m4/lib-prefix.m4 (AC_LIB_PREPARE_MULTILIB): New macro.
10672         (AC_LIB_PREFIX): Require it. Use $acl_libdirstem instead of 'lib'.
10673         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Likewise.
10674
10675 2005-09-02  Bruno Haible  <bruno@clisp.org>
10676
10677         * gnulib-tool (import): In the other first-use case, provide defaults
10678         as well.
10679
10680 2005-09-02  Bruno Haible  <bruno@clisp.org>
10681
10682         * config/srclist.txt: lib-link.m4 and lib-prefix.m4 currently have
10683         patches not yet found in the latest gettext release.
10684
10685 2005-09-01  Paul Eggert  <eggert@cs.ucla.edu>
10686
10687         * lib/glob.c (GET_LOGIN_NAME_MAX): Renamed from LOGIN_NAME_MAX,
10688         to avoid a collision with bits/local_lim.h in glibc.
10689         All uses changed.  Problem reported by Dmitry V. Levin in
10690         <http://sources.redhat.com/bugzilla/show_bug.cgi?id=1060>.
10691
10692         * lib/regex_internal.c (build_wcs_upper_buffer): Fix portability
10693         bugs in int versus size_t comparisons.
10694         (re_string_context_at): Fix bug where the code assumed that
10695         Idx is signed.
10696
10697         Use bool where appropriate.
10698         * lib/regcomp.c (re_set_fastmap): ICASE arg is bool, not int.
10699         All callers changed.
10700         (calc_eclosure_iter): Likewise, for ROOT arg.
10701         (parse_bracket_element): Likewise, for ACCEPT_HYPHEN arg.
10702         (build_charclass_op): Likewise, for NON_MATCH arg.
10703         * lib/regex_internal.c (re_string_allocate, re_string_construct):
10704         (re_string_construct_common): Likewise, for ICASE arg.
10705         * lib/regexec.c (re_search_2_stub, re_search_stub):
10706         Likewise, for RET_LEN arg.
10707         (check_matching): Likewise, for FL_LONGEST_MATCH arg.
10708         (set_regs): Likewise, for FL_BACKTRACK arg.
10709         * lib/regcomp.c (re_compile_fastmap_iter, optimize_utf8):
10710         (duplicate_node_closure, calc_inveclosure, calc_eclosure):
10711         (calc_eclosure_iter, parse_bracket_exp):
10712         Use bool for internal variables that are booleans.
10713         * lib/regexec.c (re_search_internal, check_matching,
10714         proceed_next_node):
10715         (set_regs, build_sifted_states, sift_states_bkref):
10716         (check_arrival_add_next_nodes, check_arrival_expand_ecl_sub):
10717         (expand_bkref_cache, build_trtable, group_nodes_into_DFAstates):
10718         (find_collation_sequence_value):
10719         Likewise.
10720         * lib/regex_internal.c (re_node_set_insert, re_node_set_insert_last):
10721         (re_node_set_compare):
10722         Return bool, not int. All callers changed.
10723         * lib/regexec.c (check_halt_node_context, check_dst_limits):
10724         (build_trtable, check_node_accept): Likewise.
10725         * lib/regex_internal.h: Include stdbool.h.
10726
10727         Fix bugs uncovered when converting to bool.
10728         * lib/regcomp.c (calc_eclosure_iter): Check for storage allocation
10729         failure instead of charging ahead blindly.
10730         * lib/regex_internal.c (register_state): Likewise.
10731         * lib/regexec.c (re_search_2_stub): Use simpler method than boolean
10732         for freeing internal storage.
10733         (group_nodes_into_DFA_states): Use unsigned int, not int, for
10734         bitset pieces used as boolean, to avoid undefined behavior
10735         on hosts that do int overflow checking.
10736
10737 2005-09-01  Paul Eggert  <eggert@cs.ucla.edu>
10738
10739         * config/srclist.txt: Add glibc bugs 1285-1287.
10740
10741 2005-09-01  Jim Meyering  <jim@meyering.net>
10742
10743         * m4/lchown.m4: Require gl_FUNC_CHOWN, for the definition of
10744         CHOWN_MODIFIES_SYMLINK, which is used by lchown.c.
10745         Require gl_STAT_MACROS, too.
10746
10747 2005-09-01  Bruno Haible  <bruno@clisp.org>
10748
10749         * gnulib-tool (import): In the first-use case, provide defaults.
10750
10751 2005-09-01  Bruno Haible  <bruno@clisp.org>
10752
10753         * gnulib-tool (func_import): Remove the .tmp files.
10754
10755 2005-09-01  Bruno Haible  <bruno@clisp.org>
10756
10757         * gnulib-tool (func_import): Fix handling of symbolic links.
10758
10759 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
10760
10761         On 64-bit hosts (where size_t is 64 bits and int is 32 bits), the
10762         old glibc regex code mishandles strings longer than 2**31 bytes.
10763         This patch fixes this when the regex code is used in gnulib
10764         (i.e., outside glibc).
10765
10766         This patch should not affect the use of the regex code inside
10767         glibc.  No doubt this problem also needs to be handled for glibc
10768         as well, but the result will be an incompatible change to the
10769         glibc ABI, and the old ABI will have to be supported too.  That
10770         can be the the subject for another patch.
10771
10772         * lib/regex.h (_REGEX_LARGE_OFFSETS): New feature-test macro,
10773         governing whether the rest of this patch is active.  By default,
10774         the macro is disabled and the patch has no effect.
10775         (regoff_t) [defined _REGEX_LARGE_OFFSETS]: Define to off_t, not int.
10776         (__re_idx_t, __re_size_t, __re_long_size_t): New types.
10777         (struct re_pattern_buffer, re_search, re_search_2, re_match):
10778         (re_match_2, re_set_registers): Use the new types.
10779         * lib/regex_internal.h (Idx, re_hashval_t): New types.
10780         (REG_MISSING, REG_ERROR, REG_VALID_INDEX, REG_VALID_NONZERO_INDEX):
10781         New macros.
10782         (re_node_set, re_charset_t, re_token_t, re_string_realloc_buffers):
10783         (re_string_context_at, bin_tree_t, re_dfastate_t):
10784         (struct re_state_table_entry, state_array_t, re_sub_match_last_t):
10785         (re_sub_match_top_t, re_match_context_t, re_sift_context_t):
10786         (struct re_fail_stack_ent_t, struct re_fail_stack_t, struct re_dfa_t):
10787         (re_string_char_size_at, re_string_wchar_at):
10788         (re_string_elem_size_at):
10789         Use the new types and macros to port to 64-bit hosts.
10790         Use unsigned types for internal values, so that the code
10791         mostly works even for arrays larger than SSIZE_MAX.
10792         * lib/regcomp.c (re_compile_internal, init_dfa, duplicate_node):
10793         (search_duplicated_node, calc_eclosure_iter, fetch_number):
10794         (parse_reg_exp, parse_branch, parse_expression, parse_sub_exp):
10795         (build_equiv_class, build_charclass, re_compile_fastmap_iter):
10796         (free_dfa_content, create_initial_state, optimize_utf8, analyze):
10797         (optimize_subexps, calc_first, link_nfa_nodes, duplicate_node_closure):
10798         (calc_inveclosure, parse_dup_op, build_range_exp):
10799         (build_collating_symbol, parse_bracket_exp, build_charclass_op):
10800         (fetch_number, create_token_tree, mark_opt_subexp):
10801         Likewise.
10802         * lib/regex_internal.c (re_string_construct_common,
10803         create_ci_newstate):
10804         (create_cd_newstate, re_string_allocate, re_string_construct):
10805         (re_string_realloc_buffers, build_wcs_upper_buffer):
10806         (re_string_skip_chars, build_upper_buffer, re_string_translate_buffer):
10807         (re_string_reconstruct, re_string_peek_byte_case):
10808         (re_string_fetch_byte_case, re_string_context_at):
10809         (re_node_set_alloc, re_node_set_init_1, re_node_set_init_2):
10810         (re_node_set_init_copy, re_node_set_add_intersect):
10811         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
10812         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
10813         (re_node_set_remove_at, re_dfa_add_node, calc_state_hash):
10814         (re_acquire_state, re_acquire_state_context, register_state):
10815         Likewise.
10816         * lib/regex.c (match_ctx_init, match_ctx_add_entry,
10817         search_cur_bkref_entry):
10818         (match_ctx_add_subtop, match_ctx_add_sublast, sift_ctx_init):
10819         (re_search_internal, re_search_2_stub, re_search_stub)
10820         (re_copy_regs, check_matching, check_halt_state_context, update_regs):
10821         (push_fail_stack, sift_states_iter_mb, build_sifted_states):
10822         (update_cur_sifted_state, check_dst_limits):
10823         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
10824         (check_subexp_limits, sift_states_bkref, merge_state_array):
10825         (check_subexp_matching_top, get_subexp, get_subexp_sub):
10826         (find_subexp_node, check_arrival, check_arrival_add_next_nodes):
10827         (check_arrival_expand_ecl, check_arrival_expand_ecl_sub):
10828         (expand_bkref_cache, check_node_accept_bytes):
10829         (group_nodes_into_DFAstates, check_node_accept, regexec, re_match):
10830         (re_search, re_match_2, re_search_2, prune_impossible_nodes):
10831         (acquire_init_state_context, check_halt_node_context):
10832         (proceed_next_node, pop_fail_stack, set_regs, free_fail_stack_return):
10833         (sift_states_backward, clean_state_log_if_needed):
10834         (sub_epsilon_src_nodes, add_epsilone_src_nodes, merge_state_with_log):
10835         (find_recover_state, transit_state_sb, transit_state_mb):
10836         (transit_state_bkref, build_trtable, match_ctx_clean):
10837         Likewise.
10838         * lib/regcomp.c (parse_dup_op): Add an extra test if Idx is unsigned,
10839         to work around an assumption that REG_MISSING is negative.
10840
10841         * lib/regcomp.c (re_comp) [defined _REGEX_RE_COMP || defined _LIBC]:
10842         (seek_collating_symbol_entry) [defined _LIBC]:
10843         (lookup_collation_sequence_value) [defined _LIBC]:
10844         (build_range_exp, build_collating_symbol) [defined _LIBC]:
10845         Use prototypes rather than old-style function definitions.
10846         * lib/regexec.c (re_exec) [defined _REGEX_RE_COMP || defined _LIBC]:
10847         (transit_state_sb) [0]:
10848         (find_collation_sequence_value) [defined _LIBC]: Likewise.
10849
10850         * lib/regexec.c (re_search_internal): Simplify update of rm_so and
10851         rm_eo.
10852
10853         * lib/regcomp.c (re_compile_fastmap_iter, init_dfa, init_word_char):
10854         (optimize_subexps, lower_subexp):
10855         Don't assume 1<<31 has defined behavior on hosts with 32-bit int,
10856         since the signed shift might overflow.  Use 1u<<31 instead.
10857         * lib/regex_internal.h (bitset_set, bitset_clear, bitset_contain):
10858         Likewise.
10859         * lib/regexec.c (check_dst_limits_calc_pos_1,
10860         check_subexp_matching_top): Likewise.
10861
10862         * lib/regcomp.c (optimize_subexps, lower_subexp):
10863         Use CHAR_BIT rather than 8, for clarity.
10864         * lib/regexec.c (check_dst_limits_calc_pos_1):
10865         (check_subexp_matching_top): Likewise.
10866         * lib/regcomp.c (init_dfa): Make table_size unsigned, so that we don't
10867         have to worry about portability issues when shifting it left.
10868         Remove no-longer-needed test for table_size > 0.
10869         * lib/regcomp.c (parse_sub_exp): Do not shift more bits than there are
10870         in a word, as the resulting behavior is undefined.
10871         * lib/regexec.c (check_dst_limits_calc_pos_1): Likewise;
10872         in one case, a <= should have been an <, and in another case the
10873         whole test was missing.
10874         * lib/regex_internal.h (BYTE_BITS): Remove.  All uses changed to
10875         the standard name CHAR_BIT.
10876         * lib/regexec.c (match_ctx_add_entry): Don't assume that ~0 == -1;
10877         this is not true on one's complement and signed-magnitude hosts.
10878
10879         * lib/regex_internal.h (re_sub_match_top_t): Remove unused member
10880         next_last_offset.
10881         (struct re_dfa_t): Remove unused member states_alloc.
10882         * lib/regcomp.c (init_dfa): Don't initialize unused members.
10883
10884 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
10885
10886         * m4/regex.m4 (gl_REGEX): Require AC_SYS_LARGEFILE, Define
10887         _REGEX_LARGE_OFFSETS).  Test for regoff_t/off_t bug in 64-bit
10888         and large-file glibc and in 32-bit large-file Solaris.
10889
10890 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
10891
10892         * lib/regex_internal.c (re_string_reconstruct): Don't assume buffer
10893         lengths fit in regoff_t; this isn't true if regoff_t is the same
10894         width as size_t.
10895         * lib/regex.c (re_search_internal): 5th arg is LAST_START
10896         (= START + RANGE) instead of RANGE.  This avoids overflow
10897         problems when regoff_t is the same width as size_t.
10898         All callers changed.
10899         (re_search_2_stub): Check for overflow when adding the
10900         sizes of the two strings.
10901         (re_search_stub): Check for overflow when adding START
10902         to RANGE; if it occurs, substitute the extreme value.
10903
10904 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
10905
10906         * config/srclist.txt: Add glibc bugs 1273, 1278-1282, 1284.
10907
10908 2005-08-31  Jim Meyering  <jim@meyering.net>
10909
10910         * lib/regcomp.c (search_duplicated_node): Make first pointer arg
10911         a pointer-to-const.
10912         * lib/regex_internal.c (create_ci_newstate, create_cd_newstate):
10913         (register_state): Likewise.
10914         * lib/regexec.c (search_cur_bkref_entry, check_dst_limits):
10915         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
10916         (group_nodes_into_DFAstates): Likewise.
10917
10918 2005-08-31  Jim Meyering  <jim@meyering.net>
10919
10920         * check-module: Add a FIXME comment.
10921
10922 2005-08-31  Eric Blake  <ebb9@byu.net>
10923
10924         * modules/unistd-safer (Files): Add unistd--.h.
10925         * modules/stdio-safer (Files): Add stdio--.h.
10926
10927 2005-08-31  Derek Price  <derek@ximbiot.com>
10928
10929         * lib/getdelim.c (getdelim): Return EOF on EOF.
10930         Reported by Larry Jones <lawrence.jones@ugs.com>.
10931
10932 2005-08-31  Bruno Haible  <bruno@clisp.org>
10933
10934         Avoid unnecessary diffs in the generated lib/Makefile.am.
10935         * gnulib-tool (func_emit_lib_Makefile_am): Don't write the cmd into
10936         the generated files.
10937         (func_import): Don't set cmd.
10938
10939 2005-08-31  Bruno Haible  <bruno@clisp.org>
10940
10941         * lib/strstr.c: Include <stddef.h>, for NULL.
10942         * lib/strcasestr.c: Likewise.
10943         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
10944
10945 2005-08-31  Bruno Haible  <bruno@clisp.org>
10946
10947         * gnulib-tool: New option --macro-prefix.
10948         (func_import): Use macro_prefix.
10949         (import): Handle option --macro-prefix.
10950
10951 2005-08-31  Bruno Haible  <bruno@clisp.org>
10952
10953         * gnulib-tool (import): Rename most ac_* variables to cached_*.
10954         Also use new variables cached_lgpl, cached_libtool.
10955
10956 2005-08-31  Bruno Haible  <bruno@clisp.org>
10957
10958         * gnulib-tool (func_import): Require AC_GNU_SOURCE etc. instead of
10959         always instantiating them.
10960
10961 2005-08-31  Bruno Haible  <bruno@clisp.org>
10962
10963         * gnulib-tool (func_import): Read the previous cached settings
10964         from gnulib-cache.m4 and gnulib-comp.m4. Remove files that were
10965         earlier added by gnulib but are now dropped. Warn when a gnulib file
10966         overwrites a non-gnulib file.
10967
10968 2005-08-31  Bruno Haible  <bruno@clisp.org>
10969
10970         * gnulib-tool (func_import): Generate two files gnulib-cache.m4 and
10971         gnulib-comp.m4 instead of a single gnulib.m4, to make it easy for
10972         projects that don't keep autogenerated files in CVS. Put into
10973         actioncmd only the specified modules, not the transitive closure.
10974
10975 2005-08-31  Bruno Haible  <bruno@clisp.org>
10976
10977         * gnulib-tool (func_import): Fix defaulting of $libname and $libtool.
10978         Create directories that shall be filled.
10979         (import): Don't look for gl_* macros in configure.ac. Recurse across
10980         all directories containing a gnulib-cache.m4 files, if meaningful.
10981
10982 2005-08-31  Bruno Haible  <bruno@clisp.org>
10983
10984         * gnulib-tool (func_import): Emit also a stub for gl_LIBTOOL.
10985         (import): Set seen_libtool when we see gl_LIBTOOL.
10986
10987 2005-08-31  Bruno Haible  <bruno@clisp.org>
10988
10989         * gnulib-tool (func_import): Also copy m4/gnulib-tool.m4. Omit
10990         declaration macro definitions from generated gnulib.m4.
10991
10992 2005-08-30  Oskar Liljeblad  <oskar@osk.mine.nu>
10993
10994         * lib/iconvme.h: Add prototype for iconv_alloc.
10995
10996 2005-08-29  Simon Josefsson  <jas@extundo.com>
10997
10998         * lib/iconvme.c: Fix errno.
10999
11000 2005-08-29  Bruno Haible  <bruno@clisp.org>
11001
11002         * gnulib-tool: Enclose all occurrences of $destdir in "...", so
11003         that it works when the directory contains spaces.
11004
11005 2005-08-29  Bruno Haible  <bruno@clisp.org>
11006
11007         * gnulib-tool (import): Avoid unnecessary spaces in $avoidlist.
11008
11009 2005-08-29  Bruno Haible  <bruno@clisp.org>
11010
11011         * gnulib-tool (func_import): Emit more comments into gnulib.m4.
11012         Emit more advice.
11013
11014 2005-08-29  Bruno Haible  <bruno@clisp.org>
11015         and Stepan Kasal  <kasal@ucw.cz>
11016
11017         * check-module: If more parameters are given, check each of them
11018         separately; add more exceptions, as noted by Jim Meyering.
11019         (check_module): New procedure.
11020         (%exempt_header): Now contains all exceptions.
11021
11022 2005-08-29  Ben Pfaff  <blp@cs.stanford.edu>
11023
11024         * modules/byteswap (Makefile.am): Fix rule to not assume GNU make.
11025
11026 2005-08-29  Oskar Liljeblad  <oskar@osk.mine.nu>
11027
11028         * lib/iconvme.c: Split iconv_string into iconv_alloc.
11029
11030 2005-08-28  Bruno Haible  <bruno@clisp.org>
11031
11032         * m4/gnulib-tool.m4: New file.
11033
11034 2005-08-27  Jim Meyering  <jim@meyering.net>
11035
11036         * modules/unistd-safer (Files): Add pipe-safer.c.
11037         * modules/fcntl-safer (Files): Add creat-safer.c.
11038
11039 2005-08-27  Jim Meyering  <jim@meyering.net>
11040
11041         * m4/stdlib-safer.m4: New file.  From coreutils.
11042         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Add stdio--.h.
11043         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Add creat-safer.c to the
11044         AC_LIBSOURCES list and arrange to compile it via AC_LIBOBJ.
11045         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Likewise, add pipe-safer.c.
11046         Add pipe-safer.c and unistd--.h to the AC_LIBSOURCES list.
11047
11048 2005-08-27  Jim Meyering  <jim@meyering.net>
11049
11050         * lib/fopen-safer.c: Merge minor changes from coreutils.
11051         * lib/dup-safer.c: Likewise.
11052         * lib/fd-safer.c: Likewise.
11053
11054         Merge from coreutils.
11055         * lib/stdio--.h: New file.
11056         * lib/stdlib--.h: New file.
11057         * lib/mkstemp-safer.c: New file.
11058
11059         GNU tar needs these.
11060         * lib/pipe-safer.c: New file.
11061         * lib/creat-safer.c: New file.
11062         * lib/fcntl--.h (creat): Define to creat_safer.
11063         * lib/fcntl-safer.h: Include <sys/types.h> and declare creat_safer.
11064         * lib/unistd--.h (pipe): Define to pipe_safer.
11065         * lib/unistd-safer.h: Declare pipe_safer.
11066
11067 2005-08-26  Simon Josefsson  <jas@extundo.com>
11068
11069         * lib/getpass.c: Use _WIN32 instead of WIN32, suggested by Bruno
11070         Haible <bruno@clisp.org>.
11071
11072 2005-08-26  Paul Eggert  <eggert@cs.ucla.edu>
11073
11074         * lib/regex_internal.h: Remove all references to
11075         RE_NO_INTERNAL_PROTOTYPES; no longer neeeded now that we assume C89
11076         or better.
11077         (bitset_not, bitset_merge, bitset_not_merge):
11078         (bitset_mask, re_string_allocate, re_string_construct):
11079         (re_string_reconstruct, re_string_destruct, re_string_elem_size_at):
11080         (re_string_char_size_at, re_string_wchar_at, re_string_peek_byte_case):
11081         (re_string_fetch_byte_case, re_node_set_alloc, re_node_set_init_1):
11082         (re_node_set_init_2, re_node_set_init_copy, re_node_set_add_intersect):
11083         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
11084         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
11085         (re_node_set_remove_at, re_dfa_add_node, re_acquire_state):
11086         (re_acquire_state_context):
11087         Remove unnecessary forward decls.
11088         (re_string_char_size_at, re_string_wchar_at, re_string_elem_size_at):
11089         Put __attribute at function definition,
11090         now that the function decl has been removed.
11091         * lib/regex_internal.c (re_string_peek_byte_case):
11092         (re_string_fetch_byte_case, re_node_set_compare, re_node_set_contains):
11093         Likewise.
11094
11095 2005-08-25  Stepan Kasal  <kasal@ucw.cz>
11096
11097         * m4/regex.m4: Add AC_PREREQ(2.50).
11098         (gl_REGEX): If --with-included-regex was given, skip the autodetection.
11099
11100 2005-08-25  Simon Josefsson  <jas@extundo.com>
11101
11102         * m4/getpass.m4: Check for termios.h, tcgetattr, tcsetattr, and
11103         __fsetlocking.
11104
11105 2005-08-25  Simon Josefsson  <jas@extundo.com>
11106
11107         * lib/getpass.c: Add WIN32 implementation.  Conditionalize use of
11108         termios.h, tcgetattr, tcsetattr and __fsetlocking.  Remove some
11109         GLIBC specific code.
11110
11111 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
11112
11113         Make regex safe for g++.  This fixes one real bug (an "err"
11114         that should have been "*err").  g++ problem reported by
11115         Sam Steingold.
11116         * lib/regex_internal.h (re_calloc): New macro, consistent with
11117         re_malloc etc.  All callers of calloc changed to use re_calloc.
11118         * lib/regex_internal.c (build_wcs_upper_buffer): Return reg_errcode_t,
11119         not int.  All callers changed.
11120         * lib/regcomp.c (re_compile_fastmap_iter): Don't use
11121         alloca (mb_cur_max); just use an array of size MB_LEN_MAX.
11122         * lib/regexec.c (push_fail_stack): Use re_realloc, not realloc.
11123         (find_recover_state): Change "err" to "*err"; this fixes what
11124         appears to be a real bug.
11125         (check_arrival_expand_ecl_sub): Be consistent about reg_errcode_t
11126         versus int.
11127
11128 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
11129
11130         * modules/regex (Depends-on): Add malloc, since the code
11131         assumes that !malloc(0) means failure.
11132
11133 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
11134
11135         * lib/regexec.c (set_regs): Don't alloca with an unbounded size.
11136
11137         alloca modernization/simplification for regex.
11138         * lib/regex.c: Remove portability cruft for alloca.  This no longer
11139         needs to be at the start of the file, and can be moved into
11140         regex_internal.h and simplified.
11141         * lib/regex_internal.h: Include <alloca.h>.
11142         (__libc_use_alloca) [!defined _LIBC]: New macro.
11143         * lib/regexec.c (build_trtable): Remove "#ifdef _LIBC", since the code
11144         now works outside glibc.
11145
11146 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
11147
11148         * config/srclist.txt: Add glibc bugs 1241, 1245.
11149
11150 2005-08-25  Jim Meyering  <jim@meyering.net>
11151
11152         * lib/open-safer.c: Include <config.h>.
11153         Otherwise, we'd lose LARGEFILE support in any file using
11154         e.g. "fcntl--.h"
11155
11156 2005-08-25  Bruno Haible  <bruno@clisp.org>
11157
11158         * m4/minmax.m4: Require autoconf 2.52.
11159         (gl_MINMAX_IN_HEADER): Add comments. Use m4_pushdef/m4_popdef instead
11160         of define/undefine. Use AS_TR_SH and AS_TR_CPP as more robust
11161         alternatives of translit over the alphabet.
11162         Based on a patch from Stepan Kasal <kasal@ucw.cz>.
11163
11164 2005-08-24  Simon Josefsson  <jas@extundo.com>
11165
11166         * tests/test-getpass.c: New file.
11167
11168 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
11169
11170         * m4/regex.m4 (gl_REGEX): Use POSIX-compliant spellings when testing
11171         for GNU regex features.
11172
11173 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
11174
11175         * lib/regcomp.c (regerror): 2nd arg is 'restrict', as per POSIX.
11176         * lib/regex.h (regerror): Likewise.
11177
11178         * lib/regex.c: Do not include <sys/types.h>, as POSIX no longer
11179         requires this.  (The code never needed it.)
11180
11181         * lib/regcomp.c, regex_internal.c, regex_internal.h, regexec.c:
11182         All uses of recently-renamed identifiers changed to use the new,
11183         POSIX-compliant names.  The code will build and run just fine
11184         without these changes, but it's better to eat our own dog food
11185         and use the standard-conforming names.
11186
11187         * lib/regex.h: Fix a multitude of POSIX name space violations.
11188         These changes have an effect only for programs that define
11189         _POSIX_C_SOURCE, _POSIX_SOURCE, or _XOPEN_SOURCE; they
11190         do not change anything for programs compiled in the normal way.
11191         Also, there is no effect on the ABI.
11192
11193         (_REGEX_SOURCE): New macro.
11194         Do not include <stddef.h> if _XOPEN_SOURCE and VMS are both
11195         defined and _GNU_SOURCE is not; this fixes a name space violation.
11196
11197         Rename the following macros to obey POSIX requirements.
11198         The old names are still visible as macros if _REGEX_SOURCE is defined.
11199         (REG_BACKSLASH_ESCAPE_IN_LISTS): renamed from
11200         RE_BACKSLASH_ESCAPE_IN_LISTS.
11201         (REG_BK_PLUS_QM): renamed from RE_BK_PLUS_QM.
11202         (REG_CHAR_CLASSES): renamed from RE_CHAR_CLASSES.
11203         (REG_CONTEXT_INDEP_ANCHORS): renamed from RE_CONTEXT_INDEP_ANCHORS.
11204         (REG_CONTEXT_INDEP_OPS): renamed from RE_CONTEXT_INDEP_OPS.
11205         (REG_CONTEXT_INVALID_OPS): renamed from RE_CONTEXT_INVALID_OPS.
11206         (REG_DOT_NEWLINE): renamed from RE_DOT_NEWLINE.
11207         (REG_DOT_NOT_NULL): renamed from RE_DOT_NOT_NULL.
11208         (REG_HAT_LISTS_NOT_NEWLINE): renamed from RE_HAT_LISTS_NOT_NEWLINE.
11209         (REG_INTERVALS): renamed from RE_INTERVALS.
11210         (REG_LIMITED_OPS): renamed from RE_LIMITED_OPS.
11211         (REG_NEWLINE_ALT): renamed from RE_NEWLINE_ALT.
11212         (REG_NO_BK_BRACES): renamed from RE_NO_BK_BRACES.
11213         (REG_NO_BK_PARENS): renamed from RE_NO_BK_PARENS.
11214         (REG_NO_BK_REFS): renamed from RE_NO_BK_REFS.
11215         (REG_NO_BK_VBAR): renamed from RE_NO_BK_VBAR.
11216         (REG_NO_EMPTY_RANGES): renamed from RE_NO_EMPTY_RANGES.
11217         (REG_UNMATCHED_RIGHT_PAREN_ORD): renamed from
11218         RE_UNMATCHED_RIGHT_PAREN_ORD.
11219         (REG_NO_POSIX_BACKTRACKING): renamed from RE_NO_POSIX_BACKTRACKING.
11220         (REG_NO_GNU_OPS): renamed from RE_NO_GNU_OPS.
11221         (REG_DEBUG): renamed from RE_DEBUG.
11222         (REG_INVALID_INTERVAL_ORD): renamed from RE_INVALID_INTERVAL_ORD.
11223         (REG_IGNORE_CASE): renamed from RE_ICASE.  This renaming is a bit
11224         unusual, since we can't clash with the POSIX REG_ICASE.
11225         (REG_CARET_ANCHORS_HERE): renamed from RE_CARET_ANCHORS_HERE.
11226         (REG_CONTEXT_INVALID_DUP): renamed from RE_CONTEXT_INVALID_DUP.
11227         (REG_NO_SUB): renamed from RE_NO_SUB.
11228         (REG_SYNTAX_EMACS): renamed from RE_SYNTAX_EMACS.
11229         (REG_SYNTAX_AWK): renamed from RE_SYNTAX_AWK.
11230         (REG_SYNTAX_GNU_AWK): renamed from RE_SYNTAX_GNU_AWK.
11231         (REG_SYNTAX_POSIX_AWK): renamed from RE_SYNTAX_POSIX_AWK.
11232         (REG_SYNTAX_GREP): renamed from RE_SYNTAX_GREP.
11233         (REG_SYNTAX_EGREP): renamed from RE_SYNTAX_EGREP.
11234         (REG_SYNTAX_POSIX_EGREP): renamed from RE_SYNTAX_POSIX_EGREP.
11235         (REG_SYNTAX_ED): renamed from RE_SYNTAX_ED.
11236         (REG_SYNTAX_SED): renamed from RE_SYNTAX_SED.
11237         (_REG_SYNTAX_POSIX_COMMON): renamed from _RE_SYNTAX_POSIX_COMMON.
11238         (REG_SYNTAX_POSIX_BASIC): renamed from RE_SYNTAX_POSIX_BASIC.
11239         (REG_SYNTAX_POSIX_MINIMAL_BASIC): renamed from
11240         RE_SYNTAX_POSIX_MINIMAL_BASIC.
11241         (REG_SYNTAX_POSIX_EXTENDED): renamed from RE_SYNTAX_POSIX_EXTENDED.
11242         (REG_SYNTAX_POSIX_MINIMAL_EXTENDED): renamed from
11243         RE_SYNTAX_POSIX_MINIMAL_EXTENDED.
11244         (REG_DUP_MAX): renamed from RE_DUP_MAX.  No need to undef it.
11245         (REG_UNALLOCATED): Renamed from REGS_UNALLOCATED.
11246         (REG_REALLOCATE): Renamed from REGS_REALLOCATE.
11247         (REG_FIXED): Renamed from REGS_FIXED.
11248         (REG_NREGS): Renamed from RE_NREGS.
11249
11250         (REG_ICASE, REG_NEWLINE, REG_NOSUB): Do not depend on the values
11251         of other REG_* macros, since POSIX says the user is allowed to
11252         #undef these macros selectively.
11253
11254         (reg_errcode_t): Update comment stating what other tables need
11255         to be consistent.
11256
11257         Rename the following enum values to obey POSIX requirements.
11258         The old names are still visible as macros.
11259         (_REG_ENOSYS): Renamed from REG_ENOSYS.  Define even if _XOPEN_SOURCE
11260         is not defined, since GNU is supposed to be a superset of POSIX as
11261         much as possible, and since we want reg_errcode_t to be a signed
11262         type for implementation consistency.
11263         (_REG_NOERROR): Renamed from REG_NOERROR.
11264         (_REG_NOMATCH): Renamed from REG_NOMATCH.
11265         (_REG_BADPAT): Renamed from REG_BADPAT.
11266         (_REG_ECOLLATE): Renamed from REG_ECOLLATE.
11267         (_REG_ECTYPE): Renamed from REG_ECTYPE.
11268         (_REG_EESCAPE): Renamed from REG_EESCAPE.
11269         (_REG_ESUBREG): Renamed from REG_ESUBREG.
11270         (_REG_EBRACK): Renamed from REG_EBRACK.
11271         (_REG_EPAREN): Renamed from REG_EPAREN.
11272         (_REG_EBRACE): Renamed from REG_EBRACE.
11273         (_REG_BADBR): Renamed from REG_BADBR.
11274         (_REG_ERANGE): Renamed from REG_ERANGE.
11275         (_REG_ESPACE): Renamed from REG_ESPACE.
11276         (_REG_BADRPT): Renamed from REG_BADRPT.
11277         (_REG_EEND): Renamed from REG_EEND.
11278         (_REG_ESIZE): Renamed from REG_ESIZE.
11279         (_REG_ERPAREN): Renamed from REG_ERPAREN.
11280         (REG_ENOSYS, REG_NOERROR, REG_NOMATCH, REG_BADPAT, REG_ECOLLATE):
11281         (REG_ECTYPE, REG_EESCAPE, REG_ESUBREG, REG_EBRACK, REG_EPAREN):
11282         (REG_EBRACE, REG_BADBR, REG_ERANGE, REG_ESPACE, REG_BADRPT, REG_EEND):
11283         (REG_ESIZE, REG_ERPAREN): Now macros, not enum constants.
11284
11285         (_REG_RE_NAME, _REG_RM_NAME): New macros.
11286         (REG_TRANSLATE_TYPE): Renamed from RE_TRANSLATE_TYPE.  All uses
11287         changed.  But support the old name if the new one is not defined
11288         and if _REGEX_SOURCE.
11289
11290         Change the following member names in struct re_pattern_buffer.
11291         The old names are still supported if !_REGEX_SOURCE.
11292         The new names are always supported, regardless of _REGEX_SOURCE.
11293         (re_buffer): Renamed from buffer.
11294         (re_allocated): Renamed from allocated.
11295         (re_used): Renamed from used.
11296         (re_syntax): Renamed from syntax.
11297         (re_fastmap): Renamed from fastmap.
11298         (re_translate): Renamed from translate.
11299         (re_can_be_null): Renamed from can_be_null.
11300         (re_regs_allocated): Renamed from regs_allocated.
11301         (re_fastmap_accurate): Renamed from fastmap_accurate.
11302         (re_no_sub): Renamed from no_sub.
11303         (re_not_bol): Renamed from not_bol.
11304         (re_not_eol): Renamed from not_eol.
11305         (re_newline_anchor): Renamed from newline_anchor.
11306
11307         Change the following member names in struct re_registers.
11308         The old names are still supported if !_REGEX_SOURCE.
11309         The new names are always supported, regardless of _REGEX_SOURCE.
11310         (rm_num_regs): Renamed from num_regs.
11311         (rm_start): Renamed from start.
11312         (rm_end): Renamed from end.
11313
11314         (re_set_syntax, re_compile_pattern, re_compile_fastmap):
11315         (re_search, re_search_2, re_match, re_match_2, re_set_registers):
11316         Prepend __ to parameter names.
11317
11318         Undo yesterday's changes.
11319
11320 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
11321
11322         * config/srclist.txt: Remove glibc bug 1233 and add 1236, which
11323         supersedes it. Add glibc bugs 1237, 1238, 1240.  Comment out
11324         lib/regex.c.
11325
11326 2005-08-24  Jim Meyering  <jim@meyering.net>
11327
11328         Sync from coreutils.
11329         * m4/fcntl-safer.m4: New file.
11330
11331         * m4/xgetcwd.m4: Use AC_LIBSOURCES and AC_LIBOBJ to indicate source
11332         and object files for this module.
11333
11334 2005-08-24  Jim Meyering  <jim@meyering.net>
11335
11336         Sync from coreutils.
11337         * lib/fcntl--.h, lib/fcntl-safer.h, lib/open-safer.c: New files.
11338
11339 2005-08-24  Jim Meyering  <jim@meyering.net>
11340
11341         * modules/xgetcwd (Makefile.am): Remove `lib_SOURCES += ...' line,
11342         now that xgetcwd.m4 requires xgetcwd.c and xgetcwd.h.
11343
11344 2005-08-24  Jim Meyering  <jim@meyering.net>
11345
11346         * modules/fcntl-safer: New module.
11347         * modules/fts (Depends-on): Add fcntl-safer.
11348         * MODULES.html.sh (File descriptor based Input/Output):
11349         Add fcntl-safer.
11350
11351 2005-08-24  Bruno Haible  <bruno@clisp.org>
11352
11353         Support for unit test modules.
11354         * modules/README: Mention tests modules.
11355         * modules/TEMPLATE-TESTS: New file.
11356         * gnulib-tool: New options --extract-tests-module, --with-tests and
11357         --tests-base (unused for the moment).
11358         (testsbase, inctests): New variables.
11359         (func_all_modules): Exclude TEMPLATE-TESTS and *-tests.
11360         (func_verify_module): Exclude TEMPLATE-TESTS.
11361         (func_verify_nontests_module, func_verify_tests_module): New functions.
11362         (func_get_dependencies): Add implicit dependency for tests modules.
11363         (func_get_tests_module): New function.
11364         (func_modules_transitive_closure): When --with-tests was specified,
11365         include the unit tests as well, unless explicitly avoided.
11366         (func_emit_lib_Makefile_am): Ignore the tests modules here.
11367         (func_emit_tests_Makefile_am): New function.
11368         (func_create_testdir): When --with-tests was specified, emit a
11369         tests/ directory.
11370         * MODULES.html.sh (Future developments): Update.
11371
11372 2005-08-24  Bruno Haible  <bruno@clisp.org>
11373
11374         * modules/tls-tests: New file.
11375         * tests/test-tls.c: New file, from GNU gettext.
11376
11377 2005-08-24  Bruno Haible  <bruno@clisp.org>
11378
11379         * modules/lock-tests: New file.
11380         * tests/test-lock.c: New file, from GNU gettext.
11381
11382 2005-08-24  Bruno Haible  <bruno@clisp.org>
11383
11384         * lib/lock.h: Add multiple inclusion guard.
11385         * lib/tls.h: Add multiple inclusion guard.
11386
11387 2005-08-24  Bruno Haible  <bruno@clisp.org>
11388
11389         * gnulib-tool: Add support for the --aux-dir option to
11390         --create-testdir, --create-megatestdir, --test, --megatest.
11391         (func_create_testdir, func_create_megatestdir): Optionally emit a
11392         AC_CONFIG_AUX_DIR directive.
11393         (create-testdir, create-megatestdir, test, megatest): Provide a
11394         default value for $auxdir.
11395
11396 2005-08-24  Bruno Haible  <bruno@clisp.org>
11397
11398         * gnulib-tool (import): Use compound statement instead of subshell
11399         where possible.
11400
11401 2005-08-24  Bruno Haible  <bruno@clisp.org>
11402
11403         * gnulib-tool (import): Change --aux-dir default to "build-aux".
11404
11405 2005-08-24  Bruno Haible  <bruno@clisp.org>
11406
11407         * gnulib-tool (func_version): Update.
11408
11409 2005-08-24  Bruno Haible  <bruno@clisp.org>
11410
11411         * gnulib-tool (func_import, func_create_testdir,
11412         func_create_megatestdir): Quote all autoconf macro arguments.
11413
11414 2005-08-24  Bruno Haible  <bruno@clisp.org>
11415
11416         * gnulib-tool (func_create_megatestdir): Call autoreconf without the
11417         option --force, because --force causes the aclocal.m4 of each
11418         subdirectory to be newer than the corresponding config.h.in.
11419
11420 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
11421
11422         * m4/regex.m4 (gl_INCLUDED_REGEX): Remove; no longer used.
11423         All contents moved to gl_REGEX.
11424         (gl_REGEX): Don't bother checking whether lib/regex.c exists;
11425         assume that it does.
11426
11427 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
11428
11429         * lib/regex.h (REG_NOSYS)
11430         [!defined _XOPEN_SOURCE && 200112L <= _POSIX_C_SOURCE]:
11431         Define, since POSIX requires it as of 2001.
11432         (_REG_ENOSYS)
11433         [! (defined _XOPEN_SOURCE || 200112L <= _POSIX_C_SOURCE)]:
11434         New private symbol, used to keep the enum signed in all cases.
11435         * lib/regex.h (RE_NO_EMPTY_RANGES): Fix doc bug reported by James
11436         Youngman in
11437         <http://lists.gnu.org/archive/html/bug-gnulib/2005-07/msg00132.html>.
11438
11439         * lib/regex_internal.c (re_string_skip_chars, register_state):
11440         (calc_state_hash):
11441         Remove forward decls; no longer needed now that we use prototypes.
11442         * lib/regexec.c (acquire_init_state_context, check_halt_node_context):
11443         (proceed_next_node, pop_fail_stack, sub_epsilon_src_nodes):
11444         (clean_state_log_if_needed): Likewise.
11445
11446 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
11447
11448         * config/srclist.txt: Add glibc bugs 1231-1233.
11449
11450 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
11451
11452         Fix problems reported by Sam Steingold in
11453         <http://lists.gnu.org/archive/html/bug-gnulib/2005-08/msg00007.html>.
11454         * lib/regexec.c (sift_states_bkref): Fix portability bug: the code
11455         assumed that reg_errcode_t is a signed type, which is not
11456         necessarily true if _XOPEN_SOURCE is not defined.
11457         * lib/regex_internal.c (calc_state_hash): Put 'inline' before type,
11458         since some compilers warn about it otherwise.
11459
11460 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
11461
11462         * lib/regcomp.c (create_initial_state): Remove duplicate decl.
11463         (init_word_char, create_initial_state, duplicate_node_closure):
11464         (fetch_token, peek_token_bracket, build_range_exp):
11465         (build_collating_symbol): Remove forward decls; no longer needed
11466         now that we use prototypes.
11467
11468         * lib/regcomp.c:
11469         (re_compile_pattern, re_set_syntax, re_compile_fastmap):
11470         (re_compile_fastmap_iter, regcomp, regerror, regfree):
11471         (re_compile_internal, init_dfa, init_word_char, free_workarea_compile):
11472         (create_initial_state, optimize_utf8, analyze, postorder, preorder):
11473         (optimize_subexps, lower_subexps, lower_subexp, calc_first, calc_next):
11474         (link_nfa_nodes, duplicate_node_closure, search_duplicated_node):
11475         (duplicate_node, calc_inveclosure, calc_eclosure, calc_eclosure_iter):
11476         (fetch_token, peek_token, peek_token_bracket, parse, parse_reg_exp):
11477         (parse_branch, parse_expression, parse_sub_exp, parse_dup_op):
11478         (build_range_exp, build_collating_symbol, parse_bracket_exp):
11479         (parse_bracket_element, parse_bracket_symbol, build_equiv_class):
11480         (build_charclass, build_charclass_op, fetch_number, create_tree):
11481         (create_token_tree, mark_opt_subexp, duplicate_tree):
11482         Use prototypes rather than old-style definitions.
11483
11484         * lib/regex_internal.c:
11485         (re_string_allocate, re_string_construct, re_string_realloc_buffers):
11486         (re_string_construct_common, build_wcs_buffer, build_wcs_upper_buffer):
11487         (re_string_skip_chars, build_upper_buffer, re_string_translate_buffer):
11488         (re_string_reconstruct, re_string_peek_byte_case):
11489         (re_string_fetch_byte_case, re_string_destruct, re_string_context_at):
11490         (re_node_set_alloc, re_node_set_init_1, re_node_set_init_2):
11491         (re_node_set_init_copy, re_node_set_add_intersect):
11492         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
11493         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
11494         (re_node_set_remove_at, re_dfa_add_node, calc_state_hash):
11495         (re_acquire_state, re_acquire_state_context, register_state):
11496         (create_ci_newstate, create_cd_newstate, free_state):
11497         Likewise.
11498         * lib/regexec.c (regexec, re_match, re_search, re_match_2,
11499         re_search_2):
11500         (re_search_2_stub, re_search_stub, re_copy_regs, re_set_registers):
11501         (re_search_internal, prune_impossible_nodes):
11502         (acquire_init_state_context, check_matching, static):
11503         (check_halt_node_context, check_halt_state_context, proceed_next_node):
11504         (push_fail_stack, pop_fail_stack, set_regs, free_fail_stack_return):
11505         (update_regs, sift_states_backward, build_sifted_states):
11506         (clean_state_log_if_needed, merge_state_array):
11507         (update_cur_sifted_state, add_epsilon_src_nodes):
11508         (sub_epsilon_src_nodes, check_dst_limits, check_dst_limits_calc_pos_1):
11509         (check_dst_limits_calc_pos, check_subexp_limits, sift_states_bkref):
11510         (sift_states_iter_mb, transit_state, merge_state_with_log, static):
11511         (find_recover_state, check_subexp_matching_top, transit_state_mb):
11512         (transit_state_bkref, get_subexp, get_subexp_sub, find_subexp_node):
11513         (check_arrival, check_arrival_add_next_nodes):
11514         (check_arrival_expand_ecl, check_arrival_expand_ecl_sub):
11515         (expand_bkref_cache, build_trtable, group_nodes_into_DFAstates):
11516         (check_node_accept_bytes, check_node_accept, extend_buffers):
11517         (match_ctx_init, match_ctx_clean, match_ctx_free, match_ctx_add_entry):
11518         (search_cur_bkref_entry, match_ctx_add_subtop, match_ctx_add_sublast):
11519         (sift_ctx_init):
11520         Likewise.
11521
11522         * lib/regex_internal.h:
11523         (re_string_allocate, re_string_construct, re_string_reconstruct):
11524         (re_string_realloc_buffers, build_wcs_buffer, build_wcs_upper_buffer):
11525         (build_upper_buffer, re_string_translate_buffer, re_string_destruct):
11526         (re_string_elem_size_at, re_string_char_size_at, re_string_wchar_at):
11527         (re_string_context_at, re_string_peek_byte_case):
11528         (re_string_fetch_byte_case): Declare even if RE_NO_INTERNAL_PROTOTYPES
11529         is defined, since we now use prototypes always.
11530
11531         * lib/regex.h (_RE_ARGS): Remove.  No longer needed, since we assume
11532         C89 or better.  All uses removed.
11533
11534 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
11535
11536         * config/srclist.txt: Add glibc bugs 1220-1227.
11537
11538 2005-08-20  Jim Meyering  <jim@meyering.net>
11539
11540         * lib/regexec.c (regexec, re_search_stub) [!_LIBC]: Omit declaration
11541         of unused local, dfa.
11542
11543 2005-08-20  Bruno Haible  <bruno@clisp.org>
11544
11545         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_GNU_SOURCE.
11546
11547 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
11548
11549         * lib/regex_internal.c (re_string_realloc_buffers, re_node_set_insert):
11550         (re_node_set_insert_last, re_dfa_add_node):
11551         Rename local variables to avoid GCC shadowing warnings.
11552
11553 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
11554
11555         * lib/regex_internal.c (re_acquire_state, re_acquire_state_context)
11556         [defined lint]: Suppress bogus uninitialized-variable warnings.
11557
11558         * lib/regcomp.c (duplicate_node): Return new index, not an error code,
11559         and let the caller return REG_ESPACE if out of space.  This
11560         removes an uninitialied-variable warning with GCC 4.0.1, and also
11561         avoids taking the address of a local variable.  All callers
11562         changed.
11563
11564 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
11565
11566         * config/srclist.txt: Comment out $LIBCSRC/posix/regex_internal.c,
11567         $LIBCSRC/posix/regexec.c.
11568         Add glibc bug 1217 for regcomp.c.
11569
11570 2005-08-19  Jim Meyering  <jim@meyering.net>
11571
11572         * lib/regexec.c (proceed_next_node): Redo local variables to
11573         avoid GCC shadowing warnings.
11574
11575 2005-08-18  Bruno Haible  <bruno@clisp.org>
11576
11577         * lib/strstr.c (strstr): Fix return value in multibyte case.
11578         * lib/strcasestr.c (strcasestr): Likewise.
11579
11580 2005-08-17  Paul Eggert  <eggert@cs.ucla.edu>
11581
11582         * lib/regex.h: Remove useless space-before-tab.  From coreutils.
11583
11584 2005-08-17  Jim Meyering  <jim@meyering.net>
11585
11586         Make the %s format (seconds since the epoch) work for a negative
11587         number and when used with a zero-padded field width, e.g. %015s.
11588
11589         * lib/strftime.c (my_strftime): Move the `do_number_sign_and_padding'
11590         label so that it precedes the code to set `digits'.  Otherwise,
11591         %0Ns wouldn't work.  Before this change, `date -d @-22 +%05s' would
11592         print `00-22'.  Now, it prints `-0022', as it should.
11593
11594 2005-08-17  Bruno Haible  <bruno@clisp.org>
11595
11596         * modules/strstr (Files): Add m4/mbrtowc.m4.
11597         (Depends-on): Add mbuiter.
11598
11599 2005-08-17  Bruno Haible  <bruno@clisp.org>
11600
11601         * modules/strcasestr: New file.
11602         * MODULES.html.sh (String handling, based on ANSI C 89): Add
11603         strcasestr.
11604
11605 2005-08-17  Bruno Haible  <bruno@clisp.org>
11606
11607         * modules/strcase (Depends-on): Add mbuiter. Remove strnlen1, mbchar.
11608
11609 2005-08-17  Bruno Haible  <bruno@clisp.org>
11610
11611         * modules/mbuiter: New file.
11612         * MODULES.html.sh (Extended multibyte and wide character utilities):
11613         Add mbuiter.
11614
11615 2005-08-17  Bruno Haible  <bruno@clisp.org>
11616
11617         * m4/strstr.m4 (gl_FUNC_STRSTR): Use the replacement function always.
11618         (gl_PREREQ_STRSTR): Use gl_FUNC_MBRTOWC.
11619
11620 2005-08-17  Bruno Haible  <bruno@clisp.org>
11621
11622         * m4/strcasestr.m4: New file.
11623
11624 2005-08-17  Bruno Haible  <bruno@clisp.org>
11625
11626         * lib/strstr.h: Ignore HAVE_STRSTR, always declare the gnulib function.
11627         * lib/strstr.c: Completely rewritten, with multibyte locale support.
11628
11629 2005-08-17  Bruno Haible  <bruno@clisp.org>
11630
11631         * lib/strcasestr.h: New file.
11632         * lib/strcasestr.c: New file.
11633
11634 2005-08-17  Bruno Haible  <bruno@clisp.org>
11635
11636         * lib/strcasecmp.c: Use mbuiter.h.
11637
11638 2005-08-17  Bruno Haible  <bruno@clisp.org>
11639
11640         * lib/mbuiter.h: New file.
11641
11642 2005-08-16  Paul Eggert  <eggert@cs.ucla.edu>
11643
11644         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Do not override the results
11645         of gl_GETOPT_SUBSTITUTE.  That way, if both gl_GETOPT_SUBSTITUTE
11646         and gl_GETOPT are both invoked via different paths (as happens
11647         with GNU tar CVS because it uses both argp and getopt), the former
11648         wins.
11649
11650 2005-08-16  Bruno Haible  <bruno@clisp.org>
11651
11652         * modules/tls: New file.
11653         * MODULES.html.sh (Multithreading): Add tls.
11654
11655 2005-08-16  Bruno Haible  <bruno@clisp.org>
11656
11657         * modules/strnlen1: New file.
11658         * MODULES.html.sh (String handling): Add strnlen1.
11659
11660 2005-08-16  Bruno Haible  <bruno@clisp.org>
11661
11662         * modules/strcase (Files): Add m4/mbrtowc.m4.
11663         (Depends-on): Add strnlen1, mbchar.
11664
11665 2005-08-16  Bruno Haible  <bruno@clisp.org>
11666
11667         * modules/mbiter: New file.
11668         * MODULES.html.sh (Extended multibyte and wide character utilities):
11669         Add mbiter.
11670
11671 2005-08-16  Bruno Haible  <bruno@clisp.org>
11672
11673         * modules/mbfile: New file.
11674         * MODULES.html.sh (Extended multibyte and wide character utilities):
11675         Add mbfile.
11676
11677 2005-08-16  Bruno Haible  <bruno@clisp.org>
11678
11679         * modules/mbchar: New file.
11680         * MODULES.html.sh (Extended multibyte and wide character utilities):
11681         New section.
11682
11683 2005-08-16  Bruno Haible  <bruno@clisp.org>
11684
11685         * m4/tls.m4: New file, from GNU gettext.
11686
11687 2005-08-16  Bruno Haible  <bruno@clisp.org>
11688
11689         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Use the replacement function
11690         always.
11691         (gl_PREREQ_STRCASECMP): Use gl_FUNC_MBRTOWC.
11692
11693 2005-08-16  Bruno Haible  <bruno@clisp.org>
11694
11695         * m4/mbiter.m4: New file.
11696
11697 2005-08-16  Bruno Haible  <bruno@clisp.org>
11698
11699         * m4/mbfile.m4: New file.
11700
11701 2005-08-16  Bruno Haible  <bruno@clisp.org>
11702
11703         * m4/mbchar.m4: New file.
11704
11705 2005-08-16  Bruno Haible  <bruno@clisp.org>
11706
11707         * lib/tls.h: New file, from GNU gettext.
11708         * lib/tls.c: New file, from GNU gettext.
11709
11710 2005-08-16  Bruno Haible  <bruno@clisp.org>
11711
11712         * lib/strnlen1.h: New file.
11713         * lib/strnlen1.c: New file.
11714
11715 2005-08-16  Bruno Haible  <bruno@clisp.org>
11716
11717         * lib/strcasecmp.c (struct mbiter_multi): Remove at_end field.
11718         (mbi_init): Update.
11719         (mbi_avail, mbi_advance): Let the iteration end before the terminating
11720         NUL byte, not after it.
11721
11722 2005-08-16  Bruno Haible  <bruno@clisp.org>
11723
11724         * lib/strcase.h (strcasecmp): Add note in comments.
11725         * lib/strncasecmp.c: Use code from strcasecmp.c.
11726         * lib/strcasecmp.c: Use mbchar module. Define private mbiter variant.
11727         (strcasecmp): Work correctly in multibyte locales.
11728
11729 2005-08-16  Bruno Haible  <bruno@clisp.org>
11730
11731         * lib/mbiter.h: New file.
11732
11733 2005-08-16  Bruno Haible  <bruno@clisp.org>
11734
11735         * lib/mbfile.h: New file.
11736
11737 2005-08-16  Bruno Haible  <bruno@clisp.org>
11738
11739         * lib/mbchar.h: New file.
11740         * lib/mbchar.c: New file.
11741
11742 2005-08-16  Bruno Haible  <bruno@clisp.org>
11743
11744         * lib/mbchar.h (mb_cmp, mb_casecmp): Order the invalid characters after
11745         the valid ones. Makes the comparison operations transitive:
11746         cmp (a, b) < 0 && cmp (b, c) < 0 ==> cmp (a, c) < 0.
11747         * lib/strcasecmp.c (strcasecmp): Use mb_casecmp.
11748
11749 2005-08-15  Simon Josefsson  <jas@extundo.com>
11750
11751         * modules/ssize_t (License): Change to 'unlimited'.
11752
11753         * gnulib-tool (sed_extract_prog): Recognize 'unlimited' license.
11754
11755 2005-08-15  Paul Eggert  <eggert@cs.ucla.edu>
11756
11757         * config/srclist.txt: Comment out $LIBCSRC/posix/regex.h.
11758         Add comments for each pending glibc patch.
11759
11760 2005-08-15  Bruno Haible  <bruno@clisp.org>
11761
11762         * lib/regex.h (__restrict_arr): Don't define to __restrict if
11763         __cplusplus is defined.
11764
11765 2005-08-14  Jim Meyering  <jim@meyering.net>
11766
11767         Sync from coreutils.
11768
11769         * lib/fts-cycle.c (setup_dir, enter_dir, leave_dir, free_dir):
11770         Use the hash-table-based cycle-detection code not just when
11771         FTS_TIGHT_CYCLE_CHECK if specified, but also with FTS_LOGICAL.
11772         Reported by James Youngman in
11773         <http://lists.gnu.org/archive/html/bug-gnulib/2005-08/msg00011.html>.
11774         * lib/fts_.h: Mention that with FTS_LOGICAL, we use
11775         FTS_TIGHT_CYCLE_CHECK.
11776         * lib/fts.c (fts_cross_check) [FTS_DEBUG]:
11777         s/active_dir_ht/fts_cycle.ht/. This lets us compile with -DFTS_DEBUG,
11778         once again.
11779         * lib/fts.c [! _LIBC]: Include "lstat.h" rather than rolling our own.
11780         * lib/fts.c (fd_safer): Remove decl.
11781         Include fcntl--.h rather than unistd-safer.h
11782         (fts_safe_changedir): Don't call fd_safer; no longer needed
11783         now that we include fcntl--.h.
11784
11785 2005-08-12  Simon Josefsson  <jas@extundo.com>
11786
11787         * modules/getndelim2: Use ssize_t module.
11788         * modules/getnline: Likewise.
11789         * modules/safe-read: Likewise.
11790         * modules/xreadlink: Likewise.
11791
11792         * modules/ssize_t: New file.
11793
11794 2005-08-12  Simon Josefsson  <jas@extundo.com>
11795
11796         * m4/readline.m4: Look for termcap, curses or ncurses if required.
11797
11798 2005-08-12  Simon Josefsson  <jas@extundo.com>
11799
11800         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
11801         ssize_t.
11802
11803 2005-08-12  Simon Josefsson  <jas@extundo.com>
11804
11805         * MODULES.html.sh (Extra functions based on ANSI C 89: Misc): Add
11806         readline, getdelim and check_version.
11807         (Support for systems lacking ISO C 99: Sizes of integer types):
11808         Add size_max.
11809
11810 2005-08-12  Bruno Haible  <bruno@clisp.org>
11811
11812         * m4/readline.m4 (gl_FUNC_READLINE): Look for ncurses first.
11813
11814 2005-08-11  Simon Josefsson  <jas@extundo.com>
11815
11816         * modules/readline: New file.
11817
11818         * modules/strnlen (Files): Add strnlen.h.
11819
11820 2005-08-11  Simon Josefsson  <jas@extundo.com>
11821
11822         * m4/readline.m4: New file.
11823
11824 2005-08-11  Simon Josefsson  <jas@extundo.com>
11825
11826         * lib/readline.h, readline.c: New file.
11827
11828 2005-08-11  Simon Josefsson  <jas@extundo.com>
11829
11830         * doc/gnulib.texi (Initial import, Finishing touches): Mention
11831         gl_AVOID.
11832
11833 2005-08-11  Bruno Haible  <bruno@clisp.org>
11834
11835         * lib/strnlen.h (strnlen): Change parameter name to match comment.
11836
11837 2005-08-10  Stepan Kasal  <kasal@ucw.cz>
11838
11839         * m4/onceonly_2_57.m4: Really require Autoconf 2.57.
11840
11841 2005-08-10  Simon Josefsson  <jas@extundo.com>
11842
11843         * tests/test-iconvme.c: New file.
11844
11845 2005-08-10  Simon Josefsson  <jas@extundo.com>
11846
11847         * m4/strnlen.m4: New file.
11848
11849         * m4/strndup.m4: Don't check for strnlen declaration, done in
11850         strnlen.m4.
11851
11852 2005-08-10  Simon Josefsson  <jas@extundo.com>
11853
11854         * lib/strndup.c: Use strnlen.h.
11855
11856         * lib/strnlen.h: New file.
11857
11858 2005-08-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
11859
11860         * README: Typos.
11861
11862 2005-08-02  Simon Josefsson  <jas@extundo.com>
11863
11864         * modules/readline: New file.
11865
11866 2005-08-02  Simon Josefsson  <jas@extundo.com>
11867
11868         * modules/getdelim: New file.
11869
11870         * modules/getline: Rewrite, don't use getndelim2.
11871
11872 2005-08-02  Simon Josefsson  <jas@extundo.com>
11873
11874         * m4/getline.m4: Separate out getdelim stuff into separate module.
11875
11876         * m4/getdelim.m4: New file.
11877
11878 2005-08-02  Simon Josefsson  <jas@extundo.com>
11879
11880         * lib/getline.h, getline.c: Rewrite.
11881
11882         * lib/getdelim.h, lib/getdelim.c: New files, ported from glibc.
11883
11884 2005-07-31  Bruno Haible  <bruno@clisp.org>
11885
11886         * lib/lock.h (gl_lock_initializer): New macro.
11887         (gl_lock_define_initialized): Use it.
11888         (gl_rwlock_initializer): New macro.
11889         (gl_rwlock_define_initialized): Use it.
11890         (gl_recursive_lock_initializer): New macro.
11891         (gl_recursive_lock_define_initialized): Use it.
11892
11893 2005-07-30  Karl Berry  <karl@gnu.org>
11894
11895         * doc/gnulib.texi (Initial import): mention -I$(top_builddir)/lib.
11896         Report from Ben Pfaff, regarding getopt.
11897
11898 2005-07-26  Paul Eggert  <eggert@cs.ucla.edu>
11899
11900         Add support to getopt for Emacs, which doesn't use LIBOBJS in the
11901         normal way.
11902         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE_HEADER): New macro.
11903         (gl_GETOPT_SUBSTITUTE): Use it.  Invoke gl_PREREQ_GETOPT.
11904         (gl_GETOPT_IFELSE, gl_GETOPT_CHECK_HEADERS): New macros.
11905         (gl_GETOPT): Use the new macros.  Most of the implementation
11906         is moved to the new macros.  This is for programs like Emacs
11907         that don't want all the functionality of gl_GETOPT.
11908
11909 2005-07-26  Bruno Haible  <bruno@clisp.org>
11910
11911         * m4/lock.m4: Update from GNU gettext.
11912
11913 2005-07-26  Bruno Haible  <bruno@clisp.org>
11914
11915         * lib/lock.h: Update from GNU gettext.
11916         * lib/lock.c: Update from GNU gettext.
11917
11918 2005-07-25  Paul Eggert  <eggert@cs.ucla.edu>
11919
11920         * m4/regex.m4 (gl_INCLUDED_REGEX): Use AC_RUN_IFELSE instead of the
11921         obsolescent AC_TRY_RUN.  Include the default includes files, for
11922         'exit'.
11923
11924 2005-07-24  Bruno Haible  <bruno@clisp.org>
11925
11926         * modules/visibility: New file.
11927         * MODULES.html.sh (Misc): Add visibility.
11928
11929 2005-07-24  Bruno Haible  <bruno@clisp.org>
11930
11931         * m4/visibility.m4: New file.
11932
11933 2005-07-24  Bruno Haible  <bruno@clisp.org>
11934
11935         * doc/visibility.texi: New file.
11936
11937 2005-07-22  Bruno Haible  <bruno@clisp.org>
11938
11939         * modules/alloca-opt (Makefile.am): Remove explicit dependency on
11940         $(ALLOCA_H), redundant through BUILT_SOURCES.
11941         * modules/argz (Makefile.am): Remove explicit dependency on $(ARGZ_H),
11942         redundant through BUILT_SOURCES.
11943         * modules/byteswap (Makefile.am): Remove explicit dependency on
11944         $(BYTESWAP_H), redundant through BUILT_SOURCES.
11945         * modules/fnmatch (Makefile.am): Remove explicit dependency on
11946         $(FNMATCH_H), redundant through BUILT_SOURCES.
11947         * modules/getopt (Makefile.am): Remove explicit dependency on
11948         $(GETOPT_H), redundant through BUILT_SOURCES.
11949         * modules/glob (Makefile.am): Remove explicit dependency on $(GLOB_H),
11950         redundant through BUILT_SOURCES.
11951         * modules/poll (Makefile.am): Remove explicit dependency on $(POLL_H),
11952         redundant through BUILT_SOURCES.
11953         * modules/stdbool (Makefile.am): Remove explicit dependency on
11954         $(STDBOOL_H), redundant through BUILT_SOURCES.
11955         * modules/stdint (Makefile.am): Remove explicit dependency on
11956         $(STDINT_H), redundant through BUILT_SOURCES.
11957         * modules/sysexits (Makefile.am): Add $(SYSEXITS_H) to BUILT_SOURCES.
11958         Remove explicit dependency on $(SYSEXITS_H).
11959         Reported by Alexandre Duret-Lutz <adl@src.lip6.fr>.
11960
11961 2005-07-18  Simon Josefsson  <jas@extundo.com>
11962
11963         * lib/check-version.c (check_version): Accept identical versions too.
11964
11965 2005-07-18  Bruno Haible  <bruno@clisp.org>
11966
11967         * modules/lock: New file.
11968         * MODULES.html.sh (Multithreading): New section.
11969
11970 2005-07-18  Bruno Haible  <bruno@clisp.org>
11971
11972         * m4/lock.m4: New file, from GNU gettext.
11973
11974 2005-07-18  Bruno Haible  <bruno@clisp.org>
11975
11976         * lib/lock.h: New file, from GNU gettext.
11977         * lib/lock.c: New file, from GNU gettext.
11978
11979 2005-07-18  Bruno Haible  <bruno@clisp.org>
11980
11981         * lib/lock.h (gl_once_t): New type.
11982         (gl_once_define, gl_once): New macros.
11983         * lib/lock.c (fresh_once): New variable.
11984         (glthread_once, glthread_once_call, glthread_once_singlethreaded): New
11985         functions.
11986
11987 2005-07-16  Simon Josefsson  <jas@extundo.com>
11988
11989         * doc/gnulib.texi (Library version handling): Add ELF symbol collision
11990         workaround, suggested by Bruno.
11991
11992 2005-07-15  Paul Eggert  <eggert@cs.ucla.edu>
11993
11994         * modules/xalloc (Depends-on): Add xalloc-die.
11995         * modules/xvasprintf (Depends-on): Add xalloc-die.
11996
11997 2005-07-15  Paul Eggert  <eggert@cs.ucla.edu>
11998
11999         * lib/quotearg.c: Add translator comment suggested by Bruno Haible,
12000         with a minor change.
12001
12002 2005-07-15  Bruno Haible  <bruno@clisp.org>
12003
12004         * m4/poll.m4 (gl_FUNC_POLL): Check against MacOS X 10.4 poll() bug.
12005         When using lib/poll.c, define poll as rpl_poll.
12006
12007 2005-07-14  Paul Eggert  <eggert@cs.ucla.edu>
12008
12009         * modules/argp (Depends-on): Remove unlocked-io.
12010
12011 2005-07-14  Derek Price  <derek@ximbiot.com>
12012
12013         * m4/glob.m4 (gl_GLOB): Cache glob interface check result.  Add check
12014         for glob symlink bug.
12015
12016 2005-07-14  Bruno Haible  <bruno@clisp.org>
12017
12018         * m4/argp.m4 (gl_ARGP): Remove invocation of gl_FUNC_GLIBC_UNLOCKED_IO.
12019         Instead, test for *_unlocked function declarations directly.
12020
12021 2005-07-11  Simon Josefsson  <jas@extundo.com>
12022
12023         * modules/size_max: New file.
12024
12025         * modules/xsize: Depend on size_max module for size_max.m4.
12026
12027 2005-07-11  Simon Josefsson  <jas@extundo.com>
12028
12029         * lib/size_max.h: New file.
12030
12031 2005-07-11  Paul Eggert  <eggert@cs.ucla.edu>
12032
12033         * lib/version-etc-fsf.c (version_etc_copyright): Parameterize the
12034         copyright symbol and the year.
12035         * lib/version-etc.c (COPYRIGHT_YEAR): New constant.
12036         (version_etc_va): Use parameterized copyright notice.
12037         Reword to conform to the current GNU coding standards.
12038
12039 2005-07-11  Karl Berry  <karl@gnu.org>
12040
12041         * doc/gnulib.texi (Quoting): new node.
12042         (Initial import): more info, from Patrice.
12043
12044 2005-07-11  Bruno Haible  <bruno@clisp.org>
12045
12046         * gnulib-tool (func_usage): Document option --avoid.
12047         (Command line options): Handle --avoid.
12048         (func_acceptable): New function.
12049         (func_modules_transitive_closure): Use it.
12050
12051 2005-07-11  Bruno Haible  <bruno@clisp.org>
12052
12053         * MODULES.html.sh: Use shortcut URLs to the www.opengroup.org site.
12054         Reported by Jim Meyering.
12055
12056 2005-07-10  Bruno Haible  <bruno@clisp.org>
12057
12058         * m4/size_max.m4 (gl_SIZE_MAX): Cast ~(size_t)0 back to size_t.
12059         Needed when size_t is smaller than 'unsigned int'.
12060         Reported by Paul Eggert.
12061
12062 2005-07-09  Sergey Poznyakoff  <gray@gnu.org.ua>
12063
12064         * modules/argp (Depends-on): Add unlocked-io
12065
12066 2005-07-09  Sergey Poznyakoff  <gray@gnu.org.ua>
12067
12068         * lib/argp-namefrob.h: Include unlocked-io.h. Removed unnecessary
12069         block of defines.
12070
12071 2005-07-08  Paul Eggert  <eggert@cs.ucla.edu>
12072
12073         * config/srclist.txt: Comment out regcomp.c, since we have a porting
12074         fix now.
12075
12076 2005-07-08  Eric Blake  <ebb9@byu.net>  (tiny change)
12077         and Paul Eggert  <eggert@cs.ucla.edu>
12078
12079         * lib/regcomp.c (init_dfa, build_range_exp): Store __btowc value
12080         in wint_t, not wchar_t.  Remove now-unnecessary cast.
12081
12082 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
12083
12084         * modules/regex (Files): Add lib/regex_internal.c,
12085         lib/regex_internal.h, lib/regexec.c, lib/regcomp.c, m4/codeset.m4.
12086         (Depends-on): Add extensions.
12087         (Makefile.am): Remove lib_SOURCES; now done by m4 code.
12088
12089 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
12090
12091         * m4/backupfile.m4 (gl_BACKUPFILE): Use AC_CHECK_FUNCS_ONCE on
12092         pathconf.
12093         * m4/same.m4 (gl_SAME): Likewise.
12094         Require AC_SYS_LONG_FILE_NAMES; bug reported by Gerrit P. Haase.
12095
12096         * m4/regex.m4: Adjust to new libc regex implementation.
12097         (gl_INCLUDED_REGEX): Add AC_LIBSOURCES for
12098         all the .c and .h parts of (the new) regex.
12099         Quote the m4 stuff better.
12100         Check for RE_ICASE bug of old gnulib.
12101         Check for REG_STARTEND of recent libc.
12102         Rename local variables from jm_* to gl_*.
12103         Quote operand of "test -f".
12104         Say "recent enough" version of libc, not "version 2".
12105         (gl_PREREQ_REGEX): Remove AC_FUNC_ALLOCA, since alloca is a
12106         prerequisite module.  Remove AC_HEADER_STDC; no longer needed.
12107         Check for locale.h, isblank, mbrtowc, wcrtomb, wcscoll.
12108         Remove check for btowc, isascii.
12109         Require AM_LANGINFO_CODESET.
12110
12111 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
12112
12113         * lib/regex.c, regex.h: Sync from libc.
12114         * lib/regcomp.c, lib/regexec_internal.c, lib/regex_internal.h:
12115         * lib/regexec.c:
12116         New files, synced from libc, except that regex_internal.h
12117         currently has a small porting fix.
12118
12119 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
12120
12121         * config/srclist.txt: Add regcomp.c, regex.c, regex.h,
12122         regex_internal.c, regexec.c.
12123         Add regex_internal.h too, but as a comment, since the libc version
12124         is currently broken in gnulib mode.
12125
12126 2005-07-06  Paul Eggert  <eggert@cs.ucla.edu>
12127
12128         Support programs like Emacs that use gnulib but not gettext.
12129         * MODULES.html.sh (Internationalization functions): Add gettext-h.
12130         * modules/gettext-h: New file.
12131         * modules/gettext (Files): Remove lib/gettext.h.
12132         (Depends-on): Add gettext-h.
12133         (Makefile.am): Remove lib_SOURCES.
12134         * modules/argmatch, modules/c-stack, modules/closeout:
12135         * modules/copy-file, modules/csharpcomp, modules/csharpexec:
12136         * modules/execute, modules/file-type, modules/getaddrinfo:
12137         * modules/getopt, modules/human, modules/javacomp:
12138         * modules/javaexec, modules/mkdir-p, modules/obstack:
12139         * modules/openat, modules/pagealign_alloc, modules/pipe:
12140         * modules/quotearg, modules/regex, modules/rpmatch:
12141         * modules/unicodeio, modules/userspec, modules/version-etc:
12142         * modules/wait-process, modules/xalloc-die, modules/xmemcoll:
12143         * modules/xsetenv:
12144         Depend on gettext-h, not gettext.
12145
12146 2005-07-05  Paul Eggert  <eggert@cs.ucla.edu>
12147
12148         * gnulib-tool (func_import): Add support for 'public domain' license.
12149         * modules/alloca, modules/atexit, modules/memmove:
12150         Now public domain, not GPL.
12151         * modules/dup2, modules/getpagesize, modules/malloc, modules/memset:
12152         * modules/realloc, modules/strerror, modules/strtod:
12153         Now LGPL, not GPL.
12154
12155 2005-07-05  Bruno Haible  <bruno@clisp.org>
12156
12157         * m4/mbrtowc.m4 (gl_FUNC_MBRTOWC): Upgrade to version from current
12158         autoconf CVS. Needed for mingw.
12159
12160 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
12161
12162         Remove the dependency of the strftime module on the tzset module.
12163         * modules/strftime (Depends-on): Remove dependency on tzset.
12164
12165 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
12166
12167         Remove the dependency of the strftime module on the tzset module.
12168         * m4/strftime.m4 (gl_FUNC_STRFTIME): Don't require
12169         gl_FUNC_TZSET_CLOBBER.
12170
12171 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
12172
12173         Remove the dependency of the strftime module on the tzset module.
12174         * lib/strftime.c (my_strftime)
12175         [! defined _LIBC && ! HAVE_RUN_TZSET_TEST]:
12176         Copy the input structure, to work around some of the bug with
12177         Solaris 2.5.1 and Solaris 2.6.  If you still care about these old
12178         Solaris releases, you should also use the tzset module, but we won't
12179         require it as a dependency any more since we don't want LGPLed code
12180         to depend on GPLed code.
12181
12182 2005-07-02  Jim Meyering  <jim@meyering.net>
12183
12184         * m4/chown.m4, cloexec.m4, dup2.m4, fsusage.m4:
12185         * m4/getcwd-path-max.m4, getcwd.m4, mkstemp.m4, mountlist.m4:
12186         * m4/pagealign_alloc.m4, save-cwd.m4, unistd-safer.m4:
12187         Don't check for fcntl.h, and don't test for HAVE_FCNTL_H.
12188
12189 2005-07-02  Jim Meyering  <jim@meyering.net>
12190
12191         * lib/backupfile.c (backup_args): Change a `0' to NULL.
12192
12193 2005-07-01  Paul Eggert  <eggert@cs.ucla.edu>
12194
12195         * lib/xnanosleep.c: Include timespec.h, since OpenBSD 3.4 <time.h>
12196         declares only 'struct timespec;' (!).
12197
12198 2005-07-01  Jim Meyering  <jim@meyering.net>
12199
12200         * lib/chown.c, cloexec.c, dup-safer.c, dup2.c, fsusage.c, getcwd.c:
12201         * lib/getloadavg.c, mountlist.c, openat.h, pagealign_alloc.c:
12202         * lib/save-cwd.c, tempname.c:
12203         Assume HAVE_FCNTL_H (i.e., include <fcntl.h> unconditionally,
12204         and don't include <sys/file.h>).
12205
12206 2005-06-29  Jim Meyering  <jim@meyering.net>
12207
12208         * lib/mkdir-p.c (make_dir_parents): Don't apply sizeof to a hard-coded
12209         type name.  Use the variable name instead.
12210         * lib/idcache.c (getuser, getuidbyname, getgroup, getgidbyname):
12211         Likewise.
12212
12213 2005-06-28  Simon Josefsson  <jas@extundo.com>
12214
12215         * modules/check-version (Files): Add check-version.m4.
12216
12217 2005-06-28  Simon Josefsson  <jas@extundo.com>
12218
12219         * m4/check-version.m4: New file, suggested by Jim Meyering
12220         <jim@meyering.net>.
12221
12222 2005-06-28  Simon Josefsson  <jas@extundo.com>
12223
12224         * lib/check-version.h, lib/check-version.c: New files.
12225
12226 2005-06-28  Simon Josefsson  <jas@extundo.com>
12227
12228         * lib/base64.c (base64_encode): Indent.  Rename 'b64' to avoid
12229         collision with global variable.  Better indentation.  Don't
12230         increment buffer pointer beyond buffer end.  Based on comments
12231         from Paul Eggert <eggert@cs.ucla.edu>.
12232
12233         * lib/base64.h: Indent.
12234
12235 2005-06-28  Simon Josefsson  <jas@extundo.com>
12236
12237         * doc/gnulib.texi (Library version handling): New section.
12238
12239 2005-06-28  Jim Meyering  <jim@meyering.net>
12240
12241         * check-module (find_included_lib_files): Hard-code another
12242         pair of exceptions: fts.c includes fts-cycle.c and unistd-safer.h
12243         but modules/fts-lgpl (correctly) does not list those files.
12244
12245         * modules/canonicalize (Files): Add lib/pathmax.h.
12246
12247 2005-06-25  Simon Josefsson  <jas@extundo.com>
12248
12249         * modules/check-version: New file.
12250
12251 2005-06-24  Paul Eggert  <eggert@cs.ucla.edu>
12252
12253         * lib/canon-host.c (canon-host): Append trailing "," to 0 in
12254         initializer of struct addrinfo, as an indication that we don't
12255         care how many members the structure has.
12256
12257 2005-06-24  Derek Price  <derek@ximbiot.com>
12258         and Bruno Haible  <bruno@clisp.org>
12259
12260         Remove stat module & update lstat.
12261         * m4/lstat.m4 (gl_FUNC_LSTAT): Drop AC_FUNC_LSTAT in favor of
12262         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
12263         * m4/stat.m4: Remove this file.
12264
12265 2005-06-24  Derek Price  <derek@ximbiot.com>
12266         and Bruno Haible  <bruno@clisp.org>
12267
12268         Remove stat module & update lstat.
12269         * lib/stat.c: Remove this file...
12270         (slash_aware_lstat): ...moving this content and its support...
12271         * lib/lstat.c (rpl_lstat): ...into here.
12272         * lib/lstat.h: New file.
12273
12274 2005-06-24  Derek Price  <derek@ximbiot.com>
12275         and Bruno Haible  <bruno@clisp.org>
12276
12277         Remove stat module & update lstat.
12278         * config/srclist.txt (libc sources): Remove stat.
12279
12280 2005-06-24  Derek Price  <derek@ximbiot.com>
12281         and Bruno Haible  <bruno@clisp.org>
12282
12283         Remove stat module & update lstat.
12284         * MODULES.html.sh (stat): Remove.
12285         * MODULES.html: Regenerated.
12286         * modules/lstat (Description): Correct function name.
12287         (Files): Add "lstat.h".
12288         (Depends-on): Remove stat, add xalloc, stat-macros.
12289         * modules/stat: Remove this file.
12290         (Include): Add "lstat.h", remove <sys/stat.h>.
12291
12292 2005-06-23  Paul Eggert  <eggert@cs.ucla.edu>
12293
12294         * lib/mktime.c: Include <string.h> even if !DEBUG.  (From glibc.)
12295         (ranged_convert): Don't save conversion in a temporary struct.
12296         This causes a warning with GCC 4.0.0, and anyway in the typical
12297         case it's not worth the extra 100 bytes or so of code.
12298         (ranged_convert, __mktime_internal): When calling a function via a
12299         pointer P, use P () rather than (*P) (), as we now assume C89 or
12300         better.
12301
12302 2005-06-22  Paul Eggert  <eggert@cs.ucla.edu>
12303
12304         * lib/readutmp.c (desirable_utmp_entry): Fix bug where "who -b" and
12305         "who -r" failed to give output.  Problem reported by Tim Waugh.
12306
12307         * lib/xmalloc.c (HAVE_GNU_CALLOC): New constant.
12308         (xcalloc): Use it to avoid needless tests.
12309         Problem reported by Jim Meyering.
12310
12311 2005-06-20  Derek Price  <derek@ximbiot.com>
12312
12313         * m4/bison.m4: Note that precious decls of YACC & YFLAGS will be
12314         unnecessary for Autoconfs > 2.59c.
12315
12316 2005-06-16  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
12317
12318         * lib/argp.h (__option_is_short): Check upper limit of
12319         __key. Isprint() requires its argument to have the value
12320         of an unsigned char or EOF.
12321
12322 2005-06-16  Jim Meyering  <jim@meyering.net>
12323
12324         * lib/calloc.c (rpl_calloc): Allocate a 1-byte buffer (not 1xS or Nx1)
12325         when either N or S is zero.
12326
12327 2005-06-16  Derek Price  <derek@ximbiot.com>
12328
12329         * m4/bison.m4: Declare YACC & YFLAGS precious.
12330
12331 2005-06-10  Paul Eggert  <eggert@cs.ucla.edu>
12332
12333         * lib/fnmatch.c (fnmatch): If there is an encoding error in a
12334         multibyte string or pattern, fall back on unibyte matching.
12335         Problem reported by James Youngman.
12336
12337 2005-06-08  Bruno Haible  <bruno@clisp.org>
12338
12339         * modules/csharpcomp: New file.
12340         * MODULES.html.sh (C#): Add csharpcomp.
12341
12342 2005-06-08  Bruno Haible  <bruno@clisp.org>
12343
12344         * m4/csharpcomp.m4: New file, from GNU gettext.
12345
12346 2005-06-08  Bruno Haible  <bruno@clisp.org>
12347
12348         * lib/csharpcomp.h: New file, from GNU gettext.
12349         * lib/csharpcomp.c: New file, from GNU gettext.
12350         * lib/csharpcomp.sh.in: New file, from GNU gettext.
12351
12352 2005-06-08  Bruno Haible  <bruno@clisp.org>
12353
12354         * lib/binary-io.h (fileno): Undefine before defining it. Avoids a gcc
12355         warning on mingw.
12356
12357 2005-06-07  Derek Price  <derek@ximbiot.com>
12358
12359         Sync from CVS.
12360         * lib/glob_.h: Indent nested #ifdef.
12361
12362 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
12363
12364         Sync from coreutils.
12365         Use "file name" when talking about file names, instead of "filename"
12366         or "path", as per the GNU coding standards.
12367         * lib/mkdir-p.c: Renamed from makepath.c.
12368         (make_dir_parents): Renamed from make_path.  All callers changed.
12369         * lib/mkdir-p.h: Likewise.  All includers changed.
12370         * lib/filenamecat.c: Renamed from path-concat.c.
12371         (file_name_concat): Renamed from path_concat.  All callers changed.
12372         [TEST_FILE_NAME_CONCAT]: Renamed from TEST_PATH_CONCAT.
12373         * lib/filenamecat.h: Likewise.  All includers changed.
12374         * lib/acl.c: Don't use "path" or "filename" to mean "file name"
12375         in comments or local variable names.
12376         * lib/basename.c: Likewise.
12377         * lib/canonicalize.c, canonicalize.h: Likewise.
12378         * lib/dirname.c, dirname.h: Likewise.
12379         * lib/euidaccess.c: Likewise.
12380         * lib/exclude.c: Likewise
12381         * lib/fnmatch_.h, fnmatch_loop.c: Likewise.
12382         * lib/fsusage.c, fsuage.h: Likewise.
12383         * lib/fts.c, fts_.h: Likewise.
12384         * lib/getcwd.c: Likewise.
12385         * lib/getloadavg.c: Likewise.
12386         * lib/mkstemp.c: Likewise.
12387         * lib/mountlist.c, mountlist.h: Likewise.
12388         * lib/openat.c, openat.h: Likewise.
12389         * lib/readlink-stub.c: Likewise.
12390         * lib/readutmp.c, readutmp.h: Likewise.
12391         * lib/rename.c: Likewise.
12392         * lib/rmdir.c: Likewise.
12393         * lib/same.c: Likewise.
12394         * lib/savedir.c: Likewise.
12395         * lib/stripslash.c: Likewise.
12396         * lib/tempname.c: Likewise.
12397         * lib/xreadlink.c: Likewise.
12398         * lib/exclude.c (excluded_file_name): Renamed from excluded_filename.
12399         All uses changed.
12400         * lib/exclude.h: Likewise.
12401
12402         * lib/euidaccess.c (getuid, getgid, getuid, getegid)
12403         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
12404         * lib/idcache.c (getpwuid, getpwnam, getgrgid, getgrnam)
12405         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
12406         * lib/pathmax.h: Include <limits.h> unconditionally, since other
12407         files have been getting away with it for years (MORE/BSD 4.3
12408         is extinct now).
12409         * lib/userspec.c (getpwnam, getgrnam, getgrgid)
12410         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
12411
12412         * lib/pathmax.h (_POSIX_PATH_MAX) [!defined _POSIX_PATH_MAX]:
12413         Define to 256, not 255, as per modern POSIX.
12414
12415 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
12416
12417         Sync from coreutils.
12418         Use "file name" when talking about file names, instead of "filename"
12419         or "path", as per the GNU coding standards.
12420         * MODULES.html.sh: mkdir-p renamed from makepath.
12421         filenamecat renamed from path-concat.
12422         * modules/filenamecat: Renamed from modules/path-concat.
12423         (Files): filenamecat.h and filenamecat.c renamed from
12424         path-concat.h and path-concat.c.
12425         (configure.ac): gl_FILE_NAME_CONCAT, not gl_PATH_CONCAT.
12426         (Include): filenamecat.h, not path-concat.h.
12427         * modules/mkdir-p: Renamed from modules/makepath.
12428         (Files): mkdir-p.h and mkdir-p.c renamed from makepath.h and
12429         makepath.c.
12430         (configure.ac): gl_MKDIR_PARENTS, not gl_MAKEPATH.
12431         (Include): mkdir-p.h, not makepath.h.
12432
12433 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
12434
12435         Sync from coreutils.
12436         * m4/mkdir-p.m4: Renamed from makepath.m4.
12437         (gl_MKDIR_PARENTS): Renamed from gl_MAKEPATH.  All uses changed.
12438         Rename files from makepath.c to mkdir-p.c, and from
12439         makepath.h to mkdir-p.h.
12440         * m4/filenamecat.m4: Renamed from path-concat.m4.
12441         (gl_FILE_NAME_CONCAT): Renamed from gl_PATH_CONCAT.  All uses changed.
12442         Rename files from path-concat.c to filenamecat.c,
12443         and from path-concat.h to filenamecat.h.
12444         * m4/getcwd-path-max.m4: Don't use "path" or "filename" to mean
12445         "file name" in local variables or comments.
12446         * m4/rename.m4: Likewise.
12447
12448 2005-06-01  Bruno Haible  <bruno@clisp.org>
12449
12450         * modules/csharpexec: New file.
12451         * MODULES.html.sh (C#): New section.
12452
12453 2005-06-01  Bruno Haible  <bruno@clisp.org>
12454
12455         * m4/csharp.m4: New file, from GNU gettext.
12456         * m4/csharpexec.m4: New file, from GNU gettext.
12457
12458 2005-06-01  Bruno Haible  <bruno@clisp.org>
12459
12460         * lib/csharpexec.h: New file, from GNU gettext.
12461         * lib/csharpexec.c: New file, from GNU gettext.
12462         * lib/csharpexec.sh.in: New file, from GNU gettext.
12463
12464 2005-05-31  Derek Price  <derek@ximbiot.com>
12465             Paul Eggert  <eggert@cs.ucla.edu>
12466
12467         Sync from cvs.
12468         * m4/glob.m4: s/MISSING_SYS_CDEFS_H/_SYS_CDEFS_H/ and comment.
12469
12470 2005-05-31  Derek Price  <derek@ximbiot.com>
12471             Paul Eggert  <eggert@cs.ucla.edu>
12472
12473         Sync from cvs.
12474         * lib/glob_.h: s/MISSING_SYS_CDEFS_H/_SYS_CDEFS_H/ and comment.
12475
12476 2005-05-29  Derek Price  <derek@ximbiot.com>
12477
12478         * config/srclist.txt (glob_.h, glob.c): Add these files.
12479
12480 2005-05-29  Derek Price  <derek@ximbiot.com>
12481
12482         * MODULES.html.sh: Add glob to Enhanced POSIX.2001 section.
12483         * modules/glob: New file.
12484         * modules/getlogin_r: Add link to POSIX spec in description.
12485
12486 2005-05-29  Derek Price  <derek@ximbiot.com>
12487             Paul Eggert  <eggert@cs.ucla.edu>
12488
12489         * m4/glob.m4: New file.
12490
12491 2005-05-29  Derek Price  <derek@ximbiot.com>
12492             Paul Eggert  <eggert@cs.ucla.edu>
12493
12494         * lib/glob_.h, lib/glob.c: New files.
12495
12496 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
12497
12498         * modules/fts (Files): Remove m4/inttypes-pri.m4.
12499         * modules/fts-lgpl (Depends-on): Remove gettext.
12500
12501 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
12502
12503         * m4/fts.m4 (gl_FUNC_FTS_CORE): Don't check for inttypes.h or stdint.h,
12504         and don't require gt_INTTYPES_PRI.
12505
12506 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
12507
12508         * lib/getlogin_r.c (getlogin_r): Don't set errno to 0 on return.
12509
12510         * lib/fts.c: Don't worry about debugging on pre-C99-compatible hosts;
12511         the configuration hassle isn't worth it.
12512         Include inttypes.h and stdint.h unconditionally if FTS_DEBUG.
12513         (LONGEST_MODIFIER, PRIuMAX): Remove.
12514
12515 2005-05-27  Bruno Haible  <bruno@clisp.org>
12516
12517         * lib/getlogin_r.h: Remove second include of <stddef.h>.
12518
12519 2005-05-26  Paul Eggert  <eggert@cs.ucla.edu>
12520
12521         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Define
12522         _POSIX_PTHREAD_SEMANTICS for Solaris.
12523
12524 2005-05-25  Derek Price  <derek@ximbiot.com>
12525
12526         * MODULES.html.sh: Add getlogin_r to POSIX.2001 support section.
12527
12528 2005-05-25  Derek Price  <derek@ximbiot.com>
12529             Paul Eggert  <eggert@cs.ucla.edu>
12530
12531         * modules/getlogin_r, m4/getlogin_r.m4: New files.
12532         * lib/getlogin_r.c, getlogin_r.h: New files.
12533
12534 2005-05-25  Bruno Haible  <bruno@clisp.org>
12535             Derek Price  <derek@ximbiot.com>
12536
12537         * lib/getlogin_r.h: Simplify API documentation.
12538
12539 2005-05-23  Derek Price  <derek@ximbiot.com>
12540
12541         * modules/minmax (Files): Add m4/minmax.m4.
12542         (configure.ac): Add gl_MINMAX.
12543
12544 2005-05-22  Paul Eggert  <eggert@cs.ucla.edu>
12545
12546         * lib/fts.c (fd_safer) [_LGPL_PACKAGE]: New static function,
12547         so that unistd-safer.h (GPL'ed code) need not be included.
12548
12549 2005-05-22  Bruno Haible  <bruno@clisp.org>
12550
12551         * m4/minmax.m4: New file.
12552         Based on a patch by Derek Price <derek@ximbiot.com>.
12553
12554 2005-05-22  Bruno Haible  <bruno@clisp.org>
12555
12556         * lib/stdint_.h (_STDINT_H_HAVE_INT64): New macro. Use it in #ifdefs.
12557         (INT64_MIN): Fix definition.
12558         Suggested by Paul Eggert <eggert@cs.ucla.edu>.
12559
12560         * lib/stdint_.h (_STDINT_H_NEED_SIGNED_INT_TYPES): Renamed from
12561         NEED_SIGNED_INT_TYPES.
12562
12563         * lib/stdint_.h (_STDINT_H_HAVE_SYSTEM_INTTYPES): Renamed from
12564         HAVE_SYSTEM_INTTYPES.
12565
12566 2005-05-22  Bruno Haible  <bruno@clisp.org>
12567
12568         * lib/minmax.h: Include <limits.h> only when it defines MIN, MAX.
12569         Also include <sys/param.h> if it defines MIN, MAX.
12570         Based on a patch by Derek Price <derek@ximbiot.com>.
12571
12572 2005-05-21  Jim Meyering  <jim@meyering.net>
12573
12574         * modules/fts (Files): Add m4/inttypes-pri.m4.
12575         (Depends-on): Add lstat and remove gettext.  Alphabetize.
12576
12577 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
12578
12579         New fts module.
12580         * lib/fts.c: Don't include "cycle-check.h" or "hash.h".
12581         (setup_dir, free_dir): New functions.
12582         (enter_dir, leave_dir): Define trivial
12583         alternatives of _LGPL_PACKAGE.  Move to fts-cycle.c if !_LGPL_PACKAGE.
12584         (HT_INITIAL_SIZE, ENTER_DIR): Remove.  All uses removed.
12585         (LEAVE_DIR): Fix typo: pass Fts and Ent to leave_dir.
12586         (struct Active_dir, AD_compare, AD_hash, enter_dir, leave_dir):
12587         Move to fts-cycle.c.
12588         (fts_open): Use setup_dir.
12589         (fts_close): Use free_dir.
12590         (fts_read): Have just one copy of the ENTER_DIR code rather than three.
12591         This adds a label and some gotos, but the alternatives were messier.
12592         Check for memory allocation failure when entering a dir.
12593         (fts_stat) [_LGPL_PACKAGE]: Bring back glibc cycle detection code.
12594         * lib/fts_.h (_LGPL_PACKAGE) [defined _LIBC]: New macro.
12595         (FTS): New member fts_cycle, that is a union that contains the
12596         old active_dir_ht and cycle_state.  All uses changed to mention
12597         fts_cycle.ht and fts_cycle.state.
12598         * lib/fts-cycle.c: New file, containing GPL'ed code migrated out of
12599         fts.c, with the following changes:
12600         (setup_dir, free_dir): New functions.
12601         (enter_dir): Now returns bool.  Return true if successful, false
12602         if memory exhausted.  All callers changed.
12603         Do not bother partly cleaning up on
12604         memory allocation failure; that is free_dir's job.
12605         However, free ad if hash_insert fails, to avoid memory leak.
12606         (enter_dir, leave_dir): Accommodate change to FTS by inspecting
12607         fts->fts_options to see which union member to use.
12608
12609 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
12610
12611         * m4/fts.m4 (gl_FUNC_FTS_CORE): Renamed from gl_FUNC_FTS.
12612         (gl_FUNC_FTS, gl_FUNC_FTS_LGPL): New macros.
12613
12614 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
12615
12616         * MODULES.html.sh (File system functions): Add fts, fts-lgpl.
12617
12618 2005-05-20  Jim Meyering  <jim@meyering.net>
12619
12620         * lib/unlinkdir.h (cannot_unlink_dir) [UNLINK_CANNOT_UNLINK_DIR]:
12621         Now a macro, to pacify GCC.
12622
12623 2005-05-20  Eric Blake  <ebb9@byu.net>  (tiny change)
12624
12625         * m4/chown.m4 (gl_FUNC_CHOWN): Correct sense of test for honoring IDs
12626         of -1.
12627
12628 2005-05-20  Eric Blake  <ebb9@byu.net>  (tiny change)
12629
12630         * lib/chown.c (rpl_chown): Return -1 on failure.
12631
12632 2005-05-18  Paul Eggert  <eggert@cs.ucla.edu>
12633
12634         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME]):
12635         Don't check for stddef.h.
12636         * m4/fts.m4 (gl_FUNC_FTS): Don't require AC_HEADER_STDC, as we
12637         don't use its results.
12638         Don't check for fcntl.h, stddef.h, stdlib.h, string.h, unistd.h,
12639         since we include them unconditionally.  Don't require
12640         AM_STDBOOL_H, since stdbool is a prerequisite.
12641         Don't require AC_C_CONST, AC_TYPE_SIZE_T or check for ptrdiff_t
12642         since we assume C89 or better.
12643         Don't require AC_FUNC_CLOSEDIR_VOID, AC_FUNC_LSTAT, or AC_FUNC_STAT,
12644         as we don't use their results.
12645         Don't check for fchdir, memmove, memset, strrchr, as we use
12646         them unconditionally.
12647         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Don't define
12648         GETTIMEOFDAY_CLOBBERS_LOCALTIME_BUFFER, since nobody uses it.
12649
12650 2005-05-18  Paul Eggert  <eggert@cs.ucla.edu>
12651
12652         * lib/canonicalize.c: Include canonicalize.h first, to test interface.
12653         Include <stddef.h> unconditionally, since we assume C89 now.
12654         All uses of PTR_INT_TYPE replaced by ptrdiff_t.
12655         * lib/fts.c: Include fts_.h first, to check interface.
12656         Do not include intprops.h; no longer needed.
12657         Include cycle-check.h and hash.h, since fts_.h no longer does.
12658         Remove unnecessary casts of closedir to void.
12659         (fts_build): Use a simpler method (not involving TYPE_SIGNED) to
12660         decide whether to decrement nlinks.
12661         * lib/fts_.h: Do not include hash.h or cycle-check.h; no longer needed.
12662         (FTS): Use struct hash_table * instead of Hash_table, so that
12663         we no longer need to include hash.h here.
12664
12665 2005-05-18  Jim Meyering  <jim@meyering.net>
12666
12667         * modules/dirfd (License): Change to LGPL.  Most of the code
12668         is already in the public domain.
12669
12670 2005-05-18  Jim Meyering  <jim@meyering.net>
12671
12672         * m4/fts.m4 (AC_LIBSOURCES): Add intprops.h to the list.
12673         Reported by Yoann Vandoorselaere.
12674
12675 2005-05-17  Jim Meyering  <jim@meyering.net>
12676
12677         * m4/fts.m4: New file, from coreutils.
12678
12679 2005-05-17  Jim Meyering  <jim@meyering.net>
12680
12681         * lib/fts.c, lib/fts_.h: New files, from coreutils.
12682
12683 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
12684
12685         Sync from coreutils.
12686         * m4/unlinkdir.m4: New file.
12687
12688 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
12689
12690         Sync from coreutils.
12691         * lib/unlinkdir.c, lib/unlinkdir.h: New files.
12692         * lib/gethrxtime.c, lib/gethrxtime.h, lib/getpass.h, lib/mountlist.h,
12693         lib/path-concat.c, lib/regex.h, lib/unlocked-io.h, lib/xtime.h:
12694         White space changes only.
12695         * lib/makepath.c (make_path): Port to hosts where leading "//" is
12696         special.
12697         * lib/yesno.c: Include getline.h, not ctype.h.
12698         (yesno): Don't remove leading white space; POSIX doesn't allow it.
12699         Use getline to remove arbitrary restriction on response length.
12700
12701 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
12702
12703         * config/srclist-update: Spell out "Street" in FSF postal
12704         mail address; this is the style the FSF seems to prefer.
12705
12706         * build-aux/depcomp, build-aux/install-sh, build-aux/mdate-sh,
12707         build-aux/missing, build-aux/mkinstalldirs: Sync from Automake;
12708         this updates FSF postal mail address.
12709
12710         Sync from coreutils.
12711         * modules/unlinkdir: New file.
12712         * modules/yesno (Depends-on): Add getline.
12713         * MODULES.html.sh (File system functions): Add unlinkdir.
12714
12715 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
12716
12717         * lib/byteswap_.h, lib/getsubopt.h, lib/iconvme.h, lib/strsep.c,
12718         lib/strsep.h:
12719         Change the initial comment to refer to GPL, not LGPL.
12720         gnulib-tool will change it to LGPL as needed.
12721
12722         * lib/__fpending.c, lib/acl.c, lib/acl.h, lib/alloca_.h, lib/allocsa.c,
12723         lib/allocsa.h, lib/argmatch.c, lib/argmatch.h, lib/argp-ba.c,
12724         lib/argp-eexst.c, lib/argp-fmtstream.c, lib/argp-fmtstream.h,
12725         lib/argp-fs-xinl.c, lib/argp-help.c, lib/argp-namefrob.h,
12726         lib/argp-parse.c, lib/argp-pv.c, lib/argp-pvh.c, lib/argp-xinl.c,
12727         lib/argp.h, lib/argz.c, lib/argz_.h, lib/asnprintf.c, lib/asprintf.c,
12728         lib/atanl.c, lib/backupfile.c, lib/backupfile.h, lib/base64.c,
12729         lib/base64.h, lib/basename.c, lib/binary-io.h, lib/byteswap_.h,
12730         lib/c-ctype.c, lib/c-ctype.h, lib/c-stack.c, lib/c-stack.h,
12731         lib/c-strtod.c, lib/calloc.c, lib/canon-host.c, lib/canonicalize.c,
12732         lib/canonicalize.h, lib/ceill.c, lib/chdir-long.c, lib/chdir-long.h,
12733         lib/chown.c, lib/classpath.c, lib/classpath.h, lib/cloexec.c,
12734         lib/closeout.c, lib/closeout.h, lib/concatpath.c, lib/config.charset,
12735         lib/copy-file.c, lib/copy-file.h, lib/cycle-check.c, lib/cycle-check.h,
12736         lib/diacrit.c, lib/diacrit.h, lib/dirfd.c, lib/dirfd.h, lib/dirname.c,
12737         lib/dirname.h, lib/dummy.c, lib/dup-safer.c, lib/dup2.c, lib/eealloc.h,
12738         lib/error.c, lib/error.h, lib/euidaccess.c, lib/exclude.c,
12739         lib/exclude.h, lib/execute.c, lib/execute.h, lib/exit.h,
12740         lib/exitfail.c, lib/exitfail.h, lib/expl.c, lib/fatal-signal.c,
12741         lib/fatal-signal.h, lib/fd-safer.c, lib/file-type.c, lib/file-type.h,
12742         lib/fileblocks.c, lib/filemode.c, lib/filemode.h, lib/findprog.c,
12743         lib/findprog.h, lib/floorl.c, lib/fnmatch.c, lib/fnmatch_.h,
12744         lib/fnmatch_loop.c, lib/fopen-safer.c, lib/free.c, lib/frexpl.c,
12745         lib/fsusage.c, lib/fsusage.h, lib/full-read.c, lib/full-read.h,
12746         lib/full-write.c, lib/full-write.h, lib/fwriteerror.c,
12747         lib/fwriteerror.h, lib/gai_strerror.c, lib/gcd.c, lib/gcd.h,
12748         lib/getaddrinfo.c, lib/getaddrinfo.h, lib/getcwd.c, lib/getcwd.h,
12749         lib/getdate.h, lib/getdate.y, lib/getdomainname.c, lib/getdomainname.h,
12750         lib/getgroups.c, lib/gethostname.c, lib/gethrxtime.c, lib/gethrxtime.h,
12751         lib/getline.c, lib/getline.h, lib/getloadavg.c, lib/getndelim2.c,
12752         lib/getndelim2.h, lib/getnline.c, lib/getnline.h, lib/getopt.c,
12753         lib/getopt1.c, lib/getopt_.h, lib/getopt_int.h, lib/getpagesize.h,
12754         lib/getpass.c, lib/getpass.h, lib/getsubopt.c, lib/getsubopt.h,
12755         lib/gettext.h, lib/gettime.c, lib/gettimeofday.c, lib/getugroups.c,
12756         lib/getusershell.c, lib/group-member.c, lib/group-member.h,
12757         lib/hard-locale.c, lib/hard-locale.h, lib/hash-pjw.c, lib/hash-pjw.h,
12758         lib/hash.c, lib/hash.h, lib/human.c, lib/human.h, lib/iconvme.c,
12759         lib/iconvme.h, lib/idcache.c, lib/inet_ntop.h, lib/intprops.h,
12760         lib/inttostr.c, lib/inttostr.h, lib/isdir.c, lib/javacomp.c,
12761         lib/javacomp.h, lib/javacomp.sh.in, lib/javaexec.c, lib/javaexec.h,
12762         lib/javaexec.sh.in, lib/lbrkprop.h, lib/lchown.c, lib/ldexpl.c,
12763         lib/linebreak.c, lib/linebreak.h, lib/linebuffer.c, lib/linebuffer.h,
12764         lib/localcharset.c, lib/localcharset.h, lib/logl.c, lib/long-options.c,
12765         lib/long-options.h, lib/lstat.c, lib/makepath.c, lib/makepath.h,
12766         lib/malloc.c, lib/mathl.h, lib/mbswidth.c, lib/mbswidth.h, lib/md5.c,
12767         lib/md5.h, lib/memcasecmp.c, lib/memcasecmp.h, lib/memchr.c,
12768         lib/memcmp.c, lib/memcoll.c, lib/memcoll.h, lib/memcpy.c, lib/memmem.c,
12769         lib/memmem.h, lib/mempcpy.c, lib/mempcpy.h, lib/memrchr.c,
12770         lib/memrchr.h, lib/memset.c, lib/minmax.h, lib/mkdir.c, lib/mkdtemp.c,
12771         lib/mkdtemp.h, lib/mkstemp.c, lib/mktime.c, lib/modechange.c,
12772         lib/modechange.h, lib/mountlist.c, lib/mountlist.h, lib/nanosleep.c,
12773         lib/obstack.c, lib/obstack.h, lib/openat.c, lib/openat.h,
12774         lib/pagealign_alloc.c, lib/pagealign_alloc.h, lib/path-concat.c,
12775         lib/path-concat.h, lib/pathmax.h, lib/pathname.h, lib/physmem.c,
12776         lib/physmem.h, lib/pipe.c, lib/pipe.h, lib/poll.c, lib/poll_.h,
12777         lib/posixtm.c, lib/posixtm.h, lib/posixver.c, lib/printf-args.c,
12778         lib/printf-args.h, lib/printf-parse.c, lib/printf-parse.h,
12779         lib/progname.c, lib/progname.h, lib/progreloc.c, lib/putenv.c,
12780         lib/quote.c, lib/quote.h, lib/quotearg.c, lib/quotearg.h, lib/raise.c,
12781         lib/readlink.c, lib/readtokens.c, lib/readtokens.h, lib/readtokens0.c,
12782         lib/readtokens0.h, lib/readutmp.c, lib/readutmp.h, lib/realloc.c,
12783         lib/ref-add.sin, lib/ref-del.sin, lib/regex.c, lib/regex.h,
12784         lib/rename.c, lib/rmdir.c, lib/rpmatch.c, lib/safe-read.c,
12785         lib/safe-read.h, lib/safe-write.c, lib/safe-write.h, lib/same.c,
12786         lib/same.h, lib/save-cwd.c, lib/save-cwd.h, lib/savedir.c,
12787         lib/savedir.h, lib/setenv.c, lib/setenv.h, lib/settime.c,
12788         lib/sh-quote.c, lib/sh-quote.h, lib/sha1.c, lib/sha1.h, lib/sig2str.c,
12789         lib/sig2str.h, lib/sincosl.c, lib/snprintf.c, lib/snprintf.h,
12790         lib/sqrtl.c, lib/stat-macros.h, lib/stat.c, lib/stdbool_.h,
12791         lib/stdint_.h, lib/stdio-safer.h, lib/stpcpy.c, lib/stpcpy.h,
12792         lib/stpncpy.c, lib/stpncpy.h, lib/strcase.h, lib/strcasecmp.c,
12793         lib/strchrnul.c, lib/strchrnul.h, lib/strcspn.c, lib/strdup.c,
12794         lib/strdup.h, lib/strerror.c, lib/strftime.c, lib/strftime.h,
12795         lib/stripslash.c, lib/strndup.c, lib/strndup.h, lib/strnlen.c,
12796         lib/strpbrk.c, lib/strpbrk.h, lib/strsep.c, lib/strsep.h, lib/strstr.c,
12797         lib/strstr.h, lib/strtod.c, lib/strtoimax.c, lib/strtok_r.c,
12798         lib/strtok_r.h, lib/strtol.c, lib/strtoll.c, lib/strtoul.c,
12799         lib/strtoull.c, lib/strverscmp.c, lib/strverscmp.h, lib/sysexit_.h,
12800         lib/tempname.c, lib/time_r.c, lib/time_r.h, lib/timegm.c, lib/timegm.h,
12801         lib/timespec.h, lib/trigl.c, lib/trigl.h, lib/ucs4-utf16.h,
12802         lib/ucs4-utf8.h, lib/unicodeio.c, lib/unicodeio.h, lib/unistd-safer.h,
12803         lib/unlocked-io.h, lib/unsetenv.c, lib/userspec.c, lib/utf16-ucs4.h,
12804         lib/utf8-ucs4.h, lib/utime.c, lib/utimecmp.c, lib/utimecmp.h,
12805         lib/utimens.c, lib/vasnprintf.c, lib/vasnprintf.h, lib/vasprintf.c,
12806         lib/vasprintf.h, lib/version-etc-fsf.c, lib/version-etc.c,
12807         lib/version-etc.h, lib/vsnprintf.c, lib/vsnprintf.h, lib/w32spawn.h,
12808         lib/wait-process.c, lib/wait-process.h, lib/xalloc-die.c, lib/xalloc.h,
12809         lib/xallocsa.c, lib/xallocsa.h, lib/xasprintf.c, lib/xgetcwd.c,
12810         lib/xgetcwd.h, lib/xgetdomainname.c, lib/xgetdomainname.h,
12811         lib/xgethostname.c, lib/xmalloc.c, lib/xmemcoll.c, lib/xnanosleep.c,
12812         lib/xreadlink.c, lib/xreadlink.h, lib/xsetenv.c, lib/xsetenv.h,
12813         lib/xsize.h, lib/xstrndup.c, lib/xstrndup.h, lib/xstrtod.c,
12814         lib/xstrtod.h, lib/xstrtoimax.c, lib/xstrtol.c, lib/xstrtol.h,
12815         lib/xstrtoumax.c, lib/xtime.h, lib/xvasprintf.c, lib/xvasprintf.h,
12816         lib/yesno.c, lib/yesno.h:
12817         Update FSF postal mail address.
12818
12819 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
12820
12821         * MODULES.html.sh, README, gnulib-tool, tests/test-base64.c,
12822         tests/test-memmem.c, tests/test-stpncpy.c:
12823         Update FSF postal mail address.
12824
12825 2005-05-13  Bruno Haible  <bruno@clisp.org>
12826
12827         * lib/stdint_.h (int64_t, uint64_t, int_least64_t, uint_least64_t,
12828         int_fast64_t, uint_fast64_t, intmax_t, uintmax_t, INT64_MIN, INT64_MAX,
12829         UINT64_MAX, INT_LEAST64_MIN, INT_LEAST64_MAX, UINT_LEAST64_MAX,
12830         INT_FAST64_MIN, INT_FAST64_MAX, UINT_FAST64_MAX, INTMAX_MIN,
12831         INTMAX_MAX, UINTMAX_MAX, INT64_C, UINT64_C, INTMAX_C, UINTMAX_C):
12832         Add support for 64-bit integers in the MSVC compiler.
12833
12834 2005-05-12  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
12835
12836         * modules/getdate (Makefile.am): Add getdate.c to EXTRA_DIST
12837
12838 2005-05-12  Eric Blake  <ebb9@byu.net>  (tiny change)
12839
12840         * gnulib-tool (func_import): Sort and uniquify recommended includes.
12841
12842 2005-05-11  Paul Eggert  <eggert@cs.ucla.edu>
12843
12844         * doc/getdate.texi (General date syntax): Don't say that date
12845         date --iso-8601=ns generates acceptable dates; it doesn't yet.
12846         Problem reported by Nic Ferrier.
12847
12848 2005-05-10  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
12849
12850         * lib/getaddrinfo.c: Don't fail when SOCK_STREAM or SOCK_DGRAM are
12851         specified in ai_socktype. Fix invalid ai_protocol
12852         check. ai_protocol is usually set to 0 or depending on
12853         ai_family/ai_socktype to IPPROTO_TCP / IPPROTO_UDP.  Checking for
12854         SOCK_STREAM / SOCK_DGRAM in ai_protocol was invalid.  Set
12855         ai_socktype / ai_protocol in the returned addrinfo structure.
12856
12857 2005-05-10  Simon Josefsson  <jas@extundo.com>
12858
12859         * m4/getaddrinfo.m4: Look in libnsl/libsocket for getaddrinfo, from
12860         Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
12861
12862 2005-05-10  Karl Berry  <karl@gnu.org>
12863
12864         * doc/fdl.texi, gpl.texi, lgpl.texi, COPYING: update FSF address
12865         (from http://www.gnu.org/licenses).
12866         * doc/COPYING.LIB: also rename to COPYING.LESSER.
12867         * doc/COPYING.DOC: remove; per rms, only needed in doc files, so
12868         fdl.texi suffices.
12869
12870 2005-05-10  Karl Berry  <karl@gnu.org>
12871
12872         * config/srclist.txt (COPYING.LESSER): rename from COPYING.LIB.
12873         (COPYING.DOC): remove.
12874
12875         * config/srclist-update: new FSF address.
12876
12877 2005-05-10  Derek Price  <derek@ximbiot.com>
12878
12879         * m4/getopt.m4 (gl_GETOPT): Check for Solaris 10 bug, not decl, when
12880         possible.
12881
12882 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
12883             Bruno Haible  <bruno@clisp.org>
12884
12885         * modules/inet_ntop: New file.
12886         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
12887         inet_ntop.
12888
12889 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
12890             Bruno Haible  <bruno@clisp.org>
12891
12892         * m4/inet_ntop.m4: New file.
12893
12894 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
12895             Bruno Haible  <bruno@clisp.org>
12896
12897         * lib/inet_ntop.h: New file.
12898         * lib/inet_ntop.c: New file, from glibc with modifications.
12899
12900 2005-05-09  Paul Eggert  <eggert@cs.ucla.edu>
12901
12902         * modules/time_r (License): Change to LGPL.
12903         * modules/extensions (License): Change to LGPL.  Actually,
12904         the license is more permissive than that, but currently gnulib-tool
12905         doesn't know how to handle more-permissive licenses.
12906
12907         * modules/stat-macros (Depends-on): Don't depend on stat-macros (!).
12908         Problem reported by Dave Love.
12909
12910 2005-05-08  Jim Meyering  <jim@meyering.net>
12911
12912         * lib/classpath.c (PATH_SEPARATOR): Remove insignificant trailing
12913         blank.
12914
12915 2005-05-06  Paul Eggert  <eggert@cs.ucla.edu>
12916
12917         * modules/argmatch (Depends-on): Add stdbool.
12918         * modules/backupfile (Depends-on): Likewise.
12919         * modules/chdir-long (Depends-on): Likewise.
12920         * modules/closeout (Depends-on): Likewise.
12921         * modules/cycle-check (Depends-on): Likewise.
12922         * modules/dirname (Depends-on): Likewise.
12923         * modules/fnmatch (Depends-on): Likewise.
12924         * modules/fsusage (Depends-on): Likewise.
12925         * modules/fwriteerror (Depends-on): Likewise.
12926         * modules/getcwd (Depends-on): Likewise.
12927         * modules/getloadavg (Depends-on): Likewise.
12928         * modules/hard-locale (Depends-on): Likewise.
12929         * modules/makepath (Depends-on): Likewise.
12930         * modules/mountlist (Depends-on): Likewise.
12931         * modules/nanosleep (Depends-on): Likewise.
12932         * modules/posixtm (Depends-on): Likewise.
12933         * modules/quotearg (Depends-on): Likewise.
12934         * modules/readtokens (Depends-on): Likewise.
12935         * modules/readtokens0 (Depends-on): Likewise.
12936         * modules/readutmp (Depends-on): Likewise.
12937         * modules/save-cwd (Depends-on): Likewise.
12938         * modules/strftime (Depends-on): Likewise.
12939         * modules/userspec (Depends-on): Likewise.
12940         * modules/utimecmp (Depends-on): Likewise.
12941         * modules/xgetcwd (Depends-on): Likewise.
12942         * modules/xnanosleep (Depends-on): Likewise.
12943         * modules/xstrtod (Depends-on): Likewise.
12944         * modules/yesno (Depends-on): Likewise.
12945
12946 2005-05-05  Paul Eggert  <eggert@cs.ucla.edu>
12947
12948         * m4/getopt.m4 (gl_GETOPT): Check for Solaris 10 getopt, and avoid
12949         needless checks.
12950
12951 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
12952
12953         Merge from coreutils.  Among other things,
12954         add bulletproofing for cases where stdin, stdout, or stderr are closed.
12955         * lib/fd-safer.c: New file.
12956         * lib/fcntl-safer.h, open-safer.c: Remove.
12957         * lib/chdir-long.c: Fix comment "fetish" -> "coreutils".
12958         * lib/dup-safer.c: Include unistd-safer.h first.
12959         Don't include errno.h.
12960         (dup_safer) [!defined F_DUPFD]: Let fd_safer do the real work.
12961         * lib/file-type.h: Don't assume invoker included sys/stat.h first.
12962         * lib/file-type.c: Rely on file-type.h change.
12963         * lib/getloadavg.c: Include unistd-safer.h.
12964         (getloadavg): Use safer open.
12965         * lib/getusershell.c: Include "stdio-safer.h".
12966         (getusershell): Use safer fopen.
12967         * lib/long-options.c (long_options): Use NULL rather than 0.
12968         * lib/modechange.h (mode_free): Remove; all callers changed to invoke
12969         'free'.
12970         * lib/modechange.c: Likewise.
12971         xstrtol.h, stdbool.h, stddef.h: Don't include; no longer needed.
12972         (MODE_DONE): New constant.
12973         (struct mode_change): Remove 'next' member.
12974         (make_node_op_equals): New function; like the old one of the
12975         same name, except it allocates an array.
12976         (mode_compile, mode_create_from_ref): Use it.
12977         (mode_compile): Allocate result as an array, not a linked list.
12978         Parse octal string ourself, so that we catch mistakes like "+0".
12979         (mode_adjust): Arg is an array, not a linked list.
12980         * lib/modechange.c: Include stat-macros.h, xalloc.h.
12981         (S_ISDIR, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR):
12982         (S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH, S_IRXWU):
12983         (S_IRWXG, S_IRWXO, CHMOD_MODE_BITS):
12984         Remove.  This is now stat-macros.h's job.
12985         (talloc): Remove.  All callers replaced by xalloc, so that
12986         our invokers don't have to worry about reporting memory failures.
12987         (make_node_op_equals): Remove.
12988         (MODE_ORDINARY_CHAGE, MODE_X_IF_ANY_X, MODE_COPY_EXISTING):
12989         New constants.
12990         (struct mode_change): Moved here from modechange.h.
12991         (mode_append_entry): Remove.
12992         (mode_compile): Remove MASKED_OPS arg, since it encouraged
12993         apps to have incorrect behavior.  Use simpler algorithm for head
12994         and tail.  Don't futz with umask; that's now the job of mode_adjust.
12995         Detect more invalid usages rather than having somewhat-random behavior.
12996         Don't insert an "a=" action, as that leads to incorrect behavior.
12997         (mode_compile, mode_create_from_ref): Return NULL on error instead
12998         of an enum, since now there's only one way to have an error.  All
12999         callers changed.
13000         (mode_adjust): Accept new arg UMASK_VALUE, and interpret it
13001         at the correct time.  Simplify calculation of "+u" and its ilk.
13002         Don't mishandle "+X".
13003         (mode_free): Remove "register" and localize decls.
13004         * lib/modechange.h (MODE_X_IF_ANY_X, MODE_COPY_EXISTING):
13005         (struct mode_change): Move to modechange.c; callers don't
13006         need to see this stuff.
13007         (MODE_MASK_EQUALS, MODE_MASK_PLUS, MODE_MASK_MINUS, MODE_MASK_ALL):
13008         (MODE_INVALID, MODE_MEMORY_EXHAUSTED, MODE_BAD_REFERENCE): Remove.
13009         (mode_change, mode_adjust): Reflect the new signatures noted above.
13010         * lib/nanosleep.c (rpl_nanosleep): Include "timespec.h" before macros
13011         that might redefine system include files.
13012         (siginterrupt) [!HAVE_SIGINTERRUPT]: New macro.
13013         (my_usleep): Use NULL rather than (void *) 0.
13014         (rpl_nanosleep) [!defined SA_NOCLDSTOP]:
13015         Use siginterrupt to specify that system calls should be interrupted.
13016         (rpl_nanosleep): Move initialization of suspended closer to call of
13017         my_usleep.
13018         * lib/readutmp.h (read_utmp): New arg OPTIONS.  All uses changed.
13019         * lib/readutmp.c: Likewise.  Include signal.h, stdbool.h.
13020         (desirable_utmp_entry): New function.
13021         (read_utmp) [defined UTMP_NAME_FUNCTION]: Redo memory allocation
13022         using x2nrealloc, to simplify logic.
13023         (read_utmp) [!defined UTMP_NAME_FUNCTION]: Check for overflow in
13024         size calculation.  Do not assume utmp file is a regular file.
13025         * lib/readutmp.h (UT_PID): Moved here from ../src/who.c.
13026         (READ_UTMP_CHECK_PIDS): New constant.
13027         * lib/save-cwd.c: Include unistd-safer.h.
13028         (save_cwd): Use fd_safer.
13029         * lib/tempname.c (S_ISDIR, S_IRUSR, S_IRUSR, S_IWUSR, S_IXUSR): Remove.
13030         [!_LIBC] Include "stat-macros.h" instead.
13031         * lib/unistd-safer.h (fd_safer): New decl.
13032
13033 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
13034
13035         * modules/getloadavg (Depends-on): Add unistd-safer.
13036         * modules/getusershell (Depends-on): Add stdio-safer.
13037         * modules/lstat (Depends-on): Remove xalloc.
13038         * modules/mkstemp (Depends-on): Add stat-macros.
13039         * modules/modechange (Depends-on): Remove xstrtol.
13040         Add stat-macros, xalloc.
13041         * modules/save-cwd (Depends-on): Add unistd-safer.
13042         * modules/stdio-safer (Makefile.am): Remove lib_SOURCES.
13043         * modules/unistd-safer (Files): Add lib/fd-safer.c
13044         (Makefile.am): Remove lib_SOURCES.
13045
13046         * MODULES.html.sh (Enhancements for POSIX:2001 functions):
13047         Remove fcntl-safer; unistd-safer supersedes it.
13048
13049 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
13050
13051         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Don't require
13052         AC_HEADER_STAT.
13053         * m4/lchown.m4 (gl_FUNC_CHOWN): Likewise.
13054         (gl_PREREQ_CHOWN): Remove.
13055         * m4/lstat.m4 (gl_FUNC_LSTAT): Require AC_FUNC_LSTAT instead of calling
13056         it.  Don't require AC_HEADER_STAT.
13057         (gl_PREREQ_LSTAT): Remove.
13058         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Check stdint.h only once.
13059         Don't require AC_HEADER_STAT.
13060         * m4/rmdir.m4 (gl_FUNC_RMDIR): Don't require AC_HEADER_STAT.
13061         (gl_PREREQ_RMDIR): Remove.
13062         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Don't
13063         mention stat-macros.h or AC_HEADER_STAT, since we'll make
13064         the stat-macros module a prerequisite.
13065         * m4/file-type.m4 (gl_FILE_TYPE): Likewise.
13066         * m4/filemode.m4 (gl_FILEMODE): Likewise.
13067         * m4/makepath.m4 (gl_MAKEPATH): Likewise.
13068         * m4/modechange.m4 (gl_MODECHANGE): Likewise.
13069         * m4/clock_time.m4 (gl_CLOCK_TIME): Use gl_ rather than fetish_ for
13070         variable names.
13071         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Renamed from
13072         fetish_FUNC_RMDIR_NOTEMPTY.  All uses changed.  Use gl_ for
13073         variable prefixes.
13074         * m4/fcntl-safer.m4: Remove.
13075         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Use AC_LIBSOURCES and AC_LIBOBJ.
13076         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Likewise.
13077         Invoke gl_PREREQ_FD_SAFER.
13078         (gl_PREREQ_FD_SAFER): New macro.
13079         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): Check for siginterrupt.
13080         * m4/readutmp.m4 (gl_READUTMP): Require AC_C_INLINE.
13081         Use AC_CHECK_HEADERS_ONCE and AC_CHECK_FUNCS_ONCE when possible.
13082         Remove duplicate call to AC_LIBOBJ(readutmp).
13083         (gl_PREREQ_READUTMP): Remove.  All uses inlined.
13084
13085         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Check for message, not for
13086         MAP_ANON.  Problem reported by Moriyoshi Koizumi to bug-cvs.
13087
13088 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
13089
13090         * MODULES.html.sh (Misc): Add byteswap.
13091
13092 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
13093
13094         * modules/getcwd (Depends-on): Add extensions.
13095         * modules/openat (Depends-on): Likewise.
13096
13097 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
13098
13099         * modules/byteswap: New file.
13100
13101 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
13102
13103         * m4/byteswap.m4: New file.
13104
13105 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
13106
13107         * lib/byteswap_.h: New file.
13108
13109 2005-04-25  Karl Berry  <karl@gnu.org>
13110
13111         * m4/gettext.m4: Update from GNU gettext 0.14.4.
13112
13113 2005-04-25  Albert Chin  <china@thewrittenword.com>
13114
13115         * lib/regex.c: Include <stdio.h>, as a workaround to a Compaq Desktop
13116         Toolkit C bug.
13117
13118 2005-04-21  Oskar Liljeblad  <oskar@osk.mine.nu>
13119
13120         * gnulib-tool (Options): Add -s for --symlink/--symbolic.
13121         (func_ln_if_changed) Remove forcibly for no error message
13122         in case file does not exist.
13123
13124 2005-04-19  Simon Josefsson  <jas@extundo.com>
13125
13126         * gnulib-tool (Options): Make --symlink mean --symbolic.
13127
13128 2005-04-18  Oskar Liljeblad  <oskar@osk.mine.nu>
13129
13130         * doc/gnulib.texi (Initial import): Fix.  Mention --aux-dir.
13131
13132 2005-04-16  Simon Josefsson  <jas@extundo.com>
13133
13134         * modules/getpass-gnu (Makefile.am): Don't mention getpass.h.
13135
13136 2005-04-15  Simon Josefsson  <jas@extundo.com>
13137
13138         * m4/getpass.m4 (gl_FUNC_GETPASS): Use AC_LIBSOURCES.
13139
13140 2005-04-15  Simon Josefsson  <jas@extundo.com>
13141
13142         * gnulib-tool: Rename --symlink to --symbolic.
13143
13144 2005-04-15  Oskar Liljeblad  <oskar@osk.mine.nu>
13145
13146         * gnulib-tool: Add -s, --symlink option to gnulib-tool to make
13147         symbolic links to files instead of copying/moving.  Add --aux-dir,
13148         specifying directory relative --dir where auxiliary build tools
13149         are placed.
13150
13151 2005-04-14  Bruno Haible  <bruno@clisp.org>
13152
13153         * modules/allocsa (License): Change to LGPL.
13154         Requested by Yoann Vandoorselaere <yoann@prelude-ids.org>.
13155
13156 2005-04-13  Paul Eggert  <eggert@cs.ucla.edu>
13157
13158         * lib/getdate.y (zone): Allow relunit_snumber after tZONE, so
13159         that "UTC +1 second" continues to work.  Problem reported
13160         by Dmitry V. Levin.
13161         (relunit_snumber): New rule.
13162         (relunit): Use it.
13163
13164 2005-04-12  Paul Eggert  <eggert@cs.ucla.edu>
13165
13166         * lib/getdate.y (universal_time_zone_table): New constant.
13167         (time_zone_table): Remove GMT, UT, UTC entries; they're now in
13168         universal_time_zone_table.
13169         (lookup_zone): Prefer universal_time_zone_table to
13170         local_time_zone_table, so that "GMT" time stamps are allowed in
13171         London during the summer.  Problem reported by Ian Abbott.
13172
13173 2005-04-12  Jim Meyering  <jim@meyering.net>
13174
13175         * lib/human.c (humblock): Set *options even when returning due to
13176         xstrtoumax conversion failure.  Thanks to a used-uninitialized
13177         warning from gcc-4.
13178
13179 2005-04-09  Jim Meyering  <jim@meyering.net>
13180
13181         * lib/posixtm.c (posixtime) [lint]: Avoid spurious warning from gcc-4's
13182         -Wuninitialized: initialize tm0.tm_year.
13183
13184 2005-04-04  Paul Eggert  <eggert@cs.ucla.edu>
13185
13186         * lib/getdate.y (parser_control): rels_seen is now a boolean, not a
13187         count, since there's no maximum.  All uses changed.
13188         Add member dsts_seen.
13189         (local_zone): Accumulate dsts_seen rather than relying on tm_isdst
13190         not being INT_MAX.
13191         (get_date): Initialize dsts_seen, and check that it doesn't go over 1.
13192         Use pc_rels_seen to decide whther a date is absolute.
13193
13194         * lib/getdate.y (number): Don't overwrite year.
13195         (get_date): Initialize pc.year.digits to 0, not 4, to enable above
13196         check.
13197
13198 2005-04-02  Simon Josefsson  <jas@extundo.com>
13199
13200         * lib/getaddrinfo.h: Fix OpenBSD compilation failure, inspired by tiny
13201         patch from Yoann Vandoorselaere <yoann@prelude-ids.org>.
13202
13203 2005-03-28  Eric Blake  <ebb9@byu.net>  (tiny change)
13204
13205         * m4/getcwd-path-max.m4: Return success on systems such as Cygwin
13206         where no absolute path name can be longer than PATH_MAX.
13207
13208 2005-03-27  Jim Meyering  <jim@meyering.net>
13209
13210         * lib/argmatch.c: Clarify comment: null-terminated -> NULL-terminated.
13211
13212 2005-03-26  Paul Eggert  <eggert@cs.ucla.edu>
13213
13214         * lib/intprops.h (INT_STRLEN_BOUND, INT_BUFSIZE_BOUND):
13215         "one's complement" -> "ones' complement" in comment, as per Knuth.
13216         "value of type" -> "type or expression" in comment.
13217         * lib/mktime.c, strftime.c: Propagate intprops.h comment nits.
13218
13219 2005-03-26  Jim Meyering  <jim@meyering.net>
13220
13221         Comment nits.
13222         * lib/intprops.h: Add the apostrophe in `(one|two)'s complement'.
13223         Correct typos: s/or/of/.
13224
13225 2005-03-26  Jim Meyering  <jim@meyering.net>
13226
13227         * modules/check-include-files: Move to ../ and rename to...
13228         * check-module: ...this.
13229
13230 2005-03-25  Jim Meyering  <jim@meyering.net>
13231
13232         * modules/xvasprintf (Files): Add xalloc.h.
13233
13234 2005-03-23  Paul Eggert  <eggert@cs.ucla.edu>
13235
13236         * modules/gettext (Files): config/config.rpath ->
13237         build-aux/config.rpath
13238         * modules/iconv (Files): Likewise.
13239         Problem reported by Oskar Liljeblad.
13240
13241 2005-03-23  Jim Meyering  <jim@meyering.net>
13242
13243         * modules/check-include-files: New script to check for
13244         missing dependencies, multiple includes, etc.
13245
13246         * modules/c-strtold (Depends-on): Add xalloc.
13247         * modules/c-strtod (Depends-on): Add xalloc.
13248         * modules/hash (Depends-on): Add xalloc.
13249         (Files): Remove lib/xalloc.h.
13250
13251         * modules/gethrxtime (Files): Add lib/gethrxtime.h.
13252         * modules/userspec (Files): Add lib/inttostr.h.
13253
13254 2005-03-23  Jim Meyering  <jim@meyering.net>
13255
13256         * lib/canonicalize.c: Remove duplicate `#include "stat-macros.h"'.
13257
13258 2005-03-22  Jim Meyering  <jim@meyering.net>
13259
13260         * modules/stat-macros: New module.
13261         * modules/canonicalize, modules/euidaccess, modules/file-type,
13262         * modules/filemode, modules/lchown, modules/makepath,
13263         * modules/rmdir, modules/stat: Depend on new stat-macros module
13264         rather than listing lib/stat-macros.h manually.
13265         Don't add stat-macros.h to lib_SOURCES or list it in Files: section.
13266
13267 2005-03-22  Jim Meyering  <jim@meyering.net>
13268
13269         * m4/stat-macros.m4 (gl_STAT_MACROS): New file/macro.
13270
13271 2005-03-22  Bruno Haible  <bruno@clisp.org>
13272
13273         * config/srclist.txt: Replace target directory 'config' with
13274         'build-aux'.
13275         * config/config.guess, config.sub, config.rpath, depcomp, install-sh:
13276         * config/mdate-sh, missing, mkinstalldirs, texinfo.tex: Move to
13277         ../build-aux/.
13278
13279 2005-03-21  Paul Eggert  <eggert@cs.ucla.edu>
13280
13281         * modules/chdir-long (Depends-on): Add mempcpy.
13282
13283         * modules/acl, modules/backupfile, modules/c-strtod,
13284         modules/c-strtold, modules/canon-host, modules/canonicalize,
13285         modules/cloexec, modules/closeout, modules/dirfd, modules/dirname,
13286         modules/exclude, modules/exitfail, modules/file-type,
13287         modules/filemode, modules/fpending, modules/fsusage, modules/getcwd,
13288         modules/getdate, modules/getline, modules/getpagesize,
13289         modules/getpass, modules/getugroups, modules/group-member,
13290         modules/hard-locale, modules/hash, modules/human, modules/idcache,
13291         modules/inttostr, modules/long-options, modules/makepath,
13292         modules/md5, modules/memcasecmp, modules/memcoll,
13293         modules/modechange, modules/mountlist, modules/path-concat,
13294         modules/pathmax, modules/physmem, modules/posixtm, modules/posixver,
13295         modules/quote, modules/quotearg, modules/readtokens, modules/readutmp,
13296         modules/safe-read, modules/safe-write, modules/same, modules/savedir,
13297         modules/settime, modules/sha1, modules/sig2str, modules/strdup,
13298         modules/strftime, modules/strndup, modules/strverscmp,
13299         modules/timespec, modules/unlocked-io, modules/userspec,
13300         modules/utimecmp, modules/utimens, modules/xalloc, modules/xstrtol,
13301         modules/yesno:
13302         Remove lib_SOURCES line from Makefile.am section, as this is now
13303         done automatically by the corresponding Autoconf macro.
13304
13305 2005-03-21  Jim Meyering  <jim@meyering.net>
13306
13307         Changes imported from coreutils.
13308
13309         * lib/cycle-check.c: Don't include xalloc.h.
13310
13311         * lib/path-concat.c: Don't include assert.h.
13312         (path_concat): Remove assertion that would have triggered
13313         for ABASE starting with more than one slash.
13314         Reported by Andreas Schwab.
13315
13316         * lib/path-concat.c (path_concat): Set *BASE_IN_RESULT
13317         properly when ABASE is an absolute file name.
13318         Correct the description of this function.
13319         Include <assert.h>.
13320         Add an assertion and a test driver.
13321         This fixes a bug introduced on 2004-07-02.
13322         Andreas Schwab reported the resulting failure of cp --parents:
13323         http://lists.gnu.org/archive/html/bug-coreutils/2005-01/msg00130.html
13324
13325 2005-03-21  Jim Meyering  <jim@meyering.net>
13326
13327         * m4/chdir-long.m4 (gl_PREREQ_CHDIR_LONG): Invoke gl_FUNC_MEMRCHR.
13328         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Check for memrchr decl.
13329
13330 2005-03-21  Jim Meyering  <jim@meyering.net>
13331         and  Paul Eggert  <eggert@cs.ucla.edu>
13332
13333         * m4/acl.m4, m4/backupfile.m4, m4/c-strtod.m4, m4/canon-host.m4,
13334         m4/canonicalize.m4, m4/cloexec.m4, m4/closeout.m4, m4/dirfd.m4,
13335         m4/dirname.m4, m4/exclude.m4, m4/exitfail.m4, m4/file-type.m4,
13336         m4/filemode.m4, m4/fpending.m4, m4/fsusage.m4, m4/getcwd.m4,
13337         m4/getdate.m4, m4/getline.m4, m4/getpagesize.m4, m4/getpass.m4,
13338         m4/getugroups.m4, m4/group-member.m4, m4/hard-locale.m4, m4/hash.m4,
13339         m4/human.m4, m4/idcache.m4, m4/inttostr.m4, m4/long-options.m4,
13340         m4/makepath.m4, m4/md5.m4, m4/memcasecmp.m4, m4/memcoll.m4,
13341         m4/modechange.m4, m4/mountlist.m4, m4/nanosleep.m4, m4/path-concat.m4,
13342         m4/pathmax.m4, m4/physmem.m4, m4/posixtm.m4, m4/posixver.m4,
13343         m4/quote.m4, m4/quotearg.m4, m4/readtokens.m4, m4/readutmp.m4,
13344         m4/safe-read.m4, m4/safe-write.m4, m4/same.m4, m4/savedir.m4,
13345         m4/settime.m4, m4/sha1.m4, m4/sig2str.m4, m4/strdup.m4, m4/strftime.m4,
13346         m4/strndup.m4, m4/strverscmp.m4, m4/timespec.m4, m4/unlocked-io.m4,
13347         m4/userspec.m4, m4/utimecmp.m4, m4/utimens.m4, m4/xalloc.m4,
13348         m4/xnanosleep.m4, m4/xstrtol.m4, m4/yesno.m4:
13349         Use AC_LIBSOURCES and AC_LIBOBJ to indicate source and object files
13350         for these modules.
13351
13352 2005-03-18  Paul Eggert  <eggert@cs.ucla.edu>
13353
13354         * lib/strftime.c (my_strftime): If the underlying strftime returns 0
13355         (which shouldn't happen), generate nothing instead of returning 0
13356         immediately, so that nstrftime (NULL, ...) doesn't return 0.
13357
13358 2005-03-16  Bruno Haible  <bruno@clisp.org>
13359
13360         * modules/stdint (Makefile.am): Use HAVE_LONG_LONG_64BIT instead of
13361         HAVE_LONGLONG_64BIT.
13362
13363 2005-03-16  Bruno Haible  <bruno@clisp.org>
13364
13365         * m4/stdint.m4 (gl_STDINT_H): Define HAVE_LONG_LONG_64BIT instead of
13366         HAVE_LONGLONG_64BIT.
13367
13368 2005-03-16  Bruno Haible  <bruno@clisp.org>
13369
13370         * lib/stdint_.h: Use HAVE_LONG_LONG_64BIT instead of
13371         HAVE_LONGLONG_64BIT.
13372
13373 2005-03-15  Paul Eggert  <eggert@cs.ucla.edu>
13374
13375         * lib/strftime.c (my_strftime): Prepend space to format so that we can
13376         reliably distinguish strftime failure from empty output on POSIX
13377         hosts.
13378
13379 2005-03-15  Paul Eggert  <eggert@cs.ucla.edu>
13380
13381         * lib/iconvme.c (SIZE_MAX): New macro, if not already defined.
13382         (iconv_string): Don't guess a size-zero buffer, as that might cause
13383         buffer overrun.  Instead, avoid multiplying by MB_LEN_MAX if the
13384         result would be 'too large', where 'too large' is (heuristically)
13385         the square root of SIZE_MAX, divided by MB_LEN_MAX to allay
13386         overflow concerns.  This will prevent some unwanted malloc failures
13387         when the inputs are very large.
13388
13389 2005-03-15  Karl Berry  <karl@gnu.org>
13390
13391         * config/srclist.txt (config.rpath): from gettext.
13392         * config/config.rpath: update.
13393
13394 2005-03-15  Bruno Haible  <bruno@clisp.org>
13395
13396         * lib/regex.c (byte_re_match_2_internal): Rename local variable 'not'
13397         to 'negate'.
13398
13399         * lib/regex.c (byte_re_match_2_internal): Reduce scope of same_str_p
13400         variable.
13401
13402         * lib/regex.c (EXTEND_BUFFER, regcomp): Cast the realloc/malloc
13403         results.
13404
13405 2005-03-14  Simon Josefsson  <jas@extundo.com>
13406
13407         * lib/timegm.h: Use proper prototype CPP guards, reported by Dave Love
13408         <fx@gnu.org>.
13409
13410 2005-03-14  Paul Eggert  <eggert@cs.ucla.edu>
13411
13412         * lib/mktime.c (TYPE_TWOS_COMPLEMENT, TYPE_ONES_COMPLEMENT,
13413         TYPE_SIGNED_MAGNITUDE, TYPE_MINIMUM, TYPE_MAXIMUM): Sync from
13414         intprops.h.
13415         * lib/strtol.c: Likewise.
13416
13417 2005-03-14  Jim Meyering  <jim@meyering.net>
13418
13419         * lib/strftime.c (my_strftime) [HAVE_STRFTIME && ! (_NL_CURRENT
13420         && HAVE_STRUCT_ERA_ENTRY)]: Initialize the first byte of ubuf[]
13421         to be nonzero so that we (and caller) can detect the difference
13422         between a valid zero-length expansion and an error return, even
13423         when the underlying strftime fails before writing anything into
13424         that location.
13425
13426 2005-03-14  Bruno Haible  <bruno@clisp.org>
13427
13428         * m4/lib-link.m4, gettext.m4, nls.m4, po.m4:
13429         Update from GNU gettext 0.14.3.
13430
13431 2005-03-10  Jim Meyering  <jim@meyering.net>
13432
13433         * m4/save-cwd.m4 (gl_SAVE_CWD): Check for fchdir.
13434
13435 2005-03-10  Jim Meyering  <jim@meyering.net>
13436
13437         * lib/save-cwd.c [!HAVE_FCHDIR]: Define open, fchdir, and chdir_long
13438         so that this module works on systems without fchdir.
13439
13440 2005-03-09  Paul Eggert  <eggert@cs.ucla.edu>
13441
13442         Factor int-properties macros into a single file, except for
13443         glibc-related files.
13444         * lib/intprops.h: New file.
13445         * lib/getloadavg.c: Include it instead of limits.h.
13446         (INT_STRLEN_BOUND): Remove.
13447         * lib/human.c: Include intprops.h.
13448         (group_number): Use INT_STRLEN_BOUND instead of rolling it ourself.
13449         * lib/human.h (LONGEST_HUMAN_READABLE): Use 146/485 rather than
13450         302/1000.
13451         * lib/inttostr.h: Include intprops.h instead of limits.h.
13452         (INT_STRLEN_BOUND, INT_BUFSIZE_BOUND): Remove.
13453         * lib/mktime.c (TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT): New macros,
13454         for consistency with intprops.h.
13455         (time_t_is_integer, twos_complement_arithmetic): Use them.
13456         * lib/sig2str.h: Include <signal.h>, intprops.h.
13457         (INT_STRLEN_BOUND): Remove.
13458         * lib/strftime.c (TYPE_SIGNED): Remove.
13459         (INT_STRLEN_BOUND): Switch to same implementation as intprops.h.
13460         * lib/strtol.c: Adjust comments to match intprops.h.
13461         * lib/userspec.c: Include intprops.h.
13462         (TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Remove.
13463         * lib/utimecmp.c, xnanosleep.c, xstrtol.c: Likewise.
13464         * lib/utimecmp.c (utimecmp): Use TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT
13465         instead of rolling our own expressions.
13466         * lib/xstrtol.c: Include xstrtol.h first, to test interface.
13467
13468         * lib/strftime.c: Include <stdbool.h>.  Use bool where appropriate,
13469         instead of int.
13470         (my_strftime): Do not mishandle years close to INT_MAX, by doing
13471         the right thing even if adding 1900 would overflow.  Similarly
13472         for tm_mon + 1 and tm_yday + 1.
13473         Make %Y always equivalent to %C%y, and similarly for %G and %g.
13474         (DO_NUMBER, DO_NUMBER_SPACEPAD): Set digits to d, not a conditional.
13475         (DO_SIGNED_NUMBER): New macro.
13476         (my_strftime) [HAVE_TZNAME]: Don't dump core if tp->tm_dst > 1.
13477
13478 2005-03-07  Bruno Haible  <bruno@clisp.org>
13479
13480         * m4/mmap-anon.m4 (MAP_FILE, MAP_FAILED): Remove definitions.
13481
13482 2005-03-07  Bruno Haible  <bruno@clisp.org>
13483
13484         * lib/pagealign_alloc.c (MAP_FILE, MAP_FAILED): Define fallbacks.
13485
13486 2005-03-04  Derek R. Price  <derek@ximbiot.com>
13487
13488         * gnulib-tool (func_cp_if_changed, func_mv_if_changed): New functions.
13489         (func_import): Only replace files via --import when they have actually
13490         changed.
13491
13492 2005-03-03  Derek R. Price  <derek@ximbiot.com>
13493
13494         * m4/mmap-anon.m4: New file.
13495         * m4/pagealign_alloc.m4: New file.
13496
13497 2005-03-03  Derek R. Price  <derek@ximbiot.com>
13498             Bruno Haible  <bruno@clisp.org>
13499
13500         * modules/pagealign_alloc: New file.
13501         * MODULES.html.sh (Memory management functions): Add pagealign_alloc.
13502
13503 2005-03-03  Derek R. Price  <derek@ximbiot.com>
13504             Bruno Haible  <bruno@clisp.org>
13505
13506         * lib/pagealign_alloc.h: New file.
13507         * lib/pagealign_alloc.c: New file.
13508
13509 2005-03-03  Bruno Haible  <bruno@clisp.org>
13510
13511         * m4/inttypes.m4, isc-posix.m4, once-only.m4:
13512         Use an all-permissive copyright notice, recommended by RMS.
13513
13514 2005-03-02  Bruno Haible  <bruno@clisp.org>
13515
13516         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Undo the replacement here. Because
13517         of AIX, the replacement has to be done only after <string.h> is
13518         included, therefore not in config.h. stpncpy.h does the replacement,
13519         and stpncpy.c uses it.
13520
13521 2005-03-02  Bruno Haible  <bruno@clisp.org>
13522
13523         * lib/stpncpy.h (stpncpy): Define as a macro without arguments, so that
13524         stpncpy.c uses it.
13525
13526 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
13527
13528         Remove workaround for bug in Linux kernel 2.6.8 or thereabouts.
13529         The workaround isn't strictly needed for POSIX conformance, and
13530         it's too much of a pain to configure and maintain.  We'll ask
13531         people to fix their kernels instead.
13532         * lib/xnanosleep.c: Don't include gethrxtime.h or xtime.h.
13533         (NANOSLEEP_BUG_WORKAROUND): Remove.
13534         (xnanosleep): Remove the workaround.
13535
13536 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
13537
13538         * modules/gettime (Makefile.am): Remove lib_SOURCES line.
13539         Reported by Derek Price.
13540         (Include): Add "timespec.h".
13541
13542         * modules/xnanosleep (Depends-on): Remove gethrxtime.
13543
13544 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
13545
13546         * m4/xnanosleep.m4 (gl_XNANOSLEEP): Remove configuration attempting
13547         to detect nanosleep bug.
13548
13549 2005-03-01  Bruno Haible  <bruno@clisp.org>
13550
13551         * lib/vasnprintf.c (EOVERFLOW): Define to a fallback if needed.
13552
13553 2005-02-26  Paul Eggert  <eggert@cs.ucla.edu>
13554
13555         * modules/gethrxtime: New file.
13556         * modules/xnanosleep (Files): Add m4/xnanosleep.m4.
13557         (Depends-on): Add gethrxtime.
13558         (configure.ac): Add gl_XNANOSLEEP.
13559         (Makefile.am): Remove lib_SOURCES line.
13560
13561 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
13562
13563         * m4/gethrxtime.m4, m4/xnanosleep.m4: New files.
13564         * m4/gettime.m4 (gl_GETTIME): Check for nanotime.
13565
13566 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
13567
13568         * lib/gethrxtime.h, lib/gethrxtime.c, lib/xtime.h: New files.
13569         * lib/timespec.h (gettime): Return void, since it always
13570         succeeds now.  All uses changed.
13571         * lib/gettime.c (gettime) Likewise.
13572         [HAVE_NANOTIME]: Prefer nanotime.
13573         Assume gettimeofday succeeds, as POSIX requires.
13574         Assime time () succeeds, since other code already does.
13575         * lib/xnanosleep.c: Include xtime.h and gethrxtime.h, not xalloc.h.
13576         (timespec_subtract): Remove.
13577         (NANOSLEEP_BUG_WORKAROUND): New constant.
13578         (xnanosleep): Use gethrxtime rather than gettime; this simplifies
13579         things considerably.  Use it only on GNU/Linux hosts, since the
13580         workaround shouldn't be needed elsewhere.
13581
13582 2005-02-24  Bruno Haible  <bruno@clisp.org>
13583
13584         * modules/gettext (Files): Add m4/glibc2.m4.
13585
13586 2005-02-24  Bruno Haible  <bruno@clisp.org>
13587
13588         * m4/gettext.m4, intdiv0.m4, intmax.m4, inttypes-pri.m4, lcmessage.m4:
13589         * m4/lib-link.m4, lib-prefix.m4, nls.m4, po.m4, printf-posix.m4:
13590         * m4/progtest.m4:
13591         Update from GNU gettext 0.14.2.
13592         * m4/glibc2.m4: New file, from GNU gettext 0.14.2.
13593
13594 2005-02-24  Bruno Haible  <bruno@clisp.org>
13595
13596         * lib/localcharset.c: Update from GNU gettext 0.14.2.
13597         * lib/config.charset: Update from GNU gettext 0.14.2.
13598
13599 2005-02-24  Bruno Haible  <bruno@clisp.org>
13600
13601         * lib/gettext.h: Update from GNU gettext 0.14.2.
13602
13603 2005-02-23  Simon Josefsson  <jas@extundo.com>
13604
13605         * m4/iconvme.m4: New file.
13606
13607 2005-02-23  Jim Meyering  <jim@meyering.net>
13608
13609         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Revert yesteday's
13610         change.
13611         Thanks to Bruno Haible for catching it.
13612
13613 2005-02-22  Simon Josefsson  <jas@extundo.com>
13614
13615         * modules/iconvme: New file.
13616
13617         * MODULES.html.sh: Add iconvme.
13618
13619 2005-02-22  Simon Josefsson  <jas@extundo.com>
13620
13621         * lib/iconvme.h, lib/iconvme.c: New files, from libc.
13622
13623 2005-02-22  Simon Josefsson  <jas@extundo.com>
13624
13625         * config/srclist.txt: Sync iconvme.h, iconvme.c from libc.
13626
13627 2005-02-22  Jim Meyering  <jim@meyering.net>
13628
13629         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Fix typo:
13630         s/ifndef/ifdef/.
13631
13632 2005-02-20  Neil Conway  <neilc@samurai.com>
13633
13634         * lib/xgethostname.c (xgethostname): Check for ENOMEM, which is
13635         returned by OSX/Darwin if the specified buffer is not large
13636         enough for the hostname.
13637
13638 2005-02-03  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
13639
13640         * lib/argp-help.c (__argp_help): Create a fake struct argp_state and
13641         pass it to _help, otherwise the latter coredumps trying to
13642         dereference state.root_argp.
13643
13644 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
13645
13646         * modules/chdir-long (Depends-on): Add memrchr.
13647         * modules/memrchr (Files): Add lib/memrchr.h.
13648         (Include): "memrchr.h".
13649
13650 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
13651
13652         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Add AC_LIBSOURCES, for memrchr.h.
13653
13654 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
13655
13656         * lib/memrchr.h: New file.
13657         * lib/chdir-long.c: Include it.
13658         * lib/memrchr.c [!defined _LIBC]: Include it rather than <string.h>
13659         Don't bother including stddef.h.
13660
13661 2005-02-01  Paul Eggert  <eggert@cs.ucla.edu>
13662
13663         * lib/mountlist.h (MOUNTLIST_H_): New macro, to protect against double
13664         inclusion.
13665         Include <sys/types.h>, for dev_t.
13666         (ME_DUMMY, ME_REMOTE): Move from here....
13667         * lib/mountlist.c (ME_DUMMY, ME_REMOTE): To here.
13668         (ME_DUMMY): Count "subfs" as a dummy.  Problem reported by
13669         Dmitry V. Levin.
13670         Include mountlist.h first, to test the interface.
13671
13672 2005-01-29  Bruno Haible  <bruno@clisp.org>
13673
13674         * lib/progname.c (program_name): Initialize.
13675         Needed when linking statically on MacOS X.
13676
13677 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
13678
13679         Sync from coreutils.
13680         * modules/getloadavg (Files): Remove m4/getloadavg.m4.
13681         (Depends-on): Add c-strtod.
13682         (configure.ac): Replace gl_FUNC_GETLOADAVG with AC_FUNC_GETLOADAVG.
13683
13684 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
13685
13686         Sync from coreutils.
13687         * m4/getloadavg.m4, glibc.m4, search-libs.m4: Remove.
13688
13689         Remove files that are specific to coreutils.
13690         * m4/check-decl.m4, jm-macros.m4, lib-check.m4, prereq.m4: Remove.
13691
13692 2005-01-28  Bruno Haible  <bruno@clisp.org>
13693
13694         * modules/javacomp: New file.
13695         * MODULES.html.sh (Java): Add javacomp.
13696
13697 2005-01-28  Bruno Haible  <bruno@clisp.org>
13698
13699         * m4/javacomp.m4: New file, from GNU gettext.
13700
13701 2005-01-28  Bruno Haible  <bruno@clisp.org>
13702
13703         * lib/javacomp.sh.in: New file, from GNU gettext.
13704         * lib/javacomp.h: New file, from GNU gettext.
13705         * lib/javacomp.c: New file, from GNU gettext.
13706
13707 2005-01-26  Simon Josefsson  <jas@extundo.com>
13708
13709         * lib/gai_strerror.c: Use GPL in header.
13710
13711 2005-01-26  Bruno Haible  <bruno@clisp.org>
13712
13713         * modules/javaexec: New file.
13714         * MODULES.html.sh (Java): Add javaexec.
13715
13716 2005-01-26  Bruno Haible  <bruno@clisp.org>
13717
13718         * m4/javaexec.m4: New file, from GNU gettext.
13719
13720 2005-01-26  Bruno Haible  <bruno@clisp.org>
13721
13722         * lib/javaexec.sh.in: New file, from GNU gettext.
13723         * lib/javaexec.h: New file, from GNU gettext.
13724         * lib/javaexec.c: New file, from GNU gettext.
13725
13726 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
13727
13728         * modules/lchown (Depends-on): Remove lchown.h
13729
13730 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
13731
13732         * m4/sysexits.m4 (gl_SYSEXITS): Reverted logic. SYSEXITS_H
13733         must be defined if the header file was not found, in order
13734         to provide a replacement. Reported by Todd Vierling <tv@duh.org>
13735
13736 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
13737
13738         * lib/argp-help.c (hol_entry_help): Avoid using non-constant
13739         initializers for struct pentry_state.
13740         (__argp_error): Check return value of __asprintf
13741         (__argp_failure): Translate error message
13742
13743         * lib/argp-parse.c: Removed braces around the expansion of N_()
13744
13745 2005-01-23  Paul Eggert  <eggert@cs.ucla.edu>
13746
13747         * m4/acl.m4, afs.m4, alloca.m4, argp.m4, assert.m4, atexit.m4,
13748         backupfile.m4, base64.m4, bison.m4, c-bs-a.m4, c-stack.m4,
13749         c-strtod.m4, calloc.m4, canon-host.m4, canonicalize.m4,
13750         clock_time.m4, cloexec.m4, closeout.m4, d-ino.m4, d-type.m4,
13751         dirfd.m4, dirname.m4, dos.m4, dup2.m4, error.m4, euidaccess.m4,
13752         exclude.m4, exitfail.m4, extensions.m4, fcntl-safer.m4,
13753         file-type.m4, fileblocks.m4, filemode.m4, fnmatch.m4, fpending.m4,
13754         free.m4, fstypename.m4, fsusage.m4, ftruncate.m4, getaddrinfo.m4,
13755         getcwd-path-max.m4, getcwd.m4, getdate.m4, getdomainname.m4,
13756         getgroups.m4, gethostname.m4, getline.m4, getndelim2.m4,
13757         getnline.m4, getopt.m4, getpagesize.m4, getpass.m4, getsubopt.m4,
13758         gettime.m4, gettimeofday.m4, getugroups.m4, getusershell.m4,
13759         group-member.m4, hard-locale.m4, hash.m4, host-os.m4, human.m4,
13760         idcache.m4, inttostr.m4, isdir.m4, jm-winsz1.m4, jm-winsz2.m4,
13761         link-follow.m4, long-options.m4, ls-mntd-fs.m4, lstat.m4,
13762         makepath.m4, mathl.m4, md5.m4, memcasecmp.m4, memchr.m4,
13763         memcmp.m4, memcoll.m4, memcpy.m4, memmem.m4, memmove.m4,
13764         memrchr.m4, memset.m4, mkdir-slash.m4, mkstemp.m4, mktime.m4,
13765         modechange.m4, mountlist.m4, nanosleep.m4, obstack.m4,
13766         path-concat.m4, pathmax.m4, perl.m4, physmem.m4, poll.m4,
13767         posixtm.m4, posixver.m4, putenv.m4, quote.m4, quotearg.m4,
13768         readdir.m4, readtokens.m4, readutmp.m4, regex.m4, rename.m4,
13769         restrict.m4, rmdir-errno.m4, rmdir.m4, rpmatch.m4, same.m4,
13770         savedir.m4, settime.m4, sha1.m4, sig2str.m4, snprintf.m4,
13771         sockpfaf.m4, st_dm_mode.m4, st_mtim.m4, stat.m4, stdint.m4,
13772         stdio-safer.m4, strchrnul.m4, strdup.m4, strerror.m4,
13773         strerror_r.m4, strftime.m4, strndup.m4, strnlen.m4, strsep.m4,
13774         strtod.m4, strtoimax.m4, strtok_r.m4, strtol.m4, strtoll.m4,
13775         strtoul.m4, strtoull.m4, strtoumax.m4, strverscmp.m4, sysexits.m4,
13776         time_r.m4, timegm.m4, timespec.m4, tm_gmtoff.m4, tzset.m4,
13777         uint32_t.m4, uintptr_t.m4, unistd-safer.m4, unlink-busy.m4,
13778         unlocked-io.m4, uptime.m4, userspec.m4, utimbuf.m4, utime.m4,
13779         utimecmp.m4, utimens.m4, utimes-null.m4, vsnprintf.m4, xalloc.m4,
13780         xgetcwd.m4, xreadlink.m4, xstrndup.m4, xstrtod.m4, xstrtoimax.m4,
13781         xstrtol.m4, xstrtoumax.m4, yesno.m4:
13782         Use an all-permissive copyright notice, recommended by RMS.
13783
13784 2005-01-21  Paul Eggert  <eggert@cs.ucla.edu>
13785
13786         * modules/chdir-long (Depends-on): Remove mempcpy.
13787
13788 2005-01-21  Jim Meyering  <jim@meyering.net>
13789
13790         * lib/openat.h (AT_SYMLINK_NOFOLLOW): Define to 4096, so it's the
13791         same value as for Solaris 9.
13792
13793         * lib/chdir-long.c (chdir_long): Rewrite to remove limitation on
13794         component length.  This included changing the parameter to be
13795         of type `char *' rather than `char const *'.
13796         * lib/chdir-long.h (chdir_long): Update prototype.
13797
13798         * lib/openat.c (fdopendir, fstatat): New functions.
13799         * lib/openat.h: Include headers required for use of DIR and struct
13800         stat.
13801         [AT_SYMLINK_NOFOLLOW]: Define.
13802         (fdopendir, fstatat): Add prototypes.
13803
13804 2005-01-21  Bruno Haible  <bruno@clisp.org>
13805
13806         * modules/classpath: New file.
13807         * MODULES.html.sh (Java): Add classpath.
13808
13809 2005-01-21  Bruno Haible  <bruno@clisp.org>
13810
13811         * lib/classpath.h: New file, from GNU gettext.
13812         * lib/classpath.c: New file, from GNU gettext.
13813
13814 2005-01-20  Simon Josefsson  <jas@extundo.com>
13815
13816         * modules/version-etc-fsf: New file.
13817
13818 2005-01-20  Simon Josefsson  <jas@extundo.com>
13819
13820         * lib/version-etc-fsf.c: New file, with version_etc_copyright.
13821         * lib/version-etc.c: Remove version_etc_copyright.
13822         * lib/version-etc.h (version_etc_copyright): Use [] instead of * in
13823         prototype, suggested by Paul Eggert <eggert@CS.UCLA.EDU>.
13824
13825 2005-01-20  Simon Josefsson  <jas@extundo.com>
13826
13827         * lib/base64.h (isbase64): Add.
13828
13829         * lib/base64.c (isb64): Rename to isbase64, use to_uchar instead of
13830         using a unsigned prototype, don't inline.
13831         (base64_decode): Use it.
13832
13833 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
13834
13835         * m4/save-cwd.m4 (gl_SAVE_CWD): Remove check for fcntl; we now assume
13836         it.
13837
13838 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
13839
13840         * lib/save-cwd.c (save_cwd): Remove code to support the case
13841         where fchdir is missing or flaky.
13842
13843 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
13844
13845         * MODULES.html.sh (Command-line arguments): Add version-etc-fsf.
13846
13847 2005-01-19  Paul Eggert  <eggert@cs.ucla.edu>
13848
13849         * modules/mempcpy (Makefile.am): Remove mention of mempcpy.h;
13850         AC_LIBSOURCES now does this.
13851         * MODULES.html.sh (Sizes of integer types <limits.h>): New element,
13852         with new ullong_max module.
13853
13854 2005-01-19  Bruno Haible  <bruno@clisp.org>
13855
13856         * modules/sh-quote: New file.
13857         * MODULES.html.sh (Executing programs): Add sh-quote.
13858
13859 2005-01-19  Bruno Haible  <bruno@clisp.org>
13860
13861         * lib/sh-quote.h: New file, from GNU gettext.
13862         * lib/sh-quote.c: New file, from GNU gettext.
13863
13864 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
13865
13866         Merge from coreutils.
13867         * m4/ullong_max.m4: New file.
13868         * m4/jm-macros.m4 (gl_MACROS): Require gl_ULLONG_MAX.
13869         (gl_MACROS): Assume localeconv exists.
13870
13871 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
13872
13873         Merge changes from coreutils, as described below in several
13874         changelogs dated today.
13875
13876         * lib/save-cwd.c: Include "save-cwd.h" before other include files.
13877         (O_DIRECTORY): Remove; not needed here, since "." must be
13878         a directory.  All uses removed.
13879         (save_cwd): Use __sgi || __sun, not sun || __sun.  __sun is
13880         universal on Suns, and we also need to test for IRIX.
13881         Revamp code to use 'if' rather than '#if'.
13882         Avoid unnecessary comparison of cwd->desc to 0.
13883
13884         * lib/utimens.c (futimens): Robustify the previous patch, by checking
13885         for known valid error numbers rather than observed invalid ones.
13886
13887 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
13888
13889         * modules/ullong_max: New file.
13890
13891         * modules/chdir-long, modules/openat: New files.
13892         * modules/save-cwd (Depends-on): Depend on chdir-long.
13893         (Makefile.am): Remove lib_SOURCES; now handled by AC_LIBSOURCES.
13894
13895 2005-01-18  Jim Meyering  <jim@meyering.net>
13896
13897         Merge from coreutils.
13898         * m4/chdir-long.m4, m4/openat.m4: New files.
13899         * m4/save-cwd.m4 (gl_SAVE_CWD): Add AC_LIBSOURCES for save-cwd.c,
13900         save-cwd.h.  Add AC_LIBOBJ for save-cwd.
13901         * m4/chown.m4 (gl_FUNC_CHOWN): When cross-compiling, assume that chown
13902         is sane and DOES follow symlinks.  Besides, testing 20 different
13903         systems found no broken chown implementations.
13904         Prompted by a change in rsync's copy of this macro.
13905         * m4/jm-macros.m4 (gl_MACROS): Require gl_FUNC_CHDIR_LONG.
13906
13907         * m4/lchown.m4 (gl_FUNC_LCHOWN): Use AC_LIBSOURCES.
13908
13909         * m4/utimes.m4: Work around tests/touch/empty-file failure on a system
13910         (sparc64, Linux-2.4.28, glibc-2.3.3) that didn't honor utimes'
13911         NULL-means-set-to-current-time semantics.
13912         Remove temporary file immediately, rather than waiting
13913         for configure's at-exit trap code to do it.
13914
13915 2005-01-18  Jim Meyering  <jim@meyering.net>
13916
13917         * lib/version-etc.c (version_etc_copyright): Update copyright date.
13918
13919         * lib/utimens.c (futimens): Account for the fact that futimes
13920         can also fail with errno == ENOSYS or errno == ENOENT.
13921         Patch from Dmitry V. Levin.
13922
13923         Change the name of the robust chdir function from chdir to chdir_long.
13924         * lib/save-cwd.c: Include chdir-long.h rather than chdir.h.
13925         (restore_cwd): Use chdir_long, not chdir.
13926         * lib/chdir-long.c: Renamed from chdir.c.
13927         * lib/chdir-long.h: Renamed from chdir.h.
13928         [!defined PATH_MAX]: Define chdir_long to chdir on systems like the
13929         Hurd.
13930
13931 2005-01-18  Bruno Haible  <bruno@clisp.org>
13932
13933         * m4/allocsa.m4, m4/codeset.m4, m4/copy-file.m4, m4/eaccess.m4:
13934         * m4/eealloc.m4, m4/eoverflow.m4, m4/execute.m4, m4/fatal-signal.m4:
13935         * m4/findprog.m4, m4/glibc21.m4, m4/iconv.m4, m4/intmax_t.m4:
13936         * m4/inttypes_h.m4, m4/lib-ld.m4, m4/lib-link.m4, m4/lib-prefix.m4:
13937         * m4/linebreak.m4, m4/localcharset.m4, m4/longdouble.m4:
13938         * m4/longlong.m4, m4/mbrtowc.m4, m4/mbstate_t.m4, m4/mbswidth.m4:
13939         * m4/mkdtemp.m4, m4/pipe.m4, m4/readlink.m4, m4/safe-read.m4:
13940         * m4/safe-write.m4, m4/setenv.m4, m4/sig_atomic_t.m4:
13941         * m4/signalblocking.m4, m4/signed.m4, m4/size_max.m4, m4/ssize_t.m4:
13942         * m4/stdbool.m4, m4/stdint_h.m4, m4/stpcpy.m4, m4/stpncpy.m4:
13943         * m4/strcase.m4, m4/strcspn.m4, m4/strpbrk.m4, m4/strstr.m4:
13944         * m4/ucs4-utf.m4, m4/uintmax_t.m4, m4/ulonglong.m4, m4/unicodeio.m4:
13945         * m4/utf-ucs4.m4, m4/vasnprintf.m4, m4/vasprintf.m4:
13946         * m4/wait-process.m4, m4/wchar_t.m4, m4/wint_t.m4, m4/xsize.m4:
13947         Use an all-permissive copyright notice, recommended by RMS.
13948
13949 2005-01-18  Bob Proulx  <bob@proulx.com>
13950
13951         * lib/obstack.c [DEFAULT_ALIGNMENT]: Use an intermediate type to
13952         simplify offsetof() macro construct to avoid compile failure with
13953         native HP-UX 11.0 ANSI C compiler.
13954
13955 2005-01-17  Bruno Haible  <bruno@clisp.org>
13956
13957         * lib/stpncpy.c: Remove HAVE_STPNCPY and gnu_stpncpy renaming,
13958         redundant because stpncpy.m4 takes care of it.
13959
13960 2005-01-17  Bruno Haible  <bruno@clisp.org>
13961
13962         * lib/progreloc.c: Include xalloc.h instead of xmalloc.h.
13963
13964 2005-01-17  Bruno Haible  <bruno@clisp.org>
13965
13966         * lib/progreloc.c (xstrdup): Define as strdup if no xmalloc should be
13967         used.
13968
13969 2005-01-17  Bruno Haible  <bruno@clisp.org>
13970
13971         * lib/fwriteerror.h (fwriteerror): Change specification to include
13972         fclose.
13973         * lib/fwriteerror.c: Include <stdbool.h>.
13974         (fwriteerror): At the end, close the file stream. Record whether
13975         stdout was already closed.
13976
13977 2005-01-17  Bruno Haible  <bruno@clisp.org>
13978
13979         * lib/execute.c (environ): Declare if needed.
13980         * lib/pipe.c (environ): Likewise.
13981         Reported by Michael Schloh von Bennewitz <michael.schloh@cw.com>.
13982
13983 2005-01-11  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
13984
13985         * modules/argp: Depend on vsnprintf
13986
13987 2005-01-10  Jim Meyering  <jim@meyering.net>
13988
13989         * modules/closeout (Depends-on): Add atexit.
13990
13991 2005-01-06  Bruno Haible  <bruno@clisp.org>
13992
13993         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Rename stpncpy to gnu_stpncpy here.
13994
13995 2005-01-04  Paul Eggert  <eggert@cs.ucla.edu>
13996
13997         * lib/human.c (SIZE_MAX, UINTMAX_MAX): Move these conditional
13998         definitions to be after all include files, to avoid collisions.
13999         Problem reported by Bob Proulx.
14000
14001 2005-01-04  Jim Meyering  <jim@meyering.net>
14002
14003         Changes imported from coreutils.
14004         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Rather than using "conftestXXXXXX"
14005         as the mkstemp template, use a temporary directory and an
14006         8.3-friendly template to avoid trouble on systems like DJGPP.
14007         Reported by Juan M. Guerrero via Stepan Kasal.
14008         * m4/(gl_FUNC_MKSTEMP): Include <unistd.h> for the declaration of
14009         close. Remove the temporary directory right away, rather than waiting
14010         for configure's at-exit trap code to do it.
14011         Suggestion from Stepan Kasal.
14012
14013 2005-01-01  Simon Josefsson  <jas@extundo.com>
14014
14015         * gnulib-tool: Print #include directives when --import'ing.
14016
14017 2004-12-28  Simon Josefsson  <jas@extundo.com>
14018
14019         * tests/test-base64.c: Include required header files.  Remove
14020         unused variables.
14021
14022 2004-12-28  Paul Eggert  <eggert@cs.ucla.edu>
14023
14024         * modules/error (Depends-on): Remove gettext.
14025
14026 2004-12-28  Paul Eggert  <eggert@cs.ucla.edu>
14027
14028         * lib/error.c [!_LIBC && !ENABLE_NLS]: Do not include "gettext.h";
14029         not needed.  This removes a dependency on the gettext module.
14030         [defined _LIBC]: Do not include <libintl.h>; not needed.
14031
14032 2004-12-24  Paul Eggert  <eggert@cs.ucla.edu>
14033
14034         * m4/c-strtod.m4 (gl_C99_STRTOLD): New macro.
14035         (gl_C_STRTOD): Use it instead of AC_CHECK_DECLS_ONCE(strtold).
14036
14037 2004-12-24  Paul Eggert  <eggert@cs.ucla.edu>
14038
14039         * lib/c-strtod.c (STRTOD): Depend on HAVE_C99_STRTOLD, not
14040         HAVE_DECL_STRTOLD.
14041
14042 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
14043
14044         * modules/getdate (Depends-on): Remove alloca-opt.
14045
14046 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
14047
14048         * m4/getdate.m4 (gl_GETDATE): Remove AC_FUNC_ALLOCA.
14049
14050 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
14051
14052         * lib/argp-parse.c: Include <stddef.h>.
14053         (alignof, alignto): New macros.
14054         (parser_init): Don't assume that void * is aligned sufficiently
14055         for struct option.
14056
14057         * lib/getdate.y (YYSTACK_USE_ALLOCA): Define to 0, since there's no
14058         need to extend the stack.
14059         (YYINITDEPTH): New macro, so that the initial stack isn't overly
14060         large.
14061
14062 2004-12-22  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
14063
14064         * lib/argp-parse.c (parser_init): Avoid arithmetics on void pointers.
14065
14066 2004-12-19  Paul Eggert  <eggert@cs.ucla.edu>
14067
14068         * modules/regex (lib_SOURCES): Remove regex.c, undoing previous
14069         (2004-10-24) change.  Apparently this was a false alarm.
14070
14071         * modules/getdate: Depend on alloca-opt, not alloca.
14072
14073 2004-12-19  Paul Eggert  <eggert@cs.ucla.edu>
14074
14075         * lib/alloca_.h: Conditionalize on _GNULIB_ALLOCA_H, not _ALLOCA_H.
14076         Remove now-obsolete comment about AIX.
14077         * lib/getdate.y: Include <alloca.h> only if HAVE_ALLOCA.
14078         (YYSTACK_USE_ALLOCA): Define to 0 if !HAVE_ALLOCA.
14079         (YYMAXDEPTH): New macro.
14080
14081 2004-12-18  Simon Josefsson  <jas@extundo.com>
14082
14083         * modules/alloca: Depend on alloca-opt, instead of duplicating it.
14084
14085 2004-12-18  Bruno Haible  <bruno@clisp.org>
14086
14087         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Also test for sigaction.
14088
14089 2004-12-18  Bruno Haible  <bruno@clisp.org>
14090
14091         * lib/fatal-signal.c (fatal_signals): Make non-const.
14092         (init_fatal_signals): New function.
14093         (uninstall_handlers, install_handlers): Ignore signals that were set to
14094         SIG_IGN.
14095         (at_fatal_signal): Call init_fatal_signals.
14096         (init_fatal_signal_set): Likewise. Ignore signals that were set to
14097         SIG_IGN.
14098         Reported by Paul Eggert.
14099
14100 2004-12-18  Bruno Haible  <bruno@clisp.org>
14101
14102         * doc/alloca.texi: New file.
14103         * doc/alloca-opt.texi: New file.
14104
14105 2004-12-17  Jim Meyering  <jim@meyering.net>
14106
14107         * config/install-sh: Use `(exit N); exit N', not `(exit N); exit'.
14108         Otherwise, install-sh could exit with improper exit status when
14109         exiting via a trapped interrupt.  Thanks to a report from Bob Proulx.
14110
14111 2004-12-16  Simon Josefsson  <jas@extundo.com>
14112
14113         * tests/test-base64.c: Add license.
14114
14115 2004-12-15  Stepan Kasal  <address@hidden>
14116
14117         * gnulib-tool (func_emit_lib_Makefile_am): Shorten a long sed command.
14118
14119 2004-12-12  Paul Eggert  <eggert@cs.ucla.edu>
14120
14121         * modules/getcwd (Files): Add m4/d-ino.m4.
14122         Suggested by Mark D. Baushke.
14123
14124 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
14125
14126         * lib/getdate.y (textint): New member "negative".
14127         (time_zone_hhmm): New function.
14128         Expect 14 shift-reduce conflicts, not 13.
14129         (o_colon_minutes): New rule.
14130         (time, zone): Use it to add support for +HH:MM, UTC+HH:MM.
14131         (yylex): Set the "negative" member of signed numbers.
14132
14133 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
14134
14135         * doc/getdate.texi (Time of day items, Time zone items):
14136         Describe new formats +00:00, UTC+00:00.
14137
14138 2004-12-07  Paul Eggert  <eggert@cs.ucla.edu>
14139
14140         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Fix typo in previous change:
14141         spurious "-l"s.  Problem reported by Stepan Kasal.
14142
14143 2004-12-06  Paul Eggert  <eggert@cs.ucla.edu>
14144
14145         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): New macro, to work around bug
14146         in Autoconf 2.59.  Problem reported by Mark D. Baushke.
14147
14148 2004-12-04  Simon Josefsson  <jas@extundo.com>
14149
14150         * modules/getaddrinfo (License): Add LGPL, reported by Yoann
14151         Vandoorselaere <yoann@prelude-ids.org>.
14152
14153 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
14154
14155         Changes imported from coreutils.
14156         * m4/hard-locale.m4 (gl_HARD_LOCALE): Assume locale.h and setlocale
14157         exist.
14158         * m4/human.m4 (gl_HUMAN): Assume locale.h and localeconv exist.
14159
14160 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
14161
14162         Changes imported from coreutils.
14163         * lib/hard-locale.c: Assume <locale.h> exists.
14164         Include "strdup.h".
14165         (GLIBC_VERSION): New macro.
14166         (hard_locale): Assume setlocale exists.
14167         Rewrite to avoid #ifdef.
14168         Use strdup rather than malloc + strcpy.
14169         * lib/human.c: Assume <locale.h> exists.
14170         (human_readable): Assume localeconv exists.
14171
14172 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
14173
14174         * modules/hard-locale (Depends-on): Add strdup.
14175
14176 2004-12-01  Jakub Jelinek  <jakub@redhat.com>
14177
14178         * lib/mktime.c (__mktime_internal): If SEC_REQUESTED != SEC,
14179         convert T2, not T.  (Imported from libc.)
14180
14181 2004-11-30  Simon Josefsson  <jas@extundo.com>
14182
14183         * modules/restrict (License): Change to LGPL.
14184
14185 2004-11-30  Simon Josefsson  <jas@extundo.com>
14186
14187         * m4/restrict.m4: Add copyright and copying conditions.
14188
14189 2004-11-30  Simon Josefsson  <jas@extundo.com>
14190
14191         * m4/base64.m4: New file.
14192
14193 2004-11-30  Simon Josefsson  <jas@extundo.com>
14194
14195         * MODULES.html.sh (Extra functions based on ANSI C 89): Add
14196         base64.
14197
14198         * tests/test-base64.c: New file.
14199
14200         * modules/base64: New file.
14201
14202 2004-11-30  Paul Eggert  <eggert@cs.ucla.edu>
14203
14204         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX):
14205         Define HAVE_PARTLY_WORKING_GETCWD if getcwd is partly working.
14206
14207         * m4/readutmp.m4 (gl_READUTMP): Don't check for sys/param.h.
14208
14209 2004-11-30  Paul Eggert  <eggert@cs.ucla.edu>
14210
14211         * lib/getcwd.c (is_ENAMETOOLONG): New macro.
14212         (__getcwd.c): Don't restore errno; glibc doesn't.
14213         [HAVE_PARTLY_WORKING_GETCWD && !defined AT_FDCWD]: Try system getcwd
14214         first, falling back to our code only if its results look suspicious.
14215         Ensure that the resulting buffer is only as large as necessary.
14216
14217         * lib/readutmp.c: Include readutmp.h first.
14218         Include <errno.h>, since readutmp.h no longer does that.
14219         * lib/readutmp.h: Don't include <errno.h>,
14220         <sys/param.h>, <time.h>; not needed to establish interface.
14221         (errno): Remove decl.
14222         (HAVE_STRUCT_XTMP_UT_TYPE): Remove; no longer needed.
14223         (UT_TYPE_EQ, UT_TYPE_NOT_DEFINED, UT_TYPE_BOOT_TIME,
14224         UT_TYPE_USER_PROCESS, IS_USER_PROCESS): New macros.
14225
14226 2004-11-28  Simon Josefsson  <jas@extundo.com>
14227
14228         * lib/base64.h, base64.c: New file.
14229
14230 2004-11-27  Paul Eggert  <eggert@cs.ucla.edu>
14231
14232         * lib/getcwd.h: New file, which I forgot to check in on 2004-11-25.
14233
14234 2004-11-26  Paul Eggert  <eggert@cs.ucla.edu>
14235
14236         * modules/getcwd (Files): Add lib/getcwd.h, m4/getcwd.m4.
14237         (Depends-on): Remove pathmax, same.  Add mempcpy.
14238         (configure.ac): GL_FUNC_GETCWD_PATH_MAX -> gl_FUNC_GETCWD.
14239         (Makefile.am): Append getcwd.h to lib_SOURCES.
14240         (Include): Add getcwd.h.
14241         (Maintainer): Change from Jim Meyering to "all, glibc",
14242         since getdate now uses intended-for-glibc code.
14243         * modules/xgetcwd (Files): Remove m4/getcwd.m4.
14244         (Depends-on): Depend on getcwd.  Do not depend on pathmax.
14245
14246 2004-11-25  Paul Eggert  <eggert@cs.ucla.edu>
14247
14248         Fix problems reported by Scott S. Tinsley for HP-UX 11.11 using
14249         HP's ANSI C compiler.
14250         * lib/fsusage.c (statvfs) [HAVE_SYS_STATVFS_H]: Remove decl.
14251         Declaring int functions causes warnings on some modern systems and
14252         shouldn't be needed to compile on ancient ones.
14253         * lib/same.c (MIN) [defined MIN]: Don't define, since it's already
14254         defined.
14255
14256         * lib/getcwd.c: Replace by a copy of glibc/sysdeps/posix/getcwd.c, but
14257         with the following changes.
14258         (__set_errno): Parenthesize properly.
14259         Include <stdbool.h>.
14260         (MIN, MAX, MATCHING_INO): New macros.
14261         (__getcwd): Define with prototype, not K&R form.
14262         Use heuristics to allocate default buffer on stack if possible.
14263         If AT_FDCWD is defined, use openat and fstatat to avoid O(N**2)
14264         behavior, and to avoid the PATH_MAX limit when computing
14265         ../../../../...
14266         Use MATCHING_INO to compare inode number to file.
14267         Check for arithmetic overflow in size calculations.
14268         Fix bug in reallocation of dot array that caused getcwd to fail
14269         on directories nested deeper than 75.
14270         Be more careful about saving errno on error.
14271         Do not use realloc; use only free+malloc, as this is a bit
14272         more flexible and avoids a needless copy operation.
14273         Do not inspect st_dev and st_ino for symbolic links; POSIX
14274         doesn't specify the latter.
14275         Check for closedir errors.
14276         Avoid needless casts.
14277         Use "#ifdef weak_alias" around weak_alias, to be like other
14278         glibc code.
14279         The following changes to getcwd.c have effect only when used in
14280         gnulib; they have no effect inside glibc proper.
14281         (#pragma alloca) [defined _AIX && !defined __GNUC__]: Remove,
14282         as alloca isn't used.
14283         (alloca, __alloca): Likewise.
14284         [!_LIBC]: Include "getcwd.h", "mempcpy.h".
14285         Include <stddef.h>, <stdlib.h>, <string.h>, <limits.h>
14286         unconditionally, as gnulib assumes C89 or better.
14287         Do not include <sys/param.h>.
14288         (errno) [!defined __GNU_LIBRARY__ && !defined STDC_HEADERS]: Remove
14289         no-longer-necessary 'extern int errno' decl; gnulib assumes C89 or
14290         better.
14291         (NULL) [!defined NULL]: Remove; we assume C89 or better.
14292         Include <dirent.h> in a way that is compatible with modern Autoconf.
14293         (_D_ALLOC_NAMELEN, _D_EXACT_NAMLEN):
14294         New macros, if not already defined.
14295         Include <unistd.h> if _LIBC, not if __GNU_LIBRARY__.
14296         Use "_LIBC", not "defined _LIBC", for consistency.
14297         (HAVE_MEMPCPY): Remove; no longer needed now that gnulib has
14298         a mempcpy module.
14299         (__lstat, __closedir, __opendir, __readdir) [!_LIBC]: New macros.
14300         (GETCWD_RETURN_TYPE): Remove.  All uses replaced by char *.
14301         * lib/xgetcwd.c: David MacKenzie's old code was removed, so give
14302         credit only to Jim Meyering and adjust the copyright dates.
14303         Do not include <limits.h>, <stdio.h>, <sys/types.h>,
14304         <stdlib.h>, <unistd.h>, "pathmax.h".
14305         Instead, include "xgetcwd.h" (first) and "getcwd.h".
14306         (INITIAL_BUFFER_SIZE): Remove.
14307         (xgetcwd): Rely on getcwd, since we now depend on a reliable one.
14308
14309 2004-11-25  Paul Eggert  <eggert@cs.ucla.edu>
14310
14311         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Renamed from
14312         GL_FUNC_GETCWD_PATH_MAX for consistency.  All uses changed.
14313         Use the _ONCE methods, for efficiency.
14314         Check for fcntl.h.  In test program, include <errno.h>
14315         and <fcntl.h> if available.  Remove old K&R cruft from
14316         test program.  Check for common errors in GNU/Linux,
14317         OpenBSD, and Solaris.  Just set gl_cv_func_getcwd_path_max;
14318         don't do AC_LIBOBJ, as that's getcwd.m4's job.
14319         * m4/getcwd.m4 (gl_FUNC_GETCWD_NULL): Renamed from
14320         AC_FUNC_GETCWD_NULL.  All used changed.  Change cache variable
14321         name accordingly.
14322         (gl_FUNC_GETCWD, gl_PREREQ_GETCWD): New macros.  Revamp to
14323         accommodate new getcwd.c.
14324         * m4/jm-macros.m4 (gl_MACROS): Don't require GL_FUNC_GETCWD_PATH_MAX.
14325         * m4/prereq.m4 (gl_PREREQ): Add gl_FUNC_MEMPCPY.
14326         * m4/xgetcwd.m4 (gl_XGETCWD): Replace with gl_FUNC_GETCWD, since
14327         that's all we need now.
14328
14329 2004-11-23  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
14330
14331         * m4/argp.m4 (gl_ARGP): Require gl_GETOPT_SUBSTITUTE unconditionally:
14332         argp-parse.c depends on getopt internals, that means we should
14333         always use our getopt, to be on the safe side.
14334         * m4/getopt.m4 (gl_GETOPT): Check if GETOPT_H is already set, in
14335         order not to spoil the result of an eventual previous invocation
14336         of gl_GETOPT_SUBSTITUTE.
14337
14338 2004-11-23  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
14339
14340         * lib/getopt_.h: Re-addition of __getopt_argv_const caused
14341         redefinition warnings. To avoid them, include the defines
14342         in `#if !defined __need_getopt ... #endif'. The only place
14343         where __getopt_argv_const is used is in definitions
14344         of getopt_long and getopt_long_only below, which are as well
14345         protected by `#ifndef __need_getopt'.
14346         [defined __GETOPT_PREFIX && !defined __need_getopt]: Undef
14347         __need_getopt after including <stdio.h> and <unistd.h> These
14348         headers might have defined it.
14349
14350 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
14351
14352         * m4/utimens.m4 (gl_UTIMENS): Check for futimes function.
14353
14354 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
14355
14356         * lib/utimens.c (__attribute__, ATTRIBUTE_UNUSED): New macros.
14357         (futimens): New function, which uses futimes if available.
14358         (futimens, utimens): Support timespec==NULL, with same semantics
14359         as utime and utimens.
14360         * lib/utimens.h (futimens): New decl.
14361
14362 2004-11-23  Jim Meyering  <jim@meyering.net>
14363
14364         * lib/getopt_.h: Remove trailing blanks.
14365
14366 2004-11-23  Jim Meyering  <jim@meyering.net>
14367
14368         * lib/__fpending.c: Add comment.
14369
14370 2004-11-22  Paul Eggert  <eggert@cs.ucla.edu>
14371
14372         * modules/canonicalize (Depends-on): Add xreadlink.
14373         Problem reported by James Youngman.
14374
14375 2004-11-20  Paul Eggert  <eggert@cs.ucla.edu>
14376
14377         * lib/getopt_.h (__GETOPT_CONCAT, __GETOPT_XCONCAT, __GETOPT_ID):
14378         New macros.
14379         (getopt, getopt_long, getopt_long_only, optarg, opterr, optind,
14380         optopt): Use them instead of invoking ## directly; otherwise, the
14381         symbols will be __GETOPT_PREFIXgetopt rather than rpl_getopt.
14382
14383 2004-11-19  Bruno Haible  <bruno@clisp.org>
14384
14385         * lib/strtok_r.c: Move comments from here...
14386         * lib/strtok_r.h: ... to here.
14387
14388 2004-11-17  Paul Eggert  <eggert@cs.ucla.edu>
14389
14390         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Check for buggy calloc
14391         implementations that mishandle size_t overflow.
14392
14393 2004-11-17  Paul Eggert  <eggert@cs.ucla.edu>
14394
14395         * lib/realloc.c (rpl_realloc): Call 'free' if n==0, since realloc
14396         might fail.  Problem reported by Yoann Vandoorselaere.
14397         * lib/calloc.c (rpl_calloc): Defend against buggy calloc
14398         implementations that mishandle size_t overflow.
14399
14400 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
14401
14402         * modules/canon-host (Depends-on): Add strdup.
14403
14404 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
14405
14406         * m4/canon-host.m4 (gl_CANON_HOST): Check for getaddrinfo.
14407
14408 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
14409
14410         * lib/canon-host.c: Include "strdup.h".
14411         (canon_host): Use getaddrinfo if available, so that IPv6 works.
14412         Use strdup instead of malloc/strcpy to duplicate strings.
14413
14414         * lib/human.h (LONGEST_HUMAN_READABLE): Add 1 for space before unit.
14415         (human_space_before_unit): New constant.
14416         * lib/human.c (human_readable): Support it.
14417
14418         * lib/xgetcwd.c: Include <limits.h>, for PATH_MAX.
14419         (xgetcwd): Set errno correctly when failing.
14420         Work around Solaris 9 bug: getcwd sets errno==ERANGE even though
14421         the failure is actually due to a PATH_MAX problem.
14422
14423         Further getopt changes to make it more likely that glibc will
14424         buy the changes back.
14425         * lib/getopt.c (POSIXLY_CORRECT): New constant.
14426         (getopt): Use it, so to preserve glibc semantic
14427         * lib/getopt1.c (getopt_long, getopt_long_only): Arg is char * const *
14428         when compiling for libc.
14429         * lib/getopt_.h (__getopt_argv_const): Bring it back.
14430         (getopt_long, getopt_long_only): Use it.
14431
14432         * lib/getopt.c (_getopt_initialize, _getopt_internal_r,
14433         _getopt_internal): New arg POSIXLY_CORRECT.  All callers changed.
14434         (getopt): Argv is now char * const *, as per standard.
14435         (_getopt_internal_r, _getopt_internal): Argv is now char **,
14436         not char *__getopt_argv_const *.
14437         * lib/getopt1.c (getopt_long, _getopt_long_r, getopt_long_only,
14438         _getopt_long_only_r): Likewise.
14439         * lib/getopt_.h (getopt, getopt_long, geopt_long_only): Likewise.
14440         * lib/getopt_int.h (_getopt_internal, _getopt_internal_r,
14441         _getopt_long_r, _getopt_long_only_r): Likewise.
14442         * lib/getopt_.h (__getopt_argv_const): Remove.
14443         (getopt): Argv is now char * const *, as per standard.
14444
14445         * lib/getdate.y (tORDINAL): New token.
14446         (day, relunit): Allow it for relative times.
14447         (relative_time_table): Use tORDINAL for ordinals.
14448
14449 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
14450
14451         * doc/getdate.texi (General date syntax): "next" is 1, not 2.
14452         Document that "second" isn't allowed as an ordinal number.
14453
14454 2004-11-16  Jim Meyering  <jim@meyering.net>
14455
14456         * modules/closeout (Depends-on): Add fpending.
14457
14458 2004-11-15  Jim Meyering  <jim@meyering.net>
14459
14460         * lib/closeout.c: Include "__fpending.h" once again.
14461         Include <stdbool.h>.
14462         (close_stdout): Don't fail just because stdout was closed initially,
14463         since some programs don't write to stdout in the normal course of
14464         operation (other than --version and --help), and we don't want this
14465         function to make e.g. `touch file >&-' fail.
14466         But do fail if it was closed and someone has tried to write to it.
14467         E.g., `printf foo >&-' must fail.
14468
14469 2004-11-13  Jim Meyering  <jim@meyering.net>
14470
14471         * m4/jm-macros.m4: Do require gl_FUNC_FPENDING.
14472
14473 2004-11-12  Simon Josefsson  <jas@extundo.com>
14474
14475         * config/srclist.txt: Add strtok_r.c, glibc bought our changes, but a
14476         small doc fix is still pending.
14477
14478 2004-11-11  Simon Josefsson  <jas@extundo.com>
14479
14480         * modules/strtok_r: New file.
14481
14482         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
14483         strtok_r.
14484
14485 2004-11-11  Simon Josefsson  <jas@extundo.com>
14486
14487         * m4/strtok_r.m4: New file.
14488
14489         * m4/getopt.m4: Replace opterr.
14490
14491 2004-11-11  Simon Josefsson  <jas@extundo.com>
14492
14493         * lib/strtok_r.h, strtok_r.c: New file.
14494
14495 2004-11-11  Paul Eggert  <eggert@cs.ucla.edu>
14496
14497         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): Define __GETOPT_PREFIX instead
14498         of replacing opterr, getopt, etc.  This should handle the
14499         powerpc-apple-darwin5.5 problem recently noted by Simon Josefsson.
14500
14501 2004-11-11  Paul Eggert  <eggert@cs.ucla.edu>
14502
14503         * lib/getopt_.h (__getopt_argv_const): New macro, to be used so that
14504         we can stop lying to compilers about the constness of argv when we
14505         are compiled outside glibc.
14506         (getopt, getopt_long, getopt_long_only): Use it.
14507         * lib/getopt.c (_getopt_initialize, _getopt_internal_r,
14508         _getopt_internal, getopt): Likewise.
14509         * lib/getopt1.c (getopt_long, _getopt_long_r, getopt_long_only,
14510         _getopt_long_only_r): Likewise.
14511         * lib/getopt_int.h (_getopt_internal, _getopt_internal_r,
14512         _getopt_long_r, _getopt_long_only_r): Likewise.
14513
14514         * lib/getopt_.h [defined __GETOPT_PREFIX && !defined __need_getopt]:
14515         Include <stdlib.h> and <stdio.h>, and <unistd.h> if available.
14516         Then rename getopt to __GETOPT_PREFIX##getopt, and so forth for
14517         the other external symbols.
14518         (getopt) [!defined __GNU_LIBRARY]: Use prototype, not old-style
14519         declaration, since the above renaming now works around collisions.
14520
14521 2004-11-11  Jim Meyering  <jim@meyering.net>
14522
14523         * lib/linebreak.c: Remove trailing blanks.
14524         * lib/alloca_.h: Likewise.
14525         * lib/acosl.c: Likewise.
14526         * lib/euidaccess.c: Likewise.
14527         * lib/allocsa.h: Likewise.
14528
14529 2004-11-10  Simon Josefsson  <jas@extundo.com>
14530
14531         * m4/getaddrinfo.m4: New file.
14532
14533 2004-11-10  Simon Josefsson  <jas@extundo.com>
14534
14535         * lib/getaddrinfo.h, lib/getaddrinfo.c: New files.
14536
14537 2004-11-10  Simon Josefsson  <jas@extundo.com>
14538
14539         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
14540         getaddrinfo.
14541
14542         * modules/getaddrinfo: New file.
14543
14544 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
14545
14546         * m4/prereq.m4 (gl_PREREQ): Require gt_FUNC_SETENV.
14547
14548 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
14549
14550         * lib/mktime.c (SHR): New macro, which is a portable
14551         substitute for >> that should work even on Crays.
14552         (TIME_T_MIDPOINT, ydhms_diff, __mktime_internal): Use it.
14553         Problem reported by Mark D. Baushke in
14554         <http://lists.gnu.org/archive/html/bug-gnulib/2004-11/msg00071.html>.
14555         * lib/getdate.y (SHR): Likewise.
14556         (tm_diff): Use it.
14557         * lib/strftime.c (SHR): Likewise.
14558         (tm_diff): Use it.
14559         * lib/quotearg.c (struct quoting_options): Use unsigned int for
14560         quote_these_too, so that right shifts are well defined.  All uses
14561         changed.
14562
14563 2004-11-10  Jim Meyering  <jim@meyering.net>
14564
14565         Ensure that no close failure goes unreported.
14566         * lib/closeout.c (close_stdout): Always close stdout.  I.e., don't
14567         return early when it seems there's nothing to flush.
14568         Don't include __fpending.h.
14569
14570 2004-11-10  Jim Meyering  <jim@meyering.net>
14571
14572         * modules/closeout (Depends-on): Remove fpending.
14573
14574 2004-11-10  Jim Meyering  <jim@meyering.net>
14575
14576         * m4/jm-macros.m4 (gl_MACROS): Don't require gl_FUNC_FPENDING.
14577
14578 2004-11-09  Paul Eggert  <eggert@cs.ucla.edu>
14579
14580         * m4/strftime.m4 (_gl_STRFTIME_PREREQS): Remove.  Move its body to
14581         gl_FUNC_STRFTIME.
14582         (gl_FUNC_STRFTIME): Use AC_CHECK_FUNCS_ONCE and AC_CHECK_HEADERS_ONCE
14583         and AC_REQUIRE when possible, to avoid duplicate checks.
14584         Check for <wchar.h>.
14585
14586 2004-11-09  Paul Eggert  <eggert@cs.ucla.edu>
14587
14588         * lib/strftime.c (DO_MULTIBYTE): Check for wchar.h, too.
14589
14590 2004-11-09  Bruno Haible  <bruno@clisp.org>
14591
14592         * m4/sockpfaf.m4: New file.
14593
14594 2004-11-05  Bruno Haible  <bruno@clisp.org>
14595
14596         * lib/readlink.c: Include stddef.h, needed for size_t on Woe32.
14597         Reported by Mark D. Baushke <mdb@cvshome.org>.
14598
14599 2004-11-04  Bruno Haible  <bruno@clisp.org>
14600
14601         2004-09-11  Bruno Haible  <bruno@clisp.org>
14602                 * allocsa.valgrind: New file.
14603         2004-02-06  Bruno Haible  <bruno@clisp.org>
14604                 * allocsa.h (sa_alignof): Define differently with HP-UX cc, to
14605                 avoid a bug of this cc on HP-UX 10.20 dealing with enums.
14606                 Reported by Christopher Seip <chris.seip@hp.com>.
14607
14608 2004-11-04  Bruno Haible  <bruno@clisp.org>
14609
14610         * modules/allocsa (Files): Add lib/allocsa.valgrind.
14611         (Makefile.am): Distribute it.
14612
14613 2004-11-03  Paul Eggert  <eggert@cs.ucla.edu>
14614
14615         * lib/xreadlink.c (xreadlink): AIX and HP-UX readlink return -1
14616         with errno == ERANGE if the buffer is too small.
14617         Problem reported by Mark D. Baushke.
14618
14619 2004-11-03  Albert Chin  <china@thewrittenword.com>
14620             Paul Eggert  <eggert@cs.ucla.edu>
14621
14622         * m4/uint32_t.m4 (gl_AC_TYPE_UINT32_T): When determining uint32_t
14623         equivalent, substitute $ac_type for equivalent type rather than
14624         blindly using uint32_t *always* which won't work if uint32_t is not
14625         available.  Define _UINT32_T to work around typedef of uint32_t if
14626         <sys/sched.h>, <pthread.h>, or <semaphore.h> used on Solaris
14627         2.5.1.
14628
14629 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
14630
14631         * m4/jm-macros.m4: Sync from coreutils.
14632         (gl_MACROS): Check for mbrlen, for pathchk.
14633         (gl_CHECK_ALL_TYPES): Require AC_TYPE_MBSTATE_T, for pathchk.
14634
14635 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
14636
14637         * lib/xreadlink.c (MAXSIZE): New macro.
14638         (xreadlink): Use it instead of SSIZE_MAX.  Ensure initial buffer
14639         size does not exceed MAXSIZE.  Avoid cast.
14640         As suggested by Mark D. Baushke in
14641         <http://lists.gnu.org/archive/html/bug-gnulib/2004-11/msg00009.html>,
14642         if readlink fails with buffer size just under MAXSIZE, try again
14643         with MAXSIZE.
14644
14645 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
14646
14647         * config/srclist.txt: Add mktime.c; glibc bought all our changes.
14648
14649 2004-11-02  Derek R. Price  <derek@ximbiot.com>
14650         and  Paul Eggert  <eggert@cs.ucla.edu>
14651
14652         * lib/getdate.y [!TEST]: Include <stdio.h>, since we use sprintf now.
14653         (get_date): Overparenthesize to avoid GCC warning.
14654
14655 2004-11-02  Bruno Haible  <bruno@clisp.org>
14656
14657         * m4/setenv.m4 (gt_FUNC_SETENV): Define VOID_UNSETENV if unsetenv()
14658         returns void.
14659
14660 2004-11-02  Bruno Haible  <bruno@clisp.org>
14661
14662         * lib/setenv.h (unsetenv): Define as a macro if the system's unsetenv()
14663         function returns void.
14664
14665 2004-11-01  Paul Eggert  <eggert@cs.ucla.edu>
14666
14667         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for declarations of
14668         fflush_unlocked, flockfile, funlockfile, funlockfile,
14669         fputs_unlocked, putc_unlocked.
14670
14671 2004-11-01  Paul Eggert  <eggert@cs.ucla.edu>
14672
14673         * lib/getpass.c (fflush_unlocked, flockfile, funlockfile)
14674         (funlockfile, fputs_unlocked, putc_unlocked): Don't define if
14675         already declared.
14676
14677 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
14678
14679         * modules/getdate (Files): Add doc/getdate.texi.
14680         (Depends-on): Add setenv, xalloc.
14681
14682 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
14683
14684         * lib/getdate.y: Add support for TZ="foo" within a date string.
14685         Fix some bugs near time_t boundaries.  Reject dates with
14686         out-of-range components, e.g., "Sept 31".
14687         Include <stdlib.h>, "setenv.h", "xalloc.h".
14688         (ISDIGIT_LOCALE): Remove; unused.
14689         Note that the TZ and time functions used here are not reentrant.
14690         (mktime_ok, get_tz): New functions.
14691         (TZBUFSIZE): New constant.
14692         (get_date): Parse leading TZ="foo".  Reject out-of-range components;.
14693         This requires that we sometimes generate our own TZ="XXX..." setting.
14694
14695 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
14696
14697         * doc/getdate.texi: New file, from coreutils with modifications for
14698         the new TZ parsing.
14699
14700 2004-10-27  Derek R. Price  <derek@ximbiot.com>
14701
14702         * lib/mktime.c (not_equal_tm): Remove redundant check.
14703
14704 2004-10-24  Paul Eggert  <eggert@cs.ucla.edu>
14705
14706         * modules/regex (lib_SOURCES): Add regex.c.
14707         Reported by James Youngman in
14708         <http://lists.gnu.org/archive/html/bug-gnulib/2004-10/msg00199.html>.
14709
14710 2004-10-24  Paul Eggert  <eggert@cs.ucla.edu>
14711
14712         * lib/getdate.y: Use Bison 1.875 features, and some minor
14713         code cleanups.  This change does not affect semantics.
14714         Don't include <stdlib.h>; no longer needed.
14715         Don't include unlocked-io.h; only the "#if TEST" code uses
14716         stdio, and performance isn't crucial there.
14717         (PC, YYLEX_PARAM, YYPARSE_PARAM): Remove; replaced by
14718         Bison 1.875 features as described below.
14719         All uses of "PC." replaced by "pc->".
14720         (YYSTYPE): Add a forward declaration.
14721         (yylex, yyerror): Use full prototypes in forward decls.
14722         Use "%pure-parser" rather than obsolescent "%pure_parser".
14723         Use %parse-param and %lex-param instead of obsolescent
14724         YYPARSE_PARAM and YYLEX_PARAM.
14725         (meridian_table, month_and_day_table, time_units_table,
14726         relative_time_table, time_zone_table, military_table,
14727         lookup_zone, lookup_word, get_date):
14728         Use NULL instead of 0 where appropriate.
14729         (to_hour): Avoid abort (), to avoid a dependency on
14730         stdlib.h.
14731         (yyerror, yylex): Now accepts parser_control * arg.
14732         (main) [TEST]: Use '\0' rather than 0 for char.
14733
14734 2004-10-22  Paul Eggert  <eggert@cs.ucla.edu>
14735
14736         * m4/getpagesize.m4 (gl_GETPAGESIZE): Check for <sys/param.h>.
14737
14738 2004-10-22  Paul Eggert  <eggert@cs.ucla.edu>
14739
14740         * lib/getpagesize.c (getpagesize): Don't assume <sys/param.h> exists.
14741         It's now the caller's responsibility to handle the case where
14742         !HAVE_GETPAGESIZE && !defined getpagesize.
14743
14744         * lib/mktime.c (leapyear): Arg is long int, not int.
14745
14746 2004-10-18  Paul Eggert  <eggert@cs.ucla.edu>
14747
14748         * lib/argp-fs-xinl.c, argp-xinl.c: Update from glibc.
14749
14750 2004-10-17  Paul Eggert  <eggert@cs.ucla.edu>
14751
14752         * gnulib-tool (func_emit_lib_Makefile_am): Fix typo: a $ was
14753         missing.  Problem reported by James Youngman.
14754
14755 2004-10-16  Simon Josefsson  <jas@extundo.com>
14756
14757         * gnulib-tool: Fix comments.  Fix parse problem.
14758         (func_emit_lib_Makefile_am): Don't hard code a in libgl_a_SOURCES.
14759
14760 2004-10-15  Paul Eggert  <eggert@cs.ucla.edu>
14761
14762         * m4/getopt.m4 (gl_GETOPT): Detect and reject the incompatible BSD
14763         implementation of getopt_long.  Problem reported by Alexander Taler in:
14764         http://lists.gnu.org/archive/html/bug-gnulib/2004-10/msg00103.html
14765
14766 2004-10-15  Bruno Haible  <bruno@clisp.org>
14767
14768         * gnulib-tool: Untabify. Initialize supplied_libname.
14769         (func_usage): More homogenous output.
14770         (func_modules_transitive_closure, func_modules_to_filelist,
14771         func_emit_lib_Makefile_am): New functions.
14772         (func_import): New function, extracted from big case statement. Use
14773         func_get_license, func_modules_transitive_closure,
14774         func_modules_to_filelist, func_emit_lib_Makefile_am. Initialize
14775         opt_lgpl. Don't use test -a, as it's not portable.
14776         (func_create_testdir): Use func_modules_transitive_closure,
14777         func_modules_to_filelist, func_emit_lib_Makefile_am.
14778
14779 2004-10-15  Bruno Haible  <bruno@clisp.org>
14780
14781         * gnulib-tool (func_import): Let gl_INIT define LTALLOCA when needed.
14782
14783 2004-10-15  Bruno Haible  <bruno@clisp.org>
14784
14785         * gnulib-tool (func_emit_lib_Makefile_am): Add markers to separate
14786         the portions belonging to each module.
14787         Suggested by Derek Robert Price <derek@ximbiot.com>.
14788
14789 2004-10-12  Simon Josefsson  <jas@extundo.com>
14790
14791         * lib/getpass.c (fflush_unlocked, flockfile, funlockfile)
14792         (fputs_unlocked, putc_unlocked) [!_LIBCS && !USE_UNLOCKED_IO]: Map
14793         to real functions.
14794
14795 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
14796
14797         * modules/vsnprintf: New file.
14798
14799 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
14800
14801         * m4/vsnprintf.m4: New file.
14802
14803 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
14804
14805         * lib/vsnprintf.h: New file.
14806         * lib/vsnprintf.c: New file.
14807
14808 2004-10-11  Bruno Haible  <bruno@clisp.org>
14809
14810         * MODULES.html.sh (Support for systems lacking ISO C 99): Add
14811         vsnprintf.
14812
14813 2004-10-10  Paul Eggert  <eggert@cs.ucla.edu>
14814
14815         * config/srclistvars.sh: Add GNUSTANDARDS (for eggert only).
14816
14817 2004-10-07  Bruno Haible  <bruno@clisp.org>
14818
14819         * lib/snprintf.c (snprintf): Avoid a memory allocation if the result
14820         fits into the provided buffer.
14821
14822 2004-10-06  Paul Eggert  <eggert@cs.ucla.edu>
14823
14824         * lib/diacrit.c, diacrit.h: Add GPL notice.
14825
14826         * lib/atanl.c, logl.c: Add GPL notice, to match glibc's added LGPL
14827         notice.
14828         * lib/atanl.c (atanl): Keep the code as similar to glibc as possible.
14829         * lib/logl.c (logl): Keep the code as similar to glibc as possible.
14830         This avoids a potential constant-folding bug.
14831
14832 2004-10-05  Bruno Haible  <bruno@clisp.org>
14833
14834         * m4/strsep.m4 (gl_FUNC_STRSEP): Require AC_GNU_SOURCE. Don't check
14835         for the declaration of strsep.
14836
14837 2004-10-05  Bruno Haible  <bruno@clisp.org>
14838
14839         * lib/strsep.h: Don't declare strsep() if HAVE_STRSEP.
14840
14841 2004-10-04  Simon Josefsson  <jas@extundo.com>
14842
14843         * modules/memmem: New file.
14844         * tests/test-memmem.c: New file.
14845         * MODULES.html.sh (Extra functions based on ANSI C 89): Add memmem.
14846
14847 2004-10-04  Simon Josefsson  <jas@extundo.com>
14848
14849         * m4/memmem.m4: New file.
14850
14851 2004-10-04  Simon Josefsson  <jas@extundo.com>
14852
14853         * lib/memmem.h: New file.
14854         * lib/memmem.c: New file, taken from glibc.
14855
14856 2004-10-04  Simon Josefsson  <jas@extundo.com>
14857
14858         * lib/error.c, md5.c, regex.c: Use '#if USE_UNLOCKED_IO' instead of
14859         '#ifdef USE_UNLOCKED_IO'.
14860
14861 2004-10-04  Simon Josefsson  <jas@extundo.com>
14862
14863         * config/srclist.txt: Add memmem from glibc.
14864
14865 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
14866
14867         * modules/xalloc (Files, Makefile.am): Remove xstrdup.c.
14868
14869         * modules/argmatch, modules/argp, modules/closeout, modules/error,
14870         modules/exclude, modules/getdate, modules/getline,
14871         modules/getndelim2, modules/getpass, modules/getpass-gnu,
14872         modules/getusershell, modules/linebuffer, modules/md5,
14873         modules/mountlist, modules/posixtm, modules/readtokens,
14874         modules/readutmp, modules/regex, modules/sha1,
14875         modules/version-etc, modules/yesno:
14876         Remove dependency on unlocked-io.
14877
14878 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
14879
14880         * m4/xalloc.m4 (gl_PREREQ_XSTRDUP): Remove.  All uses removed.
14881
14882         * m4/unlocked-io.m4: Add copyright notice.
14883         (gl_FUNC_GLIBC_UNLOCKED_IO): Define USE_UNLOCKED_IO.
14884
14885 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
14886
14887         * lib/xalloc.h (xmemdup): Renamed from xclone.  All uses changed.
14888         * lib/xmalloc.c (xmemdup): Likewise.
14889         * lib/xalloc.h (CCLONE, CLONE, NEW, XCALLOC, XMALLOC, XREALLOC,
14890         XFREE): Remove these long-obsolescent macros.
14891         * lib/xmalloc.c (xstrdup): Implementation moved here from xstrdup.c
14892         * lib/xstrdup.c: Remove.
14893
14894         * lib/regex.c (re_comp): Cast gettext return value to char *,
14895         Problem reported by Martin Neitzel via Mark D. Baushke.
14896
14897 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
14898
14899         * lib/argmatch.c, closeout.c, error.c, exclude.c, getdate.y,
14900         getndelim2.c, getpass.c, getusershell.c, linebuffer.c,
14901         md5.c, mountlist.c, posixtm.c, readtokens.c, readutmp.c,
14902         regex.c, sha1.c, version-etc.c, yesno.c:
14903         Include "unlocked-io.h" only if USE_UNLOCKED_IO.
14904         * lib/unlocked-io.h: Don't worry about USE_UNLOCKED_IO; that's now
14905         the includer's responsibility.
14906
14907         Sync from coreutils.
14908
14909         * lib/modechange.c (mode_compile): Don't decrement a pointer that
14910         points to the start of a string, as the C Standard says the
14911         resulting behavior is undefined.
14912
14913         * lib/backupfile.h (enum backuptype): Rename none -> no_backups,
14914         simple -> simple_backups, numbered_existing ->
14915         numbered_existing_backups, numbered -> numbered_backups
14916         to avoid shadowing problems.  All uses changed.
14917         * lib/argmatch.c (enum backuptype) [defined TEST]: Likewise.
14918         * lib/backupfile.c (check_extension, numbered_backup):
14919         Rename locals to avoid shadowing 'basename'.
14920         * lib/backupfile.h (VALID_BACKUP_TYPE): Don't evaluate arg more than
14921         once.
14922
14923         * lib/.cppi-disable: Add getopt_.h, getopt_int.h.
14924         * lib/.cvsignore: Add getopt.h.
14925
14926 2004-10-04  Bruno Haible  <bruno@clisp.org>
14927
14928         * modules/README: New file.
14929         * gnulib-tool (func_all_modules, func_verify_module): modules/README is
14930         not a module.
14931
14932 2004-10-02  Jim Meyering  <jim@meyering.net>
14933
14934         * lib/dirfd.h, getpagesize.h: Add copyright notice.
14935
14936 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
14937
14938         * modules/strsep: New file.
14939
14940 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
14941
14942         * m4/strsep.m4: New file.
14943
14944 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
14945
14946         * lib/strsep.h: New file.
14947         * lib/strsep.c: New file.
14948
14949 2004-10-01  Simon Josefsson  <jas@extundo.com>
14950
14951         * lib/snprintf.c (snprintf): Handle size==0.
14952
14953 2004-10-01  Simon Josefsson  <jas@extundo.com>
14954             Bruno Haible  <bruno@clisp.org>
14955
14956         * lib/snprintf.c: Include <stdarg.h>, <stdlib.h>, <string.h>.
14957         (snprintf): Declare 'args'.
14958
14959 2004-10-01  Paul Eggert  <eggert@cs.ucla.edu>
14960
14961         * lib/snprintf.c: Remove comments as to why each header is needed.
14962
14963 2004-10-01  Bruno Haible  <bruno@clisp.org>
14964
14965         * MODULES.html.sh: Add strsep.
14966
14967 2004-09-30  Simon Josefsson  <jas@extundo.com>
14968
14969         * modules/snprintf: New file.
14970
14971 2004-09-30  Simon Josefsson  <jas@extundo.com>
14972
14973         * m4/snprintf.m4: New file.
14974
14975 2004-09-30  Simon Josefsson  <jas@extundo.com>
14976
14977         * lib/snprintf.h, lib/snprintf.c: New files.
14978
14979 2004-09-30  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
14980
14981         * lib/argp-help.c (canon_doc_option): Fixed coredump if *name==NULL
14982         (hol_entry_help): Never translate an empty string.
14983         Do not translate option tag (opt->name) if OPTION_NO_TRANS is set
14984         * lib/argp.h (OPTION_NO_TRANS): New option.
14985
14986 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
14987
14988         * modules/argp (Maintainer): Replace Simon Josefsson
14989         by Sergey Poznyakoff.
14990
14991 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
14992
14993         * config/srclist.txt: Comment-out argp/argp.h, until we get the argp
14994         changes merged back into glibc.
14995
14996 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
14997
14998         * MODULES.html.sh (Support for systems lacking ISO C 99): Add snprintf.
14999
15000 2004-09-29  Oskar Liljeblad  <oskar@osk.mine.nu>
15001
15002         * lib/xvasprintf.c: Include xalloc.h.
15003         (xvasprintf): Use xalloc_die, not xmalloc_die.
15004
15005 2004-09-29  Bruno Haible  <bruno@clisp.org>
15006
15007         * modules/alloca-opt: New file, derived from modules/alloca.
15008         * modules/allocsa: Depend on alloca-opt instead of alloca.
15009         * modules/setenv: Likewise.
15010         * modules/vasnprintf: Likewise.
15011         * MODULES.html.sh: Add alloca-opt.
15012
15013 2004-09-28  Simon Josefsson  <jas@extundo.com>
15014
15015         * gnulib-tool: New parameter --lgpl, to asseert that modules are
15016         LGPL, and to replace license template from GPL to LGPL.
15017
15018 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
15019
15020         * modules/dummy: Change license to LGPL.
15021
15022 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
15023
15024         * lib/dummy.c: Change copyright notice to FSF, and license to GPL.
15025
15026 2004-09-24  Simon Josefsson  <jas@extundo.com>
15027
15028         * modules/minmax (License): Change from GPL to LGPL.
15029
15030 2004-09-23  Simon Josefsson  <jas@extundo.com>
15031
15032         * gnulib-tool (--import): Typo.
15033
15034 2004-09-23  Simon Josefsson  <jas@extundo.com>
15035
15036         * gnulib-tool (--import): Make sure *.m4 end up in m4/ by default.
15037
15038 2004-09-22  Bruno Haible  <bruno@clisp.org>
15039
15040         * modules/*: Add 'License' field.
15041         * gnulib-tool: Accept --extract-license option.
15042         (func_get_license): New function.
15043
15044 2004-09-21  Bruno Haible  <bruno@clisp.org>
15045
15046         * modules/vasnprintf (Files): Add m4/stdint_h.m4, m4/inttypes_h.m4.
15047         Reported by Simon Josefsson.
15048
15049 2004-09-20  Paul Eggert  <eggert@cs.ucla.edu>
15050
15051         * modules/inttostr (Files): Add m4/longlong.m4, since it uses
15052         gl_AC_TYPE_LONG_LONG.
15053
15054 2004-09-20  Paul Eggert  <eggert@cs.ucla.edu>
15055
15056         * config/srclist.txt: Add getsubopt.c, since libc bought our changes.
15057
15058 2004-09-18  Simon Josefsson  <jas@extundo.com>
15059         and  Paul Eggert  <eggert@cs.ucla.edu>
15060
15061         * gnulib-tool: Replace various ad-hoc automake/autoconf/aclocal
15062         calls with autoreconf.  Define GL_LIB.
15063
15064 2004-09-14  Karl Berry  <karl@gnu.org>
15065
15066         * config/srclist.txt: unsync setenv.c, sigh.
15067
15068 2004-09-13  Paul Eggert  <eggert@cs.ucla.edu>
15069
15070         * lib/argp-pvh.c (argp_program_version_hook): Provide initial value.
15071         Problem reported by Bruno Haible in:
15072         http://lists.gnu.org/archive/html/bug-tar/2004-09/msg00023.html
15073
15074 2004-09-13  Paul Eggert  <eggert@cs.ucla.edu>
15075
15076         * config/srclist.txt: Comment out argp-pvh.c.
15077
15078 2004-09-11  Paul Eggert  <eggert@cs.ucla.edu>
15079
15080         * lib/mempcpy.h: Wrap the entire include file inside #ifndef mempcpy,
15081         in case some system header has #define'd it.  Problem reported by
15082         Soeren D. Schulze in
15083         <http://lists.gnu.org/archive/html/bug-gnulib/2004-09/msg00017.html>.
15084
15085 2004-09-09  Karl Berry  <karl@gnu.org>
15086
15087         * regex.[ch]: delete from the root.  These were supposed to be
15088                 synced with emacs cvs, but this has not happened for about
15089                 a year, and anyway nothing else uses emacs regex.[ch].
15090                 bug-gnulib mail from Jeff Bailey, 9 Sep 2004 15:49:24 -0700.
15091                 lib/regex[.ch] is untouched.
15092
15093 2004-09-09  Bruno Haible  <bruno@clisp.org>
15094
15095         * modules/vasnprintf (Files): Add m4/eoverflow.m4.
15096
15097 2004-09-09  Bruno Haible  <bruno@clisp.org>
15098
15099         * m4/eoverflow.m4: New file, taken from GNU libiconv eilseq.m4 with
15100         modifications.
15101         * m4/vasnprintf.m4 (gl_FUNC_VASNPRINTF): Require gl_EOVERFLOW.
15102
15103 2004-09-08  Oskar Liljeblad  <oskar@osk.mine.nu>
15104
15105         * modules/xvasprintf: New file.
15106         * MODULES.html.sh (Extra functions based on ANSI C 89): Add vasprintf.
15107
15108 2004-09-08  Oskar Liljeblad  <oskar@osk.mine.nu>
15109
15110         * lib/xvasprintf.h: New file.
15111         * lib/xvasprintf.c: New file.
15112         * lib/xasprintf.c: New file.
15113
15114 2004-09-08  Bruno Haible  <bruno@clisp.org>
15115
15116         * m4/stdint.m4: New file, taken from GNU clisp with modifications.
15117
15118 2004-09-08  Bruno Haible  <bruno@clisp.org>
15119
15120         * lib/vasnprintf.c (VASNPRINTF): Signal EOVERFLOW if the resulting
15121         length is > INT_MAX.
15122         * lib/vasprintf.c (vasprintf): Don't test for length > INT_MAX any
15123         more.
15124
15125 2004-09-08  Bruno Haible  <bruno@clisp.org>
15126
15127         * lib/stdint_.h: New file, taken from GNU clisp.
15128
15129 2004-09-08  Bruno Haible  <bruno@clisp.org>
15130             Oskar Liljeblad  <oskar@osk.mine.nu>
15131
15132         * modules/stdint: New file.
15133         * MODULES.html.sh (Support for systems lacking ISO C 99): Add stdint.
15134
15135 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
15136
15137         Import from coreutils.
15138         * lib/userspec.c: Don't use <alloca.h>, so that we don't use alloca on
15139         strings on unbounded length.  alloca's performance benefits aren't
15140         that important here.
15141         (V_STRDUP): Remove.
15142         (parse_with_separator): New function, with most of the internals
15143         of the old parse_user_spec.  Allow user to omit both user and group,
15144         for compatibility with FreeBSD.
15145         Clone only the user name, not the entire spec.
15146         Do not set *uid, *gid unless entirely successful.
15147         Avoid memory leak in some failing cases.
15148         Fix regression for USER.GROUP reported by Dmitry V. Levin in
15149         <http://lists.gnu.org/archive/html/bug-coreutils/2004-08/msg00102.html>
15150         (parse_user_spec): Rewrite to use parse_with_separator.
15151
15152 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
15153
15154         * modules/userspec: Don't depend on alloca.
15155
15156 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
15157
15158         * m4/userspec.m4 (gl_USERSPEC): Don't require AC_FUNC_ALLOCA.
15159
15160 2004-08-17  Paul Eggert  <eggert@cs.ucla.edu>
15161
15162         * MODULES.html.sh: Add xalloc-die, c-strtod, c-strtold, raise,
15163         readtokens0, getcwd, fcntl-safer, canonicalize, cycle-check,
15164         utimecmp, utimens, xnanosleep.  Rename sha to sha1.
15165
15166 2004-08-16  Simon Josefsson  <jas@extundo.com>
15167
15168         * gnulib-tool: Use sed instead of autoconf --trace, inspired by
15169         libtoolize behaviour by "Gary V. Vaughan" <gary@gnu.org>.
15170         Add --dry-run for --import.
15171         Let user provided command line parameters override configure.ac
15172         settings.
15173
15174 2004-08-12  Simon Josefsson  <jas@extundo.com>
15175
15176         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): New macro,
15177         as discussed with Paul Eggert in threads rooted at
15178         <http://lists.gnu.org/archive/html/bug-gnulib/2004-06/msg00039.html>
15179         and
15180         <http://lists.gnu.org/archive/html/bug-gnulib/2004-07/msg00001.html>.
15181         Before, the test was empty, and relied on ELIDE_CODE in source
15182         code.)
15183         (gl_PREREQ_GETOPT): New macro.
15184         (gl_GETOPT): Use them.
15185
15186 2004-08-12  Simon Josefsson  <jas@extundo.com>
15187
15188         * lib/getopt.c, getopt1.c: Remove ELIDE_CODE hack.
15189         * lib/getopt_.h: Renamed from getopt.h.
15190
15191 2004-08-12  Simon Josefsson  <jas@extundo.com>
15192
15193         * gnulib-tool: Add --source-base, --m4-base, --libtool options.
15194         Change default library name from libfoo to libgnu.
15195         Now, if you have a configure.ac that says:
15196                 gl_SOURCE_BASE(gl)
15197                 gl_M4_BASE(gl/m4)
15198                 gl_MODULES(error getopt etcetera)
15199                 gl_INIT
15200         you can import all you need by running:
15201                 ../gnulib/gnulib-tool --import
15202
15203         * modules/getopt (Files): Rename getopt.h to getopt_.h.
15204         (Makefile.am): Rewrite, use logic from argz.
15205         (Include): Use <getopt.h> instead of "getopt.h".
15206
15207 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
15208
15209         * modules/argp (Files): Add m4/unlocked-io.m4.
15210         (Depends-on): Add extensions.
15211
15212 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
15213
15214         * m4/argp.m4 (gl_ARGP): Do not check for argp.h or argp_parse; nobody
15215         uses HAVE_ARGP_H or HAVE_ARGP_PARSE.
15216         Require gl_FUNC_GLIBC_UNLOCKED_IO, gl_USE_SYSTEM_EXTENSIONS.
15217         Check for program_invocation_name, program_invocation_short_name,
15218         flockfile, funlockfile, features.h, _getopt_long_only_r.
15219
15220 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
15221
15222         * lib/argp-help.c, argp-parse.c: Use "gettext.h" instead of
15223         its complicated substitute.
15224         * lib/argp-help.c: Include <errno.h>, for program_invocation_short_name
15225         and program_invocation_name.
15226         (__argp_basename) [!_LIBC]: Remove; the only use was
15227         replaced by its body.
15228         (__argp_short_program_name): Change condition from
15229         !defined __argp_short_program_name to
15230         ! (defined _LIBC || HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME),
15231         to match argp-namefrob.h.
15232         (__argp_failure): Don't assume strerror_r returns char *.
15233         * lib/argp-parse.c (N_): Define unconditionally.
15234         (argp_default_options): Fill out initializers with 0 to avoid
15235         gcc warnings.
15236
15237 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
15238
15239         * config/srclist.txt: Remove getopt.c, getopt.h (renamed to getopt_.h),
15240         getopt1.c.
15241
15242 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
15243
15244         Merge from coreutils.
15245
15246         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for wmemchr and wmemcpy.
15247
15248         * m4/obstack.m4 (gl_PREREQ_OBSTACK): Require
15249         gl_AC_HEADER_INTTYPES_H, gl_AC_HEADER_STDINT_H, gl_AC_TYPE_UINTMAX_T.
15250
15251 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
15252
15253         Merge from coreutils.
15254
15255         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Don't set to 1 if missing
15256         wmemchr or wmemcpy.  Problem reported by Robert Dahlem
15257         for Reliant Unix 5.43.
15258
15259         * lib/obstack.c: Include <inttypes.h> and <stdint.h> if available.
15260         (union fooround): Use uintmax_t, not long int.
15261         The rest is a merge from libc:
15262         [defined _LIBC]: Include <shlib-compat.h>.
15263         (_obstack) [defined _LIBC]: Remove after 2.3.4.
15264
15265         * lib/settime.c (settime): Recode to avoid warning with
15266         Sun Forte C 6U2.
15267
15268         * lib/strverscmp.c: Convert to UTF-8.
15269
15270 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
15271
15272         * modules/obstack (Files): Add m4/inttypes_h.m4, m4/stdint_h.m4,
15273         m4/uintmax_t.m4.
15274
15275 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
15276
15277         * modules/xalloc-die: New file.
15278         * modules/xalloc: Remove dependencies on error, gettext, exitfail.
15279
15280         * modules/md5 (Files): Add m4/uint32_t.m4.
15281         * modules/sha1: Renamed from modules/sha.
15282         (Files):
15283         Rename lib/sha.h to lib/sha1.h.
15284         Rename lib/sha.c to lib/sha1.c.
15285         Rename m4/sha.m4 to m4/sha1.m4.
15286         (lib_SOURCES): Likewise.
15287         (configure.ac): Rename gl_SHA to gl_SHA1.
15288         (Include): sha.h -> sha1.h.
15289
15290 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
15291
15292         * m4/uint32_t.m4, m4/uintptr_t.m4: New files.
15293         * m4/sha1.m4: Renamed from sha.m4.
15294         (gl_SHA1): Renamed from gl_SHA.  All uses changed.
15295
15296 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
15297
15298         * lib/obstack.h (obstack_empty_p):
15299         Don't assume that chunk->contents is suitably aligned.
15300         * lib/obstack.c (_obstack_begin, _obstack_begin_1, _obstack_newchunk):
15301         Likewise. Problem reported by Benno in
15302         <http://sources.redhat.com/ml/libc-alpha/2004-08/msg00055.html>.
15303
15304         * lib/chown.c (rpl_chown): Work even if the file is writeable but not
15305         readable.  This could be improved further but it'd take some work.
15306
15307 2004-08-08  Simon Josefsson  <jas@extundo.com>
15308
15309         * modules/xgethostname (Depends-on): Remove exit and error (not
15310         used).
15311
15312         * modules/getpass-gnu: Add getpass.h.
15313         (Depends-on): Add stdbool.
15314         * modules/getpass: Add getpass.h.
15315
15316 2004-08-08  Simon Josefsson  <jas@extundo.com>
15317
15318         * m4/getpass.m4 (gl_FUNC_GETPASS, gl_FUNC_GETPASS_GNU):
15319         Check getpass declaration.
15320
15321 2004-08-08  Simon Josefsson  <jas@extundo.com>
15322
15323         * lib/xgethostname.c: Don't include error.h (not used).
15324
15325         * lib/getpass.h: Add.
15326         * lib/getpass.c: Include getpass.h first.
15327
15328 2004-08-08  Paul Eggert  <eggert@cs.ucla.edu>
15329
15330         * lib/xalloc-die.c: New file.
15331         * lib/xalloc.h (xalloc_fail_func, xalloc_msg_memory_exhausted): Remove.
15332         All uses removed.
15333         * lib/xmalloc.c (xalloc_fail_func, xalloc_msg_memory_exhausted):
15334         Likewise. Move inclusions of gettext.h, error.h, exitfail.h to
15335         xalloc-die.c.
15336         (_, N_, xalloc_die): Move to xalloc-die.c.
15337         * lib/userspec.c (parse_user_spaec): Use xstrdup rather than strdup,
15338         so that we needn't mess with xalloc_msg_memory_exhausted.
15339
15340         * lib/sha1.h: Renamed from sha.h.
15341         (SHA1_H): Renamed from _SHA_H.
15342         (sha1_ctx): Renamed from sha_ctx.
15343         (sha1_init_ctx): Renamed from sha_init_ctx.
15344         (sha1_process_block): Renamed from sha_process_block.
15345         (sha1_process_bytes): Renamed from sha_process_bytes.
15346         (sha1_finish_ctx): Renamed from sha_finish_ctx.
15347         (sha1_read_ctx): Renamed from sha_read_ctx.
15348         (sha1_stream): Renamed from sha_stream.
15349         (sha1_buffer): Renamed from sha_buffer.
15350         * lib/sha1.c: Likewise; renamed from sha.c.
15351         Do not include <sys/types.h>.
15352         Include <stddef.h> rather than <stdlib.h>.
15353
15354 2004-08-08  Bruno Haible  <bruno@clisp.org>
15355
15356         * lib/pathname.h (FILE_SYSTEM_PREFIX_LEN): Renamed from
15357         FILESYSTEM_PREFIX_LEN.
15358         * lib/progreloc.c: Likewise.
15359         * lib/concatpath.c (concatenated_pathname): Use FILE_SYSTEM_PREFIX_LEN.
15360
15361 2004-08-06  Simon Josefsson  <jas@extundo.com>
15362
15363         * modules/progname (Depends-on): Don't depend on stdbool.
15364
15365 2004-08-06  Simon Josefsson  <jas@extundo.com>
15366
15367         * modules/getsubopt: New file.
15368         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
15369         getsubopt.
15370
15371 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
15372
15373         More merge from coreutils.
15374
15375         * m4/utimens.m4, m4/utimecmp.m4: New files.
15376         * m4/backupfile.m4, euidacces.m4, acl.m4, afs.m4, calloc.m4, dirfd.m4,
15377         fsusage.m4, jm-macros.m4, ls-mntd-fs.m4, md5.m4, mountlist.m4,
15378         prereq.m4, sha.m4: Import changes from coreutils.
15379
15380 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
15381
15382         More merge from coreutils.
15383         * modules/raise, modules/readtokens0, modules/utimens:
15384         * modules/utimecmp, module/xnanosleep: New files.
15385         * modules/strftime: Add lib/strftime.h.
15386         Change include from <time.h> to "strftime.h".
15387         * modules/yesno: Add lib/yesno.h.
15388         * modules/backupfile: Remove lib/addext.c.
15389         * modules/euidaccess: Add stat-macros.h.
15390         * modules/canonicalize, modules/euidaccess,
15391         modules/filemode, modules/lchown, modules/makepath,
15392         modules/rmdir, modules/stat: Likewise.
15393
15394 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
15395
15396         Merge from tar.
15397         * lib/argp-help.c (make_hol, hol_append): Don't assume that
15398         SIZE_MAX is a valid preprocessor constant.
15399         (__argp_basename): Change from "#ifndef _LIBC"
15400         to "#ifndef __argp_short_program_name", so that
15401         we don't compile these functions for tar.
15402
15403         More merges from coreutils.
15404         * lib/raise.c, lib/readtokens0.h, lib/readtokens0.c, lib/strftime.h:
15405         * lib/utimens.h, lib/utimens.c, lib/utimecmp.h, lib/utimecmp.c:
15406         * lib/xnanosleep.h, lib/xnanosleep.c, lib/yesno.h: New files.
15407         * lib/addext.c: Remove; no longer needed.
15408         * lib/yesno.c, lib/argmatch.h, lib/argmatch.c, lib/backupfile.h,
15409         lib/backupfile.c, lib/euidaccess.c, lib/filemode.c, lib/closeout.c,
15410         lib/dup2.c, lib/exclude.c, lib/fileblocks.c, lib/filemode.c,
15411         lib/fnmatch.c, lib/fnmtahc_loop.c, lib/fopen-safer.c, lib/fsusage.c,
15412         lib/fsusage.h, lib/ftruncate.c, lib/full-write.c, lib/getdate.y,
15413         lib/getloadavg.c, lib/getugroups.c, lib/hard-locale.c,
15414         lib/hard-locale.h, lib/hash.c, lib/human.c, lib/human.h, lib/lchown.c,
15415         lib/lchown.h, lib/makepath.c, lib/makepath.h, lib/md5.c, lib/md5.h,
15416         lib/memchr.c, lib/memcoll.c, lib/memrchr.c, lib/modechange.c,
15417         lib/modechange.h, lib/mountlist.c, lib/mountlist.h, lib/nanosleep.c,
15418         lib/posixtm.c, lib/putenv.c, quotearg.c, lib/quotearg.h,
15419         lib/readtokens.c, lib/readutmp.c, lib/readutmp.h, lib/rmdir.c,
15420         lib/safe-read.c, lib/save-cwd.c, lib/savedir.c, lib/setenv.c,
15421         lib/sig2str.c, lib/stat.c, lib/strtoimax.c, lib/strverscmp.c,
15422         lib/userspec.c, lib/utime.c, lib/version-etc.c., lib/xgethostname.c,
15423         lib/xmemcoll.c, lib/xreadlink.c, lib/xstrtod.c, lib/xstrtod.h,
15424         lib/xstrtoimax.c, lib/xstrtol.c, lib/xstrtol.h, lib/xstrtoumax.c:
15425         Import changes from coreutils.
15426
15427 2004-08-05  Simon Josefsson  <jas@extundo.com>
15428
15429         * m4/strdup.m4: Always run gl_PREREQ_STRDUP, since strdup.h need it.
15430
15431 2004-08-05  Simon Josefsson  <jas@extundo.com>
15432
15433         * m4/getsubopt.m4: New file.
15434
15435 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
15436
15437         Merge from coreutils.
15438
15439         * m4/c-strtod.m4, m4/canonicalize.m4, m4/fcntl-safer.m4:
15440         * m4/getcwd-path-max.m4: New files.
15441
15442         * m4/dos.m4 (gl_AC_DOS): filesystem -> file system renaming.
15443         FILESYSTEM_PREFIX_LEN ->
15444         FILE_SYSTEM_PREFIX_LEN.
15445         FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX ->
15446         FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX.
15447         FILESYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR ->
15448         FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR.
15449
15450         * m4/path-concat.m4 (gl_PATH_CONCAT): Don't require gl_AC_DOS, the
15451         prerequisite modules now handle the DOS stuff.
15452         Don't check for unistd.h.
15453
15454 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
15455
15456         Merge from coreutils.
15457
15458         * lib/.gdb-history: Remove; this doesn't belong here.
15459
15460         * lib/c-strtod.c, lib/c-strtod.h, lib/c-strtold.c, lib/cycle-check.c:
15461         * lib/cycle-check.h, lib/dev-ino.h, lib/canonicalize.h:
15462         * lib/canonicalize.c, lib/fcntl-safer.h, lib/fcntl-safer.c:
15463         * lib/getcwd.c: New files.
15464
15465         * lib/dirname.h: Include <stdbool.h>.
15466         (FILE_SYSTEM_PREFIX_LEN): Renamed from FILESYSTEM_PREFIX_LEN,
15467         for consistency with POSIX terminology.  All uses changed.
15468         (IS_ABSOLUTE_FILE_NAME, IS_RELATIVE_FILE_NAME): New macros.
15469         (strip_trailing_slashes): Use bool for booleans.
15470         * lib/stripslash.c (strip_trailing_slashes): Likewise.
15471
15472         * lib/error.c: Work around bug in OpenBSD 3.4 sterror_r: it
15473         sometimes returns a positive errno value even when it succeeds.
15474         (print_errno_message) [!LIBC]: Fall back on strerror if
15475         __strerror_r fails.
15476
15477         * lib/path-concat.c (mempcpy): Don't define if a system header defines
15478         it. Don't include stdio.h, stdlib.h, unistd.h, strdup.h.
15479         (longest_relative_suffix): New function.
15480         (path_concat): Use it.  Assume first argument is not NULL.
15481         Port to DOS.  Omit redundant separators.
15482         Report an error instead of returning NULL.
15483         Use mempcpy instead of memcpy.
15484         (xpath_concat): Remove: not declared or used.
15485
15486         * lib/same.h: Include <stdbool.h>
15487         (same_name): Return bool, not int.
15488         * lib/same.c (same_name): Likewise.
15489         (errno): Don't declare; we assume C89 or better now.
15490
15491         * lib/stat-macros (S_ISCTG, S_ISOFD, S_ISOFL): New macros,
15492         if not already defined.
15493
15494         * lib/xgetcwd.c (errno): Don't declare; we assume C89 or better now.
15495         * lib/dup-safer.c (errno): Likewise.
15496
15497 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
15498
15499         Merge from coreutils.
15500         * modules/c-strtod, modules/c-strtold, modules/canonicalize:
15501         * modules/cycle-check, modules/fcntl-safer, modules/getcwd: New files.
15502         * modules/path-concat: Don't depend on strdup.
15503
15504 2004-08-03  Simon Josefsson  <jas@extundo.com>
15505
15506         * lib/strdup.h: Only use HAVE_DECL_STRDUP if defined.
15507         * lib/progname.h: Don't include stdbool.h.
15508
15509 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
15510
15511         * modules/fatal: Remove, as the "fatal" module wasn't used or working.
15512         * MODULES.html.sh (func_all_modules): Remove fatal.
15513
15514 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
15515
15516         * m4/fatal.m4: Remove, as the "fatal" module wasn't used or working.
15517
15518 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
15519
15520         * lib/fatal.c, fatal.h: Remove as the "fatal" module wasn't used or
15521         working.
15522
15523 2004-08-02  Simon Josefsson  <jas@extundo.com>
15524
15525         * lib/getsubopt.h: New file, with comments from Bruno Haible.
15526         * lib/getsubopt.c: New file, from glibc, but slightly modified based on
15527         suggestions from Paul Eggert <eggert@cs.ucla.edu>.
15528
15529 2004-08-01  Simon Josefsson  <jas@extundo.com>
15530
15531         * lib/xgetdomainname.c: Include stdlib.h, for free().
15532
15533 2004-07-19  Bruno Haible  <bruno@clisp.org>
15534
15535         * MODULES.html.sh (func_all_modules): Add dummy.
15536
15537 2004-07-16  Simon Josefsson  <jas@extundo.com>
15538
15539         * modules/dummy: New file.
15540
15541 2004-07-16  Simon Josefsson  <jas@extundo.com>
15542
15543         * lib/dummy.c: New file.
15544
15545 2004-07-16  Bruno Haible  <bruno@clisp.org>
15546
15547         * lib/backupfile.h: Add extern "C" for C++.
15548         * lib/closeout.h: Likewise.
15549         * lib/copy-file.h: Likewise.
15550         * lib/findprog.h: Likewise.
15551         * lib/full-write.h: Likewise.
15552         * lib/pathname.h: Likewise.
15553         * lib/progname.h: Likewise.
15554         * lib/stpcpy.h: Likewise.
15555         * lib/stpncpy.h: Likewise.
15556         * lib/strcase.h: Likewise.
15557         * lib/strstr.h: Likewise.
15558         * lib/xalloc.h: Likewise.
15559
15560         * lib/mbswidth.h: Add extern "C" for C++.
15561         Reported by Albert Chin-A-Young <china@thewrittenword.com>.
15562
15563 2004-07-13  Robert Millan  <robertmh@gnu.org>
15564
15565         * m4/host-os.m4: s/KNetBSD/kNetBSD/g and s/KFreeBSD/kFreeBSD/g.
15566
15567 2004-07-09  Simon Josefsson  <jas@extundo.com>
15568
15569         * lib/getndelim2.c: Include stddef.h, for ptrdiff_t.  (FreeBSD 4.9
15570         failed without this.)
15571
15572 2004-07-09  Paul Eggert  <eggert@cs.ucla.edu>
15573
15574         * modules/chown (Files): Add lib/fchown-stub.c, since
15575         gl_PREREQ_CHOWN invokes AC_LIBOBJ(fchown-stub).
15576
15577 2004-07-09  Paul Eggert  <eggert@cs.ucla.edu>
15578
15579         * lib/fchown-stub.c: New file.
15580
15581 2004-06-24  Jim Meyering  <jim@meyering.net>
15582
15583         * lib/obstack.h (obstack_base): Cast to (void *), per documentation.
15584
15585 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
15586
15587         * modules/argz: Omit "#include".
15588
15589         * MODULES.html.sh (func_all_modules): Add calloc, to match
15590         2004-06-01 addition of calloc module.
15591
15592 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
15593
15594         * m4/argz.m4: New file, which is autoupdated from libtool.
15595
15596 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
15597
15598         * lib/argz.c, lib/argz_.h: New files, which are autoupdated from
15599         libtool.
15600
15601 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
15602
15603         * config/srclist-update: Don't insist on "USA." before the
15604         close-comment, as libtool omits the period and puts the */ on a
15605         separate line.
15606         * config/srclist.txt: Add argz.c, argz_.h, argz.m4.
15607         * config/srclistvars.sh: Add LIBTOOL (for eggert only).
15608
15609 2004-06-22  Gary V. Vaughan  <gary@gnu.org>
15610
15611         * modules/argz: New file.
15612         * MODULES.html.sh (func_all_modules): Add argz.
15613
15614 2004-06-12  Jim Meyering  <jim@meyering.net>
15615         and  Paul Eggert  <eggert@cs.ucla.edu>
15616
15617         * modules/hash (Files): Add lib/xalloc.h.
15618         * modules/pipe (Depends-on): Add wait-process.
15619         * modules/stat (Depends-on): Add xalloc.
15620         * modules/userspec (Files): Add lib/userspec.h.
15621         * modules/xstrto
15622
15623         Upgrade from gettext-0.13.
15624         * modules/gettext (Files): Add m4/intmax.m4, m4/longdouble.m4,
15625         m4/longlong.m4, m4/printf-posix.m4, m4/signed.m4, m4/size_max.m4,
15626         m4/wchar_t.m4, m4/wint_t.m4, m4/xsize.m4.
15627
15628 2004-06-10  Jim Meyering  <jim@meyering.net>
15629
15630         * lib/calloc.c: New file.
15631
15632 2004-06-06  Paul Eggert  <eggert@cs.ucla.edu>
15633
15634         * lib/getdate.y (yylex): Allow space between sign and number.
15635         Problem reported by Dan Jacobson.
15636
15637 2004-06-01  Paul Eggert  <eggert@cs.ucla.edu>
15638
15639         Merge from coreutils CVS.
15640
15641         * m4/backupfile.m4, dirname.m4, human.m4, inttypes.m4, longlong.m4,
15642         makepath.m4, memchr.m4, memcmp.m4, mountlist.m4, path-concat.m4,
15643         putenv.m4, quotearg.m4, readutmp.m4, strtoimax.m4, strtoll.m4,
15644         strtoull.m4, strtoumax.m4, ulonglong.m4, vasnprintf.m4,
15645         xstrtol.m4: Fix copyright date and/or serial number.
15646
15647         * m4/chown.m4 (gl_PREREQ_CHOWN): Check for fcntl.h.
15648         See if we need an fchown replacement.
15649         (gl_FUNC_CHOWN_FOLLOWS_SYMLINK): New macro.
15650         (gl_FUNC_CHOWN): Require gl_FUNC_CHOWN_FOLLOWS_SYMLINK,
15651         and use the replacement function if we detect either defect.
15652
15653         * m4/prereq.m4 (gl_PREREQ): Add gl_ALLOCSA, gl_CLOEXEC, gl_INTTOSTR,
15654         gl_UTIMECMP.
15655
15656 2004-06-01  Paul Eggert  <eggert@cs.ucla.edu>
15657         and  Jim Meyering  <jim@meyering.net>
15658
15659         Merge from coreutils CVS.
15660
15661         * lib/stat-macros.h: New file, with contents from file-type.h
15662         and coreutils' system.h.
15663         * lib/file-type.c: Include "stat-macros.h".
15664         * lib/file-type.h (file_type): Move all macro definitions to new file,
15665         stat-macros.h.
15666
15667         * lib/chown.c (rpl_chown) [CHOWN_FAILS_TO_HONOR_ID_OF_NEGATIVE_ONE]:
15668         Wrap old code with this conditional.
15669         [CHOWN_MODIFIES_SYMLINK]: Try to work around a chown
15670         function that does not dereference symlinks.
15671         * lib/lchown.c (lchown) [CHOWN_MODIFIES_SYMLINK]: Just call chown.
15672
15673         * lib/xreadlink.c: Include xreadlink.h first, to catch .h file
15674         dependency problems.
15675         (xreadlink): Accept new arg SIZE, for efficiency.
15676         All decls and uses changed.
15677         * lib/xreadlink.h: Include <stddef.h>, for size_t.
15678
15679         * lib/.cppi-disable: Add alloca_.h, allocsa.h, exit.h, getndelim2.h,
15680         gettext.h, localcharset.h, strdup.h, strndup.h, strtoul.c, time_r.h.
15681
15682         * lib/.cvsignore: Add alloca.h, fnmatch.h, poll.h, stdbool.h,
15683         sysexits.h.
15684
15685 2004-06-01  Jim Meyering  <jim@meyering.net>
15686
15687         * m4/calloc.m4: New file.
15688
15689 2004-05-31  Paul Eggert  <eggert@cs.ucla.edu>
15690
15691         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Detect _Bool bug in HP aC++/ANSI
15692         C B3910B A.05.55 [Dec 04 2003].  Problem reported by Jim Meyering.
15693         Also, fix a typo in a diagnostic.
15694
15695 2004-05-30  Paul Eggert  <eggert@cs.ucla.edu>
15696
15697         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Do not require AC_FUNC_MALLOC
15698         or AC_FUNC_REALLOC.
15699
15700 2004-05-30  Paul Eggert  <eggert@cs.ucla.edu>
15701
15702         * lib/xmalloc.c (HAVE_MALLOC, HAVE_REALLOC): Do not require these
15703         macros to be defined.
15704         (xnmalloc_inline, xnrealloc_inline, xcalloc): Do not die if
15705         the allocator returns NULL because the requested size is zero.
15706
15707 2004-05-20  Paul Eggert  <eggert@cs.ucla.edu>
15708
15709         * lib/malloc/obstack.c (_obstack) [defined _LIBC]: Bring back this
15710         var.  Add comment explaining why libc still defines it.  This
15711         merges the following patch from glibc:
15712         http://sources.redhat.com/ml/libc-alpha/2004-05/msg00157.html
15713
15714 2004-05-20  Andreas Schwab  <schwab@suse.de>
15715
15716         * m4/free.m4: Replace free if it not known to work, not the other
15717         way round.
15718
15719 2004-05-19  Paul Eggert  <eggert@cs.ucla.edu>
15720
15721         * lib/obstack.c (_obstack): Remove unused variable.  It hasn't been
15722         present in glibc since revision 1.1 of this file.
15723         * lib/obstack.h (_obstack_free, obstack_1grow, obstack_1grow_fast,
15724         obstack_alignment_mask, obstack_alloc, obstack_base,
15725         obstack_blank, obstack_blank_fast, obstack_chunk_size,
15726         obstack_copy, obstack_copy0, obstack_finish, obstack_grow,
15727         obstack_grow0, obstack_init, obstack_int_grow,
15728         obstack_int_grow_fast, obstack_make_room, obstack_memory_used,
15729         obstack_next_free, obstack_object_size, obstack_ptr_grow,
15730         obstack_ptr_grow_fast, obstack_room): Remove declarations of
15731         nonexistent functions.
15732
15733 2004-05-18  Karl Berry  <karl@gnu.org>
15734
15735         * config/srclist.txt: break link for vasnprintf.c.
15736
15737 2004-05-17  Paul Eggert  <eggert@cs.ucla.edu>
15738
15739         Port obstack to the AS/400, where pointers are 16 bytes wide and
15740         you cannot cast an integer to a valid pointer.  This patch is
15741         currently waiting to be integrated into glibc; see
15742         <http://sources.redhat.com/ml/libc-alpha/2004-05/msg00073.html>.
15743
15744         * lib/obstack.h (__PTR_TO_INT, __INT_TO_PTR): Remove.
15745         All uses of __INT_TO_PTR (PTR_TO_INT ...) replaced by __PTR_ALIGN.
15746         (__BPTR_ALIGN, __PTR_ALIGN): New macros.
15747         (struct obstack): temp member is now a union of a pointer and
15748         an integer, instead of an integer.  All integer uses changed.
15749         This does not affect the physical layout of struct obstack,
15750         except on hosts (like the AS/400) where the size or alignment of
15751         void * is greater than that of ptrdiff_t.
15752         (obstack_finish) [! (defined __GNUC__ && defined __STDC__ &&
15753         __STDC__)]: Store temporary in pointer member of union, not
15754         integer member.
15755         * lib/obstack.c: Include <stddef.h>, for offsetof.
15756         (struct fooalign): Remove; it doesn't need a name.
15757         (union fooround): Change double to long double, and add void *.
15758         (DEFAULT_ALIGNMENT): Use offsetof to compute.
15759         (DEFAULT_ALIGNMENT, DEFAULT_ROUNDING): Now an enum constant,
15760         not a macro.  Hence the values are always int; so remove all
15761         casts-to-int in uses.
15762
15763 2004-05-17  Paul Eggert  <eggert@cs.ucla.edu>
15764
15765         * config/srclist.txt: Break link for argp-help.c and argp-parse.c until
15766         we can get this patch merged into glibc.
15767
15768 2004-05-17  Derek R. Price  <derek@ximbiot.com>
15769             Paul Eggert  <eggert@cs.ucla.edu>
15770
15771         * m4/argp: Depend on alloca.
15772
15773 2004-05-17  Derek R. Price  <derek@ximbiot.com>
15774             Paul Eggert  <eggert@cs.ucla.edu>
15775
15776         * lib/argp-help.c, argp-parse.c: Assume <alloca.h> rather than
15777         freecoding.
15778
15779 2004-05-17  Bruno Haible  <bruno@clisp.org>
15780
15781         * lib/vasnprintf.c (VASNPRINTF): Correctly handle the case of a
15782         precision that consists of a '.' followed by an empty digit string.
15783         Patch by Tor Lillqvist <tml@iki.fi>.
15784
15785 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
15786
15787         * m4/alloca.m4 (gl_FUNC_ALLOCA): Define HAVE_ALLOCA_H always,
15788         for backward compatibility with older code.  We need our own
15789         alloca.h if _AIX is defined.  Define HAVE_ALLOCA if we discover
15790         it under some other name, and our alloca.h will define it.
15791
15792 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
15793             Derek Price  <derek@ximbiot.com>
15794
15795         * lib/alloca.c: Include <alloca.h>, to get our interface.
15796         * lib/alloca_.h: Use __alloca on AIX, so that we don't have to
15797         include <alloca.h> first.  Use C89 prototype for alloca; this
15798         requires including <stddef.h> for size_t.  Use extern "C" if C++.
15799         Use #elif for simplicity, since we can assume C89 now.
15800         Don't try to source the system alloca.h since it will not be found
15801         and to prevent recursively including its replacement.
15802         * lib/fnmatch.c: Include <alloca.h> instead of opencoding.
15803         * lib/regex.c: Likewise.
15804
15805 2004-05-16  Derek Price  <derek@ximbiot.com>
15806             Paul Eggert  <eggert@cs.ucla.edu>
15807
15808         getline cleanup.  This changes the getndelim2 API: both order of
15809         arguments, and meaning of delim2 (now uses EOF, not 0, to indicate
15810         no delimiter).
15811
15812         * lib/getline.c: Don't include stddef.h or stdio.h, since our
15813         interface does that.
15814         (getline): Always use getdelim, so that we don't have two
15815         copies of this code.
15816         * lib/getndelim2.c: Include <limits.h>, <inttypes.h>, <stdint.h>
15817         if available.
15818         (PTRDIFF_MAX, SIZE_MAX, SSIZE_MAX): Define if not defined.
15819         (GETNDELIM2_MAXIMUM): New macro.
15820         (getndelim2): Reorder arguments.  delim==EOF now means no delimiter,
15821         instead of the old practice of delim2==0.  All callers changed.
15822         Return -1 on overflow, instead of returning junk.
15823         Do not set *linesize unless allocation succeeds.
15824         * lib/getndelim2.h: Do not include stddef.h; no longer needed, now
15825         that we include sys/types.h.
15826         * lib/getnline.h: Likewise.
15827         * lib/getndelim2.h (GETNLINE_NO_LIMIT): New macro.
15828         (getndelim2): Reorder arguments.
15829         * lib/getnline.c (getnline, getndelim):
15830         Don't discard the NMAX argument.
15831         (getnline): Invoke getndelim, to avoid code duplication.
15832         * lib/getnline.h (GETNLINE_NO_LIMIT): New macro, used instead
15833         of (size_t) -1 by callers of the getnline family.
15834
15835 2004-05-13  Paul Eggert  <eggert@cs.ucla.edu>
15836
15837         * m4/gettime.m4 (gl_GETTIME): Require gl_TIMESPEC.
15838         Check for gettimeofday.
15839         * m4/settime.m4 (gl_SETTIME): Require gl_TIMESPEC.
15840         Check for settimeofday, stime.
15841
15842 2004-05-13  Paul Eggert  <eggert@cs.ucla.edu>
15843
15844         * lib/nanosleep.c (suspended): Change its type from int to
15845         sig_atomic_t volatile.
15846         (first_call): Make it private to rpl_nanosleep, and have it
15847         be zero initially as that's a bit faster.
15848         (my_usleep): Round up fractional times instead of truncating them,
15849         as this is the usual meaning for 'sleep'.
15850
15851         * lib/gettime.c (gettime): Fall back on `time' if `gettimeofday'
15852         doesn't work.
15853         * lib/settime.c: Include <unistd.h>, for stime (on Solaris 8, anyway).
15854         (ENOSYS): Define if not defined.
15855         (settime): Fall back on stime if it exists and settimeofday fails.
15856         But don't bother with fallbacks if a method fails with errno == EPERM.
15857
15858 2004-05-11  Jim Meyering  <jim@meyering.net>
15859
15860         Prior to this change, the save_cwd caller required read access to the
15861         current directory on most systems (ones with the fchdir function).
15862
15863         * lib/save-cwd.c (save_cwd) [HAVE_FCHDIR]: If opening `.' read-only
15864         fails, try write-only, and finally, resort to using xgetcwd.
15865
15866 2004-05-06  Paul Eggert  <eggert@cs.ucla.edu>
15867
15868         * lib/obstack.c, obstack.h: Import changes from libc.
15869
15870 2004-04-28  Bruno Haible  <bruno@clisp.org>
15871
15872         * lib/findprog.c (find_in_path): Treat Cygwin like Windows, since it
15873         also implicitly appends .exe to executables.
15874         * lib/localcharset.c (ISSLASH): Treat Cygwin like Windows, since it now
15875         accepts Windows pathnames.
15876         * lib/pathname.h (ISSLASH, IS_PATH_WITH_DIR, FILESYSTEM_PREFIX_LEN):
15877         Treat Cygwin like Windows, since it now accepts Windows pathnames.
15878         * lib/progreloc.c (ISSLASH, IS_PATH_WITH_DIR, FILESYSTEM_PREFIX_LEN):
15879         Treat Cygwin like Windows, since it now accepts Windows pathnames.
15880         Reported by Derek Robert Price <derek@ximbiot.com>.
15881
15882 2004-04-21  Karl Berry  <karl@gnu.org>
15883
15884         * config/srclist.txt (localcharset.c): break sync.
15885
15886 2004-04-20  Paul Eggert  <eggert@twinsun.com>
15887
15888         * m4/host-os.m4: Add a copyright notice.
15889
15890 2004-04-20  Jim Meyering  <jim@meyering.net>
15891
15892         Change UTILS_ to gl_ in AC_DEFINE'd names.
15893         Change utils_- and jm_-prefixed variables, too.
15894         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Renamed from
15895         UTILS_FUNC_MKDIR_TRAILING_SLASH.
15896         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Renamed from UTILS_FUNC_MKSTEP.
15897
15898         * m4/dirfd.m4 (gl_FUNC_DIRFD): Rename from UTILS_FUNC_DIRFD.
15899         Don't emit trailing blanks.
15900         Also rename jm_-prefixed variables to have gl_ prefix.
15901
15902         * m4/host-os.m4 (gl_HOST_OS): Rename from UTILS_HOST_OS.
15903         Also rename jm_-prefixed variables to have gl_ prefix.
15904
15905         * m4/jm-macros.m4: Reflect the renamings.
15906         * m4/prereq.m4: Likewise.
15907
15908 2004-04-20  Jim Meyering  <jim@meyering.net>
15909
15910         * lib/getndelim2.c (getndelim2): Upon realloc failure, don't leak
15911         memory.
15912
15913 2004-04-20  Jim Meyering  <jim@meyering.net>
15914             Bruno Haible  <bruno@clisp.org>
15915
15916         * lib/localcharset.c (get_charset_aliases) [!VMS && !WIN32]: Don't leak
15917         memory when realloc fails.
15918
15919 2004-04-19  Jim Meyering  <jim@meyering.net>
15920
15921         * m4/readutmp.m4 (gl_PREREQ_READUTMP): Require gl_FUNC_FREE,
15922         now that readutmp.c may call `free (0)'.
15923
15924 2004-04-19  Bruno Haible  <bruno@clisp.org>
15925
15926         * m4/mbrtowc.m4: Change jm_ to gl_ in cache variables as well.
15927         * m4/inttypes_h.m4: Likewise.
15928         * m4/stdint_h.m4: Likewise.
15929         * m4/intmax_t.m4: Likewise.
15930         * m4/uintmax_t.m4: Likewise.
15931
15932 2004-04-18  Jim Meyering  <jim@meyering.net>
15933
15934         * m4/prereq.m4: Don't forbid jm_ prefix.
15935
15936         * m4/afs.m4, m4/allocsa.m4, m4/assert.m4, m4/backupfile.m4:
15937         * m4/bison.m4, m4/check-decl.m4, m4/chown.m4, m4/d-ino.m4:
15938         * m4/d-type.m4, m4/dirname.m4, m4/dos.m4, m4/error.m4, m4/fpending.m4:
15939         * m4/fstypename.m4, m4/fsusage.m4, m4/ftruncate.m4, m4/getdate.m4:
15940         * m4/getgroups.m4, m4/gettext.m4, m4/glibc21.m4, m4/group-member.m4:
15941         * m4/human.m4, m4/intmax.m4, m4/intmax_t.m4, m4/inttostr.m4:
15942         * m4/inttypes.m4, m4/inttypes_h.m4, m4/jm-macros.m4, m4/jm-winsz1.m4:
15943         * m4/jm-winsz2.m4, m4/lchown.m4, m4/lib-check.m4, m4/link-follow.m4:
15944         * m4/localcharset.m4, m4/longlong.m4, m4/ls-mntd-fs.m4, m4/lstat.m4:
15945         * m4/makepath.m4, m4/mbrtowc.m4, m4/mbswidth.m4, m4/memchr.m4:
15946         * m4/memcmp.m4, m4/mkdtemp.m4, m4/mkstemp.m4, m4/mountlist.m4:
15947         * m4/nanosleep.m4, m4/path-concat.m4, m4/perl.m4, m4/prereq.m4:
15948         * m4/putenv.m4, m4/quotearg.m4, m4/regex.m4, m4/stat.m4:
15949         * m4/stdint_h.m4, m4/strftime.m4, m4/strtoimax.m4, m4/strtoll.m4:
15950         * m4/strtoull.m4, m4/strtoumax.m4, m4/timespec.m4, m4/uintmax_t.m4:
15951         * m4/ulonglong.m4, m4/unlink-busy.m4, m4/unlocked-io.m4, m4/uptime.m4,
15952         * m4/utimbuf.m4, m4/utime.m4, m4/utimes-null.m4, m4/vasnprintf.m4:
15953         * m4/xstrtoimax.m4, m4/xstrtol.m4, m4/xstrtoumax.m4:
15954         Change jm_ to gl_ in AC_DEFINE'd names. Update all uses.
15955
15956 2004-04-18  Jim Meyering  <jim@meyering.net>
15957
15958         * lib/readutmp.c (read_utmp) [UTMP_NAME_FUNCTION]: Upon realloc
15959         failure, don't leak memory and do call END_UTMP_ENT.
15960
15961 2004-04-16  Jim Meyering  <jim@meyering.net>
15962
15963         * m4/prereq.m4 (jm_PREREQ_STAT): Remove macro.  It is specific to
15964         coreutils' stat program.
15965         (gl_PREREQ): Don't require jm_PREREQ_STAT.
15966
15967 2004-04-11  Paul Eggert  <eggert@twinsun.com>
15968
15969         * lib/inttostr.h: Include <limits.h> unconditionally, since we assume
15970         C89.
15971         (CHAR_BIT): Remove, since we assume C89.
15972         Include <stdint.h> if available, as per current Autoconf CVS advice.
15973
15974 2004-03-31  Jim Meyering  <jim@meyering.net>
15975
15976         * m4/prereq.m4: Require AC_FUNC_MALLOC, not jm_FUNC_MALLOC.
15977         Require AC_FUNC_REALLOC, not jm_FUNC_REALLOC.
15978         * m4/xalloc.m4: Likewise.
15979
15980 2004-03-30  Paul Eggert  <eggert@twinsun.com>
15981
15982         Merge from coreutils.
15983
15984         * m4/inttostr.m4: New file.
15985         * m4/getdate.m4 (gl_GETDATE): Remove time-related stuff.
15986         Require AM_STDBOOL_H and gl_TIMESPEC instead.
15987         Require gl_CLOCK_TIME.
15988         * m4/clock_time.m4 (gl_CLOCK_TIME): Require AC_GNU_SOURCE.
15989
15990 2004-03-30  Paul Eggert  <eggert@twinsun.com>
15991
15992         * lib/cloexec.h, cloexec.c (set_cloexec_flag): Return int
15993         not bool, to be more consistent with Unix conventions.
15994         Suggested by Bruno Haible.
15995
15996         Merge from coreutils.
15997
15998         * lib/imaxtostr.c, lib/inttostr.c, lib/inttostr.h, lib/offtostr.c:
15999         * lib/umaxtostr.c: New files.
16000
16001         * lib/getdate.h: Include stdbool.h, and timespec.h instead of
16002         the usual <time.h> dance.
16003         (get_date): Change signature to support fractional time stamps.
16004         All callers changed.
16005         * lib/getdate.y: Include "getdate.h" first, as we can now
16006         assume C89 and don't need to worry about 'const'.
16007         Similarly, include "unlocked-io.h" near start, not in middle.
16008         Include <limits.h>.
16009         (textint.value): Use long int rather than int.
16010         (textint.digits): Use size_t rather than int.
16011         (BILLION, LOG10_BILLION): New constants.
16012         (parser_control): New member rel_ns.  Members day_ordinal,
16013         time_zone, month, day, hour, minutes, rel_year, rel_month,
16014         rel_day, rel_hour, rel_minutes, rel_seconds
16015         are now long int, not int.  Member seconds is now struct timespec,
16016         not int.  New member timespec_seen.  Members dates_seen, days_seen,
16017         local_zones_seen, rels_seen, times_seen, zones_seen are now size_t,
16018         not int.
16019         (%union.intval): Now long int, not int.
16020         New member timespec.
16021         (tSDECIMAL_NUMBER, tUDECIMAL_NUMBER): New tokens.
16022         (seconds, signed_seconds, unsigned_seconds): New nonterminals.
16023         (spec): Now is a timespec or an item list.
16024         (timespec, items): New nonterminals.
16025         (time, rel, relunit, number, get_date):
16026         Add support for fractional seconds.
16027         (time): Fix bug: seconds weren't cleared in "00:00 +0000" syntax.
16028         (gmtime, localtime, mktime): Remove decls; not needed with C89.
16029         (to_hour): First arg is now long int, not int.
16030         (to_year): Returns long int, not int.
16031         Don't treat year -70 like 70.
16032         (tm_diff): Returns long int, not int.
16033         (lookup_word): Use bool instead of int when appropriate.
16034         (yylex): Use size_t for count, not int.
16035         Detect overflow when parsing large integer constants.
16036         Add support for fractions.
16037         (get_date): Make pointers 'const' if possible.
16038         Use more-portable code to detect integer overflow.
16039         (main) [TEST]: Adjust to above changes.  Test for localtime failure.
16040         Don't use ctime; it's not reliable if the year has >4 digits.
16041
16042         * lib/human.c (humblock): Inspect BLOCKSIZE if BLOCK_SIZE isn't set.
16043         This is for compatibility with BSD.
16044
16045         * lib/timespec.h (ST_TIME_CMP_NS, ST_TIME_CMP): Define.
16046         (ATIME_CMP, CTIME_CMP, MTIME_CMP, TIMESPEC_NS): Likewise.
16047         From coreutils' system.h.
16048
16049         * lib/userspec.c: Don't include "posixver.h".
16050         (parse_user_spec): Fall back on USER.GROUP parsing, regardless
16051         of POSIX version, as POSIX 1003.1-2001 allows that behavior as a
16052         compatible extension.  Simplify code by removing a boolean int
16053         that was always nonzero if a string was nonnull.
16054
16055 2004-03-30  Jim Meyering  <jim@meyering.net>
16056
16057         Merge from coreutils.
16058
16059         Avoid a configure-time warning about sys/ucred.h on OSF V4.0.
16060         * m4/ls-mntd-fs.m4: Test for sys/ucred.h separately, since
16061         on some systems one must include <grp.h> before it.
16062         Reported by Christian Krackowizer.
16063
16064 2004-03-30  Jim Meyering  <jim@meyering.net>
16065
16066         Merge from coreutils.
16067
16068         * lib/mountlist.c [HAVE_SYS_UCRED_H]: Include grp.h before sys/ucred.h.
16069
16070         * lib/readtokens.c (readtoken): Don't leak 64 bytes when reading
16071         an empty input stream.
16072
16073         * lib/readtokens.c: Include <stdbool.h>.
16074         (readtoken): Use `size_t' rather than int/long.
16075         All callers adjusted.
16076         Use `bool' rather than `int' where appropriate.
16077         Use memset rather than an explicit loop.
16078         Use x2nrealloc rather than xrealloc.
16079         Allow the use of `\0' as a delimiter.
16080         (readtokens): Likewise.
16081         * lib/readtokens.h (readtoken, readtokens): Update prototypes.
16082
16083 2004-03-30  Jim Meyering  <jim@meyering.net>
16084
16085         * m4/realloc.m4: Remove file, since now it does no more than
16086         AC_REQUIRE([AC_FUNC_REALLOC]), and that can be done via
16087         the `configure.ac' section of module/realloc.
16088         * m4/malloc.m4: Likewise, but for AC_FUNC_MALLOC.
16089
16090 2004-03-30  Bruno Haible  <bruno@clisp.org>
16091
16092         * lib/getloadavg.c (getloadavg): Don't assume setlocale returns
16093         nonnull.
16094
16095 2004-03-29  Paul Eggert  <eggert@twinsun.com>
16096
16097         Merge changes to getloadavg.c from coreutils and Emacs.
16098
16099         * lib/getloadavg.c [!defined HAVE_SETLOCALE] (setlocale):
16100         Define to an expression, not to the empty string.
16101         Include cloexec.h and xalloc.h.
16102         (getloadavg): Restore LC_NUMERIC locale after setting it temporarily.
16103         Use set_cloexec_flag rather than rolling our own.
16104         * lib/cloexec.c, lib/cloexec.h: New files.
16105
16106 2004-03-29  Paul Eggert  <eggert@twinsun.com>
16107
16108         * m4/cloexec.m4: New file.
16109
16110 2004-03-18  Paul Eggert  <eggert@twinsun.com>
16111
16112         * lib/getopt.h: Sync with libc CVS.
16113
16114 2004-03-18  Paul Eggert  <eggert@twinsun.com>
16115             Bruno Haible  <bruno@clisp.org>
16116
16117         * m4/mbswidth.m4 (gl_MBSWIDTH): Also test whether <wchar.h> declares
16118         mbswidth.
16119
16120 2004-03-18  Paul Eggert  <eggert@twinsun.com>
16121             Bruno Haible  <bruno@clisp.org>
16122
16123         * lib/mbswidth.h: Include <wchar.h> only if
16124         HAVE_DECL_MBSWIDTH_IN_WCHAR_H, not on all platforms that have
16125         <wchar.h>.
16126         * lib/mbswidth.c: Include <stdio.h> and <time.h> before <wchar.h>.
16127
16128 2004-03-09  Paul Eggert  <eggert@twinsun.com>
16129
16130         * lib/argp-parse.c, getopt.c, getopt.h, getopt1.c:
16131         Sync with libc CVS.
16132         * lib/getopt_int.h: New file, also synced from libc.
16133
16134 2004-03-09  Paul Eggert  <eggert@twinsun.com>
16135
16136         * config/srclistvars.sh: Add GNUWWWLICENSES for eggert.
16137         * config/srclist.txt: Sync getopt with libc.  Add getopt_int.h.
16138         Bring back getopt.c, getopt.h, getopt1.c.
16139
16140 2004-03-07  Paul Eggert  <eggert@twinsun.com>
16141
16142         * m4/c-stack.m4 (gl_PREREQ_C_STACK): Renamed from jm_PREREQ_C_STACK.
16143         All uses changed.  Check for sa_sigaction member; this fixes
16144         a bug first reported by Jason Andrade in
16145         <http://mail.gnu.org/archive/html/bug-textutils/2003-03/msg00027.html>.
16146
16147 2004-03-07  Paul Eggert  <eggert@twinsun.com>
16148
16149         * lib/c-stack.c (SIGACTION_WORKS): New macro.  Use it instead of long
16150         '#if' expressions.  Unlike the code it replaces, it does not
16151         depend on (defined _SC_PAGESIZE).  However, it does depend on
16152         HAVE_STRUCT_SIGACTION_SA_SIGACTION; this last change fixes a bug
16153         first reported by Jason Andrade in
16154         <http://mail.gnu.org/archive/html/bug-textutils/2003-03/msg00027.html>.
16155
16156 2004-02-25  Simon Josefsson  <jas@extundo.com>
16157
16158         * m4/strdup.m4 (gl_PREREQ_STRDUP): Check whether strdup is declared.
16159
16160 2004-02-25  Simon Josefsson  <jas@extundo.com>
16161
16162         * lib/strdup.h: New file.
16163         * lib/strdup.c: Include it.
16164         * lib/path-concat.c: Include strdup.h. Drop strdup declaration.
16165         * lib/userspec.c: Include strdup.h. Drop strdup declaration.
16166
16167 2004-02-23  Karl Berry  <karl@gnu.org>
16168
16169         * doc/maintain.texi, doc/standards.texi, doc/make-stds.texi: new files
16170         (from fencepost.gnu.org:/gd/gnuorg).
16171
16172 2004-02-23  Karl Berry  <karl@gnu.org>
16173
16174         * config/srclistvars.sh (GNUORG) [karl]: redefine.
16175         * config/srclist.txt: add maintain/standards documents.
16176
16177 2004-02-18  Bruno Haible  <bruno@clisp.org>
16178
16179         * m4/xsize.m4 (gl_XSIZE): Require AC_C_INLINE.
16180         Reported by Derek Robert Price <derek@ximbiot.com>.
16181
16182 2004-02-16  Karl Berry  <karl@gnu.org>
16183
16184         * config/mkinstalldirs, install-sh: update from automake.
16185
16186 2004-02-06  Karl Berry  <karl@gnu.org>
16187
16188         * m4/po.m4: update from gettext 0.14.1.
16189
16190 2004-02-06  Karl Berry  <karl@gnu.org>
16191
16192         * lib/config.charset: update from gettext 0.14.1.
16193
16194 2004-02-05  Paul Eggert  <eggert@twinsun.com>
16195
16196         Add comments and code, prompted by suggestions from Bruno Haible
16197         for sh-quote.
16198         * lib/quotearg.h (quotearg_alloc): New decl.  Improve the comments
16199         describing the enum quoting_style values.
16200         * lib/quotearg.c (quotearg_alloc): New function.
16201         (quotearg_buffer_restyled): Treat lone { and } as special.
16202         Treat = as special.  Work around bug with older shells
16203         that "see" a '\' that is really the 2nd byte of a multibyte char.
16204         Quote empty string with shell_quoting_style.
16205
16206 2004-02-03  Bruno Haible  <bruno@clisp.org>
16207
16208         * m4/pipe.m4: New file, from GNU gettext.
16209
16210 2004-02-03  Bruno Haible  <bruno@clisp.org>
16211
16212         * lib/pipe.h: New file, from GNU gettext.
16213         * lib/pipe.c: New file, from GNU gettext.
16214
16215 2004-01-27  Bruno Haible  <bruno@clisp.org>
16216
16217         * m4/execute.m4: New file, from GNU gettext.
16218
16219 2004-01-27  Bruno Haible  <bruno@clisp.org>
16220
16221         * lib/execute.h: New file, from GNU gettext.
16222         * lib/execute.c: New file, from GNU gettext.
16223         * lib/w32spawn.h: New file, from GNU gettext.
16224
16225 2004-01-24  Paul Eggert  <eggert@twinsun.com>
16226
16227         Merge from diffutils.
16228
16229         * lib/file-type.c (file_type): Add typed memory objects.
16230         * lib/file-type.h (S_TYPEISTMO): New macro.
16231
16232         * lib/c-stack.h (c_stack_action): Remove argv argument.
16233         * lib/c-stack.c (c_stack_action): Likewise.  All uses changed.
16234         (die): Don't calculate message unless segv_action returns.
16235         (get_stack_location, min_address_from_argv, max_address_from_argv,
16236         volatile stack_base, volatile_stack_size): Remove.
16237         (segv_handler): If ! HAVE_XSI_STACK_OVERFLOW_HEURISTIC, assume
16238         that every segmentation violation is a stack overflow.  (Ouch!)
16239         See Debian bug 136249 (still outstanding) for more info about why
16240         HAVE_XSI_STACK_OVERFLOW_HEURISTIC fails on Linux kernels.
16241
16242 2004-01-24  Paul Eggert  <eggert@twinsun.com>
16243
16244         Exit-status fix from coreutils.
16245
16246         Use exit_failure consistently in place of EXIT_FAILURE,
16247         so that program exit statuses are consistent on failure.
16248
16249         * lib/argmatch.c (ARGMATCH_DIE) [! defined ARGMATCH_DIE]:
16250         Include "exitfail.h", and use exit_failure rather than EXIT_FAILURE.
16251         * lib/argmatch.h: Comment fix to match the above.
16252         * lib/obstack.c (obstack_exit_failure) [!defined _LIBC]:
16253         Now a macro referring to exit_failure, instead of a separate
16254         variable.  Include "exitfail.h" to get it.
16255         * lib/xstrtol.h: Include "exitfail.h".
16256         (STRTOL_FATAL_ERROR): Exit with status exit_failure, not 2.
16257
16258         * lib/long-options.c (parse_long_options): Use prototype
16259         for usage function arg.  Pass it EXIT_SUCCESS rather than 0,
16260         for clarity.
16261
16262 2004-01-21  Jim Meyering  <jim@meyering.net>
16263
16264         * lib/mktime.c (__mktime_internal) [!_LIBC]: Define to mktime_internal
16265         so as not to conflict with a different-sized __mktime_internal
16266         function in GNU libc.
16267         * lib/timegm.c (__mktime_internal) [!_LIBC]: Likewise.
16268         Problem building statically-linked `ls' reported by Michael Brunnbauer.
16269
16270 2004-01-20  Karl Berry  <karl@gnu.org>
16271
16272         * config/config.guess: update from config.
16273
16274         * config/srclistvars.sh: GNUWWWLICENSES for karl.
16275
16276 2004-01-20  Bruno Haible  <bruno@clisp.org>
16277
16278         Safer stack allocation.
16279         * lib/setenv.c: Include allocsa.h.
16280         (alloca): Remove fallback definition.
16281         (freea): Remove macro.
16282         (__add_to_environ) [!_LIBC]: Use allocsa instead of alloca. Use freesa
16283         instead of freea.
16284
16285 2004-01-20  Bruno Haible  <bruno@clisp.org>
16286
16287         * m4/eealloc.m4: New file, from GNU gettext.
16288
16289 2004-01-20  Bruno Haible  <bruno@clisp.org>
16290
16291         * m4/allocsa.m4: New file, from GNU gettext.
16292
16293 2004-01-20  Bruno Haible  <bruno@clisp.org>
16294
16295         * lib/xallocsa.h: New file, from GNU gettext.
16296         * lib/xallocsa.c: New file, from GNU gettext.
16297
16298 2004-01-20  Bruno Haible  <bruno@clisp.org>
16299
16300         * lib/wait-process.c: On Windows, include windows.h. Needed on mingw.
16301
16302 2004-01-20  Bruno Haible  <bruno@clisp.org>
16303
16304         * lib/wait-process.c (wait_subprocess): Add ignore_sigpipe argument.
16305         * lib/wait-process.c (wait_subprocess): Likewise. Handle SIGPIPE
16306         specially.
16307
16308 2004-01-20  Bruno Haible  <bruno@clisp.org>
16309
16310         * lib/wait-process.c (wait_process): Disable the 2003-10-31 waitid()
16311         patch.
16312
16313 2004-01-20  Bruno Haible  <bruno@clisp.org>
16314
16315         * lib/wait-process.c (cleanup_slaves): Use ANSI C declaration.
16316
16317 2004-01-20  Bruno Haible  <bruno@clisp.org>
16318
16319         * lib/eealloc.h: New file.
16320
16321 2004-01-20  Bruno Haible  <bruno@clisp.org>
16322
16323         * lib/binary-io.h: Avoid warnings on Cygwin.
16324
16325 2004-01-20  Bruno Haible  <bruno@clisp.org>
16326
16327         * lib/allocsa.h: New file, from GNU gettext.
16328         * lib/allocsa.c: New file, from GNU gettext.
16329
16330 2004-01-18  Karl Berry  <karl@gnu.org>
16331
16332         * doc/gpl.texi, doc/lgpl.texi: new files.
16333
16334 2004-01-18  Karl Berry  <karl@gnu.org>
16335
16336         * config/srclistvars.sh (GNUWWWLICENSES): new variable.
16337         * config/srclist.txt ({fdl,gpl,lgpl}.text): get from there.
16338
16339 2004-01-15  Paul Eggert  <eggert@twinsun.com>
16340
16341         Merge from coreutils.
16342
16343         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for uintptr_t.
16344         * m4/posixver.m4 (gl_POSIXVER): Require gl_DEFAULT_POSIX2_VERSION.
16345         (gl_DEFAULT_POSIX2_VERSION): Move
16346         the documentation from 'configure' into 'config.hin',
16347         so that 'configure --help' isn't burdened by it and
16348         we don't have to worry about its formatting there.
16349         Reword the documentation so that it's more succinct
16350         and can be run together into a single paragraph.
16351         * m4/same.m4 (gl_SAME): Check for pathconf.
16352
16353 2004-01-15  Paul Eggert  <eggert@twinsun.com>
16354
16355         Merge from coreutils.
16356
16357         * lib/posixver.c: Include posixver.h.
16358
16359         * lib/same.c: Include <stdbool.h>, <limits.h>.
16360         (_POSIX_NAME_MAX): Define if not defined.
16361         (MIN): New macro.
16362         (same_name): If file names are silently truncated, report
16363         that the file names are the same if they are the same after
16364         the silent truncation.
16365
16366         * lib/xstrtod.h (xstrtod): Accept an extra arg, specifying the
16367         conversion function.
16368         * lib/xstrtod.c (xstrtod): Likewise.  All callers changed to
16369         include c-strtod.h and use c_strtod.  Don't include stdlib.h; no
16370         longer needed.
16371
16372 2004-01-15  Jim Meyering  <jim@meyering.net>
16373
16374         Merge from coreutils.
16375
16376         * m4/clock_time.m4 (gl_CLOCK_TIME): Don't set LIB_CLOCK_GETTIME
16377         if no library is required.
16378         * m4/jm-macros.m4: Don't require UTILS_SYS_OPEN_MAX.
16379         * m4/jm-macros.m4 (jm_MACROS): Require gl_FUNC_FREE.
16380         * m4/jm-macros.m4 (jm_MACROS): Require autoconf-2.58.
16381         (AC_LANG_SOURCE): Remove definition, now that we require autoconf-2.58.
16382         * m4/jm-macros.m4 (jm_MACROS): Don't require AC_FUNC_FTW.
16383         * m4/lib-check.m4 (jm_LIB_CHECK): Do not set LIB_CRYPT to the
16384         value, $ac_cv_search_crypt, if it's "none required".
16385         * m4/posixver.m4 (gl_DEFAULT_POSIX2_VERSION): New macro.
16386         * m4/prereq.m4 (jm_PREREQ): Require AC_FUNC_GETLOADAVG,
16387         not gl_FUNC_GETLOADAVG.
16388         * m4/prereq.m4 (jm_PREREQ): Require gl_READTOKENS, gl_MD5, gl_MAKEPATH,
16389         gl_LONG_OPTIONS, and gl_IDCACHE, gl_GETUGROUPS.
16390
16391 2004-01-15  Jim Meyering  <jim@meyering.net>
16392
16393         Merge from coreutils.
16394
16395         * lib/md5.h (rol) [__GNUC__ && __i386__]: Don't use `asm' code.  These
16396         days, gcc-3.x does better all by itself.  Patch from Dean Gaudet:
16397         http://mail.gnu.org/archive/html/bug-coreutils/2003-11/msg00144.html
16398
16399         * lib/posixver.c (DEFAULT_POSIX2_VERSION): Use definition of new,
16400         optional configure-time default.
16401
16402         * lib/version-etc.c (version_etc_copyright): Update copyright date.
16403
16404         * lib/xreadlink.c (xreadlink): Correct outdated comment.
16405
16406 2004-01-15  Alexandre Duret-Lutz  <adl@gnu.org>
16407
16408         Merge from coreutils.
16409
16410         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Do not set LIB_NANOSLEEP to the
16411         value, $ac_cv_search_nanosleep, if it's "none required".
16412
16413 2004-01-14  Paul Eggert  <eggert@twinsun.com>
16414
16415         * lib/fnmatch_loop.c (ALLOCA_LIMIT): Remove macro, which collided
16416         with like-named macro in fnmatch.c.
16417         (EXT): Use an internal constant instead.
16418
16419         Merge fnmatch patches from glibc.
16420         * lib/fnmatch.c (mbsinit): Remove define.
16421         Add libc_hidden_ver (__fnmatch, fnmatch).
16422         * lib/fnmatch_loop.c (FCT): Cast to int32_t and UCHAR when appropriate.
16423         Adjust to renaming of collseq_table_lookup to __collseq_table_lookup.
16424
16425 2004-01-14  Karl Berry  <karl@gnu.org>
16426
16427         * config/install-sh: update from automake.
16428
16429 2004-01-13  Karl Berry  <karl@gnu.org>
16430
16431         * config/install-sh: update from automake.
16432
16433 2004-01-09  Karl Berry  <karl@gnu.org>
16434
16435         * config/install-sh: update from automake.
16436
16437 2004-01-05  Karl Berry  <karl@gnu.org>
16438
16439         * config/config.{sub,guess}: update from config.
16440
16441 2003-12-31  Karl Berry  <karl@gnu.org>
16442
16443         * config/depcomp: update from automake.
16444
16445 2003-12-14  Karl Berry  <karl@gnu.org>
16446
16447         * lib/config.charset: update from gettext-runtime.
16448
16449 2003-12-03  Paul Eggert  <eggert@twinsun.com>
16450
16451         * lib/getgroups.c (getgroups): xmalloc takes one argument, not two.
16452         Bug reported by Alfred M. Szmidt.
16453
16454 2003-12-03  Bruno Haible  <bruno@clisp.org>
16455
16456         * m4/gettext.m4: Upgrade from gettext-0.13.
16457         * m4/po.m4: Upgrade from gettext-0.13.
16458         * m4/size_max.m4 (gl_SIZE_MAX): Don't use the _ONCE macros here.
16459         * m4/intmax.m4: New file, from gettext-0.13.
16460         * m4/printf-posix.m4: New file, from gettext-0.13.
16461
16462 2003-11-29  Karl Berry  <karl@gnu.org>
16463
16464         * lib/argp-{help.c,parse.c,namefrob.h}, argp.h: update from libc.
16465
16466 2003-11-25  Paul Eggert  <eggert@twinsun.com>
16467             Bruno Haible  <bruno@clisp.org>
16468
16469         * lib/printf-parse.h: Don't include sys/types.h.
16470         (ARG_NONE): New macro.
16471         (char_directive): Change type of *arg_index fields to size_t.
16472         * lib/printf-parse.c: Don't include sys/types.h.
16473         (SSIZE_MAX): Remove macro.
16474         (PRINTF_PARSE): Change the type of the arg_index variables to size_t.
16475         Remove unnecessary overflow check.
16476         * lib/vasnprintf.c (VASNPRINTF): Update for type change of *arg_index
16477         fields.
16478
16479 2003-11-25  Bruno Haible  <bruno@clisp.org>
16480
16481         * modules/vasnprintf (Files): Remove m4/ssize_t.m4.
16482
16483 2003-11-25  Bruno Haible  <bruno@clisp.org>
16484
16485         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Don't require
16486         gt_TYPE_SSIZE_T.
16487
16488 2003-11-24  Paul Eggert  <eggert@twinsun.com>
16489
16490         * modules/alloca: Remove dependency on xalloc.
16491
16492 2003-11-24  Paul Eggert  <eggert@twinsun.com>
16493
16494         * lib/alloca.c: Remove dependency on xalloc module.
16495         (xalloc_die): Remove.
16496         (memory_full) [!defined emacs]: New macro.
16497         [!defined emacs]: Don't include xalloc.h.
16498         (alloca): Invoke memory_full, not xalloc_die, if malloc fails or
16499         address arithmetic overflows.  Change datatypes a bit to avoid
16500         unnecessary casts.
16501
16502 2003-11-22  Jim Meyering  <jim@meyering.net>
16503
16504         * lib/xmalloc.c (x2nrealloc_inline): Fix typos in comments:
16505         s/size/size_t/.
16506
16507 2003-11-21  Karl Berry  <karl@gnu.org>
16508
16509         * config/config.{sub,guess}: update from config.
16510
16511 2003-11-18  Karl Berry  <karl@gnu.org>
16512
16513         * config/config.{sub,guess}: update from config.
16514
16515         * config/(printf-{parse,args}.[ch]): sync broken, sigh.
16516
16517 2003-11-17  Paul Eggert  <eggert@twinsun.com>
16518
16519         * README: Mention that S+T cannot overflow if S is the size of
16520         an existing object and T is sufficiently small.
16521
16522 2003-11-17  Jim Meyering  <jim@meyering.net>
16523
16524         On systems without utime and without a utimes function capable of
16525         dealing with a NULL struct utimbuf* argument, this utime replacement
16526         could -- in unusual circumstances -- leak a file descriptor.
16527         * lib/utime.c: Include <unistd.h> and <errno.h>.
16528         (utime_null): Be sure to close `fd' and to preserve errno.
16529         Reported by Geoff Collyer via Arnold Robbins.
16530
16531 2003-11-17  Bruno Haible  <bruno@clisp.org>
16532
16533         * modules/vasnprintf (Files): Add m4/ssize_t.m4.
16534         (Depends-on): Add xsize.
16535
16536 2003-11-17  Bruno Haible  <bruno@clisp.org>
16537
16538         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Require gt_TYPE_SSIZE_T.
16539
16540 2003-11-17  Bruno Haible  <bruno@clisp.org>
16541
16542         * lib/vasnprintf.c (alloca): Remove fallback definition.
16543         (freea): Remove definition.
16544         (VASNPRINTF): Use alloca only for small sizes, say <= 4000 bytes.
16545         Reported by Paul Eggert.
16546
16547 2003-11-16  Paul Eggert  <eggert@twinsun.com>
16548             Bruno Haible  <bruno@clisp.org>
16549
16550         Protect against address arithmetic overflow.
16551         * lib/printf-args.h: Include stddef.h.
16552         (arguments): Change type of field 'count' to size_t.
16553         * lib/printf-args.c (printf_fetchargs): Use size_t instead of
16554         'unsigned int' where appropriate.
16555         * lib/printf-parse.h: Include sys/types.h.
16556         (char_directive): Change type of *arg_index fields to ssize_t.
16557         (char_directives): Change type of fields 'count', max_*_length to
16558         size_t.
16559         * lib/printf-parse.c: Include sys/types.h and xsize.h.
16560         (SSIZE_MAX): Define fallback value.
16561         (PRINTF_PARSE): Use size_t instead of 'unsigned int' and ssize_t
16562         instead of 'int' where appropriate. Check a_allocated, d_allocated
16563         against overflow. Reject %m$ argument numbers > SSIZE_MAX + 1.
16564         * lib/vasnprintf.c: Include xsize.h.
16565         (VASNPRINTF): Use size_t instead of 'unsigned int' where appropriate.
16566         Check alloca, malloc, realloc, ENSURE_ALLOCATION arguments against
16567         overflow. Avoid wraparound when converting a width or precision from
16568         decimal to binary.
16569
16570 2003-11-16  Bruno Haible  <bruno@clisp.org>
16571
16572         Update from GNU gettext.
16573         * lib/printf-parse.c: Generalize to it can be compiled for wide
16574         strings.
16575         (PRINTF_PARSE, CHAR_T, DIRECTIVE, DIRECTIVES): New macros.
16576         * lib/vasnprintf.c: Generalize to it can be compiled for wide strings.
16577         (VASNPRINTF, CHAR_T, DIRECTIVE, DIRECTIVES, PRINTF_PARSE, USE_SNPRINTF,
16578         SNPRINTF): New macros.
16579         Don't include <alloca.h> if the file is used inside libintl.
16580         (local_wcslen): New function, for Solaris 2.5.1.
16581         (VASNPRINTF): Use it instead of wcslen.
16582
16583 2003-11-16  Bruno Haible  <bruno@clisp.org>
16584
16585         * lib/xsize.h (xmax): New function.
16586         (xsum, xsum3, xsum4): Declare as "pure" functions.
16587
16588 2003-11-12  Paul Eggert  <eggert@twinsun.com>
16589
16590         * modules/xalloc (Files): Undo latest change, since xalloc.h
16591         no longer needs SIZE_MAX or PTRDIFF_MAX.
16592
16593 2003-11-12  Paul Eggert  <eggert@twinsun.com>
16594
16595         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Do not require gl_SIZE_MAX or
16596         gl_PTRDIFF_MAX.
16597
16598 2003-11-12  Paul Eggert  <eggert@twinsun.com>
16599
16600         * lib/xstrtol.c (__xstrtol): Remove "break" immediately after
16601         "return", to pacify some unknown compiler.  Problem reported
16602         by Joerg Schilling.
16603
16604 2003-11-12  Paul Eggert  <eggert@twinsun.com>
16605
16606         * lib/xalloc.h: Do not include <limits.h> or <stdint.h>.
16607         (xalloc_oversized): Use sizeof (ptrdiff_t) and sizeof (size_t) for
16608         the heuristic, rather than PTRDIFF_MAX and SIZE_MAX.  This
16609         heuristic is just as accurate as far as we know, and it removes a
16610         dependency on size_max.m4 and ptrdiff_max.m4.
16611
16612 2003-11-11  Bruno Haible  <bruno@clisp.org>
16613
16614         * modules/xsize (Files): Add m4/size_max.m4.
16615         * modules/xalloc (Files): Add m4/size_max.m4, m4/ptrdiff_max.m4.
16616
16617 2003-11-11  Bruno Haible  <bruno@clisp.org>
16618
16619         * m4/size_max.m4: New file.
16620         * m4/ptrdiff_max.m4: New file.
16621         * m4/xsize,m4 (gl_XSIZE): Require gl_SIZE_MAX.
16622         * m4/xalloc.m4 (gl_PREREQ_XALLOC): New macro.
16623         (gl_XALLOC): Invoke it.
16624
16625 2003-11-11  Bruno Haible  <bruno@clisp.org>
16626
16627         * lib/xsize.h (SIZE_MAX): Remove fallback definition.
16628         * lib/xalloc.h: Include limits.h. Assume SIZE_MAX and PTRDIFF_MAX are
16629         defined.
16630
16631 2003-11-10  Paul Eggert  <eggert@twinsun.com>
16632
16633         * lib/xalloc.h (xalloc_oversized): [! (defined PTRDIFF_MAX &&
16634         PTRDIFF_MAX < SIZE_MAX)]: Fix off-by-one error that would have
16635         rejected some allocations of exactly SIZE_MAX - 2 bytes.
16636         From Bruno Haible.
16637         [defined PTRDIFF_MAX && PTRDIFF_MAX < SIZE_MAX]: Use SIZE_MAX,
16638         not (size_t) -1, since it's defined here.
16639
16640 2003-11-09  Karl Berry  <karl@gnu.org>
16641
16642         * config/mkinstalldirs, depcomp, mdate-sh: update from automake.
16643
16644 2003-11-06  Paul Eggert  <eggert@twinsun.com>
16645
16646         * lib/xalloc.h [HAVE_STDINT_H]: Include <stdint.h>.
16647         (xalloc_oversized) [! (PTRDIFF_MAX < SIZE_MAX)]:
16648         Reject sizes of exactly SIZE_MAX bytes.
16649         * lib/xreadlink.c: Include "xalloc.h" before checking whether SIZE_MAX
16650         is defined, since "xalloc.h" now defines SIZE_MAX on modern hosts.
16651
16652 2003-11-05  Bruno Haible  <bruno@clisp.org>
16653
16654         * lib/xsize.h: Include limits.h, to avoid a possible collision with
16655         SIZE_MAX defined in <limits.h> on Solaris.
16656
16657 2003-11-04  Jim Meyering  <jim@meyering.net>
16658
16659         * modules/sysexits: Use the `$(VAR)' notation for AC_SUBST'd
16660         variable names, rather than @VAR@.
16661         * modules/poll: Likewise.
16662
16663 2003-11-04  Bruno Haible  <bruno@clisp.org>
16664
16665         * modules/xsize: New file.
16666         * modules/linebreak: Depend on xsize.
16667         * MODULES.html.sh (func_all_modules): Add xsize.
16668
16669 2003-11-04  Bruno Haible  <bruno@clisp.org>
16670
16671         * m4/xsize.m4: New file.
16672
16673 2003-11-04  Bruno Haible  <bruno@clisp.org>
16674
16675         * lib/xsize.h: New file.
16676         * lib/linebreak.c: Include xsize.h.
16677         (mbs_possible_linebreaks, mbs_width_linebreaks): Check malloc()
16678         argument for overflow.
16679         Suggested by Paul Eggert.
16680
16681 2003-11-03  Karl Berry  <karl@gnu.org>
16682
16683         * config/config.{guess,sub}: update from config.
16684
16685 2003-11-03  Jim Meyering  <jim@meyering.net>
16686
16687         * modules/userspec (lib_SOURCES): Add userspec.h.
16688         (Include): Add "userspec.h".
16689         Improve description.
16690
16691 2003-11-03  Jim Meyering  <jim@meyering.net>
16692
16693         * lib/userspec.c: Include "userspec.h".
16694         * lib/userspec.h: New file.
16695
16696 2003-11-03  Bruno Haible  <bruno@clisp.org>
16697
16698         * m4/wait-process.m4 (gl_WAIT_PROCESS): Also check for waitid.
16699
16700 2003-11-03  Bruno Haible  <bruno@clisp.org>
16701
16702         * lib/wait-process.c (wait_process): Use waitid with WNOWAIT if
16703         available, to avoid (extremely rare) race condition.
16704         Suggested by Paul Eggert.
16705
16706 2003-11-02  Karl Berry  <karl@gnu.org>
16707
16708         * config/srclist.txt (vasprintf.c): sync broken, sigh.
16709
16710 2003-10-31  Paul Eggert  <eggert@twinsun.com>
16711
16712         * lib/mountlist.h (struct mount_entry.me_type_malloced): New member.
16713         * lib/mountlist.c (SIZE_MAX): Define if not defined already.
16714         (read_filesystem_list): Set and use me_type_malloced.
16715         Use "sizeof *me" rather than "sizeof (struct mount_entry)" (or
16716         whatever the type happens to be), for brevity and consistency.
16717         Check for size calculation overflow on Alphas running OSF/1.
16718
16719 2003-10-31  Jim Meyering  <jim@meyering.net>
16720
16721         * lib/hash.c: Include "xalloc.h" for use of xalloc_oversized.
16722
16723         * lib/linebuffer.c: Include <string.h> for declaration of memset.
16724
16725 2003-10-30  Paul Eggert  <eggert@twinsun.com>
16726             Bruno Haible  <bruno@clisp.org>
16727
16728         * lib/vasprintf.c: Include <limits.h>, <stdlib.h>.
16729         (vasprintf): Fail if the resulting length doesn't fit in an 'int'.
16730
16731 2003-10-30  Paul Eggert  <eggert@cs.ucla.edu>
16732
16733         * m4/host-os.m4 (UTILS_HOST_OS): Change netbsd*-gnu pattern back to
16734         netbsd*-gnu*.  Suggested by Robert Millan.
16735
16736 2003-10-29  Paul Eggert  <eggert@twinsun.com>
16737
16738         * modules/group-member: Depend on stdbool.
16739
16740 2003-10-29  Paul Eggert  <eggert@twinsun.com>
16741
16742         * m4/xalloc.m4 (gl_XALLOC): Undo previous change.
16743
16744 2003-10-29  Paul Eggert  <eggert@twinsun.com>
16745
16746         * m4/host-os.m4 (UTILS_HOST_OS): Resurrect netbsd*-gnu.  Add comments
16747         to it, and to knetbsd*-gnu and kfreebsd*-gnu.  Remove the '*' from
16748         after the 'gnu' in these cases.  This fixes some bugs in the
16749         previous change, and is based on suggestions by Robert Millan.
16750
16751 2003-10-29  Paul Eggert  <eggert@twinsun.com>
16752
16753         * lib/xalloc.h (xalloc_oversized): Now a macro, not a function,
16754         so that it works even if SIZE_MAX < N.  Do not include <stdbool.h>;
16755         no longer needed.
16756         * lib/quotearg.c (quotearg_n_options): Use it.
16757         * lib/group-member.c: Include <stdbool.h>.
16758         (free_group_info): Arg is now const *; don't free arg.
16759         (get_group_info): Now returns bool and accepts struct group_info *,
16760         rather than returning a malloc'ed struct group_info *.
16761         All uses changed.  Check for overflow in internal size calculation.
16762
16763         * lib/getusershell.c (readname): Simplify the code by using x2nrealloc
16764         rather than xmalloc/xrealloc.
16765         * lib/linebuffer.c (initbuffer, readlinebuffer): Simplify the code by
16766         using x2realloc rather than xmalloc/xrealloc.  Also, fix a C
16767         conformance bug: the old code used a pointer after freeing the
16768         storage that it addressed.
16769         * lib/hash.c (hash_initialize): Simplify the code by using
16770         xalloc_oversized rather than doing it by hand.
16771         * lib/getgroups.c (getgroups): Don't use xrealloc, since we don't need
16772         the buffer preserved.  Use free and xmalloc instead.
16773         * lib/quotearg.c (quotearg_n_options): Likewise.
16774         Use a simpler test for size overflow.  Don't use xalloc_oversized
16775         because unsigned int might be wider than size_t (!); this suggests
16776         that we should switch from unsigned int to size_t for slot numbers.
16777
16778 2003-10-28  Paul Eggert  <eggert@twinsun.com>
16779
16780         * m4/host-os.m4 (UTILS_HOST_OS): Identify GNU/KFreeBSD and
16781         GNU/KNetBSD.  These implementations use glibc atop the FreeBSD and
16782         NetBSD kernels.  Requested by Richard Stallman.
16783
16784 2003-10-27  Paul Eggert  <eggert@twinsun.com>
16785
16786         * lib/exclude.c (new_exclude): Use xzalloc rather than xmalloc
16787         to allocate the returned structure.  Do not allocate a subarray,
16788         as x2nrealloc will do that.
16789         (add_exclude): Use x2nrealloc to reallocate ex->exclude,
16790         instead of xnrealloc.
16791         (add_exclude_file): Use x2realloc instead of malloc + xnrealloc.
16792
16793 2003-10-27  Bruno Haible  <bruno@clisp.org>
16794
16795         * lib/stdbool_.h: Better support for BeOS.
16796
16797 2003-10-26  Paul Eggert  <eggert@twinsun.com>
16798
16799         * m4/xalloc.m4 (gl_XALLOC): Requore AC_C_INLINE, since xalloc.h
16800         now uses inline.
16801
16802 2003-10-26  Paul Eggert  <eggert@twinsun.com>
16803
16804         * lib/xalloc.h (xalloc_oversized): New static inline function, for
16805         callers that want to do their own size-overflow checking.  Include
16806         <stdbool.h>, since xalloc_oversized returns bool.
16807         * lib/xalloc.c (array_size_overflow): Remove.  All callers changed
16808         to use xalloc_oversized.
16809
16810         Add two functions x2realloc, x2nrealloc, for programs that grow
16811         arrays dynamically by doubling their sizes.
16812         * lib/xalloc.h (x2realloc, x2nrealloc): New decls.
16813         * lib/xmalloc.c (x2nrealloc_inline, x2nrealloc, x2realloc):
16814         New functions.
16815
16816         Port to C99 semantics for 'inline' of external functions.
16817         Bug reported by Bruno Haible.
16818         * lib/xmalloc.c (xnmalloc_inline): New static inline function,
16819         with the old contents of xnmalloc.
16820         (xnmalloc, xmalloc): Use it.
16821         (xnrealloc_inline): New static inline function,
16822         with the old contents of xnrealloc.
16823         (xnrealloc, xrealloc): Use it.
16824
16825         * lib/alloc.c (alloca): xmalloc cannot return NULL, so don't test for
16826         that.
16827
16828 2003-10-26  Karl Berry  <karl@gnu.org>
16829
16830         * config/srclist.txt (COPYING.DOC): no longer available from
16831         /gd/gnuorg; don't know where the ultimate source is.
16832
16833 2003-10-25  Paul Eggert  <eggert@twinsun.com>
16834
16835         Fix several address-calculation bugs in the hash modules,
16836         plus some minor code cleanup.
16837
16838         * lib/hash.h: Include <stdbool.h>, for bool.
16839         * lib/hash.c: Don't include <stdbool.h>, since hash.h does it now.
16840         * lib/hash.h (Hash_hasher, hash_get_n_buckets, hash_get_n_buckets_used,
16841         hash_get_n_entries, hash_get_max_bucket_length,
16842         hash_get_entries, hash_do_for_each, hash_string, hash_initialize,
16843         hash_rehash): Use size_t rather than unsigned.
16844         * lib/hash.c (struct hash_table, hash_get_n_buckets,
16845         hash_get_n_buckets_used, hash_get_n_entries,
16846         hash_get_max_bucket_length, hash_table_ok, hash_print_statistics,
16847         hash_get_entries, hash_do_for_each, hash_string, is_prime,
16848         next_prime, hash_initialize, hash_rehash, hash_delete, hash_print):
16849         Likewise.
16850         (SIZE_MAX): Define if not defined.
16851         (hash_get_max_bucket_length, hash_table_ok, hash_lookup,
16852         hash_get_first, hash_get_next, hash_get_entries, hash_do_for_each,
16853         hash_print):
16854         Use const * when possible.
16855         (hash_string): Use (unsigned char) *P rather than *(unsigned char *) P.
16856         (check_tuning): Fix bug: if tuning parameters were very close to
16857         0 or 1, rounding errors could have caused subscript violations.
16858         (hash_initialize, allocate_entry, hash_print): Remove unnecessary cast.
16859         (hash_initialize): Add 'fail:' label
16860         to free table and return NULL, and use it to simplify code.
16861         Use calloc rather than clearing the storage ourself.
16862         (hash_initialize, hash_rehash): Check for arithmetic overflow in
16863         buffer size calculations.
16864         * lib/hash-pjw.h (hash_pjw): Use size_t, not unsigned.
16865         Include <stddef.h>, for size_t.
16866         * lib/hash-pjw.c (hash_pjw): Likewise.
16867         Switch to method described by Bruno Haible.
16868         Include <limits.h>, for CHAR_BIT.
16869         (SIZE_BITS): New macro.
16870
16871 2003-10-23  Paul Eggert  <eggert@twinsun.com>
16872
16873         * m4/getline.m4 (AM_FUNC_GETLINE):
16874         Don't include getndelim2.o twice into LIBOBJS; this breaks on some
16875         hosts.  Problem reported by Derek Robert Price in
16876         <http://mail.gnu.org/archive/html/bug-gnulib/2003-10/msg00092.html>.
16877         This patch can be withdrawn after Autoconf 2.58 is required for gnulib.
16878         * m4/getndelim2.m4 (gl_GETNDELIM2): Likewise.
16879
16880 2003-10-21  Paul Eggert  <eggert@twinsun.com>
16881
16882         * lib/getndelim2.c (getndelim2): When size calculation overflows,
16883         ceiling the allocation at NMAX bytes rather than silently
16884         discarding input bytes before NMAX is reached.  This makes
16885         a difference only if NMAX exceeds SIZE_MAX / 2.
16886
16887         * lib/obstack.c: Merge from glibc.
16888         [defined _LIBC]: Include <obstack.h>, not "obstack.h".
16889         Add libc_hidden_def (_obstack_newchunk).
16890         (_obstack_free) [! defined _LIBC]: Remove.
16891         [defined _LIBC]: Make a strong alias from obstack_free, rather than
16892         a clone of the function body.
16893         (fputs) [defined _LIBC && defined USE_IN_LIBIO]: Remove.
16894         [defined _LIBC && !defined USE_IN_LIBIO]: Include <libio/iolibio.h>.
16895
16896         * lib/obstack.h: Indenting cleanup, to make it easier to merge with
16897         glibc.
16898         (obstack_grow, obstack_grow0): Remove unnecessary parentheses around
16899         arg to memcpy.
16900
16901         * lib/obstack.h (obstack_1grow_fast): Properly parenthesize arg.
16902         (obstack_ptr_grow_fast, obstack_int_grow_fast):
16903         Don't use lvalue casts, as GCC plans to remove support for them
16904         in GCC 3.5.  Reported by Joseph S. Myers.  This bug
16905         was also present in the non-GCC version, indicating that this
16906         code had always been buggy and had never been widely used.
16907         (obstack_1grow, obstack_ptr_grow, obstack_int_grow, obstack_blank):
16908         Use the fast variant of each macro, rather than copying the
16909         definiens of the fast variant; that way, we'll be more likely to
16910         catch future bugs in the fast variants.
16911
16912 2003-10-20  Bruno Haible  <bruno@clisp.org>
16913
16914         * modules/wait-process: New file.
16915         * MODULES.html.sh (func_all_modules): Add wait-process.
16916
16917 2003-10-20  Bruno Haible  <bruno@clisp.org>
16918
16919         * m4/wait-process.m4: New file.
16920
16921 2003-10-20  Bruno Haible  <bruno@clisp.org>
16922
16923         * lib/wait-process.h: New file, from GNU gettext.
16924         * lib/wait-process.c: New file, from GNU gettext.
16925
16926 2003-10-19  Jim Meyering  <jim@meyering.net>
16927
16928         * lib/vasnprintf.c (vasnprintf): Work around losing snprintf on
16929         HPUX 10.20.
16930
16931 2003-10-18  Karl Berry  <karl@gnu.org>
16932
16933         * config/config.guess: update from config.
16934
16935 2003-10-16  Paul Eggert  <eggert@twinsun.com>
16936
16937         * lib/getgroups.c: Include <errno.h>, <stdlib.h>.
16938         (getgroups): First arg is int, not size_t.
16939         Don't let 'free' mangle errno.
16940
16941 2003-10-16  Paul Eggert  <eggert@twinsun.com>
16942
16943         * README: Mention that gnulib assumes that (foo *) NULL + 0 == NULL.
16944
16945 2003-10-16  Karl Berry  <karl@gnu.org>
16946
16947         * config/config.{guess,sub}: update from config.
16948
16949 2003-10-16  Jim Meyering  <jim@meyering.net>
16950
16951         * lib/xmalloc.c: Include <string.h>, for declarations of memset and
16952         memcpy.
16953
16954 2003-10-15  Paul Eggert  <eggert@twinsun.com>
16955
16956         * lib/exclude.c: Do not include <inttypes.h> or <stdint.h>.
16957         (SIZE_MAX): Remove.
16958         (new_exclude, add_exclude_file): Initial size no longer needs to
16959         be a power of 2.
16960         (add_exclude, add_exclude_file): Use xnrealloc instead of rolling
16961         our own address arithmetic overflow checking.
16962
16963         * lib/fnmatch.c (SIZE_MAX): Define if standard headers don't.
16964         (fnmatch): Do not alloca more than 2000 wide characters;
16965         instead, use malloc for large buffers.
16966         Check for address arithmetic overflow, and return -1
16967         with errno set to ENOMEM in that case.
16968         * lib/fnmatch_loop.c (ALLOCA_LIMIT): New macro.
16969         (NEW_PATTERN): Do not alloca more than 8000 bytes;
16970         instead, return -1.  Check for address arithmetic overflow.
16971
16972 2003-10-14  Paul Eggert  <eggert@twinsun.com>
16973
16974         Handle invalid suffixes and overflow independently, so that
16975         callers can treat them independently as needed.  Fix some bugs in
16976         suffix handling, e.g., "100k@" was not diagnosed as an invalid
16977         suffix for a human-readable blocksize.  The major caller-visible
16978         change is the addition of a new
16979         LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW enum value, indicating
16980         that both overflow and suffix chars were found.
16981
16982         * lib/human.c (humblock): Don't check separately for invalid suffix
16983         char; that is xstrtoumax's job (now that its bug is fixed).
16984         * lib/xstrtoimax.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM) [defined
16985         INTMAX_MAX]: New macros.
16986         * lib/xstrtol.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM, TYPE_MINIMUM,
16987         TYPE_MAXIMUM): New macros.
16988         (bkm_scale, bkm_scale_by_power): Return strtol_error, not int.
16989         (bkm_scale, bkm_scale_by_power, __xstrtol): Return maximal values
16990         if overflow occurs, as it's what __strtol does and it's more useful
16991         in practice.
16992         (__xstrtol): If __strtol reports some error other than ERANGE,
16993         reflect it to the caller as LONGINT_INVALID.  If it reports
16994         ERANGE, continue the rest of parsing, and report LONGINT_OVERFLOW
16995         | LONGINT_INVALID_SUFFIX_CHAR if both errors occur.
16996         * lib/xstrtol.h (LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW): New enum
16997         value.
16998         (_STRTOL_ERROR): Handle it.  Abort when given unknown error codes.
16999         * lib/xstrtoul.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM): New macros.
17000         * lib/xstrtoumax.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM)
17001         [defined UINTMAX_MAX]: New macros.
17002
17003 2003-10-14  Bruno Haible  <bruno@clisp.org>
17004
17005         * modules/fatal-signal: Add m4/sig_atomic_t.m4 to file list.
17006
17007 2003-10-14  Bruno Haible  <bruno@clisp.org>
17008
17009         * m4/sig_atomic_t: New file, from GNU gettext.
17010         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Require gt_TYPE_SIG_ATOMIC_T.
17011
17012 2003-10-14  Bruno Haible  <bruno@clisp.org>
17013
17014         * lib/fatal-signal.h: Improved comments. Suggested by Paul Eggert.
17015         * lib/fatal-signal.c: Use sig_atomic_t. Suggested by Paul Eggert.
17016         Also use volatile where needed.
17017
17018 2003-10-12  Paul Eggert  <eggert@twinsun.com>
17019
17020         * modules/xalloc: Do not depend on 'exit'.  Depend on 'stdbool'.
17021         Change maintainer from Bruno Haible to 'all'.
17022
17023 2003-10-12  Paul Eggert  <eggert@twinsun.com>
17024
17025         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Require AC_C_INLINE.
17026
17027 2003-10-12  Paul Eggert  <eggert@twinsun.com>
17028
17029         * lib/xalloc.h (xnmalloc, xzalloc, xnrealloc, xclone): New decls.
17030         (XMALLOC, XCALLOC, XREALLOC, XFREE, CCLONE, CLONE): Deprecate,
17031         and define in terms of the other primitives.
17032         * lib/xmalloc.c: Include stdbool.h; do not include exit.h.
17033         (SIZE_MAX): Define if not already defined.
17034         (array_size_overflow): New function.
17035         (xalloc_die): Abort instead of exiting if 'error' returns.
17036         (xnmalloc, xnrealloc, xzalloc, xclone): New functions.
17037         (xmalloc, xrealloc): Use them.
17038         (xcalloc): Check for address arithmetic overflow.
17039         * lib/xstrdup.c (xstrdup): Use xclone, since memcpy should be
17040         a bit faster than strcpy.
17041
17042 2003-10-10  Simon Josefsson  <jas@extundo.com>
17043
17044         * modules/argp (Depends-on): Add restrict and strcase.
17045
17046 2003-10-10  Simon Josefsson  <jas@extundo.com>
17047
17048         * m4/argp.m4: Add AC_C_INLINE.
17049
17050 2003-10-08  Paul Eggert  <eggert@twinsun.com>
17051
17052         Merge getpass from libc, plus a few fixes.
17053
17054         * lib/getpass.c (HAVE_STDIO_EXT) [_LIBC]: Define to 1.
17055         Include <stdbool.h>.
17056         Include <stdio_ext.h> if HAVE_STDIO_H, otherwise define
17057         __fsetlocking to empty.
17058         [_LIBC]: Do not include "getline.h" or "unlocked-io.h", but
17059         do include <bits/libc-lock.h>.
17060         Do not include <fcntl.h>; not needed.
17061         [_LIBC]: Include <wchar.h>.
17062         (NOTCANCEL_MODE): New macro.
17063         (flockfile, funlockfile) [_LIBC]: New macros.
17064         (__libc_cleanup_push, __libc_cleanup_pop, __getline, __tcgetattr)
17065         [!_LIBC]: New macros.
17066         (call_fclose): New function.
17067         (getpass): Use it.  Save tty stream separately; this simplifies the
17068         code and makes it more reliable if stdin happens to equal stdout.
17069         Invoke __fsetlocking on tty.
17070         Handle thread cancellation if needed.
17071         Namespace cleanup (use __tcgetattr, __getline).
17072         Use bool for Booleans.
17073         [USE_IN_LIBIO]: Handle wide streams.
17074         [!_LIBC]: Unconditionally do the fseek, since we don't know what
17075         stream might go where.
17076
17077         * lib/unlocked-io.h: Include <stdio.h>, so that the caller
17078         doesn't have to include <stdio.h> before us.
17079         (clearerr_unlocked, feof_unlocked, ferror_unlocked,
17080         fflush_unlocked, fgets_unlocked, fputc_unlocked, fputs_unlocked,
17081         fread_unlocked, fwrite_unlocked, getc_unlocked, getchar_unlocked,
17082         putc_unlocked, putchar_unlocked): Define to the unlocked counterpart
17083         if not declared, so that we can use getpass.c code from libc without
17084         rewriting it.
17085         (flockfile, ftrylockfile, funlockfile): New macros.
17086
17087 2003-10-08  Paul Eggert  <eggert@twinsun.com>
17088
17089         * modules/getpass: Depend on stdbool.
17090
17091 2003-10-08  Paul Eggert  <eggert@twinsun.com>
17092
17093         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for stdio_ext.h.
17094
17095 2003-10-07  Karl Berry  <karl@gnu.org>
17096
17097         * config/config.{guess,sub}: update from config.
17098
17099 2003-10-06  Jim Meyering  <jim@meyering.net>
17100             Bruno Haible  <bruno@clisp.org>
17101
17102         This lets translators provide better translations for the
17103         "Written by ..." part of --version output.
17104         * lib/version-etc.h: Include stdarg.h.
17105         (version_etc_copyright): Declare as readonly.
17106         (version_etc): Make this function variadic with a NULL-terminated list
17107         of author name strings.
17108         (version_etc_va): New declaration.
17109         * lib/version-etc.c: Include stdarg.h, stdlib.h.
17110         (version_etc_copyright): Declare as readonly.
17111         (version_etc_va): New function. Provide a different translatable string
17112         for each possible number of authors < 10. Abbreviate when there are 10
17113         authors or more.
17114         (version_etc): Make this function variadic. Call version_etc_va.
17115         Suggestion from Gary V. Vaughan.
17116
17117         * lib/long-options.h (parse_long_options): Change prototype: the
17118         authors string is moved to the end and becomes variadic.
17119         * lib/long-options.c: Include stdarg.h.
17120         (parse_long_options): Make this function variadic, too.
17121         Call version_etc_va, not version_etc.
17122
17123 2003-10-06  Bruno Haible  <bruno@clisp.org>
17124
17125         * modules/version-etc-2: Remove file.
17126         * MODULES.html.sh (func_all_modules): Remove version-etc-2.
17127
17128 2003-10-06  Bruno Haible  <bruno@clisp.org>
17129
17130         * modules/fatal-signal: New file.
17131         * MODULES.html.sh (func_all_modules): Add fatal-signal.
17132
17133 2003-10-06  Bruno Haible  <bruno@clisp.org>
17134
17135         * m4/fatal-signal.m4: New file.
17136         * m4/signalblocking.m4: New file, from GNU gettext.
17137
17138 2003-10-06  Bruno Haible  <bruno@clisp.org>
17139
17140         * lib/version-etc-2.h: Remove file.
17141         * lib/version-etc-2.c: Remove file.
17142
17143 2003-10-06  Bruno Haible  <bruno@clisp.org>
17144
17145         * lib/fatal-signal.h: New file, from GNU gettext.
17146         * lib/fatal-signal.c: New file, from GNU gettext.
17147
17148 2003-10-05  Paul Eggert  <eggert@twinsun.com>
17149
17150         * README: Rework advice for preventing empty .o files.
17151         Don't recommend ELIDE constructs.  Recommend <stddef.h>,
17152         not <sys/types.h>.
17153
17154 2003-10-04  Karl Berry  <karl@gnu.org>
17155
17156         * lib/argp*: update from libc.
17157
17158 2003-10-04  Karl Berry  <karl@gnu.org>
17159
17160         * config/config.{guess,sub}: update from config.
17161
17162 2003-10-02  Bruno Haible  <bruno@clisp.org>
17163
17164         * modules/lchown (Include): Add lchown.h.
17165         * modules/time_r (Include): Use "..." syntax.
17166         * modules/xgetdomainname (Include): Add xgetdomainname.h.
17167
17168 2003-10-01  Simon Josefsson  <jas@extundo.com>
17169
17170         * MODULES.html.sh (func_all_modules): Move gethostname from section
17171         'based on' to section 'lacking' POSIX:2001.
17172
17173 2003-10-01  Larry Jones  <lawrence.jones@eds.com>
17174
17175         * lib/getpass.c (getpass): Use a no-op fseek when switching from input
17176         to output mode on the same stream.
17177
17178 2003-09-29  Paul Eggert  <eggert@twinsun.com>
17179
17180         * lib/strftime.c (tm_diff) [! HAVE_TM_GMTOFF]:
17181         Fix arg typo in previous patch.
17182
17183 2003-09-28  Jim Meyering  <jim@meyering.net>
17184
17185         * lib/error.c: Correct cpp indentation.
17186
17187 2003-09-27  Paul Eggert  <eggert@twinsun.com>
17188
17189         * modules/free: New file.
17190
17191 2003-09-27  Paul Eggert  <eggert@twinsun.com>
17192
17193         * m4/free.m4: New file.
17194
17195 2003-09-27  Paul Eggert  <eggert@twinsun.com>
17196
17197         * lib/minmax.h (MIN, MAX)
17198         [__STDC__ && defined __GNUC__ && __GNUC__ >= 2]:
17199         Omit the special code that used __typeof__, since we worry that
17200         it could be more trouble than it's worth.  See:
17201         http://mail.gnu.org/archive/html/bug-gnulib/2003-01/msg00090.html
17202         http://mail.gnu.org/archive/html/bug-gnulib/2003-01/msg00095.html
17203
17204         * lib/free.c: New file.
17205
17206 2003-09-27  Oskar Liljeblad  <oskar@osk.mine.nu>
17207
17208         Trivial fixes to Makefile.am parts of module listings.
17209         * modules/strstr: Append strstr.h to lib_SOURCES.
17210         * modules/strcase: Likewise, for strcase.h.
17211
17212 2003-09-27  Karl Berry  <karl@gnu.org>
17213
17214         * config/mkinstalldirs: update from automake.
17215
17216 2003-09-26  Paul Eggert  <eggert@twinsun.com>
17217
17218         * lib/error.c (SIZE_MAX) [!defined SIZE_MAX]: Define.
17219         (error_tail): Do not loop, reallocating temporary buffer, since
17220         the output cannot contain more wide characters than the input
17221         contains bytes, the size must be big enough already.  This avoids
17222         one potential size overflow calculation.  Check for size overflow
17223         when calculating temporary buffer size.  Free temporary buffer
17224         when done, if it was allocated with malloc; this plugs a memory
17225         leak.  Remove casts from void * to pointers, that are no longer
17226         needed now that we're assuming C89 or better.
17227
17228         Merge error changes from glibc.
17229
17230         * lib/error.c, error.h: Update copyright notice header to match glibc.
17231         * lib/error.c [defined _LIBC]: Include <errno.h>, <bits/libc-lock.h>.
17232         (error, error_at_line) [defined _LIBC && defined __libc_ptf_call]:
17233         Disable cancellation while printing error.
17234         * lib/error.h: Prepend __ to parameter names.
17235
17236 2003-09-26  Jim Meyering  <jim@meyering.net>
17237
17238         * lib/error.c (error_tail): Move some declarations
17239         into inner scope where the local variables are used.
17240
17241 2003-09-26  Bruno Haible  <bruno@clisp.org>
17242
17243         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Add comments about the AIX
17244         stpncpy().
17245         Don't define stpncpy through config.h; it's now done through stpncpy.h.
17246
17247 2003-09-26  Bruno Haible  <bruno@clisp.org>
17248
17249         * lib/stpncpy.h (gnu_stpncpy): New declaration.
17250         (stpncpy): Define as alias for gnu_stpncpy.
17251         * lib/stpncpy.c [!_LIBC]: Define gnu_stpncpy, not stpncpy.
17252
17253 2003-09-25  Simon Josefsson  <jas@extundo.com>
17254
17255         * lib/xgetdomainname.h: New file.
17256         * lib/xgetdomainname.c: New file.
17257
17258 2003-09-25  Simon Josefsson  <jas@extundo.com>
17259             Bruno Haible  <bruno@clisp.org>
17260
17261         * modules/getdomainname: New file.
17262         * modules/xgetdomainname: New file.
17263         * MODULES.html.sh (func_all_modules): Add getdomainname,
17264         xgetdomainname.
17265
17266 2003-09-25  Simon Josefsson  <jas@extundo.com>
17267             Bruno Haible  <bruno@clisp.org>
17268
17269         * m4/getdomainname.m4: New file.
17270
17271 2003-09-25  Simon Josefsson  <jas@extundo.com>
17272             Bruno Haible  <bruno@clisp.org>
17273
17274         * lib/getdomainname.h: New file.
17275         * lib/getdomainname.c: New file.
17276
17277 2003-09-25  Karl Berry  <karl@gnu.org>
17278
17279         * lib/argp-fmtstream.c, argp-help.c: update from libc.
17280
17281 2003-09-25  Karl Berry  <karl@gnu.org>
17282
17283         * config/install-sh: update from automake.
17284
17285 2003-09-25  Bruno Haible  <bruno@clisp.org>
17286
17287         * modules/version-etc-2: New file, from modules/version-etc with
17288         modifications.
17289         * MODULES.html.sh (func_all_modules): Add version-etc-2.
17290
17291 2003-09-25  Bruno Haible  <bruno@clisp.org>
17292
17293         * lib/version-etc-2.h: New file, from version-etc.h with modifications.
17294         * lib/version-etc-2.c: New file, from version-etc.c with modifications.
17295
17296 2003-09-24  Simon Josefsson  <jas@extundo.com>
17297
17298         * modules/xgethostname: Add xgethostname.h.
17299
17300 2003-09-24  Paul Eggert  <eggert@twinsun.com>
17301
17302         * lib/linebuffer.c (freebuffer): Don't free the argument, just
17303         the buffer associated with the argument.  Bug reported by
17304         Simon Josefsson.
17305
17306 2003-09-24  Paul Eggert  <eggert@twinsun.com>
17307
17308         * README: Document assumptions that 'int' is at least 32 bits
17309         wide, that integer arithmetic is 2's complement without overflow,
17310         that there are no holes in integer values, that adding sizes of
17311         two nonoverlapping objects can't overflow, and that all-bits-zero
17312         yields scalar zero.  Fix spelling and capitalization typos.
17313
17314 2003-09-19  Karl Berry  <karl@gnu.org>
17315
17316         * lib/argp.h: update from libc.
17317
17318 2003-09-17  Paul Eggert  <eggert@twinsun.com>
17319
17320         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Call AC_BEFORE first,
17321         to avoid spurious warnings like "AC_RUN_IFELSE was called before
17322         gl_USE_SYSTEM_EXTENSIONS" from autoreconf.
17323
17324 2003-09-17  Paul Eggert  <eggert@twinsun.com>
17325
17326         * gnulib-tool: Use "test -h", not "test -L", for portability
17327         to Solaris 8 /bin/sh.  (This bug is fixed in Solaris 9.)
17328         (tags_regexp): Remove, since \| doesn't conform to POSIX.
17329         (sed_extract_prog): Issue s commands one-by-one, rather than
17330         using \| in one s command.
17331
17332 2003-09-16  Paul Eggert  <eggert@twinsun.com>
17333
17334         * lib/linebuffer.c (readlinebuffer): Return NULL immediately upon
17335         input error, instead of returning NULL the next time we are called
17336         (and therefore losing track of errno).
17337
17338 2003-09-16  Bruno Haible  <bruno@clisp.org>
17339
17340         * gnulib-tool (func_create_testdir): Warn about duplicated
17341         dependencies.
17342
17343 2003-09-15  Paul Eggert  <eggert@twinsun.com>
17344
17345         * modules/argmatch, modules/fatal, modules/obstack,
17346         modules/xalloc, modules/xgethostname: Sort dependencies by
17347         importance, not alphabetically.
17348
17349 2003-09-15  Paul Eggert  <eggert@twinsun.com>
17350
17351         * lib/getndelim2.c (getndelim2): Don't trash errno when a read
17352         fails, so that the caller gets the proper errno.
17353
17354         * lib/readutmp.c (read_utmp): Likewise.
17355         Check for fstat error.  Close stream and free storage
17356         when failing.
17357
17358 2003-09-14  Karl Berry  <karl@gnu.org>
17359
17360         * config/srclist.txt (strdup.c): disable for c89 changes.
17361
17362 2003-09-14  Jim Meyering  <jim@meyering.net>
17363
17364         * lib/getloadavg.c: Correct cpp indentation.
17365         * lib/strdup.c: Likewise.
17366         * lib/vasnprintf.c: Likewise.
17367
17368 2003-09-14  Bruno Haible  <bruno@clisp.org>
17369
17370         * modules/fwriteerror: New file.
17371         * MODULES.html.sh (func_all_modules): Add fwriteerror.
17372
17373 2003-09-14  Bruno Haible  <bruno@clisp.org>
17374
17375         * lib/fwriteerror.h: New file.
17376         * lib/fwriteerror.c: New file.
17377
17378 2003-09-12  Paul Eggert  <eggert@twinsun.com>
17379
17380         * modules/argmatch, modules/exitfail, modules/fatal, modules/obstack,
17381         modules/xgethostname, modules/xalloc: Depend on exit.
17382
17383 2003-09-12  Paul Eggert  <eggert@twinsun.com>
17384
17385         * m4/error.m4: Require AC_FUNC_STRERROR_R rather than invoking it.
17386
17387         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Require AC_AIX
17388         and AC_MINIX, too, so that their extensions are available.
17389
17390         * m4/prereq.m4 (jm_PREREQ_ADDEXT): Remove.  All uses removed.
17391         This macro has been superseded by gl_BACKUPFILE.
17392
17393         More patches to assume C89 or better.
17394
17395         * m4/error.m4 (gl_ERROR): Don't check for vprintf.
17396
17397         * m4/check-decl.m4 (jm_CHECK_DECLS): Include <string.h>, <stdlib.h>
17398         unconditionally.
17399         * m4/closeout.m4 (gl_CLOSEOUT): Don't check for stdlib.h.
17400         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER):
17401         Include <string.h>, <stdlib.h> unconditionally.
17402         * m4/lstat.m4 (gl_PREREQ_LSTAT): Don't check for stdlib.h, free.
17403         * m4/readdir.m4 (GL_FUNC_READDIR): Don't check for string.h.
17404         * m4/readutmp.m4 (gl_PREREQ_READUTMP): Don't check for standard C
17405         headers or for string.h.
17406         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Don't check for stdlib.h
17407         or strtoul.
17408
17409         * m4/mkstemp.m4 (jm_PREREQ_TEMPNAME): Do not require standard C
17410         headers.
17411         * m4/strdup.m4 (gl_PREREQ_STRDUP): Likewise.
17412         * m4/userspec.m4 (gl_USERSPEC): Likewise.
17413         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Likewise.
17414         * m4/xstrtod.m4 (gl_XSTRTOD): Likewise.
17415         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
17416         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't check for limits.h,
17417         memcpy, memset.
17418         (jm_FUNC_GNU_STRFTIME): Don't require standard C headers.
17419         * m4/strtod.m4 (gl_FUNC_STRTOD): Do not check for float.h.
17420         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Do not check for stdlib.h,
17421         strtol.
17422         * m4/strtol.m4 (gl_FUNC_STRTOL): Do not check for limits.h.
17423         * m4/userspec.m4 (gl_USERSPEC): Do not check for string.h.
17424         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Do not check for string.h, strtol,
17425         strtoul.
17426
17427 2003-09-12  Paul Eggert  <eggert@twinsun.com>
17428
17429         * lib/argmatch.c, fatal.c, xgethostname.c, xmalloc.c: Include exit.h.
17430         * lib/obstack.c [!defined _LIBC]: Likewise.
17431         * lib/argmatch.c (EXIT_FAILURE): Remove; now done by exit.h
17432         * lib/exitfail.c, fatal.c, xgethostname.c, xmalloc.c: Likewise.
17433         * lib/exitfail.c: Don't include stdlib.h; no longer needed.
17434
17435         More changes to assume C89 or better.
17436
17437         * lib/error.c (error_tail): Assume vprintf.
17438
17439         * lib/argmatch.c (getenv): Remove decl.
17440         * lib/progreloc.c (get_full_program_name): Define via prototype.
17441         * lib/setenv.c (clearenv): Likewise.
17442         * lib/stpncpy.c: Do not include <string.h> or <sys/types.h>; not
17443         needed.
17444         * lib/strdup.c: Include <stdlib.h>, <string.h> unconditionally.
17445         (malloc, memcpy): Remove decls.
17446         * lib/strftime.c (HAVE_LIMITS_H, STDC_HEADERS) [defined _LIBC]: Remove.
17447         (HAVE_MEMCPY) [defined emacs && !defined HAVE_BCOPY]: Remove.
17448         Include <limits.h>, <stddef.h>, <stdlib.h>, <string.h> unconditionally.
17449         (memcpy): Remove macro.
17450         (MEMCPY) [!defined COMPILE_WIDE]: Define to memcpy unconditionally.
17451         (__P): Remove.  All uses removed.
17452         (PTR): Remove.  All uses changed to void *.
17453         (CHAR_BIT, NULL): Remove.
17454         (spaces, zeros, memset_space, memset_zero)
17455         [!defined memset && !defined HAVE_MEMSET && !defined _LIBC]:
17456         Remove.
17457         (LOCALE_PARAM, LOCALE_PARAM_DECL): Remove.
17458         (memcpy_lowcase, memcpy_uppcase, tm_diff, iso_week_days):
17459         Define with prototype.
17460         Remove now-unnecessary prototype decl.
17461         (extra_args_spec): Assume ANSI C.  All uses changed.
17462         (extra_args_spec_iso): Remove.
17463         (my_strftime, emacs_strftimeu): Define via prototype.
17464         * lib/strtod.c: Include <float.h>, <stdlib.h>, <string.h>
17465         unconditionally.
17466         (DBL_MAX, DBL_MIN, HUGE_VAL, NULL): Remove decls.
17467         * lib/strtoimax.c: Include <stdlib.h> unconditionally.
17468         (strtoul, strtol): Remove decls.
17469         * lib/strtol.c (STDC_HEADERS, HAVE_LIMITS_H, NULL, ULONG_MAX,
17470         LONG_MAX): Remove.
17471         Include <limits.h>, <stddef.h>, <stdlib.h>, <string.h> unconditionally.
17472         (LOCALE_PARAM_DECL): Remove.  All uses changed to LOCALE_PARAM_PROTO.
17473         (LOCALE_PARAM_PROTO): New macro.
17474         (INTERNAL, INTERNAL1, WEAKNAME): Assume ANSI C, not K&R.
17475         (INTERNAL (strtol), strtol): Define with a prototype.
17476         (PARAMS): Remove.  All uses removed.
17477         * lib/tempname.c: Include <string.h> unconditionally.
17478         * lib/userspec.c: Include <stdlib.h>, <string.h> unconditionally.
17479         * lib/xgethostname.c (main): Define with a prototype.
17480         * lib/xmalloc.c: Include "xalloc.h" first, to check interface.
17481         Include <stdlib.h> unconditionally.
17482         (calloc, malloc, realloc, free): Remove decls.
17483         * lib/xstrtod.c: Include "xstrtod.h" first, to check interface.
17484         Include <stdlib.h> unconditionally.  Sort include file names.
17485         (strtod): Remove.
17486         (xstrtod): Define with a prototype.
17487         * lib/xstrtol.c: Include <stdlib.h>, <string.h> unconditionally.
17488         (strtol, strtoul): Remove decls.
17489
17490 2003-09-11  Paul Eggert  <eggert@twinsun.com>
17491
17492         More patches to assume C89 or better.
17493         * m4/strndup.m4 (gl_PREREQ_STRNDUP): Remove STDC_HEADERS check.
17494         * m4/strnlen.m4 (gl_PREREQ_STRNLEN): Don't check for memory.h,
17495         string.h, memchr, STDC_HEADERS.
17496
17497 2003-09-11  Paul Eggert  <eggert@twinsun.com>
17498
17499         * lib/strndup.c: Don't include <stdio.h>, <sys/types.h>.
17500         Include <stdlib.h>, <string.h> unconditionally.
17501         Remove now-unnecessary cast to char *.
17502         * lib/strnlen.c: Include <string.h> unconditionally.
17503         * lib/yesno.c (yesno): Define with a prototype.
17504
17505 2003-09-11  Bruno Haible  <bruno@clisp.org>
17506
17507         * config/srclist.txt (setenv.c, unsetenv.c): Disable for the moment.
17508
17509 2003-09-10  Jim Meyering  <jim@meyering.net>
17510
17511         * lib/error.c: Correct indentation of cpp directives.
17512
17513 2003-09-10  Bruno Haible  <bruno@clisp.org>
17514
17515         * m4/strcspn.m4 (gl_PREREQ_STRCSPN): Remove <string.h> check.
17516         * m4/strpbrk.m4 (gl_PREREQ_STRPBRK): Remove <string.h> check.
17517         * m4/strstr.m4 (gl_PREREQ_STRSTR): Remove <string.h> check.
17518         * m4/unicodeio.m4 (gl_UNICODEIO): Remove <string.h> check.
17519         * m4/setenv.m4 (gl_PREREQ_SETENV, gl_PREREQ_UNSETENV): Remove
17520         <stdlib.h> and <string.h> checks.
17521         * m4/xreadlink.m4 (gl_XREADLINK): Remove <stdlib.h> check.
17522         * m4/yesno.m4 (gl_YESNO): Remove <stdlib.h> check.
17523
17524 2003-09-10  Bruno Haible  <bruno@clisp.org>
17525
17526         * lib/strcspn.c: Include <string.h> unconditionally.
17527         * lib/strpbrk.c: Include <string.h> unconditionally.
17528         * lib/strstr.c: Include <string.h> unconditionally.
17529         * lib/unicodeio.c: Include <string.h> unconditionally.
17530         * lib/setenv.c: Include <stdlib.h> and <string.h> unconditionally.
17531         * lib/unsetenv.c: Likewise.
17532         * lib/xreadlink.c: Include <stdlib.h> unconditionally.
17533         * lib/yesno.c: Include <stdlib.h> unconditionally.
17534         (rpmatch): Add prototype.
17535
17536 2003-09-09  Paul Eggert  <eggert@twinsun.com>
17537
17538         More patches to assume C89 or better.
17539         * m4/getcwd.m4 (AC_FUNC_GETCWD_NULL): Don't check for stdlib.h.
17540         * m4/getopt.m4 (gl_GETOPT): Don't check for string.h.
17541         * m4/getugroups.m4 (gl_GETUGROUPS): Do not check for standard C headers
17542         or for string.h.
17543         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Do not check for
17544         stdlib.h.
17545         * m4/group-member.m4 (gl_PREREQ_GROUP_MEMBER): Do not require standard
17546         C headers.
17547         * m4/hard-locale.m4 (gl_HARD_LOCALE): Do not check for stdlib.h,
17548         string.h.
17549         * m4/hash.m4 (gl_HASH): Do not check for stdlib.h, malloc, free.
17550         * m4/human.m4 (gl_HUMAN): Do not check for stdlib.h, string.h, getenv.
17551         * m4/idcache.m4 (gl_IDCACHE): Do not check for standard C headers,
17552         or for string.h.
17553         * m4/long-options.m4 (gl_LONG_OPTIONS): Do not check for stdlib.h.
17554         * m4/makepath.m4 (gl_MAKEPATH): Do not check for string.h or standard
17555         C headers.
17556         * m4/md5.m4 (gl_MD5): Don't check for limits.h, standard C headers,
17557         memcpy.
17558         * m4/sha.m4 (gl_SHA): Don't check for standard Cheaders, memcpy.
17559         * m4/memchr.m4 (jm_PREREQ_MEMCHR): Don't check for limits.h, stdlib.h.
17560         * m4/memcmp.m4 (gl_PREREQ_MEMCMP): Don't check for string.h.
17561         * m4/memcoll.m4 (gl_MEMCOLL): Likewise.
17562         * m4/memrchr.c (gl_PREREQ_MEMRCHR): Don't check for limits.h.
17563         * m4/mkdir-slash.m4 (gl_PREREQ_MKDIR): Don't check for stdlib.h,
17564         string.h, free.
17565         * m4/mktime.m4 (gl_PREREQ_MKTIME): Don't check for standard C headers.
17566         * m4/modechange.m4 (gl_MODECHANGE): Don't check for standard C headers.
17567         * m4/mountlist.m4 (gl_PREREQ_MOUNTLIST_EXTRA): Don't check for standard
17568         C headers, or for string.h.
17569         * m4/obstack.m4 (gl_OBSTACK): Don't check for stddefe.h, string.h.
17570         (gl_PREREQ_OBSTACK): Don't check for stdlib.h.
17571         * m4/path-concat.m4 (gl_PATH_CONCAT): Don't check for standard C
17572         headers, memory.h, stdlib.h, string.h, strings.h.
17573         * m4/posixtm.m4 (gl_POSIXTM): Don't check for stdlib.h, string.h.
17574         * m4/posixver.m4 (gl_POSIXVER): Don't check for getenv.
17575         * m4/putenv.m4 (gl_PREREQ_PUTENV): Don't check for string.h, memcpy,
17576         strchr.
17577         * m4/readtokens.m4 (gl_READTOKENS): Don't check for standard C
17578         headers, memory.h, string.h.
17579         * m4/regex.m4 (jm_PREREQ_REGEX): Do not check for limits.h, string.h.
17580         * m4/rename.m4 (gl_PREREQ_RENAME): Do not check for stdlib.h, string.h,
17581         free.
17582         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Don't check for standard C
17583         headers.
17584         * m4/same.m4 (gl_SAME): Don't check for stdlib.h, string.h, free.
17585         * m4/save-cwd.m4 (gl_SAVE_CWD): Don't check for standard C headers.
17586         * m4/savedir.m4 (gl_SAVEDIR): Don't check for standard C headers.
17587         * m4/strchrnul.m4 (gl_PREREQ_STRCHRNUL): Don't check for string.h.
17588         * m4/xgetcwd.m4 (gl_XGETCWD): Don't check for stdlib.h.
17589
17590 2003-09-09  Paul Eggert  <eggert@twinsun.com>
17591
17592         More K&R removal.
17593
17594         * lib/acosl.c (main): Use a prototype.
17595         * lib/asinl.c, cosl.c, expl.c, frexpl.c, ldexpl.c, sinl.c,
17596         tanl.c: Likewise.
17597
17598         * lib/getloadavg.c (getloadavg, main): Define via prototypes.
17599
17600         * lib/getopt.h (struct option.name): Assume C89, and use 'const'.
17601         (getopt, etopt_long, getopt_long_only, _getopt_internal)
17602         [defined __GNU_LIBRARY__]: Assume C89, so we can always declare
17603         with a prototype.
17604         * lib/getopt.c (const): Remove macro.
17605         Include <string.h> unconditionally.
17606         (my_index): Remove; all uses changed to strchr.
17607         (strlen): Remove decl.
17608         (exchange): Remove forward decl; no longer needed.
17609         (exchange, _getopt_initialize, _getopt_internal, getopt, main):
17610         Define with prototype.
17611         * lib/getopt1.c (const): Remove macro.
17612         (getopt_long, getopt_long_only, main): Define with prototype.
17613
17614         * lib/getugroups.c: Include <string.h> unconditionally.
17615
17616         * lib/getusershell.c: Include <stdlib.h> unconditionally.
17617         (getusershell, setusershell, endusershell, readname, main):
17618         Define with prototypes.
17619
17620         * lib/group-member.c: Include group-member.h first.
17621         Include <stdlib.h> unconditionally.
17622
17623         * lib/hard-locale.c: Include hard-locale.h first.
17624         Include <stdlib.h>, <string.h> unconditionally.
17625
17626         * lib/hash.c (free, malloc): Remove decls.
17627         Include <stdlib.h> unconditionally.
17628
17629         * lib/human.c: Include <stdlib.h>, <string.h> unconditionally.
17630         (getenv): Do not declare.
17631
17632         * lib/idcache.c: Include <string.h> unconditionally.
17633
17634         * lib/long-options.c: Include long-options.h first, to test interface.
17635         Include <stdlib.h> unconditionally.
17636
17637         * lib/makepath.c: Include makepath.h first, to test interface.
17638         Include <stdlib.h> and <string.h> unconditionally.
17639
17640         * lib/linebuffer.c: Include <stdlib.h>.
17641         (free): Remove decl.
17642
17643         * lib/malloc.c: Include <stdlib.h>, for malloc; don't bother with
17644         stddef.h. rpl_malloc returns void *, not char *.
17645         * lib/realloc.c (rpl_realloc): Likewise.  Also, define with a
17646         prototype.
17647
17648         * lib/md5.h: Include <limits.h> unconditionally.
17649         (UINT_MAX_32_BITS): Don't worry about non-__STDC__ case.
17650         (__P): Remove; all uses removed.
17651         * lib/md5.c: Include "md5.h" first.
17652         (md5_init_ctx, md5_read_ctx, md5_finish_ctx, md5_stream,
17653         md5_buffer, md5_process_bytes, md5_process_block):
17654         Define with prototypes.
17655         * lib/sha.h (__P): Remove all uses.  (It wasn't defined??)
17656         * lib/sha.c: Include "sha.h" first.
17657         Include <stdlib.h>, <string.h> unconditionally.
17658
17659         * lib/memchr.c (__ptr_t): Remove; all uses changed to void *.
17660         * lib/memcmp.c (__ptr_t): Likewise.
17661         * lib/memrchr.c (__ptr_t): Likewise.
17662         * lib/memchr.c, memcmp.c, memcoll.c, memrchr.c:
17663         Include <string.h> unconditionally.
17664         * lib/memchr.c, memrchr.c: Include <limits.h> unconditionally.
17665         * lib/memchr.c: Include <stdlib.h> unconditionally.
17666         * lib/memchr.c (LONG_MAX): Remove.
17667         * lib/memrchr.c (LONG_MAX): Likewise.
17668         * lib/memchr.c (__memchr): Define via a prototype.
17669         * lib/memrchr.c (__memrchr): Likewise.
17670         * lib/memcmp.c (__P): Remove, and remove all uses.
17671         (memcmp_bytes, memcmp_common_alignment, memcmp_not_common_alignment):
17672         Remove forward decls; no longer needed.
17673         * lib/memcpy.c, memmove.c, memset.c: Include <stddef.h>.
17674         Use types required by C89 in prototype.
17675
17676         * lib/mkdir.c: Include <stdlib.h>, <string.h> unconditionally.
17677         * lib/savedir.c: Likewise.
17678         * lib/mkdir.c (free): Remove decl.
17679         * lib/rmdir.c (rmdir): Define with a prototype.
17680         * lib/savedir.c: Include savedir.h first, to test interface.
17681
17682         * lib/mktime.c (STDC_HEADERS): Remove.
17683         Include <stdlib.h>, <string.h> unconditionally.
17684
17685         * lib/modechange.c: Include <stdlib.h> unconditionally.
17686         (malloc): Remove decl.
17687
17688         * lib/mountlist.c: Include <stdlib.h>, <string.h> unconditionally.
17689         (free): Remove decl.
17690
17691         * lib/obstack.h (PTR_INT_TYPE) [!defined __PTRDIFF_TYPE__]:
17692         Define to ptrdiff_t, without bothering to check HAVE_STDDEF_H.
17693         (This type really should be intptr_t, but that's a C99ism.)
17694         (_obstack_memcpy): Remove: all uses changed to memcpy.
17695         Include <string.h> unconditionally.
17696         (struct obstack): Assume __STDC__ for types of members
17697         chunkfun, freefun, extra_arg.
17698         (_obstack_newchunk, _obstack_free, _obstack_begin, _obstack_begin_1,
17699         _obstack_memory_used, obstack_alloc_failed_handler, obstack_init,
17700         obstack_begin, obstack_specify_allocation,
17701         obstack_specify_allocation_with_arg, obstack_chunkfun,
17702         obstack_freefun, obstack_free) [! (defined __STDC__ && __STDC__)]:
17703         Remove unprototyped decls and the macros that use them.
17704         * lib/obstack.c (POINTER): Remove.  All uses changed to void *.
17705         (obstack_alloc_failed_handler, CALL_CHUNKFUN, CALL_FREEFUN,
17706         _obstack_begin, _obstack_begin_1, _obstack_allocated_p)
17707         (defined __STDC__ && __STDC__)]:
17708         Remove nonprototyped code.
17709         Include <stdlib.h> unconditionally.
17710         (_obstack_begin, _obstack_begin_1, _obstack_newchunk,
17711         _obstack_allocated_p, _obstack_free, obstack_free,
17712         _obstack_memory_used, print_and_abort):
17713         Define using prototypes.
17714         (obstack_1grow, obstack_1grow_fast, obstack_alloc, obstack_base,
17715         obstack_blank, obstack_blank_fast, obstack_copy, obstack_copy0,
17716         obstack_finish, obstack_grow, obstack_grow0, obstack_make_room,
17717         obstack_next_free, obstack_object_size, obstack_room) [0]:
17718         Remove unused, unprototyped code.
17719
17720         * lib/path-concat.c: Include <stdlib.h>, <string.h> unconditionally.
17721
17722         * lib/physmem.c (physmem_total, physmem_available, main): Define
17723         with prototypes.
17724
17725         * lib/posixtm.c: Include <stdlib.h>, <string.h> unconditionally.
17726         (main): Define with a prototype.
17727
17728         * lib/posixver.c (getenv): Remove decl.
17729
17730         * lib/putenv.c (malloc): Returns void *, not char *.
17731         Include <string.h> unconditionally.
17732         (strchr, memcpy, NULL): Do not define.
17733
17734         * lib/readtokens.c: Include readtokens.h first, to test interface.
17735         Include <stdlib.h>, <string.h> unconditionally.
17736         (init_tokenbuffer): Define with a prototype.
17737
17738         * lib/regex.c (PARAMS): Remove.  All uses removed.
17739         All uses of _RE_ARGS removed, too.
17740         Include <stddef.h>, <stdlib.h>, <string.h>, <limits.h>
17741         unconditionally.
17742         (bzero): Assume memset exists.
17743         (memcmp, memcpy, NULL): Remove.
17744         (SIGN_EXTEND_CHAR): Remove; all uses replaced by casts to signed
17745         char, or assignments to local vars of type signed char.
17746         (init_syntax_once, PREFIX(extract_number_and_incr),
17747         PREFIX(print_partial_compiled_pattern),
17748         PREFIX(print_compiled_pattern), PREFIX(print_double_string),
17749         convert_mbs_to_wcs, print_fastmap, re_set_syntax,
17750         PREFIX(regex_grow_registers), PREFIX(regex_compile),
17751         PREFIX(store_op1), PREFIX(store_op2), PREFIX(insert_op1),
17752         PREFIX(insert_op2), PREFIX(at_begline_loc_p),
17753         PREFIX(at_endline_loc_p), group_in_compile_stack, insert_space,
17754         wcs_compile_range, byte_compile_range, truncate_wchar,
17755         PREFIX(re_compile_fastmap), re_compile_fastmap, re_set_registers,
17756         re_search, re_search_2, PREFIX(re_search_2), re_match, re_match_2,
17757         count_mbs_length, wcs_re_match_2_internal,
17758         byte_re_match_2_internal, PREFIX(group_match_null_string_p),
17759         PREFIX(alt_match_null_string_p),
17760         PREFIX(common_op_match_null_string_p), PREFIX(bcmp_translate),
17761         re_compile_pattern, re_comp, re_exec, regcomp, regexec, regerror,
17762         regfree, PREFIX(extract_number)): Define with prototype.  Remove
17763         now-unnecessary declaration, if any.
17764         (byte_compile_range, PREFIX(regex_compile), re_comp, re_exec,
17765         regcomp, regexec):
17766         Remove now-unnecessary casts among pointer types.
17767         * lib/regex.h (_RE_ARGS): Remove.  All uses removed.
17768
17769         * lib/rename.c: Include <stdlib.h>, <string.h> unconditionally.
17770         (free): Remove decl.
17771
17772         * lib/rpmatch.c: Include <stdlib.h> unconditionally.
17773
17774         * lib/same.c: Include <stdlib.h>, <string.h> unconditionally.
17775         (free): Remove decl.
17776
17777         * lib/save-cwd.c: Include <stdlib.h> unconditionally.
17778         * lib/xgetcwd.c: Likewise.
17779
17780         * lib/stat.c: Include <stdlib.h>, <string.h> unconditionally.
17781         (free): Remove decl.
17782
17783         * lib/strchrnul.c (strchrnul): Define with a prototype.
17784         Fix bug: c_in was not converted to char before searching.
17785
17786         The following changes are not K&R related:
17787
17788         * lib/group-member.h: Include <sys/types.h>, so that this file is
17789         self-contained.
17790         * lib/makepath.h: Likewise.
17791
17792         * lib/getusershell.c (readname, default_index, line_size, readname):
17793         Use size_t, not int, for sizes.
17794         (readname): If the size overflows, report an error instead of
17795         looping forever.
17796
17797 2003-09-09  Paul Eggert  <eggert@twinsun.com>
17798
17799         * config/srclist.txt: Do not get getopt.h, getopt1.c, or regex.h from
17800         libc.
17801
17802 2003-09-09  Paul Eggert  <eggert@twinsun.com>
17803
17804         * README: New section: portability guidelines.
17805
17806 2003-09-09  Derek Robert Price  <derek@ximbiot.com>
17807
17808         * m4/getndelim2.m4 (gl_PREREQ_GETNDELIM2): Assume stdlib.h per the
17809         C89 spec.
17810
17811 2003-09-09  Derek Robert Price  <derek@ximbiot.com>
17812
17813         * lib/getndelim2.c: Assume stdlib.h per the C89 spec.
17814
17815 2003-09-08  Paul Eggert  <eggert@twinsun.com>
17816
17817         Assume C89 or better; remove K&R cruft.
17818         A few of these changes were first proposed by Derek Robert Price
17819         in <http://mail.gnu.org/archive/html/bug-gnulib/2003-07/msg00105.html>.
17820
17821         * lib/addext.c: Include <string.h> unconditionally.
17822         * lib/backupfile.c: Include <string.h>, <stdlib.h> unconditionally.
17823         Don't declare getenv or malloc.
17824
17825         * lib/alloca.c: Include <string.h>, <stdlib.h> unconditionally.
17826         (POINTER_TYPE, pointer): Remove; all uses changed to void *.
17827         (NULL): Remove.
17828         (find_stack_direction, alloca): Use prototypes.
17829
17830         * lib/atexit.c (atexit): Define using a prototype.
17831
17832         * lib/basename.c, dirname.c, stripslash.c:
17833         Include <string.h> unconditionally.
17834
17835         * lib/bcopy.c: Include <stddef.h>.
17836         (bcopy): Define with prototype, using 'const' and 'void' and 'size_t'.
17837
17838         * lib/canon-host.c: Include <stdlib.h>, <string.h> unconditionally.
17839
17840         * lib/error.h (error, error_at_line, error_print_progname)
17841         [! (defined (__STDC__) && __STDC__)]: Remove decls.
17842         * lib/error.c: Include error.h first, to check interface.
17843         Include <stdarg.h>, <stdlib.h>, <string.h> unconditionally.
17844         (VA_START): Remove; all uses changeed to va_start.
17845         (exit, strerror): Remove decls.
17846         (error_print_progname): Prototype uncondionally.
17847         Don't include <errno.h>; no longer needed.
17848         (private_strerror): Remove.
17849         (error_tail): Always define.
17850         (error, error_at_line): Assume C89 or better; always use prototypes.
17851         * lib/fatal.c: Include "fatal.h" first, to test interface.
17852         Include <stdarg.h>, <stdlib.h>, <string.h> unconditionally.
17853         (VA_START): Remove; all uses changed to va_start.
17854         [! (HAVE_VPRINTF || HAVE_DOPRNT || _LIBC)]: Remove support for
17855         this case.
17856         (exit): Remove decl.
17857         (fatal): Prototype unconditionally.  Assume va_start works.
17858         Abort at end, to pacify gcc.
17859
17860         * lib/euidaccess.c (main): Define with a prototype.
17861
17862         * lib/exclude.c: Include <stdlib.h>, <string.h> unconditionally.
17863
17864         * lib/exitfail.c: Include <stdlib.h> unconditionally.
17865
17866         * lib/fnmatch_.h (__P): Remove.  All uses changed to assume
17867         prototypes.
17868         * lib/fnmatch.c: Include fnmatch.h first, to test interface.
17869         Include <string.h>, <stddef.h>, <stdlib.h> unconditionally.
17870         (getenv): Remove decl.
17871         (fnmatch): Define using a prototype.
17872         * lib/fnmatch_loop.c (FCT): Remove forward decl; no longer needed.
17873         (FCT): Define using a prototype.
17874
17875         * lib/getdate.y: Include <stdlib.h>, <string.h> unconditionally.
17876
17877         * lib/gethostname.c: Include <stddef.h>.
17878         (gethostname): Define with prototype.  Length is size_t, not int.
17879
17880 2003-09-08  Paul Eggert  <eggert@twinsun.com>
17881
17882         Assume C89 or better; remove K&R cruft.
17883         * m4/alloca.m4 (gl_PREREQ_ALLOCA): Don't check for stdlib.h, string.h.
17884         * m4/backupfile.m4 (gl_BACKUPFILE): Don't check for stdlib.h,
17885         string.h, getenv, malloc.
17886         * m4/dirname.m4 (gl_DIRNAME): Don't check for string.h or C standard
17887         headers.
17888         * m4/canon-host.m4 (gl_CANON_HOST): Don't check for string.h, stdlib.h.
17889         * m4/error.m4 (jm_PREREQ_ERROR): Do not require STDC headers, and
17890         do not check for strerror.
17891         * m4/exclude.m4: Do not check for stdlib.h, string.h, strings.h.
17892         * m4/exitfail.m4 (gl_EXITFAIL): Do not check for stdlib.h.
17893         * m4/fatal.m4 (gl_FATAL): Do not require STDC headers, and
17894         do not check for doprnt or vprintf.
17895         * m4/fnmatch.m4 (gl_PREREQ_FNMATCH_EXTRA): Remove.  All uses removed.
17896         * m4/getdate.m4 (gl_GETDATE): Don't check for stdlib.h or string.h.
17897
17898 2003-09-08  Paul Eggert  <eggert@twinsun.com>
17899
17900         * lib/getversion.c: Remove; was migrated to backupfile.c in 1997.
17901         getversion.c should have been removed then, but was accidentally
17902         preserved.
17903
17904         * lib/utime.c [!HAVE_UTIMES_NULL]: Include <sys/stat.h>, <fcntl.h>.
17905         (utime_null): Fix typo: 'st' was sometimes called 'sb'.
17906
17907 2003-09-08  Karl Berry  <karl@gnu.org>
17908
17909         * config/config.sub, config.guess, srclistvars.sh: update from savannah
17910                 config, forget about prep.
17911
17912         * config/depcomp, missing: update from automake.
17913
17914 2003-09-07  Paul Eggert  <eggert@twinsun.com>
17915
17916         * modules/time_r: Depend on 'restrict'.  Fix from Simon Josefsson in
17917         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00028.html>.
17918
17919 2003-09-07  Paul Eggert  <eggert@twinsun.com>
17920
17921         * lib/time_r.c (gmtime_r, localtime_r): Fix silly typo: missing arg to
17922         copy_tm_result.  Bug reported by Simon Josefsson in
17923         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00028.html>.
17924
17925 2003-09-06  Paul Eggert  <eggert@twinsun.com>
17926
17927         * m4/time_r.m4: New file.
17928         * m4/mktime.m4 (gl_PREREQ_MKTIME): Remove check for limits.h.
17929         * m4/timegm.m4 (gl_FUNC_TIMEGM): Assume that timegm is buggy if mktime
17930         is. Check for timegm declaration.
17931         (gl_PREREQ_TIMEGM): Require gl_FUNC_MKTIME.
17932         Do not check for gmtime_r.
17933         Replace mktime if __mktime_internal does not exist and if mktime
17934         hasn't been replaced already.
17935
17936 2003-09-06  Paul Eggert  <eggert@twinsun.com>
17937
17938         * lib/time_r.c, lib/time_r.h: New files.
17939
17940         * lib/mktime.c (my_mktime_localtime_r): Remove; all uses changed to
17941         __localtime_r.
17942         (__localtime_r) [!defined _LIBC]: New macro.  Include <time_r.h>.
17943         (__mktime_internal) [!defined _LIBC]: Now extern, not static.
17944
17945         * lib/strftime.c (my_strftime_gmtime_r): Remove; all uses changed to
17946         __gmtime_r.
17947         (my_strftime_localtime_r): Remove; all uses changed to __localtime_r.
17948         (__gtime_r, __localtime_r) [!HAVE_TM_GMTOFF]: New macros.
17949         Include <time_r.h>.
17950
17951         * lib/timegm.c: Switch to glibc implementation, with the following
17952         changes:
17953         [defined HAVE_CONFIG_H]: Include <config.h>.
17954         [!defined _LIBC]: Include "timegm.h" rather than <time.h>.
17955         (__mktime_internal) [!defined _LIBC]: New decl.
17956         (__gmtime_r) [!defined _LIBC]: New macro and function.
17957         (timegm): Use a prototype, since gnulib assumes C89.
17958         Do not bother declaring tmp to be const, as it's not really usefu.
17959         * lib/timegm.h: Hoist "#include <time.h>" out of #ifdef.
17960         (timegm): Declare only if HAVE_DECL_TIMEGM.
17961
17962 2003-09-06  Paul Eggert  <eggert@twinsun.com>
17963
17964         * MODULES.html.sh (func_all_modules): Add time_r.
17965         * modules/time_r: New file.
17966         * modules/mktime, modules/strftime, modules/timegm: Depend on time_r.
17967         * modules/timegm: Depend on mktime.  Change maintainer to "all, glibc".
17968
17969 2003-09-03  Paul Eggert  <eggert@twinsun.com>
17970
17971         * lib/human.c (human_readable): Fix bug that rounded 10501 to 10k.
17972         Bug reported by Lute Kamstra in
17973         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00003.html>.
17974
17975         * lib/getdate.y (relative_time_table): Use tDAY_UNIT for "tomorrow",
17976         "yesterday", "today", and "now" rather than tMINUTE_UNIT.  Of
17977         course with correspondingly smaller numbers for tomorrow and
17978         yesterday.  From Tadayoshi Funaba.  Originally installed into
17979         sh-utils on 1999-08-07, but the patch got lost (I guess during the
17980         coreutils merge?).
17981
17982 2003-08-31  Simon Josefsson  <jas@extundo.com>
17983
17984         * modules/timegm: New file.
17985         * MODULES.html.sh (func_all_modules): Add timegm.
17986
17987 2003-08-31  Simon Josefsson  <jas@extundo.com>
17988
17989         * m4/timegm.m4: New file.
17990
17991 2003-08-31  Simon Josefsson  <jas@extundo.com>
17992
17993         * lib/timegm.h: New file.
17994         * lib/timegm.c: New file.  Based on
17995         wget-1.8.2/src/http.c:mktime_from_utc.
17996
17997 2003-08-31  Karl Berry  <karl@gnu.org>
17998
17999         * lib/argp.h: update from libc.
18000
18001 2003-08-28  Bruno Haible  <bruno@clisp.org>
18002
18003         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Remove AC_DEFINE of fnmatch here.
18004         This avoids havoc on compilers for which '#define fnmatch rpl_fnmatch'
18005         followed by '#define fnmatch fnmatch_posix' gives an error.
18006
18007 2003-08-28  Bruno Haible  <bruno@clisp.org>
18008
18009         * lib/binary-io.h: Undefine O_BINARY before defining it. This avoids a
18010         warning on QNX, which defines O_BINARY to 000000.
18011
18012 2003-08-27  Jim Meyering  <jim@meyering.net>
18013
18014         * m4/mkstemp.m4: Require that the system mkstemp be able to create
18015         70 temporary files, not just 30.  Tru64 V4.0F's mkstemp function
18016         would fail after 32.  Reported by Danny Levinson.  Details here:
18017         http://mail.gnu.org/archive/html/bug-coreutils/2003-08/msg00124.html
18018
18019 2003-08-24  Bruno Haible  <bruno@clisp.org>
18020
18021         * lib/binary-io.h: Include <stdio.h>, to avoid a compilation error when
18022         MSVC7 <stdio.h> is included later.
18023
18024 2003-08-22  Simon Josefsson  <jas@extundo.com>
18025
18026         * modules/strndup (Makefile.am): Add strndup.h to lib_SOURCES.
18027
18028 2003-08-20  Karl Berry  <karl@gnu.org>
18029
18030         * m4/lib-ld.m4: serial 1003 from gettext, no changes besides serial.
18031
18032 2003-08-20  Bruno Haible  <bruno@clisp.org>
18033
18034         * modules/progname: New file.
18035         * MODULES.html.sh (func_all_modules): Add progname.
18036
18037 2003-08-20  Bruno Haible  <bruno@clisp.org>
18038
18039         * lib/progname.h: New file, from GNU gettext.
18040         * lib/progname.c: New file, from GNU gettext.
18041         * lib/progreloc.c: New file, from GNU gettext.
18042
18043 2003-08-19  Jim Meyering  <jim@meyering.net>
18044
18045         * m4/lib-ld.m4: Revert yesterday's change, per Bruno's request here:
18046         http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00155.html
18047
18048 2003-08-19  Bruno Haible  <bruno@clisp.org>
18049
18050         * m4/xalloc.m4 (gl_PREREQ_XSTRDUP): Don't check for <string.h> any
18051         more.
18052
18053 2003-08-19  Bruno Haible  <bruno@clisp.org>
18054
18055         * lib/xstrdup.c: Assume <string.h> exists.
18056
18057 2003-08-18  Paul Eggert  <eggert@twinsun.com>
18058
18059         * modules/stdbool: Add BUILT_SOURCES.  Prefer $@ to target name
18060         in makefile rules.
18061
18062 2003-08-18  Jim Meyering  <jim@meyering.net>
18063
18064         * m4/getloadavg.m4: Use [\t ], not [ \t] (where \t is a literal TAB).
18065         * m4/lib-ld.m4: Likewise.
18066
18067 2003-08-18  Jim Meyering  <jim@meyering.net>
18068
18069         * lib/setenv.h: Indent nested cpp directive.
18070         * lib/vasnprintf.c: Remove trailing blanks.
18071
18072 2003-08-17  Simon Josefsson  <jas@extundo.com>
18073
18074         * modules/xstrndup: New file.
18075         * MODULES.html.sh (func_all_modules): Add xstrndup.
18076
18077 2003-08-17  Simon Josefsson  <jas@extundo.com>
18078
18079         * modules/argp: Fix autoconf macro name. Add more dependencies.
18080
18081 2003-08-17  Simon Josefsson  <jas@extundo.com>
18082
18083         * m4/xstrndup.m4: New file.
18084
18085 2003-08-17  Simon Josefsson  <jas@extundo.com>
18086
18087         * m4/argp.m4: New file.
18088
18089 2003-08-17  Simon Josefsson  <jas@extundo.com>
18090             Bruno Haible  <bruno@clisp.org>
18091
18092         * lib/xstrndup.h: New file.
18093         * lib/xstrndup.c: New file.
18094
18095 2003-08-17  Bruno Haible  <bruno@clisp.org>
18096
18097         * modules/strndup (Files, Include): Add lib/strndup.h.
18098
18099 2003-08-17  Bruno Haible  <bruno@clisp.org>
18100
18101         * modules/euidaccess (Files): Add lib/euidaccess.h.
18102
18103 2003-08-17  Bruno Haible  <bruno@clisp.org>
18104
18105         * lib/strndup.h: New file.
18106
18107 2003-08-17  Bruno Haible  <bruno@clisp.org>
18108
18109         * gnulib-tool (func_create_testdir): Handle gl_USE_SYSTEM_EXTENSIONS
18110         like AC_GNU_SOURCE.
18111         * modules/extensions (configure.ac): Comment out the invocation of
18112         gl_USE_SYSTEM_EXTENSIONS.
18113
18114 2003-08-16  Paul Eggert  <eggert@twinsun.com>
18115
18116         Merges from coreutils, etc.
18117         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Insert ':' to prevent a syntax
18118         error in gl_FUNC_MATCH.  This fixes a bug I introduced on 2003-05-28.
18119         * m4/readlink.m4 (gl_PREREQ_READLINK): Renamed from gl_PREREQ_READLINE,
18120         fixing a typo.
18121         * m4/host-os.m4 (UTILS_HOST_OS): Add GNU/NetBSD, GNU/FreeBSD.
18122         * m4/hash.m4 (gl_HASH): Use AM_STDBOOL_H, not AC_HEADER_STDBOOL.
18123
18124 2003-08-16  Paul Eggert  <eggert@twinsun.com>
18125
18126         Document merge from coreutils.
18127         * modules/alloca: Append $(ALLOCA_H) to BUILT_SOURCES.
18128         * modules/fnmatch: Append $(FNMATCH_H) to BUILT_SOURCES.
18129         * modules/utime: Add m4/utimes-null.m4.
18130
18131 2003-08-16  Paul Eggert  <eggert@twinsun.com>
18132
18133         * lib/regex.h, strdup.c, strtoll.c, strtoul.c: Do not normalize white
18134         space, undoing this 2003-08-12 change:
18135         <http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00080.html>
18136
18137 2003-08-16  Paul Eggert  <eggert@twinsun.com>
18138
18139         * config/srclist.txt: Get regex.h, strdup.c, strtoll.c,
18140         strtoul.c from libc, undoing this 2003-08-12 change:
18141         <http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00080.html>
18142
18143 2003-08-16  Jim Meyering  <jim@meyering.net>
18144
18145         Merges from coreutils.
18146         * m4/readdir.m4 (GL_FUNC_READDIR): Change name to have GL_ (not jm_)
18147         prefix.  Adjust cache variables similarly.  Create 500 rather than
18148         just 300 files, to exercise bug on Darwin6.5, too.
18149         * m4/perl.m4 (jm_PERL): Use $am_missing_run, not undefined
18150         $missing_dir.
18151         * m4/jm-winsz1.m4: Require AC_SYS_POSIX_TERMIOS, not
18152         AM_SYS_POSIX_TERMIOS.
18153         Reported by mkc@mathdogs.com.
18154         Also change use of $am_cv_sys_posix_termios
18155         to $ac_cv_sys_posix_termios.  Reported by Andreas Schwab.
18156         * m4/getgroups.m4 (jm_FUNC_GETGROUPS): Rewrite to use AC_FUNC_GETGROUPS
18157         and (if needed) to call AC_LIBOBJ and to set GETGROUPS_LIB.
18158         * m4/fsusage.m4 [__GLIBC__]: GNU libc's statvfs stats each mount point
18159         in /proc/mounts until it finds one with matching device number.  This
18160         is unnecessary when the FILE argument *is* a mount point.  No stat call
18161         is necessary in that case.  So, disable the statvfs-testing code on
18162         systems with GNU libc.  Reported by Andrei Gaponenko via Tim Waugh
18163         as RedHat bug# 84846.
18164         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size
18165         to 1MB, so as not to render systems with no stack size limit (e.g.,
18166         linux-2.2.x) unusable.  Suggestion and code from Bruno Haible.
18167         Include <unistd.h>.  On some systems,
18168         it is required for the definition of _SC_PAGESIZE.
18169
18170 2003-08-16  Jim Meyering  <jim@meyering.net>
18171
18172         Merge from coreutils.
18173         * lib/xstrtoimax.c: #else #if -> #elif.
18174         * lib/xstrtoumax.c: Likewise.
18175
18176 2003-08-16  Jim Meyering  <jim@meyering.net>
18177
18178         * m4/utimes.m4 (gl_FUNC_UTIMES): New file.
18179         * m4/utimes.m4: Removed.
18180         * m4/utimes-null.m4: Renamed from utimes.m4.
18181
18182         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size
18183         to 1MB, so as not to render systems with no stack size limit (e.g.,
18184         linux-2.2.x) unusable.  Suggestion and code from Bruno Haible.
18185         Include <unistd.h>.  On some systems,
18186         it is required for the definition of _SC_PAGESIZE.
18187
18188 2003-08-16  Jim Meyering  <jim@meyering.net>
18189         and Paul Eggert  <eggert@cs.ucla.edu>
18190
18191         Merges from coreutils, etc.
18192
18193         * m4/jm-macros.m4 (AC_LANG_SOURCE(C)): New macro, undefine, then define
18194         using the latest version from cvs.  This avoids problems with #line
18195         directives using a vendor (Sun) compiler.
18196         (jm_MACROS): Bump prerequisite from 2.52g to 2.57.
18197         Don't set GETGROUPS_LIB here; now it's
18198         done via getgroups.m4's wrapper function.
18199         AC_SUBST OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, and MAN here,
18200         rather than just in sh-util/configure.in, so that the
18201         now-shared-by-fileutils-and-textutils lib/Makefile.am are all the
18202         same.
18203         Use AC_CONFIG_LIBOBJ_DIR(lib) to tell the new
18204         AC_FUNC_GETLOADAVG where to find getloadavg.c.
18205         Require AC_FUNC_FTW, gt_INTTYPES_PRI, gl_CLOCK_TIME,
18206         UTILS_SYS_OPEN_MAX, GL_FUNC_GETCWD_PATH_MAX, GL_FUNC_READDIR,
18207         gl_FSUSAGE, gl_MOUNTLIST, AC_FUNC_CANONICALIZE_FILE_NAME.
18208         Remove code that is now done by the newly-required macros.
18209         Append $(EXEEXT) to DF_PROG.
18210         AC_LIBOBJ fchdir-stub if fchdir doesn't exist; similarly for fchown.
18211         Do not invoke or require the following here,
18212         since prereq.m4 or some gnulib .m4 now does this for us:
18213         gl_REGEX, UTILS_FUNC_MKDIR_TRAILING_SLASH, jm_BISON, gl_FUNC_MKTIME,
18214         jm_FUNC_LSTAT, jm_FUNC_STAT, jm_FUNC_REALLOC, jm_FUNC_MALLOC,
18215         jm_FUNC_NANOSLEEP, jm_FUNC_READDIR, jm_FUNC_MEMCMP,
18216         jm_FUNC_GLIBC_UNLOCKED_IO, AC_FUNC_FNMATCH_GNU, jm_FUNC_PUTENV,
18217         jm_AC_PREREQ_XSTRTOUMAX, jm_AC_PREREQ_XSTRTOIMAX,
18218         AC_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, AC_FUNC_VPRINTF,
18219         vb_FUNC_RENAME, UTILS_FUNC_MKSTEP, jm_FUNC_UTIME, AM_FUNC_GETLINE,
18220         AC_FUNC_OBSTACK.
18221         Do not replace the following functions, as this is now the job
18222         of some gnulib .m4: strcasecmp, strncasecmp, dup2, gethostname,
18223         getusershell, sig2str, strcspn, stpcpy, strstr, strtol, strtoul
18224         strpbrk, euidaccess, memcmp, rmdir, rpmatch, strndup, strverscmp,
18225         atexit getpass, strdup, getpagesize.
18226         Replace 'raise'.
18227         Do not check for the following functions, as this is now the job
18228         of some gnulib .m4: bcopy, canonicalize_file_name, fchdir, ftime,
18229         getcwd, getmntinfo, resolvepath.  But check for sysctl, setreuid,
18230         setregid.
18231         (jm_CHECK_ALL_HEADERS): Do not check for fenv.h.
18232         Check for sys/sysctl.h.
18233         (jm_CHECK_ALL_TYPES): Do not require AC_STRUCT_TM, AC_STRUCT_TIMEZONE,
18234         jm_CHECK_TYPE_STRUCT_TIMESPEC.  Invoke gt_TYPE_SSIZE_T instead
18235         of checking for ssize_t ourselves.
18236
18237         * m4/prereq.m4 (jm_PREREQ): Don't invoke macros; AC_REQUIRE them.
18238         Require every macro that gnulib/modules/* suggests for us.
18239         (jm_PREREQ_ADDEXT): New macro.
18240         (jm_PREREQ_STAT): Check for 'struct statfs' on Ultrix 4.4.
18241         Require jm_AC_TYPE_LONG_LONG instead of invoking it.
18242
18243         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): New macro.
18244         (gl_PHYSMEM): Use it.
18245         Also check for `table' function.
18246         Check for new headers and functions.
18247         Add check for sys/sysmp.h.
18248         With suggestions from Kaveh Ghazi.
18249         Ignore headers that are present but cannot be compiled.  This
18250         avoids spurious warnings on Solaris 9 sparc with Forte Developer 7
18251         C 5.4.
18252
18253 2003-08-15  Paul Eggert  <eggert@twinsun.com>
18254
18255         Document merge from coreutils.
18256         * modules/userspec: Depend on posixver.
18257         * modules/strftime: Depend on tzset.
18258
18259 2003-08-15  Paul Eggert  <eggert@twinsun.com>
18260
18261         * lib/config.charset, ref-add.sin, ref-del.sin: Use three spaces,
18262         rather than tab, after '#' in shell-script copyright notices.
18263         Suggested by Bruno Haible.
18264
18265 2003-08-15  Paul Eggert  <eggert@twinsun.com>
18266
18267         * config/srclist-update: Use three spaces, rather than tab, after '#'
18268         in shell-script copyright notices.  Suggested by Bruno Haible.
18269         Remove unnecessary parenthesization in regular expression.
18270
18271 2003-08-15  Jim Meyering  <jim@meyering.net>
18272
18273         Merge from coreutils.
18274         * lib/xgethostname.c: Include <stdlib.h>.
18275         (xghostname): Don't exit for anything other than memory-related
18276         failure; just return NULL.
18277         * lib/userspec.c: Include "posixver.h".
18278         (parse_user_spec): Accept `.' as a separator only
18279         in pre-POSIX-200112 mode.
18280         * lib/strtoimax.c: Use #elif rather than #else #if.
18281         * lib/strftime.c (my_strftime) [!_LIBC && HAVE_TZNAME && HAVE_TZSET]:
18282         Remove function, now that we can rely on a working tzset function.
18283         [!_LIBC]: Ensure that the required autoconf test has been run.
18284         [!defined _NL_CURRENT && HAVE_STRFTIME]:
18285         Use underlying_strftime for %r.
18286         * lib/sha.c: Merge in some clean-up and optimization changes from
18287         glibc.
18288         * lib/sha.c (sha_stream) [BLOCKSIZE]: Move definition to top of file.
18289         Ensure that it is a multiple of 64.
18290         Rearrange loop exit tests so as to avoid performing an
18291         additional fread after encountering an error or EOF.
18292         * lib/realloc.c: Update copyright date.
18293
18294 2003-08-15  Jim Meyering  <jim@meyering.net>
18295         and Paul Eggert  <eggert@twinsun.com>
18296
18297         Merge from coreutils.
18298         * lib/readutmp.h (HAVE_UTMPX_H): Undef if struct utmp has the ut_exit
18299         member but strut utmpx does not.  Needed for AIX 4.3.3.
18300         (UT_EXIT_E_TERMINATION, UT_EXIT_E_EXIT): Define.
18301
18302 2003-08-15  Jim Meyering  <jim@meyering.net>
18303         and Paul Eggert  <eggert@cs.ucla.edu>
18304
18305         Merges from coreutils, etc.
18306         * m4/strftime.m4 (_jm_STRFTIME_PREREQS):
18307         Require gl_FUNC_TZSET_CLOBBER.
18308         * m4/readutmp.m4 (gl_READUTMP): Check for ut_exit.ut_exit,
18309         ut_exit.e_exit, ut_exit.ut_termination, and ut_exit.e_termination
18310         members.
18311
18312 2003-08-14  Paul Eggert  <eggert@twinsun.com>
18313
18314         Help the merge from coreutils.
18315         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): New macro.
18316         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Use it.
18317         * m4/tzset.m4: Use it too.
18318
18319 2003-08-14  Paul Eggert  <eggert@twinsun.com>
18320
18321         * modules/tzset: New file.
18322
18323 2003-08-14  Jim Meyering  <jim@meyering.net>
18324
18325         Merges from coreutils.
18326         * modules/fnmatch: Use the `$(FNMATCH_H)' notation for AC_REPLACED
18327         variable names, rather than @FNMATCH_H@.
18328         * modules/alloca: Likewise for $(ALLOCA_H).
18329
18330         * modules/fnmatch (fnmatch.h): Use `$@' in the commands, in place of
18331         the three copies of the literal target, `fnmatch.h'.
18332         * modules/alloca (alloca.h): Likewise.
18333
18334 2003-08-14  Jim Meyering  <jim@meyering.net>
18335
18336         Merge from coreutils.
18337         * m4/tzset.m4: New file.
18338         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Move the
18339         MOUNTED_VMOUNT test to precede the MOUNTED_GETMNTENT1 tests, since
18340         otherwise, AIX 5.1 systems would end up using the latter.
18341         MOUNTED_GETMNTENT1 support is inadequate on such systems: 1) detecting
18342         whether a file system is remote doesn't work  2) the MOUNTED_VMOUNT
18343         code reports the HOSTNAME:/MOUNT_POINT, while the MOUNTED_GETMNTENT1
18344         code reports merely /MOUNT_POINT.  Reported by Mike Jetzer.
18345
18346 2003-08-14  Jim Meyering  <jim@meyering.net>
18347
18348         Merge from coreutils.
18349         * lib/obstack.h: Whitespace changes.
18350         * lib/mountlist.c: Remove anachronistic casts of xmalloc, xrealloc,
18351         and xcalloc return values.
18352         (read_filesystem_list) [MOUNTED_GETFSSTAT]:
18353         Use MNT_NOWAIT, rather than MNT_WAIT.  Otherwise, `df DIR' could
18354         hang on OSF/1 5.1 for DIR on both local and remote file systems.
18355         Reported by (and fix confirmed by) Nelson H. F. Beebe.
18356         (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
18357         error from mntctl.
18358         Use mntctl's return value to drive the entry-processing loop, since
18359         we can't rely on the value of the vmt_length member in the last
18360         entry.  On some systems doing so could result in exhausting
18361         virtual memory.  Based in part on a patch from Mike Jetzer.
18362
18363 2003-08-14  Jim Meyering  <jim@meyering.net>
18364         and Paul Eggert  <eggert@twinsun.com>
18365
18366         Merges from coreutils, plus other fixes.
18367         * lib/physmem.c: Merge in portability changes from gcc/libiberty
18368         to support AIX, IRIX, Tru64, and Windows.  See the ChangeLog there
18369         for credits and details.  Thanks to Kaveh Ghazi for helping
18370         to keep these files in sync.
18371         (ARRAY_SIZE): Define it.
18372         (physmem_total, physmem_available): Add comments. From Kaveh Ghazi.
18373         * lib/memcasecmp.c: Remove unnecessary parentheses after 'defined'.
18374         (memcasecmp): Don't assume size_t fits in unsigned int.
18375         Remove casts and duplicate code.
18376         * lib/md5.c: Include <string.h> and <stdlib.h> unconditionally.
18377         (memcpy): Remove definition.
18378         Merge in some clean-up and optimization changes from glibc.
18379         [BLOCKSIZE]: Move definition to top of file.
18380         Ensure that it is a multiple of 64.
18381         Rearrange loop exit tests so as to avoid performing an
18382         additional fread after encountering an error or EOF.
18383         * lib/md5.h (md5_uintptr): Define.
18384         * lib/makepath.c (CLEANUP_CWD): Report an error if we failed to
18385         return to the initial working directory.  Preserve errno
18386         for caller.
18387         * lib/idcache.c: Include "xalloc.h".
18388         (xmalloc, xrealloc): Remove decls.
18389         (getuser): Remove casts no longer required in C89.
18390         * lib/human.c: Include stdio.h, for sprintf.
18391         * lib/group-member.c: Include "xalloc.h".
18392         (xmalloc, xrealloc): Remove decls.
18393         (get_group_info): Remove casts no longer required in C89.
18394         * lib/getusershell.c (readname): Remove casts no longer required in
18395         C89.
18396         * lib/gettimeofday.c (rpl_gmtime, rpl_tzset): New functions.
18397         * lib/getline.c: Whitespace fix, from coreutils.
18398
18399 2003-08-13  Paul Eggert  <eggert@twinsun.com>
18400
18401         * m4/exclude.m4 (gl_EXCLUDE): Require AC_C_INLINE, AC_HEADER_STDC.
18402         Check for isascii.
18403
18404         * m4/gettext.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, lib-link.m4,
18405         lib-prefix.m4, longdouble.m4, po.m4, progtest.m4, signed.m4:
18406         Undo previous (whitespace-only) change.
18407
18408 2003-08-13  Paul Eggert  <eggert@twinsun.com>
18409
18410         * lib/exclude.c: Include <ctype.h>
18411         (IN_CTYPE_DOMAIN): New macro.
18412         (is_space): New fn.
18413         (add_exclude_file): If LINE_END is a space, ignore trailing spaces
18414         and empty lines.
18415
18416         * lib/argp-help.c, argp-parse.c, config.charset, getopt.h:
18417         Undo previous (whitespace-only) change.
18418
18419 2003-08-13  Paul Eggert  <eggert@twinsun.com>
18420
18421         * config/srclist-update: Change update back to the old behavior,
18422         leaving whitespace alone.  Use one 'sed' command rather than a
18423         pipeline.
18424         (fixlicense): Now a variable, not a function.
18425         (remove_trailing_blanks): Remove.
18426         (fixfile): Don't invoke unexpand or cat, or remove trailing blanks.
18427         * config/config.guess, config.sub, install-sh, missing, texinfo.tex:
18428         Undo previous (whitespace-only) change.
18429
18430 2003-08-12  Paul Eggert  <eggert@twinsun.com>
18431
18432         Merge from coreutils.
18433         * modules/euidaccess: Add lib_SOURCES, include for new
18434         file euidaccess.h
18435
18436 2003-08-12  Paul Eggert  <eggert@twinsun.com>
18437
18438         * m4/gettext.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, lib-link.m4,
18439         lib-prefix.m4, longdouble.m4, po.m4, progtest.m4, signed.m4:
18440         Normalize leading white space and remove trailing white space.
18441
18442         Merge from coreutils
18443         * m4/euidaccess.m4 (gl_FUNC_EUIDACCESS): Check for euidaccess decl.
18444
18445         * m4/lib-ld.m4, lib-link.m4, lib-prefix.m4: Regenerate from gettext
18446         0.12.1.  These files are now being upgraded automatically by
18447         ../config/srclist-update.
18448
18449 2003-08-12  Paul Eggert  <eggert@twinsun.com>
18450
18451         * lib/argp-help.c, argp-parse.c, config.charset, getopt.h:
18452         Normalize leading white space and remove trailing white space.
18453         * lib/ref-add.sin, ref-del.sin: Use '#' before empty line in copyright
18454         notice, as per ../config/srclist-update.
18455
18456         Merge from coreutils.
18457         * lib/euidaccess.h: New file.
18458         * lib/euidaccess.c: Include it.
18459         * lib/.cppi-disable: Add printf-args.h, printf-parse.h, stdbool_.h,
18460         vasnprintf.h, vasprintf.h.  Remove strdup.c, gettext.h.
18461         * lib/regex.h, strdup.c, strtoll.c, strtoul.c: Normalize white space.
18462
18463 2003-08-12  Paul Eggert  <eggert@twinsun.com>
18464
18465         * config/srclist-update: Add copyright notice.
18466         (remove_id_lines, remove_trailing_blanks): New constants.
18467         (fixfile): Use them to normalize spacing a bit in copied files.
18468         * config/config.guess, config.sub, install-sh, missing, texinfo.tex:
18469         Normalize leading white space and remove trailing white space.
18470
18471         * config/texinfo.tex: Sync with texinfo.
18472
18473         * config/srclist.txt: Don't get regex.h, strdup.c, strtoll.c,
18474         strtoul.c from libc, to merge coreutils whitespace changes.
18475
18476         * config/srclist.txt: Get the following m4 files from gettext:
18477         codeset.m4, gettext.m4, glibc21.m4, iconv.m4, intdiv0.m4,
18478         inttypes-pri.m4, lcmessage.m4, lib-ld.m4, lib-link.m4, lib-prefix.m4,
18479         longdouble.m4, nls.m4, po.m4, progtest.m4, signed.m4, wchar_t.m4,
18480         wint_t.m4.
18481
18482 2003-08-12  Karl Berry  <karl@gnu.org>
18483
18484         * config/srclist.txt: can't sync vasnprintf.c any more, changes have
18485         been made.
18486
18487 2003-08-11  Paul Eggert  <eggert@twinsun.com>
18488
18489         * modules/gnu-source, m4/gnu-source.m4:
18490         Remove; we're assuming Autoconf 2.54 or later now.
18491         Suggested by Bruno Haible.
18492         * MODULES.html.sh (func_all_modules): Remove gnu-source.
18493
18494 2003-08-11  Bruno Haible  <bruno@clisp.org>
18495
18496         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Also check for wcslen.
18497
18498 2003-08-11  Bruno Haible  <bruno@clisp.org>
18499
18500         * lib/vasnprintf.c (local_wcslen): New function, for Solaris 2.5.1.
18501         (vasnprintf): Use it instead of wcslen.
18502
18503 2003-08-11  Bruno Haible  <bruno@clisp.org>
18504
18505         * lib/stdbool_.h (_Bool): Undo last change; instead use a negative enum
18506         value to ensure that _Bool promotes to int. Use #define for _Bool when
18507         using the Solaris C compiler. Adds comments suggested by Paul Eggert.
18508
18509 2003-08-10  Karl Berry  <karl@gnu.org>
18510
18511         * lib/regex.h: update from libc (whitespace fix).
18512
18513 2003-08-09  Paul Eggert  <eggert@twinsun.com>
18514
18515         Merge some files from coreutils.  These changes were
18516         originally made by Jim Meyering.
18517         * lib/acl.c: Include <sys/types.h> before <sys/stat.h>;
18518         many older Unixes require this.
18519         * lib/alloca.c (alloca): Remove cast to argument of free;
18520         no longer needed in C89.
18521         * lib/alloca_.h, regex.h: Fix white space to match
18522         what GNU indent does.
18523
18524 2003-08-09  Paul Eggert  <eggert@twinsun.com>
18525
18526         * m4/regex.m4 (jm_INCLUDED_REGEX): Change "\201" to "\371";
18527         apparently Emacs's Unicode mode got confused before my 2003-08-05
18528         checkin.
18529
18530 2003-08-08  Paul Eggert  <eggert@twinsun.com>
18531
18532         * m4/extensions.m4: New file.
18533         * m4/timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC):
18534         Require gl_USE_SYSTEM_EXTENSIONS.
18535         * m4/unlocked-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO):
18536         Require gl_USE_SYSTEM_EXTENSIONS rather than AC_GNU_SOURCE.
18537
18538 2003-08-08  Paul Eggert  <eggert@twinsun.com>
18539
18540         * MODULES.html.sh (func_all_modules): Add extensions, gnu-source.
18541         * modules/extensions, modules/gnu-source: New files.
18542         * modules/timespec, modules/unlocked-io: Depend on extensions.
18543
18544 2003-08-07  Paul Eggert  <eggert@twinsun.com>
18545
18546         * modules/restrict: New file.
18547         * MODULES.html.sh (func_all_modules): Add restrict.
18548         * modules/regex: Depend on restrict.
18549
18550 2003-08-07  Paul Eggert  <eggert@twinsun.com>
18551
18552         * m4/restrict.m4: New file.
18553         * m4/regex.m4 (jm_PREREQ_REGEX): Add gl_C_RESTRICT.
18554
18555 2003-08-07  Bruno Haible  <bruno@clisp.org>
18556
18557         * modules/getndelim2 (Makefile.am): Add the files to EXTRA_DIST, not
18558         lib_SOURCES, because getndelim2.m4 now uses AC_LIBOBJ(getndelim2).
18559
18560 2003-08-07  Bruno Haible  <bruno@clisp.org>
18561
18562         * m4/getndelim2.m4 (gl_GETNDELIM2): Use AC_LIBOBJ(getndelim2). This
18563         makes the module 'getndelim2' compatible with the module 'getline'.
18564
18565 2003-08-05  Paul Eggert  <eggert@twinsun.com>
18566
18567         * m4/regex.m4 (jm_INCLUDED_REGEX): Replace a single non-ASCII
18568         byte with "\201" to avoid glitches when editing that source file
18569         with multi-gnome-terminal.
18570
18571 2003-08-05  Paul Eggert  <eggert@twinsun.com>
18572
18573         * lib/bumpalloc.h: Remove.
18574
18575 2003-08-05  Paul Eggert  <eggert@twinsun.com>
18576
18577         * MODULES.html.sh (func_all_modules): Remove bumpalloc.
18578         * modules/bumpalloc: Remove.
18579
18580 2003-08-04  Paul Eggert  <eggert@twinsun.com>
18581
18582         * lib/getloadavg.c: Change copyright notice and spacing to conform to
18583         GNU coding style.
18584
18585         Merge from coreutils.
18586         * lib/error.c [!USE_IN_LIBIO]: Omit this case; assume USE_IN_LIBIO is
18587         1. From glibc.
18588         * lib/getdate.y (date): Also accept dates like May-23-2003; suggestion
18589         from Karl Berry, implemented by Jim Meyering.
18590         * lib/getgroups.c: Include "xalloc.h" instead of declaring xalloc fns;
18591         from Dmitry V. Levin.
18592         Remove anachronistic cast of xrealloc.
18593         * lib/fnmatch_.h (__const): Remove.  Use 'const'.
18594         * lib/fnmatch_loop.c (NEW_PATTERN): Cast alloca return value to proper
18595         type. Otherwise, it wouldn't compile with at least /bin/cc on
18596         ymp-cray-unicos9.0.2.X.
18597         Combine two mostly-identical uses of alloca into one.
18598         Thanks to the Cray-Cyber project for access to a Cray Y-MP.
18599
18600 2003-08-04  Dave Love  <d.love@dl.ac.uk>
18601
18602         [From Emacs.]
18603
18604         * lib/getloadavg.c: Check `__unix' as well as `unix'.  Use #ifdef, not
18605         #if.  Check HAVE_LIBKSTAT as well as LOAD_AVE_TYPE.  Check
18606         F_SETFD, not FD_SETFD.  Use HAVE_STRUCT_NLIST_N_UN_N_NAME, not
18607         obsolete NLIST_NAME_UNION.
18608         [__GNU__]: Undef BSD and FSCALE.
18609         [!NLIST_STRUCT]: Remove conditional definition of NLIST_STRUCT.
18610
18611 2003-08-03  Paul Eggert  <eggert@twinsun.com>
18612
18613         * lib/stdbool_.h (_Bool): Make it signed char, instead of
18614         an enum type, so that it's guaranteed to promote to int.  See:
18615         <http://mail.gnu.org/archive/html/bug-gnulib/2003-07/msg00124.html>
18616
18617 2003-08-03  Karl Berry  <karl@gnu.org>
18618
18619         * config/depcomp: update from automake.
18620
18621 2003-07-31  Paul Eggert  <eggert@twinsun.com>
18622
18623         * lib/strerror.c: Include config.h, limits.h.  Declare sprintf.
18624         (strerror): Don't assume that a printable int fits in 14 bytes.
18625
18626 2003-07-31  Bruno Haible  <bruno@clisp.org>
18627
18628         * modules/getpass-gnu: New file.
18629         * MODULES.html.sh (func_all_modules): Add getpass-gnu.
18630
18631 2003-07-31  Bruno Haible  <bruno@clisp.org>
18632
18633         * m4/getpass.m4 (gl_FUNC_GETPASS_GNU): New macro.
18634
18635 2003-07-24  Karl Berry  <karl@gnu.org>
18636
18637         * config/missing: update from automake.
18638
18639 2003-07-24  Derek Robert Price  <derek@ximbiot.com>
18640             Bruno Haible  <bruno@clisp.org>
18641
18642         * lib/getline.h (getline, getdelim): Change return type to ssize_t.
18643         * lib/getline.c (getline, getdelim): Likewise.
18644         Remove _GNU_SOURCE define; now it's defined in config.h through
18645         m4/getline.m4.
18646
18647 2003-07-23  Karl Berry  <karl@gnu.org>
18648
18649         * config/config.sub: update from prep.
18650
18651 2003-07-22  Paul Eggert  <eggert@twinsun.com>
18652
18653         * modules/xalloc (Depends-on): Add exitfail.
18654         * modules/xmemcoll: Likewise.
18655
18656 2003-07-22  Paul Eggert  <eggert@twinsun.com>
18657
18658         * lib/xalloc.h (XCALLOC, XREALLOC, CCLONE): Fix under- and
18659         over-parenthesization in macros.
18660
18661         Sync with coreutils.
18662
18663         * lib/xalloc.h (XMALLOC, XCALLOC, XREALLOC): Remove casts not
18664         required by C99.
18665
18666         Use `exit_failure' for xalloc and xmemcoll instead of their own
18667         private exit-failure variables.
18668         * lib/xalloc.h (xalloc_exit_failure): Remove.
18669         * lib/xmalloc.c: Likewise.  Include exitfail.h.
18670         (xalloc_die): Use exit_failure instead of xalloc_exit_failure.
18671         * lib/xmemcoll.h (xmemcoll_exit_failure): Remove.
18672         * lib/xmemcoll.c: Likewise.  Include exitfail.h.
18673         (xmemcoll): Use exit_failure instead of xalloc_exit_failure.
18674
18675 2003-07-20  Jim Meyering  <jim@meyering.net>
18676
18677         * modules/closeout (Depends-on): Add exitfail.
18678         Suggestion from Bruno Haible.
18679
18680 2003-07-19  Karl Berry  <karl@gnu.org>
18681
18682         * config/config.sub: update from prep.
18683
18684 2003-07-18  Paul Eggert  <eggert@twinsun.com>
18685
18686         * lib/closeout.h (close_stdout_set_status, close_stdout_status):
18687         Remove.
18688         * lib/closeout.c: Likewise.  Include "closeout.h" right after config.h,
18689         to test that it can stand by itself.  Include "exitfail.h".
18690         Clients should set exit_failure instead.
18691         (EXIT_FAILURE): Remove; no longer needed.  Do not include <stdlib.h>.
18692
18693 2003-07-18  Bruno Haible  <bruno@clisp.org>
18694
18695         * modules/getndelim2: New file.
18696         * modules/getline: Share files with module getndelim2.
18697         * modules/getnline: Depend on getndelim2 instead of sharing files with
18698         it. Add getnline.c to lib_SOURCES.
18699         * MODULES.html.sh (func_all_modules): Add getndelim2.
18700
18701 2003-07-18  Bruno Haible  <bruno@clisp.org>
18702
18703         * m4/getndelim2.m4: New file.
18704         * m4/getline.m4 (AM_FUNC_GETLINE): Add AC_LIBOBJ of getndelim2.c and
18705         invoke gl_PREREQ_GETNDELIM2.
18706         (gl_PREREQ_GETLINE): Drop AC_HEADER_STDC, now done by
18707         gl_PREREQ_GETNDELIM2.
18708         * m4/getnline.m4 (gl_GETNLINE): Drop AC_HEADER_STDC, now done by
18709         gl_GETNDELIM2.
18710
18711 2003-07-18  Bruno Haible  <bruno@clisp.org>
18712
18713         * lib/getndelim2.h: New file.
18714         * lib/getndelim2.c: Make into a module of its own. Include config.h,
18715         getndelim2.h.
18716         (getndelim2): Make non-static. Change return type to ssize_t.
18717         * lib/getline.h: Change argument names.
18718         * lib/getline.c: Include getndelim2.h instead of getndelim2.c.
18719         * lib/getnline.c: Include getndelim2.h.
18720
18721 2003-07-18  Andreas Schwab  <schwab@suse.de>
18722
18723         * lib/memcoll.c (memcoll) [!HAVE_STRCOLL]: Clear errno.
18724
18725 2003-07-17  Karl Berry  <karl@gnu.org>
18726
18727         * config/config.sub: update from prep.
18728
18729 2003-07-17  Bruno Haible  <bruno@clisp.org>
18730
18731         * modules/getnline: New file.
18732         * modules/getline: Add lib/getndelim2.c to source file list.
18733         * MODULES.html.sh (func_all_modules): Add getnline.
18734
18735 2003-07-17  Bruno Haible  <bruno@clisp.org>
18736
18737         * m4/getnline.m4: New file.
18738
18739 2003-07-17  Bruno Haible  <bruno@clisp.org>
18740
18741         * m4/Makefile.am.in: Remove file.
18742         * m4/Makefile.am: Remove file.
18743         * m4/Makefile.in: Remove file.
18744
18745 2003-07-17  Bruno Haible  <bruno@clisp.org>
18746
18747         * lib/getnline.h: New file.
18748         * lib/getnline.c: New file.
18749         * lib/getndelim2.c: New file, extracted from getline.c.
18750         (getndelim2): Renamed from getdelim2, with added nmax argument.
18751         * lib/getline.c: Include getndelim2.c.
18752         (getdelim2): Moved out to getndelim2.c.
18753         (getline, getdelim): Update.
18754
18755 2003-07-17  Bruno Haible  <bruno@clisp.org>
18756
18757         * lib/Makefile.am: Remove file.
18758         * lib/Makefile.in: Remove file.
18759
18760 2003-07-17  Bruno Haible  <bruno@clisp.org>
18761
18762         * configure.in: Remove file.
18763         * Makefile.in: Remove file.
18764
18765 2003-07-17  Bruno Haible  <bruno@clisp.org>
18766
18767         * MODULES.html.sh: Put the </BODY> right before </HTML>.
18768
18769 2003-07-16  Karl Berry  <karl@gnu.org>
18770
18771         * config/srclist-update: was running fixlicense twice, which caused
18772                 texinfo.tex to be nullified for some reason.  Simplify,
18773                 $gplsrc is no longer needed as far as I can see?
18774
18775 2003-07-16  Jim Meyering  <jim@meyering.net>
18776
18777         * modules/save-cwd: Depend on xgetcwd.  From Derek Price.
18778
18779 2003-07-15  Paul Eggert  <eggert@twinsun.com>
18780
18781         * config/srclist.txt: Get the following files from gettext-runtime/intl
18782         instead: config.charset, localcharset.c, localcharset.h, ref-add.sin,
18783         ref-del.sin.  From Bruno Haible.
18784         * config/srclist-update (fixfile): Change grep pattern again, since the
18785         previous fix didn't work (there was another trailing $).  Use
18786         '[$]' to escape the $s.
18787
18788 2003-07-15  Karl Berry  <karl@gnu.org>
18789
18790         * lib/vasnprintf.c: update from gettext.
18791
18792 2003-07-15  Karl Berry  <karl@gnu.org>
18793
18794         * config/srclist-update (fixfile): Change grep pattern, since 'Id'
18795         gets expanded when surrounded by '$'.
18796
18797 2003-07-15  Jim Meyering  <jim@meyering.net>
18798
18799         * modules/save-cwd: Don't depend on error.  From Derek Price.
18800
18801 2003-07-15  Jim Meyering  <jim@meyering.net>
18802
18803         * lib/makepath.c (make_path): Enclose diagnostic in _(...).
18804
18805 2003-07-14  Simon Josefsson  <jas@extundo.com>
18806
18807         * modules/mempcpy: New file.
18808         * MODULES.html.sh (func_all_modules): Add mempcpy.
18809
18810 2003-07-14  Simon Josefsson  <jas@extundo.com>
18811
18812         * m4/mempcpy.m4: New file.
18813
18814 2003-07-14  Simon Josefsson  <jas@extundo.com>
18815
18816         * lib/mempcpy.h: New file.
18817         * lib/mempcpy.c: New file.
18818
18819 2003-07-14  Paul Eggert  <eggert@twinsun.com>
18820
18821         * modules/getdate, modules/posixtm: Depend on mktime.
18822
18823 2003-07-14  Paul Eggert  <eggert@twinsun.com>
18824
18825         * lib/ceill.c, expl.c, floorl.c, frexpl.c, ldexpl.c, mathl.h,
18826         sincosl.c, sqrtl.c, trigl.c, trigl.h, poll.c, poll_.h, mkstemp.c,
18827         unicodeio.c, unicodeio.h, unlocked-io.h:
18828         Switch from LGPL to GPL.
18829
18830 2003-07-14  Paul Eggert  <eggert@twinsun.com>
18831
18832         * lib/asnprintf.c, asprintf.c, config.charset, gettext.h,
18833         localcharset.c, localcharset.h, mkdtemp.c, printf-args.c,
18834         printf-args.h, printf-parse.c, printf-parse.h, ref-add.sin,
18835         ref-del.sin, setenv.c, unsetenv.c, vasnprintf.c, vasnprintf.h,
18836         vasprintf.c, vasprintf.h: Regenerate.  These files are now being
18837         updated automatically by ../config/srclist-update.  This changes
18838         their license from LPGL to GPL.
18839
18840 2003-07-14  Paul Eggert  <eggert@twinsun.com>
18841
18842         * config/srclist.txt: Add tons more gettext files.  $GETTEXT is now
18843         assumed to refer to the root of the most recent stable gettext version.
18844         * config/srclistvars.sh: Add defaults for eggert.
18845         * config/srclist-update: Convert LGPL to GPL in shell scripts, too.
18846         Match "This program" as well as "The program".  This is needed
18847         for gettext.
18848
18849 2003-07-14  Jim Meyering  <jim@meyering.net>
18850
18851         Don't emit diagnostics.  Let callers do that.
18852         * lib/save-cwd.c: Don't include "error.h".
18853         (save_cwd): Don't call error.  Ensure that errno is valid
18854         when returning nonzero.
18855
18856         * lib/save-cwd.h (restore_cwd): Update prototype.
18857         * lib/save-cwd.c (restore_cwd): Remove two parameters.
18858         Simplify.  Don't call error upon failure.  Let callers do that.
18859         (save_cwd): Mention that Irix 5.3 has the same problem as SunOS 4
18860         when auditing is enabled.  But don't bother updating the #if.
18861
18862 2003-07-11  Alexandre Duret-Lutz  <adl@gnu.org>
18863
18864         * lib/obstack.h (__INT_TO_PTR): Revert change of 2003-03-13;
18865         it breaks C++ compilation.
18866         [!__GNUC__ || !__STDC__] (obstack_finish): Cast result to void*.
18867
18868 2003-07-10  Simon Josefsson  <jas@extundo.com>
18869
18870         * modules/strchrnul (Makefile.am): Add strchrnul.h.
18871
18872 2003-07-10  Jim Meyering  <jim@meyering.net>
18873
18874         * m4/clock_time.m4: Remove trailing blank.
18875         * m4/intmax_t.m4: Likewise.
18876
18877 2003-07-10  Jim Meyering  <jim@meyering.net>
18878
18879         * lib/vasnprintf.c: Remove trailing blanks.
18880         Make cpp indentation consistent.
18881
18882 2003-07-09  Paul Eggert  <eggert@twinsun.com>
18883
18884         * lib/alloca_.h, euidaccess.c, getpass.c, memrchr.c, obstack.h,
18885         posixver.c, strftime.c, strnlen.c, strverscmp.c:
18886         Switch from LGPL to GPL.
18887
18888 2003-07-09  Paul Eggert  <eggert@twinsun.com>
18889
18890         * config/srclist.txt: Sort sublists.  Add
18891         $LIBCSRC/sysdeps/generic/strtoul.c. In comments, add more libc files
18892         that differ from gnulib for one reason or another; we'd like this list
18893         to be smaller but for now let's document what we have.
18894
18895 2003-07-08  Paul Eggert  <eggert@twinsun.com>
18896
18897         * config/srclist-update: Port to POSIX 1003.1-2001 hosts by avoiding
18898         the use of GNU extensions.  Change "x=`eval echo $x`" to the shorter
18899         and sweeter "eval x=$x".
18900         * config/srclist.txt: Get lib/argp* from glibc.
18901
18902 2003-07-07  Paul Eggert  <eggert@twinsun.com>
18903
18904         * lib/mktime.c: Fix some boundary cases and remove need for floating
18905         point.
18906
18907         Issue a compile-time diagnostic if time_t is floating point, or if
18908         two's complement arithmetic is not in effect, or if arithmetic
18909         right shift does not propagate the sign.  These assumptions were
18910         all in the original code but they weren't checked.
18911
18912         (TIME_T_MIDPOINT, verify): New macros.
18913         (__isleap): Remove; it has integer overflow problems.
18914         (leapyear): New function, without those problems.
18915         (ydhms_tm_diff): Remove; splitting into two parts.
18916         (ydhms_diff): New function, containing the arithmetic part of
18917         the old ydhms_tm_diff function.  Issue a compile-time
18918         diagnostic if we are not using C99 integer division.
18919         Avoid casts when possible.
18920         (guess_time_tm): New function, containing the checking part of
18921         the old ydhms_tm_diff function.  Return the new value, rather than
18922         the difference between it and the old.  Accept a new argument T
18923         so that *T specifies the old value.  Check for overflow in the result.
18924
18925         (__mktime_internal): Use a time_t offset, not a long int offset.
18926         This undoes the 2003-06-04 change, which is no longer needed now
18927         that we have better overflow checking.
18928         (localtime_offset): Likewise.
18929
18930         (__mktime_internal): Avoid harmful overflow on hosts where time_t
18931         and long are 64-bit but int is only 32-bit.
18932         (ydhms_diff): Use long int to store year1 and yday1.
18933         Issue a compile-time diagnostic if long int is not wide enough.
18934
18935         (__mktime_internal): Use long int to store adjusted year and yday.
18936         Use plain C rather than preprocessor commands, if that doesn't
18937         affect efficiency.
18938         Check for overflow (and try to repair) after each probe
18939         rather than checking only at the very end.  This avoids some bugs
18940         (e.g., southern hemisphere, behind GMT, and GMT offset at minimum time
18941         does not equal GMT offset at maximum time).
18942         Use integer to check for overflow rather than floating point; this
18943         is more portable to non-IEEE hosts, and is a tad faster.
18944         When we detect that we are oscillating between two values,
18945         don't check whether tm_isdst has the requested value, since
18946         we already know the answer.  When tm_isdst has the wrong value,
18947         use a different heuristic to find the right one, based on the
18948         extreme values actually observed in practice in tz2003a,
18949         rather than the (overly optimistic) "previous 3 calendar quarters".
18950
18951         (not_equal_tm, print_tm, check_result): Use "const T" rather than
18952         "T const" to accommodate glibc style.
18953         (check_result): Use less-confusing report format.  "long" -> "long int.
18954         (main): Likewise.
18955         Don't loop if the iteration overflows time_t.
18956         Allow a negative step in the iteration.
18957
18958 2003-07-06  Karl Berry  <karl@gnu.org>
18959
18960         * config/depcomp: update from automake.
18961         * config/config.sub: update from prep.
18962
18963 2003-07-03  Karl Berry  <karl@gnu.org>
18964
18965         * config/config.guess: update from prep.
18966
18967 2003-07-01  Paul Eggert  <eggert@twinsun.com>
18968
18969         * m4/xreadlink.m4 (gl_XREADLINK): Don't check for sys/types.h, since
18970         xreadlink.c now includes it unconditionally.
18971
18972 2003-07-01  Paul Eggert  <eggert@twinsun.com>
18973
18974         * lib/xreadlink.c: Include <sys/types.h> unconditionally, instead of
18975         having it depend on HAVE_SYS_TYPES_H.
18976
18977 2003-07-01  Bruno Haible  <bruno@clisp.org>
18978
18979         * m4/ssize_t.m4 (gt_TYPE_SSIZE_T): Don't include <unistd.h>.
18980         <sys/types.h> should be sufficient.
18981         Reported by Paul Eggert.
18982
18983 2003-06-26  Karl Berry  <karl@gnu.org>
18984
18985         * config/depcomp: update from automake.
18986
18987 2003-06-26  Bruno Haible  <bruno@clisp.org>
18988
18989         * modules/human: Depend on module stdbool.
18990
18991 2003-06-25  Bruno Haible  <bruno@clisp.org>
18992
18993         * modules/readlink: New file.
18994         * modules/xreadlink: Depend on it.
18995         * MODULES.html.sh (func_all_modules): Add readlink.
18996
18997 2003-06-25  Bruno Haible  <bruno@clisp.org>
18998
18999         * m4/readlink.m4: New file.
19000
19001 2003-06-25  Bruno Haible  <bruno@clisp.org>
19002
19003         * lib/readlink.c: New file.
19004
19005 2003-06-22  Karl Berry  <karl@gnu.org>
19006
19007         * config/srclist.txt: update mkinstalldirs from automake.
19008         * config/mkinstalldirs: update.
19009
19010 2003-06-22  Bruno Haible  <bruno@clisp.org>
19011
19012         Portability to mingw32.
19013         * m4/ssize_t.m4: New file, from GNU gettext.
19014         * m4/safe-read.m4 (gl_PREREQ_SAFE_READ): Require gt_TYPE_SSIZE_T.
19015         * m4/xreadlink.m4 (gl_XREADLINK): Require gt_TYPE_SSIZE_T.
19016
19017 2003-06-22  Bruno Haible  <bruno@clisp.org>
19018
19019         * modules/safe-read: Add m4/ssize_t.m4.
19020         * modules/xreadlink: Add m4/ssize_t.m4.
19021
19022 2003-06-20  Bruno Haible  <bruno@clisp.org>
19023
19024         Assume C89, so PARAMS isn't needed.
19025         * lib/unicodeio.h (PARAMS): Remove.
19026         * lib/unicodeio.c: Don't use PARAMS.
19027
19028 2003-06-18  Karl Berry  <karl@gnu.org>
19029
19030         * config/config.{guess,sub}: update from prep.
19031
19032 2003-06-18  Jim Meyering  <jim@meyering.net>
19033
19034         Merge changes from coreutils.
19035         * lib/readutmp.c: Include <string.h> and <stdlib.h> unconditionally.
19036         Remove explicit declarations of xmalloc and realloc.
19037         Include xalloc.h.
19038         (read_utmp): Remove anachronistic cast of xmalloc.
19039
19040 2003-06-17  Paul Eggert  <eggert@twinsun.com>
19041
19042         Assume C89, so PARAMS isn't needed.
19043         * lib/backupfile.h (PARAMS): Remove.  All uses removed.
19044         * lib/closeout.h, lib/dirname.h, lib/filemode.h, lib/fsusage.h,
19045         lib/getdate.h, lib/getline.h, lib/group-member.h, lib/hard-locale.h,
19046         lib/hash.h, lib/linebuffer.h, lib/long-options.h, lib/makepath.h,
19047         lib/memcasecmp.h, lib/memcoll.h, lib/modechange.h, lib/mountlist.h,
19048         lib/path-concat.h, lib/physmem.h, lib/posixtm.h, lib/quote.h,
19049         lib/readutmp.h, lib/same.h, lib/save-cwd.h, lib/savedir.h,
19050         lib/stdio-safer.h, lib/strtoimax.c, lib/strverscmp.h,
19051         lib/unistd-safer.h, lib/version-etc.h, lib/xalloc.h, lib/xreadlink.h,
19052         lib/xstrtod.h, lib/xstrtol.h: Likewise.
19053         * lib/filemode.h, lib/hard-locale.h, lib/memcoll.h, lib/modechange.h,
19054         lib/physmem.h, lib/same.h, lib/strverscmp.h: Do not include config.h;
19055         no longer needed. Anyway, config.h should always be included before any
19056         other file.
19057
19058 2003-06-11  Simon Josefsson  <jas@extundo.com>
19059
19060         * modules/sysexits: New file.
19061         * MODULES.html.sh (func_all_modules): Add sysexits.
19062
19063 2003-06-11  Simon Josefsson  <jas@extundo.com>
19064
19065         * lib/sysexit_.h: New file.
19066
19067 2003-06-11  Derek Price  <derek@ximbiot.com>
19068
19069         * lib/stat.c [LSTAT]: Compile/use slash_aware_lstat only if it is
19070         necessary.
19071
19072 2003-06-11  Bruno Haible  <bruno@clisp.org>
19073
19074         * m4/sysexits.m4: New file.
19075
19076 2003-06-10  Simon Josefsson  <jas@extundo.com>
19077
19078         * lib/argp.h: New file, from glibc.
19079         * lib/argp-ba.c: New file, from glibc.
19080         * lib/argp-eexst.c: New file, from glibc.
19081         * lib/argp-fmtstream.c: New file, from glibc.
19082         * lib/argp-fmtstream.h: New file, from glibc.
19083         * lib/argp-fs-xinl.c: New file, from glibc.
19084         * lib/argp-help.c: New file, from glibc.
19085         * lib/argp-namefrob.h: New file, from glibc.
19086         * lib/argp-parse.c: New file, from glibc.
19087         * lib/argp-pv.c: New file, from glibc.
19088         * lib/argp-pvh.c: New file, from glibc.
19089         * lib/argp-xinl.c: New file, from glibc.
19090
19091 2003-06-10  Simon Josefsson  <jas@extundo.com>
19092
19093         * modules/strchrnul: New file.
19094
19095 2003-06-10  Simon Josefsson  <jas@extundo.com>
19096
19097         * modules/argp: New file.
19098
19099 2003-06-10  Simon Josefsson  <jas@extundo.com>
19100
19101         * m4/strchrnul.m4: New file.
19102
19103 2003-06-10  Simon Josefsson  <jas@extundo.com>
19104
19105         * lib/strchrnul.h: New file.
19106         * lib/strchrnul.c: New file.
19107
19108 2003-06-10  Bruno Haible  <bruno@clisp.org>
19109
19110         * MODULES.html.sh (func_all_modules): Add strchrnul and argp.
19111
19112 2003-06-07  Karl Berry  <karl@gnu.org>
19113
19114         * config/config.{guess,sub}: update from prep.
19115
19116 2003-06-07  Jim Meyering  <jim@meyering.net>
19117
19118         * modules/strtod: Use $(...) notation, not @...@ for
19119         AC_REPLACE'd variables.
19120         * modules/localcharset: Likewise.
19121
19122 2003-06-07  Jim Meyering  <jim@meyering.net>
19123
19124         * lib/readtokens.h: Put `Free Software Foundation, Inc.'
19125         in place of my name in the copyright comment.
19126         Remove definition and uses of __P.
19127
19128         From coreutils.
19129         * lib/stat.c: Don't declare xmalloc explicitly.
19130         Instead, include "xalloc.h".
19131         * lib/readtokens.c (readtokens): Remove anachronistic casts of xmalloc,
19132         xrealloc, and xcalloc return values.
19133         * lib/xgetcwd.c (xgetcwd): Include "xgetcwd.h".
19134         Improve comment.
19135         * lib/xgetcwd.h: Remove definition/uses of PARAMS.
19136
19137 2003-06-07  Bruno Haible  <bruno@clisp.org>
19138
19139         * modules/poll (Makefile.am): Use explicit creation rule for poll.h, to
19140         avoid AC_CONFIG_LINKS.
19141         * modules/fnmatch (Makefile.am): Use explicit creation rule for
19142         fnmatch.h, to avoid AC_CONFIG_LINKS.
19143         * modules/alloca (Makefile.am): Make creation of alloca.h Ctrl-C safe.
19144
19145 2003-06-07  Bruno Haible  <bruno@clisp.org>
19146
19147         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH, gl_FUNC_FNMATCH_POSIX,
19148         gl_FUNC_FNMATCH_GNU): Set FNMATCH_H instead of invoking
19149         AC_CONFIG_LINKS. Needed to allow for a different name of the lib
19150         directory.
19151         * m4/poll.m4 (gl_FUNC_POLL): Set POLL_H instead of invoking
19152         AC_CONFIG_LINKS. Needed to allow for a different name of the lib
19153         directory.
19154
19155 2003-06-06  Jim Meyering  <jim@meyering.net>
19156
19157         Merge from coreutils.
19158         * lib/same.c: (same_name): Declare *_basename locals to be `const'.
19159         Consolidate declarations and initializations of *_base* locals.
19160
19161         Merge from coreutils.
19162         This avoids a core dump on systems without GNU putenv,
19163         when running `env -u SOME_ALREADY_UNSET_VARIABLE'.
19164         * lib/putenv.c (__set_errno, LOCK, UNLOCK): Define.
19165         (unsetenv): New static function, from GNU libc.
19166         (rpl_putenv): Use it.
19167
19168         * lib/modechange.c: Remove trailing blanks.
19169
19170         Merge from coreutils.
19171         * lib/fsusage.c: Remove declaration of statfs.
19172         It conflicted with one from OSF/1 5.1 in <sys/mount.h>.
19173
19174         * lib/posixtm.c: Include <stdbool.h> unconditionally.
19175
19176 2003-06-06  Jim Meyering  <jim@meyering.net>
19177
19178         * lib/stdbool_.h: Renamed from stdbool.h.in.
19179
19180 2003-06-06  Jim Meyering  <jim@meyering.net>
19181             Bruno Haible  <bruno@clisp.org>
19182
19183         * modules/stdbool: Reflect renaming: stdbool.h.in -> stdbool_.h.
19184         Adjust Makefile.am snippet not to redirect directly to target.
19185         Use $(STDBOOL_H) notation, not @STDBOOL_H@ for AC_REPLACE'd variables.
19186
19187 2003-06-05  Paul Eggert  <eggert@twinsun.com>
19188
19189         * lib/mktime.c (__mktime_internal): When resolving a tm_isdst
19190         mismatch, look in future quarters as well as past.  This fixes a
19191         bug when processing fall-backwards gaps immediately after a long
19192         period of daylight-saving time.
19193
19194         * lib/mktime.c: Assume freestanding C89 or better.
19195         (HAVE_LIMITS_H): Remove.  Assume it's 1.
19196         (__P): Remove; not used.
19197         (CHAR_BIT, INT_MIN, INT_MAX): Remove; <limits.h> defines them.
19198         (mktime, not_equal_tm, print_tm, check_result,
19199         main): Use prototypes.  Use const * where appropriate.
19200         (main): Fix typo in testing code that uncovered by above changes.
19201         (Local Variables): Remove -DHAVE_LIMITS_H from compile-command.
19202
19203 2003-06-04  Paul Eggert  <eggert@twinsun.com>
19204
19205         * m4/human.m4 (gl_HUMAN): Require AM_STDBOOL_H.  Check for
19206         locale.h, localeconv.  This merges changes from coreutils.
19207
19208         * m4/mktime.m4 (AC_FUNC_MKTIME): New macro, taken from Autoconf CVS.
19209         It can be removed after the next Autoconf is released.
19210         * m4/exclude.m4 (gl_EXCLUDE): Don't check for sys/types.h; no loner
19211         needed.
19212
19213 2003-06-04  Paul Eggert  <eggert@twinsun.com>
19214
19215         * lib/mktime.c: Fix Debian bug 177940
19216         <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=177940>.
19217         (localtime_offset): Now long int, not time_t, because we want it
19218         to be guaranteed to be signed.  All uses changed.
19219         (__mktime_internal): If overflow would occur when adding offset,
19220         don't add it.
19221
19222         Merge 'human' changes from coreutils.  Rewrite to support
19223         locale-specific notations like thousands separators.
19224         * lib/human.c: Simplify authorship notice.
19225         Include human.h immediately after config.h.
19226         <sys/types.h>, <stdio.h>: Do not include; no longer needed.
19227         <limits.h>: Do not include, since human.h does.
19228         (SIZE_MAX, UINTMAX_MAX): New macros.
19229         <strings.h>: Include if HAVE_STRINGS_H, not if !HAVE_STRING_H.
19230         <locale.h>: Include if HAVE_LOCALE_H and HAVE_LOCALECONV.
19231         (HUMAN_READABLE_SUFFIX_LENGTH_MAX): New macro.
19232         (power_letter): Renamed from suffixes.
19233         (generate_suffix_backwards): Remove.
19234         (adjust_value): Now takes int style (because of human.h changes)
19235         and long double value (for greater precision on some platforms).
19236         (group_number): New function.
19237         (human_readable): Use it.  Use integer options, not enum.
19238         Put the options before the sizes in the arg list.
19239         Support all the new options.
19240         The old human_readable function has been removed;
19241         use inttostr.h instead.
19242         (human_readable, default_block_size, humblock):
19243         Use uintmax_t, not int, for block sizes.
19244         (human_readable_inexact, block_size_types): Remove.
19245         (block_size_opts): New constant.
19246         (human_options): Renamed from human_block_size, with new signature
19247         that allows block sizes up to UINTMAX_MAX.  All callers changed.
19248         * lib/human.h: Add copyright and authorship notice.
19249         Include <limits.h> and <stdbool.h> unconditionally.
19250         (PARAMS): Remove.  All uses removed.
19251         (LONGEST_HUMAN_READABLE): Add support for thousands separator.
19252         (enum human_inexact_style): Remove tag; now a nameless enum.
19253         (human_floor, human_ceiling, human_round_to_even): Now have
19254         values 2, 0, 1 rather than -1, 1, 0.
19255         (human_group_digits, human_suppress_point_zero, human_autoscale,
19256         human_base_1024, human_SI, human_B): New constants.
19257         (human_readable_inexact, human_block_size): Remove.
19258         (human_readable): Size args are now uintmax_t, not int.
19259         (human_options): New decl.
19260
19261         * lib/exclude.c: (new_exclude, add_exclude): Remove casts that are
19262         unnecessary now that we assume C89 or better.  This change
19263         imported from coreutils.
19264
19265         * lib/mktime.c (__mktime_internal): Do not reject negative timestamps
19266         arbitrarily.  This is the same patch as 2003-05-28, but it got lost
19267         in the 2003-05-30 sync from glibc.
19268
19269         .h files should stand alone, but we shouldn't include <sys/types.h>
19270         if we can get away with just <stddef.h>.
19271
19272         * lib/__fpending.h, addext.c, backupfile.c, exclude.c, getline.c,
19273         malloc.c, putenv.c, realloc.c, strcasecmp.c: Include <stddef.h>
19274         rather than <sys/types.h>, as we merely need size_t.
19275         * lib/dirname.h, memcoll.h, xalloc.h, xmemcoll.h: Include <stddef.h>,
19276         to get size_t.
19277         * lib/hash.h, linebuffer.h, readtokens.h, stdio-safer.h, version-etc.h:
19278         Include <stdio.h>, to get FILE.
19279         * lib/memcasecmp.c: Don't include <sys/types.h>, as we can assume
19280         memcasecmp.h has included <stddef.h> and all we need is size_t.
19281         * lib/memcoll.c: Include "memcoll.h", which gets us size_t and checks
19282         our interface, instead of including <sys/types.h>
19283
19284 2003-06-04  Paul Eggert  <eggert@twinsun.com>
19285
19286         * config/srclist.txt ($LIBCSRC/time/mktime.c lib gpl): Comment out for
19287         now, as glibc mktime is buggy on non-glibc systems.
19288
19289 2003-06-03  Karl Berry  <karl@gnu.org>
19290
19291         * config/config.sub: update from prep.
19292
19293 2003-06-02  Paul Eggert  <eggert@twinsun.com>
19294
19295         [from coreutils]
19296         Fix some minor time-related bugs with POSIX time arguments.
19297         Some valid time stamps were being rejected (notably -1, and
19298         time stamps before 1900 on 64-bit hosts).  And some invalid
19299         time stamps were being accepted, e.g. September 31.
19300
19301         * lib/posixtm.h (posixtime): Return bool instead of time_t, so
19302         that we can return (time_t) -1 successfully.
19303         * lib/posixtm.c: Likewise.
19304         [HAVE_STDBOOL_H]: Include <stdbool.h>.
19305         (bool, false, true) [!HAVE_STDBOOL_H]: New type.
19306         (t): Remove static var.
19307         (year, posix_time_parse): Now takes struct tm * arg to modify, instead
19308         of static var.  All uses changed.
19309         (year): Do not reject years before 1900; they can occur with
19310         64-bit time_t.
19311         (posix_time_parse): Do not check for out-of-range components;
19312         that is now the caller's responsibility, since our checks were
19313         only approximations.
19314         (posixtime): Use mktime to check for out-of-range components,
19315         since it knows them exactly.
19316         If mktime returns (time_t) -1, check whether an error actually occurred
19317         by invoking localtime on -1.
19318         (main) [TEST_POSIXTIME]: Check for input data errors, and report
19319         posixtime failures better.
19320         Improve the test data (in comments only).
19321
19322 2003-06-02  Karl Berry  <karl@gnu.org>
19323
19324         * config/mkinstalldirs (version): new variable.
19325         (--version): new option.
19326         (usage): improve message.
19327
19328 2003-05-30  Karl Berry  <karl@gnu.org>
19329
19330         * lib/mktime.c: update from libc.
19331
19332 2003-05-30  Bruno Haible  <bruno@clisp.org>
19333
19334         * modules/gettext: Add files m4/nls.m4 and m4/po.m4.
19335         * config/config.rpath: Upgrade to gettext-0.12.1.
19336
19337 2003-05-30  Bruno Haible  <bruno@clisp.org>
19338
19339         * m4/gettext.m4: Upgrade to gettext-0.12.1.
19340         * m4/nls.m4: New file, from gettext-0.12.1.
19341         * m4/po.m4: New file, from gettext-0.12.1.
19342         * m4/progtest.m4: Upgrade to gettext-0.12.1.
19343
19344 2003-05-30  Bruno Haible  <bruno@clisp.org>
19345
19346         * lib/config.charset: Upgrade to gettext-0.12.1 and libiconv-1.9.1.
19347         * lib/localcharset.h: Likewise.
19348         * lib/localcharset.c: Likewise.
19349
19350 2003-05-29  Karl Berry  <karl@gnu.org>
19351
19352         * config/config.rpath: update from gettext.
19353
19354 2003-05-28  Paul Eggert  <eggert@twinsun.com>
19355
19356         Assume the headers required for C89 freestanding compilers.
19357         * m4/backupfile.m4 (gl_BACKUPFILE): Don't check for limits.h.
19358         * m4/fsusage.m4 (gl_PREREQ_FSUSAGE_EXTRA): Likewise.
19359         * m4/human.m4 (gl_HUMAN): Likewise.
19360         * m4/pathmax.m4 (gl_PATHMAX): Likewise.
19361         * m4/rpmatch.m4 (gl_FUNC_RPMATCH): Likewise.
19362         * m4/userspec.m4 (gl_USERSPEC): Likewise.
19363         * m4/xreadlink.m4 (gl_XREADLINK): Likewise.
19364         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
19365         * m4/quote.m4 (gl_QUOTE): Don't check for stddef.h.
19366
19367 2003-05-28  Paul Eggert  <eggert@twinsun.com>
19368
19369         Assume the headers required for C89 freestanding compilers.
19370         * lib/addext.c, lib/backupfile.c, lib/fsusage.c, lib/human.c,
19371         lib/pathmax.h, lib/rpmatch.c, lib/userspec.c, lib/xreadlink.c,
19372         lib/xstrtol.c: Include <limits.h> without checking for HAVE_LIMITS_H.
19373         * lib/backupfile.c, lib/fsusage.c, lib/hash.c, lib/human.c,
19374         lib/safe-read.c, lib/userspec.c, lib/xstrtol.c (CHAR_BIT): Don't
19375         define, since <limits.h> is guaranteed to do that.
19376         * lib/fatal.c: Include <stdarg.h> without checking for __STDC__.
19377         * lib/exclude.c: Include <stdbool.h> unconditionally.
19378         * lib/tempname.c: Include <stddef.h> unconditionally.
19379         * lib/hash.c: Include <limits.h>, since we no longer define CHAR_BIT.
19380         * lib/modechange.c, rpmatch.c (NULL): Don't define, since
19381         <stddef.h> does that.
19382         * lib/quote.c: Dont include <stddef.h> or <sys/types.h>; not needed.
19383         * lib/safe-read.c (INT_MAX): Don't define, since <limits.h> does that.
19384         * lib/safe-read.c (TYPE_MINIMUM, TYPE_MAXIMUM): Remove; no longer
19385         needed.
19386         * lib/xstrtol.c: Likewise.
19387         * lib/safe-read.c: Remove TYPE_SIGNED; no longer needed.
19388         * lib/savedir.c: Include <stddef.h> instead of defining NULL.
19389
19390         * lib/addext.c (addext): Use assignment rather than cast, to avoid
19391         warnings on some platforms.
19392
19393         * lib/mktime.c (__mktime_internal): Do not reject negative timestamps
19394         arbitrarily.
19395
19396 2003-05-26  Jim Meyering  <jim@meyering.net>
19397
19398         Merge in a change from coreutils:
19399         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Test the cache variable, not one
19400         that is guaranteed to be `no'.  Use `no_such_member' to indicate
19401         that condition, rather than `-1' which is slightly misleading.
19402         Change the name of the cache variable to have the gl_ prefix.
19403         Prompted by a patch from Richard Dawe for DJGPP.
19404
19405 2003-05-24  Karl Berry  <karl@gnu.org>
19406
19407         * config/config.guess: update from prep.
19408
19409 2003-05-22  Karl Berry  <karl@gnu.org>
19410
19411         * gnulib-tool (func_usage): =LIBRARY not =libRARY in help msg.
19412
19413 2003-05-20  Karl Berry  <karl@gnu.org>
19414
19415         * config/config.guess: update from prep.
19416
19417 2003-05-18  Karl Berry  <karl@gnu.org>
19418
19419         * config/srclistvars.sh (TEXMF): use TEXMFROOT instead, since TEXMF
19420         might actually be set by the user.
19421
19422         * config/depcomp, install-sh, mdate-sh: update from automake.
19423
19424 2003-05-17  Bruno Haible  <bruno@clisp.org>
19425
19426         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Fix a quoting bug leading to an
19427         invalid expansion for AC_EGREP_CPP.
19428         * m4/strtoimax.m4 (gl_FUNC_STRTOIMAX): Likewise.
19429         * m4/strtoumax.m4 (gl_FUNC_STRTOUMAX): Likewise.
19430         Suggested by Akim Demaille <akim@epita.fr> in
19431         http://mail.gnu.org/archive/html/bug-autoconf/2003-05/threads.html
19432
19433 2003-05-12  Jim Meyering  <jim@meyering.net>
19434
19435         * lib/strftime.c (my_strftime): Let the `-' (no-pad) flag affect
19436         the space-padded-by-default conversion specifiers, %e, %k, %l.
19437
19438 2003-05-12  Bruno Haible  <bruno@clisp.org>
19439
19440         * lib/linebreak.c (iconv_string_length): Don't return -1 just because
19441         the string is longer than 4 KB.
19442
19443 2003-05-11  Karl Berry  <karl@gnu.org>
19444
19445         * config/config.{guess,sub}: update from prep.
19446
19447 2003-05-09  Bruno Haible  <bruno@clisp.org>
19448
19449         * modules/error: Add m4/strerror_r.m4 to file list.
19450
19451 2003-05-03  Bruno Haible  <bruno@clisp.org>
19452
19453         Upgrade to Unicode-4.0.
19454         * lib/linebreak.c (nonspacing_table_data): Change width of U+00AD,
19455         U+0350..U+0357, U+035D..U+035F, U+0600..U+0603, U+0610..U+0615,
19456         U+0656..U+0658, U+0A01, U+0AE2..U+0AE3, U+0CBC, U+17B4..U+17B5,
19457         U+17DD, U+1920..U+1922, U+1927..U+192B, U+1932, U+1939..U+193B
19458         from 1 to 0. Change width of U+0CBF, U+0CC6, U+180E from 0 to 1.
19459         (uc_width): Change width of U+4DC0..U+4DFF from 2 to 1. Change width
19460         of U+2A6D7..U+2F7FF, U+2FA1E..U+2FFFD, U+30000..U+3FFFD from 1 to 2.
19461         Change width of U+E0100..U+E01EF from 1 to 0.
19462
19463 2003-04-25  Jim Meyering  <jim@meyering.net>
19464
19465         * lib/copy-file.c (copy_file_preserving): Declare buf_size to be
19466         of type size_t, not int.
19467
19468 2003-04-25  Bruno Haible  <bruno@clisp.org>
19469
19470         * lib/copy-file.c: Include <stddef.h>, for size_t.
19471
19472 2003-04-21  Paul Eggert  <eggert@twinsun.com>
19473
19474         * m4/error.m4 (gl_ERROR): Do not put under dynamic conditions some
19475         code which expansion is under static control.  Patch imported from
19476         Akim Demaille's patch to Bison; see
19477         <http://mail.gnu.org/archive/html/bison-patches/2003-03/msg00057.html>.
19478
19479 2003-04-14  Bruno Haible  <bruno@clisp.org>
19480
19481         * m4/error.m4 (jm_PREREQ_ERROR): Use AC_FUNC_VPRINTF.
19482
19483 2003-04-11  Jim Meyering  <jim@meyering.net>
19484
19485         Merge changes from Coreutils.
19486
19487         2003-03-22  Jim Meyering  <jim@meyering.net>
19488
19489         * lib/strftime.c (widen): Cast alloca return value to proper type.
19490
19491         2003-01-19  Ulrich Drepper  <drepper@redhat.com>
19492
19493         From GNU libc.
19494         * lib/strftime.c (my_strftime): Handle very large width
19495         specifications for numeric values correctly.  Improve checks for
19496         overflow.
19497
19498         2003-01-19  Jim Meyering  <jim@meyering.net>
19499
19500         * lib/strftime.c (widen) [COMPILE_WIDE]: Merge nearly-identical
19501         definitions.
19502         (nl_get_alt_digit) [! defined my_strftime]: Define.
19503         (my_strftime) [_NL_CURRENT]: Merge nearly-identical uses of
19504         _nl_get_alt_digit and _nl_get_walt_digit.
19505
19506         * lib/strftime.c (my_strftime): Merge in locale-related changes from
19507         libc. These changes have no effect outside of _LIBC.
19508
19509 2003-04-10  Bruno Haible  <bruno@clisp.org>
19510
19511         * modules/findprog: New file.
19512         * MODULES.html.sh (func_all_modules): Add it.
19513
19514 2003-04-10  Bruno Haible  <bruno@clisp.org>
19515
19516         * m4/findprog.m4: New file.
19517         * m4/eaccess.m4: New file.
19518
19519 2003-04-10  Bruno Haible  <bruno@clisp.org>
19520
19521         * lib/findprog.h: New file, from GNU gettext.
19522         * lib/findprog.c: New file, from GNU gettext.
19523
19524 2003-04-05  Jim Meyering  <jim@meyering.net>
19525
19526         Merge changes from Coreutils.
19527
19528         * lib/exclude.h (PARAMS): Remove definition and uses.
19529         * lib/exclude.c: Remove uses of `PARAMS'.
19530
19531         * lib/dirname.c [TEST_DIRNAME]: Update build instructions for test.
19532         Add test-cases for DOS filenames. Declare program_name.
19533         (main): Set up program_name.  Patch by Rich Dawe.
19534
19535         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
19536         error from mntctl.
19537         Use mntctl's return value to drive the entry-processing loop, since
19538         we can't rely on the value of the vmt_length member in the last
19539         entry.  On some systems doing so could result in exhausting
19540         virtual memory.  Based in part on a patch from Mike Jetzer.
19541
19542 2003-04-04  Bruno Haible  <bruno@clisp.org>
19543
19544         * modules/linebreak: New file.
19545         * MODULES.html.sh (func_all_modules): Add it.
19546
19547 2003-04-04  Bruno Haible  <bruno@clisp.org>
19548
19549         * m4/linebreak.m4: New file.
19550
19551 2003-04-04  Bruno Haible  <bruno@clisp.org>
19552
19553         * lib/linebreak.h: New file, from GNU gettext.
19554         * lib/linebreak.c: New file, from GNU gettext with slight
19555         modifications.
19556         * lib/lbrkprop.h: New file, from GNU gettext.
19557
19558 2003-04-03  Bruno Haible  <bruno@clisp.org>
19559
19560         * modules/utf8-ucs4: New file.
19561         * modules/utf16-ucs4: New file.
19562         * modules/ucs4-utf8: New file.
19563         * modules/ucs4-utf16: New file.
19564         * MODULES.html.sh (func_all_modules): Add them.
19565
19566 2003-04-03  Bruno Haible  <bruno@clisp.org>
19567
19568         * m4/utf-ucs4.m4: New file.
19569         * m4/ucs4-utf.m4: New file.
19570
19571 2003-04-03  Bruno Haible  <bruno@clisp.org>
19572
19573         * lib/utf8-ucs4.h: New file, from GNU gettext.
19574         * lib/utf16-ucs4.h: New file, from GNU gettext.
19575         * lib/ucs4-utf8.h: New file, from GNU gettext.
19576         * lib/ucs4-utf16.h: New file, from GNU gettext.
19577
19578 2003-04-02  Bruno Haible  <bruno@clisp.org>
19579
19580         * modules/binary-io: New file.
19581         * MODULES.html.sh (func_all_modules): Add it.
19582
19583 2003-04-02  Bruno Haible  <bruno@clisp.org>
19584
19585         * lib/binary-io.h: New file, from GNU gettext.
19586
19587 2003-04-01  Bruno Haible  <bruno@clisp.org>
19588
19589         * modules/pathname: New file.
19590         * MODULES.html.sh (func_all_modules): Add it.
19591
19592 2003-04-01  Bruno Haible  <bruno@clisp.org>
19593
19594         * lib/pathname.h: New file, from GNU gettext.
19595         * lib/concatpath.c: New file, from GNU gettext.
19596
19597 2003-03-30  Bruno Haible  <bruno@clisp.org>
19598
19599         * m4/copy-file.m4 (gl_COPY_FILE): Add check for chown().
19600
19601 2003-03-30  Bruno Haible  <bruno@clisp.org>
19602
19603         * lib/copy-file.c (copy_file_preserving): Don't set owner if the
19604         function chown() doesn't exist.
19605
19606 2003-03-28  Bruno Haible  <bruno@clisp.org>
19607
19608         * modules/copy-file: New file.
19609         * MODULES.html.sh (func_all_modules): Add it.
19610
19611 2003-03-28  Bruno Haible  <bruno@clisp.org>
19612
19613         * m4/copy-file.m4: New file.
19614
19615 2003-03-28  Bruno Haible  <bruno@clisp.org>
19616
19617         * lib/copy-file.h: New file, from GNU gettext.
19618         * lib/copy-file.c: New file, from GNU gettext.
19619
19620 2003-03-18  Jim Meyering  <jim@meyering.net>
19621
19622         * lib/quote.c (quote_n): Fix typo in comment.
19623
19624 2003-03-18  Bruno Haible  <bruno@clisp.org>
19625
19626         * m4/onceonly.m4: Use m4_defn instead of defn, for better error
19627         checking.
19628         * m4/onceonly_2_57.m4: Likewise.
19629
19630 2003-03-17  Bruno Haible  <bruno@clisp.org>
19631
19632         * m4/onceonly.m4: Require autoconf 2.54 or newer.
19633         (m4_quote): Remove macro.
19634         * m4/onceonly_2_57.m4: Require autoconf 2.54 or newer.
19635
19636 2003-03-14  Jim Meyering  <jim@meyering.net>
19637
19638         Merge changes from Coreutils.
19639         * lib/obstack.h (obstack_object_size): Declare temporary, __o,
19640         to be const, in order to avoid warnings.
19641         (obstack_room): Likewise.
19642         (obstack_empty_p): Likewise.
19643
19644 2003-03-14  Bruno Haible  <bruno@clisp.org>
19645
19646         * m4/onceonly_2_57.m4 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE,
19647         AC_CHECK_DECLS_ONCE): Quote AC_FOREACH variable-expansions properly.
19648
19649 2003-03-13  Paul Eggert  <eggert@twinsun.com>
19650
19651         Merge changes from Bison.
19652         * lib/obstack.h: (__INT_TO_PTR) [__STDC__]: Cast result to
19653         (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
19654         when compiling Bison 1.875's `bitset bset = obstack_alloc
19655         (bobstack, bytes);'.  Problem reported by Nelson H. F. Beebe.
19656         * lib/hash.c: Include <stdbool.h> unconditionally.
19657
19658 2003-03-13  Paul Eggert  <eggert@twinsun.com>
19659
19660         * m4/onceonly.m4 (m4_quote): New macro.
19661         (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
19662         Quote AC_FOREACH variable-expansions properly.
19663
19664 2003-03-13  Paul Eggert  <eggert@twinsun.com>
19665
19666         * doc/COPYING.DOC, fdl.texi: Sync with latest FSF version.
19667
19668 2003-03-09  Paul Eggert  <eggert@twinsun.com>
19669
19670         * lib/argmatch.c (EXIT_FAILURE): Define if the system doesn't.
19671         Reported by Bruce Becker; see:
19672         http://mail.gnu.org/archive/html/bug-bison/2003-03/msg00017.html
19673
19674 2003-03-03  Paul Eggert  <eggert@twinsun.com>
19675             Bruno Haible  <bruno@clisp.org>
19676
19677         * lib/mbswidth.h: Include <wchar.h>. Needed for UnixWare 7.1.1.
19678         Reported by John Hughes, see
19679         http://mail.gnu.org/archive/html/bug-bison/2003-02/msg00030.html
19680
19681 2003-02-20  Bruno Haible  <bruno@clisp.org>
19682
19683         * MODULES.html.sh (func_all_modules): Add poll.
19684
19685 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
19686
19687         * modules/poll: New file.
19688
19689 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
19690
19691         * lib/poll_.h: New file.
19692         * lib/poll.c: New file.
19693
19694 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
19695
19696         * m4/poll.m4: New file.
19697
19698 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
19699
19700         * modules/mathl: New file.
19701
19702 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
19703
19704         * lib/mathl.h: New file.
19705         * lib/acosl.c: New file.
19706         * lib/asinl.c: New file.
19707         * lib/atanl.c: New file.
19708         * lib/ceill.c: New file.
19709         * lib/cosl.c: New file.
19710         * lib/expl.c: New file.
19711         * lib/floorl.c: New file.
19712         * lib/frexpl.c: New file.
19713         * lib/ldexpl.c: New file.
19714         * lib/logl.c: New file.
19715         * lib/sincosl.c: New file.
19716         * lib/sinl.c: New file.
19717         * lib/sqrtl.c: New file.
19718         * lib/tanl.c: New file.
19719         * lib/trigl.c: New file.
19720         * lib/trigl.h: New file.
19721
19722 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
19723
19724         * m4/mathl.m4: New file.
19725
19726 2003-02-18  Bruno Haible  <bruno@clisp.org>
19727
19728         * MODULES.html.sh (func_all_modules): Add mathl.
19729
19730 2003-02-17  Bruno Haible  <bruno@clisp.org>
19731
19732         * modules/mkdtemp: New module.
19733         * MODULES.html.sh (func_all_modules): Add it.
19734
19735 2003-02-17  Bruno Haible  <bruno@clisp.org>
19736
19737         * m4/mkdtemp.m4: New file, from GNU gettext with modifications.
19738
19739 2003-02-17  Bruno Haible  <bruno@clisp.org>
19740
19741         * lib/mkdtemp.h: New file, from GNU gettext.
19742         * lib/mkdtemp.c: New file, from GNU gettext.
19743
19744 2003-02-02  Jim Meyering  <jim@meyering.net>
19745
19746         * m4/regex.m4 (jm_INCLUDED_REGEX): Detect broken re_search in
19747         e.g. glibc-2.2.93.
19748
19749 2003-01-31  Bruno Haible  <bruno@clisp.org>
19750
19751         * m4/rename.m4 (vb_FUNC_RENAME): Add a redirection from 'rename' to
19752         'rpl_rename'.
19753         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Add a redirection from 'strnlen' to
19754         'rpl_strnlen'.
19755         * m4/strtod.m4 (gl_FUNC_STRTOD): Add a redirection from 'strtod' to
19756         'rpl_strtod'.
19757         * m4/utime.m4 (jm_FUNC_UTIME): Add a redirection from 'utime' to
19758         'rpl_utime'.
19759
19760 2003-01-31  Bruno Haible  <bruno@clisp.org>
19761
19762         * lib/rename.c: #undef rename before defining rpl_rename.
19763         * lib/strnlen.c: #undef strnlen, define rpl_strnlen instead of strnlen.
19764
19765 2003-01-30  Bruno Haible  <bruno@clisp.org>
19766
19767         * modules/vasnprintf, modules/vasprintf: New modules.
19768         * MODULES.html.sh (func_all_modules): Add them.
19769
19770 2003-01-30  Bruno Haible  <bruno@clisp.org>
19771
19772         * m4/signed.m4: New file, from GNU gettext.
19773         * m4/longdouble.m4: New file, from GNU gettext.
19774         * m4/wchar_t.m4: New file, from GNU gettext.
19775         * m4/wint_t.m4: New file, from GNU gettext.
19776         * m4/vasnprintf.m4: New file.
19777         * m4/vasprintf.m4: New file.
19778
19779 2003-01-30  Bruno Haible  <bruno@clisp.org>
19780
19781         * lib/printf-args.h: New file, from GNU gettext.
19782         * lib/printf-args.c: New file, from GNU gettext.
19783         * lib/printf-parse.h: New file, from GNU gettext.
19784         * lib/printf-parse.c: New file, from GNU gettext.
19785         * lib/vasnprintf.h: New file, from GNU gettext.
19786         * lib/vasnprintf.c: New file, from GNU gettext.
19787         * lib/asnprintf.c: New file, from GNU gettext.
19788         * lib/vasprintf.h: New file, from GNU gettext with modifications.
19789         * lib/vasprintf.c: New file, from GNU gettext.
19790         * lib/asprintf.c: New file, from GNU gettext.
19791
19792 2003-01-29  Bruno Haible  <bruno@clisp.org>
19793
19794         * modules/stpncpy: New module.
19795         * MODULES.html.sh (func_all_modules): Add it.
19796
19797 2003-01-29  Bruno Haible  <bruno@clisp.org>
19798
19799         * m4/stpncpy.m4: New file.
19800
19801 2003-01-29  Bruno Haible  <bruno@clisp.org>
19802
19803         * lib/stpncpy.h: New file, from GNU gettext with modifications.
19804         * lib/stpncpy.c: New file, from GNU gettext with modifications.
19805
19806 2003-01-28  Bruno Haible  <bruno@clisp.org>
19807
19808         * modules/c-ctype: New module.
19809         * MODULES.html.sh (func_all_modules): Add it.
19810
19811 2003-01-28  Bruno Haible  <bruno@clisp.org>
19812
19813         * lib/c-ctype.h: New file, from GNU gettext, with changes suggested by
19814         Paul Eggert.
19815         * lib/c-ctype.c: New file, from GNU gettext, with changes suggested by
19816         Paul Eggert.
19817
19818 2003-01-27  Bruno Haible  <bruno@clisp.org>
19819
19820         * modules/xsetenv: New module.
19821         * MODULES.html.sh (func_all_modules): Add it.
19822
19823 2003-01-27  Bruno Haible  <bruno@clisp.org>
19824
19825         * lib/xsetenv.h: New file, from GNU gettext.
19826         * lib/xsetenv.c: New file, from GNU gettext.
19827
19828 2003-01-23  Jim Meyering  <jim@meyering.net>
19829
19830         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Correct typo: s/-1/no/ that kept this
19831         from working on systems without dirfd (at least Irix and OSF1/Tru64).
19832
19833 2003-01-23  Bruno Haible  <bruno@clisp.org>
19834
19835         * modules/minmax: New module.
19836         * MODULES.html.sh (func_all_modules): Add it.
19837
19838 2003-01-23  Bruno Haible  <bruno@clisp.org>
19839
19840         * lib/minmax.h: New file, from GNU gettext, with comments from Paul
19841         Eggert.
19842
19843 2003-01-22  Bruno Haible  <bruno@clisp.org>
19844
19845         * modules/exit: New module.
19846         * MODULES.html.sh (func_all_modules): Add it.
19847
19848 2003-01-22  Bruno Haible  <bruno@clisp.org>
19849
19850         * lib/exit.h: New file, from GNU gettext.
19851
19852 2003-01-19  Bruno Haible  <bruno@clisp.org>
19853
19854         * gnulib-tool: Recognize option --extract-maintainer.
19855         (func_get_maintainer): New function.
19856         * modules/*: Add Maintainer entry.
19857
19858 2003-01-16  Jim Meyering  <jim@meyering.net>
19859
19860         * m4/regex.m4: The `regex' struct is both input and output.
19861         Initialize it before each use.  Patch by Tim Waugh.
19862
19863 2003-01-16  Bruno Haible  <bruno@clisp.org>
19864
19865         * MODULES.html.sh: Add a table of contents. Add the module name as
19866         leftmost column. Add hyperlinks.
19867
19868 2003-01-15  Bruno Haible  <bruno@clisp.org>
19869
19870         * m4/md5.m4 (gl_MD5): Require AC_C_INLINE.
19871
19872 2003-01-15  Bruno Haible  <bruno@clisp.org>
19873
19874         * m4/longlong.m4 (jm_AC_TYPE_LONG_LONG): Also test the LL suffix.
19875         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Also test the ULL
19876         suffix.
19877
19878 2003-01-15  Bruno Haible  <bruno@clisp.org>
19879
19880         * m4/alloca.m4 (gl_FUNC_ALLOCA): Invoke AC_EGREP_CPP prerequisites.
19881
19882 2003-01-15  Bruno Haible  <bruno@clisp.org>
19883
19884         * lib/stpcpy.h (stpcpy): Use ANSI C function declarations.
19885         * lib/strcase.h (strcasecmp, strncasecmp): Likewise.
19886
19887 2003-01-14  Jim Meyering  <jim@meyering.net>
19888
19889         * lib/same.c (same_name): Tweak a comment.
19890
19891 2003-01-14  Bruno Haible  <bruno@clisp.org>
19892
19893         * lib/same.c (same_name): Reorder tests so as to avoid calling stat()
19894         when a string comparison is sufficient.
19895
19896 2003-01-14  Bruno Haible  <bruno@clisp.org>
19897
19898         * lib/readtokens.c (readtoken): Cast character to 'unsigned char', not
19899         'unsigned int'.
19900
19901 2003-01-14  Bruno Haible  <bruno@clisp.org>
19902
19903         * lib/hash-pjw.c: Add comment about low quality of this function.
19904
19905 2003-01-13  Bruno Haible  <bruno@clisp.org>
19906
19907         * modules/stpcpy: Distribute lib/stpcpy.h.
19908         * modules/setenv: Depend on alloca. Distribute lib/setenv.h.
19909
19910 2003-01-13  Bruno Haible  <bruno@clisp.org>
19911
19912         * modules/*: Add a description.
19913         * modules/strpbrk: Fix Makefile.am snippet.
19914         * modules/strtoimax: Fix dependencies.
19915         * modules/strtoumax: Likewise.
19916
19917 2003-01-13  Bruno Haible  <bruno@clisp.org>
19918
19919         * gnulib-tool (func_create_testdir): Substitute lib_OBJECTS.
19920         * modules/alloca (Makefile.am): All object files depend on alloca.h.
19921         * modules/stdbool (Makefile.am): All object files depend on stdbool.h.
19922
19923 2003-01-13  Bruno Haible  <bruno@clisp.org>
19924
19925         * gnulib-tool (func_create_testdir): Store config/* files in the main
19926         directory.
19927         * config.rpath: Move to ...
19928         * config/config.rpath: ... here.
19929         * modules/gettext: Contains config/config.rpath, not config.rpath.
19930         * modules/iconv: Likewise.
19931
19932 2003-01-12  Paul Eggert  <eggert@twinsun.com>
19933
19934         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
19935         to avoid collisions with libcurses and libreadline.
19936
19937         * m4/getstr.m4: Remove.
19938         * m4/getline.m4 (gl_PREREQ_GETLINE): Require AC_HEADER_STDC.
19939
19940 2003-01-12  Paul Eggert  <eggert@twinsun.com>
19941
19942         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
19943         to avoid collisions with libcurses and libreadline.
19944
19945         * lib/Makefile.am (libfetish_a_SOURCES): Remove getstr.c, getstr.h.
19946         * lib/getstr.h, getstr.c: Remove.
19947         * lib/getline.c: Include "getline.h", to check interface.
19948         Move body of old getstr.c here: this defines MIN_CHUNK and
19949         declares getdelim2, which is renamed from getstr.
19950         (getline, getdelim): Adjust to renaming of getstr -> getdelim2.
19951
19952         * lib/linebuffer.c (readlinebuffer): Renamed from readline.
19953         All uses changed.
19954         * lib/linebuffer.h: Likewise.
19955         (readline): Remove backward-compatibility macro.
19956
19957 2003-01-12  Paul Eggert  <eggert@twinsun.com>
19958
19959         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
19960         to avoid collisions with libcurses and libreadline.
19961         * getstr: Remove.
19962         * MODULES.html.sh: Remove getstr.
19963         * modules/getline: Depend on unlocked-io, not getstr.
19964
19965 2003-01-12  Jim Meyering  <jim@meyering.net>
19966
19967         * lib/makepath.c: Don't test HAVE_ERRNO_H.  It's not necessary.
19968
19969 2003-01-10  Bruno Haible  <bruno@clisp.org>
19970
19971         * modules/alloca: Change Makefile.am requirements. Simplify Include
19972         requirements. Add lib/alloca_.h to file list.
19973
19974 2003-01-10  Bruno Haible  <bruno@clisp.org>
19975
19976         * m4/alloca.m4 (gl_FUNC_ALLOCA): Also define ALLOCA_H.
19977
19978 2003-01-10  Bruno Haible  <bruno@clisp.org>
19979
19980         * lib/alloca_.h: New file.
19981         * lib/getdate.y: Unconditionally include alloca.h.
19982         * lib/makepath.c: Likewise.
19983         * lib/setenv.c: Likewise.
19984         * lib/userspec.c: Likewise.
19985
19986 2003-01-09  Karl Berry  <karl@gnu.org>
19987
19988         * MODULES.html.sh: include `dirname $0` in PATH, to find
19989         gnulib-tool.
19990
19991 2003-01-09  Bruno Haible  <bruno@clisp.org>
19992
19993         * modules/stdbool: Change configure.ac, Makefile.am requirements.
19994         Simplify Include requirements. Add lib/stdbool.h.in to file list.
19995
19996 2003-01-09  Bruno Haible  <bruno@clisp.org>
19997
19998         * m4/stdbool.m4 (AM_STDBOOL_H): New macro.
19999
20000 2003-01-09  Bruno Haible  <bruno@clisp.org>
20001
20002         * lib/stdbool.h.in: New file.
20003
20004 2003-01-09  Bruno Haible  <bruno@clisp.org>
20005
20006         * gnulib-tool (func_all_modules): Ignore files ending in ~.
20007         * MODULES.html.sh: Likewise.
20008
20009 2003-01-08  Jim Meyering  <jim@meyering.net>
20010
20011         * lib/full-write.c: Undefine and define-away `const' after inclusion
20012         of errno.h, not before.  Suggestion from Bruno Haible.
20013
20014 2003-01-08  Bruno Haible  <bruno@clisp.org>
20015
20016         * modules/full-read: Depend on full-write.
20017
20018 2003-01-08  Bruno Haible  <bruno@clisp.org>
20019
20020         * lib/safe-read.c: Include specification header first, to ensure its
20021         selfcontainedness.
20022         * lib/full-write.c: Likewise.
20023
20024 2003-01-07  Jim Meyering  <jim@meyering.net>
20025
20026         * lib/full-write.c: Rework so that it may serve to define full_read,
20027         too.
20028         * lib/full-read.c: Simply #define FULL_READ and include full-write.c.
20029
20030 2003-01-07  Bruno Haible  <bruno@clisp.org>
20031
20032         * lib/strtoimax.c: Include <stdint.h> as an alternative to
20033         <inttypes.h>.
20034         * lib/xstrtol.h: Likewise.
20035         * lib/xstrtoimax.c: Likewise.
20036         * lib/xstrtoumax.c: Likewise.
20037         * lib/human.h: Likewise.
20038
20039         * lib/tempname.c: Include <inttypes.h> too. Avoids a compilation error
20040         on systems that have <inttypes.h> but not <stdint.h>.
20041
20042 2003-01-07  Bruno Haible  <bruno@clisp.org>
20043
20044         * MODULES.html.sh: Add copyright notice.
20045         (missed_files): Omit CVS directory entries.
20046         (func_module): Make it work with sed-3.02.
20047         * MODULES.txt: Remove file.
20048
20049 2003-01-06  Jim Meyering  <jim@meyering.net>
20050
20051         * lib/version-etc.c: Update year in translatable copyright string.
20052
20053 2003-01-03  Karl Berry  <karl@gnu.org>
20054
20055         * config/config.{guess,sub}: update from prep.
20056
20057 2003-01-02  Karl Berry  <karl@gnu.org>
20058
20059         * doc/COPYING.DOC: belatedly updated to 1.2.
20060
20061 2003-01-01  Karl Berry  <karl@gnu.org>
20062
20063         * gnulib-tool (func_verify_module): report module name $module in
20064         error message, not $1.
20065         * gnulib-tool (create-testdir): don't complain if destdir couldn't
20066         be created, only if it doesn't exist.
20067         * gnulib-tool (last_checkin_date): don't expand the $Date here.
20068
20069 2002-12-31  Paul Eggert  <eggert@twinsun.com>
20070
20071         * m4/memcoll.m4 (gl_MEMCOLL): Require AC_FUNC_MEMCMP.
20072
20073 2002-12-31  Paul Eggert  <eggert@twinsun.com>
20074
20075         * lib/memcoll.c (memcoll): Fall back on a simple algorithm using
20076         memcmp if strcoll doesn't work.
20077
20078 2002-12-31  Bruno Haible  <bruno@clisp.org>
20079
20080         * lib/utime.c (utime_null): No need to call ftruncate if the file was
20081         nonempty.
20082
20083 2002-12-31  Bruno Haible  <bruno@clisp.org>
20084
20085         * lib/memcoll.c (STRCOLL): New macro.
20086         (memcoll): Use it.
20087
20088 2002-12-31  Bruno Haible  <bruno@clisp.org>
20089
20090         * lib/localcharset.h: New file.
20091         * lib/localcharset.c: Include it.
20092         * lib/unicodeio.c: Likewise.
20093
20094 2002-12-31  Bruno Haible  <bruno@clisp.org>
20095
20096         * lib/getstr.h (getstr): Define, to avoid clash with libcurses.
20097         * lib/linebuffer.h (readline): Define, to avoid clash with libreadline.
20098
20099 2002-12-31  Bruno Haible  <bruno@clisp.org>
20100
20101         * lib/getline.h: Include <stddef.h>, for size_t.
20102
20103         * lib/unicodeio.h: Include <stddef.h>, for size_t.
20104         * lib/unicodeio.c: Don't include <stddef.h>.
20105
20106 2002-12-31  Bruno Haible  <bruno@clisp.org>
20107
20108         * lib/getdate.y (get_date): Test HAVE_STRUCT_TM_TM_ZONE, not
20109         HAVE_TM_ZONE.
20110
20111 2002-12-24  Karl Berry  <karl@gnu.org>
20112
20113         * config/config.guess: update from prep.
20114
20115 2002-12-24  Bruno Haible  <bruno@clisp.org>
20116
20117         General infrasructure.
20118         * m4/README: Rewritten.
20119         * m4/onceonly.m4: New file.
20120         * m4/onceonly_2_57.m4: New file.
20121
20122         Module atexit.
20123         * m4/atexit.m4: New file.
20124
20125         Module strtod.
20126         * m4/strtod.m4: New file.
20127
20128         Module strtol.
20129         * m4/strtol.m4: New file.
20130
20131         Module strtoul.
20132         * m4/strtoul.m4: New file.
20133
20134         Module memchr.
20135         * m4/memchr.m4: New file.
20136
20137         Module memcmp.
20138         * m4/memcmp.m4 (gl_PREREQ_MEMCMP): New macro.
20139         (jm_FUNC_MEMCMP): Invoke it.
20140
20141         Module memcpy.
20142         * m4/memcpy.m4: New file.
20143
20144         Module memmove.
20145         * m4/memmove.m4: New file.
20146
20147         Module memset.
20148         * m4/memset.m4: New file.
20149
20150         Module strcspn.
20151         * m4/strcspn.m4: New file.
20152
20153         Module strpbrk.
20154         * m4/strpbrk.m4: New file.
20155
20156         Module strstr.
20157         * m4/strstr.m4: New file.
20158
20159         Module strerror.
20160         * m4/strerror.m4: New file.
20161
20162         Module mktime.
20163         * m4/mktime.m4: Renamed from jm-mktime.m4.
20164         (gl_PREREQ_MKTIME): New macro.
20165         (gl_FUNC_MKTIME): Renamed from jm_FUNC_MKTIME. Invoke gl_PREREQ_MKTIME.
20166
20167         Module malloc.
20168         * m4/malloc.m4 (gl_PREREQ_MALLOC): New macro.
20169         (jm_FUNC_MALLOC): Use AC_FUNC_MALLOC. Invoke gl_PREREQ_MALLOC.
20170         Don't define HAVE_DONE_WORKING_MALLOC_CHECK, since nothing uses it.
20171
20172         Module realloc.
20173         * m4/realloc.m4 (gl_PREREQ_REALLOC): New macro.
20174         (jm_FUNC_REALLOC): Use AC_FUNC_REALLOC. Invoke gl_PREREQ_REALLOC.
20175         Don't define HAVE_DONE_WORKING_REALLOC_CHECK, since nothing uses it.
20176
20177         Module strftime.
20178         * m4/tm_gmtoff.m4: New file, extracted from strftime.m4.
20179         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Use AC_FUNC_STRFTIME.
20180         Don't test for bcopy (we are not emacs). Invoke AC_TYPE_MBSTATE_T and
20181         gl_TM_GMTOFF.
20182         (_jm_STRFTIME_PREREQS, jm_FUNC_GNU_STRFTIME): Use onceonly macros.
20183
20184         Module xalloc.
20185         * m4/xalloc.m4: New file.
20186
20187         Module alloca.
20188         * m4/alloca.m4: New file.
20189
20190         Module putenv.
20191         * m4/putenv.m4 (gl_PREREQ_PUTENV): New macro.
20192         (jm_FUNC_PUTENV): Invoke it.
20193
20194         Module setenv.
20195         * m4/setenv.m4 (gt_FUNC_SETENV): New macro.
20196         (gt_CHECK_VAR_DECL): Fix quoting error that led to infinite loop in m4
20197         when invoked twice.
20198         (gt_PREREQ_SETENV, gt_PREREQ_UNSETENV): New macros, replacing old
20199         gt_FUNC_SETENV.
20200
20201         Module memrchr.
20202         * m4/memrchr.m4: New file.
20203
20204         Module stpcpy.
20205         * m4/stpcpy.m4: New file.
20206
20207         Module strcase.
20208         * m4/strcase.m4: New file.
20209
20210         Module strdup.
20211         * m4/strdup.m4: New file.
20212
20213         Module strnlen.
20214         * m4/strnlen.m4: New file.
20215
20216         Module strndup.
20217         * m4/strndup.m4: New file.
20218
20219         Module xstrtod.
20220         * m4/xstrtod.m4: New file.
20221
20222         Module xstrtol.
20223         * m4/xstrtol.m4: New file.
20224
20225         Module getdate.
20226         * m4/getdate.m4: New file.
20227
20228         Module unlocked-io.
20229         * m4/unlocked-io.m4: Renamed from jm-glibc-io.m4.
20230         (jm_FUNC_GLIBC_UNLOCKED_IO): Invoke AC_GNU_SOURCE. Use onceonly macros.
20231         * m4/jm-glibc-io.m4n: Remove file.
20232
20233         Module long-options.
20234         * m4/long-options.m4: New file.
20235
20236         Module md5.
20237         * m4/md5.m4: New file.
20238
20239         Module sha.
20240         * m4/sha.m4: New file.
20241
20242         Module getstr.
20243         * m4/getstr.m4: New file.
20244
20245         Module getline.
20246         * m4/getline.m4 (gl_PREREQ_GETLINE): New macro.
20247         (AM_FUNC_GETLINE): Invoke AC_GNU_SOURCE. Use <stdlib.h>, not
20248         <sys/types.h>, for size_t. Use the function name gnu_getline, not
20249         simply getline. Infoke gl_PREREQ_GETLINE.
20250
20251         Module obstack.
20252         * m4/obstack.m4: New file.
20253
20254         Module hash.
20255         * m4/hash.m4: New file.
20256
20257         Module readtokens.
20258         * m4/readtokens.m4: New file.
20259
20260         Module strverscmp.
20261         * m4/strverscmp.m4: New file.
20262
20263         Module stdbool.
20264         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Add test for _Bool. Needed for
20265         OSF/1.
20266
20267         Module strtoll.
20268         * m4/strtoll.m4: New file.
20269
20270         Module strtoull.
20271         * m4/strtoull.m4: New file.
20272
20273         Module strtoimax.
20274         * m4/strtoimax.m4: New file.
20275
20276         Module strtoumax.
20277         * m4/strtoumax.m4: New file.
20278
20279         Module xstrtoimax.
20280         * m4/xstrtoimax.m4 (jm_XSTRTOIMAX): Renamed from
20281         jm_AC_PREREQ_XSTRTOIMAX.
20282         Moved the strtol prerequisites to strtol.m4.
20283         Moved the strtoll prerequisites to strtoll.m4.
20284         Moved the strtoimax prerequisites to strtoimax.m4.
20285
20286         Module xstrtoumax.
20287         * m4/xstrtoumax.m4 (jm_XSTRTOUMAX): Renamed from
20288         jm_AC_PREREQ_XSTRTOUMAX.
20289         Moved the strtoul prerequisites to strtoul.m4.
20290         Moved the strtoull prerequisites to strtoull.m4.
20291         Moved the strtoumax prerequisites to strtoumax.m4.
20292
20293         Module chown.
20294         * m4/chown.m4 (gl_PREREQ_CHOWN): New macro.
20295         (jm_FUNC_CHOWN): Use AC_FUNC_CHOWN. Invoke gl_PREREQ_CHOWN.
20296
20297         Module dup2.
20298         * m4/dup2.m4: New file.
20299
20300         Module ftruncate.
20301         * m4/ftruncate.m4 (gl_PREREQ_FTRUNCATE): New macro.
20302         (jm_FUNC_FTRUNCATE): Use AC_REPLACE_FUNCS. Invoke gl_PREREQ_FTRUNCATE.
20303
20304         Module getgroups.
20305         * m4/getgroups.m4 (gl_PREREQ_GETGROUPS): New macro.
20306         (jm_FUNC_GETGROUPS): Use AC_FUNC_GETGROUPS. Invoke gl_PREREQ_GETGROUPS.
20307
20308         Module gettimeofday.
20309         * m4/gettimeofday.m4 (gl_PREREQ_GETTIMEOFDAY): New macro.
20310         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Use onceonly macros. Invoke
20311         gl_PREREQ_GETTIMEOFDAY.
20312
20313         Module mkdir.
20314         * m4/mkdir-slash.m4 (gl_PREREQ_MKDIR): New macro.
20315         (UTILS_FUNC_MKDIR_TRAILING_SLASH): Invoke gl_PREREQ_MKDIR.
20316
20317         Module mkstemp.
20318         * m4/mkstemp.m4 (gl_PREREQ_MKSTEMP): New macro.
20319         (jm_PREREQ_TEMPNAME): New macro, from prereq.m4. Also invoke
20320         jm_AC_TYPE_UINTMAX_T.
20321         (UTILS_FUNC_MKSTEMP): Invoke gl_PREREQ_MKSTEMP and jm_PREREQ_TEMPNAME.
20322
20323         Module stat.
20324         * m4/stat.m4 (gl_PREREQ_STAT): New macro.
20325         (jm_FUNC_STAT): Use AC_FUNC_STAT. Invoke gl_PREREQ_STAT.
20326
20327         Module lstat.
20328         * m4/lstat.m4 (gl_PREREQ_LSTAT): New macro.
20329         (jm_FUNC_LSTAT): Use AC_FUNC_LSTAT. Invoke gl_PREREQ_LSTAT.
20330
20331         Module timespec.
20332         * m4/timespec.m4 (gl_TIMESPEC): New macro.
20333         (jm_CHECK_TYPE_STRUCT_TIMESPEC): Add check for <sys/time.h>.
20334         * m4/st_mtim.m4: Indentation.
20335
20336         Module nanosleep.
20337         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): New macro.
20338         (jm_FUNC_NANOSLEEP): Add check for <sys/time.h>. Invoke
20339         gl_PREREQ_NANOSLEEP.
20340
20341         Module regex.
20342         * m4/regex.m4 (jm_PREREQ_REGEX): New macro.
20343         (jm_INCLUDED_REGEX): Invoke jm_PREREQ_REGEX.
20344         (gl_REGEX): New macro.
20345
20346         Module rename.
20347         * m4/rename.m4 (gl_PREREQ_RENAME): New macro.
20348         (vb_FUNC_RENAME): Invoke gl_PREREQ_RENAME.
20349
20350         Module rmdir.
20351         * m4/rmdir.m4: New file.
20352
20353         Module utime.
20354         * m4/utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Use onceonly macros.
20355         * m4/utime.m4 (gl_PREREQ_UTIME): New macro.
20356         (jm_FUNC_UTIME): Invoke gl_PREREQ_UTIME.
20357
20358         Module dirname.
20359         * m4/dirname.m4: New file.
20360
20361         Module getopt.
20362         * m4/getopt.m4: New file.
20363
20364         Module unistd-safer.
20365         * m4/unistd-safer.m4: New file.
20366
20367         Module fnmatch.
20368         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Include <stdlib.h>, for exit()
20369         declaration.
20370         (gl_PREREQ_FNMATCH_EXTRA): New macro.
20371         (gl_FUNC_FNMATCH_POSIX): New macro.
20372         (gl_FUNC_FNMATCH_GNU): Renamed from AC_FUNC_FNMATCH_GNU. Invoke
20373         gl_PREREQ_FNMATCH_EXTRA. Use the function name gnu_fnmatch, not
20374         simply fnmatch.
20375
20376         Module exclude.
20377         * m4/exclude.m4: New file.
20378
20379         Module human.
20380         * m4/human.m4: New file.
20381
20382         Module acl.
20383         * m4/acl.m4: Nop.
20384
20385         Module backupfile.
20386         * m4/backupfile.m4: New file.
20387         * m4/d-ino.m4: Indentation.
20388
20389         Module fsusage.
20390         * m4/fsusage.m4 (gl_FSUSAGE): New macro.
20391         (jm_STATFS_TRUNCATES): New macro, from coreutils-4.5.4/configure.ac.
20392         (gl_PREREQ_FSUSAGE_EXTRA): New macro.
20393
20394         Module dirfd.
20395         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Invoke some AC_EGREP_CPP
20396         requirements.
20397
20398         Module euidaccess.
20399         * m4/euidaccess.m4: New file.
20400
20401         Module file-type.
20402         * m4/file-type.m4: New file.
20403
20404         Module fileblocks.
20405         * m4/fileblocks.m4: New file.
20406
20407         Module filemode.
20408         * m4/filemode.m4: New file.
20409
20410         Module isdir.
20411         * m4/isdir.m4: New file.
20412
20413         Module lchown.
20414         * m4/lchown.m4 (gl_PREREQ_LCHOWN): New macro.
20415         (jm_FUNC_LCHOWN): Invoke gl_PREREQ_LCHOWN.
20416
20417         Module makepath.
20418         * m4/makepath.m4: New file.
20419
20420         Module modechange.
20421         * m4/modechange.m4: New file.
20422
20423         Module mountlist.
20424         * m4/mountlist.m4: New file.
20425         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Use onceonly macros.
20426         Indentation.
20427
20428         Module path-concat.
20429         * m4/path-concat.m4: New file.
20430
20431         Module pathmax.
20432         * m4/pathmax.m4: New file.
20433
20434         Module same.
20435         * m4/same.m4: New file.
20436
20437         Module save-cwd.
20438         * m4/save-cwd.m4: New file.
20439
20440         Module savedir.
20441         * m4/savedir.m4: New file.
20442
20443         Module xgetcwd.
20444         * m4/xgetcwd.m4: New file.
20445         * m4/getcwd.m4 (AC_FUNC_GETCWD_NULL): Use onceonly macros.
20446
20447         Module xreadlink.
20448         * m4/xreadlink.m4: New file.
20449
20450         Module safe-read.
20451         * m4/safe-read.m4: New file.
20452
20453         Module safe-write.
20454         * m4/safe-write.m4: New file.
20455
20456         Module closeout.
20457         * m4/closeout.m4: New file.
20458
20459         Module stdio-safer.
20460         * m4/stdio-safer.m4: New file.
20461
20462         Module getpass.
20463         * m4/getpass.m4: New file.
20464
20465         Module getugroups.
20466         * m4/getugroups.m4: New file.
20467
20468         Module group-member.
20469         * m4/group-member.m4 (gl_PREREQ_GROUP_MEMBER): New macro.
20470         (jm_FUNC_GROUP_MEMBER): Invoke AC_GNU_SOURCE, gl_PREREQ_GROUP_MEMBER.
20471
20472         Module idcache.
20473         * m4/idcache.m4: New file.
20474
20475         Module userspec.
20476         * m4/userspec.m4: New file.
20477
20478         Module gettime.
20479         * m4/clock_time.m4: New file.
20480         * m4/gettime.m4: New file.
20481
20482         Module settime.
20483         * m4/settime.m4: New file.
20484
20485         Module posixtm.
20486         * m4/posixtm.m4: New file.
20487
20488         Module gethostname.
20489         * m4/gethostname.m4: New file.
20490
20491         Module canon-host.
20492         * m4/canon-host.m4: New file.
20493
20494         Module gettext.
20495         * m4/codeset.m4: New file, from gettext-0.11.5.
20496         * m4/gettext.m4: New file, from gettext-0.11.5.
20497         * m4/glibc21.m4: New file, from gettext-0.11.5.
20498         * m4/iconv.m4: New file, from gettext-0.11.5.
20499         * m4/intdiv0.m4: New file, from gettext-0.11.5.
20500         * m4/inttypes-pri.m4: New file, from gettext-0.11.5.
20501         * m4/inttypes.m4: New file, from gettext-0.11.5.
20502         * m4/inttypes_h.m4: New file, from gettext-0.11.5 with modifications.
20503         * m4/isc-posix.m4: New file, from gettext-0.11.5.
20504         * m4/lcmessage.m4: New file, from gettext-0.11.5.
20505         * m4/lib-ld.m4: New file, from gettext-0.11.5.
20506         * m4/lib-link.m4: New file, from gettext-0.11.5.
20507         * m4/lib-prefix.m4: New file, from gettext-0.11.5.
20508         * m4/progtest.m4: New file, from gettext-0.11.5.
20509         * m4/stdint_h.m4: New file, from gettext-0.11.5 with modifications.
20510         * m4/uintmax_t.m4: New file, from gettext-0.11.5 with modifications.
20511         * m4/ulonglong.m4: New file, from gettext-0.11.5 with modifications.
20512
20513         Module localcharset.
20514         * m4/localcharset.m4: New file.
20515
20516         Module hard-locale.
20517         * m4/hard-locale.m4: New file.
20518
20519         Module mbswidth.
20520         * m4/mbswidth.m4 (gl_MBSWIDTH): Renamed from jm_PREREQ_MBSWIDTH. Use
20521         onceonly macros.
20522         * m4/mbrtowc.m4: Add comment.
20523
20524         Module memcasecmp.
20525         * m4/memcasecmp.m4: New file.
20526
20527         Module memcoll.
20528         * m4/memcoll.m4: New file.
20529
20530         Module unicodeio.
20531         * m4/unicodeio.m4: New file.
20532
20533         Module rpmatch.
20534         * m4/rpmatch.m4: New file.
20535
20536         Module yesno.
20537         * m4/yesno.m4: New file.
20538
20539         Module exitfail.
20540         * m4/exitfail.m4: New file.
20541
20542         Module c-stack.
20543         * m4/c-stack.m4 (gl_C_STACK): New macro.
20544         (jm_PREREQ_C_STACK): Check for <sys/time.h>. Use onceonly macros.
20545
20546         Module error.
20547         * m4/error.m4 (gl_ERROR): New macro.
20548         (jm_PREREQ_ERROR): Use onceonly macros.
20549
20550         Module fatal.
20551         * m4/fatal.m4: New file.
20552
20553         Module getloadavg.
20554         * m4/getloadavg.m4 (AC_FUNC_GETLOADAVG): Use onceonly macros.
20555         (gl_FUNC_GETLOADAVG, gl_PREREQ_GETLOADAVG): New macros.
20556
20557         Module getpagesize.
20558         * m4/getpagesize.m4: New file.
20559
20560         Module getusershell.
20561         * m4/getusershell.m4: New file.
20562
20563         Module physmem.
20564         * m4/physmem.m4: New file.
20565
20566         Module posixver.
20567         * m4/posixver.m4: New file.
20568
20569         Module quotearg.
20570         * m4/quotearg.m4: New file.
20571
20572         Module quote.
20573         * m4/quote.m4: New file.
20574
20575         Module readutmp.
20576         * m4/readutmp.m4: New file, based on jm_PREREQ_READUTMP from prereq.m4.
20577
20578         Module sig2str.
20579         * m4/sig2str.m4: New file.
20580
20581         Other.
20582         * m4/longlong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Remove, moved to
20583         ulonglong.m4.
20584         * m4/intmax_t.m4: New file.
20585         * m4/d-type.m4: Indentation.
20586         * m4/jm-macros.m4: Update.
20587         * m4/prereq.m4 (jm_PREREQ): Update.
20588         (jm_PREREQ_ADDEXT): Remove, obsoleted by backupfile.m4.
20589         (jm_PREREQ_CANON_HOST): Remove, obsoleted by canon-host.m4.
20590         (jm_PREREQ_DIRNAME): Remove, obsoleted by dirname.m4.
20591         (jm_PREREQ_EXCLUDE): Remove, obsoleted by exclude.m4.
20592         (jm_PREREQ_GETPAGESIZE): Remove, obsoleted by getpagesize.m4.
20593         (jm_PREREQ_HARD_LOCALE): Remove, obsoleted by hard-locale.m4.
20594         (jm_PREREQ_HASH): Remove, obsoleted by hash.m4.
20595         (jm_PREREQ_HUMAN): Remove, obsoleted by human.m4.
20596         (jm_PREREQ_MEMCHR): Remove, obsoleted by memchr.m4.
20597         (jm_PREREQ_PHYSMEM): Remove, obsoleted by physmem.m4.
20598         (jm_PREREQ_POSIXVER): Remove, obsoleted by posixver.m4.
20599         (jm_PREREQ_QUOTEARG): Remove, obsoleted by quotearg.m4.
20600         (jm_PREREQ_READUTMP): Remove, obsoleted by readutmp.m4.
20601         (jm_PREREQ_REGEX): Remove, obsoleted by regex.m4.
20602         (jm_PREREQ_STRNLEN): Remove, obsoleted by strnlen.m4.
20603         (jm_PREREQ_TEMPNAME): Remove, obsoleted by mkstemp.m4.
20604         (jm_PREREQ_XGETCWD): Remove, obsoleted by xgetcwd.m4.
20605         (jm_PREREQ_XREADLINK): Remove, obsoleted by xreadlink.m4.
20606         * m4/readdir.m4 (jm_FUNC_READDIR): Use onceonly macros.
20607
20608 2002-12-24  Bruno Haible  <bruno@clisp.org>
20609
20610         * MODULES.txt: Update according to m4/ changes.
20611
20612         Module gettext.
20613         * config.rpath: New file, from gettext-0.11.5.
20614
20615         * modules/*: New module descriptions.
20616         * gnulib-tool: New file.
20617         * MODULES.html.sh: New file.
20618
20619 2002-12-21  Karl Berry  <karl@gnu.org>
20620
20621         * doc/fdl.texi: update to version 1.2.
20622
20623 2002-12-19  Karl Berry  <karl@gnu.org>
20624
20625         * config/config.guess: update from prep.
20626
20627 2002-12-18  Bruno Haible  <bruno@clisp.org>
20628
20629         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't test for localtime_r.
20630         * m4/jm-mktime.m4 (jm_FUNC_MKTIME): Likewise.
20631
20632 2002-12-17  Bruno Haible  <bruno@clisp.org>
20633
20634         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Remove checks for limits.h,
20635         stdlib.h, string.h.
20636
20637 2002-12-17  Bruno Haible  <bruno@clisp.org>
20638
20639         * lib/canon-host.c (strdup): Remove unused declaration.
20640
20641         * lib/fsusage.c: Include full_read.h.
20642         (get_fs_usage): Use full_read instead of safe_read.
20643
20644         * lib/utime.c (utime_null): Use SAFE_READ_ERROR.
20645
20646 2002-12-12  Karl Berry  <karl@gnu.org>
20647
20648         * config/config.guess: update from prep.
20649
20650 2002-12-11  Bruno Haible  <bruno@clisp.org>
20651
20652         * m4/setenv.m4: New file, from gettext-0.11.5.
20653
20654 2002-12-11  Bruno Haible  <bruno@clisp.org>
20655
20656         * lib/setenv.h: Rewritten to cope with systems that have setenv() but
20657         not unsetenv().
20658         * lib/setenv.c, unsetenv.c: Taken from glibc-2.2.4 with the following
20659         modifications:
20660
20661         2002-12-11  Bruno Haible  <bruno@clisp.org>
20662
20663                 * setenv.c (alloca): Fall back to malloc.
20664                 (freea): New macro.
20665                 (setenv): Use freea() to free memory allocated with alloca().
20666
20667         2002-11-13  Bruno Haible  <bruno@clisp.org>
20668
20669                 * setenv.c (compar_fn_t, __add_to_environ, setenv): Use ANSI C
20670                 function declarations.
20671                 * unsetenv.c (unsetenv): Likewise.
20672
20673         2002-03-04  Bruno Haible  <bruno@clisp.org>
20674
20675                 Portability to AIX 4.3.3.
20676                 * unsetenv.c: New file, extracted from setenv.c.
20677                 * setenv.c: Move the unsetenv() function to unsetenv.c.
20678
20679         2001-12-20  Bruno Haible  <bruno@clisp.org>
20680
20681                 * setenv.c (__add_to_environ): Don't call realloc(NULL,...),
20682                 use malloc instead. For SunOS 4.
20683
20684         2001-12-11  Bruno Haible  <bruno@clisp.org>
20685
20686                 * setenv.c: Declare alloca.
20687                 (compar_fn_t): New typedef.
20688                 (KNOWN_VALUE, STORE_VALUE): Use it.
20689
20690         * lib/Makefile.am (libfetish_a_SOURCES): Add setenv.c, unsetenv.c,
20691         setenv.h.
20692
20693 2002-12-10  Paul Eggert  <eggert@twinsun.com>
20694
20695         Port exclude.c and exclude.h to more non-GNU systems, e.g. Solaris 7.
20696         * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE, EXCLUDE_WILDCARDS):
20697         Choose values that are less likely to collide with system fnmatch
20698         options.
20699         * lib/exclude.c (FNM_CASEFOLD, FNM_LEADING_DIR): Define to 0 if not
20700         defined (e.g., a pure POSIX system).
20701         (EXCLUDE_macros_do_not_collide_with_FNM_macros): Use FNM_PATHNAME
20702         instead of FNM_FILE_NAME, for compatibility with pure POSIX sytems.
20703
20704 2002-12-06  Paul Eggert  <eggert@twinsun.com>
20705
20706         Undo the 2001-07-02 change for jm-glibc-io, as it was too much of
20707         a pain in practice to deal with generated m4 files.  This change
20708         goes together with the 2002-12-04 unlocked-io.h change in ../lib.
20709
20710         * m4/Makefile.am.in (Makefile.am): Don't mention jm-glibc-io.m4n
20711         and jm-glibc-io.m4, as they are no longer a special case.
20712         * m4/jm-glibc-io.m4: Rename from jm-glibc-io.m4n, and remove the
20713         kludge and the auto-generation stuff.  Check only whether the
20714         functions are declared, not whether they exist, since older hosts
20715         that don't declare the functions can't use the optimization anyway.
20716
20717 2002-12-06  Jim Meyering  <jim@meyering.net>
20718
20719         * lib/error.c: Be consistent: change `#ifndef _LIBC' to `#if !_LIBC'.
20720
20721         Merge in changes from libc's misc/error.c, in preparation
20722         for the merge of gnulib's changes back into libc.
20723
20724         * lib/error.c (_): Define only if not already defined.
20725         Move definition to follow all #include directives.
20726         Include unlocked-io.h only if !_LIBC.
20727         [_LIBC]: Include <libio/libioP.h>.
20728         [USE_IN_LIBIO]: Include <libio/iolibio.h>
20729         (fflush): Tweak definition to use INTUSE.
20730         (putc): Define.
20731
20732 2002-12-05  Paul Eggert  <eggert@twinsun.com>
20733
20734         * lib/alloca.c [defined emacs]: Include "lisp.h".
20735         (xalloc_die) [defined emacs]: New macro.
20736         (free) [defined emacs && defined EMACS_FREE]: Define to EMACS_FREE.
20737         [! defined emacs]: Include <xalloc.h>.
20738         (POINTER_TYPE) [!defined POINTER_TYPE]: New macro.
20739         (pointer): Typedef to POINTER_TYPE *.
20740         (malloc): Remove decl; we now always use xmalloc.
20741         (alloca): Use old-style definition, since Emacs needs this.
20742         Check for arithmetic overflow when computing combined size.
20743
20744 2002-12-04  Paul Eggert  <eggert@twinsun.com>
20745
20746         Do not generate unlocked-io.h automatically, since it's easier to
20747         maintain it by hand.
20748
20749         * lib/unlocked-io.h: New file, from GNU diffutils,
20750         but with proper copyright notice and attribution.
20751         * lib/gen-uio: Remove.
20752         * lib/Makefile.am: Add copyright notice.
20753         (libfetish_a_SOURCES): Add unlocked-io.h.
20754         (BUILT_SOURCES, all-local): Remove unlocked-io.h.
20755         (DISTCLEANFILES, io_functions): Remove macros.
20756         (EXTRA_DIST): Remove gen_uio.
20757         (unlocked-io.h): Remove rule.
20758
20759 2002-12-04  Jim Meyering  <jim@meyering.net>
20760
20761         Reflect the fact that stat.c and lstat.c are no longer generated.
20762         * lib/Makefile.am (BUILT_SOURCES): Remove stat.c and lstat.c.
20763         (DISTCLEANFILES): Likewise.
20764         (EXTRA_DIST): Likewise.
20765         (all_local): Don't depend on stat.c or lstat.c.
20766         (stat.c, lstat.c): Remove rules.
20767         (EXTRA_DIST): Remove xstat.in.
20768
20769         * lib/xstat.in: Remove file.  Contents moved into stat.c.
20770         * lib/stat.c: New file.  Contents mostly from xstat.in.
20771         * lib/stat.c: Rework so that it may serve to define rpl_lstat, too.
20772         * lib/lstat.c: New file. Simply #define LSTAT and include stat.c.
20773
20774         * lib/safe-read.c: Rework so that it may serve to define safe_write,
20775         too.
20776         * lib/safe-write.c: Simply #define SAFE_WRITE and include safe-read.c.
20777
20778 2002-12-03  Jim Meyering  <jim@meyering.net>
20779
20780         * lib/safe-read.c, safe-write.c: Change variable names and comments,
20781         but not semantics, to minimize the differences between these two files.
20782         (safe_read): Change comment to mention SAFE_READ_ERROR.
20783
20784         * lib/safe-read.c (IS_EINTR): Define.
20785         (safe_read): Use IS_EINTR in place of in-function cpp directives.
20786
20787 2002-12-02  Jim Meyering  <jim@meyering.net>
20788
20789         * lib/safe-read.c (EINTR): Define.
20790         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
20791         (INT_MAX): Provide fallback.
20792         (safe_read): Rewrite to iterate IFF the read fails with EINTR.
20793
20794         * lib/safe-read.h (SAFE_READ_ERROR): Define.
20795
20796 2002-12-02  Bruno Haible  <bruno@clisp.org>
20797
20798         * lib/safe-write.c (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM):
20799         Define, taken from safe-read.c.
20800         (INT_MAX): Provide fallback.
20801         (safe_write): Rewrite to iterate IFF the write fails with EINTR.
20802         * lib/safe-write.h (SAFE_WRITE_ERROR): Define.
20803
20804         * lib/safe-read.c (EINTR): Remove definition.
20805         (safe_read): Don't use EINTR if it is absent.
20806
20807 2002-12-01  Jim Meyering  <jim@meyering.net>
20808
20809         * lib/safe-read.c: (safe_read): Also exit the loop when read returns
20810         zero.
20811         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM, INT_MAX): Define.
20812
20813 2002-11-27  Paul Eggert  <eggert@twinsun.com>
20814
20815         * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
20816         hash_find_entry, hash_rehash): Replace `if (limit <= value) abort ();'
20817         with `if (! (value < limit)) abort ();', for readability.
20818
20819 2002-11-26  Karl Berry  <karl@gnu.org>
20820
20821         * lib/strdup.c: copy from libc again, with jim's ok.
20822         * lib/.cppi-disable: re-add strdup.c
20823
20824 2002-11-25  Karl Berry  <karl@gnu.org>
20825
20826         * lib/strtoll.c: copy from libc, meaning we now #include <strtol.c>
20827         instead of "strtol.c".
20828
20829 2002-11-25  Karl Berry  <karl@gnu.org>
20830
20831         * config/install-sh: update from automake for variable quoting, $0 in
20832         error msgs, etc.
20833
20834         * config/srclist.txt ($LIBCSRC/time/mktime.c lib gpl): new entry.
20835         * config/srclist.txt ($LIBCSRC/sysdeps/generic/strtoll.c lib gpl): new
20836         entry.
20837
20838 2002-11-25  Jim Meyering  <jim@meyering.net>
20839
20840         * lib/mktime.c: Sync from libc, now that it has the latest fix.
20841
20842 2002-11-24  Karl Berry  <karl@gnu.org>
20843
20844         * lib/error.c, getopt.c, getopt.h, getopt1.c, obstack.c, regex.c,
20845         regex.h, strdup.c, strtoll.c, tempname.c: change license to gpl.
20846
20847 2002-11-24  Jim Meyering  <jim@meyering.net>
20848
20849         Update from coreutils:
20850
20851         * lib/mktime.c: Merge in changes from libc.
20852
20853         Avoid a link-time failure on some Linux systems.
20854         * lib/mktime.c (STATIC): Define to be empty (_LIBC) or `static'
20855         (otherwise).
20856         (__mon_yday): Declare with the STATIC attribute.
20857         (__mktime_internal): Likewise.
20858         Based on a report from Greg Schafer.
20859
20860 2002-11-23  Jim Meyering  <jim@meyering.net>
20861
20862         * lib/sig2str.c (str2signum, sig2str): Avoid a warning from gcc:
20863         Use `unsigned', not `int', as type of index.
20864
20865         * lib/xstat.in [@BEGIN_LSTAT_ONLY@]: Include <string.h>.
20866
20867         * lib/fsusage.c: Remove unneeded parentheses around operands of
20868         `defined'.
20869
20870 2002-11-22  Paul Eggert  <eggert@twinsun.com>
20871
20872         * lib/quotearg.h: Allow multiple inclusion by surrounding with
20873         "#ifndef QUOTEARG_H_".  Include <stddef.h>, for size_t,
20874         so that we can be included first.
20875         (PARAMS): Remove; we now assume C89 or later.  All uses removed.
20876         * lib/quotearg.c: Include quotearg.h immediately after config.h.
20877         No need to include stddef.h or sys/types.h any more.
20878         Surround local include files with "", not "<>".
20879         Assume HAVE_LIMITS_H unconditionally, as we assume C89.
20880         Similarly, assume HAVE_C_BACKSLASH_A, CHAR_BIT, UCHAR_MAX, UINT_MAX,
20881         HAVE_STDLIB_H, HAVE_STRING_H, STDC_HEADERS.
20882         (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
20883         (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
20884         (ISPRINT): Remove; no longer needed now that we assume C89.
20885
20886         (clone_quoting_options, quotearg_buffer, quotearg_n_options):
20887         Preserve errno.
20888
20889         (quotearg_buffer_restyled, quotearg_n, quotearg_n_style,
20890         quotearg_char): Use SIZE_MAX rather than
20891         (size_t) -1 when we are talking about "infinity".
20892
20893         (quotearg_buffer_restyled): Fix bug when quoting trigraphs.
20894
20895 2002-11-22  Paul Eggert  <eggert@twinsun.com>
20896
20897         * lib/hash.c: Avoid use of <assert.h>, as the GNU Coding Standards
20898         hint that one should use `if (! x) abort ();' rather than `assert
20899         (x);', and anyway it's one less thing to worry about configuring.
20900         (hash_lookup, hash_get_first, hash_get_next, hash_find_entry,
20901         hash_rehash, hash_insert): Use abort rather than assert.
20902
20903 2002-11-22  Bruno Haible  <bruno@clisp.org>
20904
20905         * lib/safe-read.h: Assume C89. Add comments.
20906         (safe_read): Change return type to size_t.
20907         * lib/safe-read.c (safe_read): Change return type to size_t. Handle
20908         byte counts > SSIZE_MAX correctly.
20909         * lib/safe-write.h: New file.
20910         * lib/safe-write.c: New file.
20911         * lib/full-read.h: New file.
20912         * lib/full-read.c: New file.
20913         * lib/full-write.h: Assume C89. Add comments.
20914         * lib/full-write.c: Include safe-write.h.
20915         (full_write): Rewritten to use safe_write.
20916         Suggested by Jim Meyering and Paul Eggert.
20917
20918 2002-11-21  Jim Meyering  <jim@meyering.net>
20919
20920         * lib/strdup.c (strdup): Tweak comment and initial #if/#include.
20921
20922         Merge in changes from the coreutils.
20923
20924         2002-09-25  Paul Eggert  <eggert@twinsun.com>
20925         * lib/fsusage.c [! HAVE_INTTYPES_H && HAVE_STDINT_H] Include
20926         <stdint.h>.
20927         (UINTMAX_MAX) [!defined UINTMAX_MAX]: New macro.
20928         (PROPAGATE_ALL_ONES): Work even if X is unsigned and narrower than
20929         int.  Work more efficiently if X is the same width as uintmax_t.
20930         Do not compare X to -1, to avoid bogus compiler warning.
20931         (get_fs_usage): (uintmax_t) -1 -> UINTMAX_MAX to avoid a cast.
20932         Don't assume that f_frsize and f_bsize are the same type.
20933
20934         * lib/mountlist.c: #undef MNT_IGNORE before defining it, to avoid
20935         warning on FreeBSD.
20936
20937         * lib/makepath.c (make_path): Restore umask *before* creating the final
20938         component.
20939         (make_path): Minor reformatting.
20940
20941         * lib/xmalloc.c: Adjust to work with new autoconf macros,
20942         AC_FUNC_MALLOC and AC_FUNC_REALLOC: test #ifndef
20943         HAVE_MALLOC/HAVE_REALLOC.
20944
20945         * lib/mountlist.h (ME_DUMMY): Don't count entries of type `auto' as
20946         dummy ones.  At least on GNU/Linux systems, `auto' means something
20947         else.
20948         From Michael Stone.
20949
20950 2002-11-21  Bruno Haible  <bruno@clisp.org>
20951
20952         Remove case insensitive option matching.
20953         * lib/argmatch.h (argcasematch): Remove declaration.
20954         (ARGCASEMATCH): Remove macro.
20955         (__xargmatch_internal): Remove case_sensitive argument.
20956         (XARGMATCH): Update.
20957         (XARGCASEMATCH): Remove macro.
20958         * lib/argmatch.c (argmatch): Renamed from __argmatch_internal. Remove
20959         case_sensitive argument.
20960         (argcasematch): Remove function.
20961         (__xargmatch_internal): Remove case_sensitive argument.
20962         (main): Use XARGMATCH instead of XARGCASEMATCH.
20963
20964         * lib/xmalloc.c: Change compile-time error message. Add comment about
20965         required autoconf version.
20966
20967 2002-11-20  Paul Eggert  <eggert@twinsun.com>
20968
20969         Merge argmatch cleanups from Bison.  Assume C89.
20970
20971         * lib/argmatch.c: Include config.h here, not in argmatch.h.
20972         Include stdlib.h, for EXIT_FAILURE.
20973         Always include <string.h>, since we assume C89.
20974         (EXIT_FAILURE): Remove pre-C89 bug workaround.
20975         * lib/argmatch.h: Do not include <config.h> or <sys/types.h>.
20976         Include <stddef.h> instead, since it's all we need for size_t.
20977         (PARAMS): Remove.  All uses removed.
20978         (ARRAY_CARDINALITY): Do not bother to #undef.
20979         (ARRAY_CARDINALITY, ARGMATCH, ARGCASEMATCH, invalid_arg,
20980         ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
20981         Remove unnecessary parentheses.
20982         (ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
20983         Insert necessary parentheses.
20984         (ARGMATCH_CONSTRAINT, ARGMATCH_VERIFY): New macros.
20985         (ARGMATCH_ASSERT): Use ARGMATCH_CONSTRAINT.
20986
20987 2002-11-19  Bruno Haible  <bruno@clisp.org>
20988
20989         * lib/mbswidth.c: Include mbswidth.h right at the beginning.
20990         * lib/mbswidth.h: Include <stddef.h>, for size_t.
20991
20992         * lib/mbswidth.h (PARAMS): Remove macro.
20993         (mbswidth, mbsnwidth): Use ANSI C function declarations.
20994         * lib/mbswidth.c (mbswidth, mbsnwidth): Likewise.
20995
20996         * lib/gcd.h (PARAMS): Remove macro.
20997         (gcd): Use ANSI C function declarations.
20998         * lib/gcd.c (gcd): Likewise.
20999
21000 2002-11-15  Bruno Haible  <bruno@clisp.org>
21001
21002         * lib/strcspn.c: Include <stddef.h>.
21003         (strcspn): Use ANSI C function declaration. Change return type to
21004         size_t. Use NULL.
21005         * lib/strpbrk.c: Minimize diffs to glibc. Include <stddef.h>.
21006         (strpbrk): Use NULL.
21007         * lib/strpbrk.h (PARAMS): Remove macro.
21008         (strpbrk): Use ANSI C function declaration.
21009         * lib/strstr.c: Don't include <sys/types.h>.
21010         * lib/strstr.h (PARAMS): Remove macro.
21011         (strstr): Use ANSI C function declarations.
21012
21013 2002-11-14  Karl Berry  <karl@gnu.org>
21014
21015         * config/mkinstalldirs: `do' on separate line, instead of
21016         `for var; do'.
21017
21018 2002-11-06  Bruno Haible  <bruno@clisp.org>
21019
21020         * lib/gcd.h (gcd): Change argument type to 'unsigned long'.
21021         * lib/gcd.c (gcd): Likewise.
21022
21023 2002-11-05  Bruno Haible  <bruno@clisp.org>
21024
21025         * lib/gcd.h: New file, from gettext-0.11.5.
21026         * lib/gcd.c: New file, from gettext-0.11.5.
21027
21028 2002-11-05  Bruno Haible  <bruno@clisp.org>
21029
21030         * lib/error.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
21031         * lib/getopt.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
21032         * lib/obstack.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
21033         * lib/regex.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
21034
21035         * lib/argmatch.c: Include gettext.h instead of <locale.h> and
21036         <libintl.h>.
21037         * lib/makepath.c: Include gettext.h instead of <locale.h> and
21038         <libintl.h>.
21039
21040         * lib/closeout.c: Include gettext.h instead of <libintl.h>.
21041         * lib/human.c: Include gettext.h instead of <libintl.h>.
21042         * lib/quotearg.c: Include gettext.h instead of <libintl.h>.
21043         * lib/rpmatch.c: Include gettext.h instead of <libintl.h>.
21044         * lib/unicodeio.c: Include gettext.h instead of <libintl.h>.
21045         * lib/userspec.c: Include gettext.h instead of <libintl.h>.
21046         * lib/version-etc.c: Include gettext.h instead of <libintl.h>.
21047         * lib/xmalloc.c: Include gettext.h instead of <libintl.h>.
21048         (textdomain): Remove definition.
21049         * lib/xmemcoll.c: Include gettext.h instead of <libintl.h>.
21050
21051         * lib/long-options.c: Remove include of <libintl.h> and definition of
21052         _.
21053         * lib/same.c: Remove include of <libintl.h> and definition of _.
21054
21055 2002-11-04  Owen Taylor  <otaylor@redhat.com>
21056
21057         * lib/config.charset: A few additions for Solaris.
21058
21059 2002-11-04  Bruno Haible  <haible@clisp.cons.org>
21060
21061         Make it possible to build libcharset with CC=gcc CFLAGS="-x c++".
21062         * lib/localcharset.c (locale_charset): Declare as extern "C".
21063
21064 2002-11-04  Bruno Haible  <haible@clisp.cons.org>
21065
21066         * lib/config.charset: msdos in uk_UA uses CP1125.
21067
21068 2002-11-04  Bruno Haible  <bruno@clisp.org>
21069
21070         * lib/stpcpy.h: New file, from GNU gettext-0.11.5.
21071         * lib/strcase.h: New file, from GNU gettext-0.11.5.
21072         * lib/strpbrk.h: New file, from GNU gettext-0.11.5.
21073         * lib/strstr.h: New file, from GNU gettext-0.11.5.
21074         * lib/xgetcwd.h: New file, from GNU gettext-0.11.5.
21075
21076 2002-11-04  Bruno Haible  <bruno@clisp.org>
21077
21078         * lib/localcharset.c (locale_charset): Don't return an empty string.
21079
21080 2002-11-04  Bruno Haible  <bruno@clisp.org>
21081
21082         * lib/localcharset.c (get_charset_aliases): Add more Windows specific
21083         aliases.
21084
21085 2002-11-04  Bruno Haible  <bruno@clisp.org>
21086
21087         * lib/config.charset: Update for newest glibc. Add canonical names
21088         ISO-8859-14, KOI8-T, TCVN5712-1, GEORGIAN-PS.
21089
21090 2002-11-04  Bruno Haible  <bruno@clisp.org>
21091
21092         * lib/config.charset: Add support for NetBSD.
21093
21094 2002-11-04  Bruno Haible  <bruno@clisp.org>
21095
21096         * lib/config.charset [msdosdjgpp]: For Russian, use CP866.
21097
21098 2002-11-01  Bruno Haible  <bruno@clisp.org>
21099
21100         * configure.in: Add AC_CONFIG_AUX_DIR call.
21101         (AC_OUTPUT): Add m4/Makefile, lib/Makefile. Remove doc/Makefile,
21102         test/Makefile.
21103         * Makefile.in (subdirs): Add m4, lib. Remove doc, test.
21104
21105 2002-09-28  Karl Berry  <karl@gnu.org>
21106
21107         * config/srclist.txt: can't copy install-sh/mkinstalldirs from
21108         installed automake until the next release, since changes have been
21109         made.
21110
21111 2002-09-25  Karl Berry  <karl@gnu.org>
21112
21113         * lib/strdup.c: copy from libc/string (via ../config/srclist*).
21114         * lib/getopt*: copy from libc/posix.
21115         * lib/gettext.h: copy from gettext.
21116         * lib/.cppi-disable: add strdup.c, gettext.h.
21117
21118 2002-09-25  Karl Berry  <karl@gnu.org>
21119
21120         * config/srclist.txt: enable gettext.h check.
21121         * config/config.{guess,sub}: update from prep.
21122         * config/depcomp, install-sh, mdate-sh, missing, mkinstalldirs: update
21123                 from automake 1.6.3.
21124         See srclist*.
21125
21126 2002-08-23  Stefan Monnier  <monnier@cs.yale.edu>
21127
21128         * regex.c (PATFETCH): Remove the translating fetch.
21129         (PATFETCH_RAW): Rename to PATFETCH.
21130         (set_image_of_range): New fun.
21131         (SET_RANGE_TABLE_WORK_AREA): Use it.
21132         (regex_compile): Don't translate the pattern chars so eagerly.
21133         Only do it when inserting an `exactn' bytecode or when handling
21134         a char-range.
21135         (mutually_exclusive_p): Avoid empty statement.
21136
21137 2002-07-06  Jim Meyering  <meyering@lucent.com>
21138
21139         * m4/README: Don't mention Makefile.am.in.
21140         Outline how I've tested changes to .m4 files.  Yep, it's a pain.
21141
21142 2002-07-01  Jim Meyering  <meyering@lucent.com>
21143
21144         * lib/c-stack.c: Include sys/time.h.
21145         From Volker Borchert.
21146
21147 2002-06-26  Paul Eggert  <eggert@twinsun.com>
21148
21149         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for btowc.
21150
21151 2002-06-26  Paul Eggert  <eggert@twinsun.com>
21152
21153         * lib/fnmatch.c, fnmatch_loop.c (WIDE_CHAR_SUPPORT):
21154         New macro.  Use it uniformly instead of
21155         (defined HAVE_WCTYPE_H && defined HAVE_WCHAR_H).
21156         It also uses HAVE_BTOWC, to fix a porting bug on Solaris 2.5.1
21157         reported by Vin Shelton.
21158
21159 2002-06-22  Paul Eggert  <eggert@twinsun.com>
21160
21161         * lib/c-stack.h (segv_handler, c_stack_action) [! defined SA_SIGINFO]:
21162         Do not assume SA_SIGINFO behavior.
21163         Bug reported by Jim Meyering on NetBSD 1.5.2.
21164
21165 2002-06-22  Jim Meyering  <meyering@lucent.com>
21166
21167         * m4/c-stack.m4: New file, from diffutils-2.8.2.
21168         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_C_STACK.
21169
21170         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Don't require AC__GNU_SOURCE,
21171         now that configure.ac uses AC_GNU_SOURCE.
21172         (jm_MACROS): Rename: jm_FUNC_FNMATCH to AC_FUNC_FNMATCH_GNU.
21173         * m4/prereq.m4 (jm_PREREQ_EXCLUDE): Likewise, wrt jm_FUNC_FNMATCH.
21174
21175         Update to latest tools.  Suggestions from Paul Eggert.
21176         * m4/stdbool.m4: New file, from diffutils-2.8.2.
21177         * m4/gnu-source.m4: Update from diffutils-2.8.2.
21178         * m4/fnmatch.m4: Likewise.
21179         * m4/prereq.m4: Change each use of AC_CHECK_HEADERS(stdbool.h)
21180         to AC_HEADER_STDBOOL
21181
21182 2002-06-22  Jim Meyering  <meyering@lucent.com>
21183
21184         * lib/fnmatch.c (ISASCII, ISPRINT): Undefine, to avoid warning about
21185         redefinition due to Solaris 2.6's definition in /usr/include/sys/euc.h.
21186
21187 2002-06-22  Jim Meyering  <meyering@lucent.com>
21188
21189         * lib/c-stack.c, lib/c-stack.h: New files, from diffutils-2.8.2.
21190
21191         * lib/exitfail.c, exitfail.h: Likewise.
21192         * lib/Makefile.am (libfetish_a_SOURCES): Add exitfail.c and exitfail.h.
21193
21194         * lib/Makefile.am (libfetish_a_SOURCES): Add fnmatch_.h in place
21195         of fnmatch.h.
21196         (EXTRA_DIST): Add fnmatch_loop.c.
21197         (libfetish_a_SOURCES): Add c-stack.c and c-stack.h.
21198
21199         * lib/fnmatch_loop.c: New file, from diffutils-2.8.2.
21200         * lib/fnmatch.c: Update from diffutils-2.8.2.
21201         * lib/fnmatch_.h: New file.  From diffutils-2.8.2.
21202         * lib/fnmatch.h: Remove file.
21203
21204 2002-06-21  Jim Meyering  <meyering@lucent.com>
21205
21206         * m4/c-bs-a.m4: Add comment, from diffutils-2.8.2.
21207         * m4/mbrtowc.m4: Likewise.
21208
21209         * m4/mbstate_t.m4: Update from diffutils-2.8.2.
21210         * m4/mbswidth.m4: Reflect name change:
21211         s/AC_MBSTATE_T/AC_TYPE_MBSTATE_T.
21212         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Likewise.
21213
21214         * m4/lib-link.m4: Update from gettext-0.11.2.
21215         * m4/gettext.m4: Likewise.
21216
21217         * m4/jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for hurd.h.
21218         From Alfred M. Szmidt.
21219
21220 2002-06-18  Paul Eggert  <eggert@twinsun.com>
21221
21222         * lib/file-type.h: Report an error if neither S_ISREG nor
21223         S_IFREG is defined, instead of using a test specific to glibc
21224         2.2.  This should be safe, since POSIX requires S_ISREG and
21225         Unix Version 7 had S_IFREG.  We don't need to check for
21226         <sys/types.h> since we don't use any symbols that it defines.
21227
21228 2002-06-15  Richard Dawe  <richdawe@bigfoot.com>
21229
21230         * lib/Makefile.am (lstat.c, stat.c, .sin.sed): Use t-$@, rather than
21231         $@-t, so that each temporary file name is unique and valid in the first
21232         8 characters, for operation under DOS.
21233
21234 2002-06-15  Paul Eggert  <eggert@twinsun.com>
21235
21236         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for st_author.
21237
21238 2002-06-15  Jim Meyering  <meyering@lucent.com>
21239
21240         Work even with DJGPP 2.03, which lacks support for symlinks.
21241         From Richard Dawe.
21242         * lib/xstat.in (S_ISLNK): Define to 0 if neither S_ISLNK nor S_IFLNK
21243         is defined.
21244         * lib/lchown.c (S_ISLNK): Likewise.
21245
21246 2002-06-15  Jim Meyering  <meyering@lucent.com>
21247
21248         * lib/file-type.h (FILE_TYPE_H): Guard entire contents with #ifndef.
21249         For GNU libc 2.2 and newer, ensure that <sys/types.h> and <sys/stat.h>
21250         have been included before this file.
21251
21252 2002-06-14  Jim Meyering  <meyering@lucent.com>
21253
21254         * lib/file-type.h: Use the version from diffutils-2.8.2.
21255         * lib/file-type.c: Likewise.
21256
21257 2002-06-07  Jim Meyering  <meyering@lucent.com>
21258
21259         * m4/prereq.m4 (jm_PREREQ_STAT): Check for sys/param.h and sys/mount.h.
21260         They're needed at least for NetBSD 1.5.2.
21261         ($statxfs_includes): Include those same headers.
21262         ($statxfs_includes): Include sys/vfs.h if available.
21263         ($statxfs_includes): Likewise for sys/statvfs.h.
21264         Check for the following members in both structs statfs and statvfs:
21265         f_basetype, f_type, f_fsid.__val, f_namemax, f_namelen.
21266
21267 2002-06-01  Jim Meyering  <meyering@lucent.com>
21268
21269         * m4/d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename macro:
21270         s/D_TYPE_IN_DIRENT/HAVE_STRUCT_DIRENT_D_TYPE/.
21271
21272 2002-05-28  Jim Meyering  <meyering@lucent.com>
21273
21274         * m4/readdir.m4 (jm_FUNC_READDIR): Undefine `mkdir', not `rmdir'.
21275         Reported by Volker Borchert.
21276
21277 2002-05-27  Jim Meyering  <meyering@lucent.com>
21278
21279         Fix a problem seen only on nonconforming systems whereby ls.c's
21280         use of localtime, and then of gettimeofday would cause trouble:
21281         the localtime call used to initialize rpl_gettimeofday's save
21282         mechanism would clobber ls's current local time information so
21283         that in any long listing the first file would always be listed
21284         with date 1970-01-01.  Analysis by Volker Borchert.
21285
21286         * lib/gettimeofday.c (localtime): Undefine.
21287         (rpl_localtime): New function.
21288
21289 2002-05-27  Jim Meyering  <meyering@lucent.com>
21290
21291         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Also replace
21292         localtime.
21293
21294         * m4/readdir.m4 (jm_FUNC_READDIR): Undefine `rmdir' so we don't try to
21295         use the replacement function; it wouldn't resolve at link time.
21296         Reported by Volker Borchert.
21297
21298 2002-05-22  Jim Meyering  <meyering@lucent.com>
21299
21300         * lib/Makefile.am (libfetish_a_SOURCES): Add file-type.c and
21301         file-type.h.
21302         * lib/file-type.h: New file.
21303         * lib/file-type.c (file_type): New file/function.  Extracted from
21304         diffutils.
21305
21306 2002-04-30  Jim Meyering  <meyering@lucent.com>
21307
21308         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_STAT.
21309
21310 2002-04-29  Paul Eggert  <eggert@twinsun.com>
21311
21312         * m4/prereq.m4 (jm_PREREQ_SIG2STR): Remove; all callers changed.
21313
21314 2002-04-29  Paul Eggert  <eggert@twinsun.com>
21315
21316         * m4/prereq.m4 (jm_PREREQ_HARD_LOCALE): Check for stdlib.h.
21317         Do not check for alloca.h (no longer used) or stdbool.h (was never
21318         used?).  Add AM_C_PROTOTYPES since hard-locale.h uses it.
21319
21320 2002-04-29  Paul Eggert  <eggert@twinsun.com>
21321
21322         * lib/hard-locale.c: Upgrade to version used in GNU Diffutils 2.8.1.
21323
21324 2002-04-29  Jim Meyering  <meyering@lucent.com>
21325
21326         * m4/jm-macros.m4 (jm_MACROS): Remove use of AC_FUNC_STRNLEN.
21327         * m4/prereq.m4: Add jm_PREREQ_STRNLEN.
21328         Use AC_FUNC_STRNLEN here instead.
21329
21330         * m4/jm-macros.m4: Don't AC_REQUIRE([AC_PROG_CC_STDC]).
21331         With autoconf-2.53a, it's part of AC_PROG_CC.
21332
21333 2002-04-28  Paul Eggert  <eggert@twinsun.com>
21334
21335         * m4/jm-macros.m4 (jm_MACROS): Add AC_REPLACE_FUNCS(sig2str).
21336         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_SIG2STR.
21337
21338 2002-04-28  Paul Eggert  <eggert@twinsun.com>
21339
21340         * lib/sig2str.h, lib/sig2str.c: New files.
21341         * lib/Makefile.am (libfetish_a_SOURCES): Add sig2str.h.
21342
21343 2002-04-28  Paul Eggert  <eggert@twinsun.com>
21344
21345         * lib/sig2str.h (SIGNUM_BOUND): Do not use WTERMSIG, to avoid
21346         depending on <sys/wait.h> and WTERMSIG.  Default to 64 instead
21347         of 127, since 64 is the largest conceivable number for ancient
21348         nonstandard hosts.
21349         * lib/sig2str.c: Do not include <sys/wait.h>; no longer needed.
21350
21351 2002-04-28  Jim Meyering  <meyering@lucent.com>
21352
21353         * lib/sig2str.c (WTERMSIG): Remove definition (unused).
21354
21355 2002-04-24  Jim Meyering  <meyering@lucent.com>
21356
21357         * m4/prereq.m4 (jm_PREREQ_HARD_LOCALE): New macro.
21358         (jm_PREREQ): Use it.
21359
21360         * m4/getloadavg.m4: Check for these headers: locale.h unistd.h
21361         mach/mach.h fcntl.h.
21362         Check for this function: setlocale.
21363
21364 2002-04-24  Jim Meyering  <meyering@lucent.com>
21365
21366         * lib/gettext.h: New file, from Gettext.
21367         * lib/Makefile.am (INCLUDES): Remove -I../intl.
21368         (libfetish_a_SOURCES): Add gettext.h.
21369
21370 2002-04-16  Jim Meyering  <meyering@lucent.com>
21371
21372         * m4/prereq.m4 (jm_PREREQ_READUTMP): Also check for these members:
21373         ut_pid, ut_id, ut_exit.
21374
21375 2002-04-16  Jim Meyering  <meyering@lucent.com>
21376
21377         * lib/readutmp.h (UT_TYPE): Remove definition (now in who.c).
21378         (HAVE_STRUCT_XTMP_UT_EXIT, HAVE_STRUCT_XTMP_UT_ID): Define.
21379         (HAVE_STRUCT_XTMP_UT_PID, HAVE_STRUCT_XTMP_UT_TYPE): Define.
21380
21381 2002-04-12  Jim Meyering  <meyering@lucent.com>
21382
21383         * m4/ls-mntd-fs.m4 (checking for getmntinfo function...): Remove
21384         now-bogus check for f_type in sys/mount.h.  Instead, just test for the
21385         existence of the getmntinfo function.  Needed for Darwin 5.3.
21386
21387         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Also detect when dirfd is a macro.
21388         This is necessary at least on Darwin 5.3.
21389
21390         * m4/jm-macros.m4: Don't AC_REPLACE(strnlen), now that we use
21391         AC_FUNC_STRNLEN.  Otherwise, we'd end up putting two copies of
21392         strnlen.o in the library, and that makes some versions of ranlib
21393         object.
21394
21395 2002-04-12  Jim Meyering  <meyering@lucent.com>
21396
21397         * lib/dirfd.h (dirfd): Elide prototype if dirfd is a macro.
21398
21399 2002-04-09  Jim Meyering  <meyering@lucent.com>
21400
21401         * m4/malloc.m4: (jm_FUNC_MALLOC): Change the `checking ...' message
21402         to be more precise.  Rather than saying we're checking whether the
21403         function `works', say what we're testing.
21404         * m4/realloc.m4 (jm_FUNC_REALLOC): Likewise.
21405         Reported by Bruno Haible.
21406
21407 2002-03-10  Jim Meyering  <meyering@lucent.com>
21408
21409         * lib/makepath.c (make_path): Remove a comma from a diagnostic.
21410         Suggestion from Santiago Vila.
21411
21412 2002-03-08  Jim Meyering  <meyering@lucent.com>
21413
21414         * lib/rename.c: Mention that this wrapper is needed also on
21415         mips-dec-ultrix4.4 systems.
21416
21417 2002-03-02  Jim Meyering  <meyering@lucent.com>
21418
21419         * lib/gettime.c (gettime): Test HAVE_CLOCK_GETTIME,
21420         not HAVE_CLOCK_SETTIME.
21421
21422 2002-02-27  Paul Eggert  <eggert@twinsun.com>
21423
21424         * m4/jm-macros.m4 (jm_MACROS): Do not replace stime; no longer used.
21425         Check for clock_settime.
21426
21427 2002-02-27  Paul Eggert  <eggert@twinsun.com>
21428
21429         * lib/nanosleep.h: Rename to....
21430         * lib/timespec.h: New name for nanosleep.h.  All uses changed.
21431
21432         * lib/gettime.c: New file.
21433         * lib/settime.c: New file.
21434         * lib/stime.c: Remove.
21435
21436         * lib/Makefile.am (libfetish_a_SOURCES): Add gettime.c, settime.c,
21437         timespec.h.  Remove nanosleep.h.
21438
21439 2002-02-25  Paul Eggert  <eggert@twinsun.com>
21440
21441         * m4/acl.m4: New file.
21442         * m4/jm-macros.m4 (jm_MACROS): Require AC_FUNC_ACL.
21443         Do not check for acl or sys/acl.h, as AC_FUNC_ACL does that now.
21444
21445 2002-02-25  Paul Eggert  <eggert@twinsun.com>
21446
21447         * lib/acl.c, lib/acl.h: New files.
21448         * lib/Makefile.am (libfetish_a_SOURCES): Add acl.h, acl.c.
21449
21450 2002-02-24  Jim Meyering  <meyering@lucent.com>
21451
21452         * lib/strnlen.c (strnlen): Define-away/undef so that an inconsistent
21453         prototype in string.h (on at least AIX4.3.2.0 w/gcc-2.95.3) doesn't
21454         cause trouble.  Reported by Nelson Beebe.
21455
21456 2002-02-23  Paul Eggert  <eggert@twinsun.com>
21457
21458         * lib/path-concat.c (xpath_concat): Reorder code to pacify
21459         compilers that don't know that xalloc_die never returns.
21460
21461 2002-02-20  Jim Meyering  <meyering@lucent.com>
21462
21463         * lib/getdate.c: Regenerate using bison-1.33.
21464
21465 2002-02-17  Jim Meyering  <meyering@lucent.com>
21466
21467         * config/config.guess (main): Don't use `head -1'; it's no longer
21468         portable. Use `sed 1q' instead.
21469
21470 2002-02-16  gettextize  <bug-gnu-gettext@gnu.org>
21471
21472         * m4/codeset.m4: Upgrade to gettext-0.11.
21473         * m4/gettext.m4: Upgrade to gettext-0.11.
21474         * m4/glibc21.m4: Upgrade to gettext-0.11.
21475         * m4/iconv.m4: Upgrade to gettext-0.11.
21476         * m4/isc-posix.m4: Upgrade to gettext-0.11.
21477         * m4/lcmessage.m4: Upgrade to gettext-0.11.
21478         * m4/lib-ld.m4: New file, from gettext-0.11.
21479         * m4/lib-link.m4: New file, from gettext-0.11.
21480         * m4/lib-prefix.m4: New file, from gettext-0.11.
21481         * m4/progtest.m4: Upgrade to gettext-0.11.
21482
21483 2002-02-15  Paul Eggert  <eggert@twinsun.com>
21484
21485         * m4/prereq.m4 (jm_PREREQ_POSIXVER): New macro.
21486         (jm_PREREQ): Use it.
21487
21488 2002-02-15  Paul Eggert  <eggert@twinsun.com>
21489
21490         * lib/posixver.c, lib/posixver.h: New files.
21491         * lib/Makefile.am (libfetish_a_SOURCES): Add them.
21492
21493 2002-02-02  Paul Eggert  <eggert@twinsun.com>
21494             Bruno Haible  <bruno@clisp.org>
21495
21496         * lib/unicodeio.h (print_unicode_char): Add exit_on_error argument.
21497         (fwrite_success_callback): New declaration.
21498         * lib/unicodeio.c (unicode_to_mb): New function, extracted from
21499         print_unicode_char. Call failure callback instead of error.
21500         (fwrite_success_callback): New function.
21501         (exit_failure_callback): New function.
21502         (fallback_failure_callback): New function.
21503         (print_unicode_char): Call unicode_to_mb.
21504
21505 2002-01-26  Jim Meyering  <meyering@lucent.com>
21506
21507         * m4/jm-macros.m4 (jm_MACROS): Require autoconf-2.52g.
21508         * m4/strnlen.m4: Remove file, now that it's part of autoconf.
21509
21510 2002-01-26  Jim Meyering  <meyering@lucent.com>
21511
21512         * lib/Makefile.am (getdate$U.o): Depend on unlocked-io.h.
21513
21514 2002-01-22  Paul Eggert  <eggert@twinsun.com>
21515
21516         * m4/jm-macros.m4 (jm_MACROS): Require AC_FUNC_FSEEKO.
21517
21518 2002-01-22  Jim Meyering  <meyering@lucent.com>
21519
21520         * lib/Makefile.am (Makefile): Don't depend on $(BUILT_SOURCES).
21521         Otherwise, some versions of automake would omit the rule that makes
21522         Makefile from Makefile.in.
21523
21524 2002-01-21  Paul Eggert  <eggert@twinsun.com>
21525
21526         * lib/xmemcoll.h, lib/xmemcoll.c: New files.
21527         * lib/Makefile.am (libfetish_a_SOURCES): Add them.
21528         * lib/memcoll.c: Include errno.h, and declare errno if not defined.
21529         (memcoll): Set errno to zero if there is no error.
21530
21531         * lib/quotearg.c (quotearg_buffer_restyled):
21532         Fix bug with quoting buffers containing NUL when backslashing escapes.
21533         This bug was exposed by the other changes in this patch.
21534         (quotearg_n_options): New arg ARGSIZE.
21535         All callers changed.
21536         (quoting_options_from_style): New function.
21537         (quotearg_n_style): Use it.
21538         (quotearg_n_style_mem): New function.
21539
21540         * lib/quotearg.h (quotearg_n_style_mem): New function.
21541
21542 2002-01-19  Jim Meyering  <meyering@lucent.com>
21543
21544         * m4/jm-macros.m4 (jm_MACROS): Use AC_FUNC_STRNLEN.
21545         Remove useless quotes: DF_PROG="df".
21546         * m4/strnlen.m4: New file.
21547
21548 2002-01-16  Paul Eggert  <eggert@twinsun.com>
21549
21550         * lib/backupfile.c (ISDIGIT): Comment fix.
21551         * lib/getdate.y (ISDIGIT): Likewise.
21552         * lib/posixtm.c (ISDIGIT, year): Likewise.
21553         * lib/strverscmp.c (ISDIGIT): Likewise.
21554         * lib/userspec.c (ISDIGIT): Likewise.
21555
21556 2002-01-16  Jim Meyering  <meyering@lucent.com>
21557
21558         * lib/getdate.y: Add three semicolons, each just before a closing
21559         brace. Bison (as of version 1.31) no longer papers over that mistake.
21560
21561 2002-01-05  Jim Meyering  <meyering@lucent.com>
21562
21563         * lib/version-etc.c (version_etc_copyright): Update copyright year.
21564
21565 2001-12-19  Paul Eggert  <eggert@twinsun.com>
21566
21567         * lib/closeout.c (close_stdout_status): If ferror (stdout), do
21568         not silently exit merely because the output buffer happens to
21569         have nothing pending.
21570
21571 2001-12-18  Paul Eggert  <eggert@twinsun.com>
21572
21573         See the big note in ../ChangeLog.
21574         * lib/human.c (suffixes): Prefer K to k for 1024.
21575         (generate_suffix_backwards): New function.
21576         (human_readable_inexact): Use it.
21577         * lib/xstrtol.c (__xstrtol): If there is no number but there
21578         is a valid suffix, assume 1.  "MB" now means decimal, "MiB" binary.
21579         Accept 'K' as well as 'k'.
21580
21581 2001-12-15  Jim Meyering  <meyering@lucent.com>
21582
21583         * lib/regex.h (__restrict_arr): Update from libc.
21584
21585         * lib/mountlist.h (ME_REMOTE): Recognize file systems of type smbfs
21586         as `remote' if the name starts with `//'.  Suggested by Michael Stone.
21587         (STREQ): Define.
21588
21589 2001-12-14  Jim Meyering  <meyering@lucent.com>
21590
21591         * m4/jm-macros.m4 (jm_MACROS): Check for iswspace.
21592         Suggestion from Bruno Haible.
21593
21594 2001-12-10  Jim Meyering  <meyering@lucent.com>
21595
21596         * lib/linebuffer.c: Remove explicit declarations of xmalloc and
21597         xrealloc, Instead, include "xalloc.h".
21598         (initbuffer): Don't cast xmalloc return value to char*.
21599         (readline): Reword comment.
21600         Don't cast xrealloc return value to char*
21601         Return NULL, not 0.
21602
21603 2001-12-09  Jim Meyering  <meyering@lucent.com>
21604
21605         * lib/modechange.c (mode_compile): Add cast to avoid pedantic warning
21606         about `signed and unsigned type in conditional expression'.
21607         * lib/posixtm.c (posix_time_parse): Likewise.
21608
21609         * lib/xreadlink.c (xreadlink): Add cast to avoid a pedantic warning.
21610
21611         * lib/readtokens.c (readtoken): Declare an index to be of type unsigned
21612         to avoid a pedantic warning.
21613
21614         * lib/getstr.c: Don't include assert.h.
21615         (getstr): Remove warning-evoking assertions.
21616         Return -1 if offset parameter is out of bounds.
21617         Change the type of a local from int to size_t.
21618
21619         * lib/strftime.c (my_strftime_localtime_r): Include this function
21620         definition in the `#if ! HAVE_TM_GMTOFF' block.
21621
21622         * lib/xgethostname.c: Remove declarations of xmalloc and xrealloc.
21623         Include xalloc.h instead.
21624
21625 2001-12-02  Jim Meyering  <meyering@lucent.com>
21626
21627         * lib/tempname.c: Don't declare getenv, thus reverting the change of
21628         2001-11-18.  It's no longer necessary, now that stdlib.h is always
21629         included.
21630
21631         * lib/regex.c [!__BOUNDED_POINTERS__]: Define away __bounded,
21632         __unbounded, and __ptrvalue.  Reported by Uwe H. Steinfeld.
21633
21634 2001-11-30  Akim Demaille  <akim@epita.fr>
21635
21636         * lib/xstrdup.c: Include xalloc.h, so that xstrdup is declared
21637         before being defined.
21638
21639 2001-11-27  Paul Eggert  <eggert@twinsun.com>
21640
21641         * lib/quotearg.h (quotearg_n, quotearg_n_style):
21642         First arg is int, not unsigned.
21643         * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
21644         (SIZE_MAX, UINT_MAX): New macros.
21645         (quotearg_n_options): Abort if N is negative.
21646         Avoid overflow check on hosts where size_t is 64 bits and int
21647         is 32 bits, as overflow is impossible there.
21648         Fix off-by-one typo that caused unnecessary reallocation.
21649
21650 2001-11-27  Jim Meyering  <meyering@lucent.com>
21651
21652         * lib/tempname.c: Merge with version from libc.
21653         * lib/regex.c: Likewise.
21654
21655         * lib/tempname.c: Include stdlib.h unconditionally.  On some old
21656         systems for which STDC_HEADERS is 0, it was not included, resulting in
21657         a warning about an integer-to-pointer conversion problem with getenv.
21658         Reported by Volker Borchert.
21659
21660 2001-11-26  Jim Meyering  <meyering@lucent.com>
21661
21662         * lib/gtod.h: Remove file.
21663         * lib/Makefile.am (libfetish_a_SOURCES): Remove gtod.h.
21664         * lib/gettimeofday.c: Don't include gtod.h.
21665         (GTOD_init): Remove function.
21666         (rpl_gettimeofday): Do its job here instead, rather than aborting.
21667         Suggestion from Volker Borchert.
21668
21669 2001-11-23  Jim Meyering  <meyering@lucent.com>
21670
21671         * lib/hash.h (struct hash_table): Don't define here.  Merely declare
21672         it.
21673         * lib/hash.c (struct hash_table): Define it here instead.
21674
21675 2001-11-22  Jim Meyering  <meyering@lucent.com>
21676
21677         * lib/hash.h: Bracket contents of file with #ifndef HASH_H_ ... #endif.
21678
21679 2001-11-20  Jim Meyering  <meyering@lucent.com>
21680
21681         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Update comment to reflect that
21682         SunOS 4.1.4 and Solaris 2.5.1 lose, too.
21683
21684 2001-11-19  Jim Meyering  <meyering@lucent.com>
21685
21686         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Don't bother with a temporary
21687         directory.  Use "conftestXXXXXX" as the template.
21688         Suggestion from Paul Eggert.
21689
21690         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Close each descriptor
21691         immediately, so the test doesn't mistakenly hit the max-open-files
21692         limit.
21693
21694 2001-11-18  Paul Eggert  <eggert@twinsun.com>
21695
21696         * lib/tempname.c (TMP_MAX): Remove; no longer needed.
21697         (TEMPORARIES): New macro.
21698         (__gen_tempname): Use TEMPORARIES rather than TMP_MAX.  This
21699         removes an artificial limitation (e.g. HP-UX 10.20, where
21700         TMP_MAX is 17576).
21701
21702 2001-11-18  Jim Meyering  <meyering@lucent.com>
21703
21704         * m4/prereq.m4 (jm_PREREQ_TEMPNAME): Check for declaration of getenv.
21705
21706 2001-11-18  Jim Meyering  <meyering@lucent.com>
21707
21708         * lib/tempname.c [!HAVE_DECL_GETENV]: Declare getenv to avoid warning
21709         on SunOS 4.
21710
21711         * lib/Makefile.am (Makefile): Depend on $(BUILT_SOURCES), so those
21712         files will be created before anything else.
21713
21714 2001-11-17  Paul Eggert  <eggert@twinsun.com>
21715
21716         * m4/jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): Do not define
21717         WINSIZE_IN_PTEM if <termios.h> defines struct winsize.
21718
21719 2001-11-17  Jim Meyering  <meyering@lucent.com>
21720
21721         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): New file and macro.
21722         Prompted by a report from Bob Proulx.
21723
21724         * m4/jm-macros.m4 (jm_MACROS): Don't test for mkstemp here.
21725         Instead, require UTILS_FUNC_MKSTEMP.
21726
21727 2001-11-17  Jim Meyering  <meyering@lucent.com>
21728
21729         * m4/jm-macros.m4 (jm_MACROS): Remove code to set POW_LIBM.
21730         Now, that's done as part of AC_FUNC_STRTOD.
21731
21732 2001-11-17  Jim Meyering  <meyering@lucent.com>
21733
21734         * lib/modechange.c (mode_adjust): Fix error introduced on 1999-04-26
21735         that made e.g., `chmod a=,o=w,g=o F' cause F to be group readable
21736         rather than group writable.  Patch by Juan F. Codagnone.
21737
21738         * lib/readtokens.c: Remove explicit declarations of xmalloc and
21739         xrealloc, Instead, include "xalloc.h".
21740
21741         * lib/mountlist.c: Include unlocked-io.h after all system headers.
21742         Remove explicit declarations of xmalloc, xrealloc,
21743         and xstrdup.  Instead, include "xalloc.h".
21744
21745         * lib/argmatch.c, closeout.c, error.c, exclude.c: Include
21746         unlocked-io.h.
21747         * lib/fatal.c, getdate.y, getpass.c, getstr.c, getusershell.c:
21748         Likewise.
21749         * lib/mountlist.c, posixtm.c, readtokens.c, readutmp.c: Likewise.
21750
21751         * lib/regex.c, sha.c, version-etc.c, yesno.c: Likewise.
21752         Reported by Padraig Brady.
21753
21754         * lib/mkstemp.c: #undef mkstemp.
21755         Include config.h.
21756         (rpl_mkstemp): Rename from mkstemp.
21757         Protoize.
21758
21759 2001-11-16  Jim Meyering  <meyering@lucent.com>
21760
21761         * lib/physmem.c [HAVE_SYS_PSTAT_H]: Include <sys/pstat.h>.
21762         (physmem_total) [HAVE_PSTAT_GETSTATIC]: If sysconf couldn't be used to
21763         determine the amount of total physical memory, use pstat_getstatic.
21764         HPUX-11 doesn't define _SC_PHYS_PAGES.
21765         (physmem_available) [HAVE_PSTAT_GETSTATIC && HAVE_PSTAT_GETDYNAMIC]:
21766         If sysconf couldn't be used to determine the amount of available
21767         physical memory, use both pstat_getstatic and pstat_getdynamic.
21768         Based on a patch from Bob Proulx.
21769
21770 2001-11-10  Jim Meyering  <meyering@lucent.com>
21771
21772         * m4/prereq.m4 (jm_PREREQ_PHYSMEM): New function.
21773         (jm_PREREQ): Use it.
21774
21775 2001-11-09  Jim Meyering  <meyering@lucent.com>
21776
21777         * m4/jm-macros.m4: Require autoconf-2.52f.
21778         (AC_FUNC_ERROR_AT_LINE, AC_FUNC_OBSTACK, AC_FUNC_STRTOD):
21779         Use these AC_-prefixed names, not the AM_-prefixed ones.
21780
21781         * m4/afs.m4 (jm_AFS): Quote the body.  Patch by Akim Demaille.
21782
21783 2001-11-05  Jim Meyering  <meyering@lucent.com>
21784
21785         * lib/xstat.in (slash_aware_lstat): Correct a misleading comment.
21786
21787 2001-11-04  Jim Meyering  <meyering@lucent.com>
21788
21789         * m4/fpending.m4: Remove unused cruft that saved, set, and restored
21790         $DEFS.
21791
21792 2001-11-03  Jim Meyering  <meyering@lucent.com>
21793
21794         * m4/jm-glibc-io.m4n (jm_FUNC_GLIBC_UNLOCKED_IO): Quote first arg
21795         of AC_DEFUN.
21796
21797         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Rework so dirfd.c doesn't have to
21798         know the name of the variable in the macro definition.
21799
21800 2001-11-03  Jim Meyering  <meyering@lucent.com>
21801
21802         * lib/argmatch.h (ARGMATCH_TO_ARGUMENT): Remove casts of first two args
21803         in argmatch_to_argument call.
21804
21805         * lib/dirfd.c (dirfd): Reflect the fact that DIR_TO_FD now takes an
21806         argument.
21807
21808         * lib/hash.c (hash_clear): Fix a bug that could lead to an infloop or
21809         e.g., a fault due to an attempt to free a NULL pointer.
21810
21811 2001-11-01  Jim Meyering  <meyering@lucent.com>
21812
21813         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): New macro.
21814         * m4/jm-macros.m4 (jm_MACROS): Require UTILS_FUNC_DIRFD.
21815
21816 2001-11-01  Jim Meyering  <meyering@lucent.com>
21817
21818         * lib/dirfd.c, lib/dirfd.h: New files.
21819         * lib/Makefile.am (libfetish_a_SOURCES): Add dirfd.h.
21820
21821         * lib/hash.c (hash_print) [TESTING]: Clean up.
21822
21823 2001-10-22  Paul Eggert  <eggert@twinsun.com>
21824
21825         * lib/hard-locale.c (alloca): Define to __builtin_alloca if __GNUC__,
21826         to avoid a warning if -Wall.
21827
21828 2001-10-22  Jeff Bailey  <jbailey@outpost.dnsalias.org>
21829
21830         * README: New file
21831         * doc/*: Add COPYING, COPYING.LIB, COPYING.DOC, fdl.texi
21832         (per RMS's instructions, this is now the canonical source)
21833         * lgpl/, gpl/: New directories.
21834
21835 2001-10-21  Paul Eggert  <eggert@twinsun.com>
21836
21837         * lib/regex.c (uintptr_t): Remove macro and decl; it's config.h's job.
21838
21839 2001-10-21  Jim Meyering  <meyering@lucent.com>
21840
21841         * lib/obstack.c (_): Honor the setting of ENABLE_NLS.  Otherwise,
21842         this code would end up calling gettext even in packages built
21843         with --disable-nls.
21844         * lib/getopt.c (_): Likewise.
21845         * lib/regex.c (_): Likewise.
21846
21847 2001-10-20  Paul Eggert  <eggert@twinsun.com>
21848
21849         * m4/error.m4 (jm_PREREQ_ERROR):
21850         Do not invoke AC_CHECK_FUNCS with strerror_r, as
21851         AC_FUNC_STRERROR_R does that.
21852         Check for strerror declaration.
21853
21854         * m4/strerror_r.m4: Add copyright notice, as nontrivial m4 files
21855         are supposed to have them these days.
21856         (AC_FUNC_STRERROR_R): Always do char* test, so that it gets cached.
21857         Merge changes from latest Autoconf CVS.
21858         Rename ac_cv_func_strerror_r_works to ac_cv_func_strerror_r_char_p,
21859         and rename HAVE_WORKING_STRERROR_R to STRERROR_R_CHAR_P, since
21860         POSIX decided to standardize on the int flavor of strerror_r.
21861
21862 2001-10-20  Paul Eggert  <eggert@twinsun.com>
21863
21864         * lib/error.c (strerror_r): Do not declare unless !_LIBC.
21865         Do not check for HAVE_DECL_STRERROR_R missing unless STRERROR_R_CHAR_P.
21866         Use strerror_r that is only a macro, even if it is not a function.
21867         (strerror): Check for HAVE_DECL_STRERROR before declaring.
21868         (private_strerror): Use prototypes, not old-style function definition.
21869         (print_errno_message): New function.
21870         Support the POSIX 'int'-flavored strerror_r, as well as the traditional
21871         char*-flavored one.
21872         (error_tail, error, error_at_line): Use it.
21873
21874 2001-10-11  Jim Meyering  <meyering@lucent.com>
21875
21876         * lib/argmatch.c (argmatch_invalid): Use quotearg_n_style (0, ...
21877         and quote_n (1, ... to avoid clobbering a buffer.
21878
21879 2001-10-05  Jim Meyering  <meyering@lucent.com>
21880
21881         * lib/Makefile.am: (libfetish_a_SOURCES): Add hash-pjw.c and
21882         hash-pjw.h.
21883         * lib/hash-pjw.c: New file (factored out of fileutils' remove.c).
21884         * lib/hash-pjw.h: New file.
21885
21886 2001-09-30  Jim Meyering  <meyering@lucent.com>
21887
21888         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): See if
21889         `struct fsstat' has the `f_fstypename' member.
21890         Use that to define FS_TYPE, which is now used to make
21891         the getfsstat link test tighter.
21892
21893 2001-09-30  Jim Meyering  <meyering@lucent.com>
21894
21895         * lib/mountlist.c [MOUNTED_GETFSSTAT]:
21896         Include <sys/ucred.h>, for Apple Darwin.
21897         Include sys/mount.h and sys/fs_types.h only if available.
21898         (FS_TYPE): Define.
21899         (read_filesystem_list): Use FS_TYPE.
21900
21901 2001-09-29  Paul Eggert  <eggert@twinsun.com>
21902
21903         * lib/exclude.c (excluded_filename): 0 -> false, since it's
21904         a boolean context.
21905
21906 2001-09-29  Jim Meyering  <meyering@lucent.com>
21907
21908         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS)
21909         [one-argument getmntent function]): Include stdio.h before mntent.h.
21910         SunOS 4.1.x needs it for the declaration of `FILE'.
21911         Patch by Volker Borchert.
21912
21913         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS)
21914         Check for these headers: sys/param.h sys/ucred.h sys/mount.h
21915         sys/fs_types.h, and make the link-test for getfsstat guard #include
21916         directives with appropriate #if HAVE_*_H tests so that we can
21917         detect getfsstat on Apple Darwin1.3.7 systems.
21918         Reported by Nelson Beebe.
21919         Fix harmless typo in cache variable name: s/getsstat/getfsstat/.
21920
21921 2001-09-28  Paul Eggert  <eggert@twinsun.com>
21922
21923         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
21924         #defines strtoimax.  Also treat the other strto* functions
21925         like strtoimax.
21926
21927         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
21928         Check for strtoul and strtoumax,
21929         as those declarations are made even in the signed case.
21930         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX):
21931         Likewise, for strtol and strtoimax.
21932
21933 2001-09-28  Paul Eggert  <eggert@twinsun.com>
21934
21935         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
21936         #defines strtoimax.  Also treat the other strto* functions
21937         like strtoimax.
21938
21939         * lib/xstrtol.c (strtol): Do not declare if HAVE_DECL_STRTOL.
21940         (strtoul): Do not declare if HAVE_DECL_STRTOUL.
21941         (strtoimax, strtoumax): Do not declare if already defined as a macro.
21942
21943 2001-09-26  Jim Meyering  <meyering@lucent.com>
21944
21945         Most macros in unlocked-io.h had the wrong number of arguments.
21946         * lib/gen-uio: New script.
21947         (USE_UNLOCKED_IO): Define to 1 if not already defined.
21948         * lib/unlocked-io.hin: Remove file.
21949         * lib/Makefile.am (unlocked-io.h): Rewrite to use a separate script,
21950         rather than trying to embed it here.
21951         (EXTRA_DIST): Add gen-uio.  Remove unlocked-io.hin
21952         Reported by Padraig Brady.
21953
21954 2001-09-25  Volker Borchert  <bt@teknon.de>
21955
21956         * lib/gettimeofday.c (rpl_gettimeofday): Declare local variable
21957         `result'.
21958
21959 2001-09-24  Jim Meyering  <meyering@lucent.com>
21960
21961         * m4/gettext.m4: Use the version from gettext-0.10.40, not CVS.
21962
21963 2001-09-23  Jim Meyering  <meyering@lucent.com>
21964
21965         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add a compile-test
21966         instead of the mere test for existence of mntent.h.  The latter
21967         would get a false-positive on AIX 3.4 systems.
21968         In the outer getmntent if-block, don't die if neither of the getmntent
21969         tests succeeds.  Instead, just fall through and continue with the
21970         remaining tests.
21971
21972 2001-09-23  Jim Meyering  <meyering@lucent.com>
21973
21974         * lib/mountlist.c: Remove useless parentheses in #if directives.
21975         (MOUNTED) [!defined MOUNTED]: Define to _PATH_MOUNTED, for when
21976         the deprecated MOUNTED symbol is no longer defined in mntent.h.
21977
21978 2001-09-22  Jim Meyering  <meyering@lucent.com>
21979
21980         * m4/gettext.m4: New file.  From gettext.
21981         * m4/lcmessage.m4: Sync with gettext -- this changes only comments.
21982         * m4/progtest.m4: Likewise
21983         * m4/isc-posix.m4: Decrement serial number to sync with gettext.
21984         * m4/glibc21.m4: Likewise.
21985
21986         * m4/libintl.m4: Remove.  No longer used.
21987
21988 2001-09-22  Jim Meyering  <meyering@lucent.com>
21989
21990         * lib/localcharset.c: Update from latest gettext.
21991         * lib/config.charset: Likewise.
21992
21993 2001-09-20  Jim Meyering  <meyering@lucent.com>
21994
21995         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX): Check for declaration of
21996         strtoimax.
21997         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check for declaration of
21998         strtoumax.
21999
22000 2001-09-20  Jim Meyering  <meyering@lucent.com>
22001
22002         * lib/xstrtol.c (strtoimax): Guard declaration with
22003         `#if !HAVE_DECL_STRTOIMAX', rather than just `#ifndef strtoimax'.
22004         The latter fails because some systems (at least rs6000-ibm-aix4.3.3.0)
22005         have their own, conflicting declaration of strtoimax in sys/inttypes.h.
22006         (strtoumax): Likewise, for completeness (it wasn't necessary).
22007
22008 2001-09-17  Paul Eggert  <eggert@twinsun.com>
22009
22010         * lib/strtoimax.c (HAVE_LONG_LONG):
22011         Redefine to HAVE_UNSIGNED_LONG_LONG if unsigned.
22012         (strtoimax): Use sizeof (long), not sizeof strtol (ptr, endptr, base),
22013         to work around bug in IBM C compiler.
22014
22015 2001-09-17  Jim Meyering  <meyering@lucent.com>
22016
22017         * m4/chown.m4, fstypename.m4, getgroups.m4, gettimeofday.m4,
22018         * m4/jm-mktime.m4, lstat.m4, malloc.m4, memcmp.m4, mkdir-slash.m4,
22019         * m4/nanosleep.m4, putenv.m4, readdir.m4, realloc.m4, rename.m4,
22020         * m4/st_dm_mode.m4, stat.m4, strerror_r.m4, timespec.m4, utimbuf.m4,
22021         * m4/utimes.m4: Use AC_DEFINE rather than AC_DEFINE_UNQUOTED,
22022         whenever the right hand side need not be expanded by the shell.
22023
22024 2001-09-16  Paul Eggert  <eggert@twinsun.com>
22025
22026         * m4/fnmatch.m4 (jm_FUNC_FNMATCH): Remove test for GNU C
22027         library.  It's not correct, as some older glibcs are buggy.
22028         fnmatch wasn't fixed until glibc 2.2.
22029
22030         Use AC_DEFINE, not AC_DEFINE_UNQUOTED, as there's no
22031         special shell magic here.
22032
22033 2001-09-16  Jim Meyering  <meyering@lucent.com>
22034
22035         * m4/mkdir-slash.m4 (UTILS_FUNC_MKDIR_TRAILING_SLASH): New file/macro.
22036         * m4/jm-macros.m4: Require it.
22037
22038 2001-09-16  Jim Meyering  <meyering@lucent.com>
22039
22040         * lib/mkdir.c: New file.
22041
22042 2001-09-15  Jim Meyering  <meyering@lucent.com>
22043
22044         * m4/jm-macros.m4: Check for help2man.
22045
22046 2001-09-11  Jim Meyering  <meyering@lucent.com>
22047
22048         * m4/host-os.m4 (UTILS_HOST_OS): New file/macro.
22049         The body, by Paul Eggert, was moved here from configure.in.
22050         * m4/jm-macros.m4: Require UTILS_HOST_OS.
22051
22052 2001-09-04  Paul Eggert  <eggert@twinsun.com>
22053
22054         * m4/prereq.m4 (jm_PREREQ_XREADLINK): New macro.
22055         (jm_PREREQ): Use it.
22056
22057 2001-09-04  Paul Eggert  <eggert@twinsun.com>
22058
22059         * lib/xreadlink.c (xreadlink): Omit size_t* arg.  All uses changed.
22060         Use ssize_t, not int, to store result of readlink.
22061         Check for ssize_t overflow as well as size_t overflow,
22062         as POSIX says the result of readlink is implementation-defined
22063         when ssize_t overflows.
22064         Remove unnecessary cast to char*.
22065         Use free+malloc instead of realloc, as the storage doesn't need
22066         to be preserved and it's clearer and can be more efficient that way.
22067         (SIZE_MAX, SSIZE_MAX): New macros, if <limits.h> doesn't declare.
22068         * lib/xreadlink.h (xreadlink): Update prototype.
22069
22070 2001-09-04  Paul Eggert  <eggert@twinsun.com>
22071
22072         * lib/xgetcwd.c: Revert some of the previous change; intead,
22073         fix the HAVE_GETCWD_NULL code to behave more like the
22074         !HAVE_GETCWD_NULL code used to.
22075
22076         Include "xalloc.h".
22077         (xgetcwd): Do not return NULL when memory is exhausted; instead,
22078         invoke xalloc_die.
22079
22080 2001-09-03  Paul Eggert  <eggert@twinsun.com>
22081
22082         * m4/prereq.m4 (jm_PREREQ_XGETCWD): Check for limits.h and
22083         sys/param.h, as pathmax.h includes them.
22084
22085 2001-09-03  Paul Eggert  <eggert@twinsun.com>
22086
22087         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_XGETCWD.
22088         (jm_PREREQ_XGETCWD): New macro.
22089
22090         * m4/getcwd.m4: New file.
22091
22092 2001-09-03  Paul Eggert  <eggert@twinsun.com>
22093
22094         * lib/xgetcwd.c: Fix the !HAVE_GETCWD_NULL code to behave more
22095         like the HAVE_GETCWD_NULL code.
22096         Include pathmax.h if not HAVE_GETCWD.
22097         Do not include xalloc.h.
22098         (INITIAL_BUFFER_SIZE): New symbol.
22099         Do not use xmalloc / xrealloc, since the caller is responsible for
22100         handling errors.  Preserve errno around `free' during failure.
22101         Do not overrun buffer when using getwd.
22102
22103 2001-09-03  Paul Eggert  <eggert@twinsun.com>
22104
22105         * lib/xgetcwd.c (xgetcwd): Use HAVE_GETCWD_NULL, not (defined
22106         __GLIBC__ && __GLIBC__ >= 2), to decide whether to use
22107         getcwd (NULL, 0).
22108
22109 2001-09-03  Paul Eggert  <eggert@twinsun.com>
22110
22111         * lib/exclude.c (fnmatch_no_wildcards): Fix confusion between
22112         usage of FNM_CASEFOLD and FNM_LEADING_DIR.  The bug was
22113         spotted by Jim Meyering.
22114
22115 2001-09-03  Jim Meyering  <meyering@lucent.com>
22116
22117         * lib/xreadlink.c (xreadlink): Preserve errno around `free' during
22118         failure.
22119
22120 2001-09-02  Jim Meyering  <meyering@lucent.com>
22121
22122         * lib/error.c: Update from GNU libc.
22123
22124 2001-09-01  Jim Meyering  <meyering@lucent.com>
22125
22126         * m4/jm-macros.m4 (jm_MACROS): Check for canonicalize_file_name.
22127         Used by df.
22128
22129 2001-09-01  Jim Meyering  <meyering@lucent.com>
22130
22131         * lib/xreadlink.c: New file.
22132         * lib/xreadlink.h: New file.
22133         * lib/Makefile.am (libfetish_a_SOURCES): Add xreadlink.c and
22134         xreadlink.h.
22135
22136         * lib/regex.c (uintptr_t) [!_LIBC]: Define to private_uintptr_t, so it
22137         doesn't conflict with sparc Solaris 7's definition in
22138         /usr/include/sys/int_types.h.
22139
22140         * lib/exclude.c: Use `""', not `<>' to #include non-system header
22141         files.
22142         (fnmatch_no_wildcards): Rewrite not to use function names, strcasecmp
22143         and strncasecmp as r-values.  Unixware didn't have declarations.
22144
22145 2001-08-31  Paul Eggert  <eggert@twinsun.com>
22146
22147         * lib/xstrtol.h: Add copyright notice.
22148         (_DECLARE_XSTRTOL): Improve quality of diagnostic for
22149         LONGINT_INVALID_SUFFIX_CHAR.
22150
22151 2001-08-31  Paul Eggert  <eggert@twinsun.com>
22152
22153         * lib/xstrtol.c (strtoimax): New decl.
22154
22155 2001-08-31  Paul Eggert  <eggert@twinsun.com>
22156
22157         * lib/xgetcwd.c: Don't include pathmax.h.
22158         Include stdlib.h and unistd.h if available.
22159         Include xalloc.h.
22160         (xmalloc, xstrdup, free): Remove decls.
22161         (xgetcwd): Don't assume sizes fit in unsigned.
22162         Check for overflow when computing sizes.
22163         Simplify reallocation code.
22164
22165 2001-08-31  Paul Eggert  <eggert@twinsun.com>
22166
22167         * lib/savedir.c (savedir): Remove size parameter, as POSIX says that
22168         a directory's st_size can have an arbitrary value, so the old
22169         usage could waste an arbitrary amount of memory.  All uses
22170         changed.
22171         * lib/savedir.h: Update prototype.
22172
22173 2001-08-31  Paul Eggert  <eggert@twinsun.com>
22174
22175         * lib/Makefile.am (libfetish_a_SOURCES): Remove strtoxmax.c.
22176
22177         * lib/strtoimax.c: Renamed from strtoxmax.c, removing the
22178         old strtoimax.c.
22179
22180         Also, make the following further changes to make this file's
22181         configuration more similar to that of strtol.c:
22182         (UNSIGNED): Renamed from STRTOUXMAX_UNSIGNED.  All uses changed.
22183         (strtoumax, uintmax_t, strtoull, strtol): Remove.
22184         (intmax_t, strtoimax, strtol, strtoll): New macros, if UNSIGNED.
22185         (strtoimax): Renamed from strtoumax.  All uses of unsigned values
22186         changed to signed values.
22187
22188         And make the following changes as well:
22189         Fix copyright notice, as 1999 was missing.
22190         (verify): New macro.
22191         (strtoimax): Check sizes at compile-time, not run-time.
22192         Prefer strtol to strtoll if both work.
22193         (main): Remove; it was not that useful and was a pain to maintain.
22194
22195         * lib/strtoumax.c: Include strtoimax.c, not strtouxmax.c.
22196
22197 2001-08-31  Jim Meyering  <meyering@lucent.com>
22198
22199         * lib/xgetcwd.c (xgetcwd): Reorganize to avoid some duplication.
22200         Use an initial, malloc'd, buffer of length 128 rather than
22201         a statically allocated one of length 1024.
22202
22203 2001-08-30  Paul Eggert  <eggert@twinsun.com>
22204
22205         Simplify code, partly by assuming autoconf 2.52 semantics.
22206
22207         * m4/Makefile.am (EXTRA_DIST): Remove uintmax_t.m4.
22208
22209         * m4/inttypes.m4 (AC_PREREQ): Bump to 2.52.
22210         (jm_AC_HEADER_INTTYPES_H): Remove; now done by autoconf in 2.52.
22211         All uses removed.
22212         (jm_AC_TYPE_INTMAX_T, jm_AC_TYPE_UINTMAX_T):
22213         Move AC_REQUIRE to next-to-top level, to avoid confusion.
22214         Use 2.52's AC_CHECK_TYPE instead of merely looking for the header.
22215         * m4/prereq.m4 (jm_PREREQ_HUMAN): Don't require
22216         jm_AC_HEADER_INTTYPES_H.
22217         * m4/jm-macros.m4 (jm_MACROS): Likewise.
22218
22219         * m4/uintmax_t.m4: Remove, as it duplicates inttypes.m4.
22220
22221         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
22222         Quote first arg of AC_DEFUN.
22223         Require jm_AC_TYPE_UINTMAX_T and jm_AC_TYPE_UNSIGNED_LONG_LONG
22224         since they are needed to parse the include file even if we need
22225         only xstrtoimax.  Simplify logic behind the args to AC_REPLACE.
22226         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Likewise,
22227         but with opposite signedness.
22228
22229 2001-08-30  Paul Eggert  <eggert@twinsun.com>
22230
22231         Merge 'exclude' changes from tar 1.13.22.
22232         This fixes one or two unlikely storage allocation overflow bugs,
22233         but doesn't change user-visible behavior otherwise.
22234
22235 2001-08-30  Paul Eggert  <eggert@twinsun.com>
22236
22237         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_EXCLUDE.
22238         (jm_PREREQ_EXCLUDE): New macro.
22239
22240 2001-08-30  Paul Eggert  <eggert@twinsun.com>
22241
22242         * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
22243         tm to be declared.
22244
22245 2001-08-30  Paul Eggert  <eggert@twinsun.com>
22246
22247         * lib/hash.c: Remove '2001' from copyright notice.
22248
22249 2001-08-30  Paul Eggert  <eggert@twinsun.com>
22250
22251         * lib/full-write.h: New file.
22252         * lib/Makefile.am (libfetish_a_SOURCES): Add full-write.h.
22253         * lib/full-write.c: Correct credits, as cccp.c no longer
22254         exists and anyway it was so heavily changed from the old cccp
22255         code as to be unrecognizable.  Include full-write.h.
22256         (full_write) Return size_t, with short writes meaning failure.
22257         All callers changed.  This fixes a bug with large buffers
22258         on 64-bit hosts.
22259         * lib/utime.c: Include full-write.h.
22260
22261 2001-08-30  Paul Eggert  <eggert@twinsun.com>
22262
22263         * lib/exclude.c (bool): Declare, perhaps by including stdbool.h.
22264         (<sys/types.h>): Include only if HAVE_SYS_TYPES_H.
22265         (<stdlib.h>, <string.h>, <strings.h>, <inttypes.h>, <stdint.h>):
22266         Include if available.
22267         (<xalloc.h>): Include
22268         (SIZE_MAX): Define if <stdint.h> or <inttypes.h> doesn't.
22269         (verify): New macro.  Use it to verify that EXCLUDE macros do not
22270         collide with FNM macros.
22271         (struct patopts): New struct.
22272         (struct exclude): Use it, as exclude patterns now come with options.
22273         (new_exclude): Support above changes.
22274         (new_exclude, add_exclude_file):
22275         Initial size must now be a power of two to simplify overflow checking.
22276         (free_exclude, fnmatch_no_wildcards): New function.
22277         (excluded_filename): No longer requires options arg, as the options
22278         are determined by add_exclude.  Now returns bool, not int.
22279         (excluded_filename, add_exclude):
22280         Add support for the fancy new exclusion options.
22281         (add_exclude, add_exclude_file): Now takes int options arg.
22282         Check for arithmetic overflow when computing sizes.
22283         (add_exclude_file): xrealloc might modify errno, so don't
22284         realloc until after errno might be used.
22285
22286         * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE,EXCLUDE_WILDCARDS):
22287         New macros.
22288         (free_exclude): New decl.
22289         (add_exclude, add_exclude_file): Now takes int options arg.
22290         (excluded_filename): No longer requires options arg, as the options
22291         are determined by add_exclude.  Now returns bool, not int.
22292
22293 2001-08-30  Paul Eggert  <eggert@twinsun.com>
22294
22295         * lib/alloca.c (alloca): Arg is of type size_t, not unsigned.
22296
22297 2001-08-27  Jim Meyering  <meyering@lucent.com>
22298
22299         * lib/Makefile.am (libfetish_a_SOURCES): Add strtoxmax.c
22300
22301         * lib/version-etc.c (N_): Remove definition.
22302         Revert most of last change.
22303         Instead, simply don't mark the `Copyright...' string for translation.
22304         Based on advice from Paul Eggert.
22305
22306         * lib/strtoxmax.c: Tweak comment.
22307
22308 2001-08-26  Jim Meyering  <meyering@lucent.com>
22309
22310         * m4/jm-macros.m4: Require jm_AC_PREREQ_XSTRTOIMAX.
22311
22312         * m4/xstrtoimax.m4: New file.
22313         * m4/xstrtoumax.m4: Add comments explaining why we
22314         AC_REPLACE_FUNCS(strtol).
22315
22316 2001-08-26  Jim Meyering  <meyering@lucent.com>
22317
22318         * lib/version-etc.c (version_etc_copyright_fmt): Replace literal year
22319         of copyright with `%s' so translators don't get an untranslated
22320         message in 2002.
22321         (COPYRIGHT_YEAR): Define.
22322         (version_etc): Use fprintf rather than fputs.
22323         Suggestion from Ulrich Drepper.
22324
22325         * lib/Makefile.am (libfetish_a_SOURCES): Add xstrtoimax.c.
22326
22327         * lib/strtoll.c: New file, from GNU libc.
22328         * lib/xstrtoimax.c: New file.
22329
22330         * lib/xstrtol.h: Add xstrtoimax.
22331         * lib/strtoumax.c: New file.  Simply include "strtoumax.c".
22332         * lib/strtoimax.c: New file.  Likewise, but first define
22333         STRTOUXMAX_SIGNED.
22334
22335         * lib/strtoumax.c: Factor to work both for unsigned and signed types,
22336         ...
22337         * lib/strtoxmax.c: ... then renamed to this.
22338
22339 2001-08-18  Paul Eggert  <eggert@twinsun.com>
22340
22341         * m4/inttypes.m4: Add AC_PREREQ(2.13).
22342         (jm_AC_HEADER_INTTYPES_H): Test for intmax_t, too.
22343         (jm_AC_TYPE_INTMAX_T): New macro.
22344         (jm_AC_TYPE_UINTMAX_T): Moved here from uintmax_t.m4.
22345
22346         * m4/longlong.m4 (jm_AC_TYPE_LONG_LONG): New macro.
22347
22348         * m4/longlong.m4: Renamed from ulonglong.m4.
22349         * m4/inttypes.m4: Renamed from inttypes_h.m4.
22350         * m4/uintmax_t.m4: Removed.
22351
22352 2001-08-13  Paul Eggert  <eggert@twinsun.com>
22353
22354         * lib/Makefile.am (unlocked-io.h): Do not append "_unlocked" twice.
22355         Port to Solaris 8, where 'sed' requires a space after the 'r'
22356         command, and where sh dislikes "$/".  Clean up the spacing a bit.
22357         Redirect output to $tmp just once.
22358
22359 2001-08-12  Paul Eggert  <eggert@sic.twinsun.com>
22360
22361         * lib/addext.c (<errno.h>): Include.
22362         (errno): Declare if not defined.
22363         (addext): Work correctly when pathconf returns -1 and leaves
22364         errno alone because there is no limit.  Also, work even if
22365         pathconf returns a value greater than SIZE_MAX.
22366
22367 2001-08-12  Jim Meyering  <meyering@lucent.com>
22368
22369         * m4/afs.m4, assert.m4, bison.m4, check-decl.m4, chown.m4, d-ino.m4,
22370         d-type.m4, dos.m4, error.m4, fnmatch.m4, fpending.m4, fstypename.m4,
22371         fsusage.m4, ftruncate.m4, getgroups.m4, glibc.m4, gnu-source.m4,
22372         group-member.m4, jm-glibc-io.m4, jm-macros.m4, jm-mktime.m4,
22373         jm-winsz1.m4, jm-winsz2.m4, lchown.m4, lib-check.m4, libintl.m4,
22374         link-follow.m4, ls-mntd-fs.m4, lstat.m4, malloc.m4, mbrtowc.m4,
22375         mbstate_t.m4, mbswidth.m4, memcmp.m4, nanosleep.m4, perl.m4,
22376         prereq.m4, putenv.m4, readdir.m4, realloc.m4, regex.m4, rename.m4,
22377         rmdir-errno.m4, search-libs.m4, st_dm_mode.m4, st_mtim.m4, stat.m4,
22378         strftime.m4, timespec.m4, unlink-busy.m4, uptime.m4, utimbuf.m4,
22379         utime.m4, utimes.m4, xstrtoumax.m4:
22380         Quote the first argument in each use of AC_DEFUN.
22381
22382 2001-08-12  Jim Meyering  <meyering@lucent.com>
22383
22384         * lib/xgetcwd.c (xgetcwd) [defined __GLIBC__ && __GLIBC__ >= 2]:
22385         Simply `return getcwd (NULL, 0);'.
22386         [! (defined __GLIBC__ && __GLIBC__ >= 2)]:
22387         Use 1300 as initial value for length, not PATH_MAX.
22388
22389         * lib/pathmax.h: Clean up cpp syntax.
22390
22391 2001-08-12  Jim Meyering  <meyering@lucent.com>
22392
22393         * lib/gettimeofday.c: New file.
22394         * lib/gtod.h: New file.
22395         * lib/Makefile.am (libfetish_a_SOURCES): Add gtod.h.
22396
22397 2001-08-05  Jim Meyering  <meyering@lucent.com>
22398
22399         * m4/jm-macros.m4: Require autoconf-2.52.
22400
22401 2001-08-04  Jim Meyering  <meyering@lucent.com>
22402
22403         * lib/error.h (__attribute__): Remove `|| __STRICT_ANSI__' from #if
22404         stmt, to get in sync with glibc.
22405
22406 2001-08-03  Paul Eggert  <eggert@twinsun.com>
22407
22408         The following changes are from gettext 0.10.39 as maintained by
22409         Bruno Haible.
22410
22411         * lib/mbswidth.h (MBSW_REJECT_UNPRINTABLE, MBSW_REJECT_INVALID):
22412         Renamed from MBSW_ACCEPT_UNPRINTABLE and MBSW_ACCEPT_INVALID
22413         with inverted sense.  All uses changed.
22414
22415         * lib/mbswidth.c: Don't include <limits.h>.
22416         Include <stdlib.h> and <string.h> unconditionally.
22417         (iswcntrl, mbsinit, ISCNTRL): New macros.
22418         (mbsnwidth): Use K&R style function declarations.
22419         Don't bother checking for MB_LEN_MAX == 1, since the compiler
22420         can optimize it when MB_CUR_MAX == 1.
22421         The width of control characters is zero, not 1.
22422
22423 2001-08-03  Paul Eggert  <eggert@twinsun.com>
22424
22425         The following changes are from gettext 0.10.39 as maintained by
22426         Bruno Haible, except that getline.m4 continues to use AC_LIBOBJ.
22427
22428         * m4/codeset.m4: Upgrade to serial AM1.
22429         (AM_LANGINFO_CODESET): Renamed from jm_LANGINFO_CODESET;
22430         all uses changed.  Quote first arg of AC_DEFUN.
22431         (am_cv_langinfo_codeset): Renamed from jm_cv_langinfo_codeset.
22432
22433         * m4/iconv.m4: Upgrade to serial AM2.
22434         (AM_ICONV): Renamed from jm_ICONV; all uses changed.
22435         Add --with-libconv-prefix.
22436         Quote first arg of AC_DEFUN.  Add description for ICONV_CONST.
22437         (am_cv_func_iconv): Renamed from jm_cv_func_iconv.
22438         (am_cv_lib_iconv): Renamed from jm_cv_lib_iconv.
22439         (am_cv_proto_iconv): Renamed from jm_cv_proto_iconv.
22440         * m4/jm-macros.m4 (jm_MACROS): Reflect s/jm_/AM_/ renamings.
22441
22442         * m4/c-bs-a.m4 (AC_C_BACKSLASH_A): Quote first arg of AC_DEFUN.
22443         * m4/getline.m4 (AM_FUNC_GETLINE): Likewise.
22444         * m4/glibc21.m4 (jm_GLIBC21): Likewise.
22445         * m4/inttypes_h.m4 (jm_AC_HEADER_INTTYPES_H): Likewise.
22446         * m4/isc-posix.m4 (AC_ISC_POSIX): Likewise.
22447         * m4/lcmessage.m4 (AM_LC_MESSAGES): Likewise.
22448         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): Likewise.
22449         * m4/uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Likewise.
22450         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Likewise.
22451
22452         * m4/getline.m4 (AM_FUNC_GETLINE): Don't bother checking for
22453         string.h any more.
22454
22455         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): If not found, print "no",
22456         not the default value.
22457
22458         2001-06-25  Bruno Haible  <haible@clisp.cons.org>
22459         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Don't require AM_C_PROTOTYPES.
22460         Also check for mbsinit.  Needed for SCO 3.2v5.0.2.
22461         Also include <string.h>; this is where AIX 3.2.5 declares wcwidth.
22462         Also check for iswcntrl, used for wcwidth fallback.
22463         Use AC_TRY_COMPILE to emulate AC_CHECK_DECLS, for portability
22464         to Autoconf 2.13.
22465
22466 2001-08-03  Jim Meyering  <meyering@lucent.com>
22467
22468         * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): Use `#include', not `@%:@include',
22469         as it was in the original.  Reported by Paul Eggert.
22470
22471 2001-07-16  Jim Meyering  <meyering@lucent.com>
22472
22473         * m4/gettimeofday.m4: New file.
22474         Prompted by a report from Bernhard Baehr.
22475
22476 2001-07-15  Jim Meyering  <meyering@lucent.com>
22477
22478         * m4/Makefile.am.in (Makefile.am): Remove most of the unlocked-io.h
22479         stuff. Now it's in ../Makefile.cfg.
22480
22481 2001-07-15  Jim Meyering  <meyering@lucent.com>
22482
22483         * lib/Makefile.am (EXTRA_DIST): Add unlocked-io.hin.
22484         (BUILT_SOURCES): Add unlocked-io.h.
22485         (io_functions): Define.
22486         (unlocked-io.h): New rule.
22487         (DISTCLEANFILES): Add unlocked-io.h.
22488         (all-local): Depend on unlocked-io.h, to ensure it is created.
22489
22490         * lib/unlocked-io.hin: New file
22491
22492         * lib/regex.c: Update from glibc.
22493
22494 2001-07-05  Jim Meyering  <meyering@lucent.com>
22495
22496         * lib/Makefile.am (noinst_HEADERS): Remove definition, per new automake
22497         recommendation.
22498         (libfetish_a_SOURCES): Put all .h files here instead.
22499         Remove a thus-exposed (better checks in automake) duplicate and
22500         two unnecessary .h files.
22501
22502 2001-07-04  Jim Meyering  <meyering@lucent.com>
22503
22504         * m4/Makefile.am.in (glibc-io.struct): New target.  Rework the code
22505         that generates jm-glibc-io.m4 so that it doesn't trigger any make
22506         distcheck failure.
22507
22508 2001-07-02  Jim Meyering  <meyering@lucent.com>
22509
22510         The following changes were prompted by suggestions from Bruno Haible.
22511
22512         * m4/jm-glibc-io.m4n: New file, the template from which jm-glibc-io.m4
22513         is now generated.
22514         * m4/Makefile.am.in (Makefile.am): Include jm-glibc-io.m4n in emitted
22515         definition of EXTRA_DIST.
22516         (Makefile.am): Emit the dependency, `all-local: jm-glibc-io.m4' to
22517         ensure that the generated file is created/updated whenever the list
22518         of $(unlocked_functions) is changed.
22519         (jm-glibc-io.m4): New rule.
22520         (unlocked-io.h): New rule -- currently unused.
22521
22522 2001-06-24  Jim Meyering  <meyering@lucent.com>
22523
22524         * m4/regex.m4 (jm_INCLUDED_REGEX): Use a quadrigraph to represent an
22525         unmatched right bracket, rather than kludging it with an extra,
22526         falsely-matching quote in a comment.  Patch by Akim Demaille.
22527
22528 2001-06-11  Jim Meyering  <meyering@lucent.com>
22529
22530         * lib/regex.c: Update from GNU libc.
22531
22532 2001-05-27  Jim Meyering  <meyering@lucent.com>
22533
22534         * m4/prereq.m4 (jm_PREREQ_READUTMP): Check for ut_type in struct utmpx.
22535         Check for ut_type in struct utmp.
22536
22537 2001-05-27  Jim Meyering  <meyering@lucent.com>
22538
22539         * lib/readutmp.h (UT_TYPE): Define.
22540
22541 2001-05-24  Jim Meyering  <meyering@lucent.com>
22542
22543         * lib/argmatch.c: Include "quote.h".
22544         (argmatch_invalid): Remove explicit `' quotes.  Instead, use the
22545         quote function.  Reported by Göran Uddeborg.
22546
22547 2001-05-22  Jim Meyering  <meyering@lucent.com>
22548
22549         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't use AC_LIBOBJ(strftime),
22550         now that we use the package-supplied version unconditionally.
22551         (jm_FUNC_STRFTIME): Don't replace strftime, for the same reason.
22552
22553 2001-05-21  Jim Meyering  <meyering@lucent.com>
22554
22555         * m4/regex.m4: Change a couple backticks to single quotes to avoid
22556         shell syntax errors.
22557
22558 2001-05-21  Alexandre Duret-Lutz  <duret_g@epita.fr>
22559
22560         * m4/dos.m4 (jm_AC_DOS): Check for _WIN32, __WIN32__, and __MSDOS__.
22561
22562 2001-05-20  Paul Eggert  <eggert@twinsun.com>
22563
22564         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME):
22565         Don't bother to check library strftime, since
22566         we'll be using our own my_strftime function anyway.
22567         Define my_strftime instead of strftime.
22568
22569 2001-05-20  Alexandre Duret-Lutz  <duret_g@epita.fr>
22570
22571         * lib/dirname.c (dir_name): Compute append_dot using path, not newpath
22572         which is not yet declared.
22573
22574 2001-05-15  Jim Meyering  <meyering@lucent.com>
22575
22576         * m4/regex.m4: Use proper quoting so brackets appear in the test
22577         program.
22578         Reported by, and with help from, Bruno Haible.
22579
22580 2001-05-13  Jim Meyering  <meyering@lucent.com>
22581
22582         * m4/jm-macros.m4 (major_t, minor_t): Define to unsigned int if
22583         undefined.
22584
22585 2001-05-11  Paul Eggert  <eggert@twinsun.com>
22586
22587         dirname code cleanup.  base_name now behaves more compatibly
22588         with POSIX basename when given file names that have trailing
22589         slashes, and similarly for dir_name.  Add new primitives
22590         base_len and dir_len.  Put the directory-name-related decls
22591         into dirname.h.
22592
22593         * lib/addext.c (ISSLASH, base_name): Remove; now in dirname.h.
22594         * lib/backupfile.c (base_name): Likewise.
22595         * lib/basename.c (FILESYSTEM_PREFIX_LEN, PARAMS, ISSLASH): Likewise.
22596         * lib/dirname.c (FILESYSTEM_PREFIX_LEN, ISSLASH): Likewise.
22597         * lib/makepath.c (strip_trailing_slashes): Likewise.
22598         * lib/path-concat.c (DIRECTORY_SEPARATOR, FILESYSTEM_PREFIX_LEN,
22599         ISSLASH): Likewise.
22600         * lib/rename.c (strip_trailing_slashes): Likewise.
22601         * lib/same.c (base_name): Likewise.
22602         * lib/stripslash.c (ISSLASH): Likewise.
22603
22604         * lib/addext.c: Include <dirname.h> after size_t is defined.
22605         * lib/backupfile.c: Likewise.
22606
22607         * lib/addext.c (addext): Use base_len to trim redundant
22608         trailing slashes instead of doing it ourselves.
22609         But do not trim the last slash if it is not redundant.
22610
22611         * lib/backupfile.c (find_backup_file_name,
22612         max_backup_version): Use base_len instead of rolling it ourselves.
22613         Handle the case of "" and (on DOS) "C:" correctly.
22614
22615         * lib/basename.c: Do not include <stdio.h>, <assert.h>; no longer
22616         needed. Include <string.h>, <dirname.h>.
22617         (base_name): Allow file names ending in slashes, other than names
22618         that are all slashes.  In this case, return the basename followed
22619         by the slashes.  This is more general, and can be used in places
22620         where the original base_name purposely had an assertion failure.
22621         (base_len): New function.
22622
22623         * lib/dirname.c: Include <string.h> instead of <stdlib.h>.
22624         Do not include <assert.h>; no longer needed.
22625         Include xalloc.h.
22626         (memrchr): Remove decl.
22627         (dir_name_r): Remove.
22628         (dir_len): Renamed from dirlen.  All callers changed.
22629         Rewrite in terms of base_name, for simplicity and consistency.
22630         (dir_name): Never return NULL.  All callers changed.
22631         Do not include <stdlib.h> in test program; no longer needed.
22632         return 0; is fine for test program.
22633
22634         * lib/dirname.h (DIRECTORY_SEPARATOR, ISSLASH, FILESYSTEM_PREFIX_LEN):
22635         New macros.
22636         (base_name, base_len, dir_len, strip_trailing_slashes): New decls.
22637
22638         * lib/path-concat.c (path_concat): Use base_len to compute
22639         base length, not strlen; this means we cannot rely on memcpy
22640         to null-terminate.
22641
22642         * lib/same.c (STREQ): Remove.
22643         (same_name): Handle the case where the basename ends in trailing '/'.
22644
22645         * lib/stripslash.c (strip_trailing_slashes): Return nonzero if
22646         a slash was stripped.  Do not strip the last slash after a
22647         file system prefix.
22648
22649 2001-05-11  Paul Eggert  <eggert@twinsun.com>
22650
22651         * lib/Makefile.am (libfetish_a_SOURCES):
22652         Add strftime.c, since we now compile it on all hosts.
22653
22654         * lib/strftime.c (my_strftime):
22655         Define to nstrftime if emacs, but only if my_strftime is not defined.
22656         (extra_args, extra_args_spec, extra_args_spec_iso): Rename from
22657         ut_argument, ut_argument_spec, ut_argument_spec_iso, respectively.
22658         Add one more extra argument: a nanoseconds value.
22659         All uses changed.
22660         (ns): New macro.
22661         (my_strftime function): Add %N format.
22662         (emacs_strftimeu): Renamed from emacs_strftime,
22663         with extra ut argument.
22664
22665 2001-05-09  Paul Eggert  <eggert@twinsun.com>
22666
22667         * m4/jm-macros.m4 (jm_MACROS): Do not check for fseeko; no longer used.
22668
22669 2001-04-21  Jim Meyering  <meyering@lucent.com>
22670
22671         * m4/rmdir-errno.m4: Write to a new file, so that a restrictive umask
22672         doesn't interfere.
22673
22674 2001-04-21  Alexandre Duret-Lutz  <duret_g@epita.fr>
22675
22676         * m4/ftruncate.m4: Check for chsize.
22677         Link with ftruncate.o unconditionally if ftruncate is missing.
22678         This was required when cross-compiling to i586-mingw32msvc.
22679
22680 2001-04-08  Jim Meyering  <meyering@lucent.com>
22681
22682         * lib/getdate.y (get_date): Set tm_isdst to -1 to ensure that it is
22683         recomputed; that's necessary when the offset spans a DST transition.
22684         Patch by David J. MacKenzie.  Reported by Hon-Yin Kok.
22685
22686 2001-04-02  Jim Meyering  <meyering@lucent.com>
22687
22688         * lib/regex.h, regex.c: Update from GNU libc.
22689
22690 2001-03-24  Jim Meyering  <meyering@lucent.com>
22691
22692         * m4/jm-macros.m4: Require autoconf-2.49d.
22693
22694 2001-03-20  Bruno Haible  <haible@clisp.cons.org>
22695
22696         * m4/iconv.m4 (jm_ICONV): Recommend GNU libiconv.
22697
22698 2001-03-19  Paul Eggert  <eggert@twinsun.com>
22699
22700         * lib/version-etc.c (version_etc_copyright): Update to 2001.
22701
22702 2001-03-17  Jim Meyering  <meyering@lucent.com>
22703
22704         * m4/memcmp.m4 (jm_AC_FUNC_MEMCMP): Remove my copy of AC_FUNC_MEMCMP,
22705         now that the version in autoconf is equivalent.
22706         (jm_FUNC_MEMCMP): Adjust to use AC_FUNC_MEMCMP.
22707
22708         * m4/error.m4 (jm_PREREQ_ERROR): Invoke AC_FUNC_STRERROR_R.
22709         Suggestion from Akim Demaille.
22710
22711         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_TEMPNAME.
22712         (jm_PREREQ_TEMPNAME): New function.
22713
22714 2001-03-16  Paul Eggert  <eggert@twinsun.com>
22715
22716         * lib/tempname.c (uint64_t): Define to uintmax_t if
22717         not defined, and if UINT64_MAX is not defined.
22718         Required at least for Vax Ultrix4.3, which doesn't define uint64_t.
22719         Reported by John David Anglin.
22720
22721 2001-03-15  Bruno Haible  <haible@clisp.cons.org>
22722
22723         * lib/localcharset.c (locale_charset): Allow wildcard syntax. Also
22724         resolve alias if codeset is empty.
22725         * lib/config.charset (BeOS): Use wildcard syntax.
22726
22727 2001-03-13  Jim Meyering  <meyering@lucent.com>
22728
22729         * lib/path-concat.c (path_concat)
22730         [FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]: Don't insert a backslash when
22731         concatenating e.g., `C:' and `foo'.
22732         From Bruno Haible.
22733
22734 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
22735
22736         * lib/localcharset.c (locale_charset): Don't use
22737         setlocale(LC_CTYPE,NULL). Don't return NULL.
22738         * lib/unicodeio.c (print_unicode_char): Simplify accordingly.
22739
22740 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
22741
22742         * lib/config.charset: Update for FreeBSD 4.2 and OSF/1 5.1. Add
22743         support for DOS/DJGPP.
22744
22745 2001-03-01  Paul Eggert  <eggert@twinsun.com>
22746
22747         * m4/jm-macros.m4 (jm_MACROS): Use mkstemp replacement if the system
22748         lacks mkstemp.  Compile our own tempname.c if we compile our own
22749         mkstemp.c, as mkstemp relies on tempname.
22750
22751 2001-03-01  Jim Meyering  <meyering@lucent.com>
22752
22753         * m4/dos.m4 (jm_AC_DOS): Remove extra backslashes, now that
22754         AH_VERBATIM really does output its argument verbatim.
22755
22756 2001-02-28  Paul Eggert  <eggert@twinsun.com>
22757
22758         * lib/Makefile.am (libfetish_a_SOURCES):
22759         Add dup-safer.c, fopen-safer.c.
22760         (noinst_HEADERS): Add stdio-safer.h, unistd-safer.h.
22761
22762         * lib/dup-safer.c, lib/fopen-safer.c, lib/stdio-safer.h:
22763         * lib/unistd-safer.h: New files.
22764
22765 2001-02-25  Paul Eggert  <eggert@twinsun.com>
22766
22767         The mkstemp replacement is taken from glibc 2.2.2, with some
22768         portability fixes for use outside glibc, as follows:
22769
22770         * lib/tempname.c (struct_stat64): New macro.
22771         (direxists, __gen_tempname): Use it.
22772         This avoids a portability problem with Solaris 8.
22773
22774         * lib/tempname.c (<config.h>): Include if HAVE_CONFIG_H.
22775         (<stddef.h>, <stdint.h>, <string.h>):
22776         Include only if STDC_HEADERS || _LIBC.
22777         (<fcntl.h>): Include only if HAVE_FCNTL_H || _LIBC.
22778         (<unistd.h>): Include only if HAVE_UNISTD_H || _LIBC.
22779         (<sys/time.h>): Include only if HAVE_SYS_TIME_H || _LIBC.
22780         (__set_errno): Define this macro if <errno.h> doesn't.
22781         (P_tmpdir, TMP_MAX, __GT_FILE, __GT_BIGFILE, __GT_DIR, __GT_NOCREATE):
22782         Define these macros if <stdio.h> doesn't.
22783         (S_ISDIR, S_IRUSR, S_IWUSR, S_IXUSR):
22784         Define these macros if <sys/stat.h>
22785         doesn't.  Ignore <sys/stat.h> S_ISDIR if STAT_MACROS_BROKEN.
22786         (stat64, __getpid, __gettimeofday, __mkdir, __open, __open64, lxstat64,
22787         __xstat64): Define if not _LIBC.
22788         (__secure_getenv): Define if ! (HAVE___SECURE_GETENV || _LIBC).
22789         (__gen_tempname): Invoke gettimeofday only if
22790         HAVE_GETTIMEOFDAY || _LIBC;
22791         otherwise, fall back on plain "time".
22792         Use macros like S_IRUSR | S_IWUSR rather than octal values like 0600.
22793
22794         * lib/mkstemp.c (__GT_FILE): Define to zero if not defined.
22795
22796         * lib/mkstemp.c, lib/tempname.c: New files, taken from glibc 2.2.2.
22797
22798 2001-02-18  Paul Eggert  <eggert@twinsun.com>
22799
22800         * m4/jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for sys/resource.h.
22801
22802 2001-02-17  Paul Eggert  <eggert@twinsun.com>
22803
22804         * m4/mbrtowc.m4: New file, defining jm_FUNC_MBRTOWC.
22805         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH):
22806         Use jm_FUNC_MBRTOWC, not AC_CHECK_FUNCS(mbrtowc).
22807         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Likewise.
22808
22809 2001-02-17  Paul Eggert  <eggert@twinsun.com>
22810
22811         * lib/mbswidth.c, quotearg.c (mbrtowc, mbsinit):
22812         Remove workaround macros for hosts that have mbrtowc but not
22813         mbstate_t, as we now insist on proper declarations for both
22814         before using mbrtowc.
22815
22816 2001-02-17  Jim Meyering  <meyering@lucent.com>
22817
22818         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Don't check for
22819         getmntent via AC_CHECK_FUNCS, since that would get a `no' and disrupt
22820         further attempts by AC_FUNC_GETMNTENT to check with e.g., -lgen on
22821         UnixWare 7.1.1.
22822
22823         * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): Adapt to use AC_CACHE_CHECK etc.,
22824         rather than AC_CACHE_VAL.
22825
22826 2001-02-17  Jim Meyering  <meyering@lucent.com>
22827
22828         * lib/strtoul.c: Sync from GNU libc.  Use double quotes, not <...>
22829         around included file name.
22830
22831         * lib/strnlen.c (__strnlen): Merge in a change from GNU libc.
22832
22833         * lib/strftime.c: Update from GNU libc (the only changes were to
22834         comments).
22835
22836 2001-02-17  Jim Meyering  <meyering@lucent.com>
22837
22838         * lib/regex.c: Update from libc.
22839
22840 2001-02-17  Bruno Haible  <haible@clisp.cons.org>
22841
22842         * lib/mbswidth.h (mbswidth): Also define as macro, to avoid prototype
22843         clash.
22844
22845 2001-02-16  Paul Eggert  <eggert@twinsun.com>
22846
22847         * lib/alloca.c (malloc): Undef before defining, since stdlib.h
22848         may have defined it.  Needed for Encore Umax-3.0.9.16b systems.
22849         Reported by Mark Hounschell via Paul Eggert.
22850
22851 2001-02-07  Jim Meyering  <meyering@lucent.com>
22852
22853         * m4/regex.m4 (jm_INCLUDED_REGEX): Add a test for the latest bug.
22854
22855 2001-02-05  Jim Meyering  <meyering@lucent.com>
22856
22857         * m4/jm-macros.m4: Require autoconf-2.14d (not yet released), because
22858         it includes the patch required for `large file' support with at least
22859         HP-UX's 10.20 /bin/cc.
22860
22861 2001-02-03  Jim Meyering  <meyering@lucent.com>
22862
22863         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Restore prior use of
22864         AS_IF, now that it works once again (mysteriously).
22865         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise.
22866
22867 2001-01-30  Jim Meyering  <meyering@lucent.com>
22868
22869         Don't use filenames that are 8.3-equivalent to "conftest" on DOS.
22870         * m4/chown.m4: Rename conftestchown to conftest.chown.
22871         * m4/rename.m4: s/conftestdir/conftest.d1/ and
22872         s/conftestdir2/conftest.d2/.
22873         * m4/utimes.m4: s/conftestdata/conftest.data/
22874         Inspired by Pavel Roskin's change in autoconf.
22875
22876 2001-01-30  Bruno Haible  <haible@clisp.cons.org>
22877
22878         * lib/config.charset: Update for FreeBSD 4.2.
22879
22880 2001-01-27  Jim Meyering  <meyering@lucent.com>
22881
22882         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Open-code what was
22883         a use of AS_IF.
22884         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise.
22885
22886 2001-01-26  Jim Meyering  <meyering@lucent.com>
22887
22888         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for stddef.h, now that
22889         quotearg.c includes it.
22890
22891 2001-01-26  Jim Meyering  <meyering@lucent.com>
22892
22893         * lib/quotearg.c: Include stddef.h.
22894         * lib/quote.c: Include stddef.h.
22895         Reported by Axel Kittenberger.
22896
22897         * lib/xmalloc.c [HAVE_DONE_WORKING_MALLOC_CHECK]: Enclose error-evoking
22898         line in double quotes so that it evokes a better diagnostic.
22899         [HAVE_DONE_WORKING_REALLOC_CHECK]: Likewise.
22900         Reported by Axel Kittenberger.
22901
22902 2001-01-24  Stefan Monnier  <monnier@cs.yale.edu>
22903
22904         * regex.c (mutually_exclusive_p): Don't blindly handle `charset_not'
22905         as if it was a `charset'.
22906
22907 2001-01-21  Bruno Haible  <haible@clisp.cons.org>
22908
22909         * m4/iconv.m4 (jm_ICONV): Also check whether the iconv declaration
22910         has const.
22911
22912 2001-01-21  Bruno Haible  <haible@clisp.cons.org>
22913
22914         * lib/unicodeio.c (print_unicode_char): Cast the second iconv() arg,
22915         to avoid a warning.  Add back 'const' to inptr.
22916
22917 2001-01-20  Jim Meyering  <meyering@lucent.com>
22918
22919         Be sure that headers are checked before used in code compiled
22920         for the type checks.
22921         * m4/jm-macros.m4 (jm_MACROS): Remove all header checks.
22922         In place of that, invoke jm_CHECK_ALL_TYPES.
22923         (jm_CHECK_ALL_HEADERS): New functions with the above checks.
22924         (jm_CHECK_ALL_TYPES): Require jm_CHECK_ALL_HEADERS.
22925         Alan Iwi reported a build failure on an f300-fujitsu-uxpv4.1_ES;
22926         The check for ssize_t was mistakenly run before the test for unistd.h.
22927
22928         The configure-time check for stdbool.h was missing.
22929         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_HASH.
22930         (jm_PREREQ_HASH): New function.
22931
22932 2001-01-17  Jim Meyering  <meyering@lucent.com>
22933
22934         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use AS_IF, not AS_IFELSE,
22935         for autoconf-2.49c.
22936         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Likewise.
22937
22938 2001-01-16  Jim Meyering  <meyering@lucent.com>
22939
22940         * lib/basename.c: Include <stdio.h>, needed by assert on SunOS 4.
22941         From Bruno Haible.
22942
22943 2001-01-14  Jim Meyering  <meyering@lucent.com>
22944
22945         * m4/rename.m4: Use temporary directories named conftestdir{,2}, not
22946         foo and bar.  Create conftestdir/ in the script, not in the C code.
22947         Remove directories in the script, not in the C code.
22948         Remove conftestdir{,2} before trying to create the directory.
22949         Make the entire configure script fail if the mkdir fails.
22950
22951 2001-01-14  Jim Meyering  <meyering@lucent.com>
22952
22953         * lib/rename.c: New file.  From Volker Borchert.
22954         Include stdlib.h, string.h or strings.h, and xalloc.h.
22955         Use strip_trailing_slashes rather than open-coding it.
22956
22957 2001-01-03  Paul Eggert  <eggert@twinsun.com>
22958
22959         * lib/strftime.c: Sync with glibc time/strftime.c 1.81.
22960
22961 2001-01-03  Jim Meyering  <meyering@lucent.com>
22962
22963         * lib/unicodeio.c (print_unicode_char): Remove `const' from declaration
22964         of local `inptr' to avoid warning with some system declarations of
22965         iconv.
22966
22967 2001-01-02  Volker Borchert  <bt@teknon.de>
22968
22969         * m4/rename.m4: New file.
22970         * m4/jm-macros.m4 (jm_MACROS): Require vb_FUNC_RENAME.
22971
22972 2001-01-01  Jim Meyering  <meyering@lucent.com>
22973
22974         * m4/prereq.m4 (jm_PREREQ_READUTMP): Include utmp.h (if available),
22975         even on systems with utmpx.h.  It's necessary for the declaration of
22976         utmp's ut_user member.  Reported by Andreas Jaeger.
22977
22978         * m4/check-decl.m4 (jm_CHECK_DECLS): Include grp.h and pwd.h if
22979         available. They are required for the declarations of getgrgid and
22980         getpwuid resp.
22981         (_jm_DECL_HEADERS): Check for grp.h and pwd.h.
22982         Reported by Andreas Jaeger.
22983
22984 2001-01-01  Alexandre Duret-Lutz  <duret_g@epita.fr>
22985
22986         * m4/libintl.m4 (AM_GNU_GETTEXT): Define MKINSTALLDIRS by
22987         expanding the value of $ac_aux_dir, as in AM_MISSING_HAS_RUN,
22988         so `make install' also works in VPATH builds.
22989
22990 2000-12-31  Alexandre Duret-Lutz  <duret_g@epita.fr>
22991
22992         * m4/libintl.m4 (AM_WITH_NLS): When using AC_CONFIG_AUX_DIR,
22993         prepend $(top_srcdir) to the value of MKINSTALLDIRS so that it
22994         can be used in subdirectories.
22995
22996 2000-12-29  Paul Eggert  <eggert@twinsun.com>
22997
22998         * lib/modechange.c: Do not assume that mode_t uses the
22999         traditional octal encoding.  E.g. "chmod 1 FOO" should set
23000         the other-execute bit of FOO even if S_IXOTH != 1.
23001
23002         (SUID, SGID, SVTX, RUSR, WUSR, XUSR, RGRP, WGRP, XGRP, ROTH,
23003         WOTH, XOTH, ALLM): New macros.
23004         (S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR,
23005          S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH):
23006         Use them.
23007         (S_ISGID): Fix typo; it was defaulting to the same value as S_ISUID.
23008         (S_IRWXU, S_IRWXG, S_IRWXO): Specify defaults in terms of the above.
23009         (mode_compile):
23010         No need to use uintmax_t; unsigned long is long enough.
23011         Don't bother to get suffix since we don't use it.
23012
23013 2000-12-26  Jim Meyering  <meyering@lucent.com>
23014
23015         * m4/dos.m4 (jm_AC_DOS): Rewrite (though it's still a stub) to work
23016         better with autoheader.
23017
23018 2000-12-24  Jim Meyering  <meyering@lucent.com>
23019
23020         * lib/hash.c (is_prime): Return explicit boolean values.
23021         (hash_get_first): Return NULL to appease Irix5.6's 89.
23022         Reported by Nelson Beebe.
23023
23024 2000-12-19  Bruno Haible  <haible@clisp.cons.org>
23025
23026         * lib/localcharset.c (locale_charset): Add support for Win32.
23027
23028 2000-12-18  Paul Eggert  <eggert@twinsun.com>
23029
23030         * lib/physmem.h, lib/physmem.c: New files.
23031
23032         * lib/Makefile.am (libfetish_a_SOURCES): Add physmem.c.
23033         (noinst_HEADERS): Add physmem.h.
23034
23035         * lib/xstrtol.c (__xstrtol): Add undocumented suffixes 'g' and
23036         't' for compatibility with Solaris 8 sort.
23037
23038 2000-12-18  Bruno Haible  <haible@clisp.cons.org>
23039
23040         * lib/config.charset: Add support for BeOS.
23041
23042 2000-12-17  Jim Meyering  <meyering@lucent.com>
23043
23044         * m4/dos.m4 (jm_AC_DOS): New file and macro.
23045         * m4/jm-macros.m4 (jm_MACROS): Require jm_AC_DOS.
23046
23047 2000-12-16  Jim Meyering  <meyering@lucent.com>
23048
23049         This bug had a serious impact on chown: `chown N:M FILE' (for integer
23050         N and M) would have treated it like `chown N:N FILE'.
23051
23052         * lib/userspec.c (parse_user_spec): Fix typo: s/u/g/.
23053
23054 2000-12-16  Jim Meyering  <meyering@lucent.com>
23055
23056         * lib/getusershell.c [!SHELLS_FILE && __DJGPP__]: Define
23057         SHELLS_FILE to a file name that's useful on djgpp systems.
23058         Include stdlib.h.
23059         (ADDITIONAL_DEFAULT_SHELLS): Define.
23060         (default_shells): Prepend ADDITIONAL_DEFAULT_SHELLS.
23061         Based mostly on a patch from Prashant TR.
23062
23063 2000-12-16  Bruno Haible  <haible@clisp.cons.org>
23064
23065         * lib/config.charset: Add ISO-8859-3, BIG5HKSCS, GB18030, JOHAB,
23066         VISCII, CP874, CP949, CP950, CP1250, CP1253, CP1254, CP1255, CP1256,
23067         CP1257 to the list of canonical encodings. Rename EUC-CN to GB2312.
23068
23069 2000-12-08  Andreas Schwab  <schwab@suse.de>
23070
23071         * lib/mbswidth.c (mbsnwidth): Don't loop endlessly when called with an
23072         invalid mulitbyte sequence and with the MBSW_ACCEPT_INVALID flag set.
23073
23074 2000-12-07  Jim Meyering  <meyering@lucent.com>
23075
23076         * lib/stripslash.c (ISSLASH): Define.
23077         (strip_trailing_slashes): Use ISSLASH rather than comparing against
23078         `/'.
23079         From Prashant TR.
23080
23081         * lib/dirname.c (FILESYSTEM_PREFIX_LEN): Define.
23082         (dir_name_r): Declare this function as static.
23083         [BACKSLASH_IS_PATH_SEPARATOR]: Fix a bug that'd
23084         manifest itself on a name containing a mix of slashes and
23085         backslashes.
23086         Make this function work with names starting with a DOS-style
23087         drive letter and colon prefix.
23088         (dir_name): Append `.' if necessary.
23089         Based mostly on patches from Prashant TR and Eli Zaretskii.
23090
23091         * lib/dirname.h (dir_name_r): Remove prototype.
23092
23093 2000-12-06  Paul Eggert  <eggert@twinsun.com>
23094
23095         * m4/off_t-format.m4: Remove this file.
23096         * m4/jm-macros.m4 (jm_MACROS): Remove jm_SYS_OFF_T_PRINTF_FORMAT.
23097
23098 2000-12-06  Jim Meyering  <meyering@lucent.com>
23099
23100         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): If we need the
23101         replacement strtoull, we may well need the replacement strtoul, too.
23102         Check for declarations of strtoul and strtoull.
23103         Check for strtol.  Mainly as a cue to cause automake to include
23104         strtol.c -- that file is included by each of strtoul.c and strtoull.c.
23105         Check for limits.h -- strtol.c needs it.
23106
23107 2000-12-05  Jim Meyering  <meyering@lucent.com>
23108
23109         * lib/dirname.c (dir_name_r): Add `const' in a few local declarations.
23110
23111 2000-12-04  Jim Meyering  <meyering@lucent.com>
23112
23113         * lib/path-concat.c: [!HAVE_DECL_MALLOC]: Declare malloc.
23114         Also include memory.h, stdlib.h, unistd.h if appropriate.
23115         Reported by Andreas Jaeger (conflicting declaration of malloc).
23116
23117 2000-12-02  Jim Meyering  <meyering@lucent.com>
23118
23119         * m4/off_t-format.m4 (OFF_T_PRINTF_FORMAT_STRING): New file/macro.
23120         * m4/jm-macros.m4 (jm_MACROS): require it.
23121
23122 2000-12-02  Jim Meyering  <meyering@lucent.com>
23123
23124         * lib/closeout.h: Make idempotent, to avoid some obscure warnings.
23125
23126 2000-12-01  Paul Eggert  <eggert@twinsun.com>
23127
23128         * lib/memrchr.c: Include <config.h> before any system include file.
23129
23130 2000-11-30  Jim Meyering  <meyering@lucent.com>
23131
23132         * m4/jm-macros.m4 (jm_MACROS): Check for stdint.h.
23133
23134 2000-11-30  Jim Meyering  <meyering@lucent.com>
23135
23136         * m4/getloadavg.m4: s/ifval/m4_ifval/ to accommodate new autoconf.
23137
23138 2000-11-29  Paul Eggert  <eggert@twinsun.com>
23139
23140         * lib/dirname.c (dir_name_r): Fix typo: int -> size_t.
23141
23142 2000-11-26  Jim Meyering  <meyering@lucent.com>
23143
23144         * lib/memcoll.c: Include sys/types.h.  From Werner Almesberger.
23145
23146 2000-11-22  Paul Eggert  <eggert@twinsun.com>
23147
23148         * lib/strftime.c (my_strftime): Do not invoke mbrlen with a
23149         size of (size_t) -1; it's not portable.
23150
23151 2000-11-17  Jim Meyering  <meyering@lucent.com>
23152
23153         * lib/strstr.c: Update from GNU libc.
23154
23155 2000-11-17  Akim Demaille  <akim@epita.fr>
23156
23157         * lib/obstack.h: Formatting changes.
23158         (obstack_grow, obstack_grow0): Don't cast WHERE at all: that would
23159         prevent type checking.
23160         (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
23161         cast the value to (void *): assigning a `foo *' to a `void *'
23162         variable is valid.
23163         (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
23164
23165 2000-11-16  Jim Meyering  <meyering@lucent.com>
23166
23167         * lib/strverscmp.c: Incorporate weak-alias-related changes from glibc.
23168
23169 2000-11-11  Jim Meyering  <meyering@lucent.com>
23170
23171         * lib/error.c: Add a couple #includes, merging from GNU libc version.
23172
23173 2000-11-10  Jim Meyering  <meyering@lucent.com>
23174
23175         * lib/obstack.h: Update from GNU libc.
23176         * lib/obstack.c: Likewise.
23177
23178 2000-11-08  Bruno Haible  <haible@clisp.cons.org>
23179
23180         * m4/jm-macros.m4 (jm_MACROS): Add test for wcrtomb.
23181
23182 2000-11-06  Paul Eggert  <eggert@twinsun.com>
23183
23184         * lib/getusershell.c (setusershell): Use rewind rather than
23185         fseek/fseeko, to avoid configuration hassles with fseeko.
23186         Don't bother opening SHELLS_FILE if shellstream is NULL;
23187         it's not necessary.
23188
23189 2000-11-05  Jim Meyering  <meyering@lucent.com>
23190
23191         * lib/makepath.h (make_dir): Declare.
23192         * lib/makepath.c (make_dir): Remove `static' attribute.
23193         Tweak a comment.
23194
23195 2000-11-04  Jim Meyering  <meyering@lucent.com>
23196
23197         * m4/regex.m4: Use the `m4_' prefix on `syscmd' and `m4_sysval'.
23198
23199 2000-11-04  Alexandre Duret-Lutz  <duret_g@epita.fr>
23200
23201         * lib/hash.c (hash_get_next): Fix a thinko:  when ENTRY is the
23202         last one in a bucket, advance to the next bucket.
23203
23204 2000-11-02  Vesselin Atanasov  <vesselin@bgnet.bg>
23205
23206         * lib/fnmatch.c: Do not comment out all the code if we are using
23207         the GNU C library, because in some cases we are replacing buggy
23208         code in the GNU C library itself.
23209
23210 2000-10-30  Stefan Monnier  <monnier@cs.yale.edu>
23211
23212         * regex.c (re_iswctype, re_wctype_to_bit): Fix braino.
23213         (regex_compile): Catch bogus \(\1\).
23214
23215 2000-10-30  Paul Eggert  <eggert@twinsun.com>
23216
23217         * lib/fnmatch.c (FOLD): Do not assume that characters are unsigned.
23218         (fnmatch): Fix some FNM_FILE_NAME and FNM_LEADING_DIR bugs,
23219         e.g. fnmatch("d*/*1", "d/s/1", FNM_FILE_NAME) incorrectly yielded zero.
23220
23221 2000-10-30  Paul Eggert  <eggert@twinsun.com>
23222
23223         * lib/error.h, getline.h, modechange.h:
23224         Remove "2000" from Copyright line, as the file hasn't been
23225         changed this year other than in the copyright notice.
23226
23227         * lib/xalloc.h: Add "2000" to Copyright line, as this file
23228         was changed this year.
23229
23230 2000-10-29  Jim Meyering  <meyering@lucent.com>
23231
23232         * m4/fsusage.m4: s/AC_SHELL_IFELSE/AS_IFELSE/ to match autoconf
23233         renaming.
23234         * m4/ls-mntd-fs.m4: Likewise
23235
23236 2000-10-29  Jim Meyering  <meyering@lucent.com>
23237
23238         * lib/xstat.in: Fix grammar in comment.
23239
23240 2000-10-29  Greg Louis  <glouis@dynamicro.on.ca>
23241
23242         * lib/regex.h (__restrict_arr): Move definition out of #ifndef block.
23243         Required because egcs-2.91.66 (aka 1.1.2) defines __restrict, but
23244         doesn't define __restrict_arr.
23245
23246 2000-10-28  Jim Meyering  <meyering@lucent.com>
23247
23248         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_MEMCHR.
23249         (jm_PREREQ_MEMCHR): New function.
23250
23251 2000-10-28  Jim Meyering  <meyering@lucent.com>
23252
23253         * lib/memchr.c: Update from libc.
23254         Adjust for portability:
23255         [HAVE_STDLIB_H]: Include stdlib.h.
23256         [HAVE_BP_SYM_H || _LIBC]: Guard inclusion of bp-sym.h.
23257         Undef __memchr, too.
23258         [!weak_alias]: Define __memchr to memchr.
23259
23260         * lib/regex.c: Update from libc.
23261         * lib/regex.h: Likewise.
23262         * lib/getopt1.c: Likewise.
23263         * lib/memcmp.c: Likewise.
23264
23265         * lib/getusershell.c (setusershell) [HAVE_FSEEKO]: Use fseeko.
23266         Avoid using fseek, when possible -- it's broken by design.
23267         Patch by Ulrich Drepper.
23268
23269 2000-10-27  Stefan Monnier  <monnier@cs.yale.edu>
23270
23271         * regex.c (POP_FAILURE_REG_OR_COUNT, re_match_2_internal)
23272         (re_match_2_internal, re_match_2_internal, re_match_2_internal):
23273         Giving in to popular pressure to shut up the compiler with casts.
23274
23275 2000-10-26  Jim Meyering  <meyering@lucent.com>
23276
23277         * lib/strftime.c: Update from libc.
23278
23279 2000-10-25  Stefan Monnier  <monnier@cs.yale.edu>
23280
23281         * regex.c: More `unsigned char' -> `re_char' changes.
23282         Also change several `int' into `re_wchar_t'.
23283         (PATTERN_STACK_EMPTY, PUSH_PATTERN_OP, POP_PATTERN_OP): Remove.
23284         (PUSH_FAILURE_POINTER): Don't cast any more.
23285         (POP_FAILURE_REG_OR_COUNT): Remove the cast that strips `const'.
23286         We want GCC to complain, since this piece of code makes
23287         re_match non-reentrant, which *should* be fixed.
23288         (GET_BUFFER_SPACE): Use size_t rather than unsigned long.
23289         (EXTEND_BUFFER): Use RETALLOC.
23290         (SET_LIST_BIT): Don't cast.
23291         (re_wchar_t): New type.
23292         (re_iswctype, re_wctype_to_bit): Make it crystal clear to GCC
23293         that those two functions will always properly return.
23294         (IMMEDIATE_QUIT_CHECK): Cast to void.
23295         (analyse_first): Use recursion rather than an explicit stack.
23296         (re_compile_fastmap): Can't fail anymore.
23297         (re_search_2): Don't check re_compile_fastmap for failure.
23298         (PUSH_NUMBER): Renamed from PUSH_FAILURE_COUNT.
23299         Now also sets the new value (passed in a new argument).
23300         (re_match_2_internal): Use it.
23301         Also, use a new var `reg' of type size_t when looping through regs
23302         rather than reuse the inappropriate `mcnt'.
23303
23304 2000-10-25  Jim Meyering  <meyering@lucent.com>
23305
23306         * lib/obstack.c: Update from libc.
23307
23308 2000-10-24  Kenichi Handa  <handa@etl.go.jp>
23309
23310         * regex.c (regex_compile): Change the way of handling a range from
23311         a char less than 256 to a char not less than 256.
23312
23313 2000-10-24  Andrew Innes  <andrewi@gnu.org>
23314
23315         * regex.c (IMMEDIATE_QUIT_CHECK): New macro, which does QUIT on
23316         NT-Emacs only.
23317         (re_match_2_internal): Use IMMEDIATE_QUIT_CHECK instead of QUIT,
23318         so that re_search functions only quit when callers expect them to.
23319
23320 2000-10-23  Jim Meyering  <meyering@lucent.com>
23321
23322         * lib/hard-locale.c (hard_locale): Revert last change -- it was simply
23323         wrong.  That set_locale call must not have any side effects.
23324         From Paul Eggert.
23325
23326 2000-10-22  Jim Meyering  <meyering@lucent.com>
23327
23328         * lib/md5.c (md5_process_block) [OP]: Use `rol', not CYCLIC.
23329         [CYCLIC]: Remove now-unused definition.
23330
23331         * lib/save-cwd.c (O_DIRECTORY): Define, if needed.
23332         (save_cwd) [HAVE_FCHDIR]: Use O_DIRECTORY when opening ".".
23333         Suggestion from Ulrich Drepper.
23334
23335 2000-10-21  Jim Meyering  <meyering@lucent.com>
23336
23337         * m4/check-decl.m4 (jm_CHECK_DECLS): Also check for memrchr.
23338         * m4/prereq.m4 (jm_PREREQ_DIRNAME): New macro.
23339         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memrchr.
23340
23341 2000-10-21  Jim Meyering  <meyering@lucent.com>
23342
23343         * lib/dirname.c (memrchr): Declare if necessary.
23344         (dir_name): Remove the restriction that there be no
23345         trailing slashes.  Now, this code skips past them, effectively
23346         ignoring them.
23347         [TEST_DIRNAME] (main): New unit tests.
23348
23349         * lib/memrchr.c: New file from GNU libc.
23350         Undef __memrchr, too.
23351         [!weak_alias]: Define __memrchr to memrchr.
23352         Guard weak_alias use with `#ifdef weak_alias'.
23353
23354 2000-10-21  Jim Meyering  <meyering@lucent.com>
23355
23356         * lib/dirname.c (dir_name_r): New function, factored out of dir_name.
23357         (dir_name): Use dir_name_r.
23358         * lib/dirname.h (dir_name_r): Declare it.
23359
23360 2000-10-17  Jim Meyering  <meyering@lucent.com>
23361
23362         * lib/quote.h (PARAMS): Define and use.
23363         Reported by Akim Demaille.
23364
23365         * lib/getopt.c: Update from libc.
23366
23367 2000-10-16  Jim Meyering  <meyering@lucent.com>
23368
23369         * lib/hard-locale.c (hard_locale): Use "", not 0 as 2nd arg to
23370         setlocale.
23371         From Jan Fedak.
23372
23373 2000-10-15  Stefan Monnier  <monnier@cs.yale.edu>
23374
23375         * regex.c (WIDE_CHAR_SUPPORT): Define if _LIBC as well.
23376
23377 2000-09-25  Jim Meyering  <meyering@lucent.com>
23378
23379         * lib/md5.h (rol): Define (from GnuPG).
23380
23381         * lib/sha.c: Give credit (GnuPG) where due.
23382         (M): Use rol rather than open-coding it.
23383         Add a FIXME comment.
23384
23385 2000-09-21  Jim Meyering  <meyering@lucent.com>
23386
23387         * lib/userspec.c (parse_user_spec): Remove debugging printf I'd added.
23388         Reported by Michael Stone.
23389
23390 2000-09-20  Jim Meyering  <meyering@lucent.com>
23391
23392         * lib/Makefile.am (libfetish_a_SOURCES): Add sha.c.
23393         (noinst_HEADERS): Add sha.h.
23394         Based on code from Scott G. Miller and from GnuPG.
23395
23396 2000-09-18  Jim Meyering  <meyering@lucent.com>
23397
23398         * m4/getloadavg.m4 (AC_FUNC_GETLOADAVG): Restore the initial value of
23399         LIBS. Otherwise, everyone ends up linking with -lelf for some
23400         configurations.
23401         Reported by Mike Stone.
23402
23403 2000-09-15  Jim Meyering  <meyering@lucent.com>
23404
23405         * lib/regex.c: Update from libc.
23406
23407 2000-09-10  Jim Meyering  <meyering@lucent.com>
23408
23409         * lib/getopt.c (_getopt_internal): Update from glibc.
23410
23411 2000-09-09  Jim Meyering  <meyering@lucent.com>
23412
23413         * lib/quotearg.c: Rename ISASCII to IN_CTYPE_DOMAIN, so people don't
23414         think it should be used as a general replacement for isascii.
23415         * lib/fnmatch.c: Likewise.
23416         * lib/mbswidth.c: Likewise
23417         * lib/regex.c: Likewise.
23418
23419         Don't use atoi.
23420         * lib/userspec.c: Include sys/param.h and limits.h.
23421         Include xstrtol.h.
23422         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
23423         (UID_T_MAX, GID_T_MAX, MAXUID, MAXGID): Define.
23424         (parse_user_spec): Use xstrtoul, not atoi when converting numeric
23425         UID, GID.  Check range.
23426
23427 2000-09-06  Jim Meyering  <meyering@lucent.com>
23428
23429         * lib/getopt.c (_getopt_internal): Update from glibc.
23430
23431 2000-08-30  Jim Meyering  <meyering@lucent.com>
23432
23433         * lib/strftime.c: Merge in changes from GNU libc.
23434
23435 2000-08-26  Jim Meyering  <meyering@lucent.com>
23436
23437         * m4/jm-macros.m4: Use jm_FUNC_FPENDING.
23438         * m4/fpending.m4: New file.
23439
23440 2000-08-26  Jim Meyering  <meyering@lucent.com>
23441
23442         * lib/closeout.c: Include "__fpending.h".
23443         (close_stdout_status): Return right away if there's nothing to flush.
23444
23445         * lib/Makefile.am (noinst_HEADERS): Add __fpending.h.
23446         * lib/__fpending.c: New file.
23447         * lib/__fpending.h: New file.
23448
23449 2000-08-20  Jim Meyering  <meyering@lucent.com>
23450
23451         * m4/check-decl.m4: Include utmp.h `#if HAVE_UTMP_H', rather than
23452         `#if !HAVE_UTMPX_H'.  The latter would lose on systems with neither
23453         utmp.h nor utmpx.h.  Reported by Eli Zaretskii.
23454
23455 2000-08-11  J. David Anglin  <dave@hiauly1.hia.nrc.ca>
23456
23457         Improve fileutils installation on systems where running
23458         programs (like install) can't be unlinked.
23459         * m4/unlink-busy.m4 (jm_FUNC_UNLINK_BUSY_TEXT): New file/macro.
23460         * m4/jm-macros.m4: Use jm_FUNC_UNLINK_BUSY_TEXT.
23461
23462 2000-08-07  Paul Eggert  <eggert@twinsun.com>
23463
23464         Standardize on "memory exhausted" instead of "Memory exhausted"
23465         or "virtual memory exhausted".
23466         * lib/obstack.c (print_and_abort): Use "memory exhausted", not
23467         "virtual memory exhausted".
23468         * lib/same.c (same_name): Invoke xalloc_die instead of printing
23469         our own message.
23470         * lib/userspec.c (parse_user_spec): Likewise.
23471         * lib/bumpalloc.h: comment fix
23472         * lib/same.c, userspec.c: Include xalloc.h.
23473
23474         * lib/xalloc.h (xalloc_msg_memory_exhausted): Now char const[],
23475         not char *const and pointing to a constant array.
23476         * lib/xmalloc.c (xalloc_msg_memory_exhausted): Likewise.
23477         (xrealloc): Comment fix.
23478
23479         * lib/userspec.c (parse_user_spec):
23480         Don't translate a message until just before returning,
23481         to avoid unnecessary translation.
23482
23483 2000-08-07  Jim Meyering  <meyering@lucent.com>
23484
23485         * lib/addext.c, argmatch.c, argmatch.h, backupfile.h, bumpalloc.h,
23486         chown.c, diacrit.h, dirname.h, dup2.c, exclude.h, fileblocks.c,
23487         fnmatch.c, fnmatch.h, fsusage.c, fsusage.h, getdate.h,
23488         getgroups.c, gethostname.c, getopt.h, group-member.c,
23489         hard-locale.c, hash.h, isdir.c, lchown.c, linebuffer.c,
23490         linebuffer.h, long-options.h, malloc.c, md5.c, md5.h, memchr.c,
23491         memcmp.c, memcoll.c, memset.c, mktime.c, modechange.h, obstack.h,
23492         pathmax.h, realloc.c, rmdir.c, safe-read.c, save-cwd.c, stime.c,
23493         stpcpy.c, strcasecmp.c, strcspn.c, strdup.c, stripslash.c,
23494         strstr.c, strtod.c, strtol.c, strtoul.c, strtoull.c, strtoumax.c,
23495         utime.c, version-etc.h, xalloc.h, xstrdup.c, xstrtoumax.c,
23496         yesno.c: Back out Copyright date changes for each file with no change
23497         this year.  This eases coordination with other programs using the same
23498         source code modules.  From Paul Eggert.
23499
23500 2000-08-06  Paul Eggert  <eggert@twinsun.com>
23501
23502         * m4/mbstate_t.m4 (AC_MBSTATE_T): Define mbstate_t to be int,
23503         not char, for compatibility with glibc 2.1.3 strftime.c.
23504
23505 2000-08-03  Greg McGary  <greg@mcgary.org>
23506
23507         * lib/regex.c (SET_HIGH_BOUND, MOVE_BUFFER_POINTER,
23508         ELSE_EXTEND_BUFFER_HIGH_BOUND): New macros.
23509         (EXTEND_BUFFER): Use them.
23510
23511 2000-08-01  Jim Meyering  <meyering@lucent.com>
23512
23513         * lib/dirname.c (ISSLASH): Define.
23514         (BACKSLASH_IS_PATH_SEPARATOR): Define.
23515         (dir_name) [BACKSLASH_IS_PATH_SEPARATOR]: Handle the case in which
23516         both `\' and `/' may be use as path separators.
23517         Based on a patch from Prashant TR.
23518
23519 2000-07-31  Paul Eggert  <eggert@twinsun.com>
23520
23521         * lib/quotearg.c (quotearg_n_options): Don't make the initial
23522         slot vector a constant, since it might get modified.
23523
23524 2000-07-31  Jim Meyering  <meyering@lucent.com>
23525
23526         * lib/xmalloc.c: Use `virtual memory exhausted', not
23527         `Memory exhausted'.
23528         * lib/obstack.c (print_and_abort): Likewise.
23529
23530 2000-07-30  Paul Eggert  <eggert@twinsun.com>
23531
23532         * lib/quotearg.c (quotearg_n_options): Preallocate a slot 0
23533         buffer, so that the caller can always quote one small
23534         component of a "memory exhausted" message in slot 0.
23535         From a suggestion by Jim Meyering.
23536
23537 2000-07-30  Jim Meyering  <meyering@lucent.com>
23538
23539         * lib/makepath.c (make_path): Quote the other instance, too.
23540
23541         * lib/quotearg.c (N_STATIC_SLOTVECS): Define.
23542         (STATIC_BUF_SIZE): Define.
23543         (quotearg_n_options): Use only statically allocated storage when
23544         N < N_STATIC_SLOTVECS and the length of the quoted result is smaller
23545         than STATIC_BUF_SIZE.
23546
23547 2000-07-29  Jim Meyering  <meyering@lucent.com>
23548
23549         * lib/diacrit.c (diacrit_diac): Use __MSDOS__ in favor of MSDOS.
23550         * lib/dirname.c (dir_name): Likewise.
23551
23552         * lib/basename.c (base_name): Use ISSLASH rather than comparing against
23553         `/'.
23554
23555         * lib/dirname.c (dir_name) [MSDOS]: Declare `lim' to be const.
23556         (dir_name): Assert that there are no trailing slashes.
23557
23558 2000-07-29  Bruno Haible  <haible@clisp.cons.org>
23559
23560         * lib/mbswidth.h (mbswidth): Add a flags argument.
23561         (mbswidth): New declaration.
23562         (MBSW_ACCEPT_INVALID, MBSW_ACCEPT_UNPRINTABLE): New macros.
23563         * lib/mbswidth.c (mbswidth): Add a flags argument.
23564         (mbsnwidth): New function.
23565
23566 2000-07-24  Jim Meyering  <meyering@lucent.com>
23567
23568         * lib/mbswidth.c: Remove useless #else.  From Bruno Haible.
23569
23570 2000-07-23  Paul Eggert  <eggert@twinsun.com>
23571
23572         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Check for wcwidth declaration.
23573
23574 2000-07-23  Paul Eggert  <eggert@twinsun.com>
23575
23576         * lib/quotearg.c: Streamline by invoking multibyte code only if needed.
23577         <wchar.h>: Include only if HAVE_MBRTOWC && 1 < MB_LEN_MAX.
23578         (MB_CUR_MAX): Redefine to 1 if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX).
23579         (quotearg_buffer_restyled): If a unibyte locale, don't bother to
23580         invoke multibyte primitives.
23581
23582 2000-07-23  Paul Eggert  <eggert@twinsun.com>
23583
23584         * lib/quotearg.c:
23585         Include <wchar.h> even if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX),
23586         so that mbstate_t is always defined.
23587
23588         Do not inspect MB_LEN_MAX, since it's incorrectly defined to
23589         be 1 in at least one GCC installation, and this configuration
23590         error is likely to be common.  Ignoring MB_LEN_MAX hurts
23591         performance on hosts that have mbrtowc but have only unibyte
23592         locales, but I assume these hosts are rare.
23593
23594 2000-07-23  Paul Eggert  <eggert@twinsun.com>
23595
23596         * lib/mbswidth.c (_XOPEN_SOURCE):
23597         Don't define; this causes problems on Solaris 7.
23598         (wcwidth) [!HAVE_DECL_WCWIDTH]: Declare.
23599
23600 2000-07-23  Jim Meyering  <meyering@lucent.com>
23601
23602         * m4/check-decl.m4 (jm_CHECK_DECLS): Check for declarations of these,
23603         too: getgrgid, getpwuid, getuid.
23604
23605 2000-07-23  Jim Meyering  <meyering@lucent.com>
23606
23607         * lib/basename.c (base_name): Add an assertion.
23608
23609 2000-07-23  Bruno Haible  <haible@clisp.cons.org>
23610
23611         * lib/quotearg.c: When the system forces us to redefine mbstate_t,
23612         shadow its mbsinit function.
23613
23614 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
23615
23616         * lib/mbswidth.h: New file.
23617         * lib/mbswidth.c: New file.
23618         * lib/Makefile.am (libfetish_a_SOURCES): Add mbswidth.c.
23619         (noinst_HEADERS): Add mbswidth.h.
23620
23621 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
23622
23623         * lib/config.charset: Add support for FreeBSD. Improve support for
23624         HP-UX and IRIX 6.
23625
23626 2000-07-16  Bruno Haible  <haible@clisp.cons.org>
23627
23628         * m4/mbswidth.m4: New file.
23629         * m4/prereq.m4 (jm_PREREQ): Call jm_PREREQ_MBSWIDTH.
23630
23631 2000-07-15  Jim Meyering  <meyering@lucent.com>
23632
23633         * lib/makepath.c: Include quote.h.
23634         (make_path): Convert "`%s'" in format strings to "%s", and wrap each
23635         corresponding argument in a `quote (...)' call.
23636         Give better diagnostics.
23637
23638         * lib/Makefile.am (libfetish_a_SOURCES): Add quote.c.
23639         (noinst_HEADERS): Add quote.h.
23640
23641         * lib/quote.c (quote, quote_n): New file.  Two functions taken verbatim
23642         from tar's src/misc.c.
23643         * lib/quote.h: New file.  Prototypes for same.
23644
23645 2000-07-14  Paul Eggert  <eggert@twinsun.com>
23646
23647         From a suggestion by Bruno Haible.
23648         * lib/quotearg.c (mbrtowc): Do not use HAVE_WCHAR_H in the definition.
23649         Use defined mbstate_t, not HAVE_MBSTATE_T_OBJECT,
23650         to decide whether to define the BeOS workaround macro;
23651         this adjusts to the change to AC_MBSTATE_T.
23652
23653 2000-07-14  Jim Meyering  <meyering@lucent.com>
23654
23655         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Require
23656         jm_AC_TYPE_UINTMAX_T.
23657
23658 2000-07-13  Paul Eggert  <eggert@twinsun.com>
23659
23660         * lib/quotearg.h (enum quoting style): New enum clocale_quoting_style.
23661
23662         * lib/quotearg.c (quoting_style_args, quoting_style_vals,
23663         quotearg_buffer_restyled): Add support for
23664         clocale_quoting_style.  Undo previous change to
23665         locale_quoting_style behavior, and undo the "{LEFT QUOTATION MARK}"
23666         and "{RIGHT QUOTATION MARK}" msgids.
23667
23668 2000-07-10  Paul Eggert  <eggert@twinsun.com>
23669
23670         From a suggestion by Bruno Haible.
23671         * m4/mbstate_t.m4 (AC_MBSTATE_T):
23672         Renamed from AC_MBSTATE_T_OBJECT.  All uses changed.
23673         Change from a two-part test, which defines both HAVE_MBSTATE_T_OBJECT
23674         and mbstate_t, to a single-part test that simply defines mbstate_t.
23675         * m4/prereq.m4 (jm_PREREQ_QUOTEARG):
23676         s/AC_MBSTATE_T_OBJECT/AC_MBSTATE_T/.
23677
23678 2000-07-10  Jim Meyering  <meyering@lucent.com>
23679
23680         * m4/strerror_r.m4: Mirror the correction made in autoconf.
23681
23682         * m4/gnu-source.m4: Output to confdefs.h directly.
23683         Suggestion from Akim Demaille.
23684
23685 2000-07-09  Paul Eggert  <eggert@twinsun.com>
23686
23687         The old behavior of quoting `like this' doesn't look good with
23688         newer, ISO-style fonts.  See:
23689         http://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html
23690
23691         Instead, quote "like this" by default.  Let the translator
23692         tailor the locale-specific quoting behavior by providing
23693         translations for {LEFT QUOTATION MARK} and {RIGHT QUOTATION MARK}.
23694
23695         * lib/quotearg.c (N_): New macro.
23696         (gettext_default): New function.
23697         (quotearg_buffer_restyled): Use
23698         gettext_default ("{LEFT QUOTATION MARK}", "\"") for left quote, and
23699         gettext_default ("{RIGHT QUOTATION MARK}", "\"") for right quote.
23700
23701 2000-07-09  Jim Meyering  <meyering@lucent.com>
23702
23703         * m4/jm-macros.m4 (jm_MACROS): Add a test to see if -lm is required
23704         to link seq.  If so, set SEQ_LIBM to -lm.  From Bruno Haible.
23705
23706         * m4/gnu-source.m4 (AC__GNU_SOURCE): New file/macro.
23707         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require it.
23708
23709 2000-07-09  Jim Meyering  <meyering@lucent.com>
23710
23711         * lib/Most files: Update copyright dates to include 2000.
23712
23713 2000-07-08  Jim Meyering  <meyering@lucent.com>
23714
23715         * lib/xgethostname.c (ENAMETOOLONG): Define to an unlikely value
23716         if not defined.
23717         (xgethostname): Remove now-unnecessary #ifdef.
23718         Move declaration of `err' into loop where it's used.
23719
23720 2000-07-05  Paul Eggert  <eggert@twinsun.com>
23721         and Bruno Haible  <haible@clisp.cons.org>
23722
23723         * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Test for mbstate_t
23724         only if the test for an object-type mbstate_t fails.  This
23725         prevents us from mistakenly reporting that mbstate_t is a
23726         system object type after we "#define mbstate_t int" to work
23727         around its lack.
23728
23729 2000-07-05  Paul Eggert  <eggert@twinsun.com>
23730         and Bruno Haible  <haible@clisp.cons.org>
23731
23732         * lib/quotearg.c (mbrtowc): Declare returned type, since BeOS doesn't.
23733
23734 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
23735
23736         * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Pass a reasonably large buffer
23737         to strerror_r.
23738         Include <ctype.h> for use of isalpha.
23739
23740 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
23741
23742         * lib/xgethostname.c (xgethostname): Protect against the SunOS 5.5 bug
23743         by allocating a larger buffer. Test the gethostname return value for
23744         being >= 0, not == 0, for BeOS.  Don't exhaust memory if gethostname
23745         returns an error and ENAMETOOLONG isn't defined.
23746
23747 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
23748
23749         * lib/quotearg.c (struct quoting_options): Simplify quote_these_too
23750         dimension.
23751
23752 2000-07-04  Jim Meyering  <meyering@lucent.com>
23753
23754         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use plain old `echo' instead
23755         of the deprecated AC_CHECKING.
23756
23757 2000-07-04  Jim Meyering  <meyering@lucent.com>
23758
23759         * lib/strndup.c: [!HAVE_DECL_STRNLEN]: Declare strnlen.
23760         Reported by Bruno Haible.
23761
23762 2000-07-04  Jim Meyering  <meyering@lucent.com>
23763
23764         * lib/quotearg.c: Make inclusion of <wchar.h> independent of whether
23765         HAVE_MBRTOWC is set.  Required at least for irix-5.6, which
23766         lacks mbrtowc.
23767
23768 2000-07-03  Paul Eggert  <eggert@twinsun.com>
23769
23770         * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Port to autoconf 2.13.
23771         Add AC_CHECK_HEADERS(stdlib.h), since we use HAVE_STDLIB_H.
23772
23773 2000-07-03  Paul Eggert  <eggert@twinsun.com>
23774         and Bruno Haible  <haible@clisp.cons.org>
23775
23776         * lib/quotearg.c (mbrtowc):
23777         Assign to *pwc, and return 1 only if result is nonzero.
23778         (iswprint): Use ISPRINT when substituting our own mbrtowc.
23779
23780 2000-07-03  Jim Meyering  <meyering@lucent.com>
23781
23782         * m4/check-decl.m4 (AC_CHECK_DECLS): Add strnlen.
23783
23784 2000-07-03  Jim Meyering  <meyering@lucent.com>
23785
23786         * lib/readutmp.h: [HAVE_UTMPX_H]: Include <utmp.h> if HAVE_UTMP_H.
23787         This is necessary to get a definition of e.g., UTMP_FILE on
23788         HP-UX 10.20.
23789         From Bob Proulx.
23790
23791 2000-07-02  Jim Meyering  <meyering@lucent.com>
23792
23793         * m4/mbstate_t.m4: Also define mbstate_t, if necessary.
23794
23795         * m4/chown.m4: Replace each use of AC_SUBST(LIBOBJS)/LIBOBJS=... with
23796         AC_LIBOBJ(function_name).
23797         * m4/chown.m4: Likewise.
23798         * m4/fnmatch.m4: Likewise.
23799         * m4/ftruncate.m4: Likewise.
23800         * m4/getgroups.m4: Likewise.
23801         * m4/getline.m4: Likewise.
23802         * m4/group-member.m4: Likewise.
23803         * m4/jm-macros.m4: Likewise.
23804         * m4/lstat.m4: Likewise.
23805         * m4/malloc.m4: Likewise.
23806         * m4/memcmp.m4: Likewise.
23807         * m4/nanosleep.m4: Likewise.
23808         * m4/putenv.m4: Likewise.
23809         * m4/realloc.m4: Likewise.
23810         * m4/regex.m4: Likewise.
23811         * m4/stat.m4: Likewise.
23812         * m4/strftime.m4: Likewise.
23813
23814 2000-07-02  Jim Meyering  <meyering@lucent.com>
23815
23816         * lib/quotearg.c (mbstate_t): Don't define here.
23817
23818 2000-07-02  Jim Meyering  <meyering@lucent.com>
23819
23820         * lib/nanosleep.c (SIGCONT): Define if not already defined.
23821
23822 2000-07-01  Jim Meyering  <meyering@lucent.com>
23823
23824         * m4/uptime.m4: Put double quotes around use of $cross_compiling.
23825
23826 2000-07-01  Jim Meyering  <meyering@lucent.com>
23827
23828         * m4/ls-mntd-fs.m4: Remove a `FIXME' comment and fix the associated
23829         problem.
23830
23831 2000-07-01  Bruno Haible  <haible@clisp.cons.org>
23832
23833         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Rename BeOS specific
23834         macro from MOUNTED_NEXT_DEV to MOUNTED_FS_STAT_DEV.
23835
23836 2000-07-01  Bruno Haible  <haible@clisp.cons.org>
23837
23838         * lib/mountlist.c: Use MOUNTED_FS_STAT_DEV instead of MOUNTED_NEXT_DEV,
23839         per change in ../m4/ls-mntd-fs.m4.
23840         (read_filesystem_list): Ignore symbolic links.
23841
23842 2000-06-29  Jim Meyering  <meyering@lucent.com>
23843
23844         * lib/same.c: Include <string.h> or <strings.h>, as appropriate,
23845         for declaration of strcmp.
23846
23847         * lib/long-options.c: Include <stdlib.h>, for declaration of exit.
23848
23849         * lib/mountlist.c (fsp_to_string) [HAVE_F_FSTYPENAME_IN_STATFS]:
23850         Avoid warning by casting result to `char *' to remove `const'.
23851
23852 2000-06-28  Jim Meyering  <meyering@lucent.com>
23853
23854         * m4/mbstate_t.m4: Use stdlib.h, not stdio.h.  The latter is not
23855         included by quotearg.c, for which we perform this test.  From
23856         Bruno Haible.
23857
23858 2000-06-27  Bruno Haible  <haible@clisp.cons.org>
23859
23860         * m4/check-decl.m4 (_jm_DECL_HEADERS): Check for utmp.h as well.
23861         * m4/prereq.m4 (jm_PREREQ_READUTMP): Likewise. If either <utmp.h> or
23862         <utmpx.h> exists, put readutmp.o into LIBOBJS.
23863
23864 2000-06-27  Bruno Haible  <haible@clisp.cons.org>
23865
23866         * lib/Makefile.am (libfetish_a_SOURCES): Remove readutmp.c.
23867
23868 2000-06-26  Paul Eggert  <eggert@twinsun.com>
23869
23870         savedir now sets errno on failure and invokes xmalloc to get memory.
23871         Fix a couple of other minor bugs while we're at it.
23872
23873         * lib/savedir.c (<unistd.h>): Do not include; there's no need.
23874         (NAMLEN): Remove macro.
23875         (malloc, realloc): Remove decls.
23876         (stpcpy): Likewise.
23877         ("xalloc.h"): Include.
23878         (NAME_SIZE_DEFAULT): New macro.
23879         (savedir): Use xmalloc / xrealloc to allocate memory.
23880         Use NAME_SIZE_DEFAULT if name_size is negative or overflows to zero.
23881         Skip "" directory entries.
23882         Use strlen to calculate directory entry length, since the old method
23883         is rarely used these days and isn't worth supporting.
23884         Don't use a pointer after freeing it.
23885         Check for integer overflow when calculating allocation size.
23886         Use memcpy to copy entries, instead of stpcpy.
23887         Set errno properly when returning NULL.
23888         Check for readdir error.
23889
23890 2000-06-26  Jim Meyering  <meyering@lucent.com>
23891
23892         * lib/posixtm.c [HAVE_STDLIB_H]: Include stdlib.h, for decl of abort.
23893
23894 2000-06-25  Jim Meyering  <meyering@lucent.com>
23895
23896         * m4/mbstate_t.m4: Include stdio.h before wchar.h to work around
23897         Linux header bug when _XOPEN_SOURCE is defined to 500.
23898
23899 2000-06-25  Bruno Haible  <haible@clisp.cons.org>
23900
23901         * lib/unicodeio.c (print_unicode_char): Work around ansi2knr
23902         deficiency.
23903
23904 2000-06-25  Bruno Haible  <haible@clisp.cons.org>
23905
23906         * lib/getusershell.c (xmalloc, xrealloc): Remove functions.
23907         Include xalloc.h.
23908         Don't include <stdlib.h>.  Don't declare malloc, realloc.
23909
23910 2000-06-24  Jim Meyering  <meyering@lucent.com>
23911
23912         * m4/strerror_r.m4: Revive this file -- to try out an experimental
23913         version of AC_FUNC_STRERROR_R that may work even on BeOS, a system
23914         for which strerror does return char*, but which lacks a conveniently
23915         accessible declaration of the function.  If the compile-test says
23916         strerror_r doesn't work, then resort to a `run'-test that works on
23917         BeOS and segfaults on DEC Unix.
23918
23919 2000-06-24  Jim Meyering  <meyering@lucent.com>
23920
23921         * lib/error.c [!HAVE_DECL_STRERROR_R]: Declare strerror_r.
23922
23923 2000-06-23  Paul Eggert  <eggert@twinsun.com>
23924
23925         * m4/mbstate_t.m4: New file, defining AC_MBSTATE_T_OBJECT.
23926         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Use it.  Add check for iswprint.
23927
23928 2000-06-23  Paul Eggert  <eggert@twinsun.com>
23929
23930         * lib/quotearg.c: Include <wctype.h> after <wchar.h>, for Solaris 2.5.
23931         (mbrtowc, mbstate_t): Define substitutes if
23932         HAVE_MBRTOWC && HAVE_WCHAR_H && !HAVE_MBSTATE_T_OBJECT.
23933         (iswprint): Define to 1 if !defined iswprint && !HAVE_ISWPRINT,
23934         not if ! (HAVE_MBRTOWC && HAVE_WCHAR_H).
23935
23936 2000-06-23  Jim Meyering  <meyering@lucent.com>
23937
23938         * m4/afs.m4: Add missing AC_MSG_RESULT.
23939         Reported by Bruno Haible.
23940
23941         * m4/fsusage.m4: s/AC_MSG_CHECKING/AC_CHECKING/.
23942         Suggestion from Bruno Haible.
23943
23944 2000-06-23  Jim Meyering  <meyering@lucent.com>
23945
23946         * lib/getpass.c: New file, from Bruno Haible.  Required for BeOS.
23947
23948 2000-06-21  Jim Meyering  <meyering@lucent.com>
23949
23950         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add getpass.
23951
23952 2000-06-21  Jim Meyering  <meyering@lucent.com>
23953
23954         * lib/Makefile.am (libfetish_a_SOURCES): Add getstr.c.
23955         (noinst_HEADERS): Add getstr.h.
23956
23957         * lib/getline.c (getstr): Move into a separate file.
23958         * lib/getstr.c (getstr): New file, extracted from getline.c, with
23959         the following changes: new parameter, delim2; both delim[12]
23960         parameters have type `int', not `char'.  The latter would lose
23961         with 8-bit delimiters.
23962         * lib/getstr.h: New file.
23963
23964 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
23965
23966         * lib/xgetcwd.c (xgetcwd): If the required pathname length is smaller
23967         than 1024, return a memory chunk of least possible size, instead
23968         of size PATH_MAX + 2. In the loop, increment the size proportionally.
23969         Use free/xmalloc instead of xrealloc to avoid copying for very long
23970         paths.
23971
23972 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
23973
23974         * lib/path-concat.c (path_concat): Don't access dir[-1] if dir is
23975         the empty string.
23976
23977 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
23978
23979         * lib/canon-host.c (canon_host): Use malloc and memcpy to copy an
23980         address, not strdup.  Include <stdlib.h> and don't declare free().
23981
23982 2000-06-19  Jim Meyering  <meyering@lucent.com>
23983
23984         * lib/getloadavg.c [HAVE_NLIST_H] (NLIST_STRUCT): Define.
23985
23986 2000-06-18  Jim Meyering  <meyering@lucent.com>
23987
23988         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Remove mkdir.
23989
23990         * m4/link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): Change the
23991         `checking whether...' message to be consistent with that of the
23992         lstat test.
23993
23994 2000-06-18  Jim Meyering  <meyering@lucent.com>
23995
23996         * lib/mkdir.c: Remove file, due mainly to copyright incompatibility.
23997         Besides, these days every porting target provides a mkdir function.
23998
23999         * lib/strnlen.c: Include memory.h, string.h, and/or strings.h as
24000         needed. (this snippet comes from src/system.h).
24001
24002 2000-06-16  Bruno Haible  <haible@clisp.cons.org>
24003
24004         * m4/glibc21.m4 (jm_GLIBC21): Define GLIBC21 for Makefiles, not for C.
24005
24006 2000-06-15  Paul Eggert  <eggert@twinsun.com>
24007
24008         * lib/human.c (adjust_value): New function.
24009         (human_readable_inexact): Apply rounding style even when
24010         printing approximate values.
24011
24012 2000-06-14  Paul Eggert  <eggert@twinsun.com>
24013
24014         * lib/human.c (human_readable_inexact): Allow an input block
24015         size that is not a multiple of the output block size, and vice versa.
24016         Reported by Piergiorgio Sartor.
24017
24018 2000-06-14  Paul Eggert  <eggert@twinsun.com>
24019
24020         * lib/getdate.y (get_date): Apply relative times after time
24021         zone indicator, not before.  Reported by Todd A. Jacobs.
24022
24023 2000-06-13  Jim Meyering  <meyering@lucent.com>
24024
24025         * lib/Makefile.am (all-local): Depend on lstat.c and stat.c.
24026
24027         * lib/xstat.in [!HAVE_DECL_FREE]: Declare free in lstat.c.
24028
24029 2000-06-12  Paul Eggert  <eggert@twinsun.com>
24030
24031         * lib/xstat.in: Include <stdlib.h> in lstat, to declare "free".
24032
24033 2000-06-12  Jim Meyering  <meyering@lucent.com>
24034
24035         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Replace with
24036         AC_FUNC_GETLOADAVG from autoconf, and tweak the latter to accept an
24037         optional argument.
24038         * m4/jm-macros.m4: s/AM_FUNC_GETLOADAVG/AC_FUNC_GETLOADAVG/, and supply
24039         the optional argument, `lib'.
24040
24041 2000-06-08  Jim Meyering  <meyering@lucent.com>
24042
24043         * m4/largefile.m4: Remove file (now that it's part of autoconf).
24044
24045 2000-06-04  Paul Eggert  <eggert@twinsun.com>
24046
24047         Rewrite largefile configuration so that we don't need to run
24048         getconf and don't need AC_CANONICAL_HOST.  [I'm leaving the use of
24049         AC_CANONICAL_HOST in configure.in -- jmm]
24050
24051         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS,
24052         AC_SYS_LARGEFILE_SPACE_APPEND): Remove.
24053         (AC_SYS_LARGEFILE_TEST_INCLUDES): New macro.
24054         (AC_SYS_LARGEFILE_MACRO_VALUE): Change arguments from
24055         CODE-TO-SET-DEFAULT to VALUE, INCLUDES, FUNCTION-BODY.
24056         All uses changed.
24057         Instead of inspecting the output of getconf, try to compile the
24058         test program without and with the macro definition.
24059         (AC_SYS_LARGEFILE): Do not require AC_CANONICAL_HOST or check
24060         for getconf.  Instead, check for the needed flags by compiling
24061         test programs.
24062
24063 2000-06-04  Paul Eggert  <eggert@twinsun.com>
24064
24065         * lib/strnlen.c: Include <config.h> if HAVE_CONFIG_H.
24066
24067 2000-06-04  Jim Meyering  <meyering@lucent.com>
24068
24069         * lib/getugroups.c (getugroups): Cast -1 to gid_t, for systems like
24070         SunOS 4.1.4 for which gid_t is an unsigned type.
24071
24072 2000-06-03  Jim Meyering  <meyering@lucent.com>
24073
24074         * m4/prereq.m4 (jm_PREREQ_HUMAN): Use []-quoted list in AC_CHECK_DECLS,
24075         now that autoconf requires that.
24076
24077         * m4/jm-glibc-io.m4: Add a kludge to make autoheader emit the required
24078         #undefs.  E.g., #undef HAVE_DECL_FERROR_UNLOCKED.
24079         Use []-quoted list in AC_CHECK_DECLS, now that autoconf requires that.
24080
24081 2000-06-03  Jim Meyering  <meyering@lucent.com>
24082
24083         * lib/strnlen.c [!HAVE_DECL_MEMCHR]: Declare memchr.
24084
24085 2000-06-03  Bruno Haible  <haible@clisp.cons.org>
24086
24087         * m4/glibc21.m4: New file.
24088         * m4/jm-macros.m4 (jm_MACROS): Call jm_GLIBC21.
24089
24090 2000-06-03  Bruno Haible  <haible@clisp.cons.org>
24091
24092         * lib/Makefile.am (install-exec-local): On systems with glibc-2.1 or
24093         newer, don't install charset.alias.
24094         * lib/config.charset: Change the Linux/glibc rules so they become empty
24095         on glibc-2.1 or newer.
24096
24097 2000-06-02  Jim Meyering  <meyering@lucent.com>
24098
24099         * lib/mountlist.c: Back out last change.  Instead, do this...
24100         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Set the
24101         me_dummy member using the same `ignore'-testing code.
24102         * lib/mountlist.h (ME_DUMMY): Add `autofs' to the list of ignored
24103         fs_type strings.
24104         From Mark D. Roth.
24105
24106 2000-05-29  Jim Meyering  <meyering@lucent.com>
24107
24108         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Ignore
24109         mounts with the `ignore' attribute.  Based on a patch from
24110         Mark D. Roth.
24111
24112 2000-05-28  Jim Meyering  <meyering@lucent.com>
24113
24114         * m4/jm-macros.m4 (AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK): Rename from
24115         jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
24116         * m4/stat.m4: Likewise.
24117         * m4/lstat.m4: Likewise.
24118         * m4/lstat-slash.m4: Remove file (absorbed into autoconf).
24119
24120         * m4/jm-macros.m4 (AC_FUNC_STRERROR_R): Rename from jm_FUNC_STRERROR_R.
24121         * m4/strerror_r.m4: Remove file (absorbed into autoconf).
24122
24123 2000-05-26  Jim Meyering  <meyering@lucent.com>
24124
24125         * m4/uptime.m4: Use `$cross_compiling', not `$ac_cv_prog_cc_cross'.
24126
24127 2000-05-24  Jim Meyering  <meyering@lucent.com>
24128
24129         * m4/prereq.m4: Use []-quoted list in AC_CHECK_MEMBERS, now that
24130         autoconf requires that.
24131         * m4/lib-check.m4: Likewise.
24132         * m4/jm-macros.m4: Likewise.
24133         * m4/strftime.m4: Likewise.
24134
24135         * m4/check-decl.m4 (jm_CHECK_DECLS): Use []-quoted list in
24136         AC_CHECK_DECLS, now that autoconf requires that.
24137
24138 2000-05-22  Jim Meyering  <meyering@lucent.com>
24139
24140         * m4/stat.m4: Require jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
24141         * m4/lstat.m4: Likewise.
24142
24143 2000-05-22  Jim Meyering  <meyering@lucent.com>
24144
24145         * lib/makepath.c: Remove old, now-unnecessary `#ifdef __MSDOS__' block.
24146
24147 2000-05-20  Jim Meyering  <meyering@lucent.com>
24148
24149         * m4/prereq.m4 (jm_PREREQ_HUMAN): New macro.
24150         (jm_PREREQ): Use it.
24151
24152 2000-05-18  Jim Meyering  <meyering@lucent.com>
24153
24154         * lib/hash.c (hash_rehash): Fix a nasty bug: copy the free entry list
24155         back, too, since it may have been modified by allocate_entry.
24156         (hash_delete): Rewrite to use neither the assignment operator
24157         nor the comma operator in an if-expression.
24158
24159 2000-05-15  Paul Eggert  <eggert@twinsun.com>
24160
24161         * lib/closeout.c:
24162         <sys/stat.h>, <sys/types.h>, <unistd.h>, (STDOUT_FILENO):
24163         Remove; no longer needed.
24164         "quotearg.h": Add include.
24165         (file_name): Do not bother to explicitly initialize to NULL; it's less
24166         efficient on some hosts.
24167         (close_stdout_status): Remove test as to whether stdout was already
24168         closed; it breaks for the case "echo x | sort >&-".
24169         Quote file name colons.
24170         Do not assume that _("write error") lacks format strings.
24171
24172 2000-05-15  Jim Meyering  <meyering@lucent.com>
24173
24174         * lib/version-etc.c (version_etc_copyright): Update the copyright
24175         string used in all --version output.
24176
24177 2000-05-14  Jim Meyering  <meyering@lucent.com>
24178
24179         * lib/closeout.c (close_stdout_set_file_name): New function.
24180         (close_stdout_status): Use new file-scoped global.
24181         Return right away if fstat says the stdout file descriptor is invalid.
24182         * lib/closeout.h (close_stdout_set_file_name): Declare.
24183
24184 2000-05-10  Jim Meyering  <meyering@lucent.com>
24185
24186         * lib/closeout.c [default_exit_status]: New file-scoped variable.
24187         (close_stdout_set_status): New function.
24188         * lib/closeout.h (close_stdout_set_status): Declare.
24189
24190 2000-05-09  Jim Meyering  <meyering@lucent.com>
24191
24192         * m4/gettext.m4: Rename this...
24193         * m4/libintl.m4: ...to this.
24194
24195 2000-05-08  Jim Meyering  <meyering@lucent.com>
24196
24197         * lib/long-options.c: Don't include closeout.h.
24198         (parse_long_options): Don't call close_stdout for --version.
24199
24200 2000-05-06  Paul Eggert  <eggert@twinsun.com>
24201
24202         * m4/largefile.m4 (AC_SYS_LARGEFILE): Define _XOPEN_SOURCE to
24203         be 500, instead of _GNU_SOURCE to be 1, to work around glibc
24204         2.1.3 bug.  This avoids a clash when files like regex.c define
24205         _GNU_SOURCE.
24206
24207 2000-05-06  Jim Meyering  <meyering@lucent.com>
24208
24209         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add atexit.
24210         (AC_REPLACE_FUNCS): Add strnlen.
24211
24212         * m4/rmdir-errno.m4 (fetish_FUNC_RMDIR_NOTEMPTY): New macro and file.
24213         * m4/jm-macros.m4: Require fetish_FUNC_RMDIR_NOTEMPTY.
24214
24215         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Save and restore LIBS around
24216         AC_SEARCH_LIBS call for nanosleep.
24217         (LIB_NANOSLEEP): Set and AC_SUBST.
24218
24219 2000-05-06  Jim Meyering  <meyering@lucent.com>
24220
24221         * lib/strnlen.c: Undefine __strnlen and strnlen.
24222         [!weak_alias]: Define __strnlen to strnlen.
24223
24224         * lib/atexit.c: New file, from libiberty.
24225
24226 2000-05-06  Jim Meyering  <meyering@lucent.com>
24227
24228         * lib/closeout.c (close_stdout_status): Also check for errors on the
24229         stderr stream.
24230
24231 2000-05-05  Jim Meyering  <meyering@lucent.com>
24232
24233         * m4/jm-macros.m4 (jm_MACROS): Save and restore LIBS around
24234         AC_SEARCH_LIBS call for clock_gettime.
24235         (LIB_CLOCK_GETTIME): Set and AC_SUBST.
24236
24237         * m4/search-libs.m4: Update from autoconf.
24238
24239         su doesn't work on Solaris 2.6.
24240         * m4/lib-check.m4: When checking for struct spwd.sp_pwdp, also include
24241         <shadow.h>.  Reported by Dragos Harabor.
24242
24243 2000-05-05  Bruno Haible  <haible@clisp.cons.org>
24244
24245         * lib/localcharset.c (get_charset_aliases): Use malloc, realloc and
24246         memcpy instead of xmalloc, xrealloc, path_concat.
24247         (locale_charset): Treat empty environment variables as absent.
24248         (DIRECTORY_SEPARATOR, ISSLASH): New macros.
24249
24250 2000-05-04  Jim Meyering  <meyering@lucent.com>
24251
24252         * lib/getopt.c: Update from glibc.
24253         * lib/obstack.c: Likewise.
24254         * lib/obstack.h: Likewise.
24255         * lib/regex.c: Likewise.  NB: K&R compiler support is dropped for this
24256         file
24257
24258         * lib/regex.h: Likewise.
24259         * lib/strndup.c: Likewise.
24260         * lib/strnlen.c: New file, from glibc.
24261
24262 2000-05-03  Jim Meyering  <meyering@lucent.com>
24263
24264         * m4/check-decl.m4 (AC_CHECK_DECLS): Add strndup.
24265
24266 2000-05-02  Paul Eggert  <eggert@twinsun.com>
24267
24268         * m4/largefile.m4 (AC_SYS_LARGEFILE): Define _GNU_SOURCE if
24269         this is needed to make ftello visible (e.g. glibc 2.1.3).  Use
24270         compile-time test, rather than inspecting host and OS, to
24271         decide whether to define _LARGEFILE_SOURCE.
24272
24273 2000-05-01  Jim Meyering  <meyering@lucent.com>
24274
24275         * m4/fsusage.m4: Use AC_MSG_CHECKING instead of obsolete AC_CHECKING.
24276
24277         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add BeOS support.
24278         Based on a patch from Bruno Haible.
24279
24280 2000-05-01  Jim Meyering  <meyering@lucent.com>
24281
24282         * lib/full-write.c (full_write): Remove `FIXME' part of comment.
24283
24284 2000-04-29  Jim Meyering  <meyering@lucent.com>
24285
24286         * lib/path-concat.c: Declare strdup only if it's not defined.
24287         * lib/canon-host.c: Likewise.
24288
24289 2000-04-28  Jim Meyering  <meyering@lucent.com>
24290
24291         * lib/rpmatch.c [HAVE_LIMITS_H]: Include limits.h before regex.h to
24292         avoid redefinition warning on some systems (HPUX).  Otherwise, regex.h
24293         is included first, then limits.h is included by locale.h by libintl.h.
24294         From John David Anglin.
24295
24296 2000-04-25  Jim Meyering  <meyering@lucent.com>
24297
24298         * lib/makepath.c (S_IRWXUGO): Define.
24299         (make_path): Always perform explicit chmod if MODE specifies any
24300         of the `special' permission bits.  Prompted by a bug report against
24301         install from Mate Wierdl and Joost van Baal.
24302
24303 2000-04-18  Jim Meyering  <meyering@lucent.com>
24304
24305         * m4/prereq.m4 (jm_PREREQ_GETPAGESIZE): New macro.
24306         (jm_PREREQ): Use it.
24307
24308 2000-04-18  Jim Meyering  <meyering@lucent.com>
24309
24310         * lib/README: New file.
24311
24312         * lib/getpagesize.h [!getpagesize && HAVE_OS_H && B_PAGE_SIZE]: Define
24313         getpagesize.  For BeOS.  Based on a patch from Bruno Haible.
24314
24315 2000-04-17  Jim Meyering  <meyering@lucent.com>
24316
24317         Get it right :-)
24318         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Emit the
24319         actual #define via AH_VERBATIM.  Don't need separate AC_DEFINE.
24320         Suggestion from Akim Demaille.
24321
24322 2000-04-17  Jim Meyering  <meyering@lucent.com>
24323
24324         * lib/strftime.c (my_strftime) [strftime]: Declare strftime here, since
24325         the definition of it to rpl_strftime also defined-away the system's
24326         declaration.
24327
24328 2000-04-15  Jim Meyering  <meyering@lucent.com>
24329
24330         Use `C' to denote so-called `contiguous' files, the same way
24331         that tar does.
24332         * lib/filemode.c (S_ISCTG) [!S_ISCTG && S_IFCTG]: Define.
24333         (ftypelet): Use S_ISCTG.
24334         From Michael Deutschmann.
24335
24336 2000-04-14  Jim Meyering  <meyering@lucent.com>
24337
24338         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use the one-arg
24339         form of AC_DEFINE.  Otherwise, the #ifndef in AH_VERBATIM gets
24340         clobbered.
24341
24342 2000-04-14  Jim Meyering  <meyering@lucent.com>
24343
24344         * lib/strftime.c (my_strftime) [#ifdef strftime]: Declare strftime.
24345
24346 2000-04-13  Jim Meyering  <meyering@lucent.com>
24347
24348         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use new
24349         AH_VERBATIM to insert required #ifndef into config.h.in.
24350         Suggestion from Akim Demaille.
24351
24352 2000-04-12  Jim Meyering  <meyering@lucent.com>
24353
24354         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Use AC_CHECK_HEADERS, not
24355         `AC_CHECK_HEADER' to check for locale.h.  Thanks to a report from
24356         Christian Krackowizer.
24357
24358         More code moved from ../configure.in into (jm_CHECK_ALL_TYPES).
24359         * m4/jm-macros.m4 (_GNU_SOURCE): Define.
24360         (AC_SYS_LARGEFILE): Require.
24361         (AM_C_PROTOTYPES): Require.
24362
24363 2000-04-08  Jim Meyering  <meyering@lucent.com>
24364
24365         * lib/Makefile.am (charset.alias): Use t-$@, not $@-t so the DOS 8.3
24366         names don't conflict.  Reported by Eli Zaretskii.
24367
24368 2000-04-07  Jim Meyering  <meyering@lucent.com>
24369
24370         * lib/putenv.c: Move inclusion of errno.h so it follows that of
24371         sys/types.h, to work around system header problems on AIX 3.2.5.
24372         From Bruno Haible.
24373
24374 2000-04-07  Bruno Haible  <haible@clisp.cons.org>
24375
24376         * lib/unicodeio.c (print_unicode_char): Avoid triggering Solaris iconv
24377         bug.  Deal with the different error behavior of Irix iconv.
24378
24379 2000-04-05  Paul Eggert  <eggert@twinsun.com>
24380
24381         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Don't use -n32 on
24382         IRIX if the installer said otherwise.
24383
24384 2000-04-05  Jim Meyering  <meyering@lucent.com>
24385
24386         Portability tweaks required for ultrix4.3.
24387         * m4/check-decl.m4 [!HAVE_UTMPX_H] (headers): Include <utmp.h>.
24388         (jm_CHECK_DECLS): Add getutent to the list of functions.
24389         (_jm_DECL_HEADERS): Add utmpx.h.
24390         From John David Anglin.
24391
24392         * m4/strftime.m4: Back out the 2000-04-02 change.
24393         Instead of that change, simply undefine putenv in the test program.
24394
24395 2000-04-05  Jim Meyering  <meyering@lucent.com>
24396
24397         Portability tweaks required for ultrix4.3.
24398         * lib/readutmp.h [HAVE_UTMPX_H && !HAVE_DECL_GETUTENT]: Declare
24399         getutent.
24400         * lib/readutmp.c: Include sys/types.h before sys/stat.h.
24401         * lib/canon-host.c: Declare strdup.
24402         * lib/path-concat.c: Likewise.
24403         From John David Anglin.
24404
24405 2000-04-04  Jim Meyering  <meyering@lucent.com>
24406
24407         Be more DOS 8.3-friendly.
24408         * lib/ref-add.sin: Renamed from ref-add.sed.in.
24409         * lib/ref-del.sin: Renamed from ref-del.sed.in.
24410         * lib/Makefile.am: Reflect renaming.
24411         Reported by Eli Zaretskii.
24412
24413         Use a temporary file name that won't clash with `charset.alias'
24414         in the DOS 8.3 name space.
24415         * lib/Makefile.am (charset_tmp): Define.
24416         (install-exec-local): Use $(charset_tmp) instead of $(charset_alias)-t.
24417         (uninstall-local): Likewise.
24418         Reported by Eli Zaretskii.
24419
24420 2000-04-03  Jim Meyering  <meyering@lucent.com>
24421
24422         * m4/gettext.m4: Fix typo in comment.
24423
24424         * m4/codeset.m4 (AC_CHECK_HEADERS): Add langinfo.h (moved here from
24425         textutils/configure.in).  Suggestion from Paul Eggert.
24426         (AC_CHECK_FUNCS): Add nl_langinfo.  (also from textutils/configure.in)
24427
24428 2000-04-02  Paul Eggert  <eggert@twinsun.com>
24429
24430         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME): Set TZ environment
24431         variable in the shell rather than using putenv, which isn't
24432         portable.  This avoids the configure-time inter-test dependency
24433         on the potentially-renamed putenv function.
24434
24435 2000-03-30  Paul Eggert  <eggert@twinsun.com>
24436
24437         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Include <sys/stat.h>
24438         before checking struct stat.st_blksize, so that
24439         HAVE_STRUCT_STAT_ST_BLKSIZE is defined correctly.
24440
24441 2000-03-29  Paul Eggert  <eggert@twinsun.com>
24442
24443         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Check for strftime,
24444         since strftime.c uses HAVE_STRFTIME to decide whether to use
24445         the underlying strftime.
24446
24447 2000-03-29  Paul Eggert  <eggert@twinsun.com>
24448
24449         * lib/time/strftime.c (my_strftime): Make sure we call the system
24450         strftime, not ourselves, when invoking the underlying strftime.
24451
24452 2000-03-24  Jim Meyering  <meyering@lucent.com>
24453
24454         * lib/Makefile.am (EXTRA_DIST): Add ref-add.sed.in and ref-del.sed.in.
24455         (charset_alias): Define.
24456         (install-exec-local): Factor out common code.
24457         (uninstall-local): Split lines longer than 80.
24458         (ref-add.sed, ref-del.sed): Remove rules... (do the following instead)
24459         (SUFFIXES): Define.
24460         (.sed.in.sed): New rule.  Don't redirect directly to $@.
24461         (CLEANFILES): Add ref-add.sed and ref-del.sed.
24462
24463 2000-03-19  Bruno Haible  <haible@clisp.cons.org>
24464
24465         * lib/config.charset: Output a line containing "Packages using this
24466         file".
24467         * lib/ref-add.sed.in, lib/ref-del.sed.in: New files.
24468         * lib/Makefile.am (install-exec-local, uninstall-local, ref-add.sed,
24469         ref-del.sed): New rules.
24470
24471 2000-03-17  Jim Meyering  <meyering@lucent.com>
24472
24473         * lib/unicodeio.c (<string.h>): Include only #if HAVE_STRING_H.
24474         Otherwise, include <strings.h>
24475
24476 2000-03-17  Bruno Haible  <haible@clisp.cons.org>
24477
24478         * lib/unicodeio.c (utf8_wctomb): New function.
24479         (print_unicode_char): Pass the Unicode character to iconv in UTF-8
24480         format instead of in UCS-4 with platform dependent endianness.
24481
24482 2000-03-10  Jim Meyering  <meyering@lucent.com>
24483
24484         * m4/lib-check.m4: Look for getspnam in -lgen, too.
24485         From Marco Franzen.
24486
24487 2000-03-07  Paul Eggert  <eggert@twinsun.com>
24488
24489         * lib/savedir.c (savedir): Work even if directory size is
24490         negative; this can happen with some screwy NFS configurations.
24491
24492 2000-03-06  Jim Meyering  <meyering@lucent.com>
24493
24494         * lib/localcharset.c (get_charset_aliases): Don't try to free file_name
24495         if it's NULL (because we ran out of memory).  From Bruno Haible.
24496
24497 2000-03-05  Jim Meyering  <meyering@lucent.com>
24498
24499         * lib/localcharset.c ("path-concat.h"): Include.
24500         (get_charset_aliases): Use path_concat instead of ANSI string
24501         concatenation.
24502
24503         * lib/unicodeio.h (PARAMS): Define.
24504         Use it to guard prototype.
24505
24506 2000-03-04  Jim Meyering  <meyering@lucent.com>
24507
24508         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require AC_C_VOLATILE,
24509         for lib/localcharset.c.
24510
24511 2000-03-04  Jim Meyering  <meyering@lucent.com>
24512
24513         * lib/Makefile.am (install-exec-local): Create $(libdir) before
24514         installing into it.
24515         (uninstall-local): Uncomment this rule so `make distcheck' works
24516         once again.
24517
24518         * lib/unicodeio.c (<errno.h>): Include it.
24519         (errno): Declare if not defined.
24520
24521         * lib/localcharset.c: Add Bruno's comment justifying use of volatile.
24522
24523         * lib/config.charset: New version, incorporating remarks from a linux
24524         i18n mailing list.  From Bruno Haible.
24525
24526 2000-03-04  Bruno Haible  <haible@clisp.cons.org>
24527
24528         * m4/codeset.m4: New file.
24529         * m4/iconv.m4: New file.
24530         * m4/jm-macros.m4 (jm_MACROS): Call jm_LANGINFO_CODESET and jm_ICONV.
24531
24532 2000-03-03  Jim Meyering  <meyering@lucent.com>
24533
24534         * m4/regex.m4: Make sure re_compile_pattern accepts patterns like `{1'.
24535
24536 2000-03-02  Jim Meyering  <meyering@lucent.com>
24537
24538         * m4/timespec.m4: Require AC_HEADER_TIME before the cache check so
24539         the messages come out on separate lines.
24540
24541         * m4/jm-glibc-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO): Use AC_CHECK_DECLS,
24542         rather than jm_CHECK_DECLARATIONS.
24543         * m4/decl.m4: Remove now-unused file.
24544
24545         * m4/check-decl.m4 (AC_CHECK_DECLS): Add getlogin, ttyname, and
24546         geteuid.
24547
24548 2000-03-02  Jim Meyering  <meyering@lucent.com>
24549
24550         * lib/Makefile.am (EXTRA_DIST): Add config.charset.
24551
24552 2000-03-01  Jim Meyering  <meyering@lucent.com>
24553
24554         * lib/localcharset.c: Guard some #includes with `#if HAVE_...'.
24555         * lib/unicodeio.c: Likewise.
24556
24557 2000-03-01  Bruno Haible  <haible@clisp.cons.org>
24558
24559         * lib/config.charset: New file.
24560         * lib/localcharset.c: New file.
24561         * lib/unicodeio.h, lib/unicodeio.c: New files.
24562         * lib/Makefile.am (DEFS): Add -DLIBDIR=...
24563         (libfetish_a_SOURCES): Add localcharset.c and unicodeio.c.
24564         (noinst_HEADERS): Add unicodeio.h.
24565         (all-local, install-exec-local, charset.alias): New targets.
24566
24567 2000-02-28  Paul Eggert  <eggert@twinsun.com>
24568
24569         * lib/quotearg.c (ALERT_CHAR): New macro.
24570         (quotearg_buffer_restyled): Use it.
24571
24572 2000-02-27  Jim Meyering  <meyering@lucent.com>
24573
24574         * m4/check-decl.m4: Add getenv to the list.
24575
24576 2000-02-27  Jim Meyering  <meyering@lucent.com>
24577
24578         * lib/strtoumax.c: Fix typo in decl of strtoul: s/long long/long/.
24579         Guard declaration of strtoull also with `&& HAVE_UNSIGNED_LONG_LONG'.
24580
24581         * lib/backupfile.c: Guard inclusion of stdlib.h with
24582         `#if HAVE_STDLIB_H', not `#if STDC_HEADERS'.
24583         Declare malloc if needed.
24584
24585         * lib/backupfile.c: Use `#if !HAVE_DECL...' instead of
24586         `#ifndef HAVE_DECL..'
24587         now that autoconf always defines the HAVE_DECL_ symbols.
24588         * lib/human.c: Likewise.
24589         * lib/same.c: Likewise.
24590         * lib/strtoumax.c: Likewise.
24591
24592         * lib/backupfile.c: Arrange for cpp to fail if the configure-time
24593         declaration check was not run.
24594         * lib/hash.c: Likewise.
24595         * lib/human.c: Likewise.
24596         * lib/same.c: Likewise.
24597         * lib/strtoumax.c: Likewise.
24598
24599         * lib/userspec.c (parse_user_spec): If there is no `:' but there is a
24600         `.', then first look up the entire `.'-containing string as a login
24601         name.
24602
24603 2000-02-23  Jim Meyering  <meyering@lucent.com>
24604
24605         * m4/check-decl.m4: Now that we have the new AC_CHECK_DECLS, use it
24606         in place of my hack.
24607
24608 2000-02-18  Paul Eggert  <eggert@twinsun.com>
24609
24610         * lib/getdate.y: Handle two-digit years with leading zeros correctly.
24611         (textint): New typedef.
24612         (parser_control): Member year changed from int to textint.
24613         All uses changed.
24614         (YYSTYPE): Removed; replaced by %union with int and textint members.
24615         (tDAY, tDAY_UNIT, tDAYZONE, tHOUR_UNIT, tID, tLOCAL_ZONE, tMERIDIAN,
24616         tMINUTE_UNIT, tMONTH, tMONTH_UNIT tSEC_UNIT, tSNUMBER, tUNUMBER,
24617         tYEAR_UNIT, tZONE, o_merid): Now of type <intval>.
24618         (tSNUMBER, tUNUMBER): Now of type <textintval>.
24619         (date, number, to_year): Use width of number in digits, not its value,
24620         to determine whether it's a 2-digit year, or a 2-digit time.
24621         (yylex): Store number of digits of numeric tokens.
24622         Reported by John Kendall.
24623
24624         (parser_control): Changed from struct parser_control to typedef (for
24625         consistency).  All uses changed.
24626
24627         (tID): Removed; not used.
24628         (yylex): Return '?' for unknown identifiers, rather than (unused) tID.
24629
24630 2000-02-14  Paul Eggert  <eggert@twinsun.com>
24631
24632         * lib/getpagesize.h (getpagesize): Port to VMS for Alpha;
24633         adapted from changes to grep getpagesize.h by Martin P.J. Zinser.
24634
24635 2000-02-12  Jim Meyering  <meyering@lucent.com>
24636
24637         * lib/userspec.c (ISDIGIT): Define it.
24638         (isdigit): Remove definition.
24639         (is_number): Use ISDIGIT, not isdigit.
24640         <libintl.h>: Include.
24641         (_ and N_): Define.
24642         (parse_user_spec): Mark translatable strings.
24643
24644 2000-02-10  Jim Meyering  <meyering@lucent.com>
24645
24646         With these changes, nanosleep.[ch] are finally enough like the other
24647         lib/* replacement files to compile on a few more losing systems.
24648
24649         * lib/nanosleep.h: Don't include config.h.
24650         Remove prototype from declaration of nanosleep.
24651         (PARAMS): Remove now-unneeded definition.
24652         * lib/nanosleep.c: #undef nanosleep.
24653         (rpl_nanosleep): Rename from nanosleep.
24654
24655 2000-02-10  Jim Meyering  <meyering@lucent.com>
24656
24657         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Rename replacement function from
24658         gnu_nanosleep to rpl_nanosleep.
24659
24660 2000-02-09  Jim Meyering  <meyering@lucent.com>
24661
24662         * m4/lib-check.m4 (jm_LIB_CHECK): Fix typo: check for sp_pwdp in
24663         struct spwd, rather than in struct passwd.  Reported by Gaël Quéri.
24664
24665 2000-02-08  Akim Demaille  <akim@epita.fr>
24666
24667         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Quote square brackets with
24668         `[' and `]' and remove uses of `changequote'.
24669         (AC_SYS_LARGEFILE_MACRO_VALUE): Likewise.
24670         (AC_SYS_LARGEFILE): Likewise.
24671         * m4/gettext.m4 (AM_GNU_GETTEXT): Likewise.
24672         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME): Remove now-unnecessary use
24673         of changequote.
24674         * m4/regex.m4 (jm_INCLUDED_REGEX): Likewise.
24675         * m4/readdir.m4 (jm_FUNC_READDIR): Likewise
24676         * m4/memcmp.m4 (jm_AC_FUNC_MEMCMP): Likewise, and add `int' for main.
24677         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Likewise.
24678
24679 2000-02-05  Jim Meyering  <meyering@lucent.com>
24680
24681         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require most macros.
24682         Remove explicit use of AC_HEADER_TIME.  It is required by
24683         jm_CHECK_TYPE_STRUCT_TIMESPEC.  Using AC_HEADER_TIME and
24684         `AC_REQUIRE'ing jm_CHECK_TYPE_STRUCT_TIMESPEC provoked a but
24685         in autoconf whereby the expansion of the latter ended up preceding
24686         the expansion of its prerequisite, AC_HEADER_TIME.
24687         Reported by Volker Borchert.
24688
24689 2000-02-03  Jim Meyering  <meyering@lucent.com>
24690
24691         * m4/prereq.m4 (jm_PREREQ_READUTMP): Check for utmpxname.
24692
24693 2000-02-03  Jim Meyering  <meyering@lucent.com>
24694
24695         * lib/readutmp.c (read_utmp): Guard with `#ifdef UTMP_NAME_FUNCTION',
24696         rather than with `#if HAVE_UTMPNAME'.
24697
24698 2000-02-02  Jim Meyering  <meyering@lucent.com>
24699
24700         * m4/prereq.m4 (jm_PREREQ_ADDEXT): Fix typo that resulted in no
24701         definition of HAVE_PATHCONF: s/AC_CHECK_FUNC/AC_CHECK_FUNCS/.
24702         Reported by Eli Zaretskii.
24703
24704 2000-02-01  Jim Meyering  <meyering@lucent.com>
24705
24706         * lib/readutmp.h (UT_USER): Add parens.  From Andreas Schwab.
24707
24708 2000-01-31  Jim Meyering  <meyering@lucent.com>
24709
24710         * m4/check-decl.m4 (jm_CHECK_DECLS): Add nanosleep to the list of
24711         functions.  Add the time.h and sys/time.h headers along with the
24712         AC_REQUIRE'ment of AC_HEADER_TIME.
24713
24714 2000-01-31  Jim Meyering  <meyering@lucent.com>
24715
24716         * lib/nanosleep.h (nanosleep): Guard declaration with
24717         `#if ! HAVE_DECL_NANOSLEEP'.
24718         Without this, OFS gets a redeclaration error for rpl_nanosleep, due to
24719         the declaration in that vendor's sys/timers.h.
24720         Reported by Christian Krackowizer.
24721
24722         * lib/quotearg.c (ISASCII): Add #undef and move definition to follow
24723         inclusion of wctype.h to work around Solaris 2.6 namespace pollution.
24724         (ISPRINT): Likewise.
24725         Reported by Tom Tromey.
24726
24727 2000-01-30  Jim Meyering  <meyering@lucent.com>
24728
24729         * m4/lib-check.m4: Clean up some kludgy old shadow password tests.
24730
24731         * m4/prereq.m4 (utmp_includes): Define.
24732         Check for ut_user and ut_name members in both struct utmpx
24733         and struct utmp.
24734
24735 2000-01-30  Jim Meyering  <meyering@lucent.com>
24736
24737         * lib/readutmp.c (extract_trimmed_name): Use UT_USER instead of
24738         hard-coding uses of ->ut_name.  The latter doesn't work with new Linux
24739         header files where only utmpx.ut_user is declared.
24740
24741         * lib/readutmp.h (UT_USER): Define.
24742
24743 2000-01-29  Jim Meyering  <meyering@lucent.com>
24744
24745         * m4/lib-check.m4: New file containing library-related checks from
24746         fileutils and sh-utils (textutils had none).
24747
24748 2000-01-28  Jim Meyering  <meyering@lucent.com>
24749
24750         * m4/perl.m4: Change format of warning message to look more like that
24751         from the missing script.  Suggestion from François Pinard.
24752
24753 2000-01-25  Jim Meyering  <meyering@lucent.com>
24754
24755         * m4/timespec.m4: Require AC_HEADER_TIME, and include sys/time.h as
24756         well as time.h in the compile check.
24757         * m4/nanosleep.m4: Require AC_HEADER_TIME rather than simply using it.
24758         Fix typo in cross-compiling case: s/yes/no/.
24759
24760 2000-01-23  Jim Meyering  <meyering@lucent.com>
24761
24762         * m4/jm-macros.m4: Move df-related tests here from
24763         fileutils/configure.in
24764
24765         * m4/ls-mntd-fs.m4: s/list_mounted_fs/ac_list_mounted_fs/
24766         (jm_LIST_MOUNTED_FILESYSTEMS): Take two parameters.
24767
24768         * m4/fsusage.m4: New file.  Extracted from fileutils/configure.in.
24769         s/space/ac_fsusage_space/.
24770         (jm_FILE_SYSTEM_USAGE): Take two parameters.
24771
24772         * m4/ftruncate.m4: New file (derived from part of
24773         fileutils/configure.in).
24774         * m4/jm-macros.m4 (jm_FUNC_FTRUNCATE): AC_REQUIRE it.
24775         (jm_CHECK_ALL_TYPES): Require AC_HEADER_MAJOR and AC_HEADER_DIRENT.
24776
24777         * m4/jm-macros.m4 (OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, MAN):
24778         AC_SUBST these here, rather than just in sh-util/configure.in, so
24779         that the now-shared-by-fileutils-and-textutils lib/Makefile.am are
24780         all the same.
24781         (AM_FUNC_OBSTACK): Add (from fileutils/configure.in).
24782         (AC_CHECK_FUNCS): Merge all checks from fileutils, textutils, sh-utils.
24783         (AM_FUNC_STRTOD): Added (from textutils', sh-utils' configure.in).
24784         (AC_SUBST(POW_LIBM)): Likewise.
24785         (AC_SUBST(DF_PROG)): Moved from fileutils/configure.in.
24786
24787 2000-01-23  Jim Meyering  <meyering@lucent.com>
24788
24789         * lib/Makefile.am (libfetish_a_SOURCES): Remove explicit mention of
24790         obstack.c.
24791
24792 2000-01-22  Jim Meyering  <meyering@lucent.com>
24793
24794         * m4/jm-macros.m4: Call AC_PROG_CC_STDC just before AC_C_CONST.
24795
24796         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Add wctype.h.
24797
24798         * m4/jm-macros.m4 (AC_CHECK_HEADERS): Add checks from fileutils'
24799         configure.in
24800         (AC_CHECK_HEADERS): Likewise for sh-utils.
24801         (AC_CHECK_HEADERS): Likewise for textutils.
24802         Merge the three lists of headers.
24803
24804         * m4/prereq.m4 (jm_PREREQ_ADDEXT): New macro.  Parts moved here
24805         from fileutils' configure.in.
24806
24807         * m4/decl.m4: Remove kludgy `test -z $ac_...AC_CHECK_HEADERS(...)'
24808         code. Moved tests into their own function (_jm_DECL_HEADERS) in
24809         check-decl.m4.
24810
24811         * m4/check-decl.m4: Use #if rather than #ifdef.
24812         Add HAVE_DECL_STRTOUL and HAVE_DECL_STRTOULL.
24813         (jm_CHECK_DECLARATIONS): Add strtoul strtoull.
24814         (_jm_DECL_HEADERS): Define new function.
24815         (jm_CHECK_DECLARATIONS): Require it.
24816
24817 2000-01-22  Jim Meyering  <meyering@lucent.com>
24818
24819         * lib/strtoumax.c: [! HAVE_DECL_STRTOUL]: Declare strtoul.
24820         [! HAVE_DECL_STRTOULL]: Declare strtoull.
24821         Required for some AIX systems.  Reported by Christian Krackowizer.
24822         [TESTING] (main): New function.
24823
24824         1997-10-17  Eli Zaretskii  <eliz@is.elta.co.il>
24825         * lib/dirname.c (dir_name): Support for DOS-style file names with drive
24826         letters.
24827
24828         * lib/quotearg.c [HAVE_WCTYPE_H]: Include <wctype.h> for decl of
24829         iswprint.
24830
24831         * lib/strverscmp.c (ISDIGIT): Define.
24832         (strverscmp): Use ISDIGIT, not isdigit.
24833
24834 2000-01-19  Jim Meyering  <meyering@lucent.com>
24835
24836         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Include <sys/time.h>, too.
24837         Use AC_HEADER_TIME.  Volker Borchert reported that OpenBSD-2.3/sparc
24838         defines `struct timespec' in <sys/time.h>
24839
24840         * m4/c-bs-a.m4: Remove uses of changequote altogether.
24841         Thanks to Akim for explaining.
24842
24843 2000-01-17  Paul Eggert  <eggert@twinsun.com>
24844
24845         * lib/nanosleep.c (nanosleep):
24846         Don't use SA_INTERRUPT to decide whether to call sigaction, as
24847         POSIX.1 doesn't require SA_INTERRUPT and some systems
24848         (e.g. Solaris 7) don't define it.  Use SA_NOCLDSTOP instead;
24849         it's been part of POSIX.1 since day 1 (in 1988).
24850
24851 2000-01-17  Jim Meyering  <meyering@lucent.com>
24852
24853         * lib/interlock: Remove unused file.  Reported by François Pinard.
24854
24855 2000-01-16  Paul Eggert  <eggert@twinsun.com>
24856
24857         * lib/quotearg.c (quotearg_buffer_restyled): Do not quote
24858         alert, backslash, formfeed, and vertical tab unnecessarily in
24859         shell quoting style.
24860
24861 2000-01-16  Jim Meyering  <meyering@lucent.com>
24862
24863         * m4/jm-macros.m4: Require jm_FUNC_GROUP_MEMBER, jm_FUNC_PUTENV,
24864         AM_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, jm_FUNC_MKTIME,
24865         jm_FUNC_GETGROUPS AC_FUNC_VPRINTF, AC_FUNC_ALLOCA,
24866         AM_FUNC_GETLOADAVG, and jm_SYS_PROC_UPTIME.
24867
24868 2000-01-16  Jim Meyering  <meyering@lucent.com>
24869
24870         * m4/c-bs-a.m4: Use `changequote(<<,>>)', rather than `changequote(, )'
24871         because the latter didn't work.
24872
24873 2000-01-15  Jim Meyering  <meyering@lucent.com>
24874
24875         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add gethostname and getusershell.
24876         (AC_REPLACE_FUNCS): Add memcpy and memset.
24877         Add these, too: stime strcspn stpcpy strstr strtol strtoul.
24878         Add strpbrk.
24879         Add these: euidaccess memcmp mkdir rmdir rpmatch strndup strverscmp.
24880
24881 2000-01-12  Jim Meyering  <meyering@lucent.com>
24882
24883         * m4/prereq.m4 (jm_PREREQ_CANON_HOST): New macro.
24884         (jm_PREREQ): Use it.
24885         (jm_PREREQ_READUTMP): New macro.
24886         (jm_PREREQ): Use it.
24887
24888 2000-01-11  Paul Eggert  <eggert@twinsun.com>
24889
24890         Quote multibyte characters correctly.
24891         * m4/c-bs-a.m4: New file.
24892         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): New macro.
24893         (jm_PREREQ): Use it.
24894
24895 2000-01-11  Paul Eggert  <eggert@twinsun.com>
24896
24897         * m4/uintmax_t.m4: Port to autoconf 2.13.
24898
24899 2000-01-08  Jim Meyering  <meyering@ascend.com>
24900
24901         * m4/strerror_r.m4 (jm_FUNC_STRERROR_R): New file/macro.
24902         * m4/jm-macros.m4 (jm_FUNC_STRERROR_R): Require it.
24903
24904 2000-01-04  Jim Meyering  <meyering@ascend.com>
24905
24906         * m4/d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename from
24907         jm_STRUCT_DIRENT_D_TYPE.
24908         * m4/d-ino.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_INO): Rename from
24909         jm_STRUCT_DIRENT_D_INO.
24910         * m4/utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Rename from
24911         jm_STRUCT_UTIMBUF.
24912         * m4/jm-macros.m4: Reflect s/jm_STRUCT_/jm_CHECK_TYPE_STRUCT_/
24913         renamings.
24914         * m4/utime.m4: Likewise.
24915
24916         * m4/timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): New file, macro.
24917         * m4/jm-macros.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): Require it.
24918
24919 2000-01-03  Paul Eggert  <eggert@twinsun.com>
24920
24921         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Search for nanosleep in -lrt
24922         (for Solaris 7) and in -lposix4 (for Solaris 2.5.1).
24923
24924 2000-01-02  Jim Meyering  <meyering@ascend.com>
24925
24926         * m4/search-libs.m4: Escape `$' in $3 of dnl comment.  I no longer
24927         remember if this is necessary.
24928
24929 1999-12-26  Jim Meyering  <meyering@ascend.com>
24930
24931         * m4/jm-macros.m4: Use it here.
24932         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): New file/macro.
24933
24934 1999-12-23  Jim Meyering  <meyering@ascend.com>
24935
24936         * m4/jm-macros.m4: Check for clock_gettime (moved from
24937         fileutils/configure.in)
24938         Check for gettimeofday.
24939
24940 1999-12-20  Jim Meyering  <meyering@ascend.com>
24941
24942         * m4/strftime.m4: Remove kludge, now that I'm using the fixed
24943         autoconf-2.14a-1999-12-20.
24944
24945 1999-12-19  Jim Meyering  <meyering@ascend.com>
24946
24947         * m4/lstat-slash.m4: New file.
24948         * m4/jm-macros.m4: Use the new macro:
24949         jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
24950
24951 1999-12-07  Jim Meyering  <meyering@ascend.com>
24952
24953         * m4/perl.m4: Require that File::Compare be available, too.
24954         Too many systems seem to lack it.
24955
24956         * m4/strftime.m4: Add checks for most of the cpp macros tested in
24957         GNU's strftime.c.  Prompted by a patch from Paul Eggert.
24958
24959 1999-11-18  Paul Eggert  <eggert@twinsun.com>
24960
24961         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around a
24962         problem with the QNX 4.25 shell, which doesn't propagate exit
24963         status of failed commands inside shell assignments.
24964
24965 1999-11-17  Jim Meyering  <meyering@ascend.com>
24966
24967         * m4/gettext.m4: Use new AC_CONFIG_LINKS in place of AC_LINK_FILES.
24968
24969 1999-11-07  Jim Meyering  <meyering@ascend.com>
24970
24971         * m4/getloadavg.m4: Add `, 1, [FIXME]' to each use of AC_DEFINE.
24972
24973 1999-11-06  Jim Meyering  <meyering@ascend.com>
24974
24975         * m4/link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): New file/macro.
24976         * m4/jm-macros.m4 (jm_MACROS): Use it here.
24977
24978 1999-11-05  Jim Meyering  <meyering@ascend.com>
24979
24980         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Move some tests from
24981         configure.in of textutils, fileutils, and sh-utils into this one
24982         (shared between those packages) file.
24983         Use `AC_CHECK_MEMBERS((struct stat.st_blksize))' instead of deprecated
24984         AC_STRUCT_ST_BLKSIZE.
24985
24986 1999-11-03  Jim Meyering  <meyering@ascend.com>
24987
24988         * m4/ssize_t.m4: Remove file.  No longer needed since the new version
24989         of AC_CHECK_TYPE checks includes unistd.h.
24990         * m4/jm-macros.m4: Use straight `AC_CHECK_TYPE(ssize_t, int)'.
24991         Suggestion from Akim Demaille.
24992
24993 1999-10-30  Jim Meyering  <meyering@ascend.com>
24994
24995         * m4/uintmax_t.m4: Require 2.14a.  Remove backslash before backtick in
24996         m4-quoted string.
24997         * m4/ls-mntd-fs.m4: Likewise.
24998         * m4/jm-macros.m4: Likewise.  Also, use AC_TYPE_SSIZE_T instead
24999         * m4/jm-winsz1.m4: Likewise.
25000
25001         * m4/const.m4: Remove file, since the fix made it into the experimental
25002         version of autoconf.
25003         * m4/mktime.m4: Likewise.
25004
25005         * m4/check-type.m4: Remove file, now that the latest version of
25006         AC_CHECK_TYPE takes a third arg to specify additional #includes.
25007
25008         * m4/ssize_t.m4: New file, requires experimental version of autoconf.
25009         * m4/jm-macros.m4: Use new AC_TYPE_SSIZE_T instead of my hacked
25010         AC_CHECK_TYPE.
25011
25012 1999-10-04  Jim Meyering  <meyering@ascend.com>
25013
25014         * m4/jm-macros.m4: Don't require autoconf-2.14.1.
25015
25016 1999-09-22  Paul Eggert  <eggert@twinsun.com>
25017
25018         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around GCC
25019         2.95.1 bug with HP-UX 10.20.
25020
25021 1999-09-17  Jim Meyering  <meyering@ascend.com>
25022
25023         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add strdup.
25024         Paul Nevai reported a link failure on a NeXT CUBE with NeXTSTEP 3.3
25025         due to missing strdup (against sh-utils-2.0).
25026
25027 1999-08-29  Jim Meyering  <meyering@ascend.com>
25028
25029         * m4/jm-macros.m4: Require jm_BISON.
25030         * m4/bison.m4: New file.
25031
25032 1999-08-17  Paul Eggert  <eggert@twinsun.com>
25033
25034         * m4/largefile.m4 (AC_SYS_LARGEFILE): Fix typo: missing comma
25035         in value for _FILE_OFFSET_BITS, which broke ports to HP-UX 10.20.
25036
25037 1999-08-05  Jim Meyering  <meyering@ascend.com>
25038
25039         * m4/getline.m4: Rename test file from conftestdata to conftest.data
25040         to avoid conflicts with `conftest' on 8+3 filesystems.
25041         Suggestion from Eli Zaretskii.
25042
25043 1999-08-04  Jim Meyering  <meyering@ascend.com>
25044
25045         * m4/jm-macros.m4: Move a 4-line block of code from the configure.in of
25046         fileutils and sh-utils (textutils's getline test was inadequate).
25047         (AM_FUNC_GETLINE): Run this test.
25048         (AC_CHECK_FUNCS): Check for getdelim.
25049         Reported by Bob Proulx.
25050
25051 1999-08-02  Jim Meyering  <meyering@ascend.com>
25052
25053         * m4/jm-macros.m4: Add a comment.
25054
25055 1999-08-01  Paul Eggert  <eggert@twinsun.com>
25056
25057         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check whether
25058         <inttypes.h> defines strtoumax as a macro (and not as a
25059         function).
25060
25061 1999-08-01  Paul Eggert  <eggert@twinsun.com>
25062
25063         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Make sure
25064         that we can shift, multiply and divide unsigned long long
25065         values; Ultrix cc can't do it.
25066
25067 1999-08-01  Paul Eggert  <eggert@twinsun.com>
25068
25069         * m4/mktime.m4: New file, which is a preview of what should appear
25070         in the next public autoconf release.
25071
25072 1999-08-01  Paul Eggert  <eggert@twinsun.com>
25073
25074         * m4/lfs.m4: Remove this file.
25075         * m4/largefile.m4: New file.  It contains the old contents of
25076         lfs.m4, except that all names with prefix AC_LFS have been
25077         changed to use the prefix AC_SYS_LARGEFILE instead, to be
25078         compatible with future autoconf versions.  Also, some minor m4
25079         quoting problems have been fixed.
25080
25081 1999-08-01  Paul Eggert  <eggert@twinsun.com>
25082
25083         * m4/gettext.m4 (AM_WITH_NLS): Remove unnecessary lines.
25084         Fix typo: $nls_cv_header_intl was misspelled as $nsl_cv_header_intl.
25085         (AM_GNU_GETTEXT): Fix problem with brackets and m4 quoting,
25086         and simplify the shell code.
25087
25088 1999-08-01  Jim Meyering  <meyering@ascend.com>
25089
25090         * m4/mktime.m4 (AC_FUNC_MKTIME): Undefine to avoid syntax errors from
25091         m4.
25092
25093 1999-07-20  Jim Meyering  <meyering@ascend.com>
25094
25095         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memmove.
25096
25097 1999-07-15  Jim Meyering  <meyering@ascend.com>
25098
25099         * m4/jm-macros.m4 (AC_CHECK_FUNCS): Check for getpagesize.
25100
25101 1999-05-22  Jim Meyering  <meyering@ascend.com>
25102
25103         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memchr.
25104
25105 1999-05-20  Jim Meyering  <meyering@ascend.com>
25106
25107         * m4/search-libs.m4 [AC_SEARCH_LIBS]: Quote name in undefine.
25108         Add a colon after each `then' in case $4 is empty.
25109
25110 1999-05-16  Jim Meyering  <meyering@ascend.com>
25111
25112         * m4/search-libs.m4: New file to override autoconf's AC_SEARCH_LIBS.
25113
25114 1999-05-10  Jim Meyering  <meyering@ascend.com>
25115
25116         * m4/jm-mktime.m4: Reflect renaming: AM_FUNC_MKTIME -> AC_FUNC_MKTIME.
25117
25118         * m4/jm-macros.m4: Require 2.14.1, since we use newly-renamed
25119         AC_FUNC_MKTIME.
25120
25121 1999-05-10  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
25122
25123         * m4/jm-mktime.m4, putenv.m4: Fix typos in config.h comments.
25124
25125 1999-05-04  Paul Eggert  <eggert@twinsun.com>
25126
25127         * m4/lfs.m4 (AC_LFS): -n32, -o32, and -n64 should be in CFLAGS,
25128         not CPPFLAGS, so that linking works correctly in IRIX.
25129
25130 1999-04-30  Paul Eggert  <eggert@twinsun.com>
25131
25132         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add dup2.
25133
25134 1999-04-20  Paul Eggert  <eggert@twinsun.com>
25135
25136         * m4/uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Move unsigned long
25137         long check into new jm_AC_TYPE_UNSIGNED_LONG_LONG macro.
25138         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require
25139         jm_AC_TYPE_UNSIGNED_LONG_LONG.
25140         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): New file/macro.
25141
25142         * m4/lfs.m4: Port to AIX and HP-UX.  Support cross-compilation.
25143
25144 1999-04-20  Jim Meyering  <meyering@ascend.com>
25145
25146         * m4/xstrtoumax.m4: Require jm_AC_TYPE_UNSIGNED_LONG_LONG.
25147         AC_REPLACE xstroull if necessary.  From Paul Eggert.
25148         (AC_CHECK_FUNCS): Remove strtoull, strtoumax, strtouq.
25149
25150 1999-04-18  Jim Meyering  <meyering@ascend.com>
25151
25152         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): New file/macro.
25153         * m4/jm-macros.m4: Use it.
25154
25155 1999-04-06  Jim Meyering  <meyering@ascend.com>
25156
25157         * m4/strftime.m4: Remove test for %f.
25158
25159 1999-03-29  Jim Meyering  <meyering@ascend.com>
25160
25161         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): New macro, contains the
25162         superset of the AC_TYPE_* checks in the textutils, fileutils,
25163         and sh-utils, plus AC_TYPE_PID_T.  Paul Eggert suggested adding
25164         AC_TYPE_PID_T.
25165
25166 1999-03-28  Jim Meyering  <meyering@ascend.com>
25167
25168         * m4/jm-macros.m4: Define GNU_PACKAGE here.
25169         Be sure to AC_SUBST it, once again, so that @GNU_PACKAGE@ is
25170         replaced e.g., in the *.sh files of the sh-utils.
25171
25172 1999-03-20  Jim Meyering  <meyering@ascend.com>
25173
25174         * m4/jm-macros.m4: s/jm_WITH_REGEX/jm_INCLUDED_REGEX/.
25175         * m4/regex.m4 (jm_INCLUDED_REGEX): Rename from jm_WITH_REGEX.
25176         Don't depend on AM_GLIBC.  Suggestions from Alain Magloire.
25177
25178 1999-03-19  Jim Meyering  <meyering@ascend.com>
25179
25180         * m4/jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): New macro.
25181
25182 1999-03-12  Jim Meyering  <meyering@ascend.com>
25183
25184         * m4/jm-macros.m4: Use AC_FUNC_SETVBUF_REVERSED.
25185
25186 1999-03-07  Jim Meyering  <meyering@ascend.com>
25187
25188         * m4/jm-glibc-io.m4: Use only those *_unlocked macros that are
25189         declared.
25190
25191 1999-02-17  Jim Meyering  <meyering@ascend.com>
25192
25193         * m4/gettext.m4 (AM_GNU_GETTEXT): Do `changequote' around use of
25194         brackets in macro definition.  From Eli Zaretskii and Alain Magloire.
25195
25196 1999-02-07  Jim Meyering  <meyering@ascend.com>
25197
25198         * m4/group-member.m4: New file -- extracted from sh-utils'
25199         configure.in.
25200
25201         1999-02-05  Eli Zaretskii  <eliz@is.elta.co.il>
25202         * m4/gettext.m4: Support DOS-style d:/foo/bar absolute file names.
25203
25204 1999-02-06  Jim Meyering  <meyering@ascend.com>
25205
25206         * m4/chown.m4: Use `AC_SUBST(LIBOBJS)' since we set LIBOBJS.
25207         * m4/fnmatch.m4: Likewise.
25208         * m4/getgroups.m4: Likewise.
25209         * m4/lstat.m4: Likewise.
25210         * m4/malloc.m4: Likewise.
25211         * m4/putenv.m4: Likewise.
25212         * m4/realloc.m4: Likewise.
25213         * m4/regex.m4: Likewise.
25214         * m4/stat.m4: Likewise.
25215         * m4/strftime.m4: Likewise.
25216         Suggestion from Alain Magloire.
25217
25218         * m4/chown.m4: Use `.$ac_objext', not `.o'.
25219         * m4/fnmatch.m4: Likewise.
25220         * m4/getgroups.m4: Likewise.
25221         * m4/getline.m4: Likewise.
25222         * m4/lstat.m4: Likewise.
25223         * m4/malloc.m4: Likewise.
25224         * m4/memcmp.m4: Likewise.
25225         * m4/putenv.m4: Likewise.
25226         * m4/realloc.m4: Likewise.
25227         * m4/regex.m4: Likewise.
25228         * m4/stat.m4: Likewise.
25229         * m4/strftime.m4: Likewise.
25230         Suggestion from Alain Magloire.
25231
25232         * m4/jm-macros.m4: Actually invoke jm_WITH_REGEX now that it requires
25233         an argument.
25234
25235         * m4/regex.m4: Add a run-time Test for proper operation of
25236         re_compile_pattern.
25237
25238 1999-01-31  Jim Meyering  <meyering@ascend.com>
25239
25240         * m4/getloadavg.m4: Check for locale.h and the function, setlocale.
25241
25242 1999-01-30  Jim Meyering  <meyering@ascend.com>
25243
25244         * m4/check-type.m4: Use 3-arg form of AC_DEFINE.
25245
25246         * m4/jm-mktime.m4: Make this a wrapper around the official
25247         AM_FUNC_MKTIME rather than my private copy, now that the official one
25248         is up to date.
25249         * m4/mktime.m4: Remove file.
25250
25251         * m4/getloadavg.m4: Use 3-arg form of AC_DEFINE.
25252         * m4/uptime.m4: Likewise.
25253         * m4/uintmax_t.m4: Likewise.
25254
25255 1999-01-28  Jim Meyering  <meyering@ascend.com>
25256
25257         * m4/jm-macros.m4: Use jm_AFS.
25258         * m4/afs.m4: New file (from fileutils' configure.in).
25259
25260         * m4/assert.m4: Use the 3-argument forms of AC_DEFINE* macros.
25261         * m4/chown.m4: Likewise.
25262         * m4/d-ino.m4: Likewise.
25263         * m4/d-type.m4: Likewise.
25264         * m4/fnmatch.m4: Likewise.
25265         * m4/getgroups.m4: Likewise.
25266         * m4/gettext.m4: Likewise.
25267         * m4/jm-mktime.m4: Likewise.
25268         * m4/jm-winsz2.m4: Likewise.
25269         * m4/lcmessage.m4: Likewise.
25270         * m4/ls-mntd-fs.m4: Likewise.
25271         * m4/malloc.m4: Likewise.
25272         * m4/memcmp.m4: Likewise.
25273         * m4/putenv.m4: Likewise.
25274         * m4/realloc.m4: Likewise.
25275         * m4/st_mtim.m4: Likewise.
25276         * m4/strftime.m4: Likewise.
25277
25278 1999-01-16  Jim Meyering  <meyering@ascend.com>
25279
25280         * m4/jm-macros.m4 (ARGMATCH_DIE): Define.
25281         (ARGMATCH_DIE_DECL): Define.
25282
25283 1999-01-12  Jim Meyering  <meyering@ascend.com>
25284
25285         * m4/Makefile.am.in: Rewrite to avoid using fmt.
25286         Reported by Lars Hecking.
25287
25288 1999-01-10  Jim Meyering  <meyering@ascend.com>
25289
25290         * m4/fstypename.m4: Use the new 3-arg form of AC_DEFINE instead of my
25291         gross kludge.
25292         * m4/inttypes_h.m4: Likewise.
25293         * m4/lstat.m4: Likewise.
25294         * m4/malloc.m4: Likewise.
25295         * m4/readdir.m4: Likewise.
25296         * m4/realloc.m4: Likewise.
25297         * m4/st_dm_mode.m4: Likewise.
25298         * m4/stat.m4: Likewise.
25299         * m4/utimbuf.m4: Likewise.
25300         * m4/utimes.m4: Likewise.
25301
25302         * m4/check-decl.m4: Use the new 3-arg form of AC_DEFINE instead of the
25303         AC_CHECK_FUNCS hack.  Now, it's still a hack, but at least the
25304         comments in config.h.in are meaningful.
25305
25306         * m4/jm-macros.m4: Require autoconf-2.13 here.
25307
25308         * m4/regex.m4: By default, don't use the included regex.c on systems
25309         with glibc 2.  Suggestion from Uli Drepper.
25310
25311 1999-01-02  Jim Meyering  <meyering@ascend.com>
25312
25313         * m4/jm-macros.m4: Replace strcasecmp and strncasecmp.
25314
25315 1998-12-18  Jim Meyering  <meyering@ascend.com>
25316
25317         * m4/Makefile.am.in (Makefile.am): Simplify rule.
25318         Based on a suggestion from Lars Hecking.
25319
25320 1998-11-16  Paul Eggert  <eggert@twinsun.com>
25321
25322         * m4/lfs.m4 (AC_LFS): Add support for HP-UX 10.20 and HP-UX 11.
25323
25324 1998-11-16  Jim Meyering  <meyering@ascend.com>
25325
25326         * m4/lfs.m4: Double-quote the `uname...` expression.
25327
25328 1998-11-14  Jim Meyering  <meyering@ascend.com>
25329
25330         * m4/lstat.m4: Correct comment.  POSIX does not permit it to succeed.
25331         * m4/stat.m4: Likewise.
25332
25333 1998-11-03  Jim Meyering  <meyering@ascend.com>
25334
25335         * m4/stat.m4: Rewrite to set HAVE_STAT_EMPTY_STRING_BUG.
25336         * m4/lstat.m4: Rewrite to set HAVE_LSTAT_EMPTY_STRING_BUG.
25337
25338 1998-10-18  Jim Meyering  <meyering@ascend.com>
25339
25340         * m4/check-decl.m4 (jm_CHECK_DECL_LOCALTIME_R): Remove macro.
25341
25342 1998-10-17  Jim Meyering  <meyering@ascend.com>
25343
25344         * m4/decl.m4 (jm_CHECK_DECLARATION): Don't hard-code which headers to
25345         include, though we still hard-code the `require'-like AC_CHECK_HEADERS
25346         calls for those previously hard-coded headers.  Instead, take a new
25347         parameter.
25348         (jm_CHECK_DECLARATIONS): Reflect interface change.
25349         * m4/check-decl.m4 (jm_CHECK_DECLS): Likewise.
25350         (jm_CHECK_DECL_LOCALTIME_R): New macro.
25351
25352         * m4/mktime.m4: Test for spring-forward gap before long-running test.
25353
25354 1998-10-14  Jim Meyering  <meyering@ascend.com>
25355
25356         * m4/mktime.m4: Use the more portable "TZ=PST8PDT,M4.1.0,M10.5.0"
25357         instead of "TZ=America/Vancouver".  From Paul Eggert.
25358
25359 1998-10-11  Jim Meyering  <meyering@ascend.com>
25360
25361         * m4/mktime.m4 (jm_AM_FUNC_MKTIME): New file and macro.
25362         This adds a test for a recently added compatibility fix for mktime.c.
25363         * m4/jm-mktime.m4: Require jm_AM_FUNC_MKTIME, not AM_FUNC_MKTIME.
25364
25365 1998-09-27  Jim Meyering  <meyering@ascend.com>
25366
25367         * m4/jm-macros.m4 (jm_MACROS): Require jm_FUNC_FNMATCH.
25368
25369         * m4/fnmatch.m4 (jm_FUNC_FNMATCH): New file/macro.  Extracted from
25370         ../configure.in, including a change from Gordon Matzigkeit to allow
25371         cross-compiling for the Hurd.
25372
25373         * m4/glibc.m4: New file/macro to test for the GNU C Library
25374         versions 1 and 2.  From Gordon Matzigkeit.
25375         Indent.
25376
25377 1998-09-21  Jim Meyering  <meyering@ascend.com>
25378
25379         * m4/chown.m4: Declare locals: before, after.  From Andries Brouwer.
25380
25381 1998-08-18  Paul Eggert  <eggert@twinsun.com>
25382
25383         Port nanosecond-resolution times to UnixWare 2.1.2 and
25384         pedantic Solaris 2.6.
25385
25386         * m4/st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC): Renamed from
25387         AC_STRUCT_ST_MTIM.
25388         * m4/st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC):
25389         Generate name of ns member, instead of just 1 or undef.
25390         Allow for UnixWare 2.1.2 and Solaris 2.6 if in pedantic mode.
25391
25392 1998-08-15  Jim Meyering  <meyering@ascend.com>
25393
25394         * m4/ssize_t.m4 (jm_TYPE_SSIZE_T): Remove file.
25395         * m4/check-type.m4: New file.  Replacement for AC_CHECK_TYPE.
25396         * m4/jm-macros.m4: Use the new AC_CHECK_TYPE(ssize_t, int)
25397         instead of jm_TYPE_SSIZE_T.
25398
25399 1998-08-12  Jim Meyering  <meyering@ascend.com>
25400
25401         * m4/st_dm_mode.m4: New file.  From Johan Danielsson.
25402
25403 1998-08-02  Jim Meyering  <meyering@ascend.com>
25404
25405         * m4/st_mtim.m4: Use hack to avoid having to put #undef HAVE_ST_MTIM
25406         in acconfig.h manually.
25407
25408 1998-07-31  Paul Eggert  <eggert@twinsun.com>
25409
25410         * m4/st_mtim.m4: New file.
25411
25412 1998-07-28  Jim Meyering  <meyering@ascend.com>
25413
25414         * m4/utimes.m4: Undef stat.
25415
25416 1998-07-25  Jim Meyering  <meyering@ascend.com>
25417
25418         * m4/utime.m4 (jm_FUNC_UTIME): New file and macro.
25419         * m4/utimes.m4 (jm_FUNC_UTIMES_NULL): New file and macro.
25420
25421 1998-07-09  Manfred Hollstein  <manfred@s-direktnet.de>
25422
25423         * m4/chown.m4 (jm_FUNC_CHOWN): Add a check to verify that the
25424         uid and gid actually remain unchanged.
25425
25426 1998-07-07  Jim Meyering  <meyering@ascend.com>
25427
25428         * m4/jm-glibc-io.m4: Remove fclose_unlocked.
25429
25430 1998-07-04  Jim Meyering  <meyering@ascend.com>
25431
25432         * m4/regex.m4: Use syscmd, ifelse, and sysval.  Mainly as an exercise
25433         to prove that this macro can be used in packages without regex.c.
25434
25435 1998-07-04  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
25436
25437         * m4/gettext.m4 (AM_WITH_NLS): Remove intl/libintl.h if <libintl.h>
25438         is to be used.
25439
25440 1998-07-03  Jim Meyering  <meyering@ascend.com>
25441
25442         * m4/gettext.m4: Add -lintl if it's found to be necessary.
25443
25444         * m4/gettext.m4: New file -- from gettext-0.10.35.
25445         * m4/lcmessage.m4: Likewise.
25446         * m4/progtest.m4: Likewise.
25447
25448         * m4/regex.m4 (jm_WITH_REGEX): New file and macro.
25449         * m4/jm-macros.m4: Require the new macro.
25450
25451 1998-06-29  Jim Meyering  <meyering@ascend.com>
25452
25453         * m4/fstypename.m4: Include sys/param.h.  NetBSD 1.3.1 requires this
25454         for the definition of NGROUPS (used in a system header included
25455         by sys/mount.h).
25456
25457 1998-06-28  Jim Meyering  <meyering@ascend.com>
25458
25459         * m4/ls-mntd-fs.m4: New file.
25460         * m4/fstypename.m4: New file.
25461
25462         * m4/jm-macros.m4: Require the new macro.
25463         * m4/jm-glibc-io.m4: New file.
25464
25465 1998-05-19  Jim Meyering  <meyering@ascend.com>
25466
25467         * m4/jm-macros.m4: Add jm_FUNC_LCHOWN.
25468         * m4/lchown.m4: New file.
25469
25470         * m4/Makefile.am.in: New file.
25471         * m4/Makefile.am (Makefile.am): Depend on Makefile.am.in.
25472
25473 1998-05-14  Jim Meyering  <meyering@ascend.com>
25474
25475         * m4/Makefile.am (EXTRA_DIST): Add them.
25476         * m4/jm-macros.m4: New file.
25477         * m4/utimbuf.m4: New file.
25478
25479 1998-05-12  Jim Meyering  <meyering@ascend.com>
25480
25481         * m4/Makefile.am (EXTRA_DIST): Add isc-posix.m4.
25482
25483 1998-05-11  Jim Meyering  <meyering@ascend.com>
25484
25485         * m4/isc-posix.m4: New file.
25486
25487 1998-05-10  Jim Meyering  <meyering@ascend.com>
25488
25489         * m4/jm-mktime.m4: Use AM_FUNC_MKTIME, now that it's up to date.
25490
25491 1998-05-09  Jim Meyering  <meyering@ascend.com>
25492
25493         * m4/Makefile.am (EXTRA_DIST): Add ssize_t.m4.
25494         (EXTRA_DIST): Remove mktime.m4, now that the new version is included
25495         with automake.
25496
25497         * m4/ssize_t.m4: New file.
25498         * m4/mktime.m4: Remove file -- the new automake has this now.
25499
25500 1998-04-26  Jim Meyering  <meyering@ascend.com>
25501
25502         * m4/assert.m4: New file.
25503         * m4/Makefile.am (EXTRA_DIST): Add assert.m4.
25504
25505 1998-04-05  Jim Meyering  <meyering@ascend.com>
25506
25507         * m4/prereq.m4 (jm_PREREQ_REGEX): New macro.
25508         (jm_PREREQ): Use it here.
25509
25510 1998-03-23  Jim Meyering  <meyering@eng.ascend.com>
25511
25512         * m4/inttypes_h.m4: Kludges so I don't have to add HAVE_INTTYPES_H
25513         in acconfig.h.
25514
25515 1998-03-15  Jim Meyering  <meyering@eng.ascend.com>
25516
25517         * m4/prereq.m4: New file.
25518         * m4/error.m4: New file.
25519         * m4/Makefile.am (EXTRA_DIST): Add error.m4 and prereq.m4.
25520
25521 1998-02-07  Jim Meyering  <meyering@eng.ascend.com>
25522
25523         * m4/getline.m4: Don't set am_cv_func_working_getline before the
25524         cache-check for the same variable -- that defeated the purpose of
25525         the test; the test program was never run.  This was a problem only
25526         on systems with losing getline functions -- HP-UX 10.20 is one.
25527         Reported by Bjorn Helgaas.
25528
25529 1998-02-06  Jim Meyering  <meyering@eng.ascend.com>
25530
25531         * m4/Makefile.am (EXTRA_DIST): Add perl.m4.
25532
25533 1998-01-10  Jim Meyering  <meyering@na-net.ornl.gov>
25534
25535         * m4/Makefile.am (EXTRA_DIST): Add const.m4.
25536
25537         * m4/const.m4: New file.  Use an initializer in this declaration
25538         typedef int charset[2]; const charset x;
25539         Reported by Bob Glickstein.
25540
25541 1997-12-21  Jim Meyering  <meyering@na-net.ornl.gov>
25542
25543         * m4/chown.m4: Fix reversed types on -1 args to chown.
25544         From Kaveh Ghazi.
25545
25546 1997-12-14  Jim Meyering  <meyering@na-net.ornl.gov>
25547
25548         * m4/check-decl.m4: s/DECLARATION_/DECL_/g.
25549         Add lseek and memchr.
25550
25551         * m4/decl.m4: s/HAVE_DECLARATION_/HAVE_DECL_/g.
25552         T.E.Dickey <dickey@clark.net> said that some older preprocessors
25553         have a 20-character limit on names.
25554
25555 1997-11-30  Jim Meyering  <meyering@na-net.ornl.gov>
25556
25557         * m4/inttypes_h.m4: New file.
25558         * m4/uintmax_t.m4: New file.
25559         * m4/Makefile.am (EXTRA_DIST): Add inttypes_h.m4 and uintmax_t.m4.
25560
25561 Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007
25562   Free Software Foundation, Inc.
25563 Copying and distribution of this file, with or without modification,
25564 are permitted provided the copyright notice and this notice are preserved.